blob: 7c935d0ea5469d176cf7e908da6b42f0fb48c669 [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;
Jeff Sharkey307ea7a2020-04-13 10:24:49 -0600273import com.android.server.uri.NeededUriGrants;
Evan Rosky4505b352018-09-06 11:20:40 -0700274import com.android.server.uri.UriGrantsManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700275import com.android.server.vr.VrManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700276
Wale Ogunwale31913b52018-10-13 08:29:31 -0700277import java.io.BufferedReader;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700278import java.io.File;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700279import java.io.FileDescriptor;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700280import java.io.FileOutputStream;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700281import java.io.FileReader;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700282import java.io.IOException;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700283import java.io.PrintWriter;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700284import java.io.StringWriter;
Riddle Hsua0536432019-02-16 00:38:59 +0800285import java.lang.annotation.ElementType;
286import java.lang.annotation.Retention;
287import java.lang.annotation.RetentionPolicy;
288import java.lang.annotation.Target;
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700289import java.lang.ref.WeakReference;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700290import java.text.DateFormat;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700291import java.util.ArrayList;
Wale Ogunwale27c48ae2018-10-25 19:01:01 -0700292import java.util.Arrays;
Jeff Sharkey8b0cff72020-03-09 15:49:01 -0600293import java.util.Collection;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700294import java.util.Date;
Alison Cichowlas3e340502018-08-07 17:15:01 -0400295import java.util.HashMap;
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700296import java.util.HashSet;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700297import java.util.List;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700298import java.util.Locale;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700299import java.util.Map;
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +0000300import java.util.Objects;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700301import java.util.Set;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700302
303/**
304 * System service for managing activities and their containers (task, stacks, displays,... ).
305 *
306 * {@hide}
307 */
308public class ActivityTaskManagerService extends IActivityTaskManager.Stub {
Wale Ogunwale98875612018-10-12 07:53:02 -0700309 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityTaskManagerService" : TAG_ATM;
Wale Ogunwale8f93b642019-12-26 12:10:52 -0800310 static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale196db712019-12-27 15:35:39 +0000311 static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700312 private static final String TAG_IMMERSIVE = TAG + POSTFIX_IMMERSIVE;
313 private static final String TAG_FOCUS = TAG + POSTFIX_FOCUS;
314 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
315 private static final String TAG_LOCKTASK = TAG + POSTFIX_LOCKTASK;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700316 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700317
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700318 // How long we wait until we timeout on key dispatching.
Wale Ogunwale51cc98a2018-10-15 10:41:05 -0700319 public static final int KEY_DISPATCHING_TIMEOUT_MS = 5 * 1000;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700320 // How long we wait until we timeout on key dispatching during instrumentation.
Wale Ogunwale51cc98a2018-10-15 10:41:05 -0700321 static final int INSTRUMENTATION_KEY_DISPATCHING_TIMEOUT_MS = 60 * 1000;
Michal Karpinskifc6872e2019-05-21 15:18:44 +0100322 // How long we permit background activity starts after an activity in the process
323 // started or finished.
324 static final long ACTIVITY_BG_START_GRACE_PERIOD_MS = 10 * 1000;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700325
Wale Ogunwale98875612018-10-12 07:53:02 -0700326 /** Used to indicate that an app transition should be animated. */
327 static final boolean ANIMATE = true;
328
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700329 /** Hardware-reported OpenGLES version. */
330 final int GL_ES_VERSION;
331
Wale Ogunwale31913b52018-10-13 08:29:31 -0700332 public static final String DUMP_ACTIVITIES_CMD = "activities" ;
333 public static final String DUMP_ACTIVITIES_SHORT_CMD = "a" ;
334 public static final String DUMP_LASTANR_CMD = "lastanr" ;
335 public static final String DUMP_LASTANR_TRACES_CMD = "lastanr-traces" ;
336 public static final String DUMP_STARTER_CMD = "starter" ;
337 public static final String DUMP_CONTAINERS_CMD = "containers" ;
338 public static final String DUMP_RECENTS_CMD = "recents" ;
339 public static final String DUMP_RECENTS_SHORT_CMD = "r" ;
340
Wale Ogunwale64258362018-10-16 15:13:37 -0700341 /** This activity is not being relaunched, or being relaunched for a non-resize reason. */
342 public static final int RELAUNCH_REASON_NONE = 0;
343 /** This activity is being relaunched due to windowing mode change. */
344 public static final int RELAUNCH_REASON_WINDOWING_MODE_RESIZE = 1;
345 /** This activity is being relaunched due to a free-resize operation. */
346 public static final int RELAUNCH_REASON_FREE_RESIZE = 2;
347
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700348 Context mContext;
Wale Ogunwale64258362018-10-16 15:13:37 -0700349
Wale Ogunwalef6733932018-06-27 05:14:34 -0700350 /**
351 * This Context is themable and meant for UI display (AlertDialogs, etc.). The theme can
352 * change at runtime. Use mContext for non-UI purposes.
353 */
354 final Context mUiContext;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700355 final ActivityThread mSystemThread;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700356 H mH;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700357 UiHandler mUiHandler;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700358 ActivityManagerInternal mAmInternal;
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -0700359 UriGrantsManagerInternal mUgmInternal;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700360 private PackageManagerInternal mPmInternal;
Darryl L Johnsona0982222020-02-18 18:21:51 -0800361 /** The cached sys ui service component name from package manager. */
362 private ComponentName mSysUiServiceComponent;
Hai Zhangf4da9be2019-05-01 13:46:06 +0800363 private PermissionPolicyInternal mPermissionPolicyInternal;
Wale Ogunwaleb73f3962018-11-20 07:58:22 -0800364 @VisibleForTesting
365 final ActivityTaskManagerInternal mInternal;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700366 PowerManagerInternal mPowerManagerInternal;
367 private UsageStatsManagerInternal mUsageStatsInternal;
368
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700369 PendingIntentController mPendingIntentController;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700370 IntentFirewall mIntentFirewall;
371
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700372 /* Global service lock used by the package the owns this service. */
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800373 final WindowManagerGlobalLock mGlobalLock = new WindowManagerGlobalLock();
Riddle Hsud7088f82019-01-30 13:04:50 +0800374 /**
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700375 * It is the same instance as {@link #mGlobalLock}, just declared as a type that the
Riddle Hsud7088f82019-01-30 13:04:50 +0800376 * locked-region-code-injection does't recognize it. It is used to skip wrapping priority
377 * booster for places that are already in the scope of another booster (e.g. computing oom-adj).
378 *
379 * @see WindowManagerThreadPriorityBooster
380 */
381 final Object mGlobalLockWithoutBoost = mGlobalLock;
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700382 ActivityStackSupervisor mStackSupervisor;
Louis Chang149d5c82019-12-30 09:47:39 +0800383 RootWindowContainer mRootWindowContainer;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700384 WindowManagerService mWindowManager;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700385 private UserManagerService mUserManager;
Philip P. Moltmannee295092020-02-10 08:46:26 -0800386 private AppOpsManager mAppOpsManager;
Wale Ogunwalebff2df42018-10-18 17:09:19 -0700387 /** All active uids in the system. */
Riddle Hsua0536432019-02-16 00:38:59 +0800388 private final MirrorActiveUids mActiveUids = new MirrorActiveUids();
Wale Ogunwale9de19442018-10-18 19:05:03 -0700389 private final SparseArray<String> mPendingTempWhitelist = new SparseArray<>();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700390 /** All processes currently running that might have a window organized by name. */
391 final ProcessMap<WindowProcessController> mProcessNames = new ProcessMap<>();
Michal Karpinski2e0aad22019-04-12 16:22:55 +0100392 /** All processes we currently have running mapped by pid and uid */
393 final WindowProcessControllerMap mProcessMap = new WindowProcessControllerMap();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700394 /** This is the process holding what we currently consider to be the "home" activity. */
395 WindowProcessController mHomeProcess;
Wale Ogunwale53783742018-09-16 10:21:51 -0700396 /** The currently running heavy-weight process, if any. */
397 WindowProcessController mHeavyWeightProcess = null;
Wale Ogunwale214f3482018-10-04 11:00:47 -0700398 boolean mHasHeavyWeightFeature;
Sergey Nikolaienkov30c947d2020-04-15 19:55:48 +0200399 boolean mHasLeanbackFeature;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700400 /**
401 * This is the process holding the activity the user last visited that is in a different process
402 * from the one they are currently in.
403 */
404 WindowProcessController mPreviousProcess;
405 /** The time at which the previous process was last visible. */
406 long mPreviousProcessVisibleTime;
407
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700408 /** List of intents that were used to start the most recent tasks. */
409 private RecentTasks mRecentTasks;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700410 /** State of external calls telling us if the device is awake or asleep. */
411 private boolean mKeyguardShown = false;
412
413 // Wrapper around VoiceInteractionServiceManager
414 private AssistUtils mAssistUtils;
415
416 // VoiceInteraction session ID that changes for each new request except when
417 // being called for multi-window assist in a single session.
418 private int mViSessionId = 1000;
419
420 // How long to wait in getAssistContextExtras for the activity and foreground services
421 // to respond with the result.
422 private static final int PENDING_ASSIST_EXTRAS_TIMEOUT = 500;
423
424 // How long top wait when going through the modern assist (which doesn't need to block
425 // on getting this result before starting to launch its UI).
426 private static final int PENDING_ASSIST_EXTRAS_LONG_TIMEOUT = 2000;
427
428 // How long to wait in getAutofillAssistStructure() for the activity to respond with the result.
429 private static final int PENDING_AUTOFILL_ASSIST_STRUCTURE_TIMEOUT = 2000;
430
Alison Cichowlas3e340502018-08-07 17:15:01 -0400431 // Permission tokens are used to temporarily granted a trusted app the ability to call
432 // #startActivityAsCaller. A client is expected to dump its token after this time has elapsed,
433 // showing any appropriate error messages to the user.
434 private static final long START_AS_CALLER_TOKEN_TIMEOUT =
435 10 * MINUTE_IN_MILLIS;
436
437 // How long before the service actually expires a token. This is slightly longer than
438 // START_AS_CALLER_TOKEN_TIMEOUT, to provide a buffer so clients will rarely encounter the
439 // expiration exception.
440 private static final long START_AS_CALLER_TOKEN_TIMEOUT_IMPL =
441 START_AS_CALLER_TOKEN_TIMEOUT + 2 * 1000;
442
443 // How long the service will remember expired tokens, for the purpose of providing error
444 // messaging when a client uses an expired token.
445 private static final long START_AS_CALLER_TOKEN_EXPIRED_TIMEOUT =
446 START_AS_CALLER_TOKEN_TIMEOUT_IMPL + 20 * MINUTE_IN_MILLIS;
447
448 // Activity tokens of system activities that are delegating their call to
449 // #startActivityByCaller, keyed by the permissionToken granted to the delegate.
450 final HashMap<IBinder, IBinder> mStartActivitySources = new HashMap<>();
451
452 // Permission tokens that have expired, but we remember for error reporting.
453 final ArrayList<IBinder> mExpiredStartAsCallerTokens = new ArrayList<>();
454
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700455 private final ArrayList<PendingAssistExtras> mPendingAssistExtras = new ArrayList<>();
456
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700457 // Keeps track of the active voice interaction service component, notified from
458 // VoiceInteractionManagerService
459 ComponentName mActiveVoiceInteractionServiceComponent;
460
Michal Karpinskida34cd42019-04-02 19:46:52 +0100461 // A map userId and all its companion app uids
462 private final Map<Integer, Set<Integer>> mCompanionAppUidsMap = new ArrayMap<>();
Ricky Wai2452e2d2019-03-18 19:19:08 +0000463
Wale Ogunwalee2172292018-10-25 10:11:10 -0700464 VrController mVrController;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700465 KeyguardController mKeyguardController;
466 private final ClientLifecycleManager mLifecycleManager;
467 private TaskChangeNotificationController mTaskChangeNotificationController;
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700468 /** The controller for all operations related to locktask. */
469 private LockTaskController mLockTaskController;
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -0700470 private ActivityStartController mActivityStartController;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700471
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700472 boolean mSuppressResizeConfigChanges;
473
Shivam Agrawal1d3db652019-07-01 15:26:11 -0700474 final UpdateConfigurationResult mTmpUpdateConfigurationResult =
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700475 new UpdateConfigurationResult();
476
477 static final class UpdateConfigurationResult {
478 // Configuration changes that were updated.
479 int changes;
480 // If the activity was relaunched to match the new configuration.
481 boolean activityRelaunched;
482
483 void reset() {
484 changes = 0;
485 activityRelaunched = false;
486 }
487 }
488
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700489 /** Current sequencing integer of the configuration, for skipping old configurations. */
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700490 private int mConfigurationSeq;
491 // To cache the list of supported system locales
492 private String[] mSupportedSystemLocales = null;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700493
494 /**
495 * Temp object used when global and/or display override configuration is updated. It is also
496 * sent to outer world instead of {@link #getGlobalConfiguration} because we don't trust
497 * anyone...
498 */
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700499 private Configuration mTempConfig = new Configuration();
500
Wale Ogunwalef6733932018-06-27 05:14:34 -0700501 /** Temporary to avoid allocations. */
502 final StringBuilder mStringBuilder = new StringBuilder(256);
503
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700504 // Amount of time after a call to stopAppSwitches() during which we will
505 // prevent further untrusted switches from happening.
506 private static final long APP_SWITCH_DELAY_TIME = 5 * 1000;
507
508 /**
509 * The time at which we will allow normal application switches again,
510 * after a call to {@link #stopAppSwitches()}.
511 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700512 private long mAppSwitchesAllowedTime;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700513 /**
514 * This is set to true after the first switch after mAppSwitchesAllowedTime
515 * is set; any switches after that will clear the time.
516 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700517 private boolean mDidAppSwitch;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700518
Ricky Wai906af482019-06-03 17:25:28 +0100519 /**
520 * Last stop app switches time, apps finished before this time cannot start background activity
521 * even if they are in grace period.
522 */
523 private long mLastStopAppSwitchesTime;
524
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700525 IActivityController mController = null;
526 boolean mControllerIsAMonkey = false;
527
Wale Ogunwale214f3482018-10-04 11:00:47 -0700528 final int mFactoryTest;
529
530 /** Used to control how we initialize the service. */
531 ComponentName mTopComponent;
532 String mTopAction = Intent.ACTION_MAIN;
533 String mTopData;
534
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800535 /** Profiling app information. */
536 String mProfileApp = null;
537 WindowProcessController mProfileProc = null;
538 ProfilerInfo mProfilerInfo = null;
539
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700540 /**
Wale Ogunwale31913b52018-10-13 08:29:31 -0700541 * Dump of the activity state at the time of the last ANR. Cleared after
542 * {@link WindowManagerService#LAST_ANR_LIFETIME_DURATION_MSECS}
543 */
544 String mLastANRState;
545
546 /**
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700547 * Used to retain an update lock when the foreground activity is in
548 * immersive mode.
549 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700550 private final UpdateLock mUpdateLock = new UpdateLock("immersive");
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700551
552 /**
553 * Packages that are being allowed to perform unrestricted app switches. Mapping is
554 * User -> Type -> uid.
555 */
556 final SparseArray<ArrayMap<String, Integer>> mAllowAppSwitchUids = new SparseArray<>();
557
558 /** The dimensions of the thumbnails in the Recents UI. */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700559 private int mThumbnailWidth;
560 private int mThumbnailHeight;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700561
562 /**
563 * Flag that indicates if multi-window is enabled.
564 *
565 * For any particular form of multi-window to be enabled, generic multi-window must be enabled
566 * in {@link com.android.internal.R.bool#config_supportsMultiWindow} config or
567 * {@link Settings.Global#DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES} development option set.
568 * At least one of the forms of multi-window must be enabled in order for this flag to be
569 * initialized to 'true'.
570 *
571 * @see #mSupportsSplitScreenMultiWindow
572 * @see #mSupportsFreeformWindowManagement
573 * @see #mSupportsPictureInPicture
574 * @see #mSupportsMultiDisplay
575 */
576 boolean mSupportsMultiWindow;
577 boolean mSupportsSplitScreenMultiWindow;
578 boolean mSupportsFreeformWindowManagement;
579 boolean mSupportsPictureInPicture;
580 boolean mSupportsMultiDisplay;
581 boolean mForceResizableActivities;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700582 boolean mSizeCompatFreeform;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700583
584 final List<ActivityTaskManagerInternal.ScreenObserver> mScreenObservers = new ArrayList<>();
585
586 // VR Vr2d Display Id.
587 int mVr2dDisplayId = INVALID_DISPLAY;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700588
Wale Ogunwalef6733932018-06-27 05:14:34 -0700589 /**
590 * Set while we are wanting to sleep, to prevent any
591 * activities from being started/resumed.
592 *
593 * TODO(b/33594039): Clarify the actual state transitions represented by mSleeping.
594 *
595 * Currently mSleeping is set to true when transitioning into the sleep state, and remains true
596 * while in the sleep state until there is a pending transition out of sleep, in which case
597 * mSleeping is set to false, and remains false while awake.
598 *
599 * Whether mSleeping can quickly toggled between true/false without the device actually
600 * display changing states is undefined.
601 */
602 private boolean mSleeping = false;
603
604 /**
Galia Peycheva480275a2020-03-18 17:33:42 +0100605 * The mDreaming state is set by the {@link DreamManagerService} when it receives a request to
606 * start/stop the dream. It is set to true shortly before the {@link DreamService} is started.
607 * It is set to false after the {@link DreamService} is stopped.
608 */
609 private boolean mDreaming = false;
610
611 /**
Wale Ogunwalef6733932018-06-27 05:14:34 -0700612 * The process state used for processes that are running the top activities.
613 * This changes between TOP and TOP_SLEEPING to following mSleeping.
614 */
615 int mTopProcessState = ActivityManager.PROCESS_STATE_TOP;
616
Riddle Hsua0022cd2019-09-09 21:12:41 +0800617 @Retention(RetentionPolicy.SOURCE)
618 @IntDef({
619 LAYOUT_REASON_CONFIG_CHANGED,
620 LAYOUT_REASON_VISIBILITY_CHANGED,
621 })
622 @interface LayoutReason {}
623 static final int LAYOUT_REASON_CONFIG_CHANGED = 0x1;
624 static final int LAYOUT_REASON_VISIBILITY_CHANGED = 0x2;
625
626 /** The reasons to perform surface placement. */
627 @LayoutReason
628 private int mLayoutReasons;
629
Wale Ogunwalef6733932018-06-27 05:14:34 -0700630 // Whether we should show our dialogs (ANR, crash, etc) or just perform their default action
631 // automatically. Important for devices without direct input devices.
632 private boolean mShowDialogs = true;
633
634 /** Set if we are shutting down the system, similar to sleeping. */
635 boolean mShuttingDown = false;
636
637 /**
638 * We want to hold a wake lock while running a voice interaction session, since
639 * this may happen with the screen off and we need to keep the CPU running to
640 * be able to continue to interact with the user.
641 */
642 PowerManager.WakeLock mVoiceWakeLock;
643
644 /**
645 * Set while we are running a voice interaction. This overrides sleeping while it is active.
646 */
647 IVoiceInteractionSession mRunningVoice;
648
649 /**
650 * The last resumed activity. This is identical to the current resumed activity most
651 * of the time but could be different when we're pausing one activity before we resume
652 * another activity.
653 */
654 ActivityRecord mLastResumedActivity;
655
656 /**
657 * The activity that is currently being traced as the active resumed activity.
658 *
659 * @see #updateResumedAppTrace
660 */
661 private @Nullable ActivityRecord mTracedResumedActivity;
662
663 /** If non-null, we are tracking the time the user spends in the currently focused app. */
664 AppTimeTracker mCurAppTimeTracker;
665
Shivam Agrawal1d3db652019-07-01 15:26:11 -0700666 AppWarnings mAppWarnings;
Wale Ogunwale008163e2018-07-23 23:11:08 -0700667
Wale Ogunwale53783742018-09-16 10:21:51 -0700668 /**
669 * Packages that the user has asked to have run in screen size
670 * compatibility mode instead of filling the screen.
671 */
672 CompatModePackages mCompatModePackages;
673
Wale Ogunwalef6733932018-06-27 05:14:34 -0700674 private FontScaleSettingObserver mFontScaleSettingObserver;
675
Wale Ogunwale568f9f412020-03-21 22:27:35 -0700676 WindowOrganizerController mWindowOrganizerController;
677 TaskOrganizerController mTaskOrganizerController;
Robert Carr8a2f9132019-11-11 15:03:15 -0800678
Ricky Wai96f5c352019-04-10 18:40:17 +0100679 private int mDeviceOwnerUid = Process.INVALID_UID;
Michal Karpinski4026cae2019-02-12 11:51:47 +0000680
Wale Ogunwalef6733932018-06-27 05:14:34 -0700681 private final class FontScaleSettingObserver extends ContentObserver {
682 private final Uri mFontScaleUri = Settings.System.getUriFor(FONT_SCALE);
683 private final Uri mHideErrorDialogsUri = Settings.Global.getUriFor(HIDE_ERROR_DIALOGS);
684
685 public FontScaleSettingObserver() {
686 super(mH);
687 final ContentResolver resolver = mContext.getContentResolver();
688 resolver.registerContentObserver(mFontScaleUri, false, this, UserHandle.USER_ALL);
689 resolver.registerContentObserver(mHideErrorDialogsUri, false, this,
690 UserHandle.USER_ALL);
691 }
692
693 @Override
Jeff Sharkey8b0cff72020-03-09 15:49:01 -0600694 public void onChange(boolean selfChange, Collection<Uri> uris, int flags,
Riddle Hsu9c024d12020-03-09 16:10:07 +0800695 @UserIdInt int userId) {
696 for (Uri uri : uris) {
697 if (mFontScaleUri.equals(uri)) {
698 updateFontScaleIfNeeded(userId);
699 } else if (mHideErrorDialogsUri.equals(uri)) {
700 synchronized (mGlobalLock) {
701 updateShouldShowDialogsLocked(getGlobalConfiguration());
702 }
Wale Ogunwalef6733932018-06-27 05:14:34 -0700703 }
704 }
705 }
706 }
707
Riddle Hsua0536432019-02-16 00:38:59 +0800708 /** Indicates that the method may be invoked frequently or is sensitive to performance. */
709 @Target(ElementType.METHOD)
710 @Retention(RetentionPolicy.SOURCE)
711 @interface HotPath {
712 int NONE = 0;
713 int OOM_ADJUSTMENT = 1;
714 int LRU_UPDATE = 2;
715 int PROCESS_CHANGE = 3;
716 int caller() default NONE;
717 }
718
Wale Ogunwalea38654f2019-11-17 20:37:15 -0800719 private final Runnable mUpdateOomAdjRunnable = new Runnable() {
720 @Override
Wale Ogunwale85fb19a2019-12-05 10:41:05 +0900721 public void run() {
Wale Ogunwalea38654f2019-11-17 20:37:15 -0800722 mAmInternal.updateOomAdj();
723 }
724 };
725
Charles Chen8d98dd22018-12-26 17:36:54 +0800726 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
727 public ActivityTaskManagerService(Context context) {
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700728 mContext = context;
Wale Ogunwale214f3482018-10-04 11:00:47 -0700729 mFactoryTest = FactoryTest.getMode();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700730 mSystemThread = ActivityThread.currentActivityThread();
731 mUiContext = mSystemThread.getSystemUiContext();
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700732 mLifecycleManager = new ClientLifecycleManager();
Wale Ogunwaleb73f3962018-11-20 07:58:22 -0800733 mInternal = new LocalService();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700734 GL_ES_VERSION = SystemProperties.getInt("ro.opengles.version", GL_ES_VERSION_UNDEFINED);
Wale Ogunwale568f9f412020-03-21 22:27:35 -0700735 mWindowOrganizerController = new WindowOrganizerController(this);
736 mTaskOrganizerController = mWindowOrganizerController.mTaskOrganizerController;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700737 }
738
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700739 public void onSystemReady() {
740 synchronized (mGlobalLock) {
Sergey Nikolaienkov30c947d2020-04-15 19:55:48 +0200741 final PackageManager pm = mContext.getPackageManager();
742 mHasHeavyWeightFeature = pm.hasSystemFeature(FEATURE_CANT_SAVE_STATE);
743 mHasLeanbackFeature = pm.hasSystemFeature(FEATURE_LEANBACK);
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700744 mAssistUtils = new AssistUtils(mContext);
745 mVrController.onSystemReady();
746 mRecentTasks.onSystemReadyLocked();
Garfield Tan891146c2018-10-09 12:14:00 -0700747 mStackSupervisor.onSystemReady();
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700748 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700749 }
750
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700751 public void onInitPowerManagement() {
752 synchronized (mGlobalLock) {
753 mStackSupervisor.initPowerManagement();
754 final PowerManager pm = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
755 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
756 mVoiceWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "*voice*");
757 mVoiceWakeLock.setReferenceCounted(false);
758 }
Wale Ogunwalef6733932018-06-27 05:14:34 -0700759 }
760
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700761 public void installSystemProviders() {
Wale Ogunwalef6733932018-06-27 05:14:34 -0700762 mFontScaleSettingObserver = new FontScaleSettingObserver();
763 }
764
Wale Ogunwale59507092018-10-29 09:00:30 -0700765 public void retrieveSettings(ContentResolver resolver) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700766 final boolean freeformWindowManagement =
767 mContext.getPackageManager().hasSystemFeature(FEATURE_FREEFORM_WINDOW_MANAGEMENT)
768 || Settings.Global.getInt(
769 resolver, DEVELOPMENT_ENABLE_FREEFORM_WINDOWS_SUPPORT, 0) != 0;
770
771 final boolean supportsMultiWindow = ActivityTaskManager.supportsMultiWindow(mContext);
772 final boolean supportsPictureInPicture = supportsMultiWindow &&
773 mContext.getPackageManager().hasSystemFeature(FEATURE_PICTURE_IN_PICTURE);
774 final boolean supportsSplitScreenMultiWindow =
775 ActivityTaskManager.supportsSplitScreenMultiWindow(mContext);
776 final boolean supportsMultiDisplay = mContext.getPackageManager()
777 .hasSystemFeature(FEATURE_ACTIVITIES_ON_SECONDARY_DISPLAYS);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700778 final boolean forceRtl = Settings.Global.getInt(resolver, DEVELOPMENT_FORCE_RTL, 0) != 0;
779 final boolean forceResizable = Settings.Global.getInt(
780 resolver, DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES, 0) != 0;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700781 final boolean sizeCompatFreeform = Settings.Global.getInt(
782 resolver, DEVELOPMENT_ENABLE_SIZECOMPAT_FREEFORM, 0) != 0;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700783
784 // Transfer any global setting for forcing RTL layout, into a System Property
Kiyoung Kim0fe161d2018-12-20 18:26:10 +0900785 DisplayProperties.debug_force_rtl(forceRtl);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700786
787 final Configuration configuration = new Configuration();
788 Settings.System.getConfiguration(resolver, configuration);
789 if (forceRtl) {
790 // This will take care of setting the correct layout direction flags
791 configuration.setLayoutDirection(configuration.locale);
792 }
793
794 synchronized (mGlobalLock) {
795 mForceResizableActivities = forceResizable;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700796 mSizeCompatFreeform = sizeCompatFreeform;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700797 final boolean multiWindowFormEnabled = freeformWindowManagement
798 || supportsSplitScreenMultiWindow
799 || supportsPictureInPicture
800 || supportsMultiDisplay;
801 if ((supportsMultiWindow || forceResizable) && multiWindowFormEnabled) {
802 mSupportsMultiWindow = true;
803 mSupportsFreeformWindowManagement = freeformWindowManagement;
804 mSupportsSplitScreenMultiWindow = supportsSplitScreenMultiWindow;
805 mSupportsPictureInPicture = supportsPictureInPicture;
806 mSupportsMultiDisplay = supportsMultiDisplay;
807 } else {
808 mSupportsMultiWindow = false;
809 mSupportsFreeformWindowManagement = false;
810 mSupportsSplitScreenMultiWindow = false;
811 mSupportsPictureInPicture = false;
812 mSupportsMultiDisplay = false;
813 }
Garfield Tanb5910b42019-03-14 14:50:59 -0700814 mWindowManager.mRoot.onSettingsRetrieved();
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700815 // This happens before any activities are started, so we can change global configuration
816 // in-place.
817 updateConfigurationLocked(configuration, null, true);
818 final Configuration globalConfig = getGlobalConfiguration();
819 if (DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION, "Initial config: " + globalConfig);
820
821 // Load resources only after the current configuration has been set.
822 final Resources res = mContext.getResources();
823 mThumbnailWidth = res.getDimensionPixelSize(
824 com.android.internal.R.dimen.thumbnail_width);
825 mThumbnailHeight = res.getDimensionPixelSize(
826 com.android.internal.R.dimen.thumbnail_height);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700827 }
828 }
829
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800830 public WindowManagerGlobalLock getGlobalLock() {
831 return mGlobalLock;
832 }
833
Yunfan Chen585f2932019-01-29 16:04:45 +0900834 /** For test purpose only. */
835 @VisibleForTesting
836 public ActivityTaskManagerInternal getAtmInternal() {
837 return mInternal;
838 }
839
Riddle Hsud93a6c42018-11-29 21:50:06 +0800840 public void initialize(IntentFirewall intentFirewall, PendingIntentController intentController,
841 Looper looper) {
842 mH = new H(looper);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700843 mUiHandler = new UiHandler();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700844 mIntentFirewall = intentFirewall;
Wale Ogunwale53783742018-09-16 10:21:51 -0700845 final File systemDir = SystemServiceManager.ensureSystemDir();
Wale Ogunwaleda8b8272018-11-29 19:37:37 -0800846 mAppWarnings = createAppWarnings(mUiContext, mH, mUiHandler, systemDir);
Wale Ogunwale53783742018-09-16 10:21:51 -0700847 mCompatModePackages = new CompatModePackages(this, systemDir, mH);
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700848 mPendingIntentController = intentController;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700849 mStackSupervisor = createStackSupervisor();
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700850
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700851 mTaskChangeNotificationController =
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700852 new TaskChangeNotificationController(mGlobalLock, mStackSupervisor, mH);
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700853 mLockTaskController = new LockTaskController(mContext, mStackSupervisor, mH);
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700854 mActivityStartController = new ActivityStartController(this);
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700855 setRecentTasks(new RecentTasks(this, mStackSupervisor));
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700856 mVrController = new VrController(mGlobalLock);
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700857 mKeyguardController = mStackSupervisor.getKeyguardController();
858 }
859
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700860 public void onActivityManagerInternalAdded() {
861 synchronized (mGlobalLock) {
862 mAmInternal = LocalServices.getService(ActivityManagerInternal.class);
863 mUgmInternal = LocalServices.getService(UriGrantsManagerInternal.class);
864 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700865 }
866
Yunfan Chen75157d72018-07-27 14:47:21 +0900867 int increaseConfigurationSeqLocked() {
868 mConfigurationSeq = Math.max(++mConfigurationSeq, 1);
869 return mConfigurationSeq;
870 }
871
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700872 protected ActivityStackSupervisor createStackSupervisor() {
873 final ActivityStackSupervisor supervisor = new ActivityStackSupervisor(this, mH.getLooper());
874 supervisor.initialize();
875 return supervisor;
876 }
877
Wale Ogunwaleda8b8272018-11-29 19:37:37 -0800878 protected AppWarnings createAppWarnings(
879 Context uiContext, Handler handler, Handler uiHandler, File systemDir) {
880 return new AppWarnings(this, uiContext, handler, uiHandler, systemDir);
881 }
882
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700883 public void setWindowManager(WindowManagerService wm) {
884 synchronized (mGlobalLock) {
885 mWindowManager = wm;
Louis Chang149d5c82019-12-30 09:47:39 +0800886 mRootWindowContainer = wm.mRoot;
Louis Chang3ff72a82019-12-17 12:12:59 +0800887 mTempConfig.setToDefaults();
888 mTempConfig.setLocales(LocaleList.getDefault());
889 mConfigurationSeq = mTempConfig.seq = 1;
Louis Chang149d5c82019-12-30 09:47:39 +0800890 mRootWindowContainer.onConfigurationChanged(mTempConfig);
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700891 mLockTaskController.setWindowManager(wm);
892 mStackSupervisor.setWindowManager(wm);
Louis Chang149d5c82019-12-30 09:47:39 +0800893 mRootWindowContainer.setWindowManager(wm);
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700894 }
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700895 }
896
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700897 public void setUsageStatsManager(UsageStatsManagerInternal usageStatsManager) {
898 synchronized (mGlobalLock) {
899 mUsageStatsInternal = usageStatsManager;
900 }
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700901 }
902
Wale Ogunwalef6733932018-06-27 05:14:34 -0700903 UserManagerService getUserManager() {
904 if (mUserManager == null) {
905 IBinder b = ServiceManager.getService(Context.USER_SERVICE);
906 mUserManager = (UserManagerService) IUserManager.Stub.asInterface(b);
907 }
908 return mUserManager;
909 }
910
Philip P. Moltmannee295092020-02-10 08:46:26 -0800911 AppOpsManager getAppOpsManager() {
912 if (mAppOpsManager == null) {
913 mAppOpsManager = mContext.getSystemService(AppOpsManager.class);
Wale Ogunwalef6733932018-06-27 05:14:34 -0700914 }
Philip P. Moltmannee295092020-02-10 08:46:26 -0800915 return mAppOpsManager;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700916 }
917
918 boolean hasUserRestriction(String restriction, int userId) {
919 return getUserManager().hasUserRestriction(restriction, userId);
920 }
921
Michal Karpinski15486842019-04-25 17:33:42 +0100922 boolean hasSystemAlertWindowPermission(int callingUid, int callingPid, String callingPackage) {
Philip P. Moltmannee295092020-02-10 08:46:26 -0800923 final int mode = getAppOpsManager().noteOpNoThrow(AppOpsManager.OP_SYSTEM_ALERT_WINDOW,
924 callingUid, callingPackage, /* featureId */ null, "");
Michal Karpinski15486842019-04-25 17:33:42 +0100925 if (mode == AppOpsManager.MODE_DEFAULT) {
926 return checkPermission(Manifest.permission.SYSTEM_ALERT_WINDOW, callingPid, callingUid)
927 == PERMISSION_GRANTED;
928 }
929 return mode == AppOpsManager.MODE_ALLOWED;
930 }
931
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700932 @VisibleForTesting
933 protected void setRecentTasks(RecentTasks recentTasks) {
934 mRecentTasks = recentTasks;
935 mStackSupervisor.setRecentTasks(recentTasks);
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700936 }
937
938 RecentTasks getRecentTasks() {
939 return mRecentTasks;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700940 }
941
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700942 ClientLifecycleManager getLifecycleManager() {
943 return mLifecycleManager;
944 }
945
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -0700946 ActivityStartController getActivityStartController() {
947 return mActivityStartController;
948 }
949
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700950 TaskChangeNotificationController getTaskChangeNotificationController() {
951 return mTaskChangeNotificationController;
952 }
953
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700954 LockTaskController getLockTaskController() {
955 return mLockTaskController;
956 }
957
Yunfan Chen75157d72018-07-27 14:47:21 +0900958 /**
959 * Return the global configuration used by the process corresponding to the input pid. This is
960 * usually the global configuration with some overrides specific to that process.
961 */
962 Configuration getGlobalConfigurationForCallingPid() {
963 final int pid = Binder.getCallingPid();
Yunfan Chenc2ff6cf2018-12-04 16:56:21 -0800964 return getGlobalConfigurationForPid(pid);
965 }
966
967 /**
968 * Return the global configuration used by the process corresponding to the given pid.
969 */
970 Configuration getGlobalConfigurationForPid(int pid) {
Yunfan Chen75157d72018-07-27 14:47:21 +0900971 if (pid == MY_PID || pid < 0) {
972 return getGlobalConfiguration();
973 }
974 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +0100975 final WindowProcessController app = mProcessMap.getProcess(pid);
Yunfan Chen75157d72018-07-27 14:47:21 +0900976 return app != null ? app.getConfiguration() : getGlobalConfiguration();
977 }
978 }
979
980 /**
981 * Return the device configuration info used by the process corresponding to the input pid.
982 * The value is consistent with the global configuration for the process.
983 */
984 @Override
985 public ConfigurationInfo getDeviceConfigurationInfo() {
986 ConfigurationInfo config = new ConfigurationInfo();
987 synchronized (mGlobalLock) {
988 final Configuration globalConfig = getGlobalConfigurationForCallingPid();
989 config.reqTouchScreen = globalConfig.touchscreen;
990 config.reqKeyboardType = globalConfig.keyboard;
991 config.reqNavigation = globalConfig.navigation;
992 if (globalConfig.navigation == Configuration.NAVIGATION_DPAD
993 || globalConfig.navigation == Configuration.NAVIGATION_TRACKBALL) {
994 config.reqInputFeatures |= ConfigurationInfo.INPUT_FEATURE_FIVE_WAY_NAV;
995 }
996 if (globalConfig.keyboard != Configuration.KEYBOARD_UNDEFINED
997 && globalConfig.keyboard != Configuration.KEYBOARD_NOKEYS) {
998 config.reqInputFeatures |= ConfigurationInfo.INPUT_FEATURE_HARD_KEYBOARD;
999 }
Wale Ogunwale342fbe92018-10-09 08:44:10 -07001000 config.reqGlEsVersion = GL_ES_VERSION;
Yunfan Chen75157d72018-07-27 14:47:21 +09001001 }
1002 return config;
1003 }
1004
Wale Ogunwale6767eae2018-05-03 15:52:51 -07001005 private void start() {
Wale Ogunwale53783742018-09-16 10:21:51 -07001006 LocalServices.addService(ActivityTaskManagerInternal.class, mInternal);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07001007 }
1008
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001009 public static final class Lifecycle extends SystemService {
1010 private final ActivityTaskManagerService mService;
1011
1012 public Lifecycle(Context context) {
1013 super(context);
1014 mService = new ActivityTaskManagerService(context);
1015 }
1016
1017 @Override
1018 public void onStart() {
1019 publishBinderService(Context.ACTIVITY_TASK_SERVICE, mService);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07001020 mService.start();
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001021 }
1022
Garfield Tan891146c2018-10-09 12:14:00 -07001023 @Override
1024 public void onUnlockUser(int userId) {
1025 synchronized (mService.getGlobalLock()) {
Garfield Tan0d407f42019-03-07 11:47:01 -08001026 mService.mStackSupervisor.onUserUnlocked(userId);
Garfield Tan891146c2018-10-09 12:14:00 -07001027 }
1028 }
1029
1030 @Override
1031 public void onCleanupUser(int userId) {
1032 synchronized (mService.getGlobalLock()) {
1033 mService.mStackSupervisor.mLaunchParamsPersister.onCleanupUser(userId);
1034 }
1035 }
1036
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001037 public ActivityTaskManagerService getService() {
1038 return mService;
1039 }
1040 }
1041
1042 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001043 public final int startActivity(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001044 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1045 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1046 Bundle bOptions) {
1047 return startActivityAsUser(caller, callingPackage, callingFeatureId, intent, resolvedType,
1048 resultTo, resultWho, requestCode, startFlags, profilerInfo, bOptions,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001049 UserHandle.getCallingUserId());
1050 }
1051
1052 @Override
1053 public final int startActivities(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001054 String callingFeatureId, Intent[] intents, String[] resolvedTypes, IBinder resultTo,
1055 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001056 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001057 final String reason = "startActivities";
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001058 enforceNotIsolatedCaller(reason);
1059 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(), userId, reason);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001060 // TODO: Switch to user app stacks here.
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00001061 return getActivityStartController().startActivities(caller, -1, 0, -1, callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001062 callingFeatureId, intents, resolvedTypes, resultTo,
1063 SafeActivityOptions.fromBundle(bOptions), userId, reason,
1064 null /* originatingPendingIntent */, false /* allowBackgroundActivityStart */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001065 }
1066
1067 @Override
1068 public int startActivityAsUser(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001069 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1070 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1071 Bundle bOptions, int userId) {
1072 return startActivityAsUser(caller, callingPackage, callingFeatureId, intent, resolvedType,
1073 resultTo, resultWho, requestCode, startFlags, profilerInfo, bOptions, userId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001074 true /*validateIncomingUser*/);
1075 }
1076
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001077 private int startActivityAsUser(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001078 @Nullable String callingFeatureId, Intent intent, String resolvedType,
1079 IBinder resultTo, String resultWho, int requestCode, int startFlags,
1080 ProfilerInfo profilerInfo, Bundle bOptions, int userId, boolean validateIncomingUser) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001081 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001082 enforceNotIsolatedCaller("startActivityAsUser");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001083
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001084 userId = getActivityStartController().checkTargetUser(userId, validateIncomingUser,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001085 Binder.getCallingPid(), Binder.getCallingUid(), "startActivityAsUser");
1086
1087 // TODO: Switch to user app stacks here.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001088 return getActivityStartController().obtainStarter(intent, "startActivityAsUser")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001089 .setCaller(caller)
1090 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001091 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001092 .setResolvedType(resolvedType)
1093 .setResultTo(resultTo)
1094 .setResultWho(resultWho)
1095 .setRequestCode(requestCode)
1096 .setStartFlags(startFlags)
1097 .setProfilerInfo(profilerInfo)
1098 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001099 .setUserId(userId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001100 .execute();
1101
1102 }
1103
1104 @Override
1105 public int startActivityIntentSender(IApplicationThread caller, IIntentSender target,
1106 IBinder whitelistToken, Intent fillInIntent, String resolvedType, IBinder resultTo,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001107 String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle bOptions) {
1108 enforceNotIsolatedCaller("startActivityIntentSender");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001109 // Refuse possible leaked file descriptors
1110 if (fillInIntent != null && fillInIntent.hasFileDescriptors()) {
1111 throw new IllegalArgumentException("File descriptors passed in Intent");
1112 }
1113
1114 if (!(target instanceof PendingIntentRecord)) {
1115 throw new IllegalArgumentException("Bad PendingIntent object");
1116 }
1117
1118 PendingIntentRecord pir = (PendingIntentRecord)target;
1119
1120 synchronized (mGlobalLock) {
1121 // If this is coming from the currently resumed activity, it is
1122 // effectively saying that app switches are allowed at this point.
Andrii Kulian5f750bc2018-07-17 08:57:23 -07001123 final ActivityStack stack = getTopDisplayFocusedStack();
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08001124 if (stack != null && stack.mResumedActivity != null
1125 && stack.mResumedActivity.info.applicationInfo.uid == Binder.getCallingUid()) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001126 mAppSwitchesAllowedTime = 0;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001127 }
1128 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001129 return pir.sendInner(0, fillInIntent, resolvedType, whitelistToken, null, null,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001130 resultTo, resultWho, requestCode, flagsMask, flagsValues, bOptions);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001131 }
1132
1133 @Override
1134 public boolean startNextMatchingActivity(IBinder callingActivity, Intent intent,
1135 Bundle bOptions) {
1136 // Refuse possible leaked file descriptors
1137 if (intent != null && intent.hasFileDescriptors()) {
1138 throw new IllegalArgumentException("File descriptors passed in Intent");
1139 }
1140 SafeActivityOptions options = SafeActivityOptions.fromBundle(bOptions);
1141
1142 synchronized (mGlobalLock) {
1143 final ActivityRecord r = ActivityRecord.isInStackLocked(callingActivity);
1144 if (r == null) {
1145 SafeActivityOptions.abort(options);
1146 return false;
1147 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001148 if (!r.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001149 // The caller is not running... d'oh!
1150 SafeActivityOptions.abort(options);
1151 return false;
1152 }
1153 intent = new Intent(intent);
1154 // The caller is not allowed to change the data.
1155 intent.setDataAndType(r.intent.getData(), r.intent.getType());
1156 // And we are resetting to find the next component...
1157 intent.setComponent(null);
1158
1159 final boolean debug = ((intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0);
1160
1161 ActivityInfo aInfo = null;
1162 try {
1163 List<ResolveInfo> resolves =
1164 AppGlobals.getPackageManager().queryIntentActivities(
1165 intent, r.resolvedType,
1166 PackageManager.MATCH_DEFAULT_ONLY | STOCK_PM_FLAGS,
1167 UserHandle.getCallingUserId()).getList();
1168
1169 // Look for the original activity in the list...
1170 final int N = resolves != null ? resolves.size() : 0;
1171 for (int i=0; i<N; i++) {
1172 ResolveInfo rInfo = resolves.get(i);
1173 if (rInfo.activityInfo.packageName.equals(r.packageName)
1174 && rInfo.activityInfo.name.equals(r.info.name)) {
1175 // We found the current one... the next matching is
1176 // after it.
1177 i++;
1178 if (i<N) {
1179 aInfo = resolves.get(i).activityInfo;
1180 }
1181 if (debug) {
1182 Slog.v(TAG, "Next matching activity: found current " + r.packageName
1183 + "/" + r.info.name);
1184 Slog.v(TAG, "Next matching activity: next is " + ((aInfo == null)
1185 ? "null" : aInfo.packageName + "/" + aInfo.name));
1186 }
1187 break;
1188 }
1189 }
1190 } catch (RemoteException e) {
1191 }
1192
1193 if (aInfo == null) {
1194 // Nobody who is next!
1195 SafeActivityOptions.abort(options);
1196 if (debug) Slog.d(TAG, "Next matching activity: nothing found");
1197 return false;
1198 }
1199
1200 intent.setComponent(new ComponentName(
1201 aInfo.applicationInfo.packageName, aInfo.name));
1202 intent.setFlags(intent.getFlags()&~(
1203 Intent.FLAG_ACTIVITY_FORWARD_RESULT|
1204 Intent.FLAG_ACTIVITY_CLEAR_TOP|
1205 Intent.FLAG_ACTIVITY_MULTIPLE_TASK|
1206 FLAG_ACTIVITY_NEW_TASK));
1207
1208 // Okay now we need to start the new activity, replacing the currently running activity.
1209 // This is a little tricky because we want to start the new one as if the current one is
1210 // finished, but not finish the current one first so that there is no flicker.
1211 // And thus...
1212 final boolean wasFinishing = r.finishing;
1213 r.finishing = true;
1214
1215 // Propagate reply information over to the new activity.
1216 final ActivityRecord resultTo = r.resultTo;
1217 final String resultWho = r.resultWho;
1218 final int requestCode = r.requestCode;
1219 r.resultTo = null;
1220 if (resultTo != null) {
1221 resultTo.removeResultsLocked(r, resultWho, requestCode);
1222 }
1223
1224 final long origId = Binder.clearCallingIdentity();
1225 // TODO(b/64750076): Check if calling pid should really be -1.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001226 final int res = getActivityStartController()
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001227 .obtainStarter(intent, "startNextMatchingActivity")
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001228 .setCaller(r.app.getThread())
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001229 .setResolvedType(r.resolvedType)
1230 .setActivityInfo(aInfo)
1231 .setResultTo(resultTo != null ? resultTo.appToken : null)
1232 .setResultWho(resultWho)
1233 .setRequestCode(requestCode)
1234 .setCallingPid(-1)
1235 .setCallingUid(r.launchedFromUid)
1236 .setCallingPackage(r.launchedFromPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001237 .setCallingFeatureId(r.launchedFromFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001238 .setRealCallingPid(-1)
1239 .setRealCallingUid(r.launchedFromUid)
1240 .setActivityOptions(options)
1241 .execute();
1242 Binder.restoreCallingIdentity(origId);
1243
1244 r.finishing = wasFinishing;
1245 if (res != ActivityManager.START_SUCCESS) {
1246 return false;
1247 }
1248 return true;
1249 }
1250 }
1251
Galia Peychevaed401cc2020-03-19 20:28:09 +01001252 private void enforceCallerIsDream(String callerPackageName) {
Galia Peycheva52e89222020-02-18 23:41:43 +01001253 final long origId = Binder.clearCallingIdentity();
Galia Peychevaed401cc2020-03-19 20:28:09 +01001254 try {
1255 if (!ActivityRecord.canLaunchDreamActivity(callerPackageName)) {
1256 throw new SecurityException("The dream activity can be started only when the device"
1257 + " is dreaming and only by the active dream package.");
1258 }
1259 } finally {
1260 Binder.restoreCallingIdentity(origId);
Galia Peycheva52e89222020-02-18 23:41:43 +01001261 }
Galia Peychevaed401cc2020-03-19 20:28:09 +01001262 }
1263
1264 @Override
1265 public boolean startDreamActivity(@NonNull Intent intent) {
1266 assertPackageMatchesCallingUid(intent.getPackage());
1267 enforceCallerIsDream(intent.getPackage());
Galia Peycheva52e89222020-02-18 23:41:43 +01001268
Galia Peycheva6861e912019-08-21 10:20:23 +02001269 final ActivityInfo a = new ActivityInfo();
1270 a.theme = com.android.internal.R.style.Theme_Dream;
1271 a.exported = true;
1272 a.name = DreamActivity.class.getName();
Galia Peycheva6861e912019-08-21 10:20:23 +02001273 a.enabled = true;
1274 a.launchMode = ActivityInfo.LAUNCH_SINGLE_INSTANCE;
Galia Peycheva6861e912019-08-21 10:20:23 +02001275 a.persistableMode = ActivityInfo.PERSIST_NEVER;
1276 a.screenOrientation = ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
1277 a.colorMode = ActivityInfo.COLOR_MODE_DEFAULT;
1278 a.flags |= ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS;
1279
Galia Peycheva45f48d32020-02-20 15:39:10 +01001280 final ActivityOptions options = ActivityOptions.makeBasic();
1281 options.setLaunchActivityType(ACTIVITY_TYPE_DREAM);
1282
Galia Peychevaed401cc2020-03-19 20:28:09 +01001283 synchronized (mGlobalLock) {
1284 final WindowProcessController process = mProcessMap.getProcess(Binder.getCallingPid());
1285
1286 a.packageName = process.mInfo.packageName;
1287 a.applicationInfo = process.mInfo;
1288 a.processName = process.mInfo.processName;
1289 a.uiOptions = process.mInfo.uiOptions;
1290 a.taskAffinity = "android:" + a.packageName + "/dream";
1291
1292 final int callingUid = Binder.getCallingUid();
1293 final int callingPid = Binder.getCallingPid();
1294
1295 final long origId = Binder.clearCallingIdentity();
1296 try {
1297 getActivityStartController().obtainStarter(intent, "dream")
1298 .setCallingUid(callingUid)
1299 .setCallingPid(callingPid)
1300 .setActivityInfo(a)
1301 .setActivityOptions(options.toBundle())
1302 // To start the dream from background, we need to start it from a persistent
1303 // system process. Here we set the real calling uid to the system server uid
1304 .setRealCallingUid(Binder.getCallingUid())
1305 .setAllowBackgroundActivityStart(true)
1306 .execute();
1307 return true;
1308 } finally {
1309 Binder.restoreCallingIdentity(origId);
1310 }
Galia Peycheva6861e912019-08-21 10:20:23 +02001311 }
1312 }
1313
1314 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001315 public final WaitResult startActivityAndWait(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001316 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1317 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1318 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001319 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001320 final WaitResult res = new WaitResult();
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001321 enforceNotIsolatedCaller("startActivityAndWait");
1322 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(),
1323 userId, "startActivityAndWait");
1324 // TODO: Switch to user app stacks here.
1325 getActivityStartController().obtainStarter(intent, "startActivityAndWait")
1326 .setCaller(caller)
1327 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001328 .setCallingFeatureId(callingFeatureId)
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001329 .setResolvedType(resolvedType)
1330 .setResultTo(resultTo)
1331 .setResultWho(resultWho)
1332 .setRequestCode(requestCode)
1333 .setStartFlags(startFlags)
1334 .setActivityOptions(bOptions)
1335 .setUserId(userId)
1336 .setProfilerInfo(profilerInfo)
1337 .setWaitResult(res)
1338 .execute();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001339 return res;
1340 }
1341
1342 @Override
1343 public final int startActivityWithConfig(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001344 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1345 String resultWho, int requestCode, int startFlags, Configuration config,
1346 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001347 assertPackageMatchesCallingUid(callingPackage);
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001348 enforceNotIsolatedCaller("startActivityWithConfig");
1349 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(), userId,
1350 "startActivityWithConfig");
1351 // TODO: Switch to user app stacks here.
1352 return getActivityStartController().obtainStarter(intent, "startActivityWithConfig")
1353 .setCaller(caller)
1354 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001355 .setCallingFeatureId(callingFeatureId)
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001356 .setResolvedType(resolvedType)
1357 .setResultTo(resultTo)
1358 .setResultWho(resultWho)
1359 .setRequestCode(requestCode)
1360 .setStartFlags(startFlags)
1361 .setGlobalConfiguration(config)
1362 .setActivityOptions(bOptions)
1363 .setUserId(userId)
1364 .execute();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001365 }
1366
Robert Carr8a2f9132019-11-11 15:03:15 -08001367 @Override
Alison Cichowlas3e340502018-08-07 17:15:01 -04001368 public IBinder requestStartActivityPermissionToken(IBinder delegatorToken) {
1369 int callingUid = Binder.getCallingUid();
1370 if (UserHandle.getAppId(callingUid) != SYSTEM_UID) {
1371 throw new SecurityException("Only the system process can request a permission token, "
1372 + "received request from uid: " + callingUid);
1373 }
1374 IBinder permissionToken = new Binder();
1375 synchronized (mGlobalLock) {
1376 mStartActivitySources.put(permissionToken, delegatorToken);
1377 }
1378
1379 Message expireMsg = PooledLambda.obtainMessage(
1380 ActivityTaskManagerService::expireStartAsCallerTokenMsg, this, permissionToken);
1381 mUiHandler.sendMessageDelayed(expireMsg, START_AS_CALLER_TOKEN_TIMEOUT_IMPL);
1382
1383 Message forgetMsg = PooledLambda.obtainMessage(
1384 ActivityTaskManagerService::forgetStartAsCallerTokenMsg, this, permissionToken);
1385 mUiHandler.sendMessageDelayed(forgetMsg, START_AS_CALLER_TOKEN_EXPIRED_TIMEOUT);
1386
1387 return permissionToken;
1388 }
1389
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001390 @Override
1391 public final int startActivityAsCaller(IApplicationThread caller, String callingPackage,
1392 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
Alison Cichowlas3e340502018-08-07 17:15:01 -04001393 int startFlags, ProfilerInfo profilerInfo, Bundle bOptions, IBinder permissionToken,
1394 boolean ignoreTargetSecurity, int userId) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001395 // This is very dangerous -- it allows you to perform a start activity (including
Alison Cichowlas3e340502018-08-07 17:15:01 -04001396 // permission grants) as any app that may launch one of your own activities. So we only
1397 // allow this in two cases:
1398 // 1) The caller is an activity that is part of the core framework, and then only when it
1399 // is running as the system.
1400 // 2) The caller provides a valid permissionToken. Permission tokens are one-time use and
1401 // can only be requested by a system activity, which may then delegate this call to
1402 // another app.
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001403 final ActivityRecord sourceRecord;
1404 final int targetUid;
1405 final String targetPackage;
Philip P. Moltmannee295092020-02-10 08:46:26 -08001406 final String targetFeatureId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001407 final boolean isResolver;
1408 synchronized (mGlobalLock) {
1409 if (resultTo == null) {
1410 throw new SecurityException("Must be called from an activity");
1411 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001412 final IBinder sourceToken;
1413 if (permissionToken != null) {
1414 // To even attempt to use a permissionToken, an app must also have this signature
1415 // permission.
1416 mAmInternal.enforceCallingPermission(
1417 android.Manifest.permission.START_ACTIVITY_AS_CALLER,
1418 "startActivityAsCaller");
1419 // If called with a permissionToken, we want the sourceRecord from the delegator
1420 // activity that requested this token.
1421 sourceToken = mStartActivitySources.remove(permissionToken);
1422 if (sourceToken == null) {
1423 // Invalid permissionToken, check if it recently expired.
1424 if (mExpiredStartAsCallerTokens.contains(permissionToken)) {
1425 throw new SecurityException("Called with expired permission token: "
1426 + permissionToken);
1427 } else {
1428 throw new SecurityException("Called with invalid permission token: "
1429 + permissionToken);
1430 }
1431 }
1432 } else {
1433 // This method was called directly by the source.
1434 sourceToken = resultTo;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001435 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001436
Louis Chang149d5c82019-12-30 09:47:39 +08001437 sourceRecord = mRootWindowContainer.isInAnyStack(sourceToken);
Alison Cichowlas3e340502018-08-07 17:15:01 -04001438 if (sourceRecord == null) {
1439 throw new SecurityException("Called with bad activity token: " + sourceToken);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001440 }
1441 if (sourceRecord.app == null) {
1442 throw new SecurityException("Called without a process attached to activity");
1443 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001444
1445 // Whether called directly or from a delegate, the source activity must be from the
1446 // android package.
1447 if (!sourceRecord.info.packageName.equals("android")) {
1448 throw new SecurityException("Must be called from an activity that is "
1449 + "declared in the android package");
1450 }
1451
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001452 if (UserHandle.getAppId(sourceRecord.app.mUid) != SYSTEM_UID) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001453 // This is still okay, as long as this activity is running under the
1454 // uid of the original calling activity.
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001455 if (sourceRecord.app.mUid != sourceRecord.launchedFromUid) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001456 throw new SecurityException(
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001457 "Calling activity in uid " + sourceRecord.app.mUid
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001458 + " must be system uid or original calling uid "
1459 + sourceRecord.launchedFromUid);
1460 }
1461 }
1462 if (ignoreTargetSecurity) {
1463 if (intent.getComponent() == null) {
1464 throw new SecurityException(
1465 "Component must be specified with ignoreTargetSecurity");
1466 }
1467 if (intent.getSelector() != null) {
1468 throw new SecurityException(
1469 "Selector not allowed with ignoreTargetSecurity");
1470 }
1471 }
1472 targetUid = sourceRecord.launchedFromUid;
1473 targetPackage = sourceRecord.launchedFromPackage;
Philip P. Moltmannee295092020-02-10 08:46:26 -08001474 targetFeatureId = sourceRecord.launchedFromFeatureId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001475 isResolver = sourceRecord.isResolverOrChildActivity();
1476 }
1477
1478 if (userId == UserHandle.USER_NULL) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001479 userId = UserHandle.getUserId(sourceRecord.app.mUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001480 }
1481
1482 // TODO: Switch to user app stacks here.
1483 try {
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001484 return getActivityStartController().obtainStarter(intent, "startActivityAsCaller")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001485 .setCallingUid(targetUid)
1486 .setCallingPackage(targetPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001487 .setCallingFeatureId(targetFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001488 .setResolvedType(resolvedType)
1489 .setResultTo(resultTo)
1490 .setResultWho(resultWho)
1491 .setRequestCode(requestCode)
1492 .setStartFlags(startFlags)
1493 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001494 .setUserId(userId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001495 .setIgnoreTargetSecurity(ignoreTargetSecurity)
1496 .setFilterCallingUid(isResolver ? 0 /* system */ : targetUid)
Alan Stokes2f4a4ed2019-05-08 16:56:45 +01001497 // The target may well be in the background, which would normally prevent it
1498 // from starting an activity. Here we definitely want the start to succeed.
1499 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001500 .execute();
1501 } catch (SecurityException e) {
1502 // XXX need to figure out how to propagate to original app.
1503 // A SecurityException here is generally actually a fault of the original
1504 // calling activity (such as a fairly granting permissions), so propagate it
1505 // back to them.
1506 /*
1507 StringBuilder msg = new StringBuilder();
1508 msg.append("While launching");
1509 msg.append(intent.toString());
1510 msg.append(": ");
1511 msg.append(e.getMessage());
1512 */
1513 throw e;
1514 }
1515 }
1516
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001517 int handleIncomingUser(int callingPid, int callingUid, int userId, String name) {
1518 return mAmInternal.handleIncomingUser(callingPid, callingUid, userId, false /* allowAll */,
Jonathan Scott92335342019-12-17 14:46:26 +00001519 ALLOW_NON_FULL, name, null /* callerPackage */);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001520 }
1521
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001522 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08001523 public int startVoiceActivity(String callingPackage, String callingFeatureId, int callingPid,
1524 int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001525 IVoiceInteractor interactor, int startFlags, ProfilerInfo profilerInfo,
1526 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001527 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001528 mAmInternal.enforceCallingPermission(BIND_VOICE_INTERACTION, "startVoiceActivity()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001529 if (session == null || interactor == null) {
1530 throw new NullPointerException("null session or interactor");
1531 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001532 userId = handleIncomingUser(callingPid, callingUid, userId, "startVoiceActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001533 // TODO: Switch to user app stacks here.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001534 return getActivityStartController().obtainStarter(intent, "startVoiceActivity")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001535 .setCallingUid(callingUid)
1536 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001537 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001538 .setResolvedType(resolvedType)
1539 .setVoiceSession(session)
1540 .setVoiceInteractor(interactor)
1541 .setStartFlags(startFlags)
1542 .setProfilerInfo(profilerInfo)
1543 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001544 .setUserId(userId)
Michal Karpinski85fa2022019-02-08 12:05:09 +00001545 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001546 .execute();
1547 }
1548
1549 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08001550 public int startAssistantActivity(String callingPackage, @NonNull String callingFeatureId,
1551 int callingPid, int callingUid, Intent intent, String resolvedType, Bundle bOptions,
1552 int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001553 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001554 mAmInternal.enforceCallingPermission(BIND_VOICE_INTERACTION, "startAssistantActivity()");
1555 userId = handleIncomingUser(callingPid, callingUid, userId, "startAssistantActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001556
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001557 return getActivityStartController().obtainStarter(intent, "startAssistantActivity")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001558 .setCallingUid(callingUid)
1559 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001560 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001561 .setResolvedType(resolvedType)
1562 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001563 .setUserId(userId)
Michal Karpinski85fa2022019-02-08 12:05:09 +00001564 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001565 .execute();
1566 }
1567
Riddle Hsu609a8e22019-06-27 16:46:29 -06001568 /**
1569 * Start the recents activity to perform the recents animation.
1570 *
1571 * @param intent The intent to start the recents activity.
1572 * @param recentsAnimationRunner Pass {@code null} to only preload the activity.
1573 */
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001574 @Override
Riddle Hsu609a8e22019-06-27 16:46:29 -06001575 public void startRecentsActivity(Intent intent, @Deprecated IAssistDataReceiver unused,
1576 @Nullable IRecentsAnimationRunner recentsAnimationRunner) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001577 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "startRecentsActivity()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001578 final int callingPid = Binder.getCallingPid();
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02001579 final int callingUid = Binder.getCallingUid();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001580 final long origId = Binder.clearCallingIdentity();
1581 try {
1582 synchronized (mGlobalLock) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07001583 final ComponentName recentsComponent = mRecentTasks.getRecentsComponent();
Philip P. Moltmannee295092020-02-10 08:46:26 -08001584 final String recentsFeatureId = mRecentTasks.getRecentsComponentFeatureId();
Wale Ogunwale16e505a2018-05-07 15:00:49 -07001585 final int recentsUid = mRecentTasks.getRecentsComponentUid();
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02001586 final WindowProcessController caller = getProcessController(callingPid, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001587
1588 // Start a new recents animation
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001589 final RecentsAnimation anim = new RecentsAnimation(this, mStackSupervisor,
Riddle Hsu609a8e22019-06-27 16:46:29 -06001590 getActivityStartController(), mWindowManager, intent, recentsComponent,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001591 recentsFeatureId, recentsUid, caller);
Riddle Hsu609a8e22019-06-27 16:46:29 -06001592 if (recentsAnimationRunner == null) {
1593 anim.preloadRecentsActivity();
1594 } else {
1595 anim.startRecentsActivity(recentsAnimationRunner);
1596 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001597 }
1598 } finally {
1599 Binder.restoreCallingIdentity(origId);
1600 }
1601 }
1602
1603 @Override
1604 public final int startActivityFromRecents(int taskId, Bundle bOptions) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001605 enforceCallerIsRecentsOrHasPermission(START_TASKS_FROM_RECENTS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001606 "startActivityFromRecents()");
1607
1608 final int callingPid = Binder.getCallingPid();
1609 final int callingUid = Binder.getCallingUid();
1610 final SafeActivityOptions safeOptions = SafeActivityOptions.fromBundle(bOptions);
1611 final long origId = Binder.clearCallingIdentity();
1612 try {
1613 synchronized (mGlobalLock) {
1614 return mStackSupervisor.startActivityFromRecents(callingPid, callingUid, taskId,
1615 safeOptions);
1616 }
1617 } finally {
1618 Binder.restoreCallingIdentity(origId);
1619 }
1620 }
1621
1622 /**
Andrii Kulian2eb84b22018-12-13 18:18:54 -08001623 * Public API to check if the client is allowed to start an activity on specified display.
1624 *
1625 * If the target display is private or virtual, some restrictions will apply.
1626 *
1627 * @param displayId Target display id.
1628 * @param intent Intent used to launch the activity.
1629 * @param resolvedType The MIME type of the intent.
1630 * @param userId The id of the user for whom the call is made.
1631 * @return {@code true} if a call to start an activity on the target display should succeed and
1632 * no {@link SecurityException} will be thrown, {@code false} otherwise.
1633 */
1634 @Override
1635 public final boolean isActivityStartAllowedOnDisplay(int displayId, Intent intent,
1636 String resolvedType, int userId) {
1637 final int callingUid = Binder.getCallingUid();
1638 final int callingPid = Binder.getCallingPid();
1639 final long origId = Binder.clearCallingIdentity();
1640
1641 try {
1642 // Collect information about the target of the Intent.
1643 ActivityInfo aInfo = mStackSupervisor.resolveActivity(intent, resolvedType,
1644 0 /* startFlags */, null /* profilerInfo */, userId,
1645 ActivityStarter.computeResolveFilterUid(callingUid, callingUid,
1646 UserHandle.USER_NULL));
1647 aInfo = mAmInternal.getActivityInfoForUser(aInfo, userId);
1648
1649 synchronized (mGlobalLock) {
1650 return mStackSupervisor.canPlaceEntityOnDisplay(displayId, callingPid, callingUid,
1651 aInfo);
1652 }
1653 } finally {
1654 Binder.restoreCallingIdentity(origId);
1655 }
1656 }
1657
1658 /**
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001659 * This is the internal entry point for handling Activity.finish().
1660 *
1661 * @param token The Binder token referencing the Activity we want to finish.
1662 * @param resultCode Result code, if any, from this Activity.
1663 * @param resultData Result data (Intent), if any, from this Activity.
1664 * @param finishTask Whether to finish the task associated with this Activity.
1665 *
1666 * @return Returns true if the activity successfully finished, or false if it is still running.
1667 */
1668 @Override
1669 public final boolean finishActivity(IBinder token, int resultCode, Intent resultData,
1670 int finishTask) {
1671 // Refuse possible leaked file descriptors
1672 if (resultData != null && resultData.hasFileDescriptors()) {
1673 throw new IllegalArgumentException("File descriptors passed in Intent");
1674 }
1675
Jeff Sharkey307ea7a2020-04-13 10:24:49 -06001676 final ActivityRecord r;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001677 synchronized (mGlobalLock) {
Jeff Sharkey307ea7a2020-04-13 10:24:49 -06001678 r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001679 if (r == null) {
1680 return true;
1681 }
Jeff Sharkey307ea7a2020-04-13 10:24:49 -06001682 }
1683
1684 // Carefully collect grants without holding lock
1685 final NeededUriGrants resultGrants = collectGrants(resultData, r.resultTo);
1686
1687 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001688 // Keep track of the root activity of the task before we finish it
Louis Changcdec0802019-11-11 11:45:07 +08001689 final Task tr = r.getTask();
Andrii Kulian057a6512019-07-15 16:15:51 -07001690 final ActivityRecord rootR = tr.getRootActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001691 if (rootR == null) {
1692 Slog.w(TAG, "Finishing task with all activities already finished");
1693 }
1694 // Do not allow task to finish if last task in lockTask mode. Launchable priv-apps can
1695 // finish.
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07001696 if (getLockTaskController().activityBlockedFromFinish(r)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001697 return false;
1698 }
1699
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001700 // TODO: There is a dup. of this block of code in ActivityStack.navigateUpToLocked
1701 // We should consolidate.
1702 if (mController != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001703 // Find the first activity that is not finishing.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001704 final ActivityRecord next =
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08001705 r.getRootTask().topRunningActivity(token, INVALID_TASK_ID);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001706 if (next != null) {
1707 // ask watcher if this is allowed
1708 boolean resumeOK = true;
1709 try {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001710 resumeOK = mController.activityResuming(next.packageName);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001711 } catch (RemoteException e) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001712 mController = null;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001713 Watchdog.getInstance().setActivityController(null);
1714 }
1715
1716 if (!resumeOK) {
1717 Slog.i(TAG, "Not finishing activity because controller resumed");
1718 return false;
1719 }
1720 }
1721 }
Michal Karpinskifc6872e2019-05-21 15:18:44 +01001722
1723 // note down that the process has finished an activity and is in background activity
1724 // starts grace period
1725 if (r.app != null) {
1726 r.app.setLastActivityFinishTimeIfNeeded(SystemClock.uptimeMillis());
1727 }
1728
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001729 final long origId = Binder.clearCallingIdentity();
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001730 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "finishActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001731 try {
1732 boolean res;
1733 final boolean finishWithRootActivity =
1734 finishTask == Activity.FINISH_TASK_WITH_ROOT_ACTIVITY;
1735 if (finishTask == Activity.FINISH_TASK_WITH_ACTIVITY
1736 || (finishWithRootActivity && r == rootR)) {
1737 // If requested, remove the task that is associated to this activity only if it
1738 // was the root activity in the task. The result code and data is ignored
1739 // because we don't support returning them across task boundaries. Also, to
1740 // keep backwards compatibility we remove the task from recents when finishing
1741 // task with root activity.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001742 mStackSupervisor.removeTask(tr, false /*killProcess*/,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001743 finishWithRootActivity, "finish-activity");
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001744 res = true;
Garfield Tan2746ab52018-07-25 12:33:01 -07001745 // Explicitly dismissing the activity so reset its relaunch flag.
Wale Ogunwale64258362018-10-16 15:13:37 -07001746 r.mRelaunchReason = RELAUNCH_REASON_NONE;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001747 } else {
Jeff Sharkey307ea7a2020-04-13 10:24:49 -06001748 r.finishIfPossible(resultCode, resultData, resultGrants,
1749 "app-request", true /* oomAdj */);
Andrii Kulian40eda672019-07-30 15:05:57 -07001750 res = r.finishing;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001751 if (!res) {
1752 Slog.i(TAG, "Failed to finish by app-request");
1753 }
1754 }
1755 return res;
1756 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001757 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001758 Binder.restoreCallingIdentity(origId);
1759 }
1760 }
1761 }
1762
1763 @Override
1764 public boolean finishActivityAffinity(IBinder token) {
1765 synchronized (mGlobalLock) {
1766 final long origId = Binder.clearCallingIdentity();
1767 try {
1768 ActivityRecord r = ActivityRecord.isInStackLocked(token);
1769 if (r == null) {
1770 return false;
1771 }
1772
1773 // Do not allow task to finish if last task in lockTask mode. Launchable priv-apps
1774 // can finish.
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07001775 if (getLockTaskController().activityBlockedFromFinish(r)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001776 return false;
1777 }
Wale Ogunwalea38654f2019-11-17 20:37:15 -08001778
1779 final PooledFunction p = PooledLambda.obtainFunction(
1780 ActivityRecord::finishIfSameAffinity, r,
1781 PooledLambda.__(ActivityRecord.class));
1782 r.getTask().forAllActivities(
1783 p, r, true /*includeBoundary*/, true /*traverseTopToBottom*/);
1784 p.recycle();
1785
Andrii Kuliande93eff2019-07-12 12:21:27 -07001786 return true;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001787 } finally {
1788 Binder.restoreCallingIdentity(origId);
1789 }
1790 }
1791 }
1792
1793 @Override
1794 public final void activityIdle(IBinder token, Configuration config, boolean stopProfiling) {
1795 final long origId = Binder.clearCallingIdentity();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001796 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001797 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001798 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityIdle");
Riddle Hsufc8ab262019-12-31 15:31:24 +08001799 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1800 if (r == null) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001801 return;
1802 }
Riddle Hsufc8ab262019-12-31 15:31:24 +08001803 mStackSupervisor.activityIdleInternal(r, false /* fromTimeout */,
1804 false /* processPausingActivities */, config);
1805 if (stopProfiling && r.hasProcess()) {
1806 r.app.clearProfilerIfNeeded();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001807 }
1808 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001809 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001810 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001811 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001812 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001813 }
1814
1815 @Override
1816 public final void activityResumed(IBinder token) {
1817 final long origId = Binder.clearCallingIdentity();
1818 synchronized (mGlobalLock) {
1819 ActivityRecord.activityResumedLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001820 }
1821 Binder.restoreCallingIdentity(origId);
1822 }
1823
1824 @Override
Andrii Kulian86e70fc2019-02-12 11:04:10 +00001825 public final void activityTopResumedStateLost() {
1826 final long origId = Binder.clearCallingIdentity();
1827 synchronized (mGlobalLock) {
1828 mStackSupervisor.handleTopResumedStateReleased(false /* timeout */);
1829 }
1830 Binder.restoreCallingIdentity(origId);
1831 }
1832
1833 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001834 public final void activityPaused(IBinder token) {
1835 final long origId = Binder.clearCallingIdentity();
1836 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001837 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityPaused");
Wale Ogunwale196db712019-12-27 15:35:39 +00001838 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1839 if (r != null) {
1840 r.activityPaused(false);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001841 }
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001842 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001843 }
1844 Binder.restoreCallingIdentity(origId);
1845 }
1846
1847 @Override
1848 public final void activityStopped(IBinder token, Bundle icicle,
1849 PersistableBundle persistentState, CharSequence description) {
1850 if (DEBUG_ALL) Slog.v(TAG, "Activity stopped: token=" + token);
1851
1852 // Refuse possible leaked file descriptors
1853 if (icicle != null && icicle.hasFileDescriptors()) {
1854 throw new IllegalArgumentException("File descriptors passed in Bundle");
1855 }
1856
1857 final long origId = Binder.clearCallingIdentity();
1858
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001859 String restartingName = null;
1860 int restartingUid = 0;
1861 final ActivityRecord r;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001862 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001863 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityStopped");
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001864 r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001865 if (r != null) {
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001866 if (r.attachedToProcess()
1867 && r.isState(ActivityStack.ActivityState.RESTARTING_PROCESS)) {
1868 // The activity was requested to restart from
1869 // {@link #restartActivityProcessIfVisible}.
1870 restartingName = r.app.mName;
1871 restartingUid = r.app.mUid;
1872 }
Wale Ogunwale196db712019-12-27 15:35:39 +00001873 r.activityStopped(icicle, persistentState, description);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001874 }
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001875 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001876 }
1877
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001878 if (restartingName != null) {
1879 // In order to let the foreground activity can be restarted with its saved state from
1880 // {@link android.app.Activity#onSaveInstanceState}, the kill operation is postponed
1881 // until the activity reports stopped with the state. And the activity record will be
1882 // kept because the record state is restarting, then the activity will be restarted
1883 // immediately if it is still the top one.
1884 mStackSupervisor.removeRestartTimeouts(r);
1885 mAmInternal.killProcess(restartingName, restartingUid, "restartActivityProcess");
1886 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001887 mAmInternal.trimApplications();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001888
1889 Binder.restoreCallingIdentity(origId);
1890 }
1891
1892 @Override
1893 public final void activityDestroyed(IBinder token) {
1894 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "ACTIVITY DESTROYED: " + token);
1895 synchronized (mGlobalLock) {
Andrii Kulian79d67982019-08-19 11:56:16 -07001896 final long origId = Binder.clearCallingIdentity();
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001897 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityDestroyed");
Andrii Kulian79d67982019-08-19 11:56:16 -07001898 try {
1899 final ActivityRecord activity = ActivityRecord.forTokenLocked(token);
1900 if (activity != null) {
1901 activity.destroyed("activityDestroyed");
1902 }
1903 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001904 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Andrii Kulian79d67982019-08-19 11:56:16 -07001905 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001906 }
1907 }
1908 }
1909
1910 @Override
1911 public final void activityRelaunched(IBinder token) {
1912 final long origId = Binder.clearCallingIdentity();
1913 synchronized (mGlobalLock) {
1914 mStackSupervisor.activityRelaunchedLocked(token);
1915 }
1916 Binder.restoreCallingIdentity(origId);
1917 }
1918
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001919 @Override
1920 public void setRequestedOrientation(IBinder token, int requestedOrientation) {
1921 synchronized (mGlobalLock) {
1922 ActivityRecord r = ActivityRecord.isInStackLocked(token);
1923 if (r == null) {
1924 return;
1925 }
1926 final long origId = Binder.clearCallingIdentity();
1927 try {
1928 r.setRequestedOrientation(requestedOrientation);
1929 } finally {
1930 Binder.restoreCallingIdentity(origId);
1931 }
1932 }
1933 }
1934
1935 @Override
1936 public int getRequestedOrientation(IBinder token) {
1937 synchronized (mGlobalLock) {
Wale Ogunwaleda8b8272018-11-29 19:37:37 -08001938 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1939 return (r != null)
1940 ? r.getRequestedOrientation() : ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001941 }
1942 }
1943
1944 @Override
1945 public void setImmersive(IBinder token, boolean immersive) {
1946 synchronized (mGlobalLock) {
1947 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1948 if (r == null) {
1949 throw new IllegalArgumentException();
1950 }
1951 r.immersive = immersive;
1952
1953 // update associated state if we're frontmost
Andrii Kulian52d255c2018-07-13 11:32:19 -07001954 if (r.isResumedActivityOnDisplay()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001955 if (DEBUG_IMMERSIVE) Slog.d(TAG_IMMERSIVE, "Frontmost changed immersion: "+ r);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001956 applyUpdateLockStateLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001957 }
1958 }
1959 }
1960
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001961 void applyUpdateLockStateLocked(ActivityRecord r) {
1962 // Modifications to the UpdateLock state are done on our handler, outside
1963 // the activity manager's locks. The new state is determined based on the
1964 // state *now* of the relevant activity record. The object is passed to
1965 // the handler solely for logging detail, not to be consulted/modified.
1966 final boolean nextState = r != null && r.immersive;
1967 mH.post(() -> {
1968 if (mUpdateLock.isHeld() != nextState) {
1969 if (DEBUG_IMMERSIVE) Slog.d(TAG_IMMERSIVE,
1970 "Applying new update lock state '" + nextState + "' for " + r);
1971 if (nextState) {
1972 mUpdateLock.acquire();
1973 } else {
1974 mUpdateLock.release();
1975 }
1976 }
1977 });
1978 }
1979
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001980 @Override
1981 public boolean isImmersive(IBinder token) {
1982 synchronized (mGlobalLock) {
1983 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1984 if (r == null) {
1985 throw new IllegalArgumentException();
1986 }
1987 return r.immersive;
1988 }
1989 }
1990
1991 @Override
1992 public boolean isTopActivityImmersive() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001993 enforceNotIsolatedCaller("isTopActivityImmersive");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001994 synchronized (mGlobalLock) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08001995 final ActivityStack topFocusedStack = getTopDisplayFocusedStack();
1996 if (topFocusedStack == null) {
1997 return false;
1998 }
1999
2000 final ActivityRecord r = topFocusedStack.topRunningActivity();
2001 return r != null && r.immersive;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002002 }
2003 }
2004
2005 @Override
2006 public void overridePendingTransition(IBinder token, String packageName,
2007 int enterAnim, int exitAnim) {
2008 synchronized (mGlobalLock) {
2009 ActivityRecord self = ActivityRecord.isInStackLocked(token);
2010 if (self == null) {
2011 return;
2012 }
2013
2014 final long origId = Binder.clearCallingIdentity();
2015
2016 if (self.isState(
2017 ActivityStack.ActivityState.RESUMED, ActivityStack.ActivityState.PAUSING)) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08002018 self.getDisplay().mDisplayContent.mAppTransition.overridePendingAppTransition(
Ming-Shin Lub6d70022020-03-27 23:51:56 +08002019 packageName, enterAnim, exitAnim, null, null);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002020 }
2021
2022 Binder.restoreCallingIdentity(origId);
2023 }
2024 }
2025
2026 @Override
2027 public int getFrontActivityScreenCompatMode() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002028 enforceNotIsolatedCaller("getFrontActivityScreenCompatMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002029 synchronized (mGlobalLock) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08002030 final ActivityStack stack = getTopDisplayFocusedStack();
2031 final ActivityRecord r = stack != null ? stack.topRunningActivity() : null;
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002032 if (r == null) {
2033 return ActivityManager.COMPAT_MODE_UNKNOWN;
2034 }
Wale Ogunwale53783742018-09-16 10:21:51 -07002035 return mCompatModePackages.computeCompatModeLocked(r.info.applicationInfo);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002036 }
2037 }
2038
2039 @Override
2040 public void setFrontActivityScreenCompatMode(int mode) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002041 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002042 "setFrontActivityScreenCompatMode");
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002043 ApplicationInfo ai;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002044 synchronized (mGlobalLock) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08002045 final ActivityStack stack = getTopDisplayFocusedStack();
2046 final ActivityRecord r = stack != null ? stack.topRunningActivity() : null;
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002047 if (r == null) {
2048 Slog.w(TAG, "setFrontActivityScreenCompatMode failed: no top activity");
2049 return;
2050 }
2051 ai = r.info.applicationInfo;
Wale Ogunwale53783742018-09-16 10:21:51 -07002052 mCompatModePackages.setPackageScreenCompatModeLocked(ai, mode);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002053 }
2054 }
2055
2056 @Override
2057 public int getLaunchedFromUid(IBinder activityToken) {
2058 ActivityRecord srec;
2059 synchronized (mGlobalLock) {
2060 srec = ActivityRecord.forTokenLocked(activityToken);
2061 }
2062 if (srec == null) {
2063 return -1;
2064 }
2065 return srec.launchedFromUid;
2066 }
2067
2068 @Override
2069 public String getLaunchedFromPackage(IBinder activityToken) {
2070 ActivityRecord srec;
2071 synchronized (mGlobalLock) {
2072 srec = ActivityRecord.forTokenLocked(activityToken);
2073 }
2074 if (srec == null) {
2075 return null;
2076 }
2077 return srec.launchedFromPackage;
2078 }
2079
2080 @Override
2081 public boolean convertFromTranslucent(IBinder token) {
2082 final long origId = Binder.clearCallingIdentity();
2083 try {
2084 synchronized (mGlobalLock) {
2085 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
2086 if (r == null) {
2087 return false;
2088 }
Wale Ogunwale83b8a6b2019-06-27 20:15:15 -07002089 return r.setOccludesParent(true);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002090 }
2091 } finally {
2092 Binder.restoreCallingIdentity(origId);
2093 }
2094 }
2095
2096 @Override
2097 public boolean convertToTranslucent(IBinder token, Bundle options) {
2098 SafeActivityOptions safeOptions = SafeActivityOptions.fromBundle(options);
2099 final long origId = Binder.clearCallingIdentity();
2100 try {
2101 synchronized (mGlobalLock) {
2102 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
2103 if (r == null) {
2104 return false;
2105 }
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002106 final ActivityRecord under = r.getTask().getActivityBelow(r);
2107 if (under != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002108 under.returningOptions = safeOptions != null ? safeOptions.getOptions(r) : null;
2109 }
Wale Ogunwale83b8a6b2019-06-27 20:15:15 -07002110 return r.setOccludesParent(false);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002111 }
2112 } finally {
2113 Binder.restoreCallingIdentity(origId);
2114 }
2115 }
2116
2117 @Override
2118 public void notifyActivityDrawn(IBinder token) {
2119 if (DEBUG_VISIBILITY) Slog.d(TAG_VISIBILITY, "notifyActivityDrawn: token=" + token);
2120 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002121 ActivityRecord r = mRootWindowContainer.isInAnyStack(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002122 if (r != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002123 r.getRootTask().notifyActivityDrawnLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002124 }
2125 }
2126 }
2127
2128 @Override
2129 public void reportActivityFullyDrawn(IBinder token, boolean restoredFromBundle) {
2130 synchronized (mGlobalLock) {
2131 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2132 if (r == null) {
2133 return;
2134 }
2135 r.reportFullyDrawnLocked(restoredFromBundle);
2136 }
2137 }
2138
2139 @Override
Louis Chang677921f2019-12-06 16:44:24 +08002140 public int getDisplayId(IBinder activityToken) throws RemoteException {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002141 synchronized (mGlobalLock) {
2142 final ActivityStack stack = ActivityRecord.getStackLocked(activityToken);
Wale Ogunwale8f93b642019-12-26 12:10:52 -08002143 if (stack != null) {
2144 final int displayId = stack.getDisplayId();
2145 return displayId != INVALID_DISPLAY ? displayId : DEFAULT_DISPLAY;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002146 }
2147 return DEFAULT_DISPLAY;
2148 }
2149 }
2150
2151 @Override
2152 public ActivityManager.StackInfo getFocusedStackInfo() throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002153 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002154 long ident = Binder.clearCallingIdentity();
2155 try {
2156 synchronized (mGlobalLock) {
Andrii Kulian5f750bc2018-07-17 08:57:23 -07002157 ActivityStack focusedStack = getTopDisplayFocusedStack();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002158 if (focusedStack != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002159 return mRootWindowContainer.getStackInfo(focusedStack.mTaskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002160 }
2161 return null;
2162 }
2163 } finally {
2164 Binder.restoreCallingIdentity(ident);
2165 }
2166 }
2167
2168 @Override
2169 public void setFocusedStack(int stackId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002170 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "setFocusedStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002171 if (DEBUG_FOCUS) Slog.d(TAG_FOCUS, "setFocusedStack: stackId=" + stackId);
2172 final long callingId = Binder.clearCallingIdentity();
2173 try {
2174 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002175 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002176 if (stack == null) {
2177 Slog.w(TAG, "setFocusedStack: No stack with id=" + stackId);
2178 return;
2179 }
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002180 final ActivityRecord r = stack.topRunningActivity();
Louis Chang19443452018-10-09 12:10:21 +08002181 if (r != null && r.moveFocusableActivityToTop("setFocusedStack")) {
Louis Chang149d5c82019-12-30 09:47:39 +08002182 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002183 }
2184 }
2185 } finally {
2186 Binder.restoreCallingIdentity(callingId);
2187 }
2188 }
2189
2190 @Override
2191 public void setFocusedTask(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002192 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "setFocusedTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002193 if (DEBUG_FOCUS) Slog.d(TAG_FOCUS, "setFocusedTask: taskId=" + taskId);
2194 final long callingId = Binder.clearCallingIdentity();
2195 try {
2196 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002197 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002198 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002199 if (task == null) {
2200 return;
2201 }
2202 final ActivityRecord r = task.topRunningActivityLocked();
Louis Chang19443452018-10-09 12:10:21 +08002203 if (r != null && r.moveFocusableActivityToTop("setFocusedTask")) {
Louis Chang149d5c82019-12-30 09:47:39 +08002204 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002205 }
2206 }
2207 } finally {
2208 Binder.restoreCallingIdentity(callingId);
2209 }
2210 }
2211
2212 @Override
Riddle Hsu7b766fd2019-01-28 21:14:59 +08002213 public void restartActivityProcessIfVisible(IBinder activityToken) {
2214 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "restartActivityProcess()");
2215 final long callingId = Binder.clearCallingIdentity();
2216 try {
2217 synchronized (mGlobalLock) {
2218 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
2219 if (r == null) {
2220 return;
2221 }
2222 r.restartProcessIfVisible();
2223 }
2224 } finally {
2225 Binder.restoreCallingIdentity(callingId);
2226 }
2227 }
2228
2229 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002230 public boolean removeTask(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002231 enforceCallerIsRecentsOrHasPermission(REMOVE_TASKS, "removeTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002232 synchronized (mGlobalLock) {
2233 final long ident = Binder.clearCallingIdentity();
2234 try {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002235 return mStackSupervisor.removeTaskById(taskId, true, REMOVE_FROM_RECENTS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002236 "remove-task");
2237 } finally {
2238 Binder.restoreCallingIdentity(ident);
2239 }
2240 }
2241 }
2242
2243 @Override
Winson Chunge6439102018-07-30 15:48:01 -07002244 public void removeAllVisibleRecentTasks() {
2245 enforceCallerIsRecentsOrHasPermission(REMOVE_TASKS, "removeAllVisibleRecentTasks()");
2246 synchronized (mGlobalLock) {
2247 final long ident = Binder.clearCallingIdentity();
2248 try {
Winson Chung42fa21f2019-04-02 16:23:46 -07002249 getRecentTasks().removeAllVisibleTasks(mAmInternal.getCurrentUserId());
Winson Chunge6439102018-07-30 15:48:01 -07002250 } finally {
2251 Binder.restoreCallingIdentity(ident);
2252 }
2253 }
2254 }
2255
2256 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002257 public boolean shouldUpRecreateTask(IBinder token, String destAffinity) {
2258 synchronized (mGlobalLock) {
2259 final ActivityRecord srec = ActivityRecord.forTokenLocked(token);
2260 if (srec != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002261 return srec.getRootTask().shouldUpRecreateTaskLocked(srec, destAffinity);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002262 }
2263 }
2264 return false;
2265 }
2266
2267 @Override
2268 public boolean navigateUpTo(IBinder token, Intent destIntent, int resultCode,
2269 Intent resultData) {
Jeff Sharkey307ea7a2020-04-13 10:24:49 -06002270 final ActivityRecord r;
2271 synchronized (mGlobalLock) {
2272 r = ActivityRecord.isInStackLocked(token);
2273 if (r == null) {
2274 return false;
2275 }
2276 }
2277
2278 // Carefully collect grants without holding lock
2279 final NeededUriGrants destGrants = collectGrants(destIntent, r);
2280 final NeededUriGrants resultGrants = collectGrants(resultData, r.resultTo);
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002281
Jeff Sharkey344ce7c2019-05-29 14:52:59 -06002282 synchronized (mGlobalLock) {
Jeff Sharkey307ea7a2020-04-13 10:24:49 -06002283 return r.getRootTask().navigateUpTo(
2284 r, destIntent, destGrants, resultCode, resultData, resultGrants);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002285 }
2286 }
2287
2288 /**
2289 * Attempts to move a task backwards in z-order (the order of activities within the task is
2290 * unchanged).
2291 *
2292 * There are several possible results of this call:
2293 * - if the task is locked, then we will show the lock toast
2294 * - if there is a task behind the provided task, then that task is made visible and resumed as
2295 * this task is moved to the back
2296 * - otherwise, if there are no other tasks in the stack:
2297 * - if this task is in the pinned stack, then we remove the stack completely, which will
2298 * have the effect of moving the task to the top or bottom of the fullscreen stack
2299 * (depending on whether it is visible)
2300 * - otherwise, we simply return home and hide this task
2301 *
2302 * @param token A reference to the activity we wish to move
2303 * @param nonRoot If false then this only works if the activity is the root
2304 * of a task; if true it will work for any activity in a task.
2305 * @return Returns true if the move completed, false if not.
2306 */
2307 @Override
2308 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002309 enforceNotIsolatedCaller("moveActivityTaskToBack");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002310 synchronized (mGlobalLock) {
2311 final long origId = Binder.clearCallingIdentity();
2312 try {
2313 int taskId = ActivityRecord.getTaskForActivityLocked(token, !nonRoot);
Louis Chang149d5c82019-12-30 09:47:39 +08002314 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002315 if (task != null) {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002316 return ActivityRecord.getStackLocked(token).moveTaskToBack(task);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002317 }
2318 } finally {
2319 Binder.restoreCallingIdentity(origId);
2320 }
2321 }
2322 return false;
2323 }
2324
2325 @Override
2326 public Rect getTaskBounds(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002327 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "getTaskBounds()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002328 long ident = Binder.clearCallingIdentity();
2329 Rect rect = new Rect();
2330 try {
2331 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002332 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002333 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
2334 if (task == null) {
2335 Slog.w(TAG, "getTaskBounds: taskId=" + taskId + " not found");
2336 return rect;
2337 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02002338 if (task.getParent() != null) {
2339 rect.set(task.getBounds());
2340 } else if (task.mLastNonFullscreenBounds != null) {
2341 rect.set(task.mLastNonFullscreenBounds);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002342 }
2343 }
2344 } finally {
2345 Binder.restoreCallingIdentity(ident);
2346 }
2347 return rect;
2348 }
2349
2350 @Override
2351 public ActivityManager.TaskDescription getTaskDescription(int id) {
2352 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002353 enforceCallerIsRecentsOrHasPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002354 MANAGE_ACTIVITY_STACKS, "getTaskDescription()");
Louis Chang149d5c82019-12-30 09:47:39 +08002355 final Task tr = mRootWindowContainer.anyTaskForId(id,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002356 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
2357 if (tr != null) {
Wale Ogunwale2322bed2019-10-10 17:24:19 +02002358 return tr.getTaskDescription();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002359 }
2360 }
2361 return null;
2362 }
2363
2364 @Override
Winson Chung7ccc6812020-01-23 16:15:10 -08002365 public boolean setTaskWindowingMode(int taskId, int windowingMode, boolean toTop) {
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002366 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
Evan Rosky73a7fe92019-11-18 18:28:01 -08002367 return setTaskWindowingModeSplitScreenPrimary(taskId, toTop);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002368 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002369 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "setTaskWindowingMode()");
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002370 synchronized (mGlobalLock) {
2371 final long ident = Binder.clearCallingIdentity();
2372 try {
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002373 if (WindowConfiguration.isSplitScreenWindowingMode(windowingMode)) {
2374 return setTaskWindowingModeSplitScreen(taskId, windowingMode, toTop);
2375 }
Louis Chang149d5c82019-12-30 09:47:39 +08002376 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002377 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002378 if (task == null) {
2379 Slog.w(TAG, "setTaskWindowingMode: No task for id=" + taskId);
Winson Chung7ccc6812020-01-23 16:15:10 -08002380 return false;
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002381 }
2382
2383 if (DEBUG_STACK) Slog.d(TAG_STACK, "setTaskWindowingMode: moving task=" + taskId
2384 + " to windowingMode=" + windowingMode + " toTop=" + toTop);
2385
2386 if (!task.isActivityTypeStandardOrUndefined()) {
2387 throw new IllegalArgumentException("setTaskWindowingMode: Attempt to move"
2388 + " non-standard task " + taskId + " to windowing mode="
2389 + windowingMode);
2390 }
2391
2392 final ActivityStack stack = task.getStack();
2393 if (toTop) {
2394 stack.moveToFront("setTaskWindowingMode", task);
2395 }
Louis Changa009c762020-02-26 11:21:31 +08002396 // Convert some windowing-mode changes into root-task reparents for split-screen.
2397 if (stack.inSplitScreenWindowingMode()) {
Andrii Kulian86d676c2020-03-27 19:34:54 -07002398 stack.getDisplayArea().onSplitScreenModeDismissed();
Louis Changa009c762020-02-26 11:21:31 +08002399
2400 } else {
2401 stack.setWindowingMode(windowingMode);
2402 stack.getDisplay().ensureActivitiesVisible(null, 0, PRESERVE_WINDOWS,
2403 true /* notifyClients */);
2404 }
Winson Chung7ccc6812020-01-23 16:15:10 -08002405 return true;
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002406 } finally {
2407 Binder.restoreCallingIdentity(ident);
2408 }
2409 }
2410 }
2411
2412 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002413 public String getCallingPackage(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002414 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002415 ActivityRecord r = getCallingRecordLocked(token);
2416 return r != null ? r.info.packageName : null;
2417 }
2418 }
2419
2420 @Override
2421 public ComponentName getCallingActivity(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002422 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002423 ActivityRecord r = getCallingRecordLocked(token);
2424 return r != null ? r.intent.getComponent() : null;
2425 }
2426 }
2427
2428 private ActivityRecord getCallingRecordLocked(IBinder token) {
2429 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2430 if (r == null) {
2431 return null;
2432 }
2433 return r.resultTo;
2434 }
2435
Jeff Sharkey307ea7a2020-04-13 10:24:49 -06002436 private NeededUriGrants collectGrants(Intent intent, ActivityRecord target) {
2437 if (target != null) {
2438 return mUgmInternal.checkGrantUriPermissionFromIntent(intent,
2439 Binder.getCallingUid(), target.packageName, target.mUserId);
2440 } else {
2441 return null;
2442 }
2443 }
2444
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002445 @Override
2446 public void unhandledBack() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002447 mAmInternal.enforceCallingPermission(android.Manifest.permission.FORCE_BACK, "unhandledBack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002448
2449 synchronized (mGlobalLock) {
2450 final long origId = Binder.clearCallingIdentity();
2451 try {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08002452 final ActivityStack topFocusedStack = getTopDisplayFocusedStack();
2453 if (topFocusedStack != null) {
2454 topFocusedStack.unhandledBackLocked();
2455 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002456 } finally {
2457 Binder.restoreCallingIdentity(origId);
2458 }
2459 }
2460 }
2461
Mark Renouf446251d2019-04-26 10:22:41 -04002462 @Override
2463 public void onBackPressedOnTaskRoot(IBinder token, IRequestFinishCallback callback) {
2464 synchronized (mGlobalLock) {
2465 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2466 if (r == null) {
2467 return;
2468 }
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002469 ActivityStack stack = r.getRootTask();
Winson Chunga1f869d2020-03-21 23:02:48 -07002470 final TaskOrganizerController taskOrgController =
2471 mWindowOrganizerController.mTaskOrganizerController;
2472 if (taskOrgController.handleInterceptBackPressedOnTaskRoot(stack)) {
2473 // This task is handled by a task organizer that has requested the back pressed
2474 // callback
2475 } else if (stack != null && (stack.isSingleTaskInstance())) {
Mark Renouf446251d2019-04-26 10:22:41 -04002476 // Single-task stacks are used for activities which are presented in floating
2477 // windows above full screen activities. Instead of directly finishing the
2478 // task, a task change listener is used to notify SystemUI so the action can be
2479 // handled specially.
Louis Changcdec0802019-11-11 11:45:07 +08002480 final Task task = r.getTask();
Mark Renouf446251d2019-04-26 10:22:41 -04002481 mTaskChangeNotificationController
2482 .notifyBackPressedOnTaskRoot(task.getTaskInfo());
2483 } else {
2484 try {
2485 callback.requestFinish();
2486 } catch (RemoteException e) {
2487 Slog.e(TAG, "Failed to invoke request finish callback", e);
2488 }
2489 }
2490 }
2491 }
2492
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002493 /**
2494 * TODO: Add mController hook
2495 */
2496 @Override
Ricky Waiaca8a772019-04-04 16:01:06 +01002497 public void moveTaskToFront(IApplicationThread appThread, String callingPackage, int taskId,
2498 int flags, Bundle bOptions) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002499 mAmInternal.enforceCallingPermission(android.Manifest.permission.REORDER_TASKS, "moveTaskToFront()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002500
2501 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveTaskToFront: moving taskId=" + taskId);
2502 synchronized (mGlobalLock) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002503 moveTaskToFrontLocked(appThread, callingPackage, taskId, flags,
Riddle Hsueae6ef3e2020-05-13 01:07:33 +08002504 SafeActivityOptions.fromBundle(bOptions));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002505 }
2506 }
2507
Ricky Waiaca8a772019-04-04 16:01:06 +01002508 void moveTaskToFrontLocked(@Nullable IApplicationThread appThread,
Riddle Hsueae6ef3e2020-05-13 01:07:33 +08002509 @Nullable String callingPackage, int taskId, int flags, SafeActivityOptions options) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002510 final int callingPid = Binder.getCallingPid();
2511 final int callingUid = Binder.getCallingUid();
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002512 assertPackageMatchesCallingUid(callingPackage);
Ricky Waiaca8a772019-04-04 16:01:06 +01002513 if (!checkAppSwitchAllowedLocked(callingPid, callingUid, -1, -1, "Task to front")) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002514 SafeActivityOptions.abort(options);
2515 return;
2516 }
2517 final long origId = Binder.clearCallingIdentity();
Ricky Waiaca8a772019-04-04 16:01:06 +01002518 WindowProcessController callerApp = null;
2519 if (appThread != null) {
2520 callerApp = getProcessController(appThread);
2521 }
2522 final ActivityStarter starter = getActivityStartController().obtainStarter(
2523 null /* intent */, "moveTaskToFront");
2524 if (starter.shouldAbortBackgroundActivityStart(callingUid, callingPid, callingPackage, -1,
Galia Peychevaed401cc2020-03-19 20:28:09 +01002525 -1, callerApp, null, false, null)) {
Alan Stokes9e245762019-05-21 14:54:28 +01002526 if (!isBackgroundActivityStartsEnabled()) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002527 return;
2528 }
2529 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002530 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002531 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002532 if (task == null) {
2533 Slog.d(TAG, "Could not find task for id: "+ taskId);
Winson Chungd0243682018-09-25 18:11:54 -07002534 SafeActivityOptions.abort(options);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002535 return;
2536 }
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07002537 if (getLockTaskController().isLockTaskModeViolation(task)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002538 Slog.e(TAG, "moveTaskToFront: Attempt to violate Lock Task Mode");
Winson Chungd0243682018-09-25 18:11:54 -07002539 SafeActivityOptions.abort(options);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002540 return;
2541 }
2542 ActivityOptions realOptions = options != null
2543 ? options.getOptions(mStackSupervisor)
2544 : null;
2545 mStackSupervisor.findTaskToMoveToFront(task, flags, realOptions, "moveTaskToFront",
2546 false /* forceNonResizable */);
2547
Wale Ogunwale21e06482019-11-18 05:14:15 -08002548 final ActivityRecord topActivity = task.getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002549 if (topActivity != null) {
2550
2551 // We are reshowing a task, use a starting window to hide the initial draw delay
2552 // so the transition can start earlier.
2553 topActivity.showStartingWindow(null /* prev */, false /* newTask */,
Riddle Hsueae6ef3e2020-05-13 01:07:33 +08002554 true /* taskSwitch */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002555 }
2556 } finally {
2557 Binder.restoreCallingIdentity(origId);
2558 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002559 }
2560
Ricky Waiaca8a772019-04-04 16:01:06 +01002561 /**
2562 * Return true if callingUid is system, or packageName belongs to that callingUid.
2563 */
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002564 private boolean isSameApp(int callingUid, @Nullable String packageName) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002565 try {
2566 if (callingUid != 0 && callingUid != SYSTEM_UID) {
2567 if (packageName == null) {
2568 return false;
2569 }
2570 final int uid = AppGlobals.getPackageManager().getPackageUid(packageName,
2571 PackageManager.MATCH_DEBUG_TRIAGED_MISSING,
2572 UserHandle.getUserId(callingUid));
2573 return UserHandle.isSameApp(callingUid, uid);
2574 }
2575 } catch (RemoteException e) {
2576 // Should not happen
2577 }
2578 return true;
2579 }
2580
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002581 /**
2582 * Checks that the provided package name matches the current calling UID, throws a security
2583 * exception if it doesn't.
2584 */
2585 void assertPackageMatchesCallingUid(@Nullable String packageName) {
2586 final int callingUid = Binder.getCallingUid();
2587 if (isSameApp(callingUid, packageName)) {
2588 return;
2589 }
2590 final String msg = "Permission Denial: package=" + packageName
2591 + " does not belong to uid=" + callingUid;
2592 Slog.w(TAG, msg);
2593 throw new SecurityException(msg);
2594 }
2595
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002596 boolean checkAppSwitchAllowedLocked(int sourcePid, int sourceUid,
2597 int callingPid, int callingUid, String name) {
2598 if (mAppSwitchesAllowedTime < SystemClock.uptimeMillis()) {
2599 return true;
2600 }
2601
2602 if (getRecentTasks().isCallerRecents(sourceUid)) {
2603 return true;
2604 }
2605
2606 int perm = checkComponentPermission(STOP_APP_SWITCHES, sourcePid, sourceUid, -1, true);
2607 if (perm == PackageManager.PERMISSION_GRANTED) {
2608 return true;
2609 }
2610 if (checkAllowAppSwitchUid(sourceUid)) {
2611 return true;
2612 }
2613
2614 // If the actual IPC caller is different from the logical source, then
2615 // also see if they are allowed to control app switches.
2616 if (callingUid != -1 && callingUid != sourceUid) {
2617 perm = checkComponentPermission(STOP_APP_SWITCHES, callingPid, callingUid, -1, true);
2618 if (perm == PackageManager.PERMISSION_GRANTED) {
2619 return true;
2620 }
2621 if (checkAllowAppSwitchUid(callingUid)) {
2622 return true;
2623 }
2624 }
2625
2626 Slog.w(TAG, name + " request from " + sourceUid + " stopped");
2627 return false;
2628 }
2629
2630 private boolean checkAllowAppSwitchUid(int uid) {
2631 ArrayMap<String, Integer> types = mAllowAppSwitchUids.get(UserHandle.getUserId(uid));
2632 if (types != null) {
2633 for (int i = types.size() - 1; i >= 0; i--) {
2634 if (types.valueAt(i).intValue() == uid) {
2635 return true;
2636 }
2637 }
2638 }
2639 return false;
2640 }
2641
2642 @Override
2643 public void setActivityController(IActivityController controller, boolean imAMonkey) {
2644 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_ACTIVITY_WATCHER,
2645 "setActivityController()");
2646 synchronized (mGlobalLock) {
2647 mController = controller;
2648 mControllerIsAMonkey = imAMonkey;
2649 Watchdog.getInstance().setActivityController(controller);
2650 }
2651 }
2652
Wale Ogunwale387b34c2018-10-25 19:59:40 -07002653 public boolean isControllerAMonkey() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002654 synchronized (mGlobalLock) {
2655 return mController != null && mControllerIsAMonkey;
2656 }
2657 }
2658
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002659 @Override
2660 public int getTaskForActivity(IBinder token, boolean onlyRoot) {
2661 synchronized (mGlobalLock) {
2662 return ActivityRecord.getTaskForActivityLocked(token, onlyRoot);
2663 }
2664 }
2665
2666 @Override
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002667 public List<ActivityManager.RunningTaskInfo> getTasks(int maxNum) {
Winson Chunge5ab0172020-03-21 23:00:24 -07002668 return getFilteredTasks(maxNum, false /* filterForVisibleRecents */);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002669 }
2670
Winson Chunge5ab0172020-03-21 23:00:24 -07002671 /**
2672 * @param filterOnlyVisibleRecents whether to filter the tasks based on whether they would ever
2673 * be visible in the recent task list in systemui
2674 */
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002675 @Override
2676 public List<ActivityManager.RunningTaskInfo> getFilteredTasks(int maxNum,
Winson Chunge5ab0172020-03-21 23:00:24 -07002677 boolean filterOnlyVisibleRecents) {
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002678 final int callingUid = Binder.getCallingUid();
Nicholas Sauer0259e532019-08-30 08:24:55 -07002679 final int callingPid = Binder.getCallingPid();
2680 final boolean crossUser = isCrossUserAllowed(callingPid, callingUid);
Nicholas Sauer3f9249f2019-09-10 20:23:41 -07002681 final int[] profileIds = getUserManager().getProfileIds(
2682 UserHandle.getUserId(callingUid), true);
2683 ArraySet<Integer> callingProfileIds = new ArraySet<>();
2684 for (int i = 0; i < profileIds.length; i++) {
2685 callingProfileIds.add(profileIds[i]);
2686 }
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002687 ArrayList<ActivityManager.RunningTaskInfo> list = new ArrayList<>();
2688
2689 synchronized (mGlobalLock) {
2690 if (DEBUG_ALL) Slog.v(TAG, "getTasks: max=" + maxNum);
2691
Nicholas Sauer0259e532019-08-30 08:24:55 -07002692 final boolean allowed = isGetTasksAllowed("getTasks", callingPid, callingUid);
Winson Chunge5ab0172020-03-21 23:00:24 -07002693 mRootWindowContainer.getRunningTasks(maxNum, list, filterOnlyVisibleRecents, callingUid,
2694 allowed, crossUser, callingProfileIds);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002695 }
2696
2697 return list;
2698 }
2699
2700 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002701 public final void finishSubActivity(IBinder token, String resultWho, int requestCode) {
2702 synchronized (mGlobalLock) {
2703 final long origId = Binder.clearCallingIdentity();
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002704 try {
2705 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2706 if (r == null) return;
2707
2708 final PooledConsumer c = PooledLambda.obtainConsumer(
2709 ActivityRecord::finishIfSubActivity, PooledLambda.__(ActivityRecord.class),
2710 r, resultWho, requestCode);
2711 // TODO: This should probably only loop over the task since you need to be in the
2712 // same task to return results.
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002713 r.getRootTask().forAllActivities(c);
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002714 c.recycle();
2715
2716 updateOomAdj();
2717 } finally {
2718 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002719 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002720 }
2721 }
2722
2723 @Override
2724 public boolean willActivityBeVisible(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002725 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002726 ActivityStack stack = ActivityRecord.getStackLocked(token);
2727 if (stack != null) {
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002728 return stack.willActivityBeVisible(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002729 }
2730 return false;
2731 }
2732 }
2733
2734 @Override
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002735 public void moveTaskToStack(int taskId, int stackId, boolean toTop) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002736 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "moveTaskToStack()");
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002737 synchronized (mGlobalLock) {
2738 final long ident = Binder.clearCallingIdentity();
2739 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002740 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002741 if (task == null) {
2742 Slog.w(TAG, "moveTaskToStack: No task for id=" + taskId);
2743 return;
2744 }
2745
2746 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveTaskToStack: moving task=" + taskId
2747 + " to stackId=" + stackId + " toTop=" + toTop);
2748
Louis Chang149d5c82019-12-30 09:47:39 +08002749 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002750 if (stack == null) {
2751 throw new IllegalStateException(
2752 "moveTaskToStack: No stack for stackId=" + stackId);
2753 }
2754 if (!stack.isActivityTypeStandardOrUndefined()) {
2755 throw new IllegalArgumentException("moveTaskToStack: Attempt to move task "
2756 + taskId + " to stack " + stackId);
2757 }
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002758 task.reparent(stack, toTop, REPARENT_KEEP_STACK_AT_FRONT, ANIMATE, !DEFER_RESUME,
2759 "moveTaskToStack");
2760 } finally {
2761 Binder.restoreCallingIdentity(ident);
2762 }
2763 }
2764 }
2765
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002766 /**
2767 * Moves the specified task to the primary-split-screen stack.
2768 *
2769 * @param taskId Id of task to move.
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002770 * @param toTop If the task and stack should be moved to the top.
Winson Chung7ccc6812020-01-23 16:15:10 -08002771 * @return Whether the task was successfully put into splitscreen.
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002772 */
2773 @Override
Evan Rosky73a7fe92019-11-18 18:28:01 -08002774 public boolean setTaskWindowingModeSplitScreenPrimary(int taskId, boolean toTop) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002775 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002776 "setTaskWindowingModeSplitScreenPrimary()");
2777 synchronized (mGlobalLock) {
2778 final long ident = Binder.clearCallingIdentity();
2779 try {
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002780 return setTaskWindowingModeSplitScreen(taskId, WINDOWING_MODE_SPLIT_SCREEN_PRIMARY,
2781 toTop);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002782 } finally {
2783 Binder.restoreCallingIdentity(ident);
2784 }
2785 }
2786 }
2787
2788 /**
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002789 * Moves the specified task into a split-screen tile.
2790 */
2791 private boolean setTaskWindowingModeSplitScreen(int taskId, int windowingMode, boolean toTop) {
2792 if (!WindowConfiguration.isSplitScreenWindowingMode(windowingMode)) {
2793 throw new IllegalArgumentException("Calling setTaskWindowingModeSplitScreen with non"
2794 + "split-screen mode: " + windowingMode);
2795 }
2796 if (isInLockTaskMode()) {
2797 Slog.w(TAG, "setTaskWindowingModeSplitScreen: Is in lock task mode="
2798 + getLockTaskModeState());
2799 return false;
2800 }
2801
2802 final Task task = mRootWindowContainer.anyTaskForId(taskId,
2803 MATCH_TASK_IN_STACKS_ONLY);
2804 if (task == null) {
2805 Slog.w(TAG, "setTaskWindowingModeSplitScreenPrimary: No task for id=" + taskId);
2806 return false;
2807 }
2808 if (!task.isActivityTypeStandardOrUndefined()) {
2809 throw new IllegalArgumentException("setTaskWindowingMode: Attempt to move"
2810 + " non-standard task " + taskId + " to split-screen windowing mode");
2811 }
Wale Ogunwale0d465192020-01-23 19:14:44 -08002812 if (!task.supportsSplitScreenWindowingMode()) {
2813 return false;
2814 }
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002815
2816 final int prevMode = task.getWindowingMode();
Louis Changcf3d1452020-04-16 16:36:05 +08002817 if (prevMode == windowingMode) {
2818 // The task is already in split-screen and with correct windowing mode.
2819 return true;
2820 }
2821
Louis Changa009c762020-02-26 11:21:31 +08002822 moveTaskToSplitScreenPrimaryTask(task, toTop);
Wale Ogunwale0d465192020-01-23 19:14:44 -08002823 return prevMode != task.getWindowingMode();
2824 }
2825
Louis Changa009c762020-02-26 11:21:31 +08002826 void moveTaskToSplitScreenPrimaryTask(Task task, boolean toTop) {
Andrii Kulian86d676c2020-03-27 19:34:54 -07002827 final TaskDisplayArea taskDisplayArea = task.getDisplayArea();
2828 final ActivityStack primarySplitTask = taskDisplayArea.getRootSplitScreenPrimaryTask();
Louis Changa009c762020-02-26 11:21:31 +08002829 if (primarySplitTask == null) {
2830 throw new IllegalStateException("Can't enter split without associated organized task");
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002831 }
Louis Changa009c762020-02-26 11:21:31 +08002832
2833 if (toTop) {
Andrii Kulian86d676c2020-03-27 19:34:54 -07002834 taskDisplayArea.positionStackAt(POSITION_TOP, primarySplitTask,
Andrii Kulian9ea12da2020-03-27 17:16:38 -07002835 false /* includingParents */);
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002836 }
2837 WindowContainerTransaction wct = new WindowContainerTransaction();
Wale Ogunwale465b1e12020-03-31 12:15:51 -07002838 // Clear out current windowing mode before reparenting to split taks.
2839 wct.setWindowingMode(
2840 task.getStack().mRemoteToken.toWindowContainerToken(), WINDOWING_MODE_UNDEFINED);
Wale Ogunwaleadf116e2020-03-27 16:36:01 -07002841 wct.reparent(task.getStack().mRemoteToken.toWindowContainerToken(),
2842 primarySplitTask.mRemoteToken.toWindowContainerToken(), toTop);
Wale Ogunwale568f9f412020-03-21 22:27:35 -07002843 mWindowOrganizerController.applyTransaction(wct);
Evan Roskyaf9f27c2020-02-18 18:58:35 +00002844 }
2845
2846 /**
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002847 * Removes stacks in the input windowing modes from the system if they are of activity type
2848 * ACTIVITY_TYPE_STANDARD or ACTIVITY_TYPE_UNDEFINED
2849 */
2850 @Override
2851 public void removeStacksInWindowingModes(int[] windowingModes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002852 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002853 "removeStacksInWindowingModes()");
2854
2855 synchronized (mGlobalLock) {
2856 final long ident = Binder.clearCallingIdentity();
2857 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002858 mRootWindowContainer.removeStacksInWindowingModes(windowingModes);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002859 } finally {
2860 Binder.restoreCallingIdentity(ident);
2861 }
2862 }
2863 }
2864
2865 @Override
2866 public void removeStacksWithActivityTypes(int[] activityTypes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002867 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002868 "removeStacksWithActivityTypes()");
2869
2870 synchronized (mGlobalLock) {
2871 final long ident = Binder.clearCallingIdentity();
2872 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002873 mRootWindowContainer.removeStacksWithActivityTypes(activityTypes);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002874 } finally {
2875 Binder.restoreCallingIdentity(ident);
2876 }
2877 }
2878 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002879
2880 @Override
2881 public ParceledListSlice<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum, int flags,
2882 int userId) {
2883 final int callingUid = Binder.getCallingUid();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002884 userId = handleIncomingUser(Binder.getCallingPid(), callingUid, userId, "getRecentTasks");
2885 final boolean allowed = isGetTasksAllowed("getRecentTasks", Binder.getCallingPid(),
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002886 callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002887 synchronized (mGlobalLock) {
Winson Chung66b08f02020-03-03 14:32:35 -08002888 return mRecentTasks.getRecentTasks(maxNum, flags, allowed, userId, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002889 }
2890 }
2891
Evan Rosky29d4a0a2020-02-04 16:40:44 -08002892 // TODO(148895075): deprecate and replace with task equivalents
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002893 @Override
2894 public List<ActivityManager.StackInfo> getAllStackInfos() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002895 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getAllStackInfos()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002896 long ident = Binder.clearCallingIdentity();
2897 try {
2898 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002899 return mRootWindowContainer.getAllStackInfos(INVALID_DISPLAY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002900 }
2901 } finally {
2902 Binder.restoreCallingIdentity(ident);
2903 }
2904 }
2905
2906 @Override
2907 public ActivityManager.StackInfo getStackInfo(int windowingMode, int activityType) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002908 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002909 long ident = Binder.clearCallingIdentity();
2910 try {
2911 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002912 return mRootWindowContainer.getStackInfo(windowingMode, activityType);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002913 }
2914 } finally {
2915 Binder.restoreCallingIdentity(ident);
2916 }
2917 }
2918
Evan Rosky29d4a0a2020-02-04 16:40:44 -08002919 // TODO(148895075): deprecate and replace with task equivalents
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002920 @Override
Evan Roskyfd439692019-11-06 16:12:59 -08002921 public List<ActivityManager.StackInfo> getAllStackInfosOnDisplay(int displayId) {
2922 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getAllStackInfos()");
2923 long ident = Binder.clearCallingIdentity();
2924 try {
2925 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002926 return mRootWindowContainer.getAllStackInfos(displayId);
Evan Roskyfd439692019-11-06 16:12:59 -08002927 }
2928 } finally {
2929 Binder.restoreCallingIdentity(ident);
2930 }
2931 }
2932
2933 @Override
2934 public ActivityManager.StackInfo getStackInfoOnDisplay(int windowingMode, int activityType,
2935 int displayId) {
2936 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
2937 long ident = Binder.clearCallingIdentity();
2938 try {
2939 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002940 return mRootWindowContainer.getStackInfo(windowingMode, activityType, displayId);
Evan Roskyfd439692019-11-06 16:12:59 -08002941 }
2942 } finally {
2943 Binder.restoreCallingIdentity(ident);
2944 }
2945 }
2946
2947 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002948 public void cancelRecentsAnimation(boolean restoreHomeStackPosition) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002949 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "cancelRecentsAnimation()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002950 final long callingUid = Binder.getCallingUid();
2951 final long origId = Binder.clearCallingIdentity();
2952 try {
2953 synchronized (mGlobalLock) {
2954 // Cancel the recents animation synchronously (do not hold the WM lock)
Wale Ogunwalea441b922019-06-27 19:21:44 -07002955 mWindowManager.cancelRecentsAnimation(restoreHomeStackPosition
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002956 ? REORDER_MOVE_TO_ORIGINAL_POSITION
2957 : REORDER_KEEP_IN_PLACE, "cancelRecentsAnimation/uid=" + callingUid);
2958 }
2959 } finally {
2960 Binder.restoreCallingIdentity(origId);
2961 }
2962 }
2963
2964 @Override
2965 public void startLockTaskModeByToken(IBinder token) {
2966 synchronized (mGlobalLock) {
2967 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2968 if (r == null) {
2969 return;
2970 }
Louis Changcdec0802019-11-11 11:45:07 +08002971 startLockTaskModeLocked(r.getTask(), false /* isSystemCaller */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002972 }
2973 }
2974
2975 @Override
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002976 public void startSystemLockTaskMode(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002977 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "startSystemLockTaskMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002978 // This makes inner call to look as if it was initiated by system.
2979 long ident = Binder.clearCallingIdentity();
2980 try {
2981 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002982 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002983 MATCH_TASK_IN_STACKS_ONLY);
2984 if (task == null) {
2985 return;
2986 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002987
2988 // When starting lock task mode the stack must be in front and focused
2989 task.getStack().moveToFront("startSystemLockTaskMode");
2990 startLockTaskModeLocked(task, true /* isSystemCaller */);
2991 }
2992 } finally {
2993 Binder.restoreCallingIdentity(ident);
2994 }
2995 }
2996
2997 @Override
2998 public void stopLockTaskModeByToken(IBinder token) {
2999 synchronized (mGlobalLock) {
3000 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
3001 if (r == null) {
3002 return;
3003 }
Louis Changcdec0802019-11-11 11:45:07 +08003004 stopLockTaskModeInternal(r.getTask(), false /* isSystemCaller */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003005 }
3006 }
3007
3008 /**
3009 * This API should be called by SystemUI only when user perform certain action to dismiss
3010 * lock task mode. We should only dismiss pinned lock task mode in this case.
3011 */
3012 @Override
3013 public void stopSystemLockTaskMode() throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003014 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "stopSystemLockTaskMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003015 stopLockTaskModeInternal(null, true /* isSystemCaller */);
3016 }
3017
Louis Changcdec0802019-11-11 11:45:07 +08003018 private void startLockTaskModeLocked(@Nullable Task task, boolean isSystemCaller) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003019 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "startLockTaskModeLocked: " + task);
3020 if (task == null || task.mLockTaskAuth == LOCK_TASK_AUTH_DONT_LOCK) {
3021 return;
3022 }
3023
Louis Chang149d5c82019-12-30 09:47:39 +08003024 final ActivityStack stack = mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09003025 if (stack == null || task != stack.getTopMostTask()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003026 throw new IllegalArgumentException("Invalid task, not in foreground");
3027 }
3028
3029 // {@code isSystemCaller} is used to distinguish whether this request is initiated by the
3030 // system or a specific app.
3031 // * System-initiated requests will only start the pinned mode (screen pinning)
3032 // * App-initiated requests
3033 // - will put the device in fully locked mode (LockTask), if the app is whitelisted
3034 // - will start the pinned mode, otherwise
3035 final int callingUid = Binder.getCallingUid();
3036 long ident = Binder.clearCallingIdentity();
3037 try {
3038 // When a task is locked, dismiss the pinned stack if it exists
Louis Chang149d5c82019-12-30 09:47:39 +08003039 mRootWindowContainer.removeStacksInWindowingModes(WINDOWING_MODE_PINNED);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003040
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003041 getLockTaskController().startLockTaskMode(task, isSystemCaller, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003042 } finally {
3043 Binder.restoreCallingIdentity(ident);
3044 }
3045 }
3046
Louis Changcdec0802019-11-11 11:45:07 +08003047 private void stopLockTaskModeInternal(@Nullable Task task, boolean isSystemCaller) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003048 final int callingUid = Binder.getCallingUid();
3049 long ident = Binder.clearCallingIdentity();
3050 try {
3051 synchronized (mGlobalLock) {
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003052 getLockTaskController().stopLockTaskMode(task, isSystemCaller, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003053 }
3054 // Launch in-call UI if a call is ongoing. This is necessary to allow stopping the lock
3055 // task and jumping straight into a call in the case of emergency call back.
3056 TelecomManager tm = (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
3057 if (tm != null) {
3058 tm.showInCallScreen(false);
3059 }
3060 } finally {
3061 Binder.restoreCallingIdentity(ident);
3062 }
3063 }
3064
3065 @Override
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07003066 public void updateLockTaskPackages(int userId, String[] packages) {
3067 final int callingUid = Binder.getCallingUid();
3068 if (callingUid != 0 && callingUid != SYSTEM_UID) {
3069 mAmInternal.enforceCallingPermission(Manifest.permission.UPDATE_LOCK_TASK_PACKAGES,
3070 "updateLockTaskPackages()");
3071 }
Riddle Hsu8419e4b2019-09-18 23:28:01 +08003072 synchronized (mGlobalLock) {
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07003073 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "Whitelisting " + userId + ":"
3074 + Arrays.toString(packages));
3075 getLockTaskController().updateLockTaskPackages(userId, packages);
3076 }
3077 }
3078
3079 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003080 public boolean isInLockTaskMode() {
3081 return getLockTaskModeState() != LOCK_TASK_MODE_NONE;
3082 }
3083
3084 @Override
3085 public int getLockTaskModeState() {
3086 synchronized (mGlobalLock) {
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003087 return getLockTaskController().getLockTaskModeState();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003088 }
3089 }
3090
3091 @Override
3092 public void setTaskDescription(IBinder token, ActivityManager.TaskDescription td) {
3093 synchronized (mGlobalLock) {
3094 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3095 if (r != null) {
3096 r.setTaskDescription(td);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003097 }
3098 }
3099 }
3100
3101 @Override
3102 public Bundle getActivityOptions(IBinder token) {
3103 final long origId = Binder.clearCallingIdentity();
3104 try {
3105 synchronized (mGlobalLock) {
3106 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
3107 if (r != null) {
Jorim Jaggi346702a2019-05-08 17:49:33 +02003108 final ActivityOptions activityOptions = r.takeOptionsLocked(
3109 true /* fromClient */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003110 return activityOptions == null ? null : activityOptions.toBundle();
3111 }
3112 return null;
3113 }
3114 } finally {
3115 Binder.restoreCallingIdentity(origId);
3116 }
3117 }
3118
3119 @Override
3120 public List<IBinder> getAppTasks(String callingPackage) {
3121 int callingUid = Binder.getCallingUid();
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07003122 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003123 long ident = Binder.clearCallingIdentity();
3124 try {
3125 synchronized (mGlobalLock) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003126 return mRecentTasks.getAppTasksList(callingUid, callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003127 }
3128 } finally {
3129 Binder.restoreCallingIdentity(ident);
3130 }
3131 }
3132
3133 @Override
3134 public void finishVoiceTask(IVoiceInteractionSession session) {
3135 synchronized (mGlobalLock) {
3136 final long origId = Binder.clearCallingIdentity();
3137 try {
3138 // TODO: VI Consider treating local voice interactions and voice tasks
3139 // differently here
Louis Chang149d5c82019-12-30 09:47:39 +08003140 mRootWindowContainer.finishVoiceTask(session);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003141 } finally {
3142 Binder.restoreCallingIdentity(origId);
3143 }
3144 }
3145
3146 }
3147
3148 @Override
3149 public boolean isTopOfTask(IBinder token) {
3150 synchronized (mGlobalLock) {
3151 ActivityRecord r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale21e06482019-11-18 05:14:15 -08003152 return r != null && r.getTask().getTopNonFinishingActivity() == r;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003153 }
3154 }
3155
3156 @Override
3157 public void notifyLaunchTaskBehindComplete(IBinder token) {
3158 mStackSupervisor.scheduleLaunchTaskBehindComplete(token);
3159 }
3160
3161 @Override
3162 public void notifyEnterAnimationComplete(IBinder token) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003163 mH.post(() -> {
3164 synchronized (mGlobalLock) {
3165 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003166 if (r != null && r.attachedToProcess()) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003167 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003168 r.app.getThread().scheduleEnterAnimationComplete(r.appToken);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003169 } catch (RemoteException e) {
3170 }
3171 }
3172 }
3173
3174 });
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003175 }
3176
3177 /** Called from an app when assist data is ready. */
3178 @Override
3179 public void reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure,
3180 AssistContent content, Uri referrer) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003181 PendingAssistExtras pae = (PendingAssistExtras) token;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003182 synchronized (pae) {
3183 pae.result = extras;
3184 pae.structure = structure;
3185 pae.content = content;
3186 if (referrer != null) {
3187 pae.extras.putParcelable(Intent.EXTRA_REFERRER, referrer);
3188 }
3189 if (structure != null) {
Winson Chung48b25652018-10-22 14:04:30 -07003190 // Pre-fill the task/activity component for all assist data receivers
Louis Changcdec0802019-11-11 11:45:07 +08003191 structure.setTaskId(pae.activity.getTask().mTaskId);
Wale Ogunwale8b19de92018-11-29 19:58:26 -08003192 structure.setActivityComponent(pae.activity.mActivityComponent);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003193 structure.setHomeActivity(pae.isHome);
3194 }
3195 pae.haveResult = true;
3196 pae.notifyAll();
3197 if (pae.intent == null && pae.receiver == null) {
3198 // Caller is just waiting for the result.
3199 return;
3200 }
3201 }
3202 // We are now ready to launch the assist activity.
3203 IAssistDataReceiver sendReceiver = null;
3204 Bundle sendBundle = null;
3205 synchronized (mGlobalLock) {
3206 buildAssistBundleLocked(pae, extras);
3207 boolean exists = mPendingAssistExtras.remove(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003208 mUiHandler.removeCallbacks(pae);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003209 if (!exists) {
3210 // Timed out.
3211 return;
3212 }
3213
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003214 if ((sendReceiver = pae.receiver) != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003215 // Caller wants result sent back to them.
3216 sendBundle = new Bundle();
Sunny Goyald40c3452019-03-20 12:46:55 -07003217 sendBundle.putInt(ActivityTaskManagerInternal.ASSIST_TASK_ID,
Louis Changcdec0802019-11-11 11:45:07 +08003218 pae.activity.getTask().mTaskId);
Sunny Goyald40c3452019-03-20 12:46:55 -07003219 sendBundle.putBinder(ActivityTaskManagerInternal.ASSIST_ACTIVITY_ID,
3220 pae.activity.assistToken);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003221 sendBundle.putBundle(ASSIST_KEY_DATA, pae.extras);
3222 sendBundle.putParcelable(ASSIST_KEY_STRUCTURE, pae.structure);
3223 sendBundle.putParcelable(ASSIST_KEY_CONTENT, pae.content);
3224 sendBundle.putBundle(ASSIST_KEY_RECEIVER_EXTRAS, pae.receiverExtras);
3225 }
3226 }
3227 if (sendReceiver != null) {
3228 try {
3229 sendReceiver.onHandleAssistData(sendBundle);
3230 } catch (RemoteException e) {
3231 }
3232 return;
3233 }
3234
3235 final long ident = Binder.clearCallingIdentity();
3236 try {
3237 if (TextUtils.equals(pae.intent.getAction(),
3238 android.service.voice.VoiceInteractionService.SERVICE_INTERFACE)) {
Galia Peychevabffbfc32019-06-18 10:11:35 +02003239 // Start voice interaction through VoiceInteractionManagerService.
Galia Peycheva969f9952020-05-11 20:26:45 +02003240 mAssistUtils.showSessionForActiveService(pae.extras, SHOW_SOURCE_APPLICATION,
Galia Peychevabffbfc32019-06-18 10:11:35 +02003241 null, null);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003242 } else {
3243 pae.intent.replaceExtras(pae.extras);
3244 pae.intent.setFlags(FLAG_ACTIVITY_NEW_TASK
3245 | Intent.FLAG_ACTIVITY_SINGLE_TOP
3246 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Wale Ogunwale31913b52018-10-13 08:29:31 -07003247 mInternal.closeSystemDialogs("assist");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003248
3249 try {
3250 mContext.startActivityAsUser(pae.intent, new UserHandle(pae.userHandle));
3251 } catch (ActivityNotFoundException e) {
3252 Slog.w(TAG, "No activity to handle assist action.", e);
3253 }
3254 }
3255 } finally {
3256 Binder.restoreCallingIdentity(ident);
3257 }
3258 }
3259
3260 @Override
3261 public int addAppTask(IBinder activityToken, Intent intent,
3262 ActivityManager.TaskDescription description, Bitmap thumbnail) throws RemoteException {
3263 final int callingUid = Binder.getCallingUid();
3264 final long callingIdent = Binder.clearCallingIdentity();
3265
3266 try {
3267 synchronized (mGlobalLock) {
3268 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
3269 if (r == null) {
3270 throw new IllegalArgumentException("Activity does not exist; token="
3271 + activityToken);
3272 }
3273 ComponentName comp = intent.getComponent();
3274 if (comp == null) {
3275 throw new IllegalArgumentException("Intent " + intent
3276 + " must specify explicit component");
3277 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003278 if (thumbnail.getWidth() != mThumbnailWidth
3279 || thumbnail.getHeight() != mThumbnailHeight) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003280 throw new IllegalArgumentException("Bad thumbnail size: got "
3281 + thumbnail.getWidth() + "x" + thumbnail.getHeight() + ", require "
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003282 + mThumbnailWidth + "x" + mThumbnailHeight);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003283 }
3284 if (intent.getSelector() != null) {
3285 intent.setSelector(null);
3286 }
3287 if (intent.getSourceBounds() != null) {
3288 intent.setSourceBounds(null);
3289 }
3290 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_DOCUMENT) != 0) {
3291 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS) == 0) {
3292 // The caller has added this as an auto-remove task... that makes no
3293 // sense, so turn off auto-remove.
3294 intent.addFlags(Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS);
3295 }
3296 }
3297 final ActivityInfo ainfo = AppGlobals.getPackageManager().getActivityInfo(comp,
3298 STOCK_PM_FLAGS, UserHandle.getUserId(callingUid));
3299 if (ainfo.applicationInfo.uid != callingUid) {
3300 throw new SecurityException(
3301 "Can't add task for another application: target uid="
3302 + ainfo.applicationInfo.uid + ", calling uid=" + callingUid);
3303 }
3304
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08003305 final ActivityStack stack = r.getRootTask();
Andrii Kulian86d676c2020-03-27 19:34:54 -07003306 final Task task = stack.getDisplayArea().createStack(stack.getWindowingMode(),
3307 stack.getActivityType(), !ON_TOP, ainfo, intent,
Louis Changa009c762020-02-26 11:21:31 +08003308 false /* createdByOrganizer */);
Wale Ogunwale0d465192020-01-23 19:14:44 -08003309
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003310 if (!mRecentTasks.addToBottom(task)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003311 // The app has too many tasks already and we can't add any more
Wale Ogunwale2322bed2019-10-10 17:24:19 +02003312 stack.removeChild(task, "addAppTask");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003313 return INVALID_TASK_ID;
3314 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02003315 task.getTaskDescription().copyFrom(description);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003316
3317 // TODO: Send the thumbnail to WM to store it.
3318
Wale Ogunwale4e79a1c2019-10-05 20:52:40 -07003319 return task.mTaskId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003320 }
3321 } finally {
3322 Binder.restoreCallingIdentity(callingIdent);
3323 }
3324 }
3325
3326 @Override
3327 public Point getAppTaskThumbnailSize() {
3328 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003329 return new Point(mThumbnailWidth, mThumbnailHeight);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003330 }
3331 }
3332
3333 @Override
3334 public void setTaskResizeable(int taskId, int resizeableMode) {
3335 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08003336 final Task task = mRootWindowContainer.anyTaskForId(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003337 taskId, MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
3338 if (task == null) {
3339 Slog.w(TAG, "setTaskResizeable: taskId=" + taskId + " not found");
3340 return;
3341 }
3342 task.setResizeMode(resizeableMode);
3343 }
3344 }
3345
3346 @Override
Daichi Hironofa23f602020-05-14 06:15:59 +00003347 public boolean resizeTask(int taskId, Rect bounds, int resizeMode) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003348 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "resizeTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003349 long ident = Binder.clearCallingIdentity();
3350 try {
3351 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08003352 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08003353 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003354 if (task == null) {
3355 Slog.w(TAG, "resizeTask: taskId=" + taskId + " not found");
Daichi Hironofa23f602020-05-14 06:15:59 +00003356 return false;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003357 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003358 if (!task.getWindowConfiguration().canResizeTask()) {
Daichi Hironofa23f602020-05-14 06:15:59 +00003359 Slog.w(TAG, "resizeTask not allowed on task=" + task);
3360 return false;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003361 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003362
3363 // Reparent the task to the right stack if necessary
3364 boolean preserveWindow = (resizeMode & RESIZE_MODE_PRESERVE_WINDOW) != 0;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003365
3366 // After reparenting (which only resizes the task to the stack bounds), resize the
3367 // task to the actual bounds provided
Daichi Hironofa23f602020-05-14 06:15:59 +00003368 return task.resize(bounds, resizeMode, preserveWindow);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003369 }
3370 } finally {
3371 Binder.restoreCallingIdentity(ident);
3372 }
3373 }
3374
3375 @Override
3376 public boolean releaseActivityInstance(IBinder token) {
3377 synchronized (mGlobalLock) {
3378 final long origId = Binder.clearCallingIdentity();
3379 try {
Andrii Kulianf49a58c2019-08-14 17:34:27 -07003380 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
3381 if (r == null || !r.isDestroyable()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003382 return false;
3383 }
Andrii Kulianf49a58c2019-08-14 17:34:27 -07003384 r.destroyImmediately(true /* removeFromApp */, "app-req");
3385 return r.isState(DESTROYING, DESTROYED);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003386 } finally {
3387 Binder.restoreCallingIdentity(origId);
3388 }
3389 }
3390 }
3391
3392 @Override
3393 public void releaseSomeActivities(IApplicationThread appInt) {
3394 synchronized (mGlobalLock) {
3395 final long origId = Binder.clearCallingIdentity();
3396 try {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07003397 final WindowProcessController app = getProcessController(appInt);
Wale Ogunwalea38654f2019-11-17 20:37:15 -08003398 app.releaseSomeActivities("low-mem");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003399 } finally {
3400 Binder.restoreCallingIdentity(origId);
3401 }
3402 }
3403 }
3404
3405 @Override
wilsonshih177261f2019-02-22 12:02:18 +08003406 public void setLockScreenShown(boolean keyguardShowing, boolean aodShowing) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003407 if (checkCallingPermission(android.Manifest.permission.DEVICE_POWER)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003408 != PackageManager.PERMISSION_GRANTED) {
3409 throw new SecurityException("Requires permission "
3410 + android.Manifest.permission.DEVICE_POWER);
3411 }
3412
3413 synchronized (mGlobalLock) {
3414 long ident = Binder.clearCallingIdentity();
3415 if (mKeyguardShown != keyguardShowing) {
3416 mKeyguardShown = keyguardShowing;
Wale Ogunwale342fbe92018-10-09 08:44:10 -07003417 final Message msg = PooledLambda.obtainMessage(
3418 ActivityManagerInternal::reportCurKeyguardUsageEvent, mAmInternal,
3419 keyguardShowing);
3420 mH.sendMessage(msg);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003421 }
3422 try {
wilsonshih177261f2019-02-22 12:02:18 +08003423 mKeyguardController.setKeyguardShown(keyguardShowing, aodShowing);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003424 } finally {
3425 Binder.restoreCallingIdentity(ident);
3426 }
3427 }
3428
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003429 mH.post(() -> {
3430 for (int i = mScreenObservers.size() - 1; i >= 0; i--) {
3431 mScreenObservers.get(i).onKeyguardStateChanged(keyguardShowing);
3432 }
3433 });
3434 }
3435
Wale Ogunwale387b34c2018-10-25 19:59:40 -07003436 public void onScreenAwakeChanged(boolean isAwake) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003437 mH.post(() -> {
3438 for (int i = mScreenObservers.size() - 1; i >= 0; i--) {
3439 mScreenObservers.get(i).onAwakeStateChanged(isAwake);
3440 }
3441 });
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003442 }
3443
3444 @Override
3445 public Bitmap getTaskDescriptionIcon(String filePath, int userId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003446 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(),
3447 userId, "getTaskDescriptionIcon");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003448
3449 final File passedIconFile = new File(filePath);
3450 final File legitIconFile = new File(TaskPersister.getUserImagesDir(userId),
3451 passedIconFile.getName());
3452 if (!legitIconFile.getPath().equals(filePath)
3453 || !filePath.contains(ActivityRecord.ACTIVITY_ICON_SUFFIX)) {
3454 throw new IllegalArgumentException("Bad file path: " + filePath
3455 + " passed for userId " + userId);
3456 }
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003457 return mRecentTasks.getTaskDescriptionIcon(filePath);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003458 }
3459
3460 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003461 public void removeStack(int stackId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003462 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "removeStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003463 synchronized (mGlobalLock) {
3464 final long ident = Binder.clearCallingIdentity();
3465 try {
Louis Chang149d5c82019-12-30 09:47:39 +08003466 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003467 if (stack == null) {
3468 Slog.w(TAG, "removeStack: No stack with id=" + stackId);
3469 return;
3470 }
3471 if (!stack.isActivityTypeStandardOrUndefined()) {
3472 throw new IllegalArgumentException(
3473 "Removing non-standard stack is not allowed.");
3474 }
3475 mStackSupervisor.removeStack(stack);
3476 } finally {
3477 Binder.restoreCallingIdentity(ident);
3478 }
3479 }
3480 }
3481
3482 @Override
3483 public void moveStackToDisplay(int stackId, int displayId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003484 mAmInternal.enforceCallingPermission(INTERNAL_SYSTEM_WINDOW, "moveStackToDisplay()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003485
3486 synchronized (mGlobalLock) {
3487 final long ident = Binder.clearCallingIdentity();
3488 try {
3489 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveStackToDisplay: moving stackId=" + stackId
3490 + " to displayId=" + displayId);
Louis Chang149d5c82019-12-30 09:47:39 +08003491 mRootWindowContainer.moveStackToDisplay(stackId, displayId, ON_TOP);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003492 } finally {
3493 Binder.restoreCallingIdentity(ident);
3494 }
3495 }
3496 }
3497
3498 @Override
Yunfan Chend967af82019-01-17 18:30:18 +09003499 public void toggleFreeformWindowingMode(IBinder token) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003500 synchronized (mGlobalLock) {
3501 long ident = Binder.clearCallingIdentity();
3502 try {
3503 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
3504 if (r == null) {
3505 throw new IllegalArgumentException(
Yunfan Chend967af82019-01-17 18:30:18 +09003506 "toggleFreeformWindowingMode: No activity record matching token="
3507 + token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003508 }
3509
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08003510 final ActivityStack stack = r.getRootTask();
Yunfan Chend967af82019-01-17 18:30:18 +09003511 if (stack == null) {
3512 throw new IllegalStateException("toggleFreeformWindowingMode: the activity "
3513 + "doesn't have a stack");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003514 }
3515
Yunfan Chend967af82019-01-17 18:30:18 +09003516 if (!stack.inFreeformWindowingMode()
3517 && stack.getWindowingMode() != WINDOWING_MODE_FULLSCREEN) {
3518 throw new IllegalStateException("toggleFreeformWindowingMode: You can only "
3519 + "toggle between fullscreen and freeform.");
3520 }
3521
3522 if (stack.inFreeformWindowingMode()) {
3523 stack.setWindowingMode(WINDOWING_MODE_FULLSCREEN);
Evan Rosky3a8d7fe2019-11-06 17:08:35 -08003524 } else if (!mSizeCompatFreeform && r.inSizeCompatMode()) {
Shivam Agrawal780b5bb2019-07-17 10:17:11 -07003525 throw new IllegalStateException("Size-compat windows are currently not"
3526 + "freeform-enabled");
Yunfan Chene9c1c312019-04-18 14:49:15 +09003527 } else if (stack.getParent().inFreeformWindowingMode()) {
3528 // If the window is on a freeform display, set it to undefined. It will be
3529 // resolved to freeform and it can adjust windowing mode when the display mode
3530 // changes in runtime.
3531 stack.setWindowingMode(WINDOWING_MODE_UNDEFINED);
Yunfan Chend967af82019-01-17 18:30:18 +09003532 } else {
3533 stack.setWindowingMode(WINDOWING_MODE_FREEFORM);
3534 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003535 } finally {
3536 Binder.restoreCallingIdentity(ident);
3537 }
3538 }
3539 }
3540
3541 /** Sets the task stack listener that gets callbacks when a task stack changes. */
3542 @Override
3543 public void registerTaskStackListener(ITaskStackListener listener) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003544 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003545 "registerTaskStackListener()");
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003546 mTaskChangeNotificationController.registerTaskStackListener(listener);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003547 }
3548
3549 /** Unregister a task stack listener so that it stops receiving callbacks. */
3550 @Override
3551 public void unregisterTaskStackListener(ITaskStackListener listener) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003552 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003553 "unregisterTaskStackListener()");
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003554 mTaskChangeNotificationController.unregisterTaskStackListener(listener);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003555 }
3556
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003557 @Override
3558 public boolean requestAssistContextExtras(int requestType, IAssistDataReceiver receiver,
3559 Bundle receiverExtras, IBinder activityToken, boolean focused, boolean newSessionId) {
3560 return enqueueAssistContext(requestType, null, null, receiver, receiverExtras,
3561 activityToken, focused, newSessionId, UserHandle.getCallingUserId(), null,
3562 PENDING_ASSIST_EXTRAS_LONG_TIMEOUT, 0) != null;
3563 }
3564
3565 @Override
3566 public boolean requestAutofillData(IAssistDataReceiver receiver, Bundle receiverExtras,
3567 IBinder activityToken, int flags) {
3568 return enqueueAssistContext(ActivityManager.ASSIST_CONTEXT_AUTOFILL, null, null,
3569 receiver, receiverExtras, activityToken, true, true, UserHandle.getCallingUserId(),
3570 null, PENDING_AUTOFILL_ASSIST_STRUCTURE_TIMEOUT, flags) != null;
3571 }
3572
3573 @Override
3574 public boolean launchAssistIntent(Intent intent, int requestType, String hint, int userHandle,
3575 Bundle args) {
3576 return enqueueAssistContext(requestType, intent, hint, null, null, null,
3577 true /* focused */, true /* newSessionId */, userHandle, args,
3578 PENDING_ASSIST_EXTRAS_TIMEOUT, 0) != null;
3579 }
3580
3581 @Override
3582 public Bundle getAssistContextExtras(int requestType) {
3583 PendingAssistExtras pae = enqueueAssistContext(requestType, null, null, null,
3584 null, null, true /* focused */, true /* newSessionId */,
3585 UserHandle.getCallingUserId(), null, PENDING_ASSIST_EXTRAS_TIMEOUT, 0);
3586 if (pae == null) {
3587 return null;
3588 }
3589 synchronized (pae) {
3590 while (!pae.haveResult) {
3591 try {
3592 pae.wait();
3593 } catch (InterruptedException e) {
3594 }
3595 }
3596 }
3597 synchronized (mGlobalLock) {
3598 buildAssistBundleLocked(pae, pae.result);
3599 mPendingAssistExtras.remove(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003600 mUiHandler.removeCallbacks(pae);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003601 }
3602 return pae.extras;
3603 }
3604
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003605 /**
3606 * Binder IPC calls go through the public entry point.
3607 * This can be called with or without the global lock held.
3608 */
3609 private static int checkCallingPermission(String permission) {
3610 return checkPermission(
3611 permission, Binder.getCallingPid(), UserHandle.getAppId(Binder.getCallingUid()));
3612 }
3613
3614 /** This can be called with or without the global lock held. */
Wale Ogunwale214f3482018-10-04 11:00:47 -07003615 private void enforceCallerIsRecentsOrHasPermission(String permission, String func) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003616 if (!getRecentTasks().isCallerRecents(Binder.getCallingUid())) {
3617 mAmInternal.enforceCallingPermission(permission, func);
3618 }
3619 }
3620
3621 @VisibleForTesting
3622 int checkGetTasksPermission(String permission, int pid, int uid) {
3623 return checkPermission(permission, pid, uid);
3624 }
3625
3626 static int checkPermission(String permission, int pid, int uid) {
3627 if (permission == null) {
3628 return PackageManager.PERMISSION_DENIED;
3629 }
3630 return checkComponentPermission(permission, pid, uid, -1, true);
3631 }
3632
Wale Ogunwale214f3482018-10-04 11:00:47 -07003633 public static int checkComponentPermission(String permission, int pid, int uid,
3634 int owningUid, boolean exported) {
3635 return ActivityManagerService.checkComponentPermission(
3636 permission, pid, uid, owningUid, exported);
3637 }
3638
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003639 boolean isGetTasksAllowed(String caller, int callingPid, int callingUid) {
3640 if (getRecentTasks().isCallerRecents(callingUid)) {
3641 // Always allow the recents component to get tasks
3642 return true;
3643 }
3644
3645 boolean allowed = checkGetTasksPermission(android.Manifest.permission.REAL_GET_TASKS,
3646 callingPid, callingUid) == PackageManager.PERMISSION_GRANTED;
3647 if (!allowed) {
3648 if (checkGetTasksPermission(android.Manifest.permission.GET_TASKS,
3649 callingPid, callingUid) == PackageManager.PERMISSION_GRANTED) {
3650 // Temporary compatibility: some existing apps on the system image may
3651 // still be requesting the old permission and not switched to the new
3652 // one; if so, we'll still allow them full access. This means we need
3653 // to see if they are holding the old permission and are a system app.
3654 try {
3655 if (AppGlobals.getPackageManager().isUidPrivileged(callingUid)) {
3656 allowed = true;
3657 if (DEBUG_TASKS) Slog.w(TAG, caller + ": caller " + callingUid
3658 + " is using old GET_TASKS but privileged; allowing");
3659 }
3660 } catch (RemoteException e) {
3661 }
3662 }
3663 if (DEBUG_TASKS) Slog.w(TAG, caller + ": caller " + callingUid
3664 + " does not hold REAL_GET_TASKS; limiting output");
3665 }
3666 return allowed;
3667 }
3668
Nicholas Sauer0259e532019-08-30 08:24:55 -07003669 boolean isCrossUserAllowed(int pid, int uid) {
3670 return checkPermission(INTERACT_ACROSS_USERS, pid, uid) == PERMISSION_GRANTED
3671 || checkPermission(INTERACT_ACROSS_USERS_FULL, pid, uid) == PERMISSION_GRANTED;
3672 }
3673
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003674 private PendingAssistExtras enqueueAssistContext(int requestType, Intent intent, String hint,
3675 IAssistDataReceiver receiver, Bundle receiverExtras, IBinder activityToken,
3676 boolean focused, boolean newSessionId, int userHandle, Bundle args, long timeout,
3677 int flags) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003678 mAmInternal.enforceCallingPermission(android.Manifest.permission.GET_TOP_ACTIVITY_INFO,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003679 "enqueueAssistContext()");
3680
3681 synchronized (mGlobalLock) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08003682 final ActivityStack stack = getTopDisplayFocusedStack();
3683 ActivityRecord activity = stack != null ? stack.getTopNonFinishingActivity() : null;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003684 if (activity == null) {
3685 Slog.w(TAG, "getAssistContextExtras failed: no top activity");
3686 return null;
3687 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003688 if (!activity.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003689 Slog.w(TAG, "getAssistContextExtras failed: no process for " + activity);
3690 return null;
3691 }
3692 if (focused) {
3693 if (activityToken != null) {
3694 ActivityRecord caller = ActivityRecord.forTokenLocked(activityToken);
3695 if (activity != caller) {
3696 Slog.w(TAG, "enqueueAssistContext failed: caller " + caller
3697 + " is not current top " + activity);
3698 return null;
3699 }
3700 }
3701 } else {
3702 activity = ActivityRecord.forTokenLocked(activityToken);
3703 if (activity == null) {
3704 Slog.w(TAG, "enqueueAssistContext failed: activity for token=" + activityToken
3705 + " couldn't be found");
3706 return null;
3707 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003708 if (!activity.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003709 Slog.w(TAG, "enqueueAssistContext failed: no process for " + activity);
3710 return null;
3711 }
3712 }
3713
3714 PendingAssistExtras pae;
3715 Bundle extras = new Bundle();
3716 if (args != null) {
3717 extras.putAll(args);
3718 }
3719 extras.putString(Intent.EXTRA_ASSIST_PACKAGE, activity.packageName);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003720 extras.putInt(Intent.EXTRA_ASSIST_UID, activity.app.mUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003721
3722 pae = new PendingAssistExtras(activity, extras, intent, hint, receiver, receiverExtras,
3723 userHandle);
3724 pae.isHome = activity.isActivityTypeHome();
3725
3726 // Increment the sessionId if necessary
3727 if (newSessionId) {
3728 mViSessionId++;
3729 }
3730 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003731 activity.app.getThread().requestAssistContextExtras(activity.appToken, pae,
3732 requestType, mViSessionId, flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003733 mPendingAssistExtras.add(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003734 mUiHandler.postDelayed(pae, timeout);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003735 } catch (RemoteException e) {
3736 Slog.w(TAG, "getAssistContextExtras failed: crash calling " + activity);
3737 return null;
3738 }
3739 return pae;
3740 }
3741 }
3742
3743 private void buildAssistBundleLocked(PendingAssistExtras pae, Bundle result) {
3744 if (result != null) {
3745 pae.extras.putBundle(Intent.EXTRA_ASSIST_CONTEXT, result);
3746 }
3747 if (pae.hint != null) {
3748 pae.extras.putBoolean(pae.hint, true);
3749 }
3750 }
3751
3752 private void pendingAssistExtrasTimedOut(PendingAssistExtras pae) {
3753 IAssistDataReceiver receiver;
3754 synchronized (mGlobalLock) {
3755 mPendingAssistExtras.remove(pae);
3756 receiver = pae.receiver;
3757 }
3758 if (receiver != null) {
3759 // Caller wants result sent back to them.
3760 Bundle sendBundle = new Bundle();
3761 // At least return the receiver extras
3762 sendBundle.putBundle(ASSIST_KEY_RECEIVER_EXTRAS, pae.receiverExtras);
3763 try {
3764 pae.receiver.onHandleAssistData(sendBundle);
3765 } catch (RemoteException e) {
3766 }
3767 }
3768 }
3769
3770 public class PendingAssistExtras extends Binder implements Runnable {
3771 public final ActivityRecord activity;
3772 public boolean isHome;
3773 public final Bundle extras;
3774 public final Intent intent;
3775 public final String hint;
3776 public final IAssistDataReceiver receiver;
3777 public final int userHandle;
3778 public boolean haveResult = false;
3779 public Bundle result = null;
3780 public AssistStructure structure = null;
3781 public AssistContent content = null;
3782 public Bundle receiverExtras;
3783
3784 public PendingAssistExtras(ActivityRecord _activity, Bundle _extras, Intent _intent,
3785 String _hint, IAssistDataReceiver _receiver, Bundle _receiverExtras,
3786 int _userHandle) {
3787 activity = _activity;
3788 extras = _extras;
3789 intent = _intent;
3790 hint = _hint;
3791 receiver = _receiver;
3792 receiverExtras = _receiverExtras;
3793 userHandle = _userHandle;
3794 }
3795
3796 @Override
3797 public void run() {
3798 Slog.w(TAG, "getAssistContextExtras failed: timeout retrieving from " + activity);
3799 synchronized (this) {
3800 haveResult = true;
3801 notifyAll();
3802 }
3803 pendingAssistExtrasTimedOut(this);
3804 }
3805 }
3806
3807 @Override
3808 public boolean isAssistDataAllowedOnCurrentActivity() {
3809 int userId;
3810 synchronized (mGlobalLock) {
Andrii Kulian5f750bc2018-07-17 08:57:23 -07003811 final ActivityStack focusedStack = getTopDisplayFocusedStack();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003812 if (focusedStack == null || focusedStack.isActivityTypeAssistant()) {
3813 return false;
3814 }
3815
Wale Ogunwale21e06482019-11-18 05:14:15 -08003816 final ActivityRecord activity = focusedStack.getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003817 if (activity == null) {
3818 return false;
3819 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08003820 userId = activity.mUserId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003821 }
3822 return !DevicePolicyCache.getInstance().getScreenCaptureDisabled(userId);
3823 }
3824
3825 @Override
3826 public boolean showAssistFromActivity(IBinder token, Bundle args) {
3827 long ident = Binder.clearCallingIdentity();
3828 try {
3829 synchronized (mGlobalLock) {
3830 ActivityRecord caller = ActivityRecord.forTokenLocked(token);
Wale Ogunwale21e06482019-11-18 05:14:15 -08003831 ActivityRecord top = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003832 if (top != caller) {
3833 Slog.w(TAG, "showAssistFromActivity failed: caller " + caller
3834 + " is not current top " + top);
3835 return false;
3836 }
3837 if (!top.nowVisible) {
3838 Slog.w(TAG, "showAssistFromActivity failed: caller " + caller
3839 + " is not visible");
3840 return false;
3841 }
3842 }
3843 return mAssistUtils.showSessionForActiveService(args, SHOW_SOURCE_APPLICATION, null,
3844 token);
3845 } finally {
3846 Binder.restoreCallingIdentity(ident);
3847 }
3848 }
3849
3850 @Override
3851 public boolean isRootVoiceInteraction(IBinder token) {
3852 synchronized (mGlobalLock) {
3853 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3854 if (r == null) {
3855 return false;
3856 }
3857 return r.rootVoiceInteraction;
3858 }
3859 }
3860
Wale Ogunwalef6733932018-06-27 05:14:34 -07003861 private void onLocalVoiceInteractionStartedLocked(IBinder activity,
3862 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor) {
3863 ActivityRecord activityToCallback = ActivityRecord.forTokenLocked(activity);
3864 if (activityToCallback == null) return;
3865 activityToCallback.setVoiceSessionLocked(voiceSession);
3866
3867 // Inform the activity
3868 try {
3869 activityToCallback.app.getThread().scheduleLocalVoiceInteractionStarted(activity,
3870 voiceInteractor);
3871 long token = Binder.clearCallingIdentity();
3872 try {
Andrii Kulianeceebbf2019-06-26 17:36:51 -07003873 startRunningVoiceLocked(voiceSession, activityToCallback.info.applicationInfo.uid);
Wale Ogunwalef6733932018-06-27 05:14:34 -07003874 } finally {
3875 Binder.restoreCallingIdentity(token);
3876 }
3877 // TODO: VI Should we cache the activity so that it's easier to find later
3878 // rather than scan through all the stacks and activities?
3879 } catch (RemoteException re) {
3880 activityToCallback.clearVoiceSessionLocked();
3881 // TODO: VI Should this terminate the voice session?
3882 }
3883 }
3884
3885 private void startRunningVoiceLocked(IVoiceInteractionSession session, int targetUid) {
3886 Slog.d(TAG, "<<< startRunningVoiceLocked()");
3887 mVoiceWakeLock.setWorkSource(new WorkSource(targetUid));
3888 if (mRunningVoice == null || mRunningVoice.asBinder() != session.asBinder()) {
3889 boolean wasRunningVoice = mRunningVoice != null;
3890 mRunningVoice = session;
3891 if (!wasRunningVoice) {
3892 mVoiceWakeLock.acquire();
3893 updateSleepIfNeededLocked();
3894 }
3895 }
3896 }
3897
3898 void finishRunningVoiceLocked() {
3899 if (mRunningVoice != null) {
3900 mRunningVoice = null;
3901 mVoiceWakeLock.release();
3902 updateSleepIfNeededLocked();
3903 }
3904 }
3905
3906 @Override
3907 public void setVoiceKeepAwake(IVoiceInteractionSession session, boolean keepAwake) {
3908 synchronized (mGlobalLock) {
3909 if (mRunningVoice != null && mRunningVoice.asBinder() == session.asBinder()) {
3910 if (keepAwake) {
3911 mVoiceWakeLock.acquire();
3912 } else {
3913 mVoiceWakeLock.release();
3914 }
3915 }
3916 }
3917 }
3918
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003919 @Override
3920 public ComponentName getActivityClassForToken(IBinder token) {
3921 synchronized (mGlobalLock) {
3922 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3923 if (r == null) {
3924 return null;
3925 }
3926 return r.intent.getComponent();
3927 }
3928 }
3929
3930 @Override
3931 public String getPackageForToken(IBinder token) {
3932 synchronized (mGlobalLock) {
3933 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3934 if (r == null) {
3935 return null;
3936 }
3937 return r.packageName;
3938 }
3939 }
3940
3941 @Override
3942 public void showLockTaskEscapeMessage(IBinder token) {
3943 synchronized (mGlobalLock) {
3944 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
3945 if (r == null) {
3946 return;
3947 }
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003948 getLockTaskController().showLockTaskToast();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003949 }
3950 }
3951
3952 @Override
3953 public void keyguardGoingAway(int flags) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003954 enforceNotIsolatedCaller("keyguardGoingAway");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003955 final long token = Binder.clearCallingIdentity();
3956 try {
3957 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003958 mKeyguardController.keyguardGoingAway(flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003959 }
3960 } finally {
3961 Binder.restoreCallingIdentity(token);
3962 }
3963 }
3964
3965 /**
3966 * Try to place task to provided position. The final position might be different depending on
3967 * current user and stacks state. The task will be moved to target stack if it's currently in
3968 * different stack.
3969 */
3970 @Override
3971 public void positionTaskInStack(int taskId, int stackId, int position) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003972 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "positionTaskInStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003973 synchronized (mGlobalLock) {
3974 long ident = Binder.clearCallingIdentity();
3975 try {
3976 if (DEBUG_STACK) Slog.d(TAG_STACK, "positionTaskInStack: positioning task="
3977 + taskId + " in stackId=" + stackId + " at position=" + position);
Louis Chang149d5c82019-12-30 09:47:39 +08003978 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003979 if (task == null) {
3980 throw new IllegalArgumentException("positionTaskInStack: no task for id="
3981 + taskId);
3982 }
3983
Louis Chang149d5c82019-12-30 09:47:39 +08003984 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003985
3986 if (stack == null) {
3987 throw new IllegalArgumentException("positionTaskInStack: no stack for id="
3988 + stackId);
3989 }
3990 if (!stack.isActivityTypeStandardOrUndefined()) {
3991 throw new IllegalArgumentException("positionTaskInStack: Attempt to change"
3992 + " the position of task " + taskId + " in/to non-standard stack");
3993 }
3994
3995 // TODO: Have the callers of this API call a separate reparent method if that is
3996 // what they intended to do vs. having this method also do reparenting.
3997 if (task.getStack() == stack) {
3998 // Change position in current stack.
3999 stack.positionChildAt(task, position);
4000 } else {
4001 // Reparent to new stack.
4002 task.reparent(stack, position, REPARENT_LEAVE_STACK_IN_PLACE, !ANIMATE,
4003 !DEFER_RESUME, "positionTaskInStack");
4004 }
4005 } finally {
4006 Binder.restoreCallingIdentity(ident);
4007 }
4008 }
4009 }
4010
4011 @Override
4012 public void reportSizeConfigurations(IBinder token, int[] horizontalSizeConfiguration,
4013 int[] verticalSizeConfigurations, int[] smallestSizeConfigurations) {
4014 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Report configuration: " + token + " "
Yuichiro Hanadae7e930b2019-06-06 19:07:21 +09004015 + Arrays.toString(horizontalSizeConfiguration) + " "
4016 + Arrays.toString(verticalSizeConfigurations));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004017 synchronized (mGlobalLock) {
4018 ActivityRecord record = ActivityRecord.isInStackLocked(token);
4019 if (record == null) {
4020 throw new IllegalArgumentException("reportSizeConfigurations: ActivityRecord not "
4021 + "found for: " + token);
4022 }
4023 record.setSizeConfigurations(horizontalSizeConfiguration,
4024 verticalSizeConfigurations, smallestSizeConfigurations);
4025 }
4026 }
4027
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004028 @Override
4029 public void suppressResizeConfigChanges(boolean suppress) throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004030 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "suppressResizeConfigChanges()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004031 synchronized (mGlobalLock) {
4032 mSuppressResizeConfigChanges = suppress;
4033 }
4034 }
4035
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004036 /**
4037 * Moves the top activity in the input stackId to the pinned stack.
4038 *
4039 * @param stackId Id of stack to move the top activity to pinned stack.
4040 * @param bounds Bounds to use for pinned stack.
4041 *
4042 * @return True if the top activity of the input stack was successfully moved to the pinned
4043 * stack.
4044 */
4045 @Override
4046 public boolean moveTopActivityToPinnedStack(int stackId, Rect bounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004047 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004048 "moveTopActivityToPinnedStack()");
4049 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004050 if (!mSupportsPictureInPicture) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004051 throw new IllegalStateException("moveTopActivityToPinnedStack:"
4052 + "Device doesn't support picture-in-picture mode");
4053 }
4054
4055 long ident = Binder.clearCallingIdentity();
4056 try {
Louis Chang149d5c82019-12-30 09:47:39 +08004057 return mRootWindowContainer.moveTopStackActivityToPinnedStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004058 } finally {
4059 Binder.restoreCallingIdentity(ident);
4060 }
4061 }
4062 }
4063
Hongwei Wang5711b8f2019-11-15 15:44:12 -08004064 @VisibleForTesting
4065 boolean isInPictureInPictureMode(ActivityRecord r) {
Hongwei Wang85cf41f2020-01-15 15:14:47 -08004066 return r != null
4067 && r.getRootTask() != null
4068 && r.inPinnedWindowingMode()
Wale Ogunwale0db64ac2020-04-11 10:00:42 -07004069 && r.getRootTask().isInTask(r) != null;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004070 }
4071
4072 @Override
4073 public boolean enterPictureInPictureMode(IBinder token, final PictureInPictureParams params) {
4074 final long origId = Binder.clearCallingIdentity();
4075 try {
4076 synchronized (mGlobalLock) {
4077 final ActivityRecord r = ensureValidPictureInPictureActivityParamsLocked(
4078 "enterPictureInPictureMode", token, params);
4079
4080 // If the activity is already in picture in picture mode, then just return early
4081 if (isInPictureInPictureMode(r)) {
4082 return true;
4083 }
4084
4085 // Activity supports picture-in-picture, now check that we can enter PiP at this
4086 // point, if it is
4087 if (!r.checkEnterPictureInPictureState("enterPictureInPictureMode",
4088 false /* beforeStopping */)) {
4089 return false;
4090 }
4091
4092 final Runnable enterPipRunnable = () -> {
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004093 synchronized (mGlobalLock) {
Hyangseok Chaeed0624e2019-11-07 10:15:46 +09004094 if (r.getParent() == null) {
4095 Slog.e(TAG, "Skip enterPictureInPictureMode, destroyed " + r);
4096 return;
4097 }
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004098 // Only update the saved args from the args that are set
Robert Carrf6690d12020-02-04 14:16:21 -08004099 r.setPictureInPictureParams(params);
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004100 final float aspectRatio = r.pictureInPictureArgs.getAspectRatio();
4101 final List<RemoteAction> actions = r.pictureInPictureArgs.getActions();
Louis Chang149d5c82019-12-30 09:47:39 +08004102 mRootWindowContainer.moveActivityToPinnedStack(
Hongwei Wange8e32862020-04-08 13:23:45 -07004103 r, "enterPictureInPictureMode");
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004104 final ActivityStack stack = r.getRootTask();
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004105 stack.setPictureInPictureAspectRatio(aspectRatio);
4106 stack.setPictureInPictureActions(actions);
Andrii Kulianeceebbf2019-06-26 17:36:51 -07004107 MetricsLoggerWrapper.logPictureInPictureEnter(mContext,
4108 r.info.applicationInfo.uid, r.shortComponentName,
4109 r.supportsEnterPipOnTaskSwitch);
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004110 logPictureInPictureArgs(params);
4111 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004112 };
4113
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004114 if (isKeyguardLocked()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004115 // If the keyguard is showing or occluded, then try and dismiss it before
4116 // entering picture-in-picture (this will prompt the user to authenticate if the
4117 // device is currently locked).
4118 dismissKeyguard(token, new KeyguardDismissCallback() {
4119 @Override
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004120 public void onDismissSucceeded() {
4121 mH.post(enterPipRunnable);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004122 }
4123 }, null /* message */);
4124 } else {
4125 // Enter picture in picture immediately otherwise
4126 enterPipRunnable.run();
4127 }
4128 return true;
4129 }
4130 } finally {
4131 Binder.restoreCallingIdentity(origId);
4132 }
4133 }
4134
4135 @Override
4136 public void setPictureInPictureParams(IBinder token, final PictureInPictureParams params) {
4137 final long origId = Binder.clearCallingIdentity();
4138 try {
4139 synchronized (mGlobalLock) {
4140 final ActivityRecord r = ensureValidPictureInPictureActivityParamsLocked(
4141 "setPictureInPictureParams", token, params);
4142
4143 // Only update the saved args from the args that are set
Robert Carrf6690d12020-02-04 14:16:21 -08004144 r.setPictureInPictureParams(params);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004145 if (r.inPinnedWindowingMode()) {
4146 // If the activity is already in picture-in-picture, update the pinned stack now
4147 // if it is not already expanding to fullscreen. Otherwise, the arguments will
4148 // be used the next time the activity enters PiP
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004149 final ActivityStack stack = r.getRootTask();
Hongwei Wang85cf41f2020-01-15 15:14:47 -08004150 stack.setPictureInPictureAspectRatio(
4151 r.pictureInPictureArgs.getAspectRatio());
4152 stack.setPictureInPictureActions(r.pictureInPictureArgs.getActions());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004153 }
4154 logPictureInPictureArgs(params);
4155 }
4156 } finally {
4157 Binder.restoreCallingIdentity(origId);
4158 }
4159 }
4160
4161 @Override
4162 public int getMaxNumPictureInPictureActions(IBinder token) {
4163 // Currently, this is a static constant, but later, we may change this to be dependent on
4164 // the context of the activity
4165 return 3;
4166 }
4167
4168 private void logPictureInPictureArgs(PictureInPictureParams params) {
4169 if (params.hasSetActions()) {
4170 MetricsLogger.histogram(mContext, "tron_varz_picture_in_picture_actions_count",
4171 params.getActions().size());
4172 }
4173 if (params.hasSetAspectRatio()) {
4174 LogMaker lm = new LogMaker(MetricsEvent.ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED);
4175 lm.addTaggedData(MetricsEvent.PICTURE_IN_PICTURE_ASPECT_RATIO, params.getAspectRatio());
4176 MetricsLogger.action(lm);
4177 }
4178 }
4179
4180 /**
4181 * Checks the state of the system and the activity associated with the given {@param token} to
4182 * verify that picture-in-picture is supported for that activity.
4183 *
4184 * @return the activity record for the given {@param token} if all the checks pass.
4185 */
4186 private ActivityRecord ensureValidPictureInPictureActivityParamsLocked(String caller,
4187 IBinder token, PictureInPictureParams params) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004188 if (!mSupportsPictureInPicture) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004189 throw new IllegalStateException(caller
4190 + ": Device doesn't support picture-in-picture mode.");
4191 }
4192
4193 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
4194 if (r == null) {
4195 throw new IllegalStateException(caller
4196 + ": Can't find activity for token=" + token);
4197 }
4198
4199 if (!r.supportsPictureInPicture()) {
4200 throw new IllegalStateException(caller
4201 + ": Current activity does not support picture-in-picture.");
4202 }
4203
4204 if (params.hasSetAspectRatio()
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004205 && !mWindowManager.isValidPictureInPictureAspectRatio(
Wale Ogunwale8f93b642019-12-26 12:10:52 -08004206 r.getDisplay(), params.getAspectRatio())) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004207 final float minAspectRatio = mContext.getResources().getFloat(
4208 com.android.internal.R.dimen.config_pictureInPictureMinAspectRatio);
4209 final float maxAspectRatio = mContext.getResources().getFloat(
4210 com.android.internal.R.dimen.config_pictureInPictureMaxAspectRatio);
4211 throw new IllegalArgumentException(String.format(caller
4212 + ": Aspect ratio is too extreme (must be between %f and %f).",
4213 minAspectRatio, maxAspectRatio));
4214 }
4215
4216 // Truncate the number of actions if necessary
4217 params.truncateActions(getMaxNumPictureInPictureActions(token));
4218
4219 return r;
4220 }
4221
4222 @Override
4223 public IBinder getUriPermissionOwnerForActivity(IBinder activityToken) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004224 enforceNotIsolatedCaller("getUriPermissionOwnerForActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004225 synchronized (mGlobalLock) {
4226 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
4227 if (r == null) {
4228 throw new IllegalArgumentException("Activity does not exist; token="
4229 + activityToken);
4230 }
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -07004231 return r.getUriPermissionsLocked().getExternalToken();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004232 }
4233 }
4234
Evan Rosky73a7fe92019-11-18 18:28:01 -08004235 // TODO(b/149338177): remove when CTS no-longer requires it
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004236 @Override
4237 public void resizeDockedStack(Rect dockedBounds, Rect tempDockedTaskBounds,
4238 Rect tempDockedTaskInsetBounds,
4239 Rect tempOtherTaskBounds, Rect tempOtherTaskInsetBounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004240 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "resizeDockedStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004241 long ident = Binder.clearCallingIdentity();
4242 try {
4243 synchronized (mGlobalLock) {
Andrii Kulian4c0fd0d2020-03-29 13:32:14 -07004244 final TaskDisplayArea tc = mRootWindowContainer.getDefaultTaskDisplayArea();
4245 final Task primary = tc.getRootSplitScreenPrimaryTask();
4246 final Task secondary = tc.getTask(t -> t.mCreatedByOrganizer && t.isRootTask()
Louis Changa009c762020-02-26 11:21:31 +08004247 && t.inSplitScreenSecondaryWindowingMode());
Evan Rosky73a7fe92019-11-18 18:28:01 -08004248 if (primary == null || secondary == null) {
4249 return;
4250 }
4251 final WindowContainerTransaction wct = new WindowContainerTransaction();
4252 final Rect primaryRect =
4253 tempDockedTaskInsetBounds != null ? tempDockedTaskInsetBounds
4254 : (tempDockedTaskBounds != null ? tempDockedTaskBounds
4255 : dockedBounds);
Wale Ogunwaleadf116e2020-03-27 16:36:01 -07004256 wct.setBounds(primary.mRemoteToken.toWindowContainerToken(), primaryRect);
Evan Rosky73a7fe92019-11-18 18:28:01 -08004257 Rect otherRect = tempOtherTaskInsetBounds != null ? tempOtherTaskInsetBounds
4258 : tempOtherTaskBounds;
4259 if (otherRect == null) {
4260 // Temporary estimation... again this is just for tests.
4261 otherRect = new Rect(secondary.getBounds());
Andrii Kulian4c0fd0d2020-03-29 13:32:14 -07004262 if (tc.getBounds().width() > tc.getBounds().height()) {
Evan Rosky73a7fe92019-11-18 18:28:01 -08004263 otherRect.left = primaryRect.right + 6;
4264 } else {
4265 otherRect.top = primaryRect.bottom + 6;
4266 }
4267 }
Wale Ogunwaleadf116e2020-03-27 16:36:01 -07004268 wct.setBounds(secondary.mRemoteToken.toWindowContainerToken(), otherRect);
Wale Ogunwale568f9f412020-03-21 22:27:35 -07004269 mWindowOrganizerController.applyTransaction(wct);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004270 }
4271 } finally {
4272 Binder.restoreCallingIdentity(ident);
4273 }
4274 }
4275
4276 @Override
4277 public void setSplitScreenResizing(boolean resizing) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004278 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "setSplitScreenResizing()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004279 final long ident = Binder.clearCallingIdentity();
4280 try {
4281 synchronized (mGlobalLock) {
4282 mStackSupervisor.setSplitScreenResizing(resizing);
4283 }
4284 } finally {
4285 Binder.restoreCallingIdentity(ident);
4286 }
4287 }
4288
Evan Rosky0037e5f2019-11-05 10:26:24 -08004289 @Override
Wale Ogunwale568f9f412020-03-21 22:27:35 -07004290 public IWindowOrganizerController getWindowOrganizerController() {
Evan Rosky0037e5f2019-11-05 10:26:24 -08004291 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale568f9f412020-03-21 22:27:35 -07004292 "getWindowOrganizerController()");
4293 return mWindowOrganizerController;
Evan Rosky0037e5f2019-11-05 10:26:24 -08004294 }
4295
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004296 /**
4297 * Check that we have the features required for VR-related API calls, and throw an exception if
4298 * not.
4299 */
Wale Ogunwale59507092018-10-29 09:00:30 -07004300 public void enforceSystemHasVrFeature() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004301 if (!mContext.getPackageManager().hasSystemFeature(
4302 PackageManager.FEATURE_VR_MODE_HIGH_PERFORMANCE)) {
4303 throw new UnsupportedOperationException("VR mode not supported on this device!");
4304 }
4305 }
4306
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004307 @Override
4308 public int setVrMode(IBinder token, boolean enabled, ComponentName packageName) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004309 enforceSystemHasVrFeature();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004310
4311 final VrManagerInternal vrService = LocalServices.getService(VrManagerInternal.class);
4312
4313 ActivityRecord r;
4314 synchronized (mGlobalLock) {
4315 r = ActivityRecord.isInStackLocked(token);
4316 }
4317
4318 if (r == null) {
4319 throw new IllegalArgumentException();
4320 }
4321
4322 int err;
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004323 if ((err = vrService.hasVrPackage(packageName, r.mUserId)) !=
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004324 VrManagerInternal.NO_ERROR) {
4325 return err;
4326 }
4327
4328 // Clear the binder calling uid since this path may call moveToTask().
4329 final long callingId = Binder.clearCallingIdentity();
4330 try {
4331 synchronized (mGlobalLock) {
4332 r.requestedVrComponent = (enabled) ? packageName : null;
4333
4334 // Update associated state if this activity is currently focused
Andrii Kulian52d255c2018-07-13 11:32:19 -07004335 if (r.isResumedActivityOnDisplay()) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004336 applyUpdateVrModeLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004337 }
4338 return 0;
4339 }
4340 } finally {
4341 Binder.restoreCallingIdentity(callingId);
4342 }
4343 }
4344
4345 @Override
4346 public void startLocalVoiceInteraction(IBinder callingActivity, Bundle options) {
4347 Slog.i(TAG, "Activity tried to startLocalVoiceInteraction");
4348 synchronized (mGlobalLock) {
Wale Ogunwale21e06482019-11-18 05:14:15 -08004349 ActivityRecord activity = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004350 if (ActivityRecord.forTokenLocked(callingActivity) != activity) {
4351 throw new SecurityException("Only focused activity can call startVoiceInteraction");
4352 }
Louis Changcdec0802019-11-11 11:45:07 +08004353 if (mRunningVoice != null || activity.getTask().voiceSession != null
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004354 || activity.voiceSession != null) {
4355 Slog.w(TAG, "Already in a voice interaction, cannot start new voice interaction");
4356 return;
4357 }
4358 if (activity.pendingVoiceInteractionStart) {
4359 Slog.w(TAG, "Pending start of voice interaction already.");
4360 return;
4361 }
4362 activity.pendingVoiceInteractionStart = true;
4363 }
4364 LocalServices.getService(VoiceInteractionManagerInternal.class)
4365 .startLocalVoiceInteraction(callingActivity, options);
4366 }
4367
4368 @Override
4369 public void stopLocalVoiceInteraction(IBinder callingActivity) {
4370 LocalServices.getService(VoiceInteractionManagerInternal.class)
4371 .stopLocalVoiceInteraction(callingActivity);
4372 }
4373
4374 @Override
4375 public boolean supportsLocalVoiceInteraction() {
4376 return LocalServices.getService(VoiceInteractionManagerInternal.class)
4377 .supportsLocalVoiceInteraction();
4378 }
4379
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004380 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004381 public boolean updateConfiguration(Configuration values) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004382 mAmInternal.enforceCallingPermission(CHANGE_CONFIGURATION, "updateConfiguration()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004383
4384 synchronized (mGlobalLock) {
Riddle Hsua0022cd2019-09-09 21:12:41 +08004385 if (mWindowManager == null) {
4386 Slog.w(TAG, "Skip updateConfiguration because mWindowManager isn't set");
4387 return false;
4388 }
4389
4390 if (values == null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004391 // sentinel: fetch the current configuration from the window manager
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004392 values = mWindowManager.computeNewConfiguration(DEFAULT_DISPLAY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004393 }
4394
Riddle Hsua0022cd2019-09-09 21:12:41 +08004395 mH.sendMessage(PooledLambda.obtainMessage(
4396 ActivityManagerInternal::updateOomLevelsForDisplay, mAmInternal,
4397 DEFAULT_DISPLAY));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004398
4399 final long origId = Binder.clearCallingIdentity();
4400 try {
4401 if (values != null) {
4402 Settings.System.clearConfiguration(values);
4403 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004404 updateConfigurationLocked(values, null, false, false /* persistent */,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004405 UserHandle.USER_NULL, false /* deferResume */,
4406 mTmpUpdateConfigurationResult);
4407 return mTmpUpdateConfigurationResult.changes != 0;
4408 } finally {
4409 Binder.restoreCallingIdentity(origId);
4410 }
4411 }
4412 }
4413
4414 @Override
4415 public void dismissKeyguard(IBinder token, IKeyguardDismissCallback callback,
4416 CharSequence message) {
4417 if (message != null) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004418 mAmInternal.enforceCallingPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004419 Manifest.permission.SHOW_KEYGUARD_MESSAGE, "dismissKeyguard()");
4420 }
4421 final long callingId = Binder.clearCallingIdentity();
4422 try {
4423 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004424 mKeyguardController.dismissKeyguard(token, callback, message);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004425 }
4426 } finally {
4427 Binder.restoreCallingIdentity(callingId);
4428 }
4429 }
4430
4431 @Override
4432 public void cancelTaskWindowTransition(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004433 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004434 "cancelTaskWindowTransition()");
4435 final long ident = Binder.clearCallingIdentity();
4436 try {
4437 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004438 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004439 MATCH_TASK_IN_STACKS_ONLY);
4440 if (task == null) {
4441 Slog.w(TAG, "cancelTaskWindowTransition: taskId=" + taskId + " not found");
4442 return;
4443 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02004444 task.cancelTaskWindowTransition();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004445 }
4446 } finally {
4447 Binder.restoreCallingIdentity(ident);
4448 }
4449 }
4450
4451 @Override
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004452 public ActivityManager.TaskSnapshot getTaskSnapshot(int taskId, boolean isLowResolution) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004453 enforceCallerIsRecentsOrHasPermission(READ_FRAME_BUFFER, "getTaskSnapshot()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004454 final long ident = Binder.clearCallingIdentity();
4455 try {
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004456 return getTaskSnapshot(taskId, isLowResolution, true /* restoreFromDisk */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004457 } finally {
4458 Binder.restoreCallingIdentity(ident);
4459 }
4460 }
4461
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004462 private ActivityManager.TaskSnapshot getTaskSnapshot(int taskId, boolean isLowResolution,
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004463 boolean restoreFromDisk) {
Louis Changcdec0802019-11-11 11:45:07 +08004464 final Task task;
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004465 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004466 task = mRootWindowContainer.anyTaskForId(taskId,
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004467 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
4468 if (task == null) {
4469 Slog.w(TAG, "getTaskSnapshot: taskId=" + taskId + " not found");
4470 return null;
4471 }
4472 }
4473 // Don't call this while holding the lock as this operation might hit the disk.
Peter Kalauskas4dc04602020-02-12 18:49:03 -08004474 return task.getSnapshot(isLowResolution, restoreFromDisk);
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004475 }
4476
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004477 @Override
4478 public void setDisablePreviewScreenshots(IBinder token, boolean disable) {
4479 synchronized (mGlobalLock) {
4480 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4481 if (r == null) {
4482 Slog.w(TAG, "setDisablePreviewScreenshots: Unable to find activity for token="
4483 + token);
4484 return;
4485 }
4486 final long origId = Binder.clearCallingIdentity();
4487 try {
4488 r.setDisablePreviewScreenshots(disable);
4489 } finally {
4490 Binder.restoreCallingIdentity(origId);
4491 }
4492 }
4493 }
4494
Riddle Hsu440f88b2019-11-06 22:17:35 +08004495 @Override
4496 public void invalidateHomeTaskSnapshot(IBinder token) {
4497 synchronized (mGlobalLock) {
4498 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4499 if (r == null || !r.isActivityTypeHome()) {
4500 return;
4501 }
4502 mWindowManager.mTaskSnapshotController.removeSnapshotCache(r.getTask().mTaskId);
4503 }
4504 }
4505
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004506 /** Return the user id of the last resumed activity. */
4507 @Override
4508 public @UserIdInt
4509 int getLastResumedActivityUserId() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004510 mAmInternal.enforceCallingPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004511 Manifest.permission.INTERACT_ACROSS_USERS_FULL, "getLastResumedActivityUserId()");
4512 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07004513 if (mLastResumedActivity == null) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004514 return getCurrentUserId();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004515 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004516 return mLastResumedActivity.mUserId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004517 }
4518 }
4519
4520 @Override
4521 public void updateLockTaskFeatures(int userId, int flags) {
4522 final int callingUid = Binder.getCallingUid();
4523 if (callingUid != 0 && callingUid != SYSTEM_UID) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004524 mAmInternal.enforceCallingPermission(android.Manifest.permission.UPDATE_LOCK_TASK_PACKAGES,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004525 "updateLockTaskFeatures()");
4526 }
4527 synchronized (mGlobalLock) {
4528 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "Allowing features " + userId + ":0x" +
4529 Integer.toHexString(flags));
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07004530 getLockTaskController().updateLockTaskFeatures(userId, flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004531 }
4532 }
4533
4534 @Override
4535 public void setShowWhenLocked(IBinder token, boolean showWhenLocked) {
4536 synchronized (mGlobalLock) {
4537 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4538 if (r == null) {
4539 return;
4540 }
4541 final long origId = Binder.clearCallingIdentity();
4542 try {
4543 r.setShowWhenLocked(showWhenLocked);
4544 } finally {
4545 Binder.restoreCallingIdentity(origId);
4546 }
4547 }
4548 }
4549
4550 @Override
Issei Suzuki74e1eb22018-12-20 17:42:52 +01004551 public void setInheritShowWhenLocked(IBinder token, boolean inheritShowWhenLocked) {
4552 synchronized (mGlobalLock) {
4553 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4554 if (r == null) {
4555 return;
4556 }
4557 final long origId = Binder.clearCallingIdentity();
4558 try {
4559 r.setInheritShowWhenLocked(inheritShowWhenLocked);
4560 } finally {
4561 Binder.restoreCallingIdentity(origId);
4562 }
4563 }
4564 }
4565
4566 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004567 public void setTurnScreenOn(IBinder token, boolean turnScreenOn) {
4568 synchronized (mGlobalLock) {
4569 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4570 if (r == null) {
4571 return;
4572 }
4573 final long origId = Binder.clearCallingIdentity();
4574 try {
4575 r.setTurnScreenOn(turnScreenOn);
4576 } finally {
4577 Binder.restoreCallingIdentity(origId);
4578 }
4579 }
4580 }
4581
4582 @Override
4583 public void registerRemoteAnimations(IBinder token, RemoteAnimationDefinition definition) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004584 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004585 "registerRemoteAnimations");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004586 definition.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004587 synchronized (mGlobalLock) {
4588 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4589 if (r == null) {
4590 return;
4591 }
4592 final long origId = Binder.clearCallingIdentity();
4593 try {
4594 r.registerRemoteAnimations(definition);
4595 } finally {
4596 Binder.restoreCallingIdentity(origId);
4597 }
4598 }
4599 }
4600
4601 @Override
Winson Chung10fc25d2019-12-10 14:13:56 -08004602 public void unregisterRemoteAnimations(IBinder token) {
4603 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
4604 "unregisterRemoteAnimations");
4605 synchronized (mGlobalLock) {
4606 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4607 if (r == null) {
4608 return;
4609 }
4610 final long origId = Binder.clearCallingIdentity();
4611 try {
4612 r.unregisterRemoteAnimations();
4613 } finally {
4614 Binder.restoreCallingIdentity(origId);
4615 }
4616 }
4617 }
4618
4619 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004620 public void registerRemoteAnimationForNextActivityStart(String packageName,
4621 RemoteAnimationAdapter adapter) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004622 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004623 "registerRemoteAnimationForNextActivityStart");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004624 adapter.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004625 synchronized (mGlobalLock) {
4626 final long origId = Binder.clearCallingIdentity();
4627 try {
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07004628 getActivityStartController().registerRemoteAnimationForNextActivityStart(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004629 packageName, adapter);
4630 } finally {
4631 Binder.restoreCallingIdentity(origId);
4632 }
4633 }
4634 }
4635
Evan Rosky966759f2019-01-15 10:33:58 -08004636 @Override
4637 public void registerRemoteAnimationsForDisplay(int displayId,
4638 RemoteAnimationDefinition definition) {
4639 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
4640 "registerRemoteAnimations");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004641 definition.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Evan Rosky966759f2019-01-15 10:33:58 -08004642 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004643 final DisplayContent display = mRootWindowContainer.getDisplayContent(displayId);
Evan Rosky966759f2019-01-15 10:33:58 -08004644 if (display == null) {
4645 Slog.e(TAG, "Couldn't find display with id: " + displayId);
4646 return;
4647 }
4648 final long origId = Binder.clearCallingIdentity();
4649 try {
4650 display.mDisplayContent.registerRemoteAnimations(definition);
4651 } finally {
4652 Binder.restoreCallingIdentity(origId);
4653 }
4654 }
4655 }
4656
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004657 /** @see android.app.ActivityManager#alwaysShowUnsupportedCompileSdkWarning */
4658 @Override
4659 public void alwaysShowUnsupportedCompileSdkWarning(ComponentName activity) {
4660 synchronized (mGlobalLock) {
4661 final long origId = Binder.clearCallingIdentity();
4662 try {
Wale Ogunwale008163e2018-07-23 23:11:08 -07004663 mAppWarnings.alwaysShowUnsupportedCompileSdkWarning(activity);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004664 } finally {
4665 Binder.restoreCallingIdentity(origId);
4666 }
4667 }
4668 }
Wale Ogunwale6767eae2018-05-03 15:52:51 -07004669
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004670 @Override
4671 public void setVrThread(int tid) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004672 enforceSystemHasVrFeature();
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004673 synchronized (mGlobalLock) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004674 final int pid = Binder.getCallingPid();
Michal Karpinski2e0aad22019-04-12 16:22:55 +01004675 final WindowProcessController wpc = mProcessMap.getProcess(pid);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004676 mVrController.setVrThreadLocked(tid, pid, wpc);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004677 }
4678 }
4679
4680 @Override
4681 public void setPersistentVrThread(int tid) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004682 if (checkCallingPermission(Manifest.permission.RESTRICTED_VR_ACCESS)
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004683 != PERMISSION_GRANTED) {
4684 final String msg = "Permission Denial: setPersistentVrThread() from pid="
4685 + Binder.getCallingPid()
4686 + ", uid=" + Binder.getCallingUid()
4687 + " requires " + Manifest.permission.RESTRICTED_VR_ACCESS;
4688 Slog.w(TAG, msg);
4689 throw new SecurityException(msg);
4690 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004691 enforceSystemHasVrFeature();
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004692 synchronized (mGlobalLock) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004693 final int pid = Binder.getCallingPid();
Michal Karpinski2e0aad22019-04-12 16:22:55 +01004694 final WindowProcessController proc = mProcessMap.getProcess(pid);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004695 mVrController.setPersistentVrThreadLocked(tid, pid, proc);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004696 }
4697 }
4698
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004699 @Override
4700 public void stopAppSwitches() {
4701 enforceCallerIsRecentsOrHasPermission(STOP_APP_SWITCHES, "stopAppSwitches");
4702 synchronized (mGlobalLock) {
4703 mAppSwitchesAllowedTime = SystemClock.uptimeMillis() + APP_SWITCH_DELAY_TIME;
Ricky Wai906af482019-06-03 17:25:28 +01004704 mLastStopAppSwitchesTime = SystemClock.uptimeMillis();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004705 mDidAppSwitch = false;
4706 getActivityStartController().schedulePendingActivityLaunches(APP_SWITCH_DELAY_TIME);
4707 }
4708 }
4709
4710 @Override
4711 public void resumeAppSwitches() {
4712 enforceCallerIsRecentsOrHasPermission(STOP_APP_SWITCHES, "resumeAppSwitches");
4713 synchronized (mGlobalLock) {
4714 // Note that we don't execute any pending app switches... we will
4715 // let those wait until either the timeout, or the next start
4716 // activity request.
4717 mAppSwitchesAllowedTime = 0;
4718 }
4719 }
4720
Ricky Wai906af482019-06-03 17:25:28 +01004721 long getLastStopAppSwitchesTime() {
4722 return mLastStopAppSwitchesTime;
4723 }
4724
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004725 void onStartActivitySetDidAppSwitch() {
4726 if (mDidAppSwitch) {
4727 // This is the second allowed switch since we stopped switches, so now just generally
4728 // allow switches. Use case:
4729 // - user presses home (switches disabled, switch to home, mDidAppSwitch now true);
4730 // - user taps a home icon (coming from home so allowed, we hit here and now allow
4731 // anyone to switch again).
4732 mAppSwitchesAllowedTime = 0;
4733 } else {
4734 mDidAppSwitch = true;
4735 }
4736 }
4737
4738 /** @return whether the system should disable UI modes incompatible with VR mode. */
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004739 boolean shouldDisableNonVrUiLocked() {
4740 return mVrController.shouldDisableNonVrUiLocked();
4741 }
4742
Wale Ogunwale53783742018-09-16 10:21:51 -07004743 private void applyUpdateVrModeLocked(ActivityRecord r) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004744 // 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 +00004745 // itself, but isn't on the main display, then move it there before enabling VR Mode.
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004746 if (r.requestedVrComponent != null && r.getDisplayId() != DEFAULT_DISPLAY) {
Wale Ogunwaleb8e6b632019-06-28 15:19:25 +00004747 Slog.i(TAG, "Moving " + r.shortComponentName + " from display " + r.getDisplayId()
4748 + " to main display for VR");
Louis Chang149d5c82019-12-30 09:47:39 +08004749 mRootWindowContainer.moveStackToDisplay(
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004750 r.getRootTaskId(), DEFAULT_DISPLAY, true /* toTop */);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004751 }
4752 mH.post(() -> {
4753 if (!mVrController.onVrModeChanged(r)) {
4754 return;
4755 }
4756 synchronized (mGlobalLock) {
4757 final boolean disableNonVrUi = mVrController.shouldDisableNonVrUiLocked();
4758 mWindowManager.disableNonVrUi(disableNonVrUi);
4759 if (disableNonVrUi) {
4760 // If we are in a VR mode where Picture-in-Picture mode is unsupported,
4761 // then remove the pinned stack.
Louis Chang149d5c82019-12-30 09:47:39 +08004762 mRootWindowContainer.removeStacksInWindowingModes(WINDOWING_MODE_PINNED);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004763 }
4764 }
4765 });
4766 }
4767
Wale Ogunwale53783742018-09-16 10:21:51 -07004768 @Override
4769 public int getPackageScreenCompatMode(String packageName) {
4770 enforceNotIsolatedCaller("getPackageScreenCompatMode");
4771 synchronized (mGlobalLock) {
4772 return mCompatModePackages.getPackageScreenCompatModeLocked(packageName);
4773 }
4774 }
4775
4776 @Override
4777 public void setPackageScreenCompatMode(String packageName, int mode) {
4778 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
4779 "setPackageScreenCompatMode");
4780 synchronized (mGlobalLock) {
4781 mCompatModePackages.setPackageScreenCompatModeLocked(packageName, mode);
4782 }
4783 }
4784
4785 @Override
4786 public boolean getPackageAskScreenCompat(String packageName) {
4787 enforceNotIsolatedCaller("getPackageAskScreenCompat");
4788 synchronized (mGlobalLock) {
4789 return mCompatModePackages.getPackageAskCompatModeLocked(packageName);
4790 }
4791 }
4792
4793 @Override
4794 public void setPackageAskScreenCompat(String packageName, boolean ask) {
4795 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
4796 "setPackageAskScreenCompat");
4797 synchronized (mGlobalLock) {
4798 mCompatModePackages.setPackageAskCompatModeLocked(packageName, ask);
4799 }
4800 }
4801
Wale Ogunwale64258362018-10-16 15:13:37 -07004802 public static String relaunchReasonToString(int relaunchReason) {
4803 switch (relaunchReason) {
4804 case RELAUNCH_REASON_WINDOWING_MODE_RESIZE:
4805 return "window_resize";
4806 case RELAUNCH_REASON_FREE_RESIZE:
4807 return "free_resize";
4808 default:
4809 return null;
4810 }
4811 }
4812
Andrii Kulian5f750bc2018-07-17 08:57:23 -07004813 ActivityStack getTopDisplayFocusedStack() {
Louis Chang149d5c82019-12-30 09:47:39 +08004814 return mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004815 }
4816
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004817 /** Pokes the task persister. */
Louis Changcdec0802019-11-11 11:45:07 +08004818 void notifyTaskPersisterLocked(Task task, boolean flush) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004819 mRecentTasks.notifyTaskPersisterLocked(task, flush);
4820 }
4821
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004822 boolean isKeyguardLocked() {
4823 return mKeyguardController.isKeyguardLocked();
4824 }
4825
Garfield Tan01548632018-11-27 10:15:48 -08004826 /**
4827 * Clears launch params for the given package.
4828 * @param packageNames the names of the packages of which the launch params are to be cleared
4829 */
4830 @Override
4831 public void clearLaunchParamsForPackages(List<String> packageNames) {
4832 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4833 "clearLaunchParamsForPackages");
4834 synchronized (mGlobalLock) {
4835 for (int i = 0; i < packageNames.size(); ++i) {
4836 mStackSupervisor.mLaunchParamsPersister.removeRecordForPackage(packageNames.get(i));
4837 }
4838 }
4839 }
4840
Wale Ogunwale9e737db2018-12-17 15:42:37 -08004841 /**
4842 * Makes the display with the given id a single task instance display. I.e the display can only
4843 * contain one task.
4844 */
4845 @Override
4846 public void setDisplayToSingleTaskInstance(int displayId) {
4847 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4848 "setDisplayToSingleTaskInstance");
4849 final long origId = Binder.clearCallingIdentity();
4850 try {
Louis Chang677921f2019-12-06 16:44:24 +08004851 final DisplayContent display =
Louis Chang149d5c82019-12-30 09:47:39 +08004852 mRootWindowContainer.getDisplayContentOrCreate(displayId);
Wale Ogunwale9e737db2018-12-17 15:42:37 -08004853 if (display != null) {
4854 display.setDisplayToSingleTaskInstance();
4855 }
4856 } finally {
4857 Binder.restoreCallingIdentity(origId);
4858 }
4859 }
4860
jorgegil@google.com06bc3232019-10-31 14:51:22 -07004861 /**
4862 * Requests that an activity should enter picture-in-picture mode if possible.
4863 */
4864 @Override
4865 public void requestPictureInPictureMode(IBinder token) throws RemoteException {
4866 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4867 "requestPictureInPictureMode");
4868 final long origId = Binder.clearCallingIdentity();
4869 try {
4870 synchronized (mGlobalLock) {
4871 final ActivityRecord activity = ActivityRecord.forTokenLocked(token);
4872 if (activity == null) {
4873 return;
4874 }
4875
jorgegil@google.com2e9cf022020-06-04 14:58:24 -07004876 if (isInPictureInPictureMode(activity)) {
4877 throw new IllegalStateException("Activity is already in PIP mode");
4878 }
4879
jorgegil@google.com06bc3232019-10-31 14:51:22 -07004880 final boolean canEnterPictureInPicture = activity.checkEnterPictureInPictureState(
4881 "requestPictureInPictureMode", /* beforeStopping */ false);
4882 if (!canEnterPictureInPicture) {
4883 throw new IllegalStateException(
4884 "Requested PIP on an activity that doesn't support it");
4885 }
4886
4887 try {
4888 final ClientTransaction transaction = ClientTransaction.obtain(
4889 activity.app.getThread(),
4890 activity.token);
4891 transaction.addCallback(EnterPipRequestedItem.obtain());
4892 getLifecycleManager().scheduleTransaction(transaction);
4893 } catch (Exception e) {
4894 Slog.w(TAG, "Failed to send enter pip requested item: "
4895 + activity.intent.getComponent(), e);
4896 }
4897 }
4898 } finally {
4899 Binder.restoreCallingIdentity(origId);
4900 }
4901 }
4902
Wale Ogunwale31913b52018-10-13 08:29:31 -07004903 void dumpLastANRLocked(PrintWriter pw) {
4904 pw.println("ACTIVITY MANAGER LAST ANR (dumpsys activity lastanr)");
4905 if (mLastANRState == null) {
4906 pw.println(" <no ANR has occurred since boot>");
4907 } else {
4908 pw.println(mLastANRState);
4909 }
4910 }
4911
4912 void dumpLastANRTracesLocked(PrintWriter pw) {
4913 pw.println("ACTIVITY MANAGER LAST ANR TRACES (dumpsys activity lastanr-traces)");
4914
4915 final File[] files = new File(ANR_TRACE_DIR).listFiles();
4916 if (ArrayUtils.isEmpty(files)) {
4917 pw.println(" <no ANR has occurred since boot>");
4918 return;
4919 }
4920 // Find the latest file.
4921 File latest = null;
4922 for (File f : files) {
4923 if ((latest == null) || (latest.lastModified() < f.lastModified())) {
4924 latest = f;
Wale Ogunwalef6733932018-06-27 05:14:34 -07004925 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07004926 }
4927 pw.print("File: ");
4928 pw.print(latest.getName());
4929 pw.println();
4930 try (BufferedReader in = new BufferedReader(new FileReader(latest))) {
4931 String line;
4932 while ((line = in.readLine()) != null) {
4933 pw.println(line);
4934 }
4935 } catch (IOException e) {
4936 pw.print("Unable to read: ");
4937 pw.print(e);
4938 pw.println();
4939 }
4940 }
4941
4942 void dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
4943 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage) {
4944 dumpActivitiesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage,
4945 "ACTIVITY MANAGER ACTIVITIES (dumpsys activity activities)");
4946 }
4947
4948 void dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
4949 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage, String header) {
4950 pw.println(header);
4951
Louis Chang149d5c82019-12-30 09:47:39 +08004952 boolean printedAnything = mRootWindowContainer.dumpActivities(fd, pw, dumpAll, dumpClient,
Wale Ogunwale31913b52018-10-13 08:29:31 -07004953 dumpPackage);
4954 boolean needSep = printedAnything;
4955
4956 boolean printed = ActivityStackSupervisor.printThisActivity(pw,
Louis Chang149d5c82019-12-30 09:47:39 +08004957 mRootWindowContainer.getTopResumedActivity(), dumpPackage, needSep,
Dianne Hackborn9106f2a2020-04-30 16:23:20 -07004958 " ResumedActivity: ", null);
Wale Ogunwale31913b52018-10-13 08:29:31 -07004959 if (printed) {
4960 printedAnything = true;
4961 needSep = false;
4962 }
4963
4964 if (dumpPackage == null) {
4965 if (needSep) {
4966 pw.println();
4967 }
4968 printedAnything = true;
4969 mStackSupervisor.dump(pw, " ");
Winson Chung268eccb2020-03-26 13:43:44 -07004970 mTaskOrganizerController.dump(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07004971 }
4972
4973 if (!printedAnything) {
4974 pw.println(" (nothing)");
4975 }
4976 }
4977
4978 void dumpActivityContainersLocked(PrintWriter pw) {
Jeff Changde322732019-07-12 12:16:23 +08004979 pw.println("ACTIVITY MANAGER CONTAINERS (dumpsys activity containers)");
Louis Chang149d5c82019-12-30 09:47:39 +08004980 mRootWindowContainer.dumpChildrenNames(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07004981 pw.println(" ");
4982 }
4983
4984 void dumpActivityStarterLocked(PrintWriter pw, String dumpPackage) {
4985 pw.println("ACTIVITY MANAGER STARTER (dumpsys activity starter)");
4986 getActivityStartController().dump(pw, "", dumpPackage);
4987 }
4988
4989 /**
4990 * There are three things that cmd can be:
4991 * - a flattened component name that matches an existing activity
4992 * - the cmd arg isn't the flattened component name of an existing activity:
4993 * dump all activity whose component contains the cmd as a substring
4994 * - A hex number of the ActivityRecord object instance.
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08004995 * <p>
4996 * The caller should not hold lock when calling this method because it will wait for the
4997 * activities to complete the dump.
Wale Ogunwale31913b52018-10-13 08:29:31 -07004998 *
4999 * @param dumpVisibleStacksOnly dump activity with {@param name} only if in a visible stack
5000 * @param dumpFocusedStackOnly dump activity with {@param name} only if in the focused stack
5001 */
5002 protected boolean dumpActivity(FileDescriptor fd, PrintWriter pw, String name, String[] args,
5003 int opti, boolean dumpAll, boolean dumpVisibleStacksOnly, boolean dumpFocusedStackOnly) {
5004 ArrayList<ActivityRecord> activities;
5005
5006 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08005007 activities = mRootWindowContainer.getDumpActivities(name, dumpVisibleStacksOnly,
Wale Ogunwale31913b52018-10-13 08:29:31 -07005008 dumpFocusedStackOnly);
5009 }
5010
5011 if (activities.size() <= 0) {
5012 return false;
5013 }
5014
5015 String[] newArgs = new String[args.length - opti];
5016 System.arraycopy(args, opti, newArgs, 0, args.length - opti);
5017
Louis Changcdec0802019-11-11 11:45:07 +08005018 Task lastTask = null;
Wale Ogunwale31913b52018-10-13 08:29:31 -07005019 boolean needSep = false;
5020 for (int i = activities.size() - 1; i >= 0; i--) {
5021 ActivityRecord r = activities.get(i);
5022 if (needSep) {
5023 pw.println();
5024 }
5025 needSep = true;
5026 synchronized (mGlobalLock) {
Louis Changcdec0802019-11-11 11:45:07 +08005027 final Task task = r.getTask();
Wale Ogunwale31913b52018-10-13 08:29:31 -07005028 if (lastTask != task) {
5029 lastTask = task;
5030 pw.print("TASK "); pw.print(lastTask.affinity);
Wale Ogunwale4e79a1c2019-10-05 20:52:40 -07005031 pw.print(" id="); pw.print(lastTask.mTaskId);
5032 pw.print(" userId="); pw.println(lastTask.mUserId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005033 if (dumpAll) {
5034 lastTask.dump(pw, " ");
5035 }
5036 }
5037 }
5038 dumpActivity(" ", fd, pw, activities.get(i), newArgs, dumpAll);
5039 }
5040 return true;
5041 }
5042
5043 /**
5044 * Invokes IApplicationThread.dumpActivity() on the thread of the specified activity if
5045 * there is a thread associated with the activity.
5046 */
5047 private void dumpActivity(String prefix, FileDescriptor fd, PrintWriter pw,
5048 final ActivityRecord r, String[] args, boolean dumpAll) {
5049 String innerPrefix = prefix + " ";
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005050 IApplicationThread appThread = null;
Wale Ogunwale31913b52018-10-13 08:29:31 -07005051 synchronized (mGlobalLock) {
5052 pw.print(prefix); pw.print("ACTIVITY "); pw.print(r.shortComponentName);
5053 pw.print(" "); pw.print(Integer.toHexString(System.identityHashCode(r)));
5054 pw.print(" pid=");
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005055 if (r.hasProcess()) {
5056 pw.println(r.app.getPid());
5057 appThread = r.app.getThread();
5058 } else {
5059 pw.println("(not running)");
5060 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07005061 if (dumpAll) {
Garfield Tane8d84ab2019-10-11 09:49:40 -07005062 r.dump(pw, innerPrefix, true /* dumpAll */);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005063 }
5064 }
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005065 if (appThread != null) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07005066 // flush anything that is already in the PrintWriter since the thread is going
5067 // to write to the file descriptor directly
5068 pw.flush();
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005069 try (TransferPipe tp = new TransferPipe()) {
5070 appThread.dumpActivity(tp.getWriteFd(), r.appToken, innerPrefix, args);
5071 tp.go(fd);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005072 } catch (IOException e) {
5073 pw.println(innerPrefix + "Failure while dumping the activity: " + e);
5074 } catch (RemoteException e) {
5075 pw.println(innerPrefix + "Got a RemoteException while dumping the activity");
5076 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07005077 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07005078 }
5079
sanryhuang498e77e2018-12-06 14:57:01 +08005080 private void writeSleepStateToProto(ProtoOutputStream proto, int wakeFullness,
5081 boolean testPssMode) {
5082 final long sleepToken = proto.start(ActivityManagerServiceDumpProcessesProto.SLEEP_STATUS);
5083 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.WAKEFULNESS,
5084 PowerManagerInternal.wakefulnessToProtoEnum(wakeFullness));
Louis Chang149d5c82019-12-30 09:47:39 +08005085 for (ActivityTaskManagerInternal.SleepToken st : mRootWindowContainer.mSleepTokens) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07005086 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SLEEP_TOKENS,
5087 st.toString());
5088 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07005089 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SLEEPING, mSleeping);
5090 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SHUTTING_DOWN,
5091 mShuttingDown);
sanryhuang498e77e2018-12-06 14:57:01 +08005092 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.TEST_PSS_MODE,
5093 testPssMode);
5094 proto.end(sleepToken);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07005095 }
5096
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005097 int getCurrentUserId() {
5098 return mAmInternal.getCurrentUserId();
5099 }
5100
5101 private void enforceNotIsolatedCaller(String caller) {
5102 if (UserHandle.isIsolated(Binder.getCallingUid())) {
5103 throw new SecurityException("Isolated process not allowed to call " + caller);
5104 }
5105 }
5106
Wale Ogunwalef6733932018-06-27 05:14:34 -07005107 public Configuration getConfiguration() {
5108 Configuration ci;
5109 synchronized(mGlobalLock) {
Yunfan Chen75157d72018-07-27 14:47:21 +09005110 ci = new Configuration(getGlobalConfigurationForCallingPid());
Wale Ogunwalef6733932018-06-27 05:14:34 -07005111 ci.userSetLocale = false;
5112 }
5113 return ci;
5114 }
5115
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005116 /**
5117 * Current global configuration information. Contains general settings for the entire system,
5118 * also corresponds to the merged configuration of the default display.
5119 */
5120 Configuration getGlobalConfiguration() {
Louis Chang149d5c82019-12-30 09:47:39 +08005121 // Return default configuration before mRootWindowContainer initialized, which happens
Louis Chang3ff72a82019-12-17 12:12:59 +08005122 // while initializing process record for system, see {@link
5123 // ActivityManagerService#setSystemProcess}.
Louis Chang149d5c82019-12-30 09:47:39 +08005124 return mRootWindowContainer != null ? mRootWindowContainer.getConfiguration()
Louis Chang3ff72a82019-12-17 12:12:59 +08005125 : new Configuration();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005126 }
5127
5128 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5129 boolean initLocale) {
5130 return updateConfigurationLocked(values, starting, initLocale, false /* deferResume */);
5131 }
5132
5133 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5134 boolean initLocale, boolean deferResume) {
5135 // pass UserHandle.USER_NULL as userId because we don't persist configuration for any user
5136 return updateConfigurationLocked(values, starting, initLocale, false /* persistent */,
5137 UserHandle.USER_NULL, deferResume);
5138 }
5139
Wale Ogunwale59507092018-10-29 09:00:30 -07005140 public void updatePersistentConfiguration(Configuration values, @UserIdInt int userId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005141 final long origId = Binder.clearCallingIdentity();
5142 try {
5143 synchronized (mGlobalLock) {
5144 updateConfigurationLocked(values, null, false, true, userId,
5145 false /* deferResume */);
5146 }
5147 } finally {
5148 Binder.restoreCallingIdentity(origId);
5149 }
5150 }
5151
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005152 private boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5153 boolean initLocale, boolean persistent, int userId, boolean deferResume) {
5154 return updateConfigurationLocked(values, starting, initLocale, persistent, userId,
5155 deferResume, null /* result */);
5156 }
5157
5158 /**
5159 * Do either or both things: (1) change the current configuration, and (2)
5160 * make sure the given activity is running with the (now) current
5161 * configuration. Returns true if the activity has been left running, or
5162 * false if <var>starting</var> is being destroyed to match the new
5163 * configuration.
5164 *
5165 * @param userId is only used when persistent parameter is set to true to persist configuration
5166 * for that particular user
5167 */
5168 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5169 boolean initLocale, boolean persistent, int userId, boolean deferResume,
5170 ActivityTaskManagerService.UpdateConfigurationResult result) {
5171 int changes = 0;
5172 boolean kept = true;
5173
Riddle Hsua0022cd2019-09-09 21:12:41 +08005174 deferWindowLayout();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005175 try {
5176 if (values != null) {
5177 changes = updateGlobalConfigurationLocked(values, initLocale, persistent, userId,
5178 deferResume);
5179 }
5180
5181 kept = ensureConfigAndVisibilityAfterUpdate(starting, changes);
5182 } finally {
Riddle Hsua0022cd2019-09-09 21:12:41 +08005183 continueWindowLayout();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005184 }
5185
5186 if (result != null) {
5187 result.changes = changes;
5188 result.activityRelaunched = !kept;
5189 }
5190 return kept;
5191 }
5192
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005193 /** Update default (global) configuration and notify listeners about changes. */
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005194 int updateGlobalConfigurationLocked(@NonNull Configuration values, boolean initLocale,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005195 boolean persistent, int userId, boolean deferResume) {
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005196
Louis Chang677921f2019-12-06 16:44:24 +08005197 final DisplayContent defaultDisplay =
Louis Chang149d5c82019-12-30 09:47:39 +08005198 mRootWindowContainer.getDisplayContent(DEFAULT_DISPLAY);
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005199
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005200 mTempConfig.setTo(getGlobalConfiguration());
5201 final int changes = mTempConfig.updateFrom(values);
5202 if (changes == 0) {
5203 // Since calling to Activity.setRequestedOrientation leads to freezing the window with
5204 // setting WindowManagerService.mWaitingForConfig to true, it is important that we call
5205 // performDisplayOverrideConfigUpdate in order to send the new display configuration
5206 // (even if there are no actual changes) to unfreeze the window.
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005207 defaultDisplay.performDisplayOverrideConfigUpdate(values, deferResume);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005208 return 0;
5209 }
5210
5211 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.i(TAG_CONFIGURATION,
5212 "Updating global configuration to: " + values);
Jeff Changd136e772019-11-05 20:33:52 +08005213 writeConfigurationChanged(changes);
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005214 FrameworkStatsLog.write(FrameworkStatsLog.RESOURCE_CONFIGURATION_CHANGED,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005215 values.colorMode,
5216 values.densityDpi,
5217 values.fontScale,
5218 values.hardKeyboardHidden,
5219 values.keyboard,
5220 values.keyboardHidden,
5221 values.mcc,
5222 values.mnc,
5223 values.navigation,
5224 values.navigationHidden,
5225 values.orientation,
5226 values.screenHeightDp,
5227 values.screenLayout,
5228 values.screenWidthDp,
5229 values.smallestScreenWidthDp,
5230 values.touchscreen,
5231 values.uiMode);
5232
5233
5234 if (!initLocale && !values.getLocales().isEmpty() && values.userSetLocale) {
5235 final LocaleList locales = values.getLocales();
5236 int bestLocaleIndex = 0;
5237 if (locales.size() > 1) {
5238 if (mSupportedSystemLocales == null) {
5239 mSupportedSystemLocales = Resources.getSystem().getAssets().getLocales();
5240 }
5241 bestLocaleIndex = Math.max(0, locales.getFirstMatchIndex(mSupportedSystemLocales));
5242 }
5243 SystemProperties.set("persist.sys.locale",
5244 locales.get(bestLocaleIndex).toLanguageTag());
5245 LocaleList.setDefault(locales, bestLocaleIndex);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005246
5247 final Message m = PooledLambda.obtainMessage(
5248 ActivityTaskManagerService::sendLocaleToMountDaemonMsg, this,
5249 locales.get(bestLocaleIndex));
5250 mH.sendMessage(m);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005251 }
5252
Yunfan Chen75157d72018-07-27 14:47:21 +09005253 mTempConfig.seq = increaseConfigurationSeqLocked();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005254
5255 // Update stored global config and notify everyone about the change.
Louis Chang149d5c82019-12-30 09:47:39 +08005256 mRootWindowContainer.onConfigurationChanged(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005257
5258 Slog.i(TAG, "Config changes=" + Integer.toHexString(changes) + " " + mTempConfig);
5259 // TODO(multi-display): Update UsageEvents#Event to include displayId.
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005260 mUsageStatsInternal.reportConfigurationChange(mTempConfig, mAmInternal.getCurrentUserId());
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005261
5262 // TODO: If our config changes, should we auto dismiss any currently showing dialogs?
Wale Ogunwalef6733932018-06-27 05:14:34 -07005263 updateShouldShowDialogsLocked(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005264
5265 AttributeCache ac = AttributeCache.instance();
5266 if (ac != null) {
5267 ac.updateConfiguration(mTempConfig);
5268 }
5269
5270 // Make sure all resources in our process are updated right now, so that anyone who is going
5271 // to retrieve resource values after we return will be sure to get the new ones. This is
5272 // especially important during boot, where the first config change needs to guarantee all
5273 // resources have that config before following boot code is executed.
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005274 mSystemThread.applyConfigurationToResources(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005275
5276 // We need another copy of global config because we're scheduling some calls instead of
5277 // running them in place. We need to be sure that object we send will be handled unchanged.
5278 final Configuration configCopy = new Configuration(mTempConfig);
5279 if (persistent && Settings.System.hasInterestingConfigurationChanges(changes)) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005280 final Message msg = PooledLambda.obtainMessage(
5281 ActivityTaskManagerService::sendPutConfigurationForUserMsg,
5282 this, userId, configCopy);
5283 mH.sendMessage(msg);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005284 }
5285
Michal Karpinski2e0aad22019-04-12 16:22:55 +01005286 SparseArray<WindowProcessController> pidMap = mProcessMap.getPidMap();
5287 for (int i = pidMap.size() - 1; i >= 0; i--) {
5288 final int pid = pidMap.keyAt(i);
5289 final WindowProcessController app = pidMap.get(pid);
Yunfan Chen34fcc7a2018-10-11 16:26:09 -07005290 if (DEBUG_CONFIGURATION) {
5291 Slog.v(TAG_CONFIGURATION, "Update process config of "
5292 + app.mName + " to new config " + configCopy);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005293 }
Yunfan Chen34fcc7a2018-10-11 16:26:09 -07005294 app.onConfigurationChanged(configCopy);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005295 }
5296
Wale Ogunwale2ea36d42018-10-18 10:27:31 -07005297 final Message msg = PooledLambda.obtainMessage(
5298 ActivityManagerInternal::broadcastGlobalConfigurationChanged,
5299 mAmInternal, changes, initLocale);
5300 mH.sendMessage(msg);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005301
5302 // Override configuration of the default display duplicates global config, so we need to
5303 // update it also. This will also notify WindowManager about changes.
Louis Chang149d5c82019-12-30 09:47:39 +08005304 defaultDisplay.performDisplayOverrideConfigUpdate(mRootWindowContainer.getConfiguration(),
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005305 deferResume);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005306
5307 return changes;
5308 }
5309
Riddle Hsua0022cd2019-09-09 21:12:41 +08005310 /** @see WindowSurfacePlacer#deferLayout */
5311 void deferWindowLayout() {
5312 if (!mWindowManager.mWindowPlacerLocked.isLayoutDeferred()) {
5313 // Reset the reasons at the first entrance because we only care about the changes in the
5314 // deferred scope.
5315 mLayoutReasons = 0;
5316 }
5317
5318 mWindowManager.mWindowPlacerLocked.deferLayout();
5319 }
5320
5321 /** @see WindowSurfacePlacer#continueLayout */
5322 void continueWindowLayout() {
5323 mWindowManager.mWindowPlacerLocked.continueLayout(mLayoutReasons != 0);
5324 if (DEBUG_ALL && !mWindowManager.mWindowPlacerLocked.isLayoutDeferred()) {
5325 Slog.i(TAG, "continueWindowLayout reason=" + mLayoutReasons);
5326 }
5327 }
5328
5329 /**
5330 * If a reason is added between {@link #deferWindowLayout} and {@link #continueWindowLayout},
5331 * it will make sure {@link WindowSurfacePlacer#performSurfacePlacement} is called when the last
5332 * defer count is gone.
5333 */
5334 void addWindowLayoutReasons(@LayoutReason int reasons) {
5335 mLayoutReasons |= reasons;
5336 }
5337
Wale Ogunwalef6733932018-06-27 05:14:34 -07005338 private void updateEventDispatchingLocked(boolean booted) {
5339 mWindowManager.setEventDispatching(booted && !mShuttingDown);
5340 }
5341
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005342 private void sendPutConfigurationForUserMsg(int userId, Configuration config) {
5343 final ContentResolver resolver = mContext.getContentResolver();
5344 Settings.System.putConfigurationForUser(resolver, config, userId);
5345 }
5346
5347 private void sendLocaleToMountDaemonMsg(Locale l) {
5348 try {
5349 IBinder service = ServiceManager.getService("mount");
5350 IStorageManager storageManager = IStorageManager.Stub.asInterface(service);
5351 Log.d(TAG, "Storing locale " + l.toLanguageTag() + " for decryption UI");
5352 storageManager.setField(StorageManager.SYSTEM_LOCALE_KEY, l.toLanguageTag());
5353 } catch (RemoteException e) {
5354 Log.e(TAG, "Error storing locale for decryption UI", e);
5355 }
5356 }
5357
Alison Cichowlas3e340502018-08-07 17:15:01 -04005358 private void expireStartAsCallerTokenMsg(IBinder permissionToken) {
5359 mStartActivitySources.remove(permissionToken);
5360 mExpiredStartAsCallerTokens.add(permissionToken);
5361 }
5362
5363 private void forgetStartAsCallerTokenMsg(IBinder permissionToken) {
5364 mExpiredStartAsCallerTokens.remove(permissionToken);
5365 }
5366
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005367 boolean isActivityStartsLoggingEnabled() {
5368 return mAmInternal.isActivityStartsLoggingEnabled();
5369 }
5370
Michal Karpinski8596ded2018-11-14 14:43:48 +00005371 boolean isBackgroundActivityStartsEnabled() {
5372 return mAmInternal.isBackgroundActivityStartsEnabled();
5373 }
5374
Wale Ogunwalef6733932018-06-27 05:14:34 -07005375 void enableScreenAfterBoot(boolean booted) {
Jeff Changd136e772019-11-05 20:33:52 +08005376 writeBootProgressEnableScreen(SystemClock.uptimeMillis());
Wale Ogunwalef6733932018-06-27 05:14:34 -07005377 mWindowManager.enableScreenAfterBoot();
5378
5379 synchronized (mGlobalLock) {
5380 updateEventDispatchingLocked(booted);
5381 }
5382 }
5383
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005384 static long getInputDispatchingTimeoutLocked(ActivityRecord r) {
5385 if (r == null || !r.hasProcess()) {
5386 return KEY_DISPATCHING_TIMEOUT_MS;
5387 }
5388 return getInputDispatchingTimeoutLocked(r.app);
5389 }
5390
5391 private static long getInputDispatchingTimeoutLocked(WindowProcessController r) {
Wale Ogunwale51cc98a2018-10-15 10:41:05 -07005392 return r != null ? r.getInputDispatchingTimeout() : KEY_DISPATCHING_TIMEOUT_MS;
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005393 }
5394
Wale Ogunwalef6733932018-06-27 05:14:34 -07005395 /**
5396 * Decide based on the configuration whether we should show the ANR,
5397 * crash, etc dialogs. The idea is that if there is no affordance to
5398 * press the on-screen buttons, or the user experience would be more
5399 * greatly impacted than the crash itself, we shouldn't show the dialog.
5400 *
5401 * A thought: SystemUI might also want to get told about this, the Power
5402 * dialog / global actions also might want different behaviors.
5403 */
5404 private void updateShouldShowDialogsLocked(Configuration config) {
5405 final boolean inputMethodExists = !(config.keyboard == Configuration.KEYBOARD_NOKEYS
5406 && config.touchscreen == Configuration.TOUCHSCREEN_NOTOUCH
5407 && config.navigation == Configuration.NAVIGATION_NONAV);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005408 final boolean hideDialogsSet = Settings.Global.getInt(mContext.getContentResolver(),
5409 HIDE_ERROR_DIALOGS, 0) != 0;
Yuncheol Heo5d9b2712020-04-16 17:31:32 -07005410 mShowDialogs = inputMethodExists
5411 && ActivityTaskManager.currentUiModeSupportsErrorDialogs(mContext)
5412 && !hideDialogsSet;
Wale Ogunwalef6733932018-06-27 05:14:34 -07005413 }
5414
5415 private void updateFontScaleIfNeeded(@UserIdInt int userId) {
5416 final float scaleFactor = Settings.System.getFloatForUser(mContext.getContentResolver(),
5417 FONT_SCALE, 1.0f, userId);
5418
Riddle Hsu8419e4b2019-09-18 23:28:01 +08005419 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07005420 if (getGlobalConfiguration().fontScale == scaleFactor) {
5421 return;
5422 }
5423
5424 final Configuration configuration
5425 = mWindowManager.computeNewConfiguration(DEFAULT_DISPLAY);
5426 configuration.fontScale = scaleFactor;
5427 updatePersistentConfiguration(configuration, userId);
5428 }
5429 }
5430
5431 // Actually is sleeping or shutting down or whatever else in the future
5432 // is an inactive state.
5433 boolean isSleepingOrShuttingDownLocked() {
5434 return isSleepingLocked() || mShuttingDown;
5435 }
5436
5437 boolean isSleepingLocked() {
5438 return mSleeping;
5439 }
5440
Riddle Hsu16567132018-08-16 21:37:47 +08005441 /** Update AMS states when an activity is resumed. */
Wale Ogunwalef6733932018-06-27 05:14:34 -07005442 void setResumedActivityUncheckLocked(ActivityRecord r, String reason) {
Louis Changcdec0802019-11-11 11:45:07 +08005443 final Task task = r.getTask();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005444 if (task.isActivityTypeStandard()) {
5445 if (mCurAppTimeTracker != r.appTimeTracker) {
5446 // We are switching app tracking. Complete the current one.
5447 if (mCurAppTimeTracker != null) {
5448 mCurAppTimeTracker.stop();
5449 mH.obtainMessage(
5450 REPORT_TIME_TRACKER_MSG, mCurAppTimeTracker).sendToTarget();
Louis Chang149d5c82019-12-30 09:47:39 +08005451 mRootWindowContainer.clearOtherAppTimeTrackers(r.appTimeTracker);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005452 mCurAppTimeTracker = null;
5453 }
5454 if (r.appTimeTracker != null) {
5455 mCurAppTimeTracker = r.appTimeTracker;
5456 startTimeTrackingFocusedActivityLocked();
5457 }
5458 } else {
5459 startTimeTrackingFocusedActivityLocked();
5460 }
5461 } else {
5462 r.appTimeTracker = null;
5463 }
5464 // TODO: VI Maybe r.task.voiceInteractor || r.voiceInteractor != null
5465 // TODO: Probably not, because we don't want to resume voice on switching
5466 // back to this activity
5467 if (task.voiceInteractor != null) {
5468 startRunningVoiceLocked(task.voiceSession, r.info.applicationInfo.uid);
5469 } else {
5470 finishRunningVoiceLocked();
5471
5472 if (mLastResumedActivity != null) {
5473 final IVoiceInteractionSession session;
5474
Louis Changcdec0802019-11-11 11:45:07 +08005475 final Task lastResumedActivityTask = mLastResumedActivity.getTask();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005476 if (lastResumedActivityTask != null
5477 && lastResumedActivityTask.voiceSession != null) {
5478 session = lastResumedActivityTask.voiceSession;
5479 } else {
5480 session = mLastResumedActivity.voiceSession;
5481 }
5482
5483 if (session != null) {
5484 // We had been in a voice interaction session, but now focused has
5485 // move to something different. Just finish the session, we can't
5486 // return to it and retain the proper state and synchronization with
5487 // the voice interaction service.
5488 finishVoiceTask(session);
5489 }
5490 }
5491 }
5492
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005493 if (mLastResumedActivity != null && r.mUserId != mLastResumedActivity.mUserId) {
5494 mAmInternal.sendForegroundProfileChanged(r.mUserId);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005495 }
Bogyun Sonbfb64dc2019-12-09 17:50:24 +09005496 final Task prevTask = mLastResumedActivity != null ? mLastResumedActivity.getTask() : null;
5497
Wale Ogunwalef6733932018-06-27 05:14:34 -07005498 updateResumedAppTrace(r);
5499 mLastResumedActivity = r;
5500
Tiger Huang1e5b10a2018-07-30 20:19:51 +08005501 r.getDisplay().setFocusedApp(r, true);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005502
Bogyun Sonbfb64dc2019-12-09 17:50:24 +09005503 if (prevTask == null || task != prevTask) {
5504 if (prevTask != null) {
5505 mTaskChangeNotificationController.notifyTaskFocusChanged(prevTask.mTaskId, false);
5506 }
5507 mTaskChangeNotificationController.notifyTaskFocusChanged(task.mTaskId, true);
5508 }
5509
Wale Ogunwalef6733932018-06-27 05:14:34 -07005510 applyUpdateLockStateLocked(r);
5511 applyUpdateVrModeLocked(r);
5512
Jeff Changd136e772019-11-05 20:33:52 +08005513 EventLogTags.writeWmSetResumedActivity(
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005514 r == null ? -1 : r.mUserId,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005515 r == null ? "NULL" : r.shortComponentName,
5516 reason);
5517 }
5518
5519 ActivityTaskManagerInternal.SleepToken acquireSleepToken(String tag, int displayId) {
5520 synchronized (mGlobalLock) {
Wale Ogunwaled32da472018-11-16 07:19:28 -08005521 final ActivityTaskManagerInternal.SleepToken token =
Louis Chang149d5c82019-12-30 09:47:39 +08005522 mRootWindowContainer.createSleepToken(tag, displayId);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005523 updateSleepIfNeededLocked();
5524 return token;
5525 }
5526 }
5527
5528 void updateSleepIfNeededLocked() {
Louis Chang149d5c82019-12-30 09:47:39 +08005529 final boolean shouldSleep = !mRootWindowContainer.hasAwakeDisplay();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005530 final boolean wasSleeping = mSleeping;
5531 boolean updateOomAdj = false;
5532
5533 if (!shouldSleep) {
5534 // If wasSleeping is true, we need to wake up activity manager state from when
5535 // we started sleeping. In either case, we need to apply the sleep tokens, which
5536 // will wake up stacks or put them to sleep as appropriate.
5537 if (wasSleeping) {
5538 mSleeping = false;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005539 FrameworkStatsLog.write(FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED,
5540 FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED__STATE__AWAKE);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005541 startTimeTrackingFocusedActivityLocked();
5542 mTopProcessState = ActivityManager.PROCESS_STATE_TOP;
Varun Shah98694fb2019-04-11 09:28:27 -07005543 Slog.d(TAG, "Top Process State changed to PROCESS_STATE_TOP");
Wale Ogunwalef6733932018-06-27 05:14:34 -07005544 mStackSupervisor.comeOutOfSleepIfNeededLocked();
5545 }
Louis Chang149d5c82019-12-30 09:47:39 +08005546 mRootWindowContainer.applySleepTokens(true /* applyToStacks */);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005547 if (wasSleeping) {
5548 updateOomAdj = true;
5549 }
5550 } else if (!mSleeping && shouldSleep) {
5551 mSleeping = true;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005552 FrameworkStatsLog.write(FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED,
5553 FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED__STATE__ASLEEP);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005554 if (mCurAppTimeTracker != null) {
5555 mCurAppTimeTracker.stop();
5556 }
5557 mTopProcessState = ActivityManager.PROCESS_STATE_TOP_SLEEPING;
Varun Shah98694fb2019-04-11 09:28:27 -07005558 Slog.d(TAG, "Top Process State changed to PROCESS_STATE_TOP_SLEEPING");
Wale Ogunwalef6733932018-06-27 05:14:34 -07005559 mStackSupervisor.goingToSleepLocked();
5560 updateResumedAppTrace(null /* resumed */);
5561 updateOomAdj = true;
5562 }
5563 if (updateOomAdj) {
wilsonshih8d096d22019-08-01 17:46:14 +08005564 updateOomAdj();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005565 }
5566 }
5567
5568 void updateOomAdj() {
Wale Ogunwalea38654f2019-11-17 20:37:15 -08005569 mH.removeCallbacks(mUpdateOomAdjRunnable);
5570 mH.post(mUpdateOomAdjRunnable);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005571 }
5572
Wale Ogunwale53783742018-09-16 10:21:51 -07005573 void updateCpuStats() {
5574 mH.post(mAmInternal::updateCpuStats);
5575 }
5576
Hui Yu03d12402018-12-06 18:00:37 -08005577 void updateBatteryStats(ActivityRecord component, boolean resumed) {
5578 final Message m = PooledLambda.obtainMessage(ActivityManagerInternal::updateBatteryStats,
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005579 mAmInternal, component.mActivityComponent, component.app.mUid, component.mUserId,
5580 resumed);
Wale Ogunwale53783742018-09-16 10:21:51 -07005581 mH.sendMessage(m);
5582 }
5583
Hui Yu03d12402018-12-06 18:00:37 -08005584 void updateActivityUsageStats(ActivityRecord activity, int event) {
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005585 ComponentName taskRoot = null;
Louis Changcdec0802019-11-11 11:45:07 +08005586 final Task task = activity.getTask();
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005587 if (task != null) {
5588 final ActivityRecord rootActivity = task.getRootActivity();
5589 if (rootActivity != null) {
5590 taskRoot = rootActivity.mActivityComponent;
5591 }
5592 }
5593
Hui Yu03d12402018-12-06 18:00:37 -08005594 final Message m = PooledLambda.obtainMessage(
5595 ActivityManagerInternal::updateActivityUsageStats, mAmInternal,
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005596 activity.mActivityComponent, activity.mUserId, event, activity.appToken, taskRoot);
Hui Yu03d12402018-12-06 18:00:37 -08005597 mH.sendMessage(m);
5598 }
5599
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005600 void startProcessAsync(ActivityRecord activity, boolean knownToBeDead, boolean isTop,
5601 String hostingType) {
5602 try {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005603 if (Trace.isTagEnabled(TRACE_TAG_WINDOW_MANAGER)) {
5604 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "dispatchingStartProcess:"
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005605 + activity.processName);
5606 }
5607 // Post message to start process to avoid possible deadlock of calling into AMS with the
5608 // ATMS lock held.
5609 final Message m = PooledLambda.obtainMessage(ActivityManagerInternal::startProcess,
5610 mAmInternal, activity.processName, activity.info.applicationInfo, knownToBeDead,
5611 isTop, hostingType, activity.intent.getComponent());
5612 mH.sendMessage(m);
5613 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005614 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005615 }
5616 }
5617
Wale Ogunwale53783742018-09-16 10:21:51 -07005618 void setBooting(boolean booting) {
5619 mAmInternal.setBooting(booting);
5620 }
5621
5622 boolean isBooting() {
5623 return mAmInternal.isBooting();
5624 }
5625
5626 void setBooted(boolean booted) {
5627 mAmInternal.setBooted(booted);
5628 }
5629
5630 boolean isBooted() {
5631 return mAmInternal.isBooted();
5632 }
5633
5634 void postFinishBooting(boolean finishBooting, boolean enableScreen) {
5635 mH.post(() -> {
5636 if (finishBooting) {
5637 mAmInternal.finishBooting();
5638 }
5639 if (enableScreen) {
5640 mInternal.enableScreenAfterBoot(isBooted());
5641 }
5642 });
5643 }
5644
5645 void setHeavyWeightProcess(ActivityRecord root) {
5646 mHeavyWeightProcess = root.app;
5647 final Message m = PooledLambda.obtainMessage(
5648 ActivityTaskManagerService::postHeavyWeightProcessNotification, this,
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005649 root.app, root.intent, root.mUserId);
Wale Ogunwale53783742018-09-16 10:21:51 -07005650 mH.sendMessage(m);
5651 }
5652
5653 void clearHeavyWeightProcessIfEquals(WindowProcessController proc) {
5654 if (mHeavyWeightProcess == null || mHeavyWeightProcess != proc) {
5655 return;
5656 }
5657
5658 mHeavyWeightProcess = null;
5659 final Message m = PooledLambda.obtainMessage(
5660 ActivityTaskManagerService::cancelHeavyWeightProcessNotification, this,
5661 proc.mUserId);
5662 mH.sendMessage(m);
5663 }
5664
5665 private void cancelHeavyWeightProcessNotification(int userId) {
5666 final INotificationManager inm = NotificationManager.getService();
5667 if (inm == null) {
5668 return;
5669 }
5670 try {
Julia Reynoldse4a47dd2019-06-07 13:40:59 -04005671 inm.cancelNotificationWithTag("android", "android", null,
Wale Ogunwale53783742018-09-16 10:21:51 -07005672 SystemMessage.NOTE_HEAVY_WEIGHT_NOTIFICATION, userId);
5673 } catch (RuntimeException e) {
5674 Slog.w(TAG, "Error canceling notification for service", e);
5675 } catch (RemoteException e) {
5676 }
5677
5678 }
5679
5680 private void postHeavyWeightProcessNotification(
5681 WindowProcessController proc, Intent intent, int userId) {
5682 if (proc == null) {
5683 return;
5684 }
5685
5686 final INotificationManager inm = NotificationManager.getService();
5687 if (inm == null) {
5688 return;
5689 }
5690
5691 try {
5692 Context context = mContext.createPackageContext(proc.mInfo.packageName, 0);
5693 String text = mContext.getString(R.string.heavy_weight_notification,
5694 context.getApplicationInfo().loadLabel(context.getPackageManager()));
5695 Notification notification =
5696 new Notification.Builder(context,
5697 SystemNotificationChannels.HEAVY_WEIGHT_APP)
5698 .setSmallIcon(com.android.internal.R.drawable.stat_sys_adb)
5699 .setWhen(0)
5700 .setOngoing(true)
5701 .setTicker(text)
5702 .setColor(mContext.getColor(
5703 com.android.internal.R.color.system_notification_accent_color))
5704 .setContentTitle(text)
5705 .setContentText(
5706 mContext.getText(R.string.heavy_weight_notification_detail))
5707 .setContentIntent(PendingIntent.getActivityAsUser(mContext, 0,
5708 intent, PendingIntent.FLAG_CANCEL_CURRENT, null,
5709 new UserHandle(userId)))
5710 .build();
5711 try {
5712 inm.enqueueNotificationWithTag("android", "android", null,
5713 SystemMessage.NOTE_HEAVY_WEIGHT_NOTIFICATION, notification, userId);
5714 } catch (RuntimeException e) {
5715 Slog.w(TAG, "Error showing notification for heavy-weight app", e);
5716 } catch (RemoteException e) {
5717 }
5718 } catch (PackageManager.NameNotFoundException e) {
5719 Slog.w(TAG, "Unable to create context for heavy notification", e);
5720 }
5721
5722 }
5723
Philip P. Moltmannee295092020-02-10 08:46:26 -08005724 IIntentSender getIntentSenderLocked(int type, String packageName, String featureId,
5725 int callingUid, int userId, IBinder token, String resultWho, int requestCode,
5726 Intent[] intents, String[] resolvedTypes, int flags, Bundle bOptions) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07005727
5728 ActivityRecord activity = null;
5729 if (type == ActivityManager.INTENT_SENDER_ACTIVITY_RESULT) {
5730 activity = ActivityRecord.isInStackLocked(token);
5731 if (activity == null) {
5732 Slog.w(TAG, "Failed createPendingResult: activity " + token + " not in any stack");
5733 return null;
5734 }
5735 if (activity.finishing) {
5736 Slog.w(TAG, "Failed createPendingResult: activity " + activity + " is finishing");
5737 return null;
5738 }
5739 }
5740
5741 final PendingIntentRecord rec = mPendingIntentController.getIntentSender(type, packageName,
Philip P. Moltmannee295092020-02-10 08:46:26 -08005742 featureId, callingUid, userId, token, resultWho, requestCode, intents,
5743 resolvedTypes, flags, bOptions);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07005744 final boolean noCreate = (flags & PendingIntent.FLAG_NO_CREATE) != 0;
5745 if (noCreate) {
5746 return rec;
5747 }
5748 if (type == ActivityManager.INTENT_SENDER_ACTIVITY_RESULT) {
5749 if (activity.pendingResults == null) {
5750 activity.pendingResults = new HashSet<>();
5751 }
5752 activity.pendingResults.add(rec.ref);
5753 }
5754 return rec;
5755 }
5756
Andrii Kulian52d255c2018-07-13 11:32:19 -07005757 // TODO(b/111541062): Update app time tracking to make it aware of multiple resumed activities
Wale Ogunwalef6733932018-06-27 05:14:34 -07005758 private void startTimeTrackingFocusedActivityLocked() {
Louis Chang149d5c82019-12-30 09:47:39 +08005759 final ActivityRecord resumedActivity = mRootWindowContainer.getTopResumedActivity();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005760 if (!mSleeping && mCurAppTimeTracker != null && resumedActivity != null) {
5761 mCurAppTimeTracker.start(resumedActivity.packageName);
5762 }
5763 }
5764
5765 private void updateResumedAppTrace(@Nullable ActivityRecord resumed) {
5766 if (mTracedResumedActivity != null) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005767 Trace.asyncTraceEnd(TRACE_TAG_WINDOW_MANAGER,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005768 constructResumedTraceName(mTracedResumedActivity.packageName), 0);
5769 }
5770 if (resumed != null) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005771 Trace.asyncTraceBegin(TRACE_TAG_WINDOW_MANAGER,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005772 constructResumedTraceName(resumed.packageName), 0);
5773 }
5774 mTracedResumedActivity = resumed;
5775 }
5776
5777 private String constructResumedTraceName(String packageName) {
5778 return "focused app: " + packageName;
5779 }
5780
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005781 /** Applies latest configuration and/or visibility updates if needed. */
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005782 boolean ensureConfigAndVisibilityAfterUpdate(ActivityRecord starting, int changes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005783 boolean kept = true;
Louis Chang149d5c82019-12-30 09:47:39 +08005784 final ActivityStack mainStack = mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005785 // mainStack is null during startup.
5786 if (mainStack != null) {
5787 if (changes != 0 && starting == null) {
5788 // If the configuration changed, and the caller is not already
5789 // in the process of starting an activity, then find the top
5790 // activity to check if its configuration needs to change.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09005791 starting = mainStack.topRunningActivity();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005792 }
5793
5794 if (starting != null) {
5795 kept = starting.ensureActivityConfiguration(changes,
5796 false /* preserveWindow */);
5797 // And we need to make sure at this point that all other activities
5798 // are made visible with the correct configuration.
Louis Chang149d5c82019-12-30 09:47:39 +08005799 mRootWindowContainer.ensureActivitiesVisible(starting, changes,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005800 !PRESERVE_WINDOWS);
5801 }
5802 }
5803
5804 return kept;
5805 }
5806
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005807 void scheduleAppGcsLocked() {
5808 mH.post(() -> mAmInternal.scheduleAppGcs());
5809 }
5810
Wale Ogunwale53783742018-09-16 10:21:51 -07005811 CompatibilityInfo compatibilityInfoForPackageLocked(ApplicationInfo ai) {
5812 return mCompatModePackages.compatibilityInfoForPackageLocked(ai);
5813 }
5814
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005815 /**
5816 * Returns the PackageManager. Used by classes hosted by {@link ActivityTaskManagerService}. The
5817 * PackageManager could be unavailable at construction time and therefore needs to be accessed
5818 * on demand.
5819 */
5820 IPackageManager getPackageManager() {
5821 return AppGlobals.getPackageManager();
5822 }
5823
5824 PackageManagerInternal getPackageManagerInternalLocked() {
5825 if (mPmInternal == null) {
5826 mPmInternal = LocalServices.getService(PackageManagerInternal.class);
5827 }
5828 return mPmInternal;
5829 }
5830
Darryl L Johnsona0982222020-02-18 18:21:51 -08005831 ComponentName getSysUiServiceComponentLocked() {
5832 if (mSysUiServiceComponent == null) {
5833 final PackageManagerInternal pm = getPackageManagerInternalLocked();
5834 mSysUiServiceComponent = pm.getSystemUiServiceComponent();
5835 }
5836 return mSysUiServiceComponent;
5837 }
5838
Hai Zhangf4da9be2019-05-01 13:46:06 +08005839 PermissionPolicyInternal getPermissionPolicyInternal() {
5840 if (mPermissionPolicyInternal == null) {
5841 mPermissionPolicyInternal = LocalServices.getService(PermissionPolicyInternal.class);
5842 }
5843 return mPermissionPolicyInternal;
5844 }
5845
Wale Ogunwale008163e2018-07-23 23:11:08 -07005846 AppWarnings getAppWarningsLocked() {
5847 return mAppWarnings;
5848 }
5849
Wale Ogunwale214f3482018-10-04 11:00:47 -07005850 Intent getHomeIntent() {
5851 Intent intent = new Intent(mTopAction, mTopData != null ? Uri.parse(mTopData) : null);
5852 intent.setComponent(mTopComponent);
5853 intent.addFlags(Intent.FLAG_DEBUG_TRIAGED_MISSING);
5854 if (mFactoryTest != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
5855 intent.addCategory(Intent.CATEGORY_HOME);
5856 }
5857 return intent;
5858 }
5859
Chilun2ef71f72018-11-16 17:57:15 +08005860 /**
5861 * Return the intent set with {@link Intent#CATEGORY_SECONDARY_HOME} to resolve secondary home
5862 * activities.
5863 *
Chilun939b05c2020-02-19 14:50:59 +08005864 * @param preferredPackage Specify a preferred package name, otherwise use the package name
5865 * defined in config_secondaryHomePackage.
Chilun2ef71f72018-11-16 17:57:15 +08005866 * @return the intent set with {@link Intent#CATEGORY_SECONDARY_HOME}
5867 */
5868 Intent getSecondaryHomeIntent(String preferredPackage) {
5869 final Intent intent = new Intent(mTopAction, mTopData != null ? Uri.parse(mTopData) : null);
Keun young Park340546a2019-05-06 16:27:44 -07005870 final boolean useSystemProvidedLauncher = mContext.getResources().getBoolean(
5871 com.android.internal.R.bool.config_useSystemProvidedLauncherForSecondary);
5872 if (preferredPackage == null || useSystemProvidedLauncher) {
Chilun939b05c2020-02-19 14:50:59 +08005873 // Using the package name stored in config if no preferred package name or forced.
5874 final String secondaryHomePackage = mContext.getResources().getString(
5875 com.android.internal.R.string.config_secondaryHomePackage);
5876 intent.setPackage(secondaryHomePackage);
Chilun2ef71f72018-11-16 17:57:15 +08005877 } else {
5878 intent.setPackage(preferredPackage);
5879 }
5880 intent.addFlags(Intent.FLAG_DEBUG_TRIAGED_MISSING);
5881 if (mFactoryTest != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
5882 intent.addCategory(Intent.CATEGORY_SECONDARY_HOME);
5883 }
5884 return intent;
5885 }
5886
Wale Ogunwale214f3482018-10-04 11:00:47 -07005887 ApplicationInfo getAppInfoForUser(ApplicationInfo info, int userId) {
5888 if (info == null) return null;
5889 ApplicationInfo newInfo = new ApplicationInfo(info);
5890 newInfo.initForUser(userId);
5891 return newInfo;
5892 }
5893
Wale Ogunwale9c103022018-10-18 07:44:54 -07005894 WindowProcessController getProcessController(String processName, int uid) {
Wale Ogunwale214f3482018-10-04 11:00:47 -07005895 if (uid == SYSTEM_UID) {
5896 // The system gets to run in any process. If there are multiple processes with the same
5897 // uid, just pick the first (this should never happen).
5898 final SparseArray<WindowProcessController> procs =
5899 mProcessNames.getMap().get(processName);
5900 if (procs == null) return null;
5901 final int procCount = procs.size();
5902 for (int i = 0; i < procCount; i++) {
5903 final int procUid = procs.keyAt(i);
5904 if (UserHandle.isApp(procUid) || !UserHandle.isSameUser(procUid, uid)) {
5905 // Don't use an app process or different user process for system component.
5906 continue;
5907 }
5908 return procs.valueAt(i);
5909 }
5910 }
5911
5912 return mProcessNames.get(processName, uid);
5913 }
5914
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005915 WindowProcessController getProcessController(IApplicationThread thread) {
5916 if (thread == null) {
5917 return null;
5918 }
5919
5920 final IBinder threadBinder = thread.asBinder();
5921 final ArrayMap<String, SparseArray<WindowProcessController>> pmap = mProcessNames.getMap();
5922 for (int i = pmap.size()-1; i >= 0; i--) {
5923 final SparseArray<WindowProcessController> procs = pmap.valueAt(i);
5924 for (int j = procs.size() - 1; j >= 0; j--) {
5925 final WindowProcessController proc = procs.valueAt(j);
5926 if (proc.hasThread() && proc.getThread().asBinder() == threadBinder) {
5927 return proc;
5928 }
5929 }
5930 }
5931
5932 return null;
5933 }
5934
Michal Karpinski9cbb20b2019-02-05 17:31:50 +00005935 WindowProcessController getProcessController(int pid, int uid) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01005936 final WindowProcessController proc = mProcessMap.getProcess(pid);
Yunfan Chen8546b212019-04-01 15:34:44 +09005937 if (proc == null) return null;
5938 if (UserHandle.isApp(uid) && proc.mUid == uid) {
5939 return proc;
Michal Karpinski9cbb20b2019-02-05 17:31:50 +00005940 }
5941 return null;
5942 }
5943
Riddle Hsua0536432019-02-16 00:38:59 +08005944 int getUidState(int uid) {
5945 return mActiveUids.getUidState(uid);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07005946 }
5947
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00005948 boolean isUidForeground(int uid) {
Alan Stokeseea8d3e2019-04-10 17:37:25 +01005949 // A uid is considered to be foreground if it has a visible non-toast window.
5950 return mWindowManager.mRoot.isAnyNonToastWindowVisibleForUid(uid);
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00005951 }
5952
Ricky Wai96f5c352019-04-10 18:40:17 +01005953 boolean isDeviceOwner(int uid) {
5954 return uid >= 0 && mDeviceOwnerUid == uid;
Michal Karpinski4026cae2019-02-12 11:51:47 +00005955 }
5956
Ricky Wai96f5c352019-04-10 18:40:17 +01005957 void setDeviceOwnerUid(int uid) {
5958 mDeviceOwnerUid = uid;
Michal Karpinski4026cae2019-02-12 11:51:47 +00005959 }
5960
Wale Ogunwale9de19442018-10-18 19:05:03 -07005961 /**
5962 * @return whitelist tag for a uid from mPendingTempWhitelist, null if not currently on
5963 * the whitelist
5964 */
5965 String getPendingTempWhitelistTagForUidLocked(int uid) {
5966 return mPendingTempWhitelist.get(uid);
5967 }
5968
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07005969 void logAppTooSlow(WindowProcessController app, long startTime, String msg) {
5970 if (true || Build.IS_USER) {
5971 return;
5972 }
5973
5974 StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskReads();
5975 StrictMode.allowThreadDiskWrites();
5976 try {
5977 File tracesDir = new File("/data/anr");
5978 File tracesFile = null;
5979 try {
5980 tracesFile = File.createTempFile("app_slow", null, tracesDir);
5981
5982 StringBuilder sb = new StringBuilder();
Neil Fuller97746812019-08-19 14:20:50 +01005983 String timeString =
5984 TimeMigrationUtils.formatMillisWithFixedFormat(System.currentTimeMillis());
5985 sb.append(timeString);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07005986 sb.append(": ");
5987 TimeUtils.formatDuration(SystemClock.uptimeMillis()-startTime, sb);
5988 sb.append(" since ");
5989 sb.append(msg);
5990 FileOutputStream fos = new FileOutputStream(tracesFile);
5991 fos.write(sb.toString().getBytes());
5992 if (app == null) {
5993 fos.write("\n*** No application process!".getBytes());
5994 }
5995 fos.close();
5996 FileUtils.setPermissions(tracesFile.getPath(), 0666, -1, -1); // -rw-rw-rw-
5997 } catch (IOException e) {
5998 Slog.w(TAG, "Unable to prepare slow app traces file: " + tracesFile, e);
5999 return;
6000 }
6001
6002 if (app != null && app.getPid() > 0) {
6003 ArrayList<Integer> firstPids = new ArrayList<Integer>();
6004 firstPids.add(app.getPid());
6005 dumpStackTraces(tracesFile.getAbsolutePath(), firstPids, null, null);
6006 }
6007
6008 File lastTracesFile = null;
6009 File curTracesFile = null;
6010 for (int i=9; i>=0; i--) {
6011 String name = String.format(Locale.US, "slow%02d.txt", i);
6012 curTracesFile = new File(tracesDir, name);
6013 if (curTracesFile.exists()) {
6014 if (lastTracesFile != null) {
6015 curTracesFile.renameTo(lastTracesFile);
6016 } else {
6017 curTracesFile.delete();
6018 }
6019 }
6020 lastTracesFile = curTracesFile;
6021 }
6022 tracesFile.renameTo(curTracesFile);
6023 } finally {
6024 StrictMode.setThreadPolicy(oldPolicy);
6025 }
6026 }
6027
Michal Karpinskida34cd42019-04-02 19:46:52 +01006028 boolean isAssociatedCompanionApp(int userId, int uid) {
6029 final Set<Integer> allUids = mCompanionAppUidsMap.get(userId);
6030 if (allUids == null) {
Ricky Wai2452e2d2019-03-18 19:19:08 +00006031 return false;
6032 }
Michal Karpinskida34cd42019-04-02 19:46:52 +01006033 return allUids.contains(uid);
Ricky Wai2452e2d2019-03-18 19:19:08 +00006034 }
6035
Issei Suzuki734bc942019-06-05 13:59:52 +02006036 void notifySingleTaskDisplayEmpty(int displayId) {
6037 mTaskChangeNotificationController.notifySingleTaskDisplayEmpty(displayId);
6038 }
6039
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006040 final class H extends Handler {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006041 static final int REPORT_TIME_TRACKER_MSG = 1;
Alison Cichowlas3e340502018-08-07 17:15:01 -04006042
6043
Wale Ogunwale98875612018-10-12 07:53:02 -07006044 static final int FIRST_ACTIVITY_STACK_MSG = 100;
6045 static final int FIRST_SUPERVISOR_STACK_MSG = 200;
Wale Ogunwalef6733932018-06-27 05:14:34 -07006046
Riddle Hsud93a6c42018-11-29 21:50:06 +08006047 H(Looper looper) {
6048 super(looper);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006049 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006050
6051 @Override
6052 public void handleMessage(Message msg) {
6053 switch (msg.what) {
6054 case REPORT_TIME_TRACKER_MSG: {
6055 AppTimeTracker tracker = (AppTimeTracker) msg.obj;
6056 tracker.deliverResult(mContext);
6057 } break;
6058 }
6059 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006060 }
6061
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006062 final class UiHandler extends Handler {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006063 static final int DISMISS_DIALOG_UI_MSG = 1;
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006064
6065 public UiHandler() {
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -08006066 super(UiThread.get().getLooper(), null, true);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006067 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006068
6069 @Override
6070 public void handleMessage(Message msg) {
6071 switch (msg.what) {
6072 case DISMISS_DIALOG_UI_MSG: {
6073 final Dialog d = (Dialog) msg.obj;
6074 d.dismiss();
6075 break;
6076 }
6077 }
6078 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006079 }
6080
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006081 final class LocalService extends ActivityTaskManagerInternal {
6082 @Override
6083 public SleepToken acquireSleepToken(String tag, int displayId) {
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +00006084 Objects.requireNonNull(tag);
Wale Ogunwalef6733932018-06-27 05:14:34 -07006085 return ActivityTaskManagerService.this.acquireSleepToken(tag, displayId);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006086 }
6087
6088 @Override
6089 public ComponentName getHomeActivityForUser(int userId) {
6090 synchronized (mGlobalLock) {
Wale Ogunwaled32da472018-11-16 07:19:28 -08006091 final ActivityRecord homeActivity =
Louis Chang149d5c82019-12-30 09:47:39 +08006092 mRootWindowContainer.getDefaultDisplayHomeActivityForUser(userId);
Wale Ogunwale8b19de92018-11-29 19:58:26 -08006093 return homeActivity == null ? null : homeActivity.mActivityComponent;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006094 }
6095 }
6096
6097 @Override
6098 public void onLocalVoiceInteractionStarted(IBinder activity,
6099 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor) {
6100 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006101 onLocalVoiceInteractionStartedLocked(activity, voiceSession, voiceInteractor);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006102 }
6103 }
6104
6105 @Override
Issei Suzukicac2a502019-04-16 16:52:50 +02006106 public void notifySingleTaskDisplayDrawn(int displayId) {
6107 mTaskChangeNotificationController.notifySingleTaskDisplayDrawn(displayId);
6108 }
6109
6110 @Override
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006111 public List<IBinder> getTopVisibleActivities() {
6112 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006113 return mRootWindowContainer.getTopVisibleActivities();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006114 }
6115 }
6116
6117 @Override
Bernardo Rufinoe6cb3102020-03-06 20:33:11 +00006118 public boolean hasResumedActivity(int uid) {
6119 synchronized (mGlobalLock) {
6120 final ArraySet<WindowProcessController> processes = mProcessMap.getProcesses(uid);
6121 for (int i = 0, n = processes.size(); i < n; i++) {
6122 final WindowProcessController process = processes.valueAt(i);
6123 if (process.hasResumedActivity()) {
6124 return true;
6125 }
6126 }
6127 }
6128 return false;
6129 }
6130
6131 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08006132 public int startActivitiesAsPackage(String packageName, @Nullable String featureId,
6133 int userId, Intent[] intents, Bundle bOptions) {
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +00006134 Objects.requireNonNull(intents, "intents");
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006135 final String[] resolvedTypes = new String[intents.length];
6136
6137 // UID of the package on user userId.
6138 // "= 0" is needed because otherwise catch(RemoteException) would make it look like
6139 // packageUid may not be initialized.
6140 int packageUid = 0;
6141 final long ident = Binder.clearCallingIdentity();
6142
6143 try {
6144 for (int i = 0; i < intents.length; i++) {
6145 resolvedTypes[i] =
6146 intents[i].resolveTypeIfNeeded(mContext.getContentResolver());
6147 }
6148
6149 packageUid = AppGlobals.getPackageManager().getPackageUid(
6150 packageName, PackageManager.MATCH_DEBUG_TRIAGED_MISSING, userId);
6151 } catch (RemoteException e) {
6152 // Shouldn't happen.
6153 } finally {
6154 Binder.restoreCallingIdentity(ident);
6155 }
6156
Riddle Hsu591bf612019-02-14 17:55:31 +08006157 return getActivityStartController().startActivitiesInPackage(
Philip P. Moltmannee295092020-02-10 08:46:26 -08006158 packageUid, packageName, featureId,
Riddle Hsu591bf612019-02-14 17:55:31 +08006159 intents, resolvedTypes, null /* resultTo */,
6160 SafeActivityOptions.fromBundle(bOptions), userId,
6161 false /* validateIncomingUser */, null /* originatingPendingIntent */,
6162 false /* allowBackgroundActivityStart */);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006163 }
6164
6165 @Override
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006166 public int startActivitiesInPackage(int uid, int realCallingPid, int realCallingUid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006167 String callingPackage, @Nullable String callingFeatureId, Intent[] intents,
6168 String[] resolvedTypes, IBinder resultTo, SafeActivityOptions options, int userId,
6169 boolean validateIncomingUser, PendingIntentRecord originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006170 boolean allowBackgroundActivityStart) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07006171 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006172 synchronized (mGlobalLock) {
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006173 return getActivityStartController().startActivitiesInPackage(uid, realCallingPid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006174 realCallingUid, callingPackage, callingFeatureId, intents, resolvedTypes,
6175 resultTo, options, userId, validateIncomingUser, originatingPendingIntent,
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006176 allowBackgroundActivityStart);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006177 }
6178 }
6179
6180 @Override
6181 public int startActivityInPackage(int uid, int realCallingPid, int realCallingUid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006182 String callingPackage, @Nullable String callingFeatureId, Intent intent,
6183 String resolvedType, IBinder resultTo, String resultWho, int requestCode,
6184 int startFlags, SafeActivityOptions options, int userId, Task inTask, String reason,
6185 boolean validateIncomingUser, PendingIntentRecord originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006186 boolean allowBackgroundActivityStart) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07006187 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006188 synchronized (mGlobalLock) {
6189 return getActivityStartController().startActivityInPackage(uid, realCallingPid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006190 realCallingUid, callingPackage, callingFeatureId, intent, resolvedType,
6191 resultTo, resultWho, requestCode, startFlags, options, userId, inTask,
6192 reason, validateIncomingUser, originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006193 allowBackgroundActivityStart);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006194 }
6195 }
6196
6197 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08006198 public int startActivityAsUser(IApplicationThread caller, String callerPackage,
Alex Kershaw16406c32020-02-17 12:28:53 +00006199 @Nullable String callerFeatureId, Intent intent, @Nullable IBinder resultTo,
6200 int startFlags, Bundle options, int userId) {
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006201 return ActivityTaskManagerService.this.startActivityAsUser(
Philip P. Moltmannee295092020-02-10 08:46:26 -08006202 caller, callerPackage, callerFeatureId, intent,
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006203 intent.resolveTypeIfNeeded(mContext.getContentResolver()),
Alex Kershaw16406c32020-02-17 12:28:53 +00006204 resultTo, null, 0, startFlags, null, options, userId,
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006205 false /*validateIncomingUser*/);
6206 }
6207
6208 @Override
lumark588a3e82018-07-20 18:53:54 +08006209 public void notifyKeyguardFlagsChanged(@Nullable Runnable callback, int displayId) {
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006210 synchronized (mGlobalLock) {
6211
6212 // We might change the visibilities here, so prepare an empty app transition which
6213 // might be overridden later if we actually change visibilities.
Louis Chang677921f2019-12-06 16:44:24 +08006214 final DisplayContent displayContent =
Louis Chang149d5c82019-12-30 09:47:39 +08006215 mRootWindowContainer.getDisplayContent(displayId);
Louis Chang677921f2019-12-06 16:44:24 +08006216 if (displayContent == null) {
lumark52ea28e2018-11-09 17:30:47 +08006217 return;
6218 }
Louis Chang677921f2019-12-06 16:44:24 +08006219 final DisplayContent dc = displayContent.mDisplayContent;
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006220 final boolean wasTransitionSet =
6221 dc.mAppTransition.getAppTransition() != TRANSIT_NONE;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006222 if (!wasTransitionSet) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006223 dc.prepareAppTransition(TRANSIT_NONE, false /* alwaysKeepCurrent */);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006224 }
Louis Chang149d5c82019-12-30 09:47:39 +08006225 mRootWindowContainer.ensureActivitiesVisible(null, 0, !PRESERVE_WINDOWS);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006226
6227 // If there was a transition set already we don't want to interfere with it as we
6228 // might be starting it too early.
6229 if (!wasTransitionSet) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006230 dc.executeAppTransition();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006231 }
6232 }
6233 if (callback != null) {
6234 callback.run();
6235 }
6236 }
6237
6238 @Override
6239 public void notifyKeyguardTrustedChanged() {
6240 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006241 if (mKeyguardController.isKeyguardShowing(DEFAULT_DISPLAY)) {
Louis Chang149d5c82019-12-30 09:47:39 +08006242 mRootWindowContainer.ensureActivitiesVisible(null, 0, !PRESERVE_WINDOWS);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006243 }
6244 }
6245 }
6246
6247 /**
6248 * Called after virtual display Id is updated by
6249 * {@link com.android.server.vr.Vr2dDisplay} with a specific
6250 * {@param vrVr2dDisplayId}.
6251 */
6252 @Override
6253 public void setVr2dDisplayId(int vr2dDisplayId) {
6254 if (DEBUG_STACK) Slog.d(TAG, "setVr2dDisplayId called for: " + vr2dDisplayId);
6255 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006256 mVr2dDisplayId = vr2dDisplayId;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006257 }
6258 }
6259
6260 @Override
6261 public void setFocusedActivity(IBinder token) {
6262 synchronized (mGlobalLock) {
6263 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
6264 if (r == null) {
6265 throw new IllegalArgumentException(
6266 "setFocusedActivity: No activity record matching token=" + token);
6267 }
Louis Chang19443452018-10-09 12:10:21 +08006268 if (r.moveFocusableActivityToTop("setFocusedActivity")) {
Louis Chang149d5c82019-12-30 09:47:39 +08006269 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006270 }
6271 }
6272 }
6273
6274 @Override
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006275 public void registerScreenObserver(ScreenObserver observer) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006276 mScreenObservers.add(observer);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006277 }
6278
6279 @Override
6280 public boolean isCallerRecents(int callingUid) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07006281 return getRecentTasks().isCallerRecents(callingUid);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006282 }
6283
6284 @Override
6285 public boolean isRecentsComponentHomeActivity(int userId) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07006286 return getRecentTasks().isRecentsComponentHomeActivity(userId);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006287 }
6288
6289 @Override
6290 public void cancelRecentsAnimation(boolean restoreHomeStackPosition) {
6291 ActivityTaskManagerService.this.cancelRecentsAnimation(restoreHomeStackPosition);
6292 }
6293
6294 @Override
6295 public void enforceCallerIsRecentsOrHasPermission(String permission, String func) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006296 ActivityTaskManagerService.this.enforceCallerIsRecentsOrHasPermission(permission, func);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006297 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006298
6299 @Override
6300 public void notifyActiveVoiceInteractionServiceChanged(ComponentName component) {
6301 synchronized (mGlobalLock) {
6302 mActiveVoiceInteractionServiceComponent = component;
6303 }
6304 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006305
6306 @Override
Galia Peycheva480275a2020-03-18 17:33:42 +01006307 public void notifyDreamStateChanged(boolean dreaming) {
6308 synchronized (mGlobalLock) {
6309 mDreaming = dreaming;
6310 }
6311 }
6312
6313 @Override
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006314 public void setAllowAppSwitches(@NonNull String type, int uid, int userId) {
6315 if (!mAmInternal.isUserRunning(userId, ActivityManager.FLAG_OR_STOPPED)) {
6316 return;
6317 }
6318 synchronized (mGlobalLock) {
6319 ArrayMap<String, Integer> types = mAllowAppSwitchUids.get(userId);
6320 if (types == null) {
6321 if (uid < 0) {
6322 return;
6323 }
6324 types = new ArrayMap<>();
6325 mAllowAppSwitchUids.put(userId, types);
6326 }
6327 if (uid < 0) {
6328 types.remove(type);
6329 } else {
6330 types.put(type, uid);
6331 }
6332 }
6333 }
6334
6335 @Override
6336 public void onUserStopped(int userId) {
6337 synchronized (mGlobalLock) {
6338 getRecentTasks().unloadUserDataFromMemoryLocked(userId);
6339 mAllowAppSwitchUids.remove(userId);
6340 }
6341 }
6342
6343 @Override
6344 public boolean isGetTasksAllowed(String caller, int callingPid, int callingUid) {
6345 synchronized (mGlobalLock) {
6346 return ActivityTaskManagerService.this.isGetTasksAllowed(
6347 caller, callingPid, callingUid);
6348 }
6349 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006350
Riddle Hsua0536432019-02-16 00:38:59 +08006351 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006352 @Override
6353 public void onProcessAdded(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006354 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006355 mProcessNames.put(proc.mName, proc.mUid, proc);
6356 }
6357 }
6358
Riddle Hsua0536432019-02-16 00:38:59 +08006359 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006360 @Override
6361 public void onProcessRemoved(String name, int uid) {
Riddle Hsua0536432019-02-16 00:38:59 +08006362 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006363 mProcessNames.remove(name, uid);
6364 }
6365 }
6366
Riddle Hsua0536432019-02-16 00:38:59 +08006367 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006368 @Override
6369 public void onCleanUpApplicationRecord(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006370 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006371 if (proc == mHomeProcess) {
6372 mHomeProcess = null;
6373 }
6374 if (proc == mPreviousProcess) {
6375 mPreviousProcess = null;
6376 }
6377 }
6378 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006379
Riddle Hsua0536432019-02-16 00:38:59 +08006380 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalef6733932018-06-27 05:14:34 -07006381 @Override
6382 public int getTopProcessState() {
Riddle Hsua0536432019-02-16 00:38:59 +08006383 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006384 return mTopProcessState;
6385 }
6386 }
6387
Riddle Hsua0536432019-02-16 00:38:59 +08006388 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalef6733932018-06-27 05:14:34 -07006389 @Override
Wale Ogunwale53783742018-09-16 10:21:51 -07006390 public boolean isHeavyWeightProcess(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006391 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006392 return proc == mHeavyWeightProcess;
6393 }
6394 }
6395
Riddle Hsua0536432019-02-16 00:38:59 +08006396 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale53783742018-09-16 10:21:51 -07006397 @Override
6398 public void clearHeavyWeightProcessIfEquals(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006399 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006400 ActivityTaskManagerService.this.clearHeavyWeightProcessIfEquals(proc);
6401 }
6402 }
6403
6404 @Override
6405 public void finishHeavyWeightApp() {
6406 synchronized (mGlobalLock) {
Sudheer Shankaee1da272018-10-20 20:11:44 -07006407 if (mHeavyWeightProcess != null) {
6408 mHeavyWeightProcess.finishActivities();
6409 }
Wale Ogunwale53783742018-09-16 10:21:51 -07006410 ActivityTaskManagerService.this.clearHeavyWeightProcessIfEquals(
6411 mHeavyWeightProcess);
6412 }
6413 }
6414
Galia Peycheva480275a2020-03-18 17:33:42 +01006415 @Override
6416 public boolean isDreaming() {
6417 synchronized (mGlobalLock) {
6418 return mDreaming;
6419 }
6420 }
6421
Riddle Hsua0536432019-02-16 00:38:59 +08006422 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale53783742018-09-16 10:21:51 -07006423 @Override
Wale Ogunwalef6733932018-06-27 05:14:34 -07006424 public boolean isSleeping() {
Riddle Hsua0536432019-02-16 00:38:59 +08006425 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006426 return isSleepingLocked();
6427 }
6428 }
6429
6430 @Override
6431 public boolean isShuttingDown() {
6432 synchronized (mGlobalLock) {
6433 return mShuttingDown;
6434 }
6435 }
6436
6437 @Override
6438 public boolean shuttingDown(boolean booted, int timeout) {
6439 synchronized (mGlobalLock) {
6440 mShuttingDown = true;
Louis Chang149d5c82019-12-30 09:47:39 +08006441 mRootWindowContainer.prepareForShutdown();
Wale Ogunwalef6733932018-06-27 05:14:34 -07006442 updateEventDispatchingLocked(booted);
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07006443 notifyTaskPersisterLocked(null, true);
Wale Ogunwalef6733932018-06-27 05:14:34 -07006444 return mStackSupervisor.shutdownLocked(timeout);
6445 }
6446 }
6447
6448 @Override
6449 public void enableScreenAfterBoot(boolean booted) {
6450 synchronized (mGlobalLock) {
Jeff Changd136e772019-11-05 20:33:52 +08006451 writeBootProgressEnableScreen(SystemClock.uptimeMillis());
Wale Ogunwalef6733932018-06-27 05:14:34 -07006452 mWindowManager.enableScreenAfterBoot();
6453 updateEventDispatchingLocked(booted);
6454 }
6455 }
6456
6457 @Override
6458 public boolean showStrictModeViolationDialog() {
6459 synchronized (mGlobalLock) {
6460 return mShowDialogs && !mSleeping && !mShuttingDown;
6461 }
6462 }
6463
6464 @Override
6465 public void showSystemReadyErrorDialogsIfNeeded() {
6466 synchronized (mGlobalLock) {
6467 try {
6468 if (AppGlobals.getPackageManager().hasSystemUidErrors()) {
6469 Slog.e(TAG, "UIDs on the system are inconsistent, you need to wipe your"
6470 + " data partition or your device will be unstable.");
6471 mUiHandler.post(() -> {
6472 if (mShowDialogs) {
6473 AlertDialog d = new BaseErrorDialog(mUiContext);
6474 d.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
6475 d.setCancelable(false);
6476 d.setTitle(mUiContext.getText(R.string.android_system_label));
6477 d.setMessage(mUiContext.getText(R.string.system_error_wipe_data));
6478 d.setButton(DialogInterface.BUTTON_POSITIVE,
6479 mUiContext.getText(R.string.ok),
6480 mUiHandler.obtainMessage(DISMISS_DIALOG_UI_MSG, d));
6481 d.show();
6482 }
6483 });
6484 }
6485 } catch (RemoteException e) {
6486 }
6487
6488 if (!Build.isBuildConsistent()) {
6489 Slog.e(TAG, "Build fingerprint is not consistent, warning user");
6490 mUiHandler.post(() -> {
6491 if (mShowDialogs) {
6492 AlertDialog d = new BaseErrorDialog(mUiContext);
6493 d.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
6494 d.setCancelable(false);
6495 d.setTitle(mUiContext.getText(R.string.android_system_label));
6496 d.setMessage(mUiContext.getText(R.string.system_error_manufacturer));
6497 d.setButton(DialogInterface.BUTTON_POSITIVE,
6498 mUiContext.getText(R.string.ok),
6499 mUiHandler.obtainMessage(DISMISS_DIALOG_UI_MSG, d));
6500 d.show();
6501 }
6502 });
6503 }
6504 }
6505 }
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006506
6507 @Override
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006508 public void onProcessMapped(int pid, WindowProcessController proc) {
6509 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006510 mProcessMap.put(pid, proc);
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006511 }
6512 }
6513
6514 @Override
6515 public void onProcessUnMapped(int pid) {
6516 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006517 mProcessMap.remove(pid);
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006518 }
6519 }
Wale Ogunwale008163e2018-07-23 23:11:08 -07006520
6521 @Override
6522 public void onPackageDataCleared(String name) {
6523 synchronized (mGlobalLock) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006524 mCompatModePackages.handlePackageDataClearedLocked(name);
Wale Ogunwale008163e2018-07-23 23:11:08 -07006525 mAppWarnings.onPackageDataCleared(name);
6526 }
6527 }
6528
6529 @Override
6530 public void onPackageUninstalled(String name) {
6531 synchronized (mGlobalLock) {
6532 mAppWarnings.onPackageUninstalled(name);
Wale Ogunwale53783742018-09-16 10:21:51 -07006533 mCompatModePackages.handlePackageUninstalledLocked(name);
Wale Ogunwale008163e2018-07-23 23:11:08 -07006534 }
6535 }
Wale Ogunwale53783742018-09-16 10:21:51 -07006536
6537 @Override
6538 public void onPackageAdded(String name, boolean replacing) {
6539 synchronized (mGlobalLock) {
6540 mCompatModePackages.handlePackageAddedLocked(name, replacing);
6541 }
6542 }
6543
6544 @Override
Wale Ogunwale31913b52018-10-13 08:29:31 -07006545 public void onPackageReplaced(ApplicationInfo aInfo) {
6546 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006547 mRootWindowContainer.updateActivityApplicationInfo(aInfo);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006548 }
6549 }
6550
6551 @Override
Wale Ogunwale53783742018-09-16 10:21:51 -07006552 public CompatibilityInfo compatibilityInfoForPackage(ApplicationInfo ai) {
6553 synchronized (mGlobalLock) {
6554 return compatibilityInfoForPackageLocked(ai);
6555 }
6556 }
6557
Yunfan Chen75157d72018-07-27 14:47:21 +09006558 /**
6559 * Set the corresponding display information for the process global configuration. To be
6560 * called when we need to show IME on a different display.
6561 *
6562 * @param pid The process id associated with the IME window.
6563 * @param displayId The ID of the display showing the IME.
6564 */
6565 @Override
Yunfan Chen79b96062018-10-17 12:45:23 -07006566 public void onImeWindowSetOnDisplay(final int pid, final int displayId) {
lumark48973532019-04-12 20:18:15 +08006567 // Don't update process-level configuration for Multi-Client IME process since other
6568 // IMEs on other displays will also receive this configuration change due to IME
6569 // services use the same application config/context.
6570 if (InputMethodSystemProperty.MULTI_CLIENT_IME_ENABLED) return;
lumark5df49512019-04-02 14:56:46 +08006571
Yunfan Chen75157d72018-07-27 14:47:21 +09006572 if (pid == MY_PID || pid < 0) {
6573 if (DEBUG_CONFIGURATION) {
6574 Slog.w(TAG,
6575 "Trying to update display configuration for system/invalid process.");
6576 }
6577 return;
6578 }
Yunfan Chencafc7062019-01-22 17:21:32 +09006579 synchronized (mGlobalLock) {
Louis Chang677921f2019-12-06 16:44:24 +08006580 final DisplayContent displayContent =
Louis Chang149d5c82019-12-30 09:47:39 +08006581 mRootWindowContainer.getDisplayContent(displayId);
Louis Chang677921f2019-12-06 16:44:24 +08006582 if (displayContent == null) {
Yunfan Chencafc7062019-01-22 17:21:32 +09006583 // Call might come when display is not yet added or has been removed.
6584 if (DEBUG_CONFIGURATION) {
6585 Slog.w(TAG, "Trying to update display configuration for non-existing "
6586 + "displayId=" + displayId);
Yunfan Chen75157d72018-07-27 14:47:21 +09006587 }
Yunfan Chencafc7062019-01-22 17:21:32 +09006588 return;
Yunfan Chen75157d72018-07-27 14:47:21 +09006589 }
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006590 final WindowProcessController process = mProcessMap.getProcess(pid);
Yunfan Chencafc7062019-01-22 17:21:32 +09006591 if (process == null) {
6592 if (DEBUG_CONFIGURATION) {
6593 Slog.w(TAG, "Trying to update display configuration for invalid "
6594 + "process, pid=" + pid);
6595 }
6596 return;
6597 }
Andrii Kulianfa23a9e2019-10-10 15:15:36 -07006598 process.registerDisplayConfigurationListener(displayContent);
Yunfan Chencafc7062019-01-22 17:21:32 +09006599 }
Yunfan Chen75157d72018-07-27 14:47:21 +09006600 }
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006601
6602 @Override
6603 public void sendActivityResult(int callingUid, IBinder activityToken, String resultWho,
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00006604 int requestCode, int resultCode, Intent data) {
Jeff Sharkey307ea7a2020-04-13 10:24:49 -06006605 final ActivityRecord r;
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006606 synchronized (mGlobalLock) {
Jeff Sharkey307ea7a2020-04-13 10:24:49 -06006607 r = ActivityRecord.isInStackLocked(activityToken);
6608 if (r == null || r.getRootTask() == null) {
6609 return;
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006610 }
6611 }
Jeff Sharkey307ea7a2020-04-13 10:24:49 -06006612
6613 // Carefully collect grants without holding lock
6614 final NeededUriGrants dataGrants = collectGrants(data, r);
6615
6616 synchronized (mGlobalLock) {
6617 r.sendResult(callingUid, resultWho, requestCode, resultCode, data, dataGrants);
6618 }
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006619 }
6620
6621 @Override
6622 public void clearPendingResultForActivity(IBinder activityToken,
6623 WeakReference<PendingIntentRecord> pir) {
6624 synchronized (mGlobalLock) {
6625 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
6626 if (r != null && r.pendingResults != null) {
6627 r.pendingResults.remove(pir);
6628 }
6629 }
6630 }
6631
6632 @Override
Sunny Goyald40c3452019-03-20 12:46:55 -07006633 public ActivityTokens getTopActivityForTask(int taskId) {
6634 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006635 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Louis Changcdec0802019-11-11 11:45:07 +08006636 if (task == null) {
Sunny Goyald40c3452019-03-20 12:46:55 -07006637 Slog.w(TAG, "getApplicationThreadForTopActivity failed:"
6638 + " Requested task not found");
6639 return null;
6640 }
Wale Ogunwale21e06482019-11-18 05:14:15 -08006641 final ActivityRecord activity = task.getTopNonFinishingActivity();
Sunny Goyald40c3452019-03-20 12:46:55 -07006642 if (activity == null) {
6643 Slog.w(TAG, "getApplicationThreadForTopActivity failed:"
6644 + " Requested activity not found");
6645 return null;
6646 }
6647 if (!activity.attachedToProcess()) {
6648 Slog.w(TAG, "getApplicationThreadForTopActivity failed: No process for "
6649 + activity);
6650 return null;
6651 }
6652 return new ActivityTokens(activity.appToken, activity.assistToken,
6653 activity.app.getThread());
6654 }
6655 }
6656
6657 @Override
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006658 public IIntentSender getIntentSender(int type, String packageName,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006659 @Nullable String featureId, int callingUid, int userId, IBinder token,
6660 String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes,
6661 int flags, Bundle bOptions) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006662 synchronized (mGlobalLock) {
Philip P. Moltmannee295092020-02-10 08:46:26 -08006663 return getIntentSenderLocked(type, packageName, featureId, callingUid, userId,
6664 token, resultWho, requestCode, intents, resolvedTypes, flags, bOptions);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006665 }
6666 }
Wale Ogunwalec4e63a42018-10-02 13:19:54 -07006667
6668 @Override
6669 public ActivityServiceConnectionsHolder getServiceConnectionsHolder(IBinder token) {
6670 synchronized (mGlobalLock) {
6671 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
6672 if (r == null) {
6673 return null;
6674 }
6675 if (r.mServiceConnectionsHolder == null) {
6676 r.mServiceConnectionsHolder = new ActivityServiceConnectionsHolder(
6677 ActivityTaskManagerService.this, r);
6678 }
6679
6680 return r.mServiceConnectionsHolder;
6681 }
6682 }
Wale Ogunwale214f3482018-10-04 11:00:47 -07006683
6684 @Override
6685 public Intent getHomeIntent() {
6686 synchronized (mGlobalLock) {
6687 return ActivityTaskManagerService.this.getHomeIntent();
6688 }
6689 }
6690
6691 @Override
6692 public boolean startHomeActivity(int userId, String reason) {
6693 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006694 return mRootWindowContainer.startHomeOnDisplay(userId, reason, DEFAULT_DISPLAY);
Louis Chang89f43fc2018-10-05 10:59:14 +08006695 }
6696 }
6697
6698 @Override
Chilun8b1f1be2019-03-13 17:14:36 +08006699 public boolean startHomeOnDisplay(int userId, String reason, int displayId,
Chilun39232092019-03-22 14:41:30 +08006700 boolean allowInstrumenting, boolean fromHomeKey) {
Chilun5fd56542019-03-21 19:51:37 +08006701 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006702 return mRootWindowContainer.startHomeOnDisplay(userId, reason, displayId,
Chilun39232092019-03-22 14:41:30 +08006703 allowInstrumenting, fromHomeKey);
Chilun5fd56542019-03-21 19:51:37 +08006704 }
Chilun8b1f1be2019-03-13 17:14:36 +08006705 }
6706
6707 @Override
Louis Chang89f43fc2018-10-05 10:59:14 +08006708 public boolean startHomeOnAllDisplays(int userId, String reason) {
6709 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006710 return mRootWindowContainer.startHomeOnAllDisplays(userId, reason);
Wale Ogunwale214f3482018-10-04 11:00:47 -07006711 }
6712 }
6713
Riddle Hsua0536432019-02-16 00:38:59 +08006714 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale214f3482018-10-04 11:00:47 -07006715 @Override
6716 public boolean isFactoryTestProcess(WindowProcessController wpc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006717 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale214f3482018-10-04 11:00:47 -07006718 if (mFactoryTest == FACTORY_TEST_OFF) {
6719 return false;
6720 }
6721 if (mFactoryTest == FACTORY_TEST_LOW_LEVEL && mTopComponent != null
6722 && wpc.mName.equals(mTopComponent.getPackageName())) {
6723 return true;
6724 }
6725 return mFactoryTest == FACTORY_TEST_HIGH_LEVEL
6726 && (wpc.mInfo.flags & FLAG_FACTORY_TEST) != 0;
6727 }
6728 }
6729
6730 @Override
6731 public void updateTopComponentForFactoryTest() {
6732 synchronized (mGlobalLock) {
6733 if (mFactoryTest != FACTORY_TEST_LOW_LEVEL) {
6734 return;
6735 }
6736 final ResolveInfo ri = mContext.getPackageManager()
6737 .resolveActivity(new Intent(Intent.ACTION_FACTORY_TEST), STOCK_PM_FLAGS);
6738 final CharSequence errorMsg;
6739 if (ri != null) {
6740 final ActivityInfo ai = ri.activityInfo;
6741 final ApplicationInfo app = ai.applicationInfo;
6742 if ((app.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
6743 mTopAction = Intent.ACTION_FACTORY_TEST;
6744 mTopData = null;
6745 mTopComponent = new ComponentName(app.packageName, ai.name);
6746 errorMsg = null;
6747 } else {
6748 errorMsg = mContext.getResources().getText(
6749 com.android.internal.R.string.factorytest_not_system);
6750 }
6751 } else {
6752 errorMsg = mContext.getResources().getText(
6753 com.android.internal.R.string.factorytest_no_action);
6754 }
6755 if (errorMsg == null) {
6756 return;
6757 }
6758
6759 mTopAction = null;
6760 mTopData = null;
6761 mTopComponent = null;
6762 mUiHandler.post(() -> {
6763 Dialog d = new FactoryErrorDialog(mUiContext, errorMsg);
6764 d.show();
Wale Ogunwale342fbe92018-10-09 08:44:10 -07006765 mAmInternal.ensureBootCompleted();
Wale Ogunwale214f3482018-10-04 11:00:47 -07006766 });
6767 }
6768 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006769
Riddle Hsua0536432019-02-16 00:38:59 +08006770 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006771 @Override
6772 public void handleAppDied(WindowProcessController wpc, boolean restarting,
6773 Runnable finishInstrumentationCallback) {
Riddle Hsua0536432019-02-16 00:38:59 +08006774 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07006775 // Remove this application's activities from active lists.
Louis Chang149d5c82019-12-30 09:47:39 +08006776 boolean hasVisibleActivities = mRootWindowContainer.handleAppDied(wpc);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006777
6778 wpc.clearRecentTasks();
6779 wpc.clearActivities();
6780
6781 if (wpc.isInstrumenting()) {
6782 finishInstrumentationCallback.run();
6783 }
6784
Jorim Jaggid0752812018-10-16 16:07:20 +02006785 if (!restarting && hasVisibleActivities) {
Riddle Hsua0022cd2019-09-09 21:12:41 +08006786 deferWindowLayout();
Jorim Jaggid0752812018-10-16 16:07:20 +02006787 try {
Louis Chang149d5c82019-12-30 09:47:39 +08006788 if (!mRootWindowContainer.resumeFocusedStacksTopActivities()) {
Jorim Jaggid0752812018-10-16 16:07:20 +02006789 // If there was nothing to resume, and we are not already restarting
6790 // this process, but there is a visible activity that is hosted by the
6791 // process...then make sure all visible activities are running, taking
6792 // care of restarting this process.
Louis Chang149d5c82019-12-30 09:47:39 +08006793 mRootWindowContainer.ensureActivitiesVisible(null, 0,
Jorim Jaggid0752812018-10-16 16:07:20 +02006794 !PRESERVE_WINDOWS);
6795 }
6796 } finally {
Riddle Hsua0022cd2019-09-09 21:12:41 +08006797 continueWindowLayout();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006798 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006799 }
6800 }
6801 }
6802
6803 @Override
6804 public void closeSystemDialogs(String reason) {
6805 enforceNotIsolatedCaller("closeSystemDialogs");
6806
6807 final int pid = Binder.getCallingPid();
6808 final int uid = Binder.getCallingUid();
6809 final long origId = Binder.clearCallingIdentity();
6810 try {
6811 synchronized (mGlobalLock) {
6812 // Only allow this from foreground processes, so that background
6813 // applications can't abuse it to prevent system UI from being shown.
6814 if (uid >= FIRST_APPLICATION_UID) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006815 final WindowProcessController proc = mProcessMap.getProcess(pid);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006816 if (!proc.isPerceptible()) {
6817 Slog.w(TAG, "Ignoring closeSystemDialogs " + reason
6818 + " from background process " + proc);
6819 return;
6820 }
6821 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006822 mWindowManager.closeSystemDialogs(reason);
6823
Louis Chang149d5c82019-12-30 09:47:39 +08006824 mRootWindowContainer.closeSystemDialogs();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006825 }
Wale Ogunwale2ea36d42018-10-18 10:27:31 -07006826 // Call into AM outside the synchronized block.
6827 mAmInternal.broadcastCloseSystemDialogs(reason);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006828 } finally {
6829 Binder.restoreCallingIdentity(origId);
6830 }
6831 }
6832
6833 @Override
6834 public void cleanupDisabledPackageComponents(
6835 String packageName, Set<String> disabledClasses, int userId, boolean booted) {
6836 synchronized (mGlobalLock) {
6837 // Clean-up disabled activities.
Louis Chang149d5c82019-12-30 09:47:39 +08006838 if (mRootWindowContainer.finishDisabledPackageActivities(
Wale Ogunwale31913b52018-10-13 08:29:31 -07006839 packageName, disabledClasses, true, false, userId) && booted) {
Louis Chang149d5c82019-12-30 09:47:39 +08006840 mRootWindowContainer.resumeFocusedStacksTopActivities();
Riddle Hsufc8ab262019-12-31 15:31:24 +08006841 mStackSupervisor.scheduleIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006842 }
6843
6844 // Clean-up disabled tasks
6845 getRecentTasks().cleanupDisabledPackageTasksLocked(
6846 packageName, disabledClasses, userId);
6847 }
6848 }
6849
6850 @Override
6851 public boolean onForceStopPackage(String packageName, boolean doit, boolean evenPersistent,
6852 int userId) {
6853 synchronized (mGlobalLock) {
6854
6855 boolean didSomething =
6856 getActivityStartController().clearPendingActivityLaunches(packageName);
Louis Chang149d5c82019-12-30 09:47:39 +08006857 didSomething |= mRootWindowContainer.finishDisabledPackageActivities(packageName,
Wale Ogunwale31913b52018-10-13 08:29:31 -07006858 null, doit, evenPersistent, userId);
6859 return didSomething;
6860 }
6861 }
6862
6863 @Override
6864 public void resumeTopActivities(boolean scheduleIdle) {
6865 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006866 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006867 if (scheduleIdle) {
Riddle Hsufc8ab262019-12-31 15:31:24 +08006868 mStackSupervisor.scheduleIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006869 }
6870 }
6871 }
6872
Riddle Hsua0536432019-02-16 00:38:59 +08006873 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006874 @Override
6875 public void preBindApplication(WindowProcessController wpc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006876 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07006877 mStackSupervisor.getActivityMetricsLogger().notifyBindApplication(wpc.mInfo);
6878 }
6879 }
6880
Riddle Hsua0536432019-02-16 00:38:59 +08006881 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006882 @Override
6883 public boolean attachApplication(WindowProcessController wpc) throws RemoteException {
Riddle Hsua0536432019-02-16 00:38:59 +08006884 synchronized (mGlobalLockWithoutBoost) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08006885 if (Trace.isTagEnabled(TRACE_TAG_WINDOW_MANAGER)) {
6886 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "attachApplication:" + wpc.mName);
6887 }
6888 try {
Louis Chang149d5c82019-12-30 09:47:39 +08006889 return mRootWindowContainer.attachApplication(wpc);
Riddle Hsu2ca561b2019-10-08 21:58:58 +08006890 } finally {
6891 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
6892 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006893 }
6894 }
6895
6896 @Override
6897 public void notifyLockedProfile(@UserIdInt int userId, int currentUserId) {
6898 try {
6899 if (!AppGlobals.getPackageManager().isUidPrivileged(Binder.getCallingUid())) {
6900 throw new SecurityException("Only privileged app can call notifyLockedProfile");
6901 }
6902 } catch (RemoteException ex) {
6903 throw new SecurityException("Fail to check is caller a privileged app", ex);
6904 }
6905
6906 synchronized (mGlobalLock) {
6907 final long ident = Binder.clearCallingIdentity();
6908 try {
6909 if (mAmInternal.shouldConfirmCredentials(userId)) {
6910 if (mKeyguardController.isKeyguardLocked()) {
6911 // Showing launcher to avoid user entering credential twice.
6912 startHomeActivity(currentUserId, "notifyLockedProfile");
6913 }
Louis Chang149d5c82019-12-30 09:47:39 +08006914 mRootWindowContainer.lockAllProfileTasks(userId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006915 }
6916 } finally {
6917 Binder.restoreCallingIdentity(ident);
6918 }
6919 }
6920 }
6921
6922 @Override
6923 public void startConfirmDeviceCredentialIntent(Intent intent, Bundle options) {
6924 mAmInternal.enforceCallingPermission(
6925 MANAGE_ACTIVITY_STACKS, "startConfirmDeviceCredentialIntent");
6926
6927 synchronized (mGlobalLock) {
6928 final long ident = Binder.clearCallingIdentity();
6929 try {
Pavel Grafovc0fe0a02019-05-13 18:19:33 +01006930 intent.addFlags(FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
6931 final ActivityOptions activityOptions = options != null
Wale Ogunwale31913b52018-10-13 08:29:31 -07006932 ? new ActivityOptions(options) : ActivityOptions.makeBasic();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006933 mContext.startActivityAsUser(intent, activityOptions.toBundle(),
6934 UserHandle.CURRENT);
6935 } finally {
6936 Binder.restoreCallingIdentity(ident);
6937 }
6938 }
6939 }
6940
6941 @Override
6942 public void writeActivitiesToProto(ProtoOutputStream proto) {
6943 synchronized (mGlobalLock) {
6944 // The output proto of "activity --proto activities"
Wale Ogunwalef342f062020-01-27 07:34:13 -08006945 mRootWindowContainer.dumpDebug(
6946 proto, ROOT_WINDOW_CONTAINER, WindowTraceLogLevel.ALL);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006947 }
6948 }
6949
6950 @Override
6951 public void saveANRState(String reason) {
6952 synchronized (mGlobalLock) {
6953 final StringWriter sw = new StringWriter();
6954 final PrintWriter pw = new FastPrintWriter(sw, false, 1024);
6955 pw.println(" ANR time: " + DateFormat.getDateTimeInstance().format(new Date()));
6956 if (reason != null) {
6957 pw.println(" Reason: " + reason);
6958 }
6959 pw.println();
6960 getActivityStartController().dump(pw, " ", null);
6961 pw.println();
6962 pw.println("-------------------------------------------------------------------------------");
6963 dumpActivitiesLocked(null /* fd */, pw, null /* args */, 0 /* opti */,
6964 true /* dumpAll */, false /* dumpClient */, null /* dumpPackage */,
6965 "" /* header */);
6966 pw.println();
6967 pw.close();
6968
6969 mLastANRState = sw.toString();
6970 }
6971 }
6972
6973 @Override
6974 public void clearSavedANRState() {
6975 synchronized (mGlobalLock) {
6976 mLastANRState = null;
6977 }
6978 }
6979
6980 @Override
6981 public void dump(String cmd, FileDescriptor fd, PrintWriter pw, String[] args, int opti,
6982 boolean dumpAll, boolean dumpClient, String dumpPackage) {
6983 synchronized (mGlobalLock) {
6984 if (DUMP_ACTIVITIES_CMD.equals(cmd) || DUMP_ACTIVITIES_SHORT_CMD.equals(cmd)) {
6985 dumpActivitiesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage);
6986 } else if (DUMP_LASTANR_CMD.equals(cmd)) {
6987 dumpLastANRLocked(pw);
6988 } else if (DUMP_LASTANR_TRACES_CMD.equals(cmd)) {
6989 dumpLastANRTracesLocked(pw);
6990 } else if (DUMP_STARTER_CMD.equals(cmd)) {
6991 dumpActivityStarterLocked(pw, dumpPackage);
6992 } else if (DUMP_CONTAINERS_CMD.equals(cmd)) {
6993 dumpActivityContainersLocked(pw);
6994 } else if (DUMP_RECENTS_CMD.equals(cmd) || DUMP_RECENTS_SHORT_CMD.equals(cmd)) {
6995 if (getRecentTasks() != null) {
6996 getRecentTasks().dump(pw, dumpAll, dumpPackage);
6997 }
6998 }
6999 }
7000 }
7001
7002 @Override
7003 public boolean dumpForProcesses(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
7004 String dumpPackage, int dumpAppId, boolean needSep, boolean testPssMode,
7005 int wakefulness) {
7006 synchronized (mGlobalLock) {
7007 if (mHomeProcess != null && (dumpPackage == null
7008 || mHomeProcess.mPkgList.contains(dumpPackage))) {
7009 if (needSep) {
7010 pw.println();
7011 needSep = false;
7012 }
7013 pw.println(" mHomeProcess: " + mHomeProcess);
7014 }
7015 if (mPreviousProcess != null && (dumpPackage == null
7016 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
7017 if (needSep) {
7018 pw.println();
7019 needSep = false;
7020 }
7021 pw.println(" mPreviousProcess: " + mPreviousProcess);
7022 }
7023 if (dumpAll && (mPreviousProcess == null || dumpPackage == null
7024 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
7025 StringBuilder sb = new StringBuilder(128);
7026 sb.append(" mPreviousProcessVisibleTime: ");
7027 TimeUtils.formatDuration(mPreviousProcessVisibleTime, sb);
7028 pw.println(sb);
7029 }
7030 if (mHeavyWeightProcess != null && (dumpPackage == null
7031 || mHeavyWeightProcess.mPkgList.contains(dumpPackage))) {
7032 if (needSep) {
7033 pw.println();
7034 needSep = false;
7035 }
7036 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
7037 }
7038 if (dumpPackage == null) {
7039 pw.println(" mGlobalConfiguration: " + getGlobalConfiguration());
Louis Chang149d5c82019-12-30 09:47:39 +08007040 mRootWindowContainer.dumpDisplayConfigs(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07007041 }
7042 if (dumpAll) {
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08007043 final ActivityStack topFocusedStack = getTopDisplayFocusedStack();
7044 if (dumpPackage == null && topFocusedStack != null) {
7045 pw.println(" mConfigWillChange: " + topFocusedStack.mConfigWillChange);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007046 }
7047 if (mCompatModePackages.getPackages().size() > 0) {
7048 boolean printed = false;
7049 for (Map.Entry<String, Integer> entry
7050 : mCompatModePackages.getPackages().entrySet()) {
7051 String pkg = entry.getKey();
7052 int mode = entry.getValue();
7053 if (dumpPackage != null && !dumpPackage.equals(pkg)) {
7054 continue;
7055 }
7056 if (!printed) {
7057 pw.println(" mScreenCompatPackages:");
7058 printed = true;
7059 }
7060 pw.println(" " + pkg + ": " + mode);
7061 }
7062 }
7063 }
7064
7065 if (dumpPackage == null) {
7066 pw.println(" mWakefulness="
7067 + PowerManagerInternal.wakefulnessToString(wakefulness));
Louis Chang149d5c82019-12-30 09:47:39 +08007068 pw.println(" mSleepTokens=" + mRootWindowContainer.mSleepTokens);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007069 if (mRunningVoice != null) {
7070 pw.println(" mRunningVoice=" + mRunningVoice);
7071 pw.println(" mVoiceWakeLock" + mVoiceWakeLock);
7072 }
7073 pw.println(" mSleeping=" + mSleeping);
7074 pw.println(" mShuttingDown=" + mShuttingDown + " mTestPssMode=" + testPssMode);
7075 pw.println(" mVrController=" + mVrController);
7076 }
7077 if (mCurAppTimeTracker != null) {
7078 mCurAppTimeTracker.dumpWithHeader(pw, " ", true);
7079 }
7080 if (mAllowAppSwitchUids.size() > 0) {
7081 boolean printed = false;
7082 for (int i = 0; i < mAllowAppSwitchUids.size(); i++) {
7083 ArrayMap<String, Integer> types = mAllowAppSwitchUids.valueAt(i);
7084 for (int j = 0; j < types.size(); j++) {
7085 if (dumpPackage == null ||
7086 UserHandle.getAppId(types.valueAt(j).intValue()) == dumpAppId) {
7087 if (needSep) {
7088 pw.println();
7089 needSep = false;
7090 }
7091 if (!printed) {
7092 pw.println(" mAllowAppSwitchUids:");
7093 printed = true;
7094 }
7095 pw.print(" User ");
7096 pw.print(mAllowAppSwitchUids.keyAt(i));
7097 pw.print(": Type ");
7098 pw.print(types.keyAt(j));
7099 pw.print(" = ");
7100 UserHandle.formatUid(pw, types.valueAt(j).intValue());
7101 pw.println();
7102 }
7103 }
7104 }
7105 }
7106 if (dumpPackage == null) {
7107 if (mController != null) {
7108 pw.println(" mController=" + mController
7109 + " mControllerIsAMonkey=" + mControllerIsAMonkey);
7110 }
Andrii Kulianc598b2d2019-02-07 17:16:38 -08007111 pw.println(" mGoingToSleepWakeLock=" + mStackSupervisor.mGoingToSleepWakeLock);
7112 pw.println(" mLaunchingActivityWakeLock="
7113 + mStackSupervisor.mLaunchingActivityWakeLock);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007114 }
7115
7116 return needSep;
7117 }
7118 }
7119
7120 @Override
sanryhuang498e77e2018-12-06 14:57:01 +08007121 public void writeProcessesToProto(ProtoOutputStream proto, String dumpPackage,
7122 int wakeFullness, boolean testPssMode) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07007123 synchronized (mGlobalLock) {
7124 if (dumpPackage == null) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007125 getGlobalConfiguration().dumpDebug(proto, GLOBAL_CONFIGURATION);
Darryl L Johnson1e3885c2020-02-27 17:38:13 -08007126 final ActivityStack topFocusedStack = getTopDisplayFocusedStack();
7127 if (topFocusedStack != null) {
7128 proto.write(CONFIG_WILL_CHANGE, topFocusedStack.mConfigWillChange);
7129 }
sanryhuang498e77e2018-12-06 14:57:01 +08007130 writeSleepStateToProto(proto, wakeFullness, testPssMode);
7131 if (mRunningVoice != null) {
7132 final long vrToken = proto.start(
7133 ActivityManagerServiceDumpProcessesProto.RUNNING_VOICE);
7134 proto.write(ActivityManagerServiceDumpProcessesProto.Voice.SESSION,
7135 mRunningVoice.toString());
Jeffrey Huangcb782852019-12-05 11:28:11 -08007136 mVoiceWakeLock.dumpDebug(
sanryhuang498e77e2018-12-06 14:57:01 +08007137 proto, ActivityManagerServiceDumpProcessesProto.Voice.WAKELOCK);
7138 proto.end(vrToken);
7139 }
Jeffrey Huangcb782852019-12-05 11:28:11 -08007140 mVrController.dumpDebug(proto,
sanryhuang498e77e2018-12-06 14:57:01 +08007141 ActivityManagerServiceDumpProcessesProto.VR_CONTROLLER);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007142 if (mController != null) {
7143 final long token = proto.start(CONTROLLER);
Wally Yau0eb29f62020-01-08 10:16:43 -08007144 proto.write(ActivityManagerServiceDumpProcessesProto.Controller.CONTROLLER,
7145 mController.toString());
Wale Ogunwale31913b52018-10-13 08:29:31 -07007146 proto.write(IS_A_MONKEY, mControllerIsAMonkey);
7147 proto.end(token);
7148 }
Jeffrey Huangcb782852019-12-05 11:28:11 -08007149 mStackSupervisor.mGoingToSleepWakeLock.dumpDebug(proto, GOING_TO_SLEEP);
7150 mStackSupervisor.mLaunchingActivityWakeLock.dumpDebug(proto,
Andrii Kulianc598b2d2019-02-07 17:16:38 -08007151 LAUNCHING_ACTIVITY);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007152 }
7153
7154 if (mHomeProcess != null && (dumpPackage == null
7155 || mHomeProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007156 mHomeProcess.dumpDebug(proto, HOME_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007157 }
7158
7159 if (mPreviousProcess != null && (dumpPackage == null
7160 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007161 mPreviousProcess.dumpDebug(proto, PREVIOUS_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007162 proto.write(PREVIOUS_PROC_VISIBLE_TIME_MS, mPreviousProcessVisibleTime);
7163 }
7164
7165 if (mHeavyWeightProcess != null && (dumpPackage == null
7166 || mHeavyWeightProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007167 mHeavyWeightProcess.dumpDebug(proto, HEAVY_WEIGHT_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007168 }
7169
7170 for (Map.Entry<String, Integer> entry
7171 : mCompatModePackages.getPackages().entrySet()) {
7172 String pkg = entry.getKey();
7173 int mode = entry.getValue();
7174 if (dumpPackage == null || dumpPackage.equals(pkg)) {
7175 long compatToken = proto.start(SCREEN_COMPAT_PACKAGES);
7176 proto.write(PACKAGE, pkg);
7177 proto.write(MODE, mode);
7178 proto.end(compatToken);
7179 }
7180 }
7181
7182 if (mCurAppTimeTracker != null) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007183 mCurAppTimeTracker.dumpDebug(proto, CURRENT_TRACKER, true);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007184 }
7185
7186 }
7187 }
7188
7189 @Override
7190 public boolean dumpActivity(FileDescriptor fd, PrintWriter pw, String name,
7191 String[] args, int opti, boolean dumpAll, boolean dumpVisibleStacksOnly,
7192 boolean dumpFocusedStackOnly) {
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08007193 return ActivityTaskManagerService.this.dumpActivity(fd, pw, name, args, opti, dumpAll,
7194 dumpVisibleStacksOnly, dumpFocusedStackOnly);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007195 }
7196
7197 @Override
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07007198 public void dumpForOom(PrintWriter pw) {
7199 synchronized (mGlobalLock) {
7200 pw.println(" mHomeProcess: " + mHomeProcess);
7201 pw.println(" mPreviousProcess: " + mPreviousProcess);
7202 if (mHeavyWeightProcess != null) {
7203 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
7204 }
7205 }
7206 }
7207
7208 @Override
Wale Ogunwale31913b52018-10-13 08:29:31 -07007209 public boolean canGcNow() {
7210 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007211 return isSleeping() || mRootWindowContainer.allResumedActivitiesIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007212 }
7213 }
7214
Riddle Hsua0536432019-02-16 00:38:59 +08007215 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale31913b52018-10-13 08:29:31 -07007216 @Override
7217 public WindowProcessController getTopApp() {
Riddle Hsud7088f82019-01-30 13:04:50 +08007218 synchronized (mGlobalLockWithoutBoost) {
Louis Chang149d5c82019-12-30 09:47:39 +08007219 if (mRootWindowContainer == null) {
7220 // Return null if mRootWindowContainer not yet initialize, while update
Louis Chang3ff72a82019-12-17 12:12:59 +08007221 // oomadj after AMS created.
7222 return null;
7223 }
Louis Chang149d5c82019-12-30 09:47:39 +08007224 final ActivityRecord top = mRootWindowContainer.getTopResumedActivity();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007225 return top != null ? top.app : null;
7226 }
7227 }
7228
Riddle Hsua0536432019-02-16 00:38:59 +08007229 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale31913b52018-10-13 08:29:31 -07007230 @Override
7231 public void rankTaskLayersIfNeeded() {
Riddle Hsud7088f82019-01-30 13:04:50 +08007232 synchronized (mGlobalLockWithoutBoost) {
Louis Chang149d5c82019-12-30 09:47:39 +08007233 if (mRootWindowContainer != null) {
7234 mRootWindowContainer.rankTaskLayersIfNeeded();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007235 }
7236 }
7237 }
7238
7239 @Override
7240 public void scheduleDestroyAllActivities(String reason) {
7241 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007242 mRootWindowContainer.scheduleDestroyAllActivities(reason);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007243 }
7244 }
7245
7246 @Override
7247 public void removeUser(int userId) {
7248 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007249 mRootWindowContainer.removeUser(userId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007250 }
7251 }
7252
7253 @Override
7254 public boolean switchUser(int userId, UserState userState) {
7255 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007256 return mRootWindowContainer.switchUser(userId, userState);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007257 }
7258 }
7259
7260 @Override
7261 public void onHandleAppCrash(WindowProcessController wpc) {
7262 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007263 mRootWindowContainer.handleAppCrash(wpc);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007264 }
7265 }
Wale Ogunwale64258362018-10-16 15:13:37 -07007266
7267 @Override
7268 public int finishTopCrashedActivities(WindowProcessController crashedApp, String reason) {
7269 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007270 return mRootWindowContainer.finishTopCrashedActivities(crashedApp, reason);
Wale Ogunwale64258362018-10-16 15:13:37 -07007271 }
7272 }
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007273
Riddle Hsua0536432019-02-16 00:38:59 +08007274 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007275 @Override
7276 public void onUidActive(int uid, int procState) {
Riddle Hsua0536432019-02-16 00:38:59 +08007277 mActiveUids.onUidActive(uid, procState);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007278 }
7279
Riddle Hsua0536432019-02-16 00:38:59 +08007280 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007281 @Override
7282 public void onUidInactive(int uid) {
Riddle Hsua0536432019-02-16 00:38:59 +08007283 mActiveUids.onUidInactive(uid);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007284 }
7285
Riddle Hsua0536432019-02-16 00:38:59 +08007286 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007287 @Override
7288 public void onActiveUidsCleared() {
Riddle Hsua0536432019-02-16 00:38:59 +08007289 mActiveUids.onActiveUidsCleared();
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007290 }
7291
Riddle Hsua0536432019-02-16 00:38:59 +08007292 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007293 @Override
7294 public void onUidProcStateChanged(int uid, int procState) {
Riddle Hsua0536432019-02-16 00:38:59 +08007295 mActiveUids.onUidProcStateChanged(uid, procState);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007296 }
Wale Ogunwale9de19442018-10-18 19:05:03 -07007297
7298 @Override
7299 public void onUidAddedToPendingTempWhitelist(int uid, String tag) {
Riddle Hsud7088f82019-01-30 13:04:50 +08007300 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9de19442018-10-18 19:05:03 -07007301 mPendingTempWhitelist.put(uid, tag);
7302 }
7303 }
7304
7305 @Override
7306 public void onUidRemovedFromPendingTempWhitelist(int uid) {
Riddle Hsud7088f82019-01-30 13:04:50 +08007307 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9de19442018-10-18 19:05:03 -07007308 mPendingTempWhitelist.remove(uid);
7309 }
7310 }
Wale Ogunwalee2172292018-10-25 10:11:10 -07007311
7312 @Override
7313 public boolean handleAppCrashInActivityController(String processName, int pid,
7314 String shortMsg, String longMsg, long timeMillis, String stackTrace,
7315 Runnable killCrashingAppCallback) {
7316 synchronized (mGlobalLock) {
7317 if (mController == null) {
7318 return false;
7319 }
7320
7321 try {
7322 if (!mController.appCrashed(processName, pid, shortMsg, longMsg, timeMillis,
7323 stackTrace)) {
7324 killCrashingAppCallback.run();
7325 return true;
7326 }
7327 } catch (RemoteException e) {
7328 mController = null;
7329 Watchdog.getInstance().setActivityController(null);
7330 }
7331 return false;
7332 }
7333 }
Wale Ogunwaled7889f52018-10-25 11:03:20 -07007334
7335 @Override
7336 public void removeRecentTasksByPackageName(String packageName, int userId) {
7337 synchronized (mGlobalLock) {
7338 mRecentTasks.removeTasksByPackageName(packageName, userId);
7339 }
7340 }
7341
7342 @Override
7343 public void cleanupRecentTasksForUser(int userId) {
7344 synchronized (mGlobalLock) {
7345 mRecentTasks.cleanupLocked(userId);
7346 }
7347 }
7348
7349 @Override
7350 public void loadRecentTasksForUser(int userId) {
7351 synchronized (mGlobalLock) {
7352 mRecentTasks.loadUserRecentsLocked(userId);
7353 }
7354 }
7355
7356 @Override
7357 public void onPackagesSuspendedChanged(String[] packages, boolean suspended, int userId) {
7358 synchronized (mGlobalLock) {
7359 mRecentTasks.onPackagesSuspendedChanged(packages, suspended, userId);
7360 }
7361 }
7362
7363 @Override
7364 public void flushRecentTasks() {
7365 mRecentTasks.flush();
7366 }
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07007367
7368 @Override
7369 public WindowProcessController getHomeProcess() {
7370 synchronized (mGlobalLock) {
7371 return mHomeProcess;
7372 }
7373 }
7374
7375 @Override
7376 public WindowProcessController getPreviousProcess() {
7377 synchronized (mGlobalLock) {
7378 return mPreviousProcess;
7379 }
7380 }
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07007381
7382 @Override
7383 public void clearLockedTasks(String reason) {
7384 synchronized (mGlobalLock) {
7385 getLockTaskController().clearLockedTasks(reason);
7386 }
7387 }
7388
7389 @Override
7390 public void updateUserConfiguration() {
7391 synchronized (mGlobalLock) {
7392 final Configuration configuration = new Configuration(getGlobalConfiguration());
7393 final int currentUserId = mAmInternal.getCurrentUserId();
7394 Settings.System.adjustConfigurationForUser(mContext.getContentResolver(),
7395 configuration, currentUserId, Settings.System.canWrite(mContext));
7396 updateConfigurationLocked(configuration, null /* starting */,
7397 false /* initLocale */, false /* persistent */, currentUserId,
7398 false /* deferResume */);
7399 }
7400 }
Wale Ogunwale387b34c2018-10-25 19:59:40 -07007401
7402 @Override
7403 public boolean canShowErrorDialogs() {
7404 synchronized (mGlobalLock) {
7405 return mShowDialogs && !mSleeping && !mShuttingDown
7406 && !mKeyguardController.isKeyguardOrAodShowing(DEFAULT_DISPLAY)
7407 && !hasUserRestriction(UserManager.DISALLOW_SYSTEM_ERROR_DIALOGS,
7408 mAmInternal.getCurrentUserId())
7409 && !(UserManager.isDeviceInDemoMode(mContext)
7410 && mAmInternal.getCurrentUser().isDemo());
7411 }
7412 }
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -08007413
7414 @Override
7415 public void setProfileApp(String profileApp) {
7416 synchronized (mGlobalLock) {
7417 mProfileApp = profileApp;
7418 }
7419 }
7420
7421 @Override
7422 public void setProfileProc(WindowProcessController wpc) {
7423 synchronized (mGlobalLock) {
7424 mProfileProc = wpc;
7425 }
7426 }
7427
7428 @Override
7429 public void setProfilerInfo(ProfilerInfo profilerInfo) {
7430 synchronized (mGlobalLock) {
7431 mProfilerInfo = profilerInfo;
7432 }
7433 }
Igor Murashkinc0b47e42018-11-07 15:54:18 -08007434
7435 @Override
7436 public ActivityMetricsLaunchObserverRegistry getLaunchObserverRegistry() {
7437 synchronized (mGlobalLock) {
7438 return mStackSupervisor.getActivityMetricsLogger().getLaunchObserverRegistry();
7439 }
7440 }
Winson Chung3fb0f252019-01-08 17:41:55 -08007441
7442 @Override
Zak Cohen84b43182020-03-09 14:36:01 -07007443 public ActivityManager.TaskSnapshot getTaskSnapshotBlocking(
7444 int taskId, boolean isLowResolution) {
Peter Kalauskas4dc04602020-02-12 18:49:03 -08007445 return ActivityTaskManagerService.this.getTaskSnapshot(taskId, isLowResolution,
Zak Cohen84b43182020-03-09 14:36:01 -07007446 true /* restoreFromDisk */);
Winson Chung3fb0f252019-01-08 17:41:55 -08007447 }
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00007448
7449 @Override
7450 public boolean isUidForeground(int uid) {
7451 synchronized (mGlobalLock) {
7452 return ActivityTaskManagerService.this.isUidForeground(uid);
7453 }
7454 }
Michal Karpinski4026cae2019-02-12 11:51:47 +00007455
7456 @Override
Ricky Wai96f5c352019-04-10 18:40:17 +01007457 public void setDeviceOwnerUid(int uid) {
Michal Karpinski4026cae2019-02-12 11:51:47 +00007458 synchronized (mGlobalLock) {
Ricky Wai96f5c352019-04-10 18:40:17 +01007459 ActivityTaskManagerService.this.setDeviceOwnerUid(uid);
Michal Karpinski4026cae2019-02-12 11:51:47 +00007460 }
7461 }
Ricky Wai2452e2d2019-03-18 19:19:08 +00007462
7463 @Override
7464 public void setCompanionAppPackages(int userId, Set<String> companionAppPackages) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007465 // Translate package names into UIDs
7466 final Set<Integer> result = new HashSet<>();
Ricky Wai2452e2d2019-03-18 19:19:08 +00007467 for (String pkg : companionAppPackages) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007468 final int uid = getPackageManagerInternalLocked().getPackageUid(pkg, 0, userId);
7469 if (uid >= 0) {
7470 result.add(uid);
7471 }
Ricky Wai2452e2d2019-03-18 19:19:08 +00007472 }
7473 synchronized (mGlobalLock) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007474 mCompanionAppUidsMap.put(userId, result);
Ricky Wai2452e2d2019-03-18 19:19:08 +00007475 }
7476 }
Wale Ogunwale6767eae2018-05-03 15:52:51 -07007477 }
Wale Ogunwaleb73f3962018-11-20 07:58:22 -08007478}