blob: ea5a71a7200ed77bb58e6b8a95625b7abbbb17ca [file] [log] [blame]
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
Wale Ogunwale59507092018-10-29 09:00:30 -070017package com.android.server.wm;
Wale Ogunwale65ebd952018-04-25 15:41:44 -070018
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070019import static android.Manifest.permission.BIND_VOICE_INTERACTION;
20import static android.Manifest.permission.CHANGE_CONFIGURATION;
21import static android.Manifest.permission.CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS;
Nicholas Sauer0259e532019-08-30 08:24:55 -070022import static android.Manifest.permission.INTERACT_ACROSS_USERS;
23import static android.Manifest.permission.INTERACT_ACROSS_USERS_FULL;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070024import static android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
Wale Ogunwale65ebd952018-04-25 15:41:44 -070025import static android.Manifest.permission.MANAGE_ACTIVITY_STACKS;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070026import static android.Manifest.permission.READ_FRAME_BUFFER;
27import static android.Manifest.permission.REMOVE_TASKS;
28import static android.Manifest.permission.START_TASKS_FROM_RECENTS;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070029import static android.Manifest.permission.STOP_APP_SWITCHES;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070030import static android.app.ActivityManager.LOCK_TASK_MODE_NONE;
Jonathan Scott92335342019-12-17 14:46:26 +000031import static android.app.ActivityManagerInternal.ALLOW_NON_FULL;
Yunfan Chen79b96062018-10-17 12:45:23 -070032import static android.app.ActivityTaskManager.INVALID_TASK_ID;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070033import static android.app.ActivityTaskManager.RESIZE_MODE_PRESERVE_WINDOW;
Wale Ogunwale65ebd952018-04-25 15:41:44 -070034import static android.app.ActivityTaskManager.SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT;
35import static android.app.WindowConfiguration.ACTIVITY_TYPE_UNDEFINED;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070036import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
37import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
Wale Ogunwale65ebd952018-04-25 15:41:44 -070038import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
39import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070040import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_SECONDARY;
Wale Ogunwale65ebd952018-04-25 15:41:44 -070041import static android.app.WindowConfiguration.WINDOWING_MODE_UNDEFINED;
Wale Ogunwale31913b52018-10-13 08:29:31 -070042import static android.content.Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070043import static android.content.Intent.FLAG_ACTIVITY_NEW_TASK;
Wale Ogunwale214f3482018-10-04 11:00:47 -070044import static android.content.pm.ApplicationInfo.FLAG_FACTORY_TEST;
Wale Ogunwale342fbe92018-10-09 08:44:10 -070045import static android.content.pm.ConfigurationInfo.GL_ES_VERSION_UNDEFINED;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070046import static android.content.pm.PackageManager.FEATURE_ACTIVITIES_ON_SECONDARY_DISPLAYS;
47import static android.content.pm.PackageManager.FEATURE_FREEFORM_WINDOW_MANAGEMENT;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070048import static android.content.pm.PackageManager.FEATURE_PICTURE_IN_PICTURE;
Wale Ogunwaled0412b32018-05-08 09:25:50 -070049import static android.content.pm.PackageManager.PERMISSION_GRANTED;
Wale Ogunwale214f3482018-10-04 11:00:47 -070050import static android.os.FactoryTest.FACTORY_TEST_HIGH_LEVEL;
51import static android.os.FactoryTest.FACTORY_TEST_LOW_LEVEL;
52import static android.os.FactoryTest.FACTORY_TEST_OFF;
Wale Ogunwale31913b52018-10-13 08:29:31 -070053import static android.os.Process.FIRST_APPLICATION_UID;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070054import static android.os.Process.SYSTEM_UID;
Riddle Hsu2ca561b2019-10-08 21:58:58 +080055import static android.os.Trace.TRACE_TAG_WINDOW_MANAGER;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070056import static android.provider.Settings.Global.DEVELOPMENT_ENABLE_FREEFORM_WINDOWS_SUPPORT;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -070057import static android.provider.Settings.Global.DEVELOPMENT_ENABLE_SIZECOMPAT_FREEFORM;
Wale Ogunwalea6191b42018-05-09 07:41:32 -070058import static android.provider.Settings.Global.DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES;
59import static android.provider.Settings.Global.DEVELOPMENT_FORCE_RTL;
Evan Rosky4505b352018-09-06 11:20:40 -070060import static android.provider.Settings.Global.HIDE_ERROR_DIALOGS;
61import static android.provider.Settings.System.FONT_SCALE;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070062import static android.service.voice.VoiceInteractionSession.SHOW_SOURCE_APPLICATION;
Alison Cichowlas3e340502018-08-07 17:15:01 -040063import static android.text.format.DateUtils.MINUTE_IN_MILLIS;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -070064import static android.view.Display.DEFAULT_DISPLAY;
65import static android.view.Display.INVALID_DISPLAY;
Wale Ogunwale6767eae2018-05-03 15:52:51 -070066import static android.view.WindowManager.TRANSIT_NONE;
Evan Rosky4505b352018-09-06 11:20:40 -070067
Yunfan Chen79b96062018-10-17 12:45:23 -070068import static com.android.server.am.ActivityManagerService.ANR_TRACE_DIR;
69import static com.android.server.am.ActivityManagerService.MY_PID;
70import static com.android.server.am.ActivityManagerService.STOCK_PM_FLAGS;
71import static com.android.server.am.ActivityManagerService.dumpStackTraces;
Wale Ogunwalef342f062020-01-27 07:34:13 -080072import static com.android.server.am.ActivityManagerServiceDumpActivitiesProto.ROOT_WINDOW_CONTAINER;
Wale Ogunwale31913b52018-10-13 08:29:31 -070073import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.CONFIG_WILL_CHANGE;
74import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.CONTROLLER;
75import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.CURRENT_TRACKER;
76import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.Controller.IS_A_MONKEY;
77import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.GLOBAL_CONFIGURATION;
78import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.GOING_TO_SLEEP;
79import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.HEAVY_WEIGHT_PROC;
80import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.HOME_PROC;
81import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.LAUNCHING_ACTIVITY;
82import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.PREVIOUS_PROC;
Yunfan Chen279f5582018-12-12 15:24:50 -080083import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.PREVIOUS_PROC_VISIBLE_TIME_MS;
Wale Ogunwale31913b52018-10-13 08:29:31 -070084import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.SCREEN_COMPAT_PACKAGES;
Yunfan Chen279f5582018-12-12 15:24:50 -080085import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.ScreenCompatPackage.MODE;
86import static com.android.server.am.ActivityManagerServiceDumpProcessesProto.ScreenCompatPackage.PACKAGE;
Jeff Changd136e772019-11-05 20:33:52 +080087import static com.android.server.am.EventLogTags.writeBootProgressEnableScreen;
88import static com.android.server.am.EventLogTags.writeConfigurationChanged;
Andrii Kulianf49a58c2019-08-14 17:34:27 -070089import static com.android.server.wm.ActivityStack.ActivityState.DESTROYED;
90import static com.android.server.wm.ActivityStack.ActivityState.DESTROYING;
Wale Ogunwale59507092018-10-29 09:00:30 -070091import static com.android.server.wm.ActivityStackSupervisor.DEFER_RESUME;
Wale Ogunwale59507092018-10-29 09:00:30 -070092import static com.android.server.wm.ActivityStackSupervisor.ON_TOP;
93import static com.android.server.wm.ActivityStackSupervisor.PRESERVE_WINDOWS;
94import static com.android.server.wm.ActivityStackSupervisor.REMOVE_FROM_RECENTS;
95import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_ALL;
96import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_CONFIGURATION;
97import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_FOCUS;
98import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_IMMERSIVE;
99import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_LOCKTASK;
100import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_STACK;
101import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_SWITCH;
102import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_TASKS;
103import static com.android.server.wm.ActivityTaskManagerDebugConfig.DEBUG_VISIBILITY;
104import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_CONFIGURATION;
105import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_FOCUS;
106import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_IMMERSIVE;
107import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_LOCKTASK;
108import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_STACK;
109import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_SWITCH;
110import static com.android.server.wm.ActivityTaskManagerDebugConfig.POSTFIX_VISIBILITY;
111import static com.android.server.wm.ActivityTaskManagerDebugConfig.TAG_ATM;
112import static com.android.server.wm.ActivityTaskManagerDebugConfig.TAG_WITH_CLASS_NAME;
Evan Rosky4505b352018-09-06 11:20:40 -0700113import static com.android.server.wm.ActivityTaskManagerInternal.ASSIST_KEY_CONTENT;
114import static com.android.server.wm.ActivityTaskManagerInternal.ASSIST_KEY_DATA;
115import static com.android.server.wm.ActivityTaskManagerInternal.ASSIST_KEY_RECEIVER_EXTRAS;
116import static com.android.server.wm.ActivityTaskManagerInternal.ASSIST_KEY_STRUCTURE;
wilsonshihe7903ea2018-09-26 16:17:59 +0800117import static com.android.server.wm.ActivityTaskManagerService.H.REPORT_TIME_TRACKER_MSG;
118import static com.android.server.wm.ActivityTaskManagerService.UiHandler.DISMISS_DIALOG_UI_MSG;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700119import static com.android.server.wm.RecentsAnimationController.REORDER_KEEP_IN_PLACE;
120import static com.android.server.wm.RecentsAnimationController.REORDER_MOVE_TO_ORIGINAL_POSITION;
Louis Chang149d5c82019-12-30 09:47:39 +0800121import static com.android.server.wm.RootWindowContainer.MATCH_TASK_IN_STACKS_ONLY;
122import static com.android.server.wm.RootWindowContainer.MATCH_TASK_IN_STACKS_OR_RECENT_TASKS;
Louis Changcdec0802019-11-11 11:45:07 +0800123import static com.android.server.wm.Task.LOCK_TASK_AUTH_DONT_LOCK;
124import static com.android.server.wm.Task.REPARENT_KEEP_STACK_AT_FRONT;
125import static com.android.server.wm.Task.REPARENT_LEAVE_STACK_IN_PLACE;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700126
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700127import android.Manifest;
Riddle Hsua0022cd2019-09-09 21:12:41 +0800128import android.annotation.IntDef;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700129import android.annotation.NonNull;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700130import android.annotation.Nullable;
131import android.annotation.UserIdInt;
132import android.app.Activity;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700133import android.app.ActivityManager;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700134import android.app.ActivityManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700135import android.app.ActivityOptions;
136import android.app.ActivityTaskManager;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700137import android.app.ActivityThread;
138import android.app.AlertDialog;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700139import android.app.AppGlobals;
Michal Karpinski15486842019-04-25 17:33:42 +0100140import android.app.AppOpsManager;
Evan Rosky4505b352018-09-06 11:20:40 -0700141import android.app.Dialog;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700142import android.app.IActivityController;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700143import android.app.IActivityTaskManager;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700144import android.app.IApplicationThread;
145import android.app.IAssistDataReceiver;
Wale Ogunwale53783742018-09-16 10:21:51 -0700146import android.app.INotificationManager;
Mark Renouf446251d2019-04-26 10:22:41 -0400147import android.app.IRequestFinishCallback;
Evan Rosky0037e5f2019-11-05 10:26:24 -0800148import android.app.ITaskOrganizerController;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700149import android.app.ITaskStackListener;
Wale Ogunwale53783742018-09-16 10:21:51 -0700150import android.app.Notification;
151import android.app.NotificationManager;
152import android.app.PendingIntent;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700153import android.app.PictureInPictureParams;
154import android.app.ProfilerInfo;
155import android.app.RemoteAction;
156import android.app.WaitResult;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700157import android.app.WindowConfiguration;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700158import android.app.admin.DevicePolicyCache;
159import android.app.assist.AssistContent;
160import android.app.assist.AssistStructure;
jorgegil@google.com06bc3232019-10-31 14:51:22 -0700161import android.app.servertransaction.ClientTransaction;
162import android.app.servertransaction.EnterPipRequestedItem;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700163import android.app.usage.UsageStatsManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700164import android.content.ActivityNotFoundException;
165import android.content.ComponentName;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700166import android.content.ContentResolver;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700167import android.content.Context;
Evan Rosky4505b352018-09-06 11:20:40 -0700168import android.content.DialogInterface;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700169import android.content.IIntentSender;
170import android.content.Intent;
171import android.content.pm.ActivityInfo;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700172import android.content.pm.ApplicationInfo;
Yunfan Chen75157d72018-07-27 14:47:21 +0900173import android.content.pm.ConfigurationInfo;
Evan Rosky4505b352018-09-06 11:20:40 -0700174import android.content.pm.IPackageManager;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700175import android.content.pm.PackageManager;
Evan Rosky4505b352018-09-06 11:20:40 -0700176import android.content.pm.PackageManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700177import android.content.pm.ParceledListSlice;
178import android.content.pm.ResolveInfo;
Wale Ogunwale53783742018-09-16 10:21:51 -0700179import android.content.res.CompatibilityInfo;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700180import android.content.res.Configuration;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700181import android.content.res.Resources;
Evan Rosky4505b352018-09-06 11:20:40 -0700182import android.database.ContentObserver;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700183import android.graphics.Bitmap;
184import android.graphics.Point;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700185import android.graphics.Rect;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700186import android.metrics.LogMaker;
187import android.net.Uri;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700188import android.os.Binder;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700189import android.os.Build;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700190import android.os.Bundle;
Wale Ogunwale214f3482018-10-04 11:00:47 -0700191import android.os.FactoryTest;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700192import android.os.FileUtils;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700193import android.os.Handler;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700194import android.os.IBinder;
Evan Rosky4505b352018-09-06 11:20:40 -0700195import android.os.IUserManager;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700196import android.os.LocaleList;
Riddle Hsud93a6c42018-11-29 21:50:06 +0800197import android.os.Looper;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700198import android.os.Message;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700199import android.os.PersistableBundle;
Evan Rosky4505b352018-09-06 11:20:40 -0700200import android.os.PowerManager;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700201import android.os.PowerManagerInternal;
Marvin Ramin830d4e32019-03-12 13:16:58 +0100202import android.os.Process;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700203import android.os.RemoteException;
Evan Rosky4505b352018-09-06 11:20:40 -0700204import android.os.ServiceManager;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700205import android.os.StrictMode;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700206import android.os.SystemClock;
207import android.os.SystemProperties;
Evan Rosky4505b352018-09-06 11:20:40 -0700208import android.os.Trace;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700209import android.os.UpdateLock;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700210import android.os.UserHandle;
Evan Rosky4505b352018-09-06 11:20:40 -0700211import android.os.UserManager;
212import android.os.WorkSource;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700213import android.os.storage.IStorageManager;
214import android.os.storage.StorageManager;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700215import android.provider.Settings;
216import android.service.voice.IVoiceInteractionSession;
217import android.service.voice.VoiceInteractionManagerInternal;
Kiyoung Kim0fe161d2018-12-20 18:26:10 +0900218import android.sysprop.DisplayProperties;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700219import android.telecom.TelecomManager;
220import android.text.TextUtils;
Neil Fuller97746812019-08-19 14:20:50 +0100221import android.text.format.TimeMigrationUtils;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700222import android.util.ArrayMap;
Nicholas Sauer3f9249f2019-09-10 20:23:41 -0700223import android.util.ArraySet;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700224import android.util.Log;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700225import android.util.Slog;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700226import android.util.SparseArray;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700227import android.util.TimeUtils;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700228import android.util.proto.ProtoOutputStream;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700229import android.view.IRecentsAnimationRunner;
230import android.view.RemoteAnimationAdapter;
231import android.view.RemoteAnimationDefinition;
Evan Rosky4505b352018-09-06 11:20:40 -0700232import android.view.WindowManager;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700233
Evan Rosky4505b352018-09-06 11:20:40 -0700234import com.android.internal.R;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700235import com.android.internal.annotations.VisibleForTesting;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700236import com.android.internal.app.AssistUtils;
237import com.android.internal.app.IVoiceInteractor;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700238import com.android.internal.app.ProcessMap;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700239import com.android.internal.logging.MetricsLogger;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700240import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
Wale Ogunwale53783742018-09-16 10:21:51 -0700241import com.android.internal.messages.nano.SystemMessageProto.SystemMessage;
242import com.android.internal.notification.SystemNotificationChannels;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700243import com.android.internal.os.TransferPipe;
Evan Rosky4505b352018-09-06 11:20:40 -0700244import com.android.internal.os.logging.MetricsLoggerWrapper;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700245import com.android.internal.policy.IKeyguardDismissCallback;
246import com.android.internal.policy.KeyguardDismissCallback;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700247import com.android.internal.util.ArrayUtils;
248import com.android.internal.util.FastPrintWriter;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -0800249import com.android.internal.util.FrameworkStatsLog;
Wale Ogunwalea38654f2019-11-17 20:37:15 -0800250import com.android.internal.util.function.pooled.PooledConsumer;
251import com.android.internal.util.function.pooled.PooledFunction;
Wale Ogunwale53783742018-09-16 10:21:51 -0700252import com.android.internal.util.function.pooled.PooledLambda;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700253import com.android.server.AttributeCache;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700254import com.android.server.LocalServices;
255import com.android.server.SystemService;
Evan Rosky4505b352018-09-06 11:20:40 -0700256import com.android.server.SystemServiceManager;
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800257import com.android.server.UiThread;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700258import com.android.server.Watchdog;
Wale Ogunwale59507092018-10-29 09:00:30 -0700259import com.android.server.am.ActivityManagerService;
Wale Ogunwale59507092018-10-29 09:00:30 -0700260import com.android.server.am.ActivityManagerServiceDumpProcessesProto;
261import com.android.server.am.AppTimeTracker;
262import com.android.server.am.BaseErrorDialog;
Wale Ogunwale59507092018-10-29 09:00:30 -0700263import com.android.server.am.PendingIntentController;
264import com.android.server.am.PendingIntentRecord;
265import com.android.server.am.UserState;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700266import com.android.server.firewall.IntentFirewall;
Tarandeep Singh07b318b2019-07-17 11:12:04 -0700267import com.android.server.inputmethod.InputMethodSystemProperty;
Evan Rosky4505b352018-09-06 11:20:40 -0700268import com.android.server.pm.UserManagerService;
Hai Zhangf4da9be2019-05-01 13:46:06 +0800269import com.android.server.policy.PermissionPolicyInternal;
Evan Rosky4505b352018-09-06 11:20:40 -0700270import com.android.server.uri.UriGrantsManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700271import com.android.server.vr.VrManagerInternal;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700272
Wale Ogunwale31913b52018-10-13 08:29:31 -0700273import java.io.BufferedReader;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700274import java.io.File;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700275import java.io.FileDescriptor;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700276import java.io.FileOutputStream;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700277import java.io.FileReader;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700278import java.io.IOException;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700279import java.io.PrintWriter;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700280import java.io.StringWriter;
Riddle Hsua0536432019-02-16 00:38:59 +0800281import java.lang.annotation.ElementType;
282import java.lang.annotation.Retention;
283import java.lang.annotation.RetentionPolicy;
284import java.lang.annotation.Target;
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700285import java.lang.ref.WeakReference;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700286import java.text.DateFormat;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700287import java.util.ArrayList;
Wale Ogunwale27c48ae2018-10-25 19:01:01 -0700288import java.util.Arrays;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700289import java.util.Date;
Alison Cichowlas3e340502018-08-07 17:15:01 -0400290import java.util.HashMap;
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700291import java.util.HashSet;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700292import java.util.List;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700293import java.util.Locale;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700294import java.util.Map;
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +0000295import java.util.Objects;
Wale Ogunwale31913b52018-10-13 08:29:31 -0700296import java.util.Set;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700297
298/**
299 * System service for managing activities and their containers (task, stacks, displays,... ).
300 *
301 * {@hide}
302 */
303public class ActivityTaskManagerService extends IActivityTaskManager.Stub {
Wale Ogunwale98875612018-10-12 07:53:02 -0700304 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityTaskManagerService" : TAG_ATM;
Wale Ogunwale8f93b642019-12-26 12:10:52 -0800305 static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale196db712019-12-27 15:35:39 +0000306 static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700307 private static final String TAG_IMMERSIVE = TAG + POSTFIX_IMMERSIVE;
308 private static final String TAG_FOCUS = TAG + POSTFIX_FOCUS;
309 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
310 private static final String TAG_LOCKTASK = TAG + POSTFIX_LOCKTASK;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700311 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700312
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700313 // How long we wait until we timeout on key dispatching.
Wale Ogunwale51cc98a2018-10-15 10:41:05 -0700314 public static final int KEY_DISPATCHING_TIMEOUT_MS = 5 * 1000;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700315 // How long we wait until we timeout on key dispatching during instrumentation.
Wale Ogunwale51cc98a2018-10-15 10:41:05 -0700316 static final int INSTRUMENTATION_KEY_DISPATCHING_TIMEOUT_MS = 60 * 1000;
Michal Karpinskifc6872e2019-05-21 15:18:44 +0100317 // How long we permit background activity starts after an activity in the process
318 // started or finished.
319 static final long ACTIVITY_BG_START_GRACE_PERIOD_MS = 10 * 1000;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700320
Wale Ogunwale98875612018-10-12 07:53:02 -0700321 /** Used to indicate that an app transition should be animated. */
322 static final boolean ANIMATE = true;
323
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700324 /** Hardware-reported OpenGLES version. */
325 final int GL_ES_VERSION;
326
Wale Ogunwale31913b52018-10-13 08:29:31 -0700327 public static final String DUMP_ACTIVITIES_CMD = "activities" ;
328 public static final String DUMP_ACTIVITIES_SHORT_CMD = "a" ;
329 public static final String DUMP_LASTANR_CMD = "lastanr" ;
330 public static final String DUMP_LASTANR_TRACES_CMD = "lastanr-traces" ;
331 public static final String DUMP_STARTER_CMD = "starter" ;
332 public static final String DUMP_CONTAINERS_CMD = "containers" ;
333 public static final String DUMP_RECENTS_CMD = "recents" ;
334 public static final String DUMP_RECENTS_SHORT_CMD = "r" ;
335
Wale Ogunwale64258362018-10-16 15:13:37 -0700336 /** This activity is not being relaunched, or being relaunched for a non-resize reason. */
337 public static final int RELAUNCH_REASON_NONE = 0;
338 /** This activity is being relaunched due to windowing mode change. */
339 public static final int RELAUNCH_REASON_WINDOWING_MODE_RESIZE = 1;
340 /** This activity is being relaunched due to a free-resize operation. */
341 public static final int RELAUNCH_REASON_FREE_RESIZE = 2;
342
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700343 Context mContext;
Wale Ogunwale64258362018-10-16 15:13:37 -0700344
Wale Ogunwalef6733932018-06-27 05:14:34 -0700345 /**
346 * This Context is themable and meant for UI display (AlertDialogs, etc.). The theme can
347 * change at runtime. Use mContext for non-UI purposes.
348 */
349 final Context mUiContext;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700350 final ActivityThread mSystemThread;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700351 H mH;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700352 UiHandler mUiHandler;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700353 ActivityManagerInternal mAmInternal;
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -0700354 UriGrantsManagerInternal mUgmInternal;
Wale Ogunwale906f9c62018-07-23 11:23:44 -0700355 private PackageManagerInternal mPmInternal;
Hai Zhangf4da9be2019-05-01 13:46:06 +0800356 private PermissionPolicyInternal mPermissionPolicyInternal;
Wale Ogunwaleb73f3962018-11-20 07:58:22 -0800357 @VisibleForTesting
358 final ActivityTaskManagerInternal mInternal;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700359 PowerManagerInternal mPowerManagerInternal;
360 private UsageStatsManagerInternal mUsageStatsInternal;
361
Wale Ogunwaleee6eca12018-09-19 20:37:53 -0700362 PendingIntentController mPendingIntentController;
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700363 IntentFirewall mIntentFirewall;
364
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700365 /* Global service lock used by the package the owns this service. */
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800366 final WindowManagerGlobalLock mGlobalLock = new WindowManagerGlobalLock();
Riddle Hsud7088f82019-01-30 13:04:50 +0800367 /**
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700368 * It is the same instance as {@link #mGlobalLock}, just declared as a type that the
Riddle Hsud7088f82019-01-30 13:04:50 +0800369 * locked-region-code-injection does't recognize it. It is used to skip wrapping priority
370 * booster for places that are already in the scope of another booster (e.g. computing oom-adj).
371 *
372 * @see WindowManagerThreadPriorityBooster
373 */
374 final Object mGlobalLockWithoutBoost = mGlobalLock;
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700375 ActivityStackSupervisor mStackSupervisor;
Louis Chang149d5c82019-12-30 09:47:39 +0800376 RootWindowContainer mRootWindowContainer;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700377 WindowManagerService mWindowManager;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700378 private UserManagerService mUserManager;
Philip P. Moltmannee295092020-02-10 08:46:26 -0800379 private AppOpsManager mAppOpsManager;
Wale Ogunwalebff2df42018-10-18 17:09:19 -0700380 /** All active uids in the system. */
Riddle Hsua0536432019-02-16 00:38:59 +0800381 private final MirrorActiveUids mActiveUids = new MirrorActiveUids();
Wale Ogunwale9de19442018-10-18 19:05:03 -0700382 private final SparseArray<String> mPendingTempWhitelist = new SparseArray<>();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700383 /** All processes currently running that might have a window organized by name. */
384 final ProcessMap<WindowProcessController> mProcessNames = new ProcessMap<>();
Michal Karpinski2e0aad22019-04-12 16:22:55 +0100385 /** All processes we currently have running mapped by pid and uid */
386 final WindowProcessControllerMap mProcessMap = new WindowProcessControllerMap();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700387 /** This is the process holding what we currently consider to be the "home" activity. */
388 WindowProcessController mHomeProcess;
Wale Ogunwale53783742018-09-16 10:21:51 -0700389 /** The currently running heavy-weight process, if any. */
390 WindowProcessController mHeavyWeightProcess = null;
Wale Ogunwale214f3482018-10-04 11:00:47 -0700391 boolean mHasHeavyWeightFeature;
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700392 /**
393 * This is the process holding the activity the user last visited that is in a different process
394 * from the one they are currently in.
395 */
396 WindowProcessController mPreviousProcess;
397 /** The time at which the previous process was last visible. */
398 long mPreviousProcessVisibleTime;
399
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700400 /** List of intents that were used to start the most recent tasks. */
401 private RecentTasks mRecentTasks;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700402 /** State of external calls telling us if the device is awake or asleep. */
403 private boolean mKeyguardShown = false;
404
405 // Wrapper around VoiceInteractionServiceManager
406 private AssistUtils mAssistUtils;
407
408 // VoiceInteraction session ID that changes for each new request except when
409 // being called for multi-window assist in a single session.
410 private int mViSessionId = 1000;
411
412 // How long to wait in getAssistContextExtras for the activity and foreground services
413 // to respond with the result.
414 private static final int PENDING_ASSIST_EXTRAS_TIMEOUT = 500;
415
416 // How long top wait when going through the modern assist (which doesn't need to block
417 // on getting this result before starting to launch its UI).
418 private static final int PENDING_ASSIST_EXTRAS_LONG_TIMEOUT = 2000;
419
420 // How long to wait in getAutofillAssistStructure() for the activity to respond with the result.
421 private static final int PENDING_AUTOFILL_ASSIST_STRUCTURE_TIMEOUT = 2000;
422
Alison Cichowlas3e340502018-08-07 17:15:01 -0400423 // Permission tokens are used to temporarily granted a trusted app the ability to call
424 // #startActivityAsCaller. A client is expected to dump its token after this time has elapsed,
425 // showing any appropriate error messages to the user.
426 private static final long START_AS_CALLER_TOKEN_TIMEOUT =
427 10 * MINUTE_IN_MILLIS;
428
429 // How long before the service actually expires a token. This is slightly longer than
430 // START_AS_CALLER_TOKEN_TIMEOUT, to provide a buffer so clients will rarely encounter the
431 // expiration exception.
432 private static final long START_AS_CALLER_TOKEN_TIMEOUT_IMPL =
433 START_AS_CALLER_TOKEN_TIMEOUT + 2 * 1000;
434
435 // How long the service will remember expired tokens, for the purpose of providing error
436 // messaging when a client uses an expired token.
437 private static final long START_AS_CALLER_TOKEN_EXPIRED_TIMEOUT =
438 START_AS_CALLER_TOKEN_TIMEOUT_IMPL + 20 * MINUTE_IN_MILLIS;
439
440 // Activity tokens of system activities that are delegating their call to
441 // #startActivityByCaller, keyed by the permissionToken granted to the delegate.
442 final HashMap<IBinder, IBinder> mStartActivitySources = new HashMap<>();
443
444 // Permission tokens that have expired, but we remember for error reporting.
445 final ArrayList<IBinder> mExpiredStartAsCallerTokens = new ArrayList<>();
446
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700447 private final ArrayList<PendingAssistExtras> mPendingAssistExtras = new ArrayList<>();
448
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700449 // Keeps track of the active voice interaction service component, notified from
450 // VoiceInteractionManagerService
451 ComponentName mActiveVoiceInteractionServiceComponent;
452
Michal Karpinskida34cd42019-04-02 19:46:52 +0100453 // A map userId and all its companion app uids
454 private final Map<Integer, Set<Integer>> mCompanionAppUidsMap = new ArrayMap<>();
Ricky Wai2452e2d2019-03-18 19:19:08 +0000455
Wale Ogunwalee2172292018-10-25 10:11:10 -0700456 VrController mVrController;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700457 KeyguardController mKeyguardController;
458 private final ClientLifecycleManager mLifecycleManager;
459 private TaskChangeNotificationController mTaskChangeNotificationController;
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700460 /** The controller for all operations related to locktask. */
461 private LockTaskController mLockTaskController;
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -0700462 private ActivityStartController mActivityStartController;
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700463
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700464 boolean mSuppressResizeConfigChanges;
465
Shivam Agrawal1d3db652019-07-01 15:26:11 -0700466 final UpdateConfigurationResult mTmpUpdateConfigurationResult =
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700467 new UpdateConfigurationResult();
468
469 static final class UpdateConfigurationResult {
470 // Configuration changes that were updated.
471 int changes;
472 // If the activity was relaunched to match the new configuration.
473 boolean activityRelaunched;
474
475 void reset() {
476 changes = 0;
477 activityRelaunched = false;
478 }
479 }
480
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700481 /** Current sequencing integer of the configuration, for skipping old configurations. */
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700482 private int mConfigurationSeq;
483 // To cache the list of supported system locales
484 private String[] mSupportedSystemLocales = null;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700485
486 /**
487 * Temp object used when global and/or display override configuration is updated. It is also
488 * sent to outer world instead of {@link #getGlobalConfiguration} because we don't trust
489 * anyone...
490 */
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700491 private Configuration mTempConfig = new Configuration();
492
Wale Ogunwalef6733932018-06-27 05:14:34 -0700493 /** Temporary to avoid allocations. */
494 final StringBuilder mStringBuilder = new StringBuilder(256);
495
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700496 // Amount of time after a call to stopAppSwitches() during which we will
497 // prevent further untrusted switches from happening.
498 private static final long APP_SWITCH_DELAY_TIME = 5 * 1000;
499
500 /**
501 * The time at which we will allow normal application switches again,
502 * after a call to {@link #stopAppSwitches()}.
503 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700504 private long mAppSwitchesAllowedTime;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700505 /**
506 * This is set to true after the first switch after mAppSwitchesAllowedTime
507 * is set; any switches after that will clear the time.
508 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700509 private boolean mDidAppSwitch;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700510
Ricky Wai906af482019-06-03 17:25:28 +0100511 /**
512 * Last stop app switches time, apps finished before this time cannot start background activity
513 * even if they are in grace period.
514 */
515 private long mLastStopAppSwitchesTime;
516
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700517 IActivityController mController = null;
518 boolean mControllerIsAMonkey = false;
519
Wale Ogunwale214f3482018-10-04 11:00:47 -0700520 final int mFactoryTest;
521
522 /** Used to control how we initialize the service. */
523 ComponentName mTopComponent;
524 String mTopAction = Intent.ACTION_MAIN;
525 String mTopData;
526
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800527 /** Profiling app information. */
528 String mProfileApp = null;
529 WindowProcessController mProfileProc = null;
530 ProfilerInfo mProfilerInfo = null;
531
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700532 /**
Wale Ogunwale31913b52018-10-13 08:29:31 -0700533 * Dump of the activity state at the time of the last ANR. Cleared after
534 * {@link WindowManagerService#LAST_ANR_LIFETIME_DURATION_MSECS}
535 */
536 String mLastANRState;
537
538 /**
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700539 * Used to retain an update lock when the foreground activity is in
540 * immersive mode.
541 */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700542 private final UpdateLock mUpdateLock = new UpdateLock("immersive");
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700543
544 /**
545 * Packages that are being allowed to perform unrestricted app switches. Mapping is
546 * User -> Type -> uid.
547 */
548 final SparseArray<ArrayMap<String, Integer>> mAllowAppSwitchUids = new SparseArray<>();
549
550 /** The dimensions of the thumbnails in the Recents UI. */
Wale Ogunwalef6733932018-06-27 05:14:34 -0700551 private int mThumbnailWidth;
552 private int mThumbnailHeight;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700553
554 /**
555 * Flag that indicates if multi-window is enabled.
556 *
557 * For any particular form of multi-window to be enabled, generic multi-window must be enabled
558 * in {@link com.android.internal.R.bool#config_supportsMultiWindow} config or
559 * {@link Settings.Global#DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES} development option set.
560 * At least one of the forms of multi-window must be enabled in order for this flag to be
561 * initialized to 'true'.
562 *
563 * @see #mSupportsSplitScreenMultiWindow
564 * @see #mSupportsFreeformWindowManagement
565 * @see #mSupportsPictureInPicture
566 * @see #mSupportsMultiDisplay
567 */
568 boolean mSupportsMultiWindow;
569 boolean mSupportsSplitScreenMultiWindow;
570 boolean mSupportsFreeformWindowManagement;
571 boolean mSupportsPictureInPicture;
572 boolean mSupportsMultiDisplay;
573 boolean mForceResizableActivities;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700574 boolean mSizeCompatFreeform;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700575
576 final List<ActivityTaskManagerInternal.ScreenObserver> mScreenObservers = new ArrayList<>();
577
578 // VR Vr2d Display Id.
579 int mVr2dDisplayId = INVALID_DISPLAY;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700580
Wale Ogunwalef6733932018-06-27 05:14:34 -0700581 /**
582 * Set while we are wanting to sleep, to prevent any
583 * activities from being started/resumed.
584 *
585 * TODO(b/33594039): Clarify the actual state transitions represented by mSleeping.
586 *
587 * Currently mSleeping is set to true when transitioning into the sleep state, and remains true
588 * while in the sleep state until there is a pending transition out of sleep, in which case
589 * mSleeping is set to false, and remains false while awake.
590 *
591 * Whether mSleeping can quickly toggled between true/false without the device actually
592 * display changing states is undefined.
593 */
594 private boolean mSleeping = false;
595
596 /**
597 * The process state used for processes that are running the top activities.
598 * This changes between TOP and TOP_SLEEPING to following mSleeping.
599 */
600 int mTopProcessState = ActivityManager.PROCESS_STATE_TOP;
601
Riddle Hsua0022cd2019-09-09 21:12:41 +0800602 @Retention(RetentionPolicy.SOURCE)
603 @IntDef({
604 LAYOUT_REASON_CONFIG_CHANGED,
605 LAYOUT_REASON_VISIBILITY_CHANGED,
606 })
607 @interface LayoutReason {}
608 static final int LAYOUT_REASON_CONFIG_CHANGED = 0x1;
609 static final int LAYOUT_REASON_VISIBILITY_CHANGED = 0x2;
610
611 /** The reasons to perform surface placement. */
612 @LayoutReason
613 private int mLayoutReasons;
614
Wale Ogunwalef6733932018-06-27 05:14:34 -0700615 // Whether we should show our dialogs (ANR, crash, etc) or just perform their default action
616 // automatically. Important for devices without direct input devices.
617 private boolean mShowDialogs = true;
618
619 /** Set if we are shutting down the system, similar to sleeping. */
620 boolean mShuttingDown = false;
621
622 /**
623 * We want to hold a wake lock while running a voice interaction session, since
624 * this may happen with the screen off and we need to keep the CPU running to
625 * be able to continue to interact with the user.
626 */
627 PowerManager.WakeLock mVoiceWakeLock;
628
629 /**
630 * Set while we are running a voice interaction. This overrides sleeping while it is active.
631 */
632 IVoiceInteractionSession mRunningVoice;
633
634 /**
635 * The last resumed activity. This is identical to the current resumed activity most
636 * of the time but could be different when we're pausing one activity before we resume
637 * another activity.
638 */
639 ActivityRecord mLastResumedActivity;
640
641 /**
642 * The activity that is currently being traced as the active resumed activity.
643 *
644 * @see #updateResumedAppTrace
645 */
646 private @Nullable ActivityRecord mTracedResumedActivity;
647
648 /** If non-null, we are tracking the time the user spends in the currently focused app. */
649 AppTimeTracker mCurAppTimeTracker;
650
Shivam Agrawal1d3db652019-07-01 15:26:11 -0700651 AppWarnings mAppWarnings;
Wale Ogunwale008163e2018-07-23 23:11:08 -0700652
Wale Ogunwale53783742018-09-16 10:21:51 -0700653 /**
654 * Packages that the user has asked to have run in screen size
655 * compatibility mode instead of filling the screen.
656 */
657 CompatModePackages mCompatModePackages;
658
Wale Ogunwalef6733932018-06-27 05:14:34 -0700659 private FontScaleSettingObserver mFontScaleSettingObserver;
660
Robert Carr8a2f9132019-11-11 15:03:15 -0800661 /**
662 * Stores the registration and state of TaskOrganizers in use.
663 */
Evan Rosky0037e5f2019-11-05 10:26:24 -0800664 TaskOrganizerController mTaskOrganizerController = new TaskOrganizerController(this);
Robert Carr8a2f9132019-11-11 15:03:15 -0800665
Ricky Wai96f5c352019-04-10 18:40:17 +0100666 private int mDeviceOwnerUid = Process.INVALID_UID;
Michal Karpinski4026cae2019-02-12 11:51:47 +0000667
Wale Ogunwalef6733932018-06-27 05:14:34 -0700668 private final class FontScaleSettingObserver extends ContentObserver {
669 private final Uri mFontScaleUri = Settings.System.getUriFor(FONT_SCALE);
670 private final Uri mHideErrorDialogsUri = Settings.Global.getUriFor(HIDE_ERROR_DIALOGS);
671
672 public FontScaleSettingObserver() {
673 super(mH);
674 final ContentResolver resolver = mContext.getContentResolver();
675 resolver.registerContentObserver(mFontScaleUri, false, this, UserHandle.USER_ALL);
676 resolver.registerContentObserver(mHideErrorDialogsUri, false, this,
677 UserHandle.USER_ALL);
678 }
679
680 @Override
681 public void onChange(boolean selfChange, Uri uri, @UserIdInt int userId) {
682 if (mFontScaleUri.equals(uri)) {
683 updateFontScaleIfNeeded(userId);
684 } else if (mHideErrorDialogsUri.equals(uri)) {
685 synchronized (mGlobalLock) {
686 updateShouldShowDialogsLocked(getGlobalConfiguration());
687 }
688 }
689 }
690 }
691
Riddle Hsua0536432019-02-16 00:38:59 +0800692 /** Indicates that the method may be invoked frequently or is sensitive to performance. */
693 @Target(ElementType.METHOD)
694 @Retention(RetentionPolicy.SOURCE)
695 @interface HotPath {
696 int NONE = 0;
697 int OOM_ADJUSTMENT = 1;
698 int LRU_UPDATE = 2;
699 int PROCESS_CHANGE = 3;
700 int caller() default NONE;
701 }
702
Wale Ogunwalea38654f2019-11-17 20:37:15 -0800703 private final Runnable mUpdateOomAdjRunnable = new Runnable() {
704 @Override
Wale Ogunwale85fb19a2019-12-05 10:41:05 +0900705 public void run() {
Wale Ogunwalea38654f2019-11-17 20:37:15 -0800706 mAmInternal.updateOomAdj();
707 }
708 };
709
Charles Chen8d98dd22018-12-26 17:36:54 +0800710 @VisibleForTesting(visibility = VisibleForTesting.Visibility.PACKAGE)
711 public ActivityTaskManagerService(Context context) {
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700712 mContext = context;
Wale Ogunwale214f3482018-10-04 11:00:47 -0700713 mFactoryTest = FactoryTest.getMode();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700714 mSystemThread = ActivityThread.currentActivityThread();
715 mUiContext = mSystemThread.getSystemUiContext();
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700716 mLifecycleManager = new ClientLifecycleManager();
Wale Ogunwaleb73f3962018-11-20 07:58:22 -0800717 mInternal = new LocalService();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700718 GL_ES_VERSION = SystemProperties.getInt("ro.opengles.version", GL_ES_VERSION_UNDEFINED);
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700719 }
720
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700721 public void onSystemReady() {
722 synchronized (mGlobalLock) {
723 mHasHeavyWeightFeature = mContext.getPackageManager().hasSystemFeature(
724 PackageManager.FEATURE_CANT_SAVE_STATE);
725 mAssistUtils = new AssistUtils(mContext);
726 mVrController.onSystemReady();
727 mRecentTasks.onSystemReadyLocked();
Garfield Tan891146c2018-10-09 12:14:00 -0700728 mStackSupervisor.onSystemReady();
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700729 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -0700730 }
731
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700732 public void onInitPowerManagement() {
733 synchronized (mGlobalLock) {
734 mStackSupervisor.initPowerManagement();
735 final PowerManager pm = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
736 mPowerManagerInternal = LocalServices.getService(PowerManagerInternal.class);
737 mVoiceWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "*voice*");
738 mVoiceWakeLock.setReferenceCounted(false);
739 }
Wale Ogunwalef6733932018-06-27 05:14:34 -0700740 }
741
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700742 public void installSystemProviders() {
Wale Ogunwalef6733932018-06-27 05:14:34 -0700743 mFontScaleSettingObserver = new FontScaleSettingObserver();
744 }
745
Wale Ogunwale59507092018-10-29 09:00:30 -0700746 public void retrieveSettings(ContentResolver resolver) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700747 final boolean freeformWindowManagement =
748 mContext.getPackageManager().hasSystemFeature(FEATURE_FREEFORM_WINDOW_MANAGEMENT)
749 || Settings.Global.getInt(
750 resolver, DEVELOPMENT_ENABLE_FREEFORM_WINDOWS_SUPPORT, 0) != 0;
751
752 final boolean supportsMultiWindow = ActivityTaskManager.supportsMultiWindow(mContext);
753 final boolean supportsPictureInPicture = supportsMultiWindow &&
754 mContext.getPackageManager().hasSystemFeature(FEATURE_PICTURE_IN_PICTURE);
755 final boolean supportsSplitScreenMultiWindow =
756 ActivityTaskManager.supportsSplitScreenMultiWindow(mContext);
757 final boolean supportsMultiDisplay = mContext.getPackageManager()
758 .hasSystemFeature(FEATURE_ACTIVITIES_ON_SECONDARY_DISPLAYS);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700759 final boolean forceRtl = Settings.Global.getInt(resolver, DEVELOPMENT_FORCE_RTL, 0) != 0;
760 final boolean forceResizable = Settings.Global.getInt(
761 resolver, DEVELOPMENT_FORCE_RESIZABLE_ACTIVITIES, 0) != 0;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700762 final boolean sizeCompatFreeform = Settings.Global.getInt(
763 resolver, DEVELOPMENT_ENABLE_SIZECOMPAT_FREEFORM, 0) != 0;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700764
765 // Transfer any global setting for forcing RTL layout, into a System Property
Kiyoung Kim0fe161d2018-12-20 18:26:10 +0900766 DisplayProperties.debug_force_rtl(forceRtl);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700767
768 final Configuration configuration = new Configuration();
769 Settings.System.getConfiguration(resolver, configuration);
770 if (forceRtl) {
771 // This will take care of setting the correct layout direction flags
772 configuration.setLayoutDirection(configuration.locale);
773 }
774
775 synchronized (mGlobalLock) {
776 mForceResizableActivities = forceResizable;
Shivam Agrawal780b5bb2019-07-17 10:17:11 -0700777 mSizeCompatFreeform = sizeCompatFreeform;
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700778 final boolean multiWindowFormEnabled = freeformWindowManagement
779 || supportsSplitScreenMultiWindow
780 || supportsPictureInPicture
781 || supportsMultiDisplay;
782 if ((supportsMultiWindow || forceResizable) && multiWindowFormEnabled) {
783 mSupportsMultiWindow = true;
784 mSupportsFreeformWindowManagement = freeformWindowManagement;
785 mSupportsSplitScreenMultiWindow = supportsSplitScreenMultiWindow;
786 mSupportsPictureInPicture = supportsPictureInPicture;
787 mSupportsMultiDisplay = supportsMultiDisplay;
788 } else {
789 mSupportsMultiWindow = false;
790 mSupportsFreeformWindowManagement = false;
791 mSupportsSplitScreenMultiWindow = false;
792 mSupportsPictureInPicture = false;
793 mSupportsMultiDisplay = false;
794 }
Garfield Tanb5910b42019-03-14 14:50:59 -0700795 mWindowManager.mRoot.onSettingsRetrieved();
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700796 // This happens before any activities are started, so we can change global configuration
797 // in-place.
798 updateConfigurationLocked(configuration, null, true);
799 final Configuration globalConfig = getGlobalConfiguration();
800 if (DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION, "Initial config: " + globalConfig);
801
802 // Load resources only after the current configuration has been set.
803 final Resources res = mContext.getResources();
804 mThumbnailWidth = res.getDimensionPixelSize(
805 com.android.internal.R.dimen.thumbnail_width);
806 mThumbnailHeight = res.getDimensionPixelSize(
807 com.android.internal.R.dimen.thumbnail_height);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700808 }
809 }
810
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -0800811 public WindowManagerGlobalLock getGlobalLock() {
812 return mGlobalLock;
813 }
814
Yunfan Chen585f2932019-01-29 16:04:45 +0900815 /** For test purpose only. */
816 @VisibleForTesting
817 public ActivityTaskManagerInternal getAtmInternal() {
818 return mInternal;
819 }
820
Riddle Hsud93a6c42018-11-29 21:50:06 +0800821 public void initialize(IntentFirewall intentFirewall, PendingIntentController intentController,
822 Looper looper) {
823 mH = new H(looper);
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700824 mUiHandler = new UiHandler();
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700825 mIntentFirewall = intentFirewall;
Wale Ogunwale53783742018-09-16 10:21:51 -0700826 final File systemDir = SystemServiceManager.ensureSystemDir();
Wale Ogunwaleda8b8272018-11-29 19:37:37 -0800827 mAppWarnings = createAppWarnings(mUiContext, mH, mUiHandler, systemDir);
Wale Ogunwale53783742018-09-16 10:21:51 -0700828 mCompatModePackages = new CompatModePackages(this, systemDir, mH);
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700829 mPendingIntentController = intentController;
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700830 mStackSupervisor = createStackSupervisor();
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700831
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700832 mTaskChangeNotificationController =
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700833 new TaskChangeNotificationController(mGlobalLock, mStackSupervisor, mH);
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700834 mLockTaskController = new LockTaskController(mContext, mStackSupervisor, mH);
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700835 mActivityStartController = new ActivityStartController(this);
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700836 setRecentTasks(new RecentTasks(this, mStackSupervisor));
Wale Ogunwalea6191b42018-05-09 07:41:32 -0700837 mVrController = new VrController(mGlobalLock);
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700838 mKeyguardController = mStackSupervisor.getKeyguardController();
839 }
840
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700841 public void onActivityManagerInternalAdded() {
842 synchronized (mGlobalLock) {
843 mAmInternal = LocalServices.getService(ActivityManagerInternal.class);
844 mUgmInternal = LocalServices.getService(UriGrantsManagerInternal.class);
845 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700846 }
847
Yunfan Chen75157d72018-07-27 14:47:21 +0900848 int increaseConfigurationSeqLocked() {
849 mConfigurationSeq = Math.max(++mConfigurationSeq, 1);
850 return mConfigurationSeq;
851 }
852
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700853 protected ActivityStackSupervisor createStackSupervisor() {
854 final ActivityStackSupervisor supervisor = new ActivityStackSupervisor(this, mH.getLooper());
855 supervisor.initialize();
856 return supervisor;
857 }
858
Wale Ogunwaleda8b8272018-11-29 19:37:37 -0800859 protected AppWarnings createAppWarnings(
860 Context uiContext, Handler handler, Handler uiHandler, File systemDir) {
861 return new AppWarnings(this, uiContext, handler, uiHandler, systemDir);
862 }
863
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700864 public void setWindowManager(WindowManagerService wm) {
865 synchronized (mGlobalLock) {
866 mWindowManager = wm;
Louis Chang149d5c82019-12-30 09:47:39 +0800867 mRootWindowContainer = wm.mRoot;
Louis Chang3ff72a82019-12-17 12:12:59 +0800868 mTempConfig.setToDefaults();
869 mTempConfig.setLocales(LocaleList.getDefault());
870 mConfigurationSeq = mTempConfig.seq = 1;
Louis Chang149d5c82019-12-30 09:47:39 +0800871 mRootWindowContainer.onConfigurationChanged(mTempConfig);
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700872 mLockTaskController.setWindowManager(wm);
873 mStackSupervisor.setWindowManager(wm);
Louis Chang149d5c82019-12-30 09:47:39 +0800874 mRootWindowContainer.setWindowManager(wm);
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700875 }
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700876 }
877
Wale Ogunwale387b34c2018-10-25 19:59:40 -0700878 public void setUsageStatsManager(UsageStatsManagerInternal usageStatsManager) {
879 synchronized (mGlobalLock) {
880 mUsageStatsInternal = usageStatsManager;
881 }
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700882 }
883
Wale Ogunwalef6733932018-06-27 05:14:34 -0700884 UserManagerService getUserManager() {
885 if (mUserManager == null) {
886 IBinder b = ServiceManager.getService(Context.USER_SERVICE);
887 mUserManager = (UserManagerService) IUserManager.Stub.asInterface(b);
888 }
889 return mUserManager;
890 }
891
Philip P. Moltmannee295092020-02-10 08:46:26 -0800892 AppOpsManager getAppOpsManager() {
893 if (mAppOpsManager == null) {
894 mAppOpsManager = mContext.getSystemService(AppOpsManager.class);
Wale Ogunwalef6733932018-06-27 05:14:34 -0700895 }
Philip P. Moltmannee295092020-02-10 08:46:26 -0800896 return mAppOpsManager;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700897 }
898
899 boolean hasUserRestriction(String restriction, int userId) {
900 return getUserManager().hasUserRestriction(restriction, userId);
901 }
902
Michal Karpinski15486842019-04-25 17:33:42 +0100903 boolean hasSystemAlertWindowPermission(int callingUid, int callingPid, String callingPackage) {
Philip P. Moltmannee295092020-02-10 08:46:26 -0800904 final int mode = getAppOpsManager().noteOpNoThrow(AppOpsManager.OP_SYSTEM_ALERT_WINDOW,
905 callingUid, callingPackage, /* featureId */ null, "");
Michal Karpinski15486842019-04-25 17:33:42 +0100906 if (mode == AppOpsManager.MODE_DEFAULT) {
907 return checkPermission(Manifest.permission.SYSTEM_ALERT_WINDOW, callingPid, callingUid)
908 == PERMISSION_GRANTED;
909 }
910 return mode == AppOpsManager.MODE_ALLOWED;
911 }
912
Wale Ogunwale8a1860a2019-06-05 08:57:19 -0700913 @VisibleForTesting
914 protected void setRecentTasks(RecentTasks recentTasks) {
915 mRecentTasks = recentTasks;
916 mStackSupervisor.setRecentTasks(recentTasks);
Wale Ogunwale16e505a2018-05-07 15:00:49 -0700917 }
918
919 RecentTasks getRecentTasks() {
920 return mRecentTasks;
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700921 }
922
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700923 ClientLifecycleManager getLifecycleManager() {
924 return mLifecycleManager;
925 }
926
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -0700927 ActivityStartController getActivityStartController() {
928 return mActivityStartController;
929 }
930
Wale Ogunwaled0412b32018-05-08 09:25:50 -0700931 TaskChangeNotificationController getTaskChangeNotificationController() {
932 return mTaskChangeNotificationController;
933 }
934
Wale Ogunwaled95c06b2018-05-08 10:35:38 -0700935 LockTaskController getLockTaskController() {
936 return mLockTaskController;
937 }
938
Yunfan Chen75157d72018-07-27 14:47:21 +0900939 /**
940 * Return the global configuration used by the process corresponding to the input pid. This is
941 * usually the global configuration with some overrides specific to that process.
942 */
943 Configuration getGlobalConfigurationForCallingPid() {
944 final int pid = Binder.getCallingPid();
Yunfan Chenc2ff6cf2018-12-04 16:56:21 -0800945 return getGlobalConfigurationForPid(pid);
946 }
947
948 /**
949 * Return the global configuration used by the process corresponding to the given pid.
950 */
951 Configuration getGlobalConfigurationForPid(int pid) {
Yunfan Chen75157d72018-07-27 14:47:21 +0900952 if (pid == MY_PID || pid < 0) {
953 return getGlobalConfiguration();
954 }
955 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +0100956 final WindowProcessController app = mProcessMap.getProcess(pid);
Yunfan Chen75157d72018-07-27 14:47:21 +0900957 return app != null ? app.getConfiguration() : getGlobalConfiguration();
958 }
959 }
960
961 /**
962 * Return the device configuration info used by the process corresponding to the input pid.
963 * The value is consistent with the global configuration for the process.
964 */
965 @Override
966 public ConfigurationInfo getDeviceConfigurationInfo() {
967 ConfigurationInfo config = new ConfigurationInfo();
968 synchronized (mGlobalLock) {
969 final Configuration globalConfig = getGlobalConfigurationForCallingPid();
970 config.reqTouchScreen = globalConfig.touchscreen;
971 config.reqKeyboardType = globalConfig.keyboard;
972 config.reqNavigation = globalConfig.navigation;
973 if (globalConfig.navigation == Configuration.NAVIGATION_DPAD
974 || globalConfig.navigation == Configuration.NAVIGATION_TRACKBALL) {
975 config.reqInputFeatures |= ConfigurationInfo.INPUT_FEATURE_FIVE_WAY_NAV;
976 }
977 if (globalConfig.keyboard != Configuration.KEYBOARD_UNDEFINED
978 && globalConfig.keyboard != Configuration.KEYBOARD_NOKEYS) {
979 config.reqInputFeatures |= ConfigurationInfo.INPUT_FEATURE_HARD_KEYBOARD;
980 }
Wale Ogunwale342fbe92018-10-09 08:44:10 -0700981 config.reqGlEsVersion = GL_ES_VERSION;
Yunfan Chen75157d72018-07-27 14:47:21 +0900982 }
983 return config;
984 }
985
Wale Ogunwale6767eae2018-05-03 15:52:51 -0700986 private void start() {
Wale Ogunwale53783742018-09-16 10:21:51 -0700987 LocalServices.addService(ActivityTaskManagerInternal.class, mInternal);
Wale Ogunwale6767eae2018-05-03 15:52:51 -0700988 }
989
Wale Ogunwale65ebd952018-04-25 15:41:44 -0700990 public static final class Lifecycle extends SystemService {
991 private final ActivityTaskManagerService mService;
992
993 public Lifecycle(Context context) {
994 super(context);
995 mService = new ActivityTaskManagerService(context);
996 }
997
998 @Override
999 public void onStart() {
1000 publishBinderService(Context.ACTIVITY_TASK_SERVICE, mService);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07001001 mService.start();
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001002 }
1003
Garfield Tan891146c2018-10-09 12:14:00 -07001004 @Override
1005 public void onUnlockUser(int userId) {
1006 synchronized (mService.getGlobalLock()) {
Garfield Tan0d407f42019-03-07 11:47:01 -08001007 mService.mStackSupervisor.onUserUnlocked(userId);
Garfield Tan891146c2018-10-09 12:14:00 -07001008 }
1009 }
1010
1011 @Override
1012 public void onCleanupUser(int userId) {
1013 synchronized (mService.getGlobalLock()) {
1014 mService.mStackSupervisor.mLaunchParamsPersister.onCleanupUser(userId);
1015 }
1016 }
1017
Wale Ogunwale65ebd952018-04-25 15:41:44 -07001018 public ActivityTaskManagerService getService() {
1019 return mService;
1020 }
1021 }
1022
1023 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001024 public final int startActivity(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001025 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1026 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1027 Bundle bOptions) {
1028 return startActivityAsUser(caller, callingPackage, callingFeatureId, intent, resolvedType,
1029 resultTo, resultWho, requestCode, startFlags, profilerInfo, bOptions,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001030 UserHandle.getCallingUserId());
1031 }
1032
1033 @Override
1034 public final int startActivities(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001035 String callingFeatureId, Intent[] intents, String[] resolvedTypes, IBinder resultTo,
1036 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001037 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001038 final String reason = "startActivities";
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001039 enforceNotIsolatedCaller(reason);
1040 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(), userId, reason);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001041 // TODO: Switch to user app stacks here.
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00001042 return getActivityStartController().startActivities(caller, -1, 0, -1, callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001043 callingFeatureId, intents, resolvedTypes, resultTo,
1044 SafeActivityOptions.fromBundle(bOptions), userId, reason,
1045 null /* originatingPendingIntent */, false /* allowBackgroundActivityStart */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001046 }
1047
1048 @Override
1049 public int startActivityAsUser(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001050 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1051 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1052 Bundle bOptions, int userId) {
1053 return startActivityAsUser(caller, callingPackage, callingFeatureId, intent, resolvedType,
1054 resultTo, resultWho, requestCode, startFlags, profilerInfo, bOptions, userId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001055 true /*validateIncomingUser*/);
1056 }
1057
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001058 private int startActivityAsUser(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001059 @Nullable String callingFeatureId, Intent intent, String resolvedType,
1060 IBinder resultTo, String resultWho, int requestCode, int startFlags,
1061 ProfilerInfo profilerInfo, Bundle bOptions, int userId, boolean validateIncomingUser) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001062 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001063 enforceNotIsolatedCaller("startActivityAsUser");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001064
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001065 userId = getActivityStartController().checkTargetUser(userId, validateIncomingUser,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001066 Binder.getCallingPid(), Binder.getCallingUid(), "startActivityAsUser");
1067
1068 // TODO: Switch to user app stacks here.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001069 return getActivityStartController().obtainStarter(intent, "startActivityAsUser")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001070 .setCaller(caller)
1071 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001072 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001073 .setResolvedType(resolvedType)
1074 .setResultTo(resultTo)
1075 .setResultWho(resultWho)
1076 .setRequestCode(requestCode)
1077 .setStartFlags(startFlags)
1078 .setProfilerInfo(profilerInfo)
1079 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001080 .setUserId(userId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001081 .execute();
1082
1083 }
1084
1085 @Override
1086 public int startActivityIntentSender(IApplicationThread caller, IIntentSender target,
1087 IBinder whitelistToken, Intent fillInIntent, String resolvedType, IBinder resultTo,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001088 String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle bOptions) {
1089 enforceNotIsolatedCaller("startActivityIntentSender");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001090 // Refuse possible leaked file descriptors
1091 if (fillInIntent != null && fillInIntent.hasFileDescriptors()) {
1092 throw new IllegalArgumentException("File descriptors passed in Intent");
1093 }
1094
1095 if (!(target instanceof PendingIntentRecord)) {
1096 throw new IllegalArgumentException("Bad PendingIntent object");
1097 }
1098
1099 PendingIntentRecord pir = (PendingIntentRecord)target;
1100
1101 synchronized (mGlobalLock) {
1102 // If this is coming from the currently resumed activity, it is
1103 // effectively saying that app switches are allowed at this point.
Andrii Kulian5f750bc2018-07-17 08:57:23 -07001104 final ActivityStack stack = getTopDisplayFocusedStack();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001105 if (stack.mResumedActivity != null &&
1106 stack.mResumedActivity.info.applicationInfo.uid == Binder.getCallingUid()) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001107 mAppSwitchesAllowedTime = 0;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001108 }
1109 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001110 return pir.sendInner(0, fillInIntent, resolvedType, whitelistToken, null, null,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001111 resultTo, resultWho, requestCode, flagsMask, flagsValues, bOptions);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001112 }
1113
1114 @Override
1115 public boolean startNextMatchingActivity(IBinder callingActivity, Intent intent,
1116 Bundle bOptions) {
1117 // Refuse possible leaked file descriptors
1118 if (intent != null && intent.hasFileDescriptors()) {
1119 throw new IllegalArgumentException("File descriptors passed in Intent");
1120 }
1121 SafeActivityOptions options = SafeActivityOptions.fromBundle(bOptions);
1122
1123 synchronized (mGlobalLock) {
1124 final ActivityRecord r = ActivityRecord.isInStackLocked(callingActivity);
1125 if (r == null) {
1126 SafeActivityOptions.abort(options);
1127 return false;
1128 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001129 if (!r.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001130 // The caller is not running... d'oh!
1131 SafeActivityOptions.abort(options);
1132 return false;
1133 }
1134 intent = new Intent(intent);
1135 // The caller is not allowed to change the data.
1136 intent.setDataAndType(r.intent.getData(), r.intent.getType());
1137 // And we are resetting to find the next component...
1138 intent.setComponent(null);
1139
1140 final boolean debug = ((intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0);
1141
1142 ActivityInfo aInfo = null;
1143 try {
1144 List<ResolveInfo> resolves =
1145 AppGlobals.getPackageManager().queryIntentActivities(
1146 intent, r.resolvedType,
1147 PackageManager.MATCH_DEFAULT_ONLY | STOCK_PM_FLAGS,
1148 UserHandle.getCallingUserId()).getList();
1149
1150 // Look for the original activity in the list...
1151 final int N = resolves != null ? resolves.size() : 0;
1152 for (int i=0; i<N; i++) {
1153 ResolveInfo rInfo = resolves.get(i);
1154 if (rInfo.activityInfo.packageName.equals(r.packageName)
1155 && rInfo.activityInfo.name.equals(r.info.name)) {
1156 // We found the current one... the next matching is
1157 // after it.
1158 i++;
1159 if (i<N) {
1160 aInfo = resolves.get(i).activityInfo;
1161 }
1162 if (debug) {
1163 Slog.v(TAG, "Next matching activity: found current " + r.packageName
1164 + "/" + r.info.name);
1165 Slog.v(TAG, "Next matching activity: next is " + ((aInfo == null)
1166 ? "null" : aInfo.packageName + "/" + aInfo.name));
1167 }
1168 break;
1169 }
1170 }
1171 } catch (RemoteException e) {
1172 }
1173
1174 if (aInfo == null) {
1175 // Nobody who is next!
1176 SafeActivityOptions.abort(options);
1177 if (debug) Slog.d(TAG, "Next matching activity: nothing found");
1178 return false;
1179 }
1180
1181 intent.setComponent(new ComponentName(
1182 aInfo.applicationInfo.packageName, aInfo.name));
1183 intent.setFlags(intent.getFlags()&~(
1184 Intent.FLAG_ACTIVITY_FORWARD_RESULT|
1185 Intent.FLAG_ACTIVITY_CLEAR_TOP|
1186 Intent.FLAG_ACTIVITY_MULTIPLE_TASK|
1187 FLAG_ACTIVITY_NEW_TASK));
1188
1189 // Okay now we need to start the new activity, replacing the currently running activity.
1190 // This is a little tricky because we want to start the new one as if the current one is
1191 // finished, but not finish the current one first so that there is no flicker.
1192 // And thus...
1193 final boolean wasFinishing = r.finishing;
1194 r.finishing = true;
1195
1196 // Propagate reply information over to the new activity.
1197 final ActivityRecord resultTo = r.resultTo;
1198 final String resultWho = r.resultWho;
1199 final int requestCode = r.requestCode;
1200 r.resultTo = null;
1201 if (resultTo != null) {
1202 resultTo.removeResultsLocked(r, resultWho, requestCode);
1203 }
1204
1205 final long origId = Binder.clearCallingIdentity();
1206 // TODO(b/64750076): Check if calling pid should really be -1.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001207 final int res = getActivityStartController()
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001208 .obtainStarter(intent, "startNextMatchingActivity")
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001209 .setCaller(r.app.getThread())
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001210 .setResolvedType(r.resolvedType)
1211 .setActivityInfo(aInfo)
1212 .setResultTo(resultTo != null ? resultTo.appToken : null)
1213 .setResultWho(resultWho)
1214 .setRequestCode(requestCode)
1215 .setCallingPid(-1)
1216 .setCallingUid(r.launchedFromUid)
1217 .setCallingPackage(r.launchedFromPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001218 .setCallingFeatureId(r.launchedFromFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001219 .setRealCallingPid(-1)
1220 .setRealCallingUid(r.launchedFromUid)
1221 .setActivityOptions(options)
1222 .execute();
1223 Binder.restoreCallingIdentity(origId);
1224
1225 r.finishing = wasFinishing;
1226 if (res != ActivityManager.START_SUCCESS) {
1227 return false;
1228 }
1229 return true;
1230 }
1231 }
1232
1233 @Override
1234 public final WaitResult startActivityAndWait(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001235 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1236 String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo,
1237 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001238 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001239 final WaitResult res = new WaitResult();
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001240 enforceNotIsolatedCaller("startActivityAndWait");
1241 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(),
1242 userId, "startActivityAndWait");
1243 // TODO: Switch to user app stacks here.
1244 getActivityStartController().obtainStarter(intent, "startActivityAndWait")
1245 .setCaller(caller)
1246 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001247 .setCallingFeatureId(callingFeatureId)
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001248 .setResolvedType(resolvedType)
1249 .setResultTo(resultTo)
1250 .setResultWho(resultWho)
1251 .setRequestCode(requestCode)
1252 .setStartFlags(startFlags)
1253 .setActivityOptions(bOptions)
1254 .setUserId(userId)
1255 .setProfilerInfo(profilerInfo)
1256 .setWaitResult(res)
1257 .execute();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001258 return res;
1259 }
1260
1261 @Override
1262 public final int startActivityWithConfig(IApplicationThread caller, String callingPackage,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001263 String callingFeatureId, Intent intent, String resolvedType, IBinder resultTo,
1264 String resultWho, int requestCode, int startFlags, Configuration config,
1265 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001266 assertPackageMatchesCallingUid(callingPackage);
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001267 enforceNotIsolatedCaller("startActivityWithConfig");
1268 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(), userId,
1269 "startActivityWithConfig");
1270 // TODO: Switch to user app stacks here.
1271 return getActivityStartController().obtainStarter(intent, "startActivityWithConfig")
1272 .setCaller(caller)
1273 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001274 .setCallingFeatureId(callingFeatureId)
Riddle Hsufd66d4d2019-11-14 10:35:55 +08001275 .setResolvedType(resolvedType)
1276 .setResultTo(resultTo)
1277 .setResultWho(resultWho)
1278 .setRequestCode(requestCode)
1279 .setStartFlags(startFlags)
1280 .setGlobalConfiguration(config)
1281 .setActivityOptions(bOptions)
1282 .setUserId(userId)
1283 .execute();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001284 }
1285
Robert Carr8a2f9132019-11-11 15:03:15 -08001286 @Override
Alison Cichowlas3e340502018-08-07 17:15:01 -04001287 public IBinder requestStartActivityPermissionToken(IBinder delegatorToken) {
1288 int callingUid = Binder.getCallingUid();
1289 if (UserHandle.getAppId(callingUid) != SYSTEM_UID) {
1290 throw new SecurityException("Only the system process can request a permission token, "
1291 + "received request from uid: " + callingUid);
1292 }
1293 IBinder permissionToken = new Binder();
1294 synchronized (mGlobalLock) {
1295 mStartActivitySources.put(permissionToken, delegatorToken);
1296 }
1297
1298 Message expireMsg = PooledLambda.obtainMessage(
1299 ActivityTaskManagerService::expireStartAsCallerTokenMsg, this, permissionToken);
1300 mUiHandler.sendMessageDelayed(expireMsg, START_AS_CALLER_TOKEN_TIMEOUT_IMPL);
1301
1302 Message forgetMsg = PooledLambda.obtainMessage(
1303 ActivityTaskManagerService::forgetStartAsCallerTokenMsg, this, permissionToken);
1304 mUiHandler.sendMessageDelayed(forgetMsg, START_AS_CALLER_TOKEN_EXPIRED_TIMEOUT);
1305
1306 return permissionToken;
1307 }
1308
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001309 @Override
1310 public final int startActivityAsCaller(IApplicationThread caller, String callingPackage,
1311 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
Alison Cichowlas3e340502018-08-07 17:15:01 -04001312 int startFlags, ProfilerInfo profilerInfo, Bundle bOptions, IBinder permissionToken,
1313 boolean ignoreTargetSecurity, int userId) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001314 // This is very dangerous -- it allows you to perform a start activity (including
Alison Cichowlas3e340502018-08-07 17:15:01 -04001315 // permission grants) as any app that may launch one of your own activities. So we only
1316 // allow this in two cases:
1317 // 1) The caller is an activity that is part of the core framework, and then only when it
1318 // is running as the system.
1319 // 2) The caller provides a valid permissionToken. Permission tokens are one-time use and
1320 // can only be requested by a system activity, which may then delegate this call to
1321 // another app.
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001322 final ActivityRecord sourceRecord;
1323 final int targetUid;
1324 final String targetPackage;
Philip P. Moltmannee295092020-02-10 08:46:26 -08001325 final String targetFeatureId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001326 final boolean isResolver;
1327 synchronized (mGlobalLock) {
1328 if (resultTo == null) {
1329 throw new SecurityException("Must be called from an activity");
1330 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001331 final IBinder sourceToken;
1332 if (permissionToken != null) {
1333 // To even attempt to use a permissionToken, an app must also have this signature
1334 // permission.
1335 mAmInternal.enforceCallingPermission(
1336 android.Manifest.permission.START_ACTIVITY_AS_CALLER,
1337 "startActivityAsCaller");
1338 // If called with a permissionToken, we want the sourceRecord from the delegator
1339 // activity that requested this token.
1340 sourceToken = mStartActivitySources.remove(permissionToken);
1341 if (sourceToken == null) {
1342 // Invalid permissionToken, check if it recently expired.
1343 if (mExpiredStartAsCallerTokens.contains(permissionToken)) {
1344 throw new SecurityException("Called with expired permission token: "
1345 + permissionToken);
1346 } else {
1347 throw new SecurityException("Called with invalid permission token: "
1348 + permissionToken);
1349 }
1350 }
1351 } else {
1352 // This method was called directly by the source.
1353 sourceToken = resultTo;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001354 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001355
Louis Chang149d5c82019-12-30 09:47:39 +08001356 sourceRecord = mRootWindowContainer.isInAnyStack(sourceToken);
Alison Cichowlas3e340502018-08-07 17:15:01 -04001357 if (sourceRecord == null) {
1358 throw new SecurityException("Called with bad activity token: " + sourceToken);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001359 }
1360 if (sourceRecord.app == null) {
1361 throw new SecurityException("Called without a process attached to activity");
1362 }
Alison Cichowlas3e340502018-08-07 17:15:01 -04001363
1364 // Whether called directly or from a delegate, the source activity must be from the
1365 // android package.
1366 if (!sourceRecord.info.packageName.equals("android")) {
1367 throw new SecurityException("Must be called from an activity that is "
1368 + "declared in the android package");
1369 }
1370
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001371 if (UserHandle.getAppId(sourceRecord.app.mUid) != SYSTEM_UID) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001372 // This is still okay, as long as this activity is running under the
1373 // uid of the original calling activity.
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001374 if (sourceRecord.app.mUid != sourceRecord.launchedFromUid) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001375 throw new SecurityException(
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001376 "Calling activity in uid " + sourceRecord.app.mUid
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001377 + " must be system uid or original calling uid "
1378 + sourceRecord.launchedFromUid);
1379 }
1380 }
1381 if (ignoreTargetSecurity) {
1382 if (intent.getComponent() == null) {
1383 throw new SecurityException(
1384 "Component must be specified with ignoreTargetSecurity");
1385 }
1386 if (intent.getSelector() != null) {
1387 throw new SecurityException(
1388 "Selector not allowed with ignoreTargetSecurity");
1389 }
1390 }
1391 targetUid = sourceRecord.launchedFromUid;
1392 targetPackage = sourceRecord.launchedFromPackage;
Philip P. Moltmannee295092020-02-10 08:46:26 -08001393 targetFeatureId = sourceRecord.launchedFromFeatureId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001394 isResolver = sourceRecord.isResolverOrChildActivity();
1395 }
1396
1397 if (userId == UserHandle.USER_NULL) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001398 userId = UserHandle.getUserId(sourceRecord.app.mUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001399 }
1400
1401 // TODO: Switch to user app stacks here.
1402 try {
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001403 return getActivityStartController().obtainStarter(intent, "startActivityAsCaller")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001404 .setCallingUid(targetUid)
1405 .setCallingPackage(targetPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001406 .setCallingFeatureId(targetFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001407 .setResolvedType(resolvedType)
1408 .setResultTo(resultTo)
1409 .setResultWho(resultWho)
1410 .setRequestCode(requestCode)
1411 .setStartFlags(startFlags)
1412 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001413 .setUserId(userId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001414 .setIgnoreTargetSecurity(ignoreTargetSecurity)
1415 .setFilterCallingUid(isResolver ? 0 /* system */ : targetUid)
Alan Stokes2f4a4ed2019-05-08 16:56:45 +01001416 // The target may well be in the background, which would normally prevent it
1417 // from starting an activity. Here we definitely want the start to succeed.
1418 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001419 .execute();
1420 } catch (SecurityException e) {
1421 // XXX need to figure out how to propagate to original app.
1422 // A SecurityException here is generally actually a fault of the original
1423 // calling activity (such as a fairly granting permissions), so propagate it
1424 // back to them.
1425 /*
1426 StringBuilder msg = new StringBuilder();
1427 msg.append("While launching");
1428 msg.append(intent.toString());
1429 msg.append(": ");
1430 msg.append(e.getMessage());
1431 */
1432 throw e;
1433 }
1434 }
1435
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001436 int handleIncomingUser(int callingPid, int callingUid, int userId, String name) {
1437 return mAmInternal.handleIncomingUser(callingPid, callingUid, userId, false /* allowAll */,
Jonathan Scott92335342019-12-17 14:46:26 +00001438 ALLOW_NON_FULL, name, null /* callerPackage */);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001439 }
1440
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001441 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08001442 public int startVoiceActivity(String callingPackage, String callingFeatureId, int callingPid,
1443 int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001444 IVoiceInteractor interactor, int startFlags, ProfilerInfo profilerInfo,
1445 Bundle bOptions, int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001446 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001447 mAmInternal.enforceCallingPermission(BIND_VOICE_INTERACTION, "startVoiceActivity()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001448 if (session == null || interactor == null) {
1449 throw new NullPointerException("null session or interactor");
1450 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001451 userId = handleIncomingUser(callingPid, callingUid, userId, "startVoiceActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001452 // TODO: Switch to user app stacks here.
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001453 return getActivityStartController().obtainStarter(intent, "startVoiceActivity")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001454 .setCallingUid(callingUid)
1455 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001456 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001457 .setResolvedType(resolvedType)
1458 .setVoiceSession(session)
1459 .setVoiceInteractor(interactor)
1460 .setStartFlags(startFlags)
1461 .setProfilerInfo(profilerInfo)
1462 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001463 .setUserId(userId)
Michal Karpinski85fa2022019-02-08 12:05:09 +00001464 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001465 .execute();
1466 }
1467
1468 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08001469 public int startAssistantActivity(String callingPackage, @NonNull String callingFeatureId,
1470 int callingPid, int callingUid, Intent intent, String resolvedType, Bundle bOptions,
1471 int userId) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07001472 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001473 mAmInternal.enforceCallingPermission(BIND_VOICE_INTERACTION, "startAssistantActivity()");
1474 userId = handleIncomingUser(callingPid, callingUid, userId, "startAssistantActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001475
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07001476 return getActivityStartController().obtainStarter(intent, "startAssistantActivity")
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001477 .setCallingUid(callingUid)
1478 .setCallingPackage(callingPackage)
Philip P. Moltmannee295092020-02-10 08:46:26 -08001479 .setCallingFeatureId(callingFeatureId)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001480 .setResolvedType(resolvedType)
1481 .setActivityOptions(bOptions)
Louis Chang54fbb052019-10-16 17:10:17 +08001482 .setUserId(userId)
Michal Karpinski85fa2022019-02-08 12:05:09 +00001483 .setAllowBackgroundActivityStart(true)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001484 .execute();
1485 }
1486
Riddle Hsu609a8e22019-06-27 16:46:29 -06001487 /**
1488 * Start the recents activity to perform the recents animation.
1489 *
1490 * @param intent The intent to start the recents activity.
1491 * @param recentsAnimationRunner Pass {@code null} to only preload the activity.
1492 */
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001493 @Override
Riddle Hsu609a8e22019-06-27 16:46:29 -06001494 public void startRecentsActivity(Intent intent, @Deprecated IAssistDataReceiver unused,
1495 @Nullable IRecentsAnimationRunner recentsAnimationRunner) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001496 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "startRecentsActivity()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001497 final int callingPid = Binder.getCallingPid();
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02001498 final int callingUid = Binder.getCallingUid();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001499 final long origId = Binder.clearCallingIdentity();
1500 try {
1501 synchronized (mGlobalLock) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07001502 final ComponentName recentsComponent = mRecentTasks.getRecentsComponent();
Philip P. Moltmannee295092020-02-10 08:46:26 -08001503 final String recentsFeatureId = mRecentTasks.getRecentsComponentFeatureId();
Wale Ogunwale16e505a2018-05-07 15:00:49 -07001504 final int recentsUid = mRecentTasks.getRecentsComponentUid();
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02001505 final WindowProcessController caller = getProcessController(callingPid, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001506
1507 // Start a new recents animation
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001508 final RecentsAnimation anim = new RecentsAnimation(this, mStackSupervisor,
Riddle Hsu609a8e22019-06-27 16:46:29 -06001509 getActivityStartController(), mWindowManager, intent, recentsComponent,
Philip P. Moltmannee295092020-02-10 08:46:26 -08001510 recentsFeatureId, recentsUid, caller);
Riddle Hsu609a8e22019-06-27 16:46:29 -06001511 if (recentsAnimationRunner == null) {
1512 anim.preloadRecentsActivity();
1513 } else {
1514 anim.startRecentsActivity(recentsAnimationRunner);
1515 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001516 }
1517 } finally {
1518 Binder.restoreCallingIdentity(origId);
1519 }
1520 }
1521
1522 @Override
1523 public final int startActivityFromRecents(int taskId, Bundle bOptions) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001524 enforceCallerIsRecentsOrHasPermission(START_TASKS_FROM_RECENTS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001525 "startActivityFromRecents()");
1526
1527 final int callingPid = Binder.getCallingPid();
1528 final int callingUid = Binder.getCallingUid();
1529 final SafeActivityOptions safeOptions = SafeActivityOptions.fromBundle(bOptions);
1530 final long origId = Binder.clearCallingIdentity();
1531 try {
1532 synchronized (mGlobalLock) {
1533 return mStackSupervisor.startActivityFromRecents(callingPid, callingUid, taskId,
1534 safeOptions);
1535 }
1536 } finally {
1537 Binder.restoreCallingIdentity(origId);
1538 }
1539 }
1540
1541 /**
Andrii Kulian2eb84b22018-12-13 18:18:54 -08001542 * Public API to check if the client is allowed to start an activity on specified display.
1543 *
1544 * If the target display is private or virtual, some restrictions will apply.
1545 *
1546 * @param displayId Target display id.
1547 * @param intent Intent used to launch the activity.
1548 * @param resolvedType The MIME type of the intent.
1549 * @param userId The id of the user for whom the call is made.
1550 * @return {@code true} if a call to start an activity on the target display should succeed and
1551 * no {@link SecurityException} will be thrown, {@code false} otherwise.
1552 */
1553 @Override
1554 public final boolean isActivityStartAllowedOnDisplay(int displayId, Intent intent,
1555 String resolvedType, int userId) {
1556 final int callingUid = Binder.getCallingUid();
1557 final int callingPid = Binder.getCallingPid();
1558 final long origId = Binder.clearCallingIdentity();
1559
1560 try {
1561 // Collect information about the target of the Intent.
1562 ActivityInfo aInfo = mStackSupervisor.resolveActivity(intent, resolvedType,
1563 0 /* startFlags */, null /* profilerInfo */, userId,
1564 ActivityStarter.computeResolveFilterUid(callingUid, callingUid,
1565 UserHandle.USER_NULL));
1566 aInfo = mAmInternal.getActivityInfoForUser(aInfo, userId);
1567
1568 synchronized (mGlobalLock) {
1569 return mStackSupervisor.canPlaceEntityOnDisplay(displayId, callingPid, callingUid,
1570 aInfo);
1571 }
1572 } finally {
1573 Binder.restoreCallingIdentity(origId);
1574 }
1575 }
1576
1577 /**
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001578 * This is the internal entry point for handling Activity.finish().
1579 *
1580 * @param token The Binder token referencing the Activity we want to finish.
1581 * @param resultCode Result code, if any, from this Activity.
1582 * @param resultData Result data (Intent), if any, from this Activity.
1583 * @param finishTask Whether to finish the task associated with this Activity.
1584 *
1585 * @return Returns true if the activity successfully finished, or false if it is still running.
1586 */
1587 @Override
1588 public final boolean finishActivity(IBinder token, int resultCode, Intent resultData,
1589 int finishTask) {
1590 // Refuse possible leaked file descriptors
1591 if (resultData != null && resultData.hasFileDescriptors()) {
1592 throw new IllegalArgumentException("File descriptors passed in Intent");
1593 }
1594
1595 synchronized (mGlobalLock) {
Andrii Kulian057a6512019-07-15 16:15:51 -07001596 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001597 if (r == null) {
1598 return true;
1599 }
1600 // Keep track of the root activity of the task before we finish it
Louis Changcdec0802019-11-11 11:45:07 +08001601 final Task tr = r.getTask();
Andrii Kulian057a6512019-07-15 16:15:51 -07001602 final ActivityRecord rootR = tr.getRootActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001603 if (rootR == null) {
1604 Slog.w(TAG, "Finishing task with all activities already finished");
1605 }
1606 // Do not allow task to finish if last task in lockTask mode. Launchable priv-apps can
1607 // finish.
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07001608 if (getLockTaskController().activityBlockedFromFinish(r)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001609 return false;
1610 }
1611
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001612 // TODO: There is a dup. of this block of code in ActivityStack.navigateUpToLocked
1613 // We should consolidate.
1614 if (mController != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001615 // Find the first activity that is not finishing.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001616 final ActivityRecord next =
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08001617 r.getRootTask().topRunningActivity(token, INVALID_TASK_ID);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001618 if (next != null) {
1619 // ask watcher if this is allowed
1620 boolean resumeOK = true;
1621 try {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001622 resumeOK = mController.activityResuming(next.packageName);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001623 } catch (RemoteException e) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001624 mController = null;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001625 Watchdog.getInstance().setActivityController(null);
1626 }
1627
1628 if (!resumeOK) {
1629 Slog.i(TAG, "Not finishing activity because controller resumed");
1630 return false;
1631 }
1632 }
1633 }
Michal Karpinskifc6872e2019-05-21 15:18:44 +01001634
1635 // note down that the process has finished an activity and is in background activity
1636 // starts grace period
1637 if (r.app != null) {
1638 r.app.setLastActivityFinishTimeIfNeeded(SystemClock.uptimeMillis());
1639 }
1640
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001641 final long origId = Binder.clearCallingIdentity();
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001642 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "finishActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001643 try {
1644 boolean res;
1645 final boolean finishWithRootActivity =
1646 finishTask == Activity.FINISH_TASK_WITH_ROOT_ACTIVITY;
1647 if (finishTask == Activity.FINISH_TASK_WITH_ACTIVITY
1648 || (finishWithRootActivity && r == rootR)) {
1649 // If requested, remove the task that is associated to this activity only if it
1650 // was the root activity in the task. The result code and data is ignored
1651 // because we don't support returning them across task boundaries. Also, to
1652 // keep backwards compatibility we remove the task from recents when finishing
1653 // task with root activity.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001654 mStackSupervisor.removeTask(tr, false /*killProcess*/,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001655 finishWithRootActivity, "finish-activity");
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001656 res = true;
Garfield Tan2746ab52018-07-25 12:33:01 -07001657 // Explicitly dismissing the activity so reset its relaunch flag.
Wale Ogunwale64258362018-10-16 15:13:37 -07001658 r.mRelaunchReason = RELAUNCH_REASON_NONE;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001659 } else {
Louis Chang7b03ad92019-08-21 12:32:33 +08001660 r.finishIfPossible(resultCode, resultData, "app-request", true /* oomAdj */);
Andrii Kulian40eda672019-07-30 15:05:57 -07001661 res = r.finishing;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001662 if (!res) {
1663 Slog.i(TAG, "Failed to finish by app-request");
1664 }
1665 }
1666 return res;
1667 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001668 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001669 Binder.restoreCallingIdentity(origId);
1670 }
1671 }
1672 }
1673
1674 @Override
1675 public boolean finishActivityAffinity(IBinder token) {
1676 synchronized (mGlobalLock) {
1677 final long origId = Binder.clearCallingIdentity();
1678 try {
1679 ActivityRecord r = ActivityRecord.isInStackLocked(token);
1680 if (r == null) {
1681 return false;
1682 }
1683
1684 // Do not allow task to finish if last task in lockTask mode. Launchable priv-apps
1685 // can finish.
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07001686 if (getLockTaskController().activityBlockedFromFinish(r)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001687 return false;
1688 }
Wale Ogunwalea38654f2019-11-17 20:37:15 -08001689
1690 final PooledFunction p = PooledLambda.obtainFunction(
1691 ActivityRecord::finishIfSameAffinity, r,
1692 PooledLambda.__(ActivityRecord.class));
1693 r.getTask().forAllActivities(
1694 p, r, true /*includeBoundary*/, true /*traverseTopToBottom*/);
1695 p.recycle();
1696
Andrii Kuliande93eff2019-07-12 12:21:27 -07001697 return true;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001698 } finally {
1699 Binder.restoreCallingIdentity(origId);
1700 }
1701 }
1702 }
1703
1704 @Override
1705 public final void activityIdle(IBinder token, Configuration config, boolean stopProfiling) {
1706 final long origId = Binder.clearCallingIdentity();
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001707 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001708 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001709 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityIdle");
Riddle Hsufc8ab262019-12-31 15:31:24 +08001710 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1711 if (r == null) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001712 return;
1713 }
Riddle Hsufc8ab262019-12-31 15:31:24 +08001714 mStackSupervisor.activityIdleInternal(r, false /* fromTimeout */,
1715 false /* processPausingActivities */, config);
1716 if (stopProfiling && r.hasProcess()) {
1717 r.app.clearProfilerIfNeeded();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001718 }
1719 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001720 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001721 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07001722 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001723 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001724 }
1725
1726 @Override
1727 public final void activityResumed(IBinder token) {
1728 final long origId = Binder.clearCallingIdentity();
1729 synchronized (mGlobalLock) {
1730 ActivityRecord.activityResumedLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001731 }
1732 Binder.restoreCallingIdentity(origId);
1733 }
1734
1735 @Override
Andrii Kulian86e70fc2019-02-12 11:04:10 +00001736 public final void activityTopResumedStateLost() {
1737 final long origId = Binder.clearCallingIdentity();
1738 synchronized (mGlobalLock) {
1739 mStackSupervisor.handleTopResumedStateReleased(false /* timeout */);
1740 }
1741 Binder.restoreCallingIdentity(origId);
1742 }
1743
1744 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001745 public final void activityPaused(IBinder token) {
1746 final long origId = Binder.clearCallingIdentity();
1747 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001748 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityPaused");
Wale Ogunwale196db712019-12-27 15:35:39 +00001749 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1750 if (r != null) {
1751 r.activityPaused(false);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001752 }
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001753 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001754 }
1755 Binder.restoreCallingIdentity(origId);
1756 }
1757
1758 @Override
1759 public final void activityStopped(IBinder token, Bundle icicle,
1760 PersistableBundle persistentState, CharSequence description) {
1761 if (DEBUG_ALL) Slog.v(TAG, "Activity stopped: token=" + token);
1762
1763 // Refuse possible leaked file descriptors
1764 if (icicle != null && icicle.hasFileDescriptors()) {
1765 throw new IllegalArgumentException("File descriptors passed in Bundle");
1766 }
1767
1768 final long origId = Binder.clearCallingIdentity();
1769
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001770 String restartingName = null;
1771 int restartingUid = 0;
1772 final ActivityRecord r;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001773 synchronized (mGlobalLock) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001774 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityStopped");
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001775 r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001776 if (r != null) {
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001777 if (r.attachedToProcess()
1778 && r.isState(ActivityStack.ActivityState.RESTARTING_PROCESS)) {
1779 // The activity was requested to restart from
1780 // {@link #restartActivityProcessIfVisible}.
1781 restartingName = r.app.mName;
1782 restartingUid = r.app.mUid;
1783 }
Wale Ogunwale196db712019-12-27 15:35:39 +00001784 r.activityStopped(icicle, persistentState, description);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001785 }
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001786 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001787 }
1788
Riddle Hsu7b766fd2019-01-28 21:14:59 +08001789 if (restartingName != null) {
1790 // In order to let the foreground activity can be restarted with its saved state from
1791 // {@link android.app.Activity#onSaveInstanceState}, the kill operation is postponed
1792 // until the activity reports stopped with the state. And the activity record will be
1793 // kept because the record state is restarting, then the activity will be restarted
1794 // immediately if it is still the top one.
1795 mStackSupervisor.removeRestartTimeouts(r);
1796 mAmInternal.killProcess(restartingName, restartingUid, "restartActivityProcess");
1797 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001798 mAmInternal.trimApplications();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001799
1800 Binder.restoreCallingIdentity(origId);
1801 }
1802
1803 @Override
1804 public final void activityDestroyed(IBinder token) {
1805 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "ACTIVITY DESTROYED: " + token);
1806 synchronized (mGlobalLock) {
Andrii Kulian79d67982019-08-19 11:56:16 -07001807 final long origId = Binder.clearCallingIdentity();
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001808 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "activityDestroyed");
Andrii Kulian79d67982019-08-19 11:56:16 -07001809 try {
1810 final ActivityRecord activity = ActivityRecord.forTokenLocked(token);
1811 if (activity != null) {
1812 activity.destroyed("activityDestroyed");
1813 }
1814 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08001815 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Andrii Kulian79d67982019-08-19 11:56:16 -07001816 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001817 }
1818 }
1819 }
1820
1821 @Override
1822 public final void activityRelaunched(IBinder token) {
1823 final long origId = Binder.clearCallingIdentity();
1824 synchronized (mGlobalLock) {
1825 mStackSupervisor.activityRelaunchedLocked(token);
1826 }
1827 Binder.restoreCallingIdentity(origId);
1828 }
1829
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001830 @Override
1831 public void setRequestedOrientation(IBinder token, int requestedOrientation) {
1832 synchronized (mGlobalLock) {
1833 ActivityRecord r = ActivityRecord.isInStackLocked(token);
1834 if (r == null) {
1835 return;
1836 }
1837 final long origId = Binder.clearCallingIdentity();
1838 try {
1839 r.setRequestedOrientation(requestedOrientation);
1840 } finally {
1841 Binder.restoreCallingIdentity(origId);
1842 }
1843 }
1844 }
1845
1846 @Override
1847 public int getRequestedOrientation(IBinder token) {
1848 synchronized (mGlobalLock) {
Wale Ogunwaleda8b8272018-11-29 19:37:37 -08001849 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1850 return (r != null)
1851 ? r.getRequestedOrientation() : ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001852 }
1853 }
1854
1855 @Override
1856 public void setImmersive(IBinder token, boolean immersive) {
1857 synchronized (mGlobalLock) {
1858 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1859 if (r == null) {
1860 throw new IllegalArgumentException();
1861 }
1862 r.immersive = immersive;
1863
1864 // update associated state if we're frontmost
Andrii Kulian52d255c2018-07-13 11:32:19 -07001865 if (r.isResumedActivityOnDisplay()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001866 if (DEBUG_IMMERSIVE) Slog.d(TAG_IMMERSIVE, "Frontmost changed immersion: "+ r);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001867 applyUpdateLockStateLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001868 }
1869 }
1870 }
1871
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001872 void applyUpdateLockStateLocked(ActivityRecord r) {
1873 // Modifications to the UpdateLock state are done on our handler, outside
1874 // the activity manager's locks. The new state is determined based on the
1875 // state *now* of the relevant activity record. The object is passed to
1876 // the handler solely for logging detail, not to be consulted/modified.
1877 final boolean nextState = r != null && r.immersive;
1878 mH.post(() -> {
1879 if (mUpdateLock.isHeld() != nextState) {
1880 if (DEBUG_IMMERSIVE) Slog.d(TAG_IMMERSIVE,
1881 "Applying new update lock state '" + nextState + "' for " + r);
1882 if (nextState) {
1883 mUpdateLock.acquire();
1884 } else {
1885 mUpdateLock.release();
1886 }
1887 }
1888 });
1889 }
1890
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001891 @Override
1892 public boolean isImmersive(IBinder token) {
1893 synchronized (mGlobalLock) {
1894 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1895 if (r == null) {
1896 throw new IllegalArgumentException();
1897 }
1898 return r.immersive;
1899 }
1900 }
1901
1902 @Override
1903 public boolean isTopActivityImmersive() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001904 enforceNotIsolatedCaller("isTopActivityImmersive");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001905 synchronized (mGlobalLock) {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001906 final ActivityRecord r = getTopDisplayFocusedStack().topRunningActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001907 return (r != null) ? r.immersive : false;
1908 }
1909 }
1910
1911 @Override
1912 public void overridePendingTransition(IBinder token, String packageName,
1913 int enterAnim, int exitAnim) {
1914 synchronized (mGlobalLock) {
1915 ActivityRecord self = ActivityRecord.isInStackLocked(token);
1916 if (self == null) {
1917 return;
1918 }
1919
1920 final long origId = Binder.clearCallingIdentity();
1921
1922 if (self.isState(
1923 ActivityStack.ActivityState.RESUMED, ActivityStack.ActivityState.PAUSING)) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08001924 self.getDisplay().mDisplayContent.mAppTransition.overridePendingAppTransition(
lumark588a3e82018-07-20 18:53:54 +08001925 packageName, enterAnim, exitAnim, null);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001926 }
1927
1928 Binder.restoreCallingIdentity(origId);
1929 }
1930 }
1931
1932 @Override
1933 public int getFrontActivityScreenCompatMode() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001934 enforceNotIsolatedCaller("getFrontActivityScreenCompatMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001935 synchronized (mGlobalLock) {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001936 final ActivityRecord r = getTopDisplayFocusedStack().topRunningActivity();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001937 if (r == null) {
1938 return ActivityManager.COMPAT_MODE_UNKNOWN;
1939 }
Wale Ogunwale53783742018-09-16 10:21:51 -07001940 return mCompatModePackages.computeCompatModeLocked(r.info.applicationInfo);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001941 }
1942 }
1943
1944 @Override
1945 public void setFrontActivityScreenCompatMode(int mode) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001946 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001947 "setFrontActivityScreenCompatMode");
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001948 ApplicationInfo ai;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001949 synchronized (mGlobalLock) {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09001950 final ActivityRecord r = getTopDisplayFocusedStack().topRunningActivity();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07001951 if (r == null) {
1952 Slog.w(TAG, "setFrontActivityScreenCompatMode failed: no top activity");
1953 return;
1954 }
1955 ai = r.info.applicationInfo;
Wale Ogunwale53783742018-09-16 10:21:51 -07001956 mCompatModePackages.setPackageScreenCompatModeLocked(ai, mode);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001957 }
1958 }
1959
1960 @Override
1961 public int getLaunchedFromUid(IBinder activityToken) {
1962 ActivityRecord srec;
1963 synchronized (mGlobalLock) {
1964 srec = ActivityRecord.forTokenLocked(activityToken);
1965 }
1966 if (srec == null) {
1967 return -1;
1968 }
1969 return srec.launchedFromUid;
1970 }
1971
1972 @Override
1973 public String getLaunchedFromPackage(IBinder activityToken) {
1974 ActivityRecord srec;
1975 synchronized (mGlobalLock) {
1976 srec = ActivityRecord.forTokenLocked(activityToken);
1977 }
1978 if (srec == null) {
1979 return null;
1980 }
1981 return srec.launchedFromPackage;
1982 }
1983
1984 @Override
1985 public boolean convertFromTranslucent(IBinder token) {
1986 final long origId = Binder.clearCallingIdentity();
1987 try {
1988 synchronized (mGlobalLock) {
1989 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1990 if (r == null) {
1991 return false;
1992 }
Wale Ogunwale83b8a6b2019-06-27 20:15:15 -07001993 return r.setOccludesParent(true);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07001994 }
1995 } finally {
1996 Binder.restoreCallingIdentity(origId);
1997 }
1998 }
1999
2000 @Override
2001 public boolean convertToTranslucent(IBinder token, Bundle options) {
2002 SafeActivityOptions safeOptions = SafeActivityOptions.fromBundle(options);
2003 final long origId = Binder.clearCallingIdentity();
2004 try {
2005 synchronized (mGlobalLock) {
2006 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
2007 if (r == null) {
2008 return false;
2009 }
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002010 final ActivityRecord under = r.getTask().getActivityBelow(r);
2011 if (under != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002012 under.returningOptions = safeOptions != null ? safeOptions.getOptions(r) : null;
2013 }
Wale Ogunwale83b8a6b2019-06-27 20:15:15 -07002014 return r.setOccludesParent(false);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002015 }
2016 } finally {
2017 Binder.restoreCallingIdentity(origId);
2018 }
2019 }
2020
2021 @Override
2022 public void notifyActivityDrawn(IBinder token) {
2023 if (DEBUG_VISIBILITY) Slog.d(TAG_VISIBILITY, "notifyActivityDrawn: token=" + token);
2024 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002025 ActivityRecord r = mRootWindowContainer.isInAnyStack(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002026 if (r != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002027 r.getRootTask().notifyActivityDrawnLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002028 }
2029 }
2030 }
2031
2032 @Override
2033 public void reportActivityFullyDrawn(IBinder token, boolean restoredFromBundle) {
2034 synchronized (mGlobalLock) {
2035 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2036 if (r == null) {
2037 return;
2038 }
2039 r.reportFullyDrawnLocked(restoredFromBundle);
2040 }
2041 }
2042
2043 @Override
Louis Chang677921f2019-12-06 16:44:24 +08002044 public int getDisplayId(IBinder activityToken) throws RemoteException {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002045 synchronized (mGlobalLock) {
2046 final ActivityStack stack = ActivityRecord.getStackLocked(activityToken);
Wale Ogunwale8f93b642019-12-26 12:10:52 -08002047 if (stack != null) {
2048 final int displayId = stack.getDisplayId();
2049 return displayId != INVALID_DISPLAY ? displayId : DEFAULT_DISPLAY;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002050 }
2051 return DEFAULT_DISPLAY;
2052 }
2053 }
2054
2055 @Override
2056 public ActivityManager.StackInfo getFocusedStackInfo() throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002057 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002058 long ident = Binder.clearCallingIdentity();
2059 try {
2060 synchronized (mGlobalLock) {
Andrii Kulian5f750bc2018-07-17 08:57:23 -07002061 ActivityStack focusedStack = getTopDisplayFocusedStack();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002062 if (focusedStack != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002063 return mRootWindowContainer.getStackInfo(focusedStack.mTaskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002064 }
2065 return null;
2066 }
2067 } finally {
2068 Binder.restoreCallingIdentity(ident);
2069 }
2070 }
2071
2072 @Override
2073 public void setFocusedStack(int stackId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002074 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "setFocusedStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002075 if (DEBUG_FOCUS) Slog.d(TAG_FOCUS, "setFocusedStack: stackId=" + stackId);
2076 final long callingId = Binder.clearCallingIdentity();
2077 try {
2078 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002079 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002080 if (stack == null) {
2081 Slog.w(TAG, "setFocusedStack: No stack with id=" + stackId);
2082 return;
2083 }
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002084 final ActivityRecord r = stack.topRunningActivity();
Louis Chang19443452018-10-09 12:10:21 +08002085 if (r != null && r.moveFocusableActivityToTop("setFocusedStack")) {
Louis Chang149d5c82019-12-30 09:47:39 +08002086 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002087 }
2088 }
2089 } finally {
2090 Binder.restoreCallingIdentity(callingId);
2091 }
2092 }
2093
2094 @Override
2095 public void setFocusedTask(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002096 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "setFocusedTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002097 if (DEBUG_FOCUS) Slog.d(TAG_FOCUS, "setFocusedTask: taskId=" + taskId);
2098 final long callingId = Binder.clearCallingIdentity();
2099 try {
2100 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002101 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002102 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002103 if (task == null) {
2104 return;
2105 }
2106 final ActivityRecord r = task.topRunningActivityLocked();
Louis Chang19443452018-10-09 12:10:21 +08002107 if (r != null && r.moveFocusableActivityToTop("setFocusedTask")) {
Louis Chang149d5c82019-12-30 09:47:39 +08002108 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002109 }
2110 }
2111 } finally {
2112 Binder.restoreCallingIdentity(callingId);
2113 }
2114 }
2115
2116 @Override
Riddle Hsu7b766fd2019-01-28 21:14:59 +08002117 public void restartActivityProcessIfVisible(IBinder activityToken) {
2118 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "restartActivityProcess()");
2119 final long callingId = Binder.clearCallingIdentity();
2120 try {
2121 synchronized (mGlobalLock) {
2122 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
2123 if (r == null) {
2124 return;
2125 }
2126 r.restartProcessIfVisible();
2127 }
2128 } finally {
2129 Binder.restoreCallingIdentity(callingId);
2130 }
2131 }
2132
2133 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002134 public boolean removeTask(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002135 enforceCallerIsRecentsOrHasPermission(REMOVE_TASKS, "removeTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002136 synchronized (mGlobalLock) {
2137 final long ident = Binder.clearCallingIdentity();
2138 try {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002139 return mStackSupervisor.removeTaskById(taskId, true, REMOVE_FROM_RECENTS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002140 "remove-task");
2141 } finally {
2142 Binder.restoreCallingIdentity(ident);
2143 }
2144 }
2145 }
2146
2147 @Override
Winson Chunge6439102018-07-30 15:48:01 -07002148 public void removeAllVisibleRecentTasks() {
2149 enforceCallerIsRecentsOrHasPermission(REMOVE_TASKS, "removeAllVisibleRecentTasks()");
2150 synchronized (mGlobalLock) {
2151 final long ident = Binder.clearCallingIdentity();
2152 try {
Winson Chung42fa21f2019-04-02 16:23:46 -07002153 getRecentTasks().removeAllVisibleTasks(mAmInternal.getCurrentUserId());
Winson Chunge6439102018-07-30 15:48:01 -07002154 } finally {
2155 Binder.restoreCallingIdentity(ident);
2156 }
2157 }
2158 }
2159
2160 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002161 public boolean shouldUpRecreateTask(IBinder token, String destAffinity) {
2162 synchronized (mGlobalLock) {
2163 final ActivityRecord srec = ActivityRecord.forTokenLocked(token);
2164 if (srec != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002165 return srec.getRootTask().shouldUpRecreateTaskLocked(srec, destAffinity);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002166 }
2167 }
2168 return false;
2169 }
2170
2171 @Override
2172 public boolean navigateUpTo(IBinder token, Intent destIntent, int resultCode,
2173 Intent resultData) {
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002174
Jeff Sharkey344ce7c2019-05-29 14:52:59 -06002175 synchronized (mGlobalLock) {
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002176 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2177 if (r != null) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002178 return r.getRootTask().navigateUpTo(
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002179 r, destIntent, resultCode, resultData);
Jeff Sharkey344ce7c2019-05-29 14:52:59 -06002180 }
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00002181 return false;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002182 }
2183 }
2184
2185 /**
2186 * Attempts to move a task backwards in z-order (the order of activities within the task is
2187 * unchanged).
2188 *
2189 * There are several possible results of this call:
2190 * - if the task is locked, then we will show the lock toast
2191 * - if there is a task behind the provided task, then that task is made visible and resumed as
2192 * this task is moved to the back
2193 * - otherwise, if there are no other tasks in the stack:
2194 * - if this task is in the pinned stack, then we remove the stack completely, which will
2195 * have the effect of moving the task to the top or bottom of the fullscreen stack
2196 * (depending on whether it is visible)
2197 * - otherwise, we simply return home and hide this task
2198 *
2199 * @param token A reference to the activity we wish to move
2200 * @param nonRoot If false then this only works if the activity is the root
2201 * of a task; if true it will work for any activity in a task.
2202 * @return Returns true if the move completed, false if not.
2203 */
2204 @Override
2205 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002206 enforceNotIsolatedCaller("moveActivityTaskToBack");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002207 synchronized (mGlobalLock) {
2208 final long origId = Binder.clearCallingIdentity();
2209 try {
2210 int taskId = ActivityRecord.getTaskForActivityLocked(token, !nonRoot);
Louis Chang149d5c82019-12-30 09:47:39 +08002211 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002212 if (task != null) {
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002213 return ActivityRecord.getStackLocked(token).moveTaskToBack(task);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002214 }
2215 } finally {
2216 Binder.restoreCallingIdentity(origId);
2217 }
2218 }
2219 return false;
2220 }
2221
2222 @Override
2223 public Rect getTaskBounds(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002224 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "getTaskBounds()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002225 long ident = Binder.clearCallingIdentity();
2226 Rect rect = new Rect();
2227 try {
2228 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002229 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002230 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
2231 if (task == null) {
2232 Slog.w(TAG, "getTaskBounds: taskId=" + taskId + " not found");
2233 return rect;
2234 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02002235 if (task.getParent() != null) {
2236 rect.set(task.getBounds());
2237 } else if (task.mLastNonFullscreenBounds != null) {
2238 rect.set(task.mLastNonFullscreenBounds);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002239 }
2240 }
2241 } finally {
2242 Binder.restoreCallingIdentity(ident);
2243 }
2244 return rect;
2245 }
2246
2247 @Override
2248 public ActivityManager.TaskDescription getTaskDescription(int id) {
2249 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002250 enforceCallerIsRecentsOrHasPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002251 MANAGE_ACTIVITY_STACKS, "getTaskDescription()");
Louis Chang149d5c82019-12-30 09:47:39 +08002252 final Task tr = mRootWindowContainer.anyTaskForId(id,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002253 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
2254 if (tr != null) {
Wale Ogunwale2322bed2019-10-10 17:24:19 +02002255 return tr.getTaskDescription();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002256 }
2257 }
2258 return null;
2259 }
2260
2261 @Override
Winson Chung7ccc6812020-01-23 16:15:10 -08002262 public boolean setTaskWindowingMode(int taskId, int windowingMode, boolean toTop) {
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002263 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
Winson Chung7ccc6812020-01-23 16:15:10 -08002264 return setTaskWindowingModeSplitScreenPrimary(taskId,
2265 SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002266 toTop, ANIMATE, null /* initialBounds */, true /* showRecents */);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002267 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002268 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "setTaskWindowingMode()");
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002269 synchronized (mGlobalLock) {
2270 final long ident = Binder.clearCallingIdentity();
2271 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002272 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002273 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002274 if (task == null) {
2275 Slog.w(TAG, "setTaskWindowingMode: No task for id=" + taskId);
Winson Chung7ccc6812020-01-23 16:15:10 -08002276 return false;
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002277 }
2278
2279 if (DEBUG_STACK) Slog.d(TAG_STACK, "setTaskWindowingMode: moving task=" + taskId
2280 + " to windowingMode=" + windowingMode + " toTop=" + toTop);
2281
2282 if (!task.isActivityTypeStandardOrUndefined()) {
2283 throw new IllegalArgumentException("setTaskWindowingMode: Attempt to move"
2284 + " non-standard task " + taskId + " to windowing mode="
2285 + windowingMode);
2286 }
2287
2288 final ActivityStack stack = task.getStack();
2289 if (toTop) {
2290 stack.moveToFront("setTaskWindowingMode", task);
2291 }
2292 stack.setWindowingMode(windowingMode);
Winson Chung7ccc6812020-01-23 16:15:10 -08002293 return true;
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002294 } finally {
2295 Binder.restoreCallingIdentity(ident);
2296 }
2297 }
2298 }
2299
2300 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002301 public String getCallingPackage(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002302 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002303 ActivityRecord r = getCallingRecordLocked(token);
2304 return r != null ? r.info.packageName : null;
2305 }
2306 }
2307
2308 @Override
2309 public ComponentName getCallingActivity(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002310 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002311 ActivityRecord r = getCallingRecordLocked(token);
2312 return r != null ? r.intent.getComponent() : null;
2313 }
2314 }
2315
2316 private ActivityRecord getCallingRecordLocked(IBinder token) {
2317 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2318 if (r == null) {
2319 return null;
2320 }
2321 return r.resultTo;
2322 }
2323
2324 @Override
2325 public void unhandledBack() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002326 mAmInternal.enforceCallingPermission(android.Manifest.permission.FORCE_BACK, "unhandledBack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002327
2328 synchronized (mGlobalLock) {
2329 final long origId = Binder.clearCallingIdentity();
2330 try {
Andrii Kulian5f750bc2018-07-17 08:57:23 -07002331 getTopDisplayFocusedStack().unhandledBackLocked();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002332 } finally {
2333 Binder.restoreCallingIdentity(origId);
2334 }
2335 }
2336 }
2337
Mark Renouf446251d2019-04-26 10:22:41 -04002338 @Override
2339 public void onBackPressedOnTaskRoot(IBinder token, IRequestFinishCallback callback) {
2340 synchronized (mGlobalLock) {
2341 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2342 if (r == null) {
2343 return;
2344 }
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002345 ActivityStack stack = r.getRootTask();
Mark Renouf446251d2019-04-26 10:22:41 -04002346 if (stack != null && stack.isSingleTaskInstance()) {
2347 // Single-task stacks are used for activities which are presented in floating
2348 // windows above full screen activities. Instead of directly finishing the
2349 // task, a task change listener is used to notify SystemUI so the action can be
2350 // handled specially.
Louis Changcdec0802019-11-11 11:45:07 +08002351 final Task task = r.getTask();
Mark Renouf446251d2019-04-26 10:22:41 -04002352 mTaskChangeNotificationController
2353 .notifyBackPressedOnTaskRoot(task.getTaskInfo());
2354 } else {
2355 try {
2356 callback.requestFinish();
2357 } catch (RemoteException e) {
2358 Slog.e(TAG, "Failed to invoke request finish callback", e);
2359 }
2360 }
2361 }
2362 }
2363
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002364 /**
2365 * TODO: Add mController hook
2366 */
2367 @Override
Ricky Waiaca8a772019-04-04 16:01:06 +01002368 public void moveTaskToFront(IApplicationThread appThread, String callingPackage, int taskId,
2369 int flags, Bundle bOptions) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002370 mAmInternal.enforceCallingPermission(android.Manifest.permission.REORDER_TASKS, "moveTaskToFront()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002371
2372 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveTaskToFront: moving taskId=" + taskId);
2373 synchronized (mGlobalLock) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002374 moveTaskToFrontLocked(appThread, callingPackage, taskId, flags,
2375 SafeActivityOptions.fromBundle(bOptions), false /* fromRecents */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002376 }
2377 }
2378
Ricky Waiaca8a772019-04-04 16:01:06 +01002379 void moveTaskToFrontLocked(@Nullable IApplicationThread appThread,
2380 @Nullable String callingPackage, int taskId, int flags, SafeActivityOptions options,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002381 boolean fromRecents) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002382 final int callingPid = Binder.getCallingPid();
2383 final int callingUid = Binder.getCallingUid();
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002384 assertPackageMatchesCallingUid(callingPackage);
Ricky Waiaca8a772019-04-04 16:01:06 +01002385 if (!checkAppSwitchAllowedLocked(callingPid, callingUid, -1, -1, "Task to front")) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002386 SafeActivityOptions.abort(options);
2387 return;
2388 }
2389 final long origId = Binder.clearCallingIdentity();
Ricky Waiaca8a772019-04-04 16:01:06 +01002390 WindowProcessController callerApp = null;
2391 if (appThread != null) {
2392 callerApp = getProcessController(appThread);
2393 }
2394 final ActivityStarter starter = getActivityStartController().obtainStarter(
2395 null /* intent */, "moveTaskToFront");
2396 if (starter.shouldAbortBackgroundActivityStart(callingUid, callingPid, callingPackage, -1,
2397 -1, callerApp, null, false, null)) {
Alan Stokes9e245762019-05-21 14:54:28 +01002398 if (!isBackgroundActivityStartsEnabled()) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002399 return;
2400 }
2401 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002402 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002403 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002404 if (task == null) {
2405 Slog.d(TAG, "Could not find task for id: "+ taskId);
Winson Chungd0243682018-09-25 18:11:54 -07002406 SafeActivityOptions.abort(options);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002407 return;
2408 }
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07002409 if (getLockTaskController().isLockTaskModeViolation(task)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002410 Slog.e(TAG, "moveTaskToFront: Attempt to violate Lock Task Mode");
Winson Chungd0243682018-09-25 18:11:54 -07002411 SafeActivityOptions.abort(options);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002412 return;
2413 }
2414 ActivityOptions realOptions = options != null
2415 ? options.getOptions(mStackSupervisor)
2416 : null;
2417 mStackSupervisor.findTaskToMoveToFront(task, flags, realOptions, "moveTaskToFront",
2418 false /* forceNonResizable */);
2419
Wale Ogunwale21e06482019-11-18 05:14:15 -08002420 final ActivityRecord topActivity = task.getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002421 if (topActivity != null) {
2422
2423 // We are reshowing a task, use a starting window to hide the initial draw delay
2424 // so the transition can start earlier.
2425 topActivity.showStartingWindow(null /* prev */, false /* newTask */,
2426 true /* taskSwitch */, fromRecents);
2427 }
2428 } finally {
2429 Binder.restoreCallingIdentity(origId);
2430 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002431 }
2432
Ricky Waiaca8a772019-04-04 16:01:06 +01002433 /**
2434 * Return true if callingUid is system, or packageName belongs to that callingUid.
2435 */
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002436 private boolean isSameApp(int callingUid, @Nullable String packageName) {
Ricky Waiaca8a772019-04-04 16:01:06 +01002437 try {
2438 if (callingUid != 0 && callingUid != SYSTEM_UID) {
2439 if (packageName == null) {
2440 return false;
2441 }
2442 final int uid = AppGlobals.getPackageManager().getPackageUid(packageName,
2443 PackageManager.MATCH_DEBUG_TRIAGED_MISSING,
2444 UserHandle.getUserId(callingUid));
2445 return UserHandle.isSameApp(callingUid, uid);
2446 }
2447 } catch (RemoteException e) {
2448 // Should not happen
2449 }
2450 return true;
2451 }
2452
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07002453 /**
2454 * Checks that the provided package name matches the current calling UID, throws a security
2455 * exception if it doesn't.
2456 */
2457 void assertPackageMatchesCallingUid(@Nullable String packageName) {
2458 final int callingUid = Binder.getCallingUid();
2459 if (isSameApp(callingUid, packageName)) {
2460 return;
2461 }
2462 final String msg = "Permission Denial: package=" + packageName
2463 + " does not belong to uid=" + callingUid;
2464 Slog.w(TAG, msg);
2465 throw new SecurityException(msg);
2466 }
2467
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002468 boolean checkAppSwitchAllowedLocked(int sourcePid, int sourceUid,
2469 int callingPid, int callingUid, String name) {
2470 if (mAppSwitchesAllowedTime < SystemClock.uptimeMillis()) {
2471 return true;
2472 }
2473
2474 if (getRecentTasks().isCallerRecents(sourceUid)) {
2475 return true;
2476 }
2477
2478 int perm = checkComponentPermission(STOP_APP_SWITCHES, sourcePid, sourceUid, -1, true);
2479 if (perm == PackageManager.PERMISSION_GRANTED) {
2480 return true;
2481 }
2482 if (checkAllowAppSwitchUid(sourceUid)) {
2483 return true;
2484 }
2485
2486 // If the actual IPC caller is different from the logical source, then
2487 // also see if they are allowed to control app switches.
2488 if (callingUid != -1 && callingUid != sourceUid) {
2489 perm = checkComponentPermission(STOP_APP_SWITCHES, callingPid, callingUid, -1, true);
2490 if (perm == PackageManager.PERMISSION_GRANTED) {
2491 return true;
2492 }
2493 if (checkAllowAppSwitchUid(callingUid)) {
2494 return true;
2495 }
2496 }
2497
2498 Slog.w(TAG, name + " request from " + sourceUid + " stopped");
2499 return false;
2500 }
2501
2502 private boolean checkAllowAppSwitchUid(int uid) {
2503 ArrayMap<String, Integer> types = mAllowAppSwitchUids.get(UserHandle.getUserId(uid));
2504 if (types != null) {
2505 for (int i = types.size() - 1; i >= 0; i--) {
2506 if (types.valueAt(i).intValue() == uid) {
2507 return true;
2508 }
2509 }
2510 }
2511 return false;
2512 }
2513
2514 @Override
2515 public void setActivityController(IActivityController controller, boolean imAMonkey) {
2516 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_ACTIVITY_WATCHER,
2517 "setActivityController()");
2518 synchronized (mGlobalLock) {
2519 mController = controller;
2520 mControllerIsAMonkey = imAMonkey;
2521 Watchdog.getInstance().setActivityController(controller);
2522 }
2523 }
2524
Wale Ogunwale387b34c2018-10-25 19:59:40 -07002525 public boolean isControllerAMonkey() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002526 synchronized (mGlobalLock) {
2527 return mController != null && mControllerIsAMonkey;
2528 }
2529 }
2530
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002531 @Override
2532 public int getTaskForActivity(IBinder token, boolean onlyRoot) {
2533 synchronized (mGlobalLock) {
2534 return ActivityRecord.getTaskForActivityLocked(token, onlyRoot);
2535 }
2536 }
2537
2538 @Override
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002539 public List<ActivityManager.RunningTaskInfo> getTasks(int maxNum) {
2540 return getFilteredTasks(maxNum, ACTIVITY_TYPE_UNDEFINED, WINDOWING_MODE_UNDEFINED);
2541 }
2542
2543 @Override
2544 public List<ActivityManager.RunningTaskInfo> getFilteredTasks(int maxNum,
2545 @WindowConfiguration.ActivityType int ignoreActivityType,
2546 @WindowConfiguration.WindowingMode int ignoreWindowingMode) {
2547 final int callingUid = Binder.getCallingUid();
Nicholas Sauer0259e532019-08-30 08:24:55 -07002548 final int callingPid = Binder.getCallingPid();
2549 final boolean crossUser = isCrossUserAllowed(callingPid, callingUid);
Nicholas Sauer3f9249f2019-09-10 20:23:41 -07002550 final int[] profileIds = getUserManager().getProfileIds(
2551 UserHandle.getUserId(callingUid), true);
2552 ArraySet<Integer> callingProfileIds = new ArraySet<>();
2553 for (int i = 0; i < profileIds.length; i++) {
2554 callingProfileIds.add(profileIds[i]);
2555 }
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002556 ArrayList<ActivityManager.RunningTaskInfo> list = new ArrayList<>();
2557
2558 synchronized (mGlobalLock) {
2559 if (DEBUG_ALL) Slog.v(TAG, "getTasks: max=" + maxNum);
2560
Nicholas Sauer0259e532019-08-30 08:24:55 -07002561 final boolean allowed = isGetTasksAllowed("getTasks", callingPid, callingUid);
Louis Chang149d5c82019-12-30 09:47:39 +08002562 mRootWindowContainer.getRunningTasks(maxNum, list, ignoreActivityType,
Nicholas Sauer3f9249f2019-09-10 20:23:41 -07002563 ignoreWindowingMode, callingUid, allowed, crossUser, callingProfileIds);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002564 }
2565
2566 return list;
2567 }
2568
2569 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002570 public final void finishSubActivity(IBinder token, String resultWho, int requestCode) {
2571 synchronized (mGlobalLock) {
2572 final long origId = Binder.clearCallingIdentity();
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002573 try {
2574 ActivityRecord r = ActivityRecord.isInStackLocked(token);
2575 if (r == null) return;
2576
2577 final PooledConsumer c = PooledLambda.obtainConsumer(
2578 ActivityRecord::finishIfSubActivity, PooledLambda.__(ActivityRecord.class),
2579 r, resultWho, requestCode);
2580 // TODO: This should probably only loop over the task since you need to be in the
2581 // same task to return results.
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08002582 r.getRootTask().forAllActivities(c);
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002583 c.recycle();
2584
2585 updateOomAdj();
2586 } finally {
2587 Binder.restoreCallingIdentity(origId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002588 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002589 }
2590 }
2591
2592 @Override
2593 public boolean willActivityBeVisible(IBinder token) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002594 synchronized (mGlobalLock) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002595 ActivityStack stack = ActivityRecord.getStackLocked(token);
2596 if (stack != null) {
Wale Ogunwalea38654f2019-11-17 20:37:15 -08002597 return stack.willActivityBeVisible(token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002598 }
2599 return false;
2600 }
2601 }
2602
2603 @Override
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002604 public void moveTaskToStack(int taskId, int stackId, boolean toTop) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002605 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "moveTaskToStack()");
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002606 synchronized (mGlobalLock) {
2607 final long ident = Binder.clearCallingIdentity();
2608 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002609 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002610 if (task == null) {
2611 Slog.w(TAG, "moveTaskToStack: No task for id=" + taskId);
2612 return;
2613 }
2614
2615 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveTaskToStack: moving task=" + taskId
2616 + " to stackId=" + stackId + " toTop=" + toTop);
2617
Louis Chang149d5c82019-12-30 09:47:39 +08002618 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002619 if (stack == null) {
2620 throw new IllegalStateException(
2621 "moveTaskToStack: No stack for stackId=" + stackId);
2622 }
2623 if (!stack.isActivityTypeStandardOrUndefined()) {
2624 throw new IllegalArgumentException("moveTaskToStack: Attempt to move task "
2625 + taskId + " to stack " + stackId);
2626 }
2627 if (stack.inSplitScreenPrimaryWindowingMode()) {
Wale Ogunwale83b8a6b2019-06-27 20:15:15 -07002628 mWindowManager.setDockedStackCreateStateLocked(
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002629 SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT, null /* initialBounds */);
2630 }
2631 task.reparent(stack, toTop, REPARENT_KEEP_STACK_AT_FRONT, ANIMATE, !DEFER_RESUME,
2632 "moveTaskToStack");
2633 } finally {
2634 Binder.restoreCallingIdentity(ident);
2635 }
2636 }
2637 }
2638
2639 @Override
Evan Roskydbe2ce52019-07-18 11:13:17 -07002640 public void animateResizePinnedStack(int stackId, Rect destBounds, int animationDuration) {
2641 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "animateResizePinnedStack()");
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002642
2643 final long ident = Binder.clearCallingIdentity();
2644 try {
2645 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002646 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Evan Roskydbe2ce52019-07-18 11:13:17 -07002647 if (stack == null) {
2648 Slog.w(TAG, "resizeStack: stackId " + stackId + " not found.");
2649 return;
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002650 }
Evan Roskydbe2ce52019-07-18 11:13:17 -07002651 if (stack.getWindowingMode() != WINDOWING_MODE_PINNED) {
2652 throw new IllegalArgumentException("Stack: " + stackId
2653 + " doesn't support animated resize.");
2654 }
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -07002655 stack.animateResizePinnedStack(destBounds, null /* sourceHintBounds */,
Evan Roskydbe2ce52019-07-18 11:13:17 -07002656 animationDuration, false /* fromFullscreen */);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002657 }
2658 } finally {
2659 Binder.restoreCallingIdentity(ident);
2660 }
2661 }
2662
wilsonshih5c4cf522019-01-25 09:03:47 +08002663 @Override
2664 public void offsetPinnedStackBounds(int stackId, Rect compareBounds, int xOffset, int yOffset,
2665 int animationDuration) {
2666 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "offsetPinnedStackBounds()");
2667
2668 final long ident = Binder.clearCallingIdentity();
2669 try {
2670 synchronized (mGlobalLock) {
2671 if (xOffset == 0 && yOffset == 0) {
2672 return;
2673 }
Louis Chang149d5c82019-12-30 09:47:39 +08002674 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
wilsonshih5c4cf522019-01-25 09:03:47 +08002675 if (stack == null) {
2676 Slog.w(TAG, "offsetPinnedStackBounds: stackId " + stackId + " not found.");
2677 return;
2678 }
2679 if (stack.getWindowingMode() != WINDOWING_MODE_PINNED) {
2680 throw new IllegalArgumentException("Stack: " + stackId
2681 + " doesn't support animated resize.");
2682 }
2683 final Rect destBounds = new Rect();
2684 stack.getAnimationOrCurrentBounds(destBounds);
wilsonshiha6e408c2019-02-19 17:30:03 +08002685 if (destBounds.isEmpty() || !destBounds.equals(compareBounds)) {
wilsonshih5c4cf522019-01-25 09:03:47 +08002686 Slog.w(TAG, "The current stack bounds does not matched! It may be obsolete.");
2687 return;
2688 }
2689 destBounds.offset(xOffset, yOffset);
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -07002690 stack.animateResizePinnedStack(destBounds, null /* sourceHintBounds */,
wilsonshih5c4cf522019-01-25 09:03:47 +08002691 animationDuration, false /* fromFullscreen */);
2692 }
2693 } finally {
2694 Binder.restoreCallingIdentity(ident);
2695 }
2696 }
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002697 /**
2698 * Moves the specified task to the primary-split-screen stack.
2699 *
2700 * @param taskId Id of task to move.
2701 * @param createMode The mode the primary split screen stack should be created in if it doesn't
2702 * exist already. See
2703 * {@link android.app.ActivityTaskManager#SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT}
2704 * and
2705 * {@link android.app.ActivityTaskManager#SPLIT_SCREEN_CREATE_MODE_BOTTOM_OR_RIGHT}
2706 * @param toTop If the task and stack should be moved to the top.
2707 * @param animate Whether we should play an animation for the moving the task.
2708 * @param initialBounds If the primary stack gets created, it will use these bounds for the
2709 * stack. Pass {@code null} to use default bounds.
2710 * @param showRecents If the recents activity should be shown on the other side of the task
2711 * going into split-screen mode.
Winson Chung7ccc6812020-01-23 16:15:10 -08002712 * @return Whether the task was successfully put into splitscreen.
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002713 */
2714 @Override
2715 public boolean setTaskWindowingModeSplitScreenPrimary(int taskId, int createMode,
2716 boolean toTop, boolean animate, Rect initialBounds, boolean showRecents) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002717 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002718 "setTaskWindowingModeSplitScreenPrimary()");
2719 synchronized (mGlobalLock) {
2720 final long ident = Binder.clearCallingIdentity();
2721 try {
Winson Chung7ccc6812020-01-23 16:15:10 -08002722 if (isInLockTaskMode()) {
2723 Slog.w(TAG, "setTaskWindowingModeSplitScreenPrimary: Is in lock task mode="
2724 + getLockTaskModeState());
2725 return false;
2726 }
2727
Louis Chang149d5c82019-12-30 09:47:39 +08002728 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002729 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002730 if (task == null) {
2731 Slog.w(TAG, "setTaskWindowingModeSplitScreenPrimary: No task for id=" + taskId);
2732 return false;
2733 }
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002734 if (!task.isActivityTypeStandardOrUndefined()) {
2735 throw new IllegalArgumentException("setTaskWindowingMode: Attempt to move"
2736 + " non-standard task " + taskId + " to split-screen windowing mode");
2737 }
2738
Winson Chung7ccc6812020-01-23 16:15:10 -08002739 if (DEBUG_STACK) Slog.d(TAG_STACK,
2740 "setTaskWindowingModeSplitScreenPrimary: moving task=" + taskId
2741 + " to createMode=" + createMode + " toTop=" + toTop);
Wale Ogunwale83b8a6b2019-06-27 20:15:15 -07002742 mWindowManager.setDockedStackCreateStateLocked(createMode, initialBounds);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002743 final int windowingMode = task.getWindowingMode();
2744 final ActivityStack stack = task.getStack();
2745 if (toTop) {
2746 stack.moveToFront("setTaskWindowingModeSplitScreenPrimary", task);
2747 }
2748 stack.setWindowingMode(WINDOWING_MODE_SPLIT_SCREEN_PRIMARY, animate, showRecents,
Evan Roskyc5abbd82018-10-05 16:02:19 -07002749 false /* enteringSplitScreenMode */, false /* deferEnsuringVisibility */,
2750 false /* creating */);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002751 return windowingMode != task.getWindowingMode();
2752 } finally {
2753 Binder.restoreCallingIdentity(ident);
2754 }
2755 }
2756 }
2757
2758 /**
2759 * Removes stacks in the input windowing modes from the system if they are of activity type
2760 * ACTIVITY_TYPE_STANDARD or ACTIVITY_TYPE_UNDEFINED
2761 */
2762 @Override
2763 public void removeStacksInWindowingModes(int[] windowingModes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002764 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002765 "removeStacksInWindowingModes()");
2766
2767 synchronized (mGlobalLock) {
2768 final long ident = Binder.clearCallingIdentity();
2769 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002770 mRootWindowContainer.removeStacksInWindowingModes(windowingModes);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002771 } finally {
2772 Binder.restoreCallingIdentity(ident);
2773 }
2774 }
2775 }
2776
2777 @Override
2778 public void removeStacksWithActivityTypes(int[] activityTypes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002779 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002780 "removeStacksWithActivityTypes()");
2781
2782 synchronized (mGlobalLock) {
2783 final long ident = Binder.clearCallingIdentity();
2784 try {
Louis Chang149d5c82019-12-30 09:47:39 +08002785 mRootWindowContainer.removeStacksWithActivityTypes(activityTypes);
Wale Ogunwale65ebd952018-04-25 15:41:44 -07002786 } finally {
2787 Binder.restoreCallingIdentity(ident);
2788 }
2789 }
2790 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002791
2792 @Override
2793 public ParceledListSlice<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum, int flags,
2794 int userId) {
2795 final int callingUid = Binder.getCallingUid();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002796 userId = handleIncomingUser(Binder.getCallingPid(), callingUid, userId, "getRecentTasks");
2797 final boolean allowed = isGetTasksAllowed("getRecentTasks", Binder.getCallingPid(),
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002798 callingUid);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002799 final boolean detailed = checkGetTasksPermission(
2800 android.Manifest.permission.GET_DETAILED_TASKS, Binder.getCallingPid(),
2801 UserHandle.getAppId(callingUid))
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002802 == PackageManager.PERMISSION_GRANTED;
2803
2804 synchronized (mGlobalLock) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07002805 return mRecentTasks.getRecentTasks(maxNum, flags, allowed, detailed, userId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002806 callingUid);
2807 }
2808 }
2809
2810 @Override
2811 public List<ActivityManager.StackInfo> getAllStackInfos() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002812 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getAllStackInfos()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002813 long ident = Binder.clearCallingIdentity();
2814 try {
2815 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002816 return mRootWindowContainer.getAllStackInfos(INVALID_DISPLAY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002817 }
2818 } finally {
2819 Binder.restoreCallingIdentity(ident);
2820 }
2821 }
2822
2823 @Override
2824 public ActivityManager.StackInfo getStackInfo(int windowingMode, int activityType) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002825 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002826 long ident = Binder.clearCallingIdentity();
2827 try {
2828 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002829 return mRootWindowContainer.getStackInfo(windowingMode, activityType);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002830 }
2831 } finally {
2832 Binder.restoreCallingIdentity(ident);
2833 }
2834 }
2835
2836 @Override
Evan Roskyfd439692019-11-06 16:12:59 -08002837 public List<ActivityManager.StackInfo> getAllStackInfosOnDisplay(int displayId) {
2838 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getAllStackInfos()");
2839 long ident = Binder.clearCallingIdentity();
2840 try {
2841 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002842 return mRootWindowContainer.getAllStackInfos(displayId);
Evan Roskyfd439692019-11-06 16:12:59 -08002843 }
2844 } finally {
2845 Binder.restoreCallingIdentity(ident);
2846 }
2847 }
2848
2849 @Override
2850 public ActivityManager.StackInfo getStackInfoOnDisplay(int windowingMode, int activityType,
2851 int displayId) {
2852 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "getStackInfo()");
2853 long ident = Binder.clearCallingIdentity();
2854 try {
2855 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002856 return mRootWindowContainer.getStackInfo(windowingMode, activityType, displayId);
Evan Roskyfd439692019-11-06 16:12:59 -08002857 }
2858 } finally {
2859 Binder.restoreCallingIdentity(ident);
2860 }
2861 }
2862
2863 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002864 public void cancelRecentsAnimation(boolean restoreHomeStackPosition) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002865 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "cancelRecentsAnimation()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002866 final long callingUid = Binder.getCallingUid();
2867 final long origId = Binder.clearCallingIdentity();
2868 try {
2869 synchronized (mGlobalLock) {
2870 // Cancel the recents animation synchronously (do not hold the WM lock)
Wale Ogunwalea441b922019-06-27 19:21:44 -07002871 mWindowManager.cancelRecentsAnimation(restoreHomeStackPosition
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002872 ? REORDER_MOVE_TO_ORIGINAL_POSITION
2873 : REORDER_KEEP_IN_PLACE, "cancelRecentsAnimation/uid=" + callingUid);
2874 }
2875 } finally {
2876 Binder.restoreCallingIdentity(origId);
2877 }
2878 }
2879
2880 @Override
2881 public void startLockTaskModeByToken(IBinder token) {
2882 synchronized (mGlobalLock) {
2883 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2884 if (r == null) {
2885 return;
2886 }
Louis Changcdec0802019-11-11 11:45:07 +08002887 startLockTaskModeLocked(r.getTask(), false /* isSystemCaller */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002888 }
2889 }
2890
2891 @Override
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002892 public void startSystemLockTaskMode(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002893 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "startSystemLockTaskMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002894 // This makes inner call to look as if it was initiated by system.
2895 long ident = Binder.clearCallingIdentity();
2896 try {
2897 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08002898 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08002899 MATCH_TASK_IN_STACKS_ONLY);
2900 if (task == null) {
2901 return;
2902 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002903
2904 // When starting lock task mode the stack must be in front and focused
2905 task.getStack().moveToFront("startSystemLockTaskMode");
2906 startLockTaskModeLocked(task, true /* isSystemCaller */);
2907 }
2908 } finally {
2909 Binder.restoreCallingIdentity(ident);
2910 }
2911 }
2912
2913 @Override
2914 public void stopLockTaskModeByToken(IBinder token) {
2915 synchronized (mGlobalLock) {
2916 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
2917 if (r == null) {
2918 return;
2919 }
Louis Changcdec0802019-11-11 11:45:07 +08002920 stopLockTaskModeInternal(r.getTask(), false /* isSystemCaller */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002921 }
2922 }
2923
2924 /**
2925 * This API should be called by SystemUI only when user perform certain action to dismiss
2926 * lock task mode. We should only dismiss pinned lock task mode in this case.
2927 */
2928 @Override
2929 public void stopSystemLockTaskMode() throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07002930 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "stopSystemLockTaskMode");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002931 stopLockTaskModeInternal(null, true /* isSystemCaller */);
2932 }
2933
Louis Changcdec0802019-11-11 11:45:07 +08002934 private void startLockTaskModeLocked(@Nullable Task task, boolean isSystemCaller) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002935 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "startLockTaskModeLocked: " + task);
2936 if (task == null || task.mLockTaskAuth == LOCK_TASK_AUTH_DONT_LOCK) {
2937 return;
2938 }
2939
Louis Chang149d5c82019-12-30 09:47:39 +08002940 final ActivityStack stack = mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09002941 if (stack == null || task != stack.getTopMostTask()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002942 throw new IllegalArgumentException("Invalid task, not in foreground");
2943 }
2944
2945 // {@code isSystemCaller} is used to distinguish whether this request is initiated by the
2946 // system or a specific app.
2947 // * System-initiated requests will only start the pinned mode (screen pinning)
2948 // * App-initiated requests
2949 // - will put the device in fully locked mode (LockTask), if the app is whitelisted
2950 // - will start the pinned mode, otherwise
2951 final int callingUid = Binder.getCallingUid();
2952 long ident = Binder.clearCallingIdentity();
2953 try {
2954 // When a task is locked, dismiss the pinned stack if it exists
Louis Chang149d5c82019-12-30 09:47:39 +08002955 mRootWindowContainer.removeStacksInWindowingModes(WINDOWING_MODE_PINNED);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002956
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07002957 getLockTaskController().startLockTaskMode(task, isSystemCaller, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002958 } finally {
2959 Binder.restoreCallingIdentity(ident);
2960 }
2961 }
2962
Louis Changcdec0802019-11-11 11:45:07 +08002963 private void stopLockTaskModeInternal(@Nullable Task task, boolean isSystemCaller) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002964 final int callingUid = Binder.getCallingUid();
2965 long ident = Binder.clearCallingIdentity();
2966 try {
2967 synchronized (mGlobalLock) {
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07002968 getLockTaskController().stopLockTaskMode(task, isSystemCaller, callingUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002969 }
2970 // Launch in-call UI if a call is ongoing. This is necessary to allow stopping the lock
2971 // task and jumping straight into a call in the case of emergency call back.
2972 TelecomManager tm = (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);
2973 if (tm != null) {
2974 tm.showInCallScreen(false);
2975 }
2976 } finally {
2977 Binder.restoreCallingIdentity(ident);
2978 }
2979 }
2980
2981 @Override
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07002982 public void updateLockTaskPackages(int userId, String[] packages) {
2983 final int callingUid = Binder.getCallingUid();
2984 if (callingUid != 0 && callingUid != SYSTEM_UID) {
2985 mAmInternal.enforceCallingPermission(Manifest.permission.UPDATE_LOCK_TASK_PACKAGES,
2986 "updateLockTaskPackages()");
2987 }
Riddle Hsu8419e4b2019-09-18 23:28:01 +08002988 synchronized (mGlobalLock) {
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07002989 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "Whitelisting " + userId + ":"
2990 + Arrays.toString(packages));
2991 getLockTaskController().updateLockTaskPackages(userId, packages);
2992 }
2993 }
2994
2995 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07002996 public boolean isInLockTaskMode() {
2997 return getLockTaskModeState() != LOCK_TASK_MODE_NONE;
2998 }
2999
3000 @Override
3001 public int getLockTaskModeState() {
3002 synchronized (mGlobalLock) {
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003003 return getLockTaskController().getLockTaskModeState();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003004 }
3005 }
3006
3007 @Override
3008 public void setTaskDescription(IBinder token, ActivityManager.TaskDescription td) {
3009 synchronized (mGlobalLock) {
3010 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3011 if (r != null) {
3012 r.setTaskDescription(td);
Louis Changcdec0802019-11-11 11:45:07 +08003013 final Task task = r.getTask();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003014 task.updateTaskDescription();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003015 }
3016 }
3017 }
3018
3019 @Override
3020 public Bundle getActivityOptions(IBinder token) {
3021 final long origId = Binder.clearCallingIdentity();
3022 try {
3023 synchronized (mGlobalLock) {
3024 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
3025 if (r != null) {
Jorim Jaggi346702a2019-05-08 17:49:33 +02003026 final ActivityOptions activityOptions = r.takeOptionsLocked(
3027 true /* fromClient */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003028 return activityOptions == null ? null : activityOptions.toBundle();
3029 }
3030 return null;
3031 }
3032 } finally {
3033 Binder.restoreCallingIdentity(origId);
3034 }
3035 }
3036
3037 @Override
3038 public List<IBinder> getAppTasks(String callingPackage) {
3039 int callingUid = Binder.getCallingUid();
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07003040 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003041 long ident = Binder.clearCallingIdentity();
3042 try {
3043 synchronized (mGlobalLock) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003044 return mRecentTasks.getAppTasksList(callingUid, callingPackage);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003045 }
3046 } finally {
3047 Binder.restoreCallingIdentity(ident);
3048 }
3049 }
3050
3051 @Override
3052 public void finishVoiceTask(IVoiceInteractionSession session) {
3053 synchronized (mGlobalLock) {
3054 final long origId = Binder.clearCallingIdentity();
3055 try {
3056 // TODO: VI Consider treating local voice interactions and voice tasks
3057 // differently here
Louis Chang149d5c82019-12-30 09:47:39 +08003058 mRootWindowContainer.finishVoiceTask(session);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003059 } finally {
3060 Binder.restoreCallingIdentity(origId);
3061 }
3062 }
3063
3064 }
3065
3066 @Override
3067 public boolean isTopOfTask(IBinder token) {
3068 synchronized (mGlobalLock) {
3069 ActivityRecord r = ActivityRecord.isInStackLocked(token);
Wale Ogunwale21e06482019-11-18 05:14:15 -08003070 return r != null && r.getTask().getTopNonFinishingActivity() == r;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003071 }
3072 }
3073
3074 @Override
3075 public void notifyLaunchTaskBehindComplete(IBinder token) {
3076 mStackSupervisor.scheduleLaunchTaskBehindComplete(token);
3077 }
3078
3079 @Override
3080 public void notifyEnterAnimationComplete(IBinder token) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003081 mH.post(() -> {
3082 synchronized (mGlobalLock) {
3083 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003084 if (r != null && r.attachedToProcess()) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003085 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003086 r.app.getThread().scheduleEnterAnimationComplete(r.appToken);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003087 } catch (RemoteException e) {
3088 }
3089 }
3090 }
3091
3092 });
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003093 }
3094
3095 /** Called from an app when assist data is ready. */
3096 @Override
3097 public void reportAssistContextExtras(IBinder token, Bundle extras, AssistStructure structure,
3098 AssistContent content, Uri referrer) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003099 PendingAssistExtras pae = (PendingAssistExtras) token;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003100 synchronized (pae) {
3101 pae.result = extras;
3102 pae.structure = structure;
3103 pae.content = content;
3104 if (referrer != null) {
3105 pae.extras.putParcelable(Intent.EXTRA_REFERRER, referrer);
3106 }
3107 if (structure != null) {
Winson Chung48b25652018-10-22 14:04:30 -07003108 // Pre-fill the task/activity component for all assist data receivers
Louis Changcdec0802019-11-11 11:45:07 +08003109 structure.setTaskId(pae.activity.getTask().mTaskId);
Wale Ogunwale8b19de92018-11-29 19:58:26 -08003110 structure.setActivityComponent(pae.activity.mActivityComponent);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003111 structure.setHomeActivity(pae.isHome);
3112 }
3113 pae.haveResult = true;
3114 pae.notifyAll();
3115 if (pae.intent == null && pae.receiver == null) {
3116 // Caller is just waiting for the result.
3117 return;
3118 }
3119 }
3120 // We are now ready to launch the assist activity.
3121 IAssistDataReceiver sendReceiver = null;
3122 Bundle sendBundle = null;
3123 synchronized (mGlobalLock) {
3124 buildAssistBundleLocked(pae, extras);
3125 boolean exists = mPendingAssistExtras.remove(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003126 mUiHandler.removeCallbacks(pae);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003127 if (!exists) {
3128 // Timed out.
3129 return;
3130 }
3131
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003132 if ((sendReceiver = pae.receiver) != null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003133 // Caller wants result sent back to them.
3134 sendBundle = new Bundle();
Sunny Goyald40c3452019-03-20 12:46:55 -07003135 sendBundle.putInt(ActivityTaskManagerInternal.ASSIST_TASK_ID,
Louis Changcdec0802019-11-11 11:45:07 +08003136 pae.activity.getTask().mTaskId);
Sunny Goyald40c3452019-03-20 12:46:55 -07003137 sendBundle.putBinder(ActivityTaskManagerInternal.ASSIST_ACTIVITY_ID,
3138 pae.activity.assistToken);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003139 sendBundle.putBundle(ASSIST_KEY_DATA, pae.extras);
3140 sendBundle.putParcelable(ASSIST_KEY_STRUCTURE, pae.structure);
3141 sendBundle.putParcelable(ASSIST_KEY_CONTENT, pae.content);
3142 sendBundle.putBundle(ASSIST_KEY_RECEIVER_EXTRAS, pae.receiverExtras);
3143 }
3144 }
3145 if (sendReceiver != null) {
3146 try {
3147 sendReceiver.onHandleAssistData(sendBundle);
3148 } catch (RemoteException e) {
3149 }
3150 return;
3151 }
3152
3153 final long ident = Binder.clearCallingIdentity();
3154 try {
3155 if (TextUtils.equals(pae.intent.getAction(),
3156 android.service.voice.VoiceInteractionService.SERVICE_INTERFACE)) {
Galia Peychevabffbfc32019-06-18 10:11:35 +02003157 // Start voice interaction through VoiceInteractionManagerService.
3158 mAssistUtils.showSessionForActiveService(sendBundle, SHOW_SOURCE_APPLICATION,
3159 null, null);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003160 } else {
3161 pae.intent.replaceExtras(pae.extras);
3162 pae.intent.setFlags(FLAG_ACTIVITY_NEW_TASK
3163 | Intent.FLAG_ACTIVITY_SINGLE_TOP
3164 | Intent.FLAG_ACTIVITY_CLEAR_TOP);
Wale Ogunwale31913b52018-10-13 08:29:31 -07003165 mInternal.closeSystemDialogs("assist");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003166
3167 try {
3168 mContext.startActivityAsUser(pae.intent, new UserHandle(pae.userHandle));
3169 } catch (ActivityNotFoundException e) {
3170 Slog.w(TAG, "No activity to handle assist action.", e);
3171 }
3172 }
3173 } finally {
3174 Binder.restoreCallingIdentity(ident);
3175 }
3176 }
3177
3178 @Override
3179 public int addAppTask(IBinder activityToken, Intent intent,
3180 ActivityManager.TaskDescription description, Bitmap thumbnail) throws RemoteException {
3181 final int callingUid = Binder.getCallingUid();
3182 final long callingIdent = Binder.clearCallingIdentity();
3183
3184 try {
3185 synchronized (mGlobalLock) {
3186 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
3187 if (r == null) {
3188 throw new IllegalArgumentException("Activity does not exist; token="
3189 + activityToken);
3190 }
3191 ComponentName comp = intent.getComponent();
3192 if (comp == null) {
3193 throw new IllegalArgumentException("Intent " + intent
3194 + " must specify explicit component");
3195 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003196 if (thumbnail.getWidth() != mThumbnailWidth
3197 || thumbnail.getHeight() != mThumbnailHeight) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003198 throw new IllegalArgumentException("Bad thumbnail size: got "
3199 + thumbnail.getWidth() + "x" + thumbnail.getHeight() + ", require "
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003200 + mThumbnailWidth + "x" + mThumbnailHeight);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003201 }
3202 if (intent.getSelector() != null) {
3203 intent.setSelector(null);
3204 }
3205 if (intent.getSourceBounds() != null) {
3206 intent.setSourceBounds(null);
3207 }
3208 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_DOCUMENT) != 0) {
3209 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS) == 0) {
3210 // The caller has added this as an auto-remove task... that makes no
3211 // sense, so turn off auto-remove.
3212 intent.addFlags(Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS);
3213 }
3214 }
3215 final ActivityInfo ainfo = AppGlobals.getPackageManager().getActivityInfo(comp,
3216 STOCK_PM_FLAGS, UserHandle.getUserId(callingUid));
3217 if (ainfo.applicationInfo.uid != callingUid) {
3218 throw new SecurityException(
3219 "Can't add task for another application: target uid="
3220 + ainfo.applicationInfo.uid + ", calling uid=" + callingUid);
3221 }
3222
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08003223 final ActivityStack stack = r.getRootTask();
Louis Changcdec0802019-11-11 11:45:07 +08003224 final Task task = stack.createTask(
Wale Ogunwale8f93b642019-12-26 12:10:52 -08003225 mStackSupervisor.getNextTaskIdForUser(r.mUserId), ainfo, intent, !ON_TOP);
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003226 if (!mRecentTasks.addToBottom(task)) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003227 // The app has too many tasks already and we can't add any more
Wale Ogunwale2322bed2019-10-10 17:24:19 +02003228 stack.removeChild(task, "addAppTask");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003229 return INVALID_TASK_ID;
3230 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02003231 task.getTaskDescription().copyFrom(description);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003232
3233 // TODO: Send the thumbnail to WM to store it.
3234
Wale Ogunwale4e79a1c2019-10-05 20:52:40 -07003235 return task.mTaskId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003236 }
3237 } finally {
3238 Binder.restoreCallingIdentity(callingIdent);
3239 }
3240 }
3241
3242 @Override
3243 public Point getAppTaskThumbnailSize() {
3244 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003245 return new Point(mThumbnailWidth, mThumbnailHeight);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003246 }
3247 }
3248
3249 @Override
3250 public void setTaskResizeable(int taskId, int resizeableMode) {
3251 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08003252 final Task task = mRootWindowContainer.anyTaskForId(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003253 taskId, MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
3254 if (task == null) {
3255 Slog.w(TAG, "setTaskResizeable: taskId=" + taskId + " not found");
3256 return;
3257 }
3258 task.setResizeMode(resizeableMode);
3259 }
3260 }
3261
3262 @Override
3263 public void resizeTask(int taskId, Rect bounds, int resizeMode) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003264 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "resizeTask()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003265 long ident = Binder.clearCallingIdentity();
3266 try {
3267 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08003268 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Riddle Hsu090ac6f2018-10-31 12:55:29 +08003269 MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003270 if (task == null) {
3271 Slog.w(TAG, "resizeTask: taskId=" + taskId + " not found");
3272 return;
3273 }
3274 // Place the task in the right stack if it isn't there already based on
3275 // the requested bounds.
3276 // The stack transition logic is:
3277 // - a null bounds on a freeform task moves that task to fullscreen
3278 // - a non-null bounds on a non-freeform (fullscreen OR docked) task moves
3279 // that task to freeform
3280 // - otherwise the task is not moved
3281 ActivityStack stack = task.getStack();
3282 if (!task.getWindowConfiguration().canResizeTask()) {
3283 throw new IllegalArgumentException("resizeTask not allowed on task=" + task);
3284 }
3285 if (bounds == null && stack.getWindowingMode() == WINDOWING_MODE_FREEFORM) {
3286 stack = stack.getDisplay().getOrCreateStack(
3287 WINDOWING_MODE_FULLSCREEN, stack.getActivityType(), ON_TOP);
3288 } else if (bounds != null && stack.getWindowingMode() != WINDOWING_MODE_FREEFORM) {
3289 stack = stack.getDisplay().getOrCreateStack(
3290 WINDOWING_MODE_FREEFORM, stack.getActivityType(), ON_TOP);
3291 }
3292
3293 // Reparent the task to the right stack if necessary
3294 boolean preserveWindow = (resizeMode & RESIZE_MODE_PRESERVE_WINDOW) != 0;
3295 if (stack != task.getStack()) {
3296 // Defer resume until the task is resized below
3297 task.reparent(stack, ON_TOP, REPARENT_KEEP_STACK_AT_FRONT, ANIMATE,
3298 DEFER_RESUME, "resizeTask");
3299 preserveWindow = false;
3300 }
3301
3302 // After reparenting (which only resizes the task to the stack bounds), resize the
3303 // task to the actual bounds provided
3304 task.resize(bounds, resizeMode, preserveWindow, !DEFER_RESUME);
3305 }
3306 } finally {
3307 Binder.restoreCallingIdentity(ident);
3308 }
3309 }
3310
3311 @Override
3312 public boolean releaseActivityInstance(IBinder token) {
3313 synchronized (mGlobalLock) {
3314 final long origId = Binder.clearCallingIdentity();
3315 try {
Andrii Kulianf49a58c2019-08-14 17:34:27 -07003316 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
3317 if (r == null || !r.isDestroyable()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003318 return false;
3319 }
Andrii Kulianf49a58c2019-08-14 17:34:27 -07003320 r.destroyImmediately(true /* removeFromApp */, "app-req");
3321 return r.isState(DESTROYING, DESTROYED);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003322 } finally {
3323 Binder.restoreCallingIdentity(origId);
3324 }
3325 }
3326 }
3327
3328 @Override
3329 public void releaseSomeActivities(IApplicationThread appInt) {
3330 synchronized (mGlobalLock) {
3331 final long origId = Binder.clearCallingIdentity();
3332 try {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07003333 final WindowProcessController app = getProcessController(appInt);
Wale Ogunwalea38654f2019-11-17 20:37:15 -08003334 app.releaseSomeActivities("low-mem");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003335 } finally {
3336 Binder.restoreCallingIdentity(origId);
3337 }
3338 }
3339 }
3340
3341 @Override
wilsonshih177261f2019-02-22 12:02:18 +08003342 public void setLockScreenShown(boolean keyguardShowing, boolean aodShowing) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003343 if (checkCallingPermission(android.Manifest.permission.DEVICE_POWER)
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003344 != PackageManager.PERMISSION_GRANTED) {
3345 throw new SecurityException("Requires permission "
3346 + android.Manifest.permission.DEVICE_POWER);
3347 }
3348
3349 synchronized (mGlobalLock) {
3350 long ident = Binder.clearCallingIdentity();
3351 if (mKeyguardShown != keyguardShowing) {
3352 mKeyguardShown = keyguardShowing;
Wale Ogunwale342fbe92018-10-09 08:44:10 -07003353 final Message msg = PooledLambda.obtainMessage(
3354 ActivityManagerInternal::reportCurKeyguardUsageEvent, mAmInternal,
3355 keyguardShowing);
3356 mH.sendMessage(msg);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003357 }
3358 try {
wilsonshih177261f2019-02-22 12:02:18 +08003359 mKeyguardController.setKeyguardShown(keyguardShowing, aodShowing);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003360 } finally {
3361 Binder.restoreCallingIdentity(ident);
3362 }
3363 }
3364
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003365 mH.post(() -> {
3366 for (int i = mScreenObservers.size() - 1; i >= 0; i--) {
3367 mScreenObservers.get(i).onKeyguardStateChanged(keyguardShowing);
3368 }
3369 });
3370 }
3371
Wale Ogunwale387b34c2018-10-25 19:59:40 -07003372 public void onScreenAwakeChanged(boolean isAwake) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003373 mH.post(() -> {
3374 for (int i = mScreenObservers.size() - 1; i >= 0; i--) {
3375 mScreenObservers.get(i).onAwakeStateChanged(isAwake);
3376 }
3377 });
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003378 }
3379
3380 @Override
3381 public Bitmap getTaskDescriptionIcon(String filePath, int userId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003382 userId = handleIncomingUser(Binder.getCallingPid(), Binder.getCallingUid(),
3383 userId, "getTaskDescriptionIcon");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003384
3385 final File passedIconFile = new File(filePath);
3386 final File legitIconFile = new File(TaskPersister.getUserImagesDir(userId),
3387 passedIconFile.getName());
3388 if (!legitIconFile.getPath().equals(filePath)
3389 || !filePath.contains(ActivityRecord.ACTIVITY_ICON_SUFFIX)) {
3390 throw new IllegalArgumentException("Bad file path: " + filePath
3391 + " passed for userId " + userId);
3392 }
Wale Ogunwale16e505a2018-05-07 15:00:49 -07003393 return mRecentTasks.getTaskDescriptionIcon(filePath);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003394 }
3395
3396 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003397 public void removeStack(int stackId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003398 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "removeStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003399 synchronized (mGlobalLock) {
3400 final long ident = Binder.clearCallingIdentity();
3401 try {
Louis Chang149d5c82019-12-30 09:47:39 +08003402 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003403 if (stack == null) {
3404 Slog.w(TAG, "removeStack: No stack with id=" + stackId);
3405 return;
3406 }
3407 if (!stack.isActivityTypeStandardOrUndefined()) {
3408 throw new IllegalArgumentException(
3409 "Removing non-standard stack is not allowed.");
3410 }
3411 mStackSupervisor.removeStack(stack);
3412 } finally {
3413 Binder.restoreCallingIdentity(ident);
3414 }
3415 }
3416 }
3417
3418 @Override
3419 public void moveStackToDisplay(int stackId, int displayId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003420 mAmInternal.enforceCallingPermission(INTERNAL_SYSTEM_WINDOW, "moveStackToDisplay()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003421
3422 synchronized (mGlobalLock) {
3423 final long ident = Binder.clearCallingIdentity();
3424 try {
3425 if (DEBUG_STACK) Slog.d(TAG_STACK, "moveStackToDisplay: moving stackId=" + stackId
3426 + " to displayId=" + displayId);
Louis Chang149d5c82019-12-30 09:47:39 +08003427 mRootWindowContainer.moveStackToDisplay(stackId, displayId, ON_TOP);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003428 } finally {
3429 Binder.restoreCallingIdentity(ident);
3430 }
3431 }
3432 }
3433
3434 @Override
Yunfan Chend967af82019-01-17 18:30:18 +09003435 public void toggleFreeformWindowingMode(IBinder token) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003436 synchronized (mGlobalLock) {
3437 long ident = Binder.clearCallingIdentity();
3438 try {
3439 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
3440 if (r == null) {
3441 throw new IllegalArgumentException(
Yunfan Chend967af82019-01-17 18:30:18 +09003442 "toggleFreeformWindowingMode: No activity record matching token="
3443 + token);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003444 }
3445
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08003446 final ActivityStack stack = r.getRootTask();
Yunfan Chend967af82019-01-17 18:30:18 +09003447 if (stack == null) {
3448 throw new IllegalStateException("toggleFreeformWindowingMode: the activity "
3449 + "doesn't have a stack");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003450 }
3451
Yunfan Chend967af82019-01-17 18:30:18 +09003452 if (!stack.inFreeformWindowingMode()
3453 && stack.getWindowingMode() != WINDOWING_MODE_FULLSCREEN) {
3454 throw new IllegalStateException("toggleFreeformWindowingMode: You can only "
3455 + "toggle between fullscreen and freeform.");
3456 }
3457
3458 if (stack.inFreeformWindowingMode()) {
3459 stack.setWindowingMode(WINDOWING_MODE_FULLSCREEN);
Evan Rosky3a8d7fe2019-11-06 17:08:35 -08003460 } else if (!mSizeCompatFreeform && r.inSizeCompatMode()) {
Shivam Agrawal780b5bb2019-07-17 10:17:11 -07003461 throw new IllegalStateException("Size-compat windows are currently not"
3462 + "freeform-enabled");
Yunfan Chene9c1c312019-04-18 14:49:15 +09003463 } else if (stack.getParent().inFreeformWindowingMode()) {
3464 // If the window is on a freeform display, set it to undefined. It will be
3465 // resolved to freeform and it can adjust windowing mode when the display mode
3466 // changes in runtime.
3467 stack.setWindowingMode(WINDOWING_MODE_UNDEFINED);
Yunfan Chend967af82019-01-17 18:30:18 +09003468 } else {
3469 stack.setWindowingMode(WINDOWING_MODE_FREEFORM);
3470 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003471 } finally {
3472 Binder.restoreCallingIdentity(ident);
3473 }
3474 }
3475 }
3476
3477 /** Sets the task stack listener that gets callbacks when a task stack changes. */
3478 @Override
3479 public void registerTaskStackListener(ITaskStackListener listener) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003480 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003481 "registerTaskStackListener()");
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003482 mTaskChangeNotificationController.registerTaskStackListener(listener);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003483 }
3484
3485 /** Unregister a task stack listener so that it stops receiving callbacks. */
3486 @Override
3487 public void unregisterTaskStackListener(ITaskStackListener listener) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003488 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003489 "unregisterTaskStackListener()");
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003490 mTaskChangeNotificationController.unregisterTaskStackListener(listener);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003491 }
3492
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003493 @Override
3494 public boolean requestAssistContextExtras(int requestType, IAssistDataReceiver receiver,
3495 Bundle receiverExtras, IBinder activityToken, boolean focused, boolean newSessionId) {
3496 return enqueueAssistContext(requestType, null, null, receiver, receiverExtras,
3497 activityToken, focused, newSessionId, UserHandle.getCallingUserId(), null,
3498 PENDING_ASSIST_EXTRAS_LONG_TIMEOUT, 0) != null;
3499 }
3500
3501 @Override
3502 public boolean requestAutofillData(IAssistDataReceiver receiver, Bundle receiverExtras,
3503 IBinder activityToken, int flags) {
3504 return enqueueAssistContext(ActivityManager.ASSIST_CONTEXT_AUTOFILL, null, null,
3505 receiver, receiverExtras, activityToken, true, true, UserHandle.getCallingUserId(),
3506 null, PENDING_AUTOFILL_ASSIST_STRUCTURE_TIMEOUT, flags) != null;
3507 }
3508
3509 @Override
3510 public boolean launchAssistIntent(Intent intent, int requestType, String hint, int userHandle,
3511 Bundle args) {
3512 return enqueueAssistContext(requestType, intent, hint, null, null, null,
3513 true /* focused */, true /* newSessionId */, userHandle, args,
3514 PENDING_ASSIST_EXTRAS_TIMEOUT, 0) != null;
3515 }
3516
3517 @Override
3518 public Bundle getAssistContextExtras(int requestType) {
3519 PendingAssistExtras pae = enqueueAssistContext(requestType, null, null, null,
3520 null, null, true /* focused */, true /* newSessionId */,
3521 UserHandle.getCallingUserId(), null, PENDING_ASSIST_EXTRAS_TIMEOUT, 0);
3522 if (pae == null) {
3523 return null;
3524 }
3525 synchronized (pae) {
3526 while (!pae.haveResult) {
3527 try {
3528 pae.wait();
3529 } catch (InterruptedException e) {
3530 }
3531 }
3532 }
3533 synchronized (mGlobalLock) {
3534 buildAssistBundleLocked(pae, pae.result);
3535 mPendingAssistExtras.remove(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003536 mUiHandler.removeCallbacks(pae);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003537 }
3538 return pae.extras;
3539 }
3540
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003541 /**
3542 * Binder IPC calls go through the public entry point.
3543 * This can be called with or without the global lock held.
3544 */
3545 private static int checkCallingPermission(String permission) {
3546 return checkPermission(
3547 permission, Binder.getCallingPid(), UserHandle.getAppId(Binder.getCallingUid()));
3548 }
3549
3550 /** This can be called with or without the global lock held. */
Wale Ogunwale214f3482018-10-04 11:00:47 -07003551 private void enforceCallerIsRecentsOrHasPermission(String permission, String func) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003552 if (!getRecentTasks().isCallerRecents(Binder.getCallingUid())) {
3553 mAmInternal.enforceCallingPermission(permission, func);
3554 }
3555 }
3556
3557 @VisibleForTesting
3558 int checkGetTasksPermission(String permission, int pid, int uid) {
3559 return checkPermission(permission, pid, uid);
3560 }
3561
3562 static int checkPermission(String permission, int pid, int uid) {
3563 if (permission == null) {
3564 return PackageManager.PERMISSION_DENIED;
3565 }
3566 return checkComponentPermission(permission, pid, uid, -1, true);
3567 }
3568
Wale Ogunwale214f3482018-10-04 11:00:47 -07003569 public static int checkComponentPermission(String permission, int pid, int uid,
3570 int owningUid, boolean exported) {
3571 return ActivityManagerService.checkComponentPermission(
3572 permission, pid, uid, owningUid, exported);
3573 }
3574
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003575 boolean isGetTasksAllowed(String caller, int callingPid, int callingUid) {
3576 if (getRecentTasks().isCallerRecents(callingUid)) {
3577 // Always allow the recents component to get tasks
3578 return true;
3579 }
3580
3581 boolean allowed = checkGetTasksPermission(android.Manifest.permission.REAL_GET_TASKS,
3582 callingPid, callingUid) == PackageManager.PERMISSION_GRANTED;
3583 if (!allowed) {
3584 if (checkGetTasksPermission(android.Manifest.permission.GET_TASKS,
3585 callingPid, callingUid) == PackageManager.PERMISSION_GRANTED) {
3586 // Temporary compatibility: some existing apps on the system image may
3587 // still be requesting the old permission and not switched to the new
3588 // one; if so, we'll still allow them full access. This means we need
3589 // to see if they are holding the old permission and are a system app.
3590 try {
3591 if (AppGlobals.getPackageManager().isUidPrivileged(callingUid)) {
3592 allowed = true;
3593 if (DEBUG_TASKS) Slog.w(TAG, caller + ": caller " + callingUid
3594 + " is using old GET_TASKS but privileged; allowing");
3595 }
3596 } catch (RemoteException e) {
3597 }
3598 }
3599 if (DEBUG_TASKS) Slog.w(TAG, caller + ": caller " + callingUid
3600 + " does not hold REAL_GET_TASKS; limiting output");
3601 }
3602 return allowed;
3603 }
3604
Nicholas Sauer0259e532019-08-30 08:24:55 -07003605 boolean isCrossUserAllowed(int pid, int uid) {
3606 return checkPermission(INTERACT_ACROSS_USERS, pid, uid) == PERMISSION_GRANTED
3607 || checkPermission(INTERACT_ACROSS_USERS_FULL, pid, uid) == PERMISSION_GRANTED;
3608 }
3609
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003610 private PendingAssistExtras enqueueAssistContext(int requestType, Intent intent, String hint,
3611 IAssistDataReceiver receiver, Bundle receiverExtras, IBinder activityToken,
3612 boolean focused, boolean newSessionId, int userHandle, Bundle args, long timeout,
3613 int flags) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003614 mAmInternal.enforceCallingPermission(android.Manifest.permission.GET_TOP_ACTIVITY_INFO,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003615 "enqueueAssistContext()");
3616
3617 synchronized (mGlobalLock) {
Wale Ogunwale21e06482019-11-18 05:14:15 -08003618 ActivityRecord activity = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003619 if (activity == null) {
3620 Slog.w(TAG, "getAssistContextExtras failed: no top activity");
3621 return null;
3622 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003623 if (!activity.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003624 Slog.w(TAG, "getAssistContextExtras failed: no process for " + activity);
3625 return null;
3626 }
3627 if (focused) {
3628 if (activityToken != null) {
3629 ActivityRecord caller = ActivityRecord.forTokenLocked(activityToken);
3630 if (activity != caller) {
3631 Slog.w(TAG, "enqueueAssistContext failed: caller " + caller
3632 + " is not current top " + activity);
3633 return null;
3634 }
3635 }
3636 } else {
3637 activity = ActivityRecord.forTokenLocked(activityToken);
3638 if (activity == null) {
3639 Slog.w(TAG, "enqueueAssistContext failed: activity for token=" + activityToken
3640 + " couldn't be found");
3641 return null;
3642 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003643 if (!activity.attachedToProcess()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003644 Slog.w(TAG, "enqueueAssistContext failed: no process for " + activity);
3645 return null;
3646 }
3647 }
3648
3649 PendingAssistExtras pae;
3650 Bundle extras = new Bundle();
3651 if (args != null) {
3652 extras.putAll(args);
3653 }
3654 extras.putString(Intent.EXTRA_ASSIST_PACKAGE, activity.packageName);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003655 extras.putInt(Intent.EXTRA_ASSIST_UID, activity.app.mUid);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003656
3657 pae = new PendingAssistExtras(activity, extras, intent, hint, receiver, receiverExtras,
3658 userHandle);
3659 pae.isHome = activity.isActivityTypeHome();
3660
3661 // Increment the sessionId if necessary
3662 if (newSessionId) {
3663 mViSessionId++;
3664 }
3665 try {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07003666 activity.app.getThread().requestAssistContextExtras(activity.appToken, pae,
3667 requestType, mViSessionId, flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003668 mPendingAssistExtras.add(pae);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003669 mUiHandler.postDelayed(pae, timeout);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003670 } catch (RemoteException e) {
3671 Slog.w(TAG, "getAssistContextExtras failed: crash calling " + activity);
3672 return null;
3673 }
3674 return pae;
3675 }
3676 }
3677
3678 private void buildAssistBundleLocked(PendingAssistExtras pae, Bundle result) {
3679 if (result != null) {
3680 pae.extras.putBundle(Intent.EXTRA_ASSIST_CONTEXT, result);
3681 }
3682 if (pae.hint != null) {
3683 pae.extras.putBoolean(pae.hint, true);
3684 }
3685 }
3686
3687 private void pendingAssistExtrasTimedOut(PendingAssistExtras pae) {
3688 IAssistDataReceiver receiver;
3689 synchronized (mGlobalLock) {
3690 mPendingAssistExtras.remove(pae);
3691 receiver = pae.receiver;
3692 }
3693 if (receiver != null) {
3694 // Caller wants result sent back to them.
3695 Bundle sendBundle = new Bundle();
3696 // At least return the receiver extras
3697 sendBundle.putBundle(ASSIST_KEY_RECEIVER_EXTRAS, pae.receiverExtras);
3698 try {
3699 pae.receiver.onHandleAssistData(sendBundle);
3700 } catch (RemoteException e) {
3701 }
3702 }
3703 }
3704
3705 public class PendingAssistExtras extends Binder implements Runnable {
3706 public final ActivityRecord activity;
3707 public boolean isHome;
3708 public final Bundle extras;
3709 public final Intent intent;
3710 public final String hint;
3711 public final IAssistDataReceiver receiver;
3712 public final int userHandle;
3713 public boolean haveResult = false;
3714 public Bundle result = null;
3715 public AssistStructure structure = null;
3716 public AssistContent content = null;
3717 public Bundle receiverExtras;
3718
3719 public PendingAssistExtras(ActivityRecord _activity, Bundle _extras, Intent _intent,
3720 String _hint, IAssistDataReceiver _receiver, Bundle _receiverExtras,
3721 int _userHandle) {
3722 activity = _activity;
3723 extras = _extras;
3724 intent = _intent;
3725 hint = _hint;
3726 receiver = _receiver;
3727 receiverExtras = _receiverExtras;
3728 userHandle = _userHandle;
3729 }
3730
3731 @Override
3732 public void run() {
3733 Slog.w(TAG, "getAssistContextExtras failed: timeout retrieving from " + activity);
3734 synchronized (this) {
3735 haveResult = true;
3736 notifyAll();
3737 }
3738 pendingAssistExtrasTimedOut(this);
3739 }
3740 }
3741
3742 @Override
3743 public boolean isAssistDataAllowedOnCurrentActivity() {
3744 int userId;
3745 synchronized (mGlobalLock) {
Andrii Kulian5f750bc2018-07-17 08:57:23 -07003746 final ActivityStack focusedStack = getTopDisplayFocusedStack();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003747 if (focusedStack == null || focusedStack.isActivityTypeAssistant()) {
3748 return false;
3749 }
3750
Wale Ogunwale21e06482019-11-18 05:14:15 -08003751 final ActivityRecord activity = focusedStack.getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003752 if (activity == null) {
3753 return false;
3754 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08003755 userId = activity.mUserId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003756 }
3757 return !DevicePolicyCache.getInstance().getScreenCaptureDisabled(userId);
3758 }
3759
3760 @Override
3761 public boolean showAssistFromActivity(IBinder token, Bundle args) {
3762 long ident = Binder.clearCallingIdentity();
3763 try {
3764 synchronized (mGlobalLock) {
3765 ActivityRecord caller = ActivityRecord.forTokenLocked(token);
Wale Ogunwale21e06482019-11-18 05:14:15 -08003766 ActivityRecord top = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003767 if (top != caller) {
3768 Slog.w(TAG, "showAssistFromActivity failed: caller " + caller
3769 + " is not current top " + top);
3770 return false;
3771 }
3772 if (!top.nowVisible) {
3773 Slog.w(TAG, "showAssistFromActivity failed: caller " + caller
3774 + " is not visible");
3775 return false;
3776 }
3777 }
3778 return mAssistUtils.showSessionForActiveService(args, SHOW_SOURCE_APPLICATION, null,
3779 token);
3780 } finally {
3781 Binder.restoreCallingIdentity(ident);
3782 }
3783 }
3784
3785 @Override
3786 public boolean isRootVoiceInteraction(IBinder token) {
3787 synchronized (mGlobalLock) {
3788 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3789 if (r == null) {
3790 return false;
3791 }
3792 return r.rootVoiceInteraction;
3793 }
3794 }
3795
Wale Ogunwalef6733932018-06-27 05:14:34 -07003796 private void onLocalVoiceInteractionStartedLocked(IBinder activity,
3797 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor) {
3798 ActivityRecord activityToCallback = ActivityRecord.forTokenLocked(activity);
3799 if (activityToCallback == null) return;
3800 activityToCallback.setVoiceSessionLocked(voiceSession);
3801
3802 // Inform the activity
3803 try {
3804 activityToCallback.app.getThread().scheduleLocalVoiceInteractionStarted(activity,
3805 voiceInteractor);
3806 long token = Binder.clearCallingIdentity();
3807 try {
Andrii Kulianeceebbf2019-06-26 17:36:51 -07003808 startRunningVoiceLocked(voiceSession, activityToCallback.info.applicationInfo.uid);
Wale Ogunwalef6733932018-06-27 05:14:34 -07003809 } finally {
3810 Binder.restoreCallingIdentity(token);
3811 }
3812 // TODO: VI Should we cache the activity so that it's easier to find later
3813 // rather than scan through all the stacks and activities?
3814 } catch (RemoteException re) {
3815 activityToCallback.clearVoiceSessionLocked();
3816 // TODO: VI Should this terminate the voice session?
3817 }
3818 }
3819
3820 private void startRunningVoiceLocked(IVoiceInteractionSession session, int targetUid) {
3821 Slog.d(TAG, "<<< startRunningVoiceLocked()");
3822 mVoiceWakeLock.setWorkSource(new WorkSource(targetUid));
3823 if (mRunningVoice == null || mRunningVoice.asBinder() != session.asBinder()) {
3824 boolean wasRunningVoice = mRunningVoice != null;
3825 mRunningVoice = session;
3826 if (!wasRunningVoice) {
3827 mVoiceWakeLock.acquire();
3828 updateSleepIfNeededLocked();
3829 }
3830 }
3831 }
3832
3833 void finishRunningVoiceLocked() {
3834 if (mRunningVoice != null) {
3835 mRunningVoice = null;
3836 mVoiceWakeLock.release();
3837 updateSleepIfNeededLocked();
3838 }
3839 }
3840
3841 @Override
3842 public void setVoiceKeepAwake(IVoiceInteractionSession session, boolean keepAwake) {
3843 synchronized (mGlobalLock) {
3844 if (mRunningVoice != null && mRunningVoice.asBinder() == session.asBinder()) {
3845 if (keepAwake) {
3846 mVoiceWakeLock.acquire();
3847 } else {
3848 mVoiceWakeLock.release();
3849 }
3850 }
3851 }
3852 }
3853
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003854 @Override
3855 public ComponentName getActivityClassForToken(IBinder token) {
3856 synchronized (mGlobalLock) {
3857 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3858 if (r == null) {
3859 return null;
3860 }
3861 return r.intent.getComponent();
3862 }
3863 }
3864
3865 @Override
3866 public String getPackageForToken(IBinder token) {
3867 synchronized (mGlobalLock) {
3868 ActivityRecord r = ActivityRecord.isInStackLocked(token);
3869 if (r == null) {
3870 return null;
3871 }
3872 return r.packageName;
3873 }
3874 }
3875
3876 @Override
3877 public void showLockTaskEscapeMessage(IBinder token) {
3878 synchronized (mGlobalLock) {
3879 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
3880 if (r == null) {
3881 return;
3882 }
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07003883 getLockTaskController().showLockTaskToast();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003884 }
3885 }
3886
3887 @Override
3888 public void keyguardGoingAway(int flags) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003889 enforceNotIsolatedCaller("keyguardGoingAway");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003890 final long token = Binder.clearCallingIdentity();
3891 try {
3892 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07003893 mKeyguardController.keyguardGoingAway(flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003894 }
3895 } finally {
3896 Binder.restoreCallingIdentity(token);
3897 }
3898 }
3899
3900 /**
3901 * Try to place task to provided position. The final position might be different depending on
3902 * current user and stacks state. The task will be moved to target stack if it's currently in
3903 * different stack.
3904 */
3905 @Override
3906 public void positionTaskInStack(int taskId, int stackId, int position) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003907 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "positionTaskInStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003908 synchronized (mGlobalLock) {
3909 long ident = Binder.clearCallingIdentity();
3910 try {
3911 if (DEBUG_STACK) Slog.d(TAG_STACK, "positionTaskInStack: positioning task="
3912 + taskId + " in stackId=" + stackId + " at position=" + position);
Louis Chang149d5c82019-12-30 09:47:39 +08003913 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003914 if (task == null) {
3915 throw new IllegalArgumentException("positionTaskInStack: no task for id="
3916 + taskId);
3917 }
3918
Louis Chang149d5c82019-12-30 09:47:39 +08003919 final ActivityStack stack = mRootWindowContainer.getStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003920
3921 if (stack == null) {
3922 throw new IllegalArgumentException("positionTaskInStack: no stack for id="
3923 + stackId);
3924 }
3925 if (!stack.isActivityTypeStandardOrUndefined()) {
3926 throw new IllegalArgumentException("positionTaskInStack: Attempt to change"
3927 + " the position of task " + taskId + " in/to non-standard stack");
3928 }
3929
3930 // TODO: Have the callers of this API call a separate reparent method if that is
3931 // what they intended to do vs. having this method also do reparenting.
3932 if (task.getStack() == stack) {
3933 // Change position in current stack.
3934 stack.positionChildAt(task, position);
3935 } else {
3936 // Reparent to new stack.
3937 task.reparent(stack, position, REPARENT_LEAVE_STACK_IN_PLACE, !ANIMATE,
3938 !DEFER_RESUME, "positionTaskInStack");
3939 }
3940 } finally {
3941 Binder.restoreCallingIdentity(ident);
3942 }
3943 }
3944 }
3945
3946 @Override
3947 public void reportSizeConfigurations(IBinder token, int[] horizontalSizeConfiguration,
3948 int[] verticalSizeConfigurations, int[] smallestSizeConfigurations) {
3949 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Report configuration: " + token + " "
Yuichiro Hanadae7e930b2019-06-06 19:07:21 +09003950 + Arrays.toString(horizontalSizeConfiguration) + " "
3951 + Arrays.toString(verticalSizeConfigurations));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003952 synchronized (mGlobalLock) {
3953 ActivityRecord record = ActivityRecord.isInStackLocked(token);
3954 if (record == null) {
3955 throw new IllegalArgumentException("reportSizeConfigurations: ActivityRecord not "
3956 + "found for: " + token);
3957 }
3958 record.setSizeConfigurations(horizontalSizeConfiguration,
3959 verticalSizeConfigurations, smallestSizeConfigurations);
3960 }
3961 }
3962
3963 /**
3964 * Dismisses split-screen multi-window mode.
3965 * @param toTop If true the current primary split-screen stack will be placed or left on top.
3966 */
3967 @Override
3968 public void dismissSplitScreenMode(boolean toTop) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07003969 enforceCallerIsRecentsOrHasPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003970 MANAGE_ACTIVITY_STACKS, "dismissSplitScreenMode()");
3971 final long ident = Binder.clearCallingIdentity();
3972 try {
3973 synchronized (mGlobalLock) {
3974 final ActivityStack stack =
Wale Ogunwale734b8962020-01-21 12:17:42 -08003975 mRootWindowContainer.getDefaultDisplay().getRootSplitScreenPrimaryTask();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003976 if (stack == null) {
3977 Slog.w(TAG, "dismissSplitScreenMode: primary split-screen stack not found.");
3978 return;
3979 }
3980
3981 if (toTop) {
3982 // Caller wants the current split-screen primary stack to be the top stack after
3983 // it goes fullscreen, so move it to the front.
3984 stack.moveToFront("dismissSplitScreenMode");
JinsungKim6e7fd3e2019-06-17 18:31:28 +09003985 } else {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003986 // In this case the current split-screen primary stack shouldn't be the top
JinsungKim6e7fd3e2019-06-17 18:31:28 +09003987 // stack after it goes fullscreen, so we move the focus to the top-most
3988 // split-screen secondary stack next to it.
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003989 final ActivityStack otherStack = stack.getDisplay().getTopStackInWindowingMode(
3990 WINDOWING_MODE_SPLIT_SCREEN_SECONDARY);
3991 if (otherStack != null) {
3992 otherStack.moveToFront("dismissSplitScreenMode_other");
3993 }
3994 }
3995
Evan Rosky10475742018-09-05 19:02:48 -07003996 stack.setWindowingMode(WINDOWING_MODE_UNDEFINED);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07003997 }
3998 } finally {
3999 Binder.restoreCallingIdentity(ident);
4000 }
4001 }
4002
4003 /**
4004 * Dismisses Pip
4005 * @param animate True if the dismissal should be animated.
4006 * @param animationDuration The duration of the resize animation in milliseconds or -1 if the
4007 * default animation duration should be used.
4008 */
4009 @Override
4010 public void dismissPip(boolean animate, int animationDuration) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004011 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "dismissPip()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004012 final long ident = Binder.clearCallingIdentity();
4013 try {
4014 synchronized (mGlobalLock) {
Yunfan Chen279f5582018-12-12 15:24:50 -08004015 final ActivityStack stack =
Wale Ogunwale734b8962020-01-21 12:17:42 -08004016 mRootWindowContainer.getDefaultDisplay().getRootPinnedTask();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004017 if (stack == null) {
4018 Slog.w(TAG, "dismissPip: pinned stack not found.");
4019 return;
4020 }
4021 if (stack.getWindowingMode() != WINDOWING_MODE_PINNED) {
4022 throw new IllegalArgumentException("Stack: " + stack
4023 + " doesn't support animated resize.");
4024 }
Robert Carr8a2f9132019-11-11 15:03:15 -08004025 /**
4026 * TODO(b/146594635): Remove all PIP animation code from WM
4027 * once SysUI handles animation. Don't even try to animate TaskOrganized tasks.
4028 */
4029 if (animate && !stack.isControlledByTaskOrganizer()) {
Wale Ogunwalebebd8cd2019-10-28 15:53:31 -07004030 stack.animateResizePinnedStack(null /* destBounds */,
4031 null /* sourceHintBounds */, animationDuration,
4032 false /* fromFullscreen */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004033 } else {
Ben Lin6db8fb22019-10-18 16:03:44 -07004034 stack.dismissPip();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004035 }
4036 }
4037 } finally {
4038 Binder.restoreCallingIdentity(ident);
4039 }
4040 }
4041
4042 @Override
4043 public void suppressResizeConfigChanges(boolean suppress) throws RemoteException {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004044 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS, "suppressResizeConfigChanges()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004045 synchronized (mGlobalLock) {
4046 mSuppressResizeConfigChanges = suppress;
4047 }
4048 }
4049
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004050 @Override
4051 // TODO: API should just be about changing windowing modes...
4052 public void moveTasksToFullscreenStack(int fromStackId, boolean onTop) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004053 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004054 "moveTasksToFullscreenStack()");
4055 synchronized (mGlobalLock) {
4056 final long origId = Binder.clearCallingIdentity();
4057 try {
Louis Chang149d5c82019-12-30 09:47:39 +08004058 final ActivityStack stack = mRootWindowContainer.getStack(fromStackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004059 if (stack != null){
4060 if (!stack.isActivityTypeStandardOrUndefined()) {
4061 throw new IllegalArgumentException(
4062 "You can't move tasks from non-standard stacks.");
4063 }
4064 mStackSupervisor.moveTasksToFullscreenStackLocked(stack, onTop);
4065 }
4066 } finally {
4067 Binder.restoreCallingIdentity(origId);
4068 }
4069 }
4070 }
4071
4072 /**
4073 * Moves the top activity in the input stackId to the pinned stack.
4074 *
4075 * @param stackId Id of stack to move the top activity to pinned stack.
4076 * @param bounds Bounds to use for pinned stack.
4077 *
4078 * @return True if the top activity of the input stack was successfully moved to the pinned
4079 * stack.
4080 */
4081 @Override
4082 public boolean moveTopActivityToPinnedStack(int stackId, Rect bounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004083 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004084 "moveTopActivityToPinnedStack()");
4085 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004086 if (!mSupportsPictureInPicture) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004087 throw new IllegalStateException("moveTopActivityToPinnedStack:"
4088 + "Device doesn't support picture-in-picture mode");
4089 }
4090
4091 long ident = Binder.clearCallingIdentity();
4092 try {
Louis Chang149d5c82019-12-30 09:47:39 +08004093 return mRootWindowContainer.moveTopStackActivityToPinnedStack(stackId);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004094 } finally {
4095 Binder.restoreCallingIdentity(ident);
4096 }
4097 }
4098 }
4099
4100 @Override
4101 public boolean isInMultiWindowMode(IBinder token) {
4102 final long origId = Binder.clearCallingIdentity();
4103 try {
4104 synchronized (mGlobalLock) {
4105 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4106 if (r == null) {
4107 return false;
4108 }
4109 // An activity is consider to be in multi-window mode if its task isn't fullscreen.
4110 return r.inMultiWindowMode();
4111 }
4112 } finally {
4113 Binder.restoreCallingIdentity(origId);
4114 }
4115 }
4116
4117 @Override
4118 public boolean isInPictureInPictureMode(IBinder token) {
4119 final long origId = Binder.clearCallingIdentity();
4120 try {
4121 synchronized (mGlobalLock) {
4122 return isInPictureInPictureMode(ActivityRecord.forTokenLocked(token));
4123 }
4124 } finally {
4125 Binder.restoreCallingIdentity(origId);
4126 }
4127 }
4128
4129 private boolean isInPictureInPictureMode(ActivityRecord r) {
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004130 if (r == null || r.getRootTask() == null || !r.inPinnedWindowingMode()
4131 || r.getRootTask().isInStackLocked(r) == null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004132 return false;
4133 }
4134
4135 // If we are animating to fullscreen then we have already dispatched the PIP mode
4136 // changed, so we should reflect that check here as well.
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004137 final ActivityStack taskStack = r.getRootTask();
Yunfan Chen279f5582018-12-12 15:24:50 -08004138 return !taskStack.isAnimatingBoundsToFullscreen();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004139 }
4140
4141 @Override
4142 public boolean enterPictureInPictureMode(IBinder token, final PictureInPictureParams params) {
4143 final long origId = Binder.clearCallingIdentity();
4144 try {
4145 synchronized (mGlobalLock) {
4146 final ActivityRecord r = ensureValidPictureInPictureActivityParamsLocked(
4147 "enterPictureInPictureMode", token, params);
4148
4149 // If the activity is already in picture in picture mode, then just return early
4150 if (isInPictureInPictureMode(r)) {
4151 return true;
4152 }
4153
4154 // Activity supports picture-in-picture, now check that we can enter PiP at this
4155 // point, if it is
4156 if (!r.checkEnterPictureInPictureState("enterPictureInPictureMode",
4157 false /* beforeStopping */)) {
4158 return false;
4159 }
4160
4161 final Runnable enterPipRunnable = () -> {
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004162 synchronized (mGlobalLock) {
Hyangseok Chaeed0624e2019-11-07 10:15:46 +09004163 if (r.getParent() == null) {
4164 Slog.e(TAG, "Skip enterPictureInPictureMode, destroyed " + r);
4165 return;
4166 }
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004167 // Only update the saved args from the args that are set
4168 r.pictureInPictureArgs.copyOnlySet(params);
4169 final float aspectRatio = r.pictureInPictureArgs.getAspectRatio();
4170 final List<RemoteAction> actions = r.pictureInPictureArgs.getActions();
4171 // Adjust the source bounds by the insets for the transition down
4172 final Rect sourceBounds = new Rect(
4173 r.pictureInPictureArgs.getSourceRectHint());
Louis Chang149d5c82019-12-30 09:47:39 +08004174 mRootWindowContainer.moveActivityToPinnedStack(
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004175 r, sourceBounds, aspectRatio, "enterPictureInPictureMode");
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004176 final ActivityStack stack = r.getRootTask();
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004177 stack.setPictureInPictureAspectRatio(aspectRatio);
4178 stack.setPictureInPictureActions(actions);
Andrii Kulianeceebbf2019-06-26 17:36:51 -07004179 MetricsLoggerWrapper.logPictureInPictureEnter(mContext,
4180 r.info.applicationInfo.uid, r.shortComponentName,
4181 r.supportsEnterPipOnTaskSwitch);
Wale Ogunwalef276a6f2018-06-15 08:26:07 -07004182 logPictureInPictureArgs(params);
4183 }
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004184 };
4185
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004186 if (isKeyguardLocked()) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004187 // If the keyguard is showing or occluded, then try and dismiss it before
4188 // entering picture-in-picture (this will prompt the user to authenticate if the
4189 // device is currently locked).
4190 dismissKeyguard(token, new KeyguardDismissCallback() {
4191 @Override
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004192 public void onDismissSucceeded() {
4193 mH.post(enterPipRunnable);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004194 }
4195 }, null /* message */);
4196 } else {
4197 // Enter picture in picture immediately otherwise
4198 enterPipRunnable.run();
4199 }
4200 return true;
4201 }
4202 } finally {
4203 Binder.restoreCallingIdentity(origId);
4204 }
4205 }
4206
4207 @Override
4208 public void setPictureInPictureParams(IBinder token, final PictureInPictureParams params) {
4209 final long origId = Binder.clearCallingIdentity();
4210 try {
4211 synchronized (mGlobalLock) {
4212 final ActivityRecord r = ensureValidPictureInPictureActivityParamsLocked(
4213 "setPictureInPictureParams", token, params);
4214
4215 // Only update the saved args from the args that are set
4216 r.pictureInPictureArgs.copyOnlySet(params);
4217 if (r.inPinnedWindowingMode()) {
4218 // If the activity is already in picture-in-picture, update the pinned stack now
4219 // if it is not already expanding to fullscreen. Otherwise, the arguments will
4220 // be used the next time the activity enters PiP
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004221 final ActivityStack stack = r.getRootTask();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004222 if (!stack.isAnimatingBoundsToFullscreen()) {
4223 stack.setPictureInPictureAspectRatio(
4224 r.pictureInPictureArgs.getAspectRatio());
4225 stack.setPictureInPictureActions(r.pictureInPictureArgs.getActions());
4226 }
4227 }
4228 logPictureInPictureArgs(params);
4229 }
4230 } finally {
4231 Binder.restoreCallingIdentity(origId);
4232 }
4233 }
4234
4235 @Override
4236 public int getMaxNumPictureInPictureActions(IBinder token) {
4237 // Currently, this is a static constant, but later, we may change this to be dependent on
4238 // the context of the activity
4239 return 3;
4240 }
4241
4242 private void logPictureInPictureArgs(PictureInPictureParams params) {
4243 if (params.hasSetActions()) {
4244 MetricsLogger.histogram(mContext, "tron_varz_picture_in_picture_actions_count",
4245 params.getActions().size());
4246 }
4247 if (params.hasSetAspectRatio()) {
4248 LogMaker lm = new LogMaker(MetricsEvent.ACTION_PICTURE_IN_PICTURE_ASPECT_RATIO_CHANGED);
4249 lm.addTaggedData(MetricsEvent.PICTURE_IN_PICTURE_ASPECT_RATIO, params.getAspectRatio());
4250 MetricsLogger.action(lm);
4251 }
4252 }
4253
4254 /**
4255 * Checks the state of the system and the activity associated with the given {@param token} to
4256 * verify that picture-in-picture is supported for that activity.
4257 *
4258 * @return the activity record for the given {@param token} if all the checks pass.
4259 */
4260 private ActivityRecord ensureValidPictureInPictureActivityParamsLocked(String caller,
4261 IBinder token, PictureInPictureParams params) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004262 if (!mSupportsPictureInPicture) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004263 throw new IllegalStateException(caller
4264 + ": Device doesn't support picture-in-picture mode.");
4265 }
4266
4267 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
4268 if (r == null) {
4269 throw new IllegalStateException(caller
4270 + ": Can't find activity for token=" + token);
4271 }
4272
4273 if (!r.supportsPictureInPicture()) {
4274 throw new IllegalStateException(caller
4275 + ": Current activity does not support picture-in-picture.");
4276 }
4277
4278 if (params.hasSetAspectRatio()
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004279 && !mWindowManager.isValidPictureInPictureAspectRatio(
Wale Ogunwale8f93b642019-12-26 12:10:52 -08004280 r.getDisplay(), params.getAspectRatio())) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004281 final float minAspectRatio = mContext.getResources().getFloat(
4282 com.android.internal.R.dimen.config_pictureInPictureMinAspectRatio);
4283 final float maxAspectRatio = mContext.getResources().getFloat(
4284 com.android.internal.R.dimen.config_pictureInPictureMaxAspectRatio);
4285 throw new IllegalArgumentException(String.format(caller
4286 + ": Aspect ratio is too extreme (must be between %f and %f).",
4287 minAspectRatio, maxAspectRatio));
4288 }
4289
4290 // Truncate the number of actions if necessary
4291 params.truncateActions(getMaxNumPictureInPictureActions(token));
4292
4293 return r;
4294 }
4295
4296 @Override
4297 public IBinder getUriPermissionOwnerForActivity(IBinder activityToken) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004298 enforceNotIsolatedCaller("getUriPermissionOwnerForActivity");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004299 synchronized (mGlobalLock) {
4300 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
4301 if (r == null) {
4302 throw new IllegalArgumentException("Activity does not exist; token="
4303 + activityToken);
4304 }
Wale Ogunwale6d50dcc2018-07-21 23:00:40 -07004305 return r.getUriPermissionsLocked().getExternalToken();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004306 }
4307 }
4308
4309 @Override
4310 public void resizeDockedStack(Rect dockedBounds, Rect tempDockedTaskBounds,
4311 Rect tempDockedTaskInsetBounds,
4312 Rect tempOtherTaskBounds, Rect tempOtherTaskInsetBounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004313 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "resizeDockedStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004314 long ident = Binder.clearCallingIdentity();
4315 try {
4316 synchronized (mGlobalLock) {
4317 mStackSupervisor.resizeDockedStackLocked(dockedBounds, tempDockedTaskBounds,
4318 tempDockedTaskInsetBounds, tempOtherTaskBounds, tempOtherTaskInsetBounds,
4319 PRESERVE_WINDOWS);
4320 }
4321 } finally {
4322 Binder.restoreCallingIdentity(ident);
4323 }
4324 }
4325
4326 @Override
4327 public void setSplitScreenResizing(boolean resizing) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004328 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "setSplitScreenResizing()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004329 final long ident = Binder.clearCallingIdentity();
4330 try {
4331 synchronized (mGlobalLock) {
4332 mStackSupervisor.setSplitScreenResizing(resizing);
4333 }
4334 } finally {
4335 Binder.restoreCallingIdentity(ident);
4336 }
4337 }
4338
Evan Rosky0037e5f2019-11-05 10:26:24 -08004339 @Override
4340 public ITaskOrganizerController getTaskOrganizerController() {
4341 mAmInternal.enforceCallingPermission(MANAGE_ACTIVITY_STACKS,
4342 "getTaskOrganizerController()");
4343 return mTaskOrganizerController;
4344 }
4345
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004346 /**
4347 * Check that we have the features required for VR-related API calls, and throw an exception if
4348 * not.
4349 */
Wale Ogunwale59507092018-10-29 09:00:30 -07004350 public void enforceSystemHasVrFeature() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004351 if (!mContext.getPackageManager().hasSystemFeature(
4352 PackageManager.FEATURE_VR_MODE_HIGH_PERFORMANCE)) {
4353 throw new UnsupportedOperationException("VR mode not supported on this device!");
4354 }
4355 }
4356
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004357 @Override
4358 public int setVrMode(IBinder token, boolean enabled, ComponentName packageName) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004359 enforceSystemHasVrFeature();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004360
4361 final VrManagerInternal vrService = LocalServices.getService(VrManagerInternal.class);
4362
4363 ActivityRecord r;
4364 synchronized (mGlobalLock) {
4365 r = ActivityRecord.isInStackLocked(token);
4366 }
4367
4368 if (r == null) {
4369 throw new IllegalArgumentException();
4370 }
4371
4372 int err;
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004373 if ((err = vrService.hasVrPackage(packageName, r.mUserId)) !=
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004374 VrManagerInternal.NO_ERROR) {
4375 return err;
4376 }
4377
4378 // Clear the binder calling uid since this path may call moveToTask().
4379 final long callingId = Binder.clearCallingIdentity();
4380 try {
4381 synchronized (mGlobalLock) {
4382 r.requestedVrComponent = (enabled) ? packageName : null;
4383
4384 // Update associated state if this activity is currently focused
Andrii Kulian52d255c2018-07-13 11:32:19 -07004385 if (r.isResumedActivityOnDisplay()) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004386 applyUpdateVrModeLocked(r);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004387 }
4388 return 0;
4389 }
4390 } finally {
4391 Binder.restoreCallingIdentity(callingId);
4392 }
4393 }
4394
4395 @Override
4396 public void startLocalVoiceInteraction(IBinder callingActivity, Bundle options) {
4397 Slog.i(TAG, "Activity tried to startLocalVoiceInteraction");
4398 synchronized (mGlobalLock) {
Wale Ogunwale21e06482019-11-18 05:14:15 -08004399 ActivityRecord activity = getTopDisplayFocusedStack().getTopNonFinishingActivity();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004400 if (ActivityRecord.forTokenLocked(callingActivity) != activity) {
4401 throw new SecurityException("Only focused activity can call startVoiceInteraction");
4402 }
Louis Changcdec0802019-11-11 11:45:07 +08004403 if (mRunningVoice != null || activity.getTask().voiceSession != null
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004404 || activity.voiceSession != null) {
4405 Slog.w(TAG, "Already in a voice interaction, cannot start new voice interaction");
4406 return;
4407 }
4408 if (activity.pendingVoiceInteractionStart) {
4409 Slog.w(TAG, "Pending start of voice interaction already.");
4410 return;
4411 }
4412 activity.pendingVoiceInteractionStart = true;
4413 }
4414 LocalServices.getService(VoiceInteractionManagerInternal.class)
4415 .startLocalVoiceInteraction(callingActivity, options);
4416 }
4417
4418 @Override
4419 public void stopLocalVoiceInteraction(IBinder callingActivity) {
4420 LocalServices.getService(VoiceInteractionManagerInternal.class)
4421 .stopLocalVoiceInteraction(callingActivity);
4422 }
4423
4424 @Override
4425 public boolean supportsLocalVoiceInteraction() {
4426 return LocalServices.getService(VoiceInteractionManagerInternal.class)
4427 .supportsLocalVoiceInteraction();
4428 }
4429
4430 /** Notifies all listeners when the pinned stack animation starts. */
4431 @Override
4432 public void notifyPinnedStackAnimationStarted() {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004433 mTaskChangeNotificationController.notifyPinnedStackAnimationStarted();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004434 }
4435
4436 /** Notifies all listeners when the pinned stack animation ends. */
4437 @Override
4438 public void notifyPinnedStackAnimationEnded() {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004439 mTaskChangeNotificationController.notifyPinnedStackAnimationEnded();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004440 }
4441
4442 @Override
4443 public void resizePinnedStack(Rect pinnedBounds, Rect tempPinnedTaskBounds) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004444 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS, "resizePinnedStack()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004445 final long ident = Binder.clearCallingIdentity();
4446 try {
4447 synchronized (mGlobalLock) {
4448 mStackSupervisor.resizePinnedStackLocked(pinnedBounds, tempPinnedTaskBounds);
4449 }
4450 } finally {
4451 Binder.restoreCallingIdentity(ident);
4452 }
4453 }
4454
4455 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004456 public boolean updateConfiguration(Configuration values) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004457 mAmInternal.enforceCallingPermission(CHANGE_CONFIGURATION, "updateConfiguration()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004458
4459 synchronized (mGlobalLock) {
Riddle Hsua0022cd2019-09-09 21:12:41 +08004460 if (mWindowManager == null) {
4461 Slog.w(TAG, "Skip updateConfiguration because mWindowManager isn't set");
4462 return false;
4463 }
4464
4465 if (values == null) {
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004466 // sentinel: fetch the current configuration from the window manager
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004467 values = mWindowManager.computeNewConfiguration(DEFAULT_DISPLAY);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004468 }
4469
Riddle Hsua0022cd2019-09-09 21:12:41 +08004470 mH.sendMessage(PooledLambda.obtainMessage(
4471 ActivityManagerInternal::updateOomLevelsForDisplay, mAmInternal,
4472 DEFAULT_DISPLAY));
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004473
4474 final long origId = Binder.clearCallingIdentity();
4475 try {
4476 if (values != null) {
4477 Settings.System.clearConfiguration(values);
4478 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004479 updateConfigurationLocked(values, null, false, false /* persistent */,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004480 UserHandle.USER_NULL, false /* deferResume */,
4481 mTmpUpdateConfigurationResult);
4482 return mTmpUpdateConfigurationResult.changes != 0;
4483 } finally {
4484 Binder.restoreCallingIdentity(origId);
4485 }
4486 }
4487 }
4488
4489 @Override
4490 public void dismissKeyguard(IBinder token, IKeyguardDismissCallback callback,
4491 CharSequence message) {
4492 if (message != null) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004493 mAmInternal.enforceCallingPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004494 Manifest.permission.SHOW_KEYGUARD_MESSAGE, "dismissKeyguard()");
4495 }
4496 final long callingId = Binder.clearCallingIdentity();
4497 try {
4498 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004499 mKeyguardController.dismissKeyguard(token, callback, message);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004500 }
4501 } finally {
4502 Binder.restoreCallingIdentity(callingId);
4503 }
4504 }
4505
4506 @Override
4507 public void cancelTaskWindowTransition(int taskId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004508 enforceCallerIsRecentsOrHasPermission(MANAGE_ACTIVITY_STACKS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004509 "cancelTaskWindowTransition()");
4510 final long ident = Binder.clearCallingIdentity();
4511 try {
4512 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004513 final Task task = mRootWindowContainer.anyTaskForId(taskId,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004514 MATCH_TASK_IN_STACKS_ONLY);
4515 if (task == null) {
4516 Slog.w(TAG, "cancelTaskWindowTransition: taskId=" + taskId + " not found");
4517 return;
4518 }
Wale Ogunwale2322bed2019-10-10 17:24:19 +02004519 task.cancelTaskWindowTransition();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004520 }
4521 } finally {
4522 Binder.restoreCallingIdentity(ident);
4523 }
4524 }
4525
4526 @Override
4527 public ActivityManager.TaskSnapshot getTaskSnapshot(int taskId, boolean reducedResolution) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004528 enforceCallerIsRecentsOrHasPermission(READ_FRAME_BUFFER, "getTaskSnapshot()");
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004529 final long ident = Binder.clearCallingIdentity();
4530 try {
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004531 return getTaskSnapshot(taskId, reducedResolution, true /* restoreFromDisk */);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004532 } finally {
4533 Binder.restoreCallingIdentity(ident);
4534 }
4535 }
4536
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004537 private ActivityManager.TaskSnapshot getTaskSnapshot(int taskId, boolean reducedResolution,
4538 boolean restoreFromDisk) {
Louis Changcdec0802019-11-11 11:45:07 +08004539 final Task task;
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004540 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004541 task = mRootWindowContainer.anyTaskForId(taskId,
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02004542 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
4543 if (task == null) {
4544 Slog.w(TAG, "getTaskSnapshot: taskId=" + taskId + " not found");
4545 return null;
4546 }
4547 }
4548 // Don't call this while holding the lock as this operation might hit the disk.
4549 return task.getSnapshot(reducedResolution, restoreFromDisk);
4550 }
4551
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004552 @Override
4553 public void setDisablePreviewScreenshots(IBinder token, boolean disable) {
4554 synchronized (mGlobalLock) {
4555 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4556 if (r == null) {
4557 Slog.w(TAG, "setDisablePreviewScreenshots: Unable to find activity for token="
4558 + token);
4559 return;
4560 }
4561 final long origId = Binder.clearCallingIdentity();
4562 try {
4563 r.setDisablePreviewScreenshots(disable);
4564 } finally {
4565 Binder.restoreCallingIdentity(origId);
4566 }
4567 }
4568 }
4569
Riddle Hsu440f88b2019-11-06 22:17:35 +08004570 @Override
4571 public void invalidateHomeTaskSnapshot(IBinder token) {
4572 synchronized (mGlobalLock) {
4573 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4574 if (r == null || !r.isActivityTypeHome()) {
4575 return;
4576 }
4577 mWindowManager.mTaskSnapshotController.removeSnapshotCache(r.getTask().mTaskId);
4578 }
4579 }
4580
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004581 /** Return the user id of the last resumed activity. */
4582 @Override
4583 public @UserIdInt
4584 int getLastResumedActivityUserId() {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004585 mAmInternal.enforceCallingPermission(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004586 Manifest.permission.INTERACT_ACROSS_USERS_FULL, "getLastResumedActivityUserId()");
4587 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07004588 if (mLastResumedActivity == null) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004589 return getCurrentUserId();
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004590 }
Wale Ogunwale8b19de92018-11-29 19:58:26 -08004591 return mLastResumedActivity.mUserId;
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004592 }
4593 }
4594
4595 @Override
4596 public void updateLockTaskFeatures(int userId, int flags) {
4597 final int callingUid = Binder.getCallingUid();
4598 if (callingUid != 0 && callingUid != SYSTEM_UID) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004599 mAmInternal.enforceCallingPermission(android.Manifest.permission.UPDATE_LOCK_TASK_PACKAGES,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004600 "updateLockTaskFeatures()");
4601 }
4602 synchronized (mGlobalLock) {
4603 if (DEBUG_LOCKTASK) Slog.w(TAG_LOCKTASK, "Allowing features " + userId + ":0x" +
4604 Integer.toHexString(flags));
Wale Ogunwaled95c06b2018-05-08 10:35:38 -07004605 getLockTaskController().updateLockTaskFeatures(userId, flags);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004606 }
4607 }
4608
4609 @Override
4610 public void setShowWhenLocked(IBinder token, boolean showWhenLocked) {
4611 synchronized (mGlobalLock) {
4612 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4613 if (r == null) {
4614 return;
4615 }
4616 final long origId = Binder.clearCallingIdentity();
4617 try {
4618 r.setShowWhenLocked(showWhenLocked);
4619 } finally {
4620 Binder.restoreCallingIdentity(origId);
4621 }
4622 }
4623 }
4624
4625 @Override
Issei Suzuki74e1eb22018-12-20 17:42:52 +01004626 public void setInheritShowWhenLocked(IBinder token, boolean inheritShowWhenLocked) {
4627 synchronized (mGlobalLock) {
4628 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4629 if (r == null) {
4630 return;
4631 }
4632 final long origId = Binder.clearCallingIdentity();
4633 try {
4634 r.setInheritShowWhenLocked(inheritShowWhenLocked);
4635 } finally {
4636 Binder.restoreCallingIdentity(origId);
4637 }
4638 }
4639 }
4640
4641 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004642 public void setTurnScreenOn(IBinder token, boolean turnScreenOn) {
4643 synchronized (mGlobalLock) {
4644 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4645 if (r == null) {
4646 return;
4647 }
4648 final long origId = Binder.clearCallingIdentity();
4649 try {
4650 r.setTurnScreenOn(turnScreenOn);
4651 } finally {
4652 Binder.restoreCallingIdentity(origId);
4653 }
4654 }
4655 }
4656
4657 @Override
4658 public void registerRemoteAnimations(IBinder token, RemoteAnimationDefinition definition) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004659 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004660 "registerRemoteAnimations");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004661 definition.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004662 synchronized (mGlobalLock) {
4663 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4664 if (r == null) {
4665 return;
4666 }
4667 final long origId = Binder.clearCallingIdentity();
4668 try {
4669 r.registerRemoteAnimations(definition);
4670 } finally {
4671 Binder.restoreCallingIdentity(origId);
4672 }
4673 }
4674 }
4675
4676 @Override
Winson Chung10fc25d2019-12-10 14:13:56 -08004677 public void unregisterRemoteAnimations(IBinder token) {
4678 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
4679 "unregisterRemoteAnimations");
4680 synchronized (mGlobalLock) {
4681 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4682 if (r == null) {
4683 return;
4684 }
4685 final long origId = Binder.clearCallingIdentity();
4686 try {
4687 r.unregisterRemoteAnimations();
4688 } finally {
4689 Binder.restoreCallingIdentity(origId);
4690 }
4691 }
4692 }
4693
4694 @Override
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004695 public void registerRemoteAnimationForNextActivityStart(String packageName,
4696 RemoteAnimationAdapter adapter) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004697 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004698 "registerRemoteAnimationForNextActivityStart");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004699 adapter.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004700 synchronized (mGlobalLock) {
4701 final long origId = Binder.clearCallingIdentity();
4702 try {
Wale Ogunwale5fa8a8c2018-05-08 13:43:21 -07004703 getActivityStartController().registerRemoteAnimationForNextActivityStart(
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004704 packageName, adapter);
4705 } finally {
4706 Binder.restoreCallingIdentity(origId);
4707 }
4708 }
4709 }
4710
Evan Rosky966759f2019-01-15 10:33:58 -08004711 @Override
4712 public void registerRemoteAnimationsForDisplay(int displayId,
4713 RemoteAnimationDefinition definition) {
4714 mAmInternal.enforceCallingPermission(CONTROL_REMOTE_APP_TRANSITION_ANIMATIONS,
4715 "registerRemoteAnimations");
Jorim Jaggi589c5ba2019-07-30 16:50:13 +02004716 definition.setCallingPidUid(Binder.getCallingPid(), Binder.getCallingUid());
Evan Rosky966759f2019-01-15 10:33:58 -08004717 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08004718 final DisplayContent display = mRootWindowContainer.getDisplayContent(displayId);
Evan Rosky966759f2019-01-15 10:33:58 -08004719 if (display == null) {
4720 Slog.e(TAG, "Couldn't find display with id: " + displayId);
4721 return;
4722 }
4723 final long origId = Binder.clearCallingIdentity();
4724 try {
4725 display.mDisplayContent.registerRemoteAnimations(definition);
4726 } finally {
4727 Binder.restoreCallingIdentity(origId);
4728 }
4729 }
4730 }
4731
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004732 /** @see android.app.ActivityManager#alwaysShowUnsupportedCompileSdkWarning */
4733 @Override
4734 public void alwaysShowUnsupportedCompileSdkWarning(ComponentName activity) {
4735 synchronized (mGlobalLock) {
4736 final long origId = Binder.clearCallingIdentity();
4737 try {
Wale Ogunwale008163e2018-07-23 23:11:08 -07004738 mAppWarnings.alwaysShowUnsupportedCompileSdkWarning(activity);
Wale Ogunwale04d9cb52018-04-30 13:55:07 -07004739 } finally {
4740 Binder.restoreCallingIdentity(origId);
4741 }
4742 }
4743 }
Wale Ogunwale6767eae2018-05-03 15:52:51 -07004744
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004745 @Override
4746 public void setVrThread(int tid) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004747 enforceSystemHasVrFeature();
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004748 synchronized (mGlobalLock) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004749 final int pid = Binder.getCallingPid();
Michal Karpinski2e0aad22019-04-12 16:22:55 +01004750 final WindowProcessController wpc = mProcessMap.getProcess(pid);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004751 mVrController.setVrThreadLocked(tid, pid, wpc);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004752 }
4753 }
4754
4755 @Override
4756 public void setPersistentVrThread(int tid) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004757 if (checkCallingPermission(Manifest.permission.RESTRICTED_VR_ACCESS)
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004758 != PERMISSION_GRANTED) {
4759 final String msg = "Permission Denial: setPersistentVrThread() from pid="
4760 + Binder.getCallingPid()
4761 + ", uid=" + Binder.getCallingUid()
4762 + " requires " + Manifest.permission.RESTRICTED_VR_ACCESS;
4763 Slog.w(TAG, msg);
4764 throw new SecurityException(msg);
4765 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004766 enforceSystemHasVrFeature();
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004767 synchronized (mGlobalLock) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004768 final int pid = Binder.getCallingPid();
Michal Karpinski2e0aad22019-04-12 16:22:55 +01004769 final WindowProcessController proc = mProcessMap.getProcess(pid);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07004770 mVrController.setPersistentVrThreadLocked(tid, pid, proc);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004771 }
4772 }
4773
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004774 @Override
4775 public void stopAppSwitches() {
4776 enforceCallerIsRecentsOrHasPermission(STOP_APP_SWITCHES, "stopAppSwitches");
4777 synchronized (mGlobalLock) {
4778 mAppSwitchesAllowedTime = SystemClock.uptimeMillis() + APP_SWITCH_DELAY_TIME;
Ricky Wai906af482019-06-03 17:25:28 +01004779 mLastStopAppSwitchesTime = SystemClock.uptimeMillis();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004780 mDidAppSwitch = false;
4781 getActivityStartController().schedulePendingActivityLaunches(APP_SWITCH_DELAY_TIME);
4782 }
4783 }
4784
4785 @Override
4786 public void resumeAppSwitches() {
4787 enforceCallerIsRecentsOrHasPermission(STOP_APP_SWITCHES, "resumeAppSwitches");
4788 synchronized (mGlobalLock) {
4789 // Note that we don't execute any pending app switches... we will
4790 // let those wait until either the timeout, or the next start
4791 // activity request.
4792 mAppSwitchesAllowedTime = 0;
4793 }
4794 }
4795
Ricky Wai906af482019-06-03 17:25:28 +01004796 long getLastStopAppSwitchesTime() {
4797 return mLastStopAppSwitchesTime;
4798 }
4799
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004800 void onStartActivitySetDidAppSwitch() {
4801 if (mDidAppSwitch) {
4802 // This is the second allowed switch since we stopped switches, so now just generally
4803 // allow switches. Use case:
4804 // - user presses home (switches disabled, switch to home, mDidAppSwitch now true);
4805 // - user taps a home icon (coming from home so allowed, we hit here and now allow
4806 // anyone to switch again).
4807 mAppSwitchesAllowedTime = 0;
4808 } else {
4809 mDidAppSwitch = true;
4810 }
4811 }
4812
4813 /** @return whether the system should disable UI modes incompatible with VR mode. */
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004814 boolean shouldDisableNonVrUiLocked() {
4815 return mVrController.shouldDisableNonVrUiLocked();
4816 }
4817
Wale Ogunwale53783742018-09-16 10:21:51 -07004818 private void applyUpdateVrModeLocked(ActivityRecord r) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004819 // 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 +00004820 // itself, but isn't on the main display, then move it there before enabling VR Mode.
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004821 if (r.requestedVrComponent != null && r.getDisplayId() != DEFAULT_DISPLAY) {
Wale Ogunwaleb8e6b632019-06-28 15:19:25 +00004822 Slog.i(TAG, "Moving " + r.shortComponentName + " from display " + r.getDisplayId()
4823 + " to main display for VR");
Louis Chang149d5c82019-12-30 09:47:39 +08004824 mRootWindowContainer.moveStackToDisplay(
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08004825 r.getRootTaskId(), DEFAULT_DISPLAY, true /* toTop */);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004826 }
4827 mH.post(() -> {
4828 if (!mVrController.onVrModeChanged(r)) {
4829 return;
4830 }
4831 synchronized (mGlobalLock) {
4832 final boolean disableNonVrUi = mVrController.shouldDisableNonVrUiLocked();
4833 mWindowManager.disableNonVrUi(disableNonVrUi);
4834 if (disableNonVrUi) {
4835 // If we are in a VR mode where Picture-in-Picture mode is unsupported,
4836 // then remove the pinned stack.
Louis Chang149d5c82019-12-30 09:47:39 +08004837 mRootWindowContainer.removeStacksInWindowingModes(WINDOWING_MODE_PINNED);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004838 }
4839 }
4840 });
4841 }
4842
Wale Ogunwale53783742018-09-16 10:21:51 -07004843 @Override
4844 public int getPackageScreenCompatMode(String packageName) {
4845 enforceNotIsolatedCaller("getPackageScreenCompatMode");
4846 synchronized (mGlobalLock) {
4847 return mCompatModePackages.getPackageScreenCompatModeLocked(packageName);
4848 }
4849 }
4850
4851 @Override
4852 public void setPackageScreenCompatMode(String packageName, int mode) {
4853 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
4854 "setPackageScreenCompatMode");
4855 synchronized (mGlobalLock) {
4856 mCompatModePackages.setPackageScreenCompatModeLocked(packageName, mode);
4857 }
4858 }
4859
4860 @Override
4861 public boolean getPackageAskScreenCompat(String packageName) {
4862 enforceNotIsolatedCaller("getPackageAskScreenCompat");
4863 synchronized (mGlobalLock) {
4864 return mCompatModePackages.getPackageAskCompatModeLocked(packageName);
4865 }
4866 }
4867
4868 @Override
4869 public void setPackageAskScreenCompat(String packageName, boolean ask) {
4870 mAmInternal.enforceCallingPermission(android.Manifest.permission.SET_SCREEN_COMPATIBILITY,
4871 "setPackageAskScreenCompat");
4872 synchronized (mGlobalLock) {
4873 mCompatModePackages.setPackageAskCompatModeLocked(packageName, ask);
4874 }
4875 }
4876
Wale Ogunwale64258362018-10-16 15:13:37 -07004877 public static String relaunchReasonToString(int relaunchReason) {
4878 switch (relaunchReason) {
4879 case RELAUNCH_REASON_WINDOWING_MODE_RESIZE:
4880 return "window_resize";
4881 case RELAUNCH_REASON_FREE_RESIZE:
4882 return "free_resize";
4883 default:
4884 return null;
4885 }
4886 }
4887
Andrii Kulian5f750bc2018-07-17 08:57:23 -07004888 ActivityStack getTopDisplayFocusedStack() {
Louis Chang149d5c82019-12-30 09:47:39 +08004889 return mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07004890 }
4891
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004892 /** Pokes the task persister. */
Louis Changcdec0802019-11-11 11:45:07 +08004893 void notifyTaskPersisterLocked(Task task, boolean flush) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004894 mRecentTasks.notifyTaskPersisterLocked(task, flush);
4895 }
4896
Wale Ogunwaled0412b32018-05-08 09:25:50 -07004897 boolean isKeyguardLocked() {
4898 return mKeyguardController.isKeyguardLocked();
4899 }
4900
Garfield Tan01548632018-11-27 10:15:48 -08004901 /**
4902 * Clears launch params for the given package.
4903 * @param packageNames the names of the packages of which the launch params are to be cleared
4904 */
4905 @Override
4906 public void clearLaunchParamsForPackages(List<String> packageNames) {
4907 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4908 "clearLaunchParamsForPackages");
4909 synchronized (mGlobalLock) {
4910 for (int i = 0; i < packageNames.size(); ++i) {
4911 mStackSupervisor.mLaunchParamsPersister.removeRecordForPackage(packageNames.get(i));
4912 }
4913 }
4914 }
4915
Wale Ogunwale9e737db2018-12-17 15:42:37 -08004916 /**
4917 * Makes the display with the given id a single task instance display. I.e the display can only
4918 * contain one task.
4919 */
4920 @Override
4921 public void setDisplayToSingleTaskInstance(int displayId) {
4922 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4923 "setDisplayToSingleTaskInstance");
4924 final long origId = Binder.clearCallingIdentity();
4925 try {
Louis Chang677921f2019-12-06 16:44:24 +08004926 final DisplayContent display =
Louis Chang149d5c82019-12-30 09:47:39 +08004927 mRootWindowContainer.getDisplayContentOrCreate(displayId);
Wale Ogunwale9e737db2018-12-17 15:42:37 -08004928 if (display != null) {
4929 display.setDisplayToSingleTaskInstance();
4930 }
4931 } finally {
4932 Binder.restoreCallingIdentity(origId);
4933 }
4934 }
4935
jorgegil@google.com06bc3232019-10-31 14:51:22 -07004936 /**
4937 * Requests that an activity should enter picture-in-picture mode if possible.
4938 */
4939 @Override
4940 public void requestPictureInPictureMode(IBinder token) throws RemoteException {
4941 mAmInternal.enforceCallingPermission(Manifest.permission.MANAGE_ACTIVITY_STACKS,
4942 "requestPictureInPictureMode");
4943 final long origId = Binder.clearCallingIdentity();
4944 try {
4945 synchronized (mGlobalLock) {
4946 final ActivityRecord activity = ActivityRecord.forTokenLocked(token);
4947 if (activity == null) {
4948 return;
4949 }
4950
4951 final boolean canEnterPictureInPicture = activity.checkEnterPictureInPictureState(
4952 "requestPictureInPictureMode", /* beforeStopping */ false);
4953 if (!canEnterPictureInPicture) {
4954 throw new IllegalStateException(
4955 "Requested PIP on an activity that doesn't support it");
4956 }
4957
4958 try {
4959 final ClientTransaction transaction = ClientTransaction.obtain(
4960 activity.app.getThread(),
4961 activity.token);
4962 transaction.addCallback(EnterPipRequestedItem.obtain());
4963 getLifecycleManager().scheduleTransaction(transaction);
4964 } catch (Exception e) {
4965 Slog.w(TAG, "Failed to send enter pip requested item: "
4966 + activity.intent.getComponent(), e);
4967 }
4968 }
4969 } finally {
4970 Binder.restoreCallingIdentity(origId);
4971 }
4972 }
4973
Wale Ogunwale31913b52018-10-13 08:29:31 -07004974 void dumpLastANRLocked(PrintWriter pw) {
4975 pw.println("ACTIVITY MANAGER LAST ANR (dumpsys activity lastanr)");
4976 if (mLastANRState == null) {
4977 pw.println(" <no ANR has occurred since boot>");
4978 } else {
4979 pw.println(mLastANRState);
4980 }
4981 }
4982
4983 void dumpLastANRTracesLocked(PrintWriter pw) {
4984 pw.println("ACTIVITY MANAGER LAST ANR TRACES (dumpsys activity lastanr-traces)");
4985
4986 final File[] files = new File(ANR_TRACE_DIR).listFiles();
4987 if (ArrayUtils.isEmpty(files)) {
4988 pw.println(" <no ANR has occurred since boot>");
4989 return;
4990 }
4991 // Find the latest file.
4992 File latest = null;
4993 for (File f : files) {
4994 if ((latest == null) || (latest.lastModified() < f.lastModified())) {
4995 latest = f;
Wale Ogunwalef6733932018-06-27 05:14:34 -07004996 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07004997 }
4998 pw.print("File: ");
4999 pw.print(latest.getName());
5000 pw.println();
5001 try (BufferedReader in = new BufferedReader(new FileReader(latest))) {
5002 String line;
5003 while ((line = in.readLine()) != null) {
5004 pw.println(line);
5005 }
5006 } catch (IOException e) {
5007 pw.print("Unable to read: ");
5008 pw.print(e);
5009 pw.println();
5010 }
5011 }
5012
5013 void dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
5014 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage) {
5015 dumpActivitiesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage,
5016 "ACTIVITY MANAGER ACTIVITIES (dumpsys activity activities)");
5017 }
5018
5019 void dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, String[] args,
5020 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage, String header) {
5021 pw.println(header);
5022
Louis Chang149d5c82019-12-30 09:47:39 +08005023 boolean printedAnything = mRootWindowContainer.dumpActivities(fd, pw, dumpAll, dumpClient,
Wale Ogunwale31913b52018-10-13 08:29:31 -07005024 dumpPackage);
5025 boolean needSep = printedAnything;
5026
5027 boolean printed = ActivityStackSupervisor.printThisActivity(pw,
Louis Chang149d5c82019-12-30 09:47:39 +08005028 mRootWindowContainer.getTopResumedActivity(), dumpPackage, needSep,
Wale Ogunwale31913b52018-10-13 08:29:31 -07005029 " ResumedActivity: ");
5030 if (printed) {
5031 printedAnything = true;
5032 needSep = false;
5033 }
5034
5035 if (dumpPackage == null) {
5036 if (needSep) {
5037 pw.println();
5038 }
5039 printedAnything = true;
5040 mStackSupervisor.dump(pw, " ");
5041 }
5042
5043 if (!printedAnything) {
5044 pw.println(" (nothing)");
5045 }
5046 }
5047
5048 void dumpActivityContainersLocked(PrintWriter pw) {
Jeff Changde322732019-07-12 12:16:23 +08005049 pw.println("ACTIVITY MANAGER CONTAINERS (dumpsys activity containers)");
Louis Chang149d5c82019-12-30 09:47:39 +08005050 mRootWindowContainer.dumpChildrenNames(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07005051 pw.println(" ");
5052 }
5053
5054 void dumpActivityStarterLocked(PrintWriter pw, String dumpPackage) {
5055 pw.println("ACTIVITY MANAGER STARTER (dumpsys activity starter)");
5056 getActivityStartController().dump(pw, "", dumpPackage);
5057 }
5058
5059 /**
5060 * There are three things that cmd can be:
5061 * - a flattened component name that matches an existing activity
5062 * - the cmd arg isn't the flattened component name of an existing activity:
5063 * dump all activity whose component contains the cmd as a substring
5064 * - A hex number of the ActivityRecord object instance.
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005065 * <p>
5066 * The caller should not hold lock when calling this method because it will wait for the
5067 * activities to complete the dump.
Wale Ogunwale31913b52018-10-13 08:29:31 -07005068 *
5069 * @param dumpVisibleStacksOnly dump activity with {@param name} only if in a visible stack
5070 * @param dumpFocusedStackOnly dump activity with {@param name} only if in the focused stack
5071 */
5072 protected boolean dumpActivity(FileDescriptor fd, PrintWriter pw, String name, String[] args,
5073 int opti, boolean dumpAll, boolean dumpVisibleStacksOnly, boolean dumpFocusedStackOnly) {
5074 ArrayList<ActivityRecord> activities;
5075
5076 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08005077 activities = mRootWindowContainer.getDumpActivities(name, dumpVisibleStacksOnly,
Wale Ogunwale31913b52018-10-13 08:29:31 -07005078 dumpFocusedStackOnly);
5079 }
5080
5081 if (activities.size() <= 0) {
5082 return false;
5083 }
5084
5085 String[] newArgs = new String[args.length - opti];
5086 System.arraycopy(args, opti, newArgs, 0, args.length - opti);
5087
Louis Changcdec0802019-11-11 11:45:07 +08005088 Task lastTask = null;
Wale Ogunwale31913b52018-10-13 08:29:31 -07005089 boolean needSep = false;
5090 for (int i = activities.size() - 1; i >= 0; i--) {
5091 ActivityRecord r = activities.get(i);
5092 if (needSep) {
5093 pw.println();
5094 }
5095 needSep = true;
5096 synchronized (mGlobalLock) {
Louis Changcdec0802019-11-11 11:45:07 +08005097 final Task task = r.getTask();
Wale Ogunwale31913b52018-10-13 08:29:31 -07005098 if (lastTask != task) {
5099 lastTask = task;
5100 pw.print("TASK "); pw.print(lastTask.affinity);
Wale Ogunwale4e79a1c2019-10-05 20:52:40 -07005101 pw.print(" id="); pw.print(lastTask.mTaskId);
5102 pw.print(" userId="); pw.println(lastTask.mUserId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005103 if (dumpAll) {
5104 lastTask.dump(pw, " ");
5105 }
5106 }
5107 }
5108 dumpActivity(" ", fd, pw, activities.get(i), newArgs, dumpAll);
5109 }
5110 return true;
5111 }
5112
5113 /**
5114 * Invokes IApplicationThread.dumpActivity() on the thread of the specified activity if
5115 * there is a thread associated with the activity.
5116 */
5117 private void dumpActivity(String prefix, FileDescriptor fd, PrintWriter pw,
5118 final ActivityRecord r, String[] args, boolean dumpAll) {
5119 String innerPrefix = prefix + " ";
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005120 IApplicationThread appThread = null;
Wale Ogunwale31913b52018-10-13 08:29:31 -07005121 synchronized (mGlobalLock) {
5122 pw.print(prefix); pw.print("ACTIVITY "); pw.print(r.shortComponentName);
5123 pw.print(" "); pw.print(Integer.toHexString(System.identityHashCode(r)));
5124 pw.print(" pid=");
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005125 if (r.hasProcess()) {
5126 pw.println(r.app.getPid());
5127 appThread = r.app.getThread();
5128 } else {
5129 pw.println("(not running)");
5130 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07005131 if (dumpAll) {
Garfield Tane8d84ab2019-10-11 09:49:40 -07005132 r.dump(pw, innerPrefix, true /* dumpAll */);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005133 }
5134 }
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005135 if (appThread != null) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07005136 // flush anything that is already in the PrintWriter since the thread is going
5137 // to write to the file descriptor directly
5138 pw.flush();
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08005139 try (TransferPipe tp = new TransferPipe()) {
5140 appThread.dumpActivity(tp.getWriteFd(), r.appToken, innerPrefix, args);
5141 tp.go(fd);
Wale Ogunwale31913b52018-10-13 08:29:31 -07005142 } catch (IOException e) {
5143 pw.println(innerPrefix + "Failure while dumping the activity: " + e);
5144 } catch (RemoteException e) {
5145 pw.println(innerPrefix + "Got a RemoteException while dumping the activity");
5146 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07005147 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07005148 }
5149
sanryhuang498e77e2018-12-06 14:57:01 +08005150 private void writeSleepStateToProto(ProtoOutputStream proto, int wakeFullness,
5151 boolean testPssMode) {
5152 final long sleepToken = proto.start(ActivityManagerServiceDumpProcessesProto.SLEEP_STATUS);
5153 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.WAKEFULNESS,
5154 PowerManagerInternal.wakefulnessToProtoEnum(wakeFullness));
Louis Chang149d5c82019-12-30 09:47:39 +08005155 for (ActivityTaskManagerInternal.SleepToken st : mRootWindowContainer.mSleepTokens) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07005156 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SLEEP_TOKENS,
5157 st.toString());
5158 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07005159 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SLEEPING, mSleeping);
5160 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.SHUTTING_DOWN,
5161 mShuttingDown);
sanryhuang498e77e2018-12-06 14:57:01 +08005162 proto.write(ActivityManagerServiceDumpProcessesProto.SleepStatus.TEST_PSS_MODE,
5163 testPssMode);
5164 proto.end(sleepToken);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07005165 }
5166
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005167 int getCurrentUserId() {
5168 return mAmInternal.getCurrentUserId();
5169 }
5170
5171 private void enforceNotIsolatedCaller(String caller) {
5172 if (UserHandle.isIsolated(Binder.getCallingUid())) {
5173 throw new SecurityException("Isolated process not allowed to call " + caller);
5174 }
5175 }
5176
Wale Ogunwalef6733932018-06-27 05:14:34 -07005177 public Configuration getConfiguration() {
5178 Configuration ci;
5179 synchronized(mGlobalLock) {
Yunfan Chen75157d72018-07-27 14:47:21 +09005180 ci = new Configuration(getGlobalConfigurationForCallingPid());
Wale Ogunwalef6733932018-06-27 05:14:34 -07005181 ci.userSetLocale = false;
5182 }
5183 return ci;
5184 }
5185
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005186 /**
5187 * Current global configuration information. Contains general settings for the entire system,
5188 * also corresponds to the merged configuration of the default display.
5189 */
5190 Configuration getGlobalConfiguration() {
Louis Chang149d5c82019-12-30 09:47:39 +08005191 // Return default configuration before mRootWindowContainer initialized, which happens
Louis Chang3ff72a82019-12-17 12:12:59 +08005192 // while initializing process record for system, see {@link
5193 // ActivityManagerService#setSystemProcess}.
Louis Chang149d5c82019-12-30 09:47:39 +08005194 return mRootWindowContainer != null ? mRootWindowContainer.getConfiguration()
Louis Chang3ff72a82019-12-17 12:12:59 +08005195 : new Configuration();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005196 }
5197
5198 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5199 boolean initLocale) {
5200 return updateConfigurationLocked(values, starting, initLocale, false /* deferResume */);
5201 }
5202
5203 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5204 boolean initLocale, boolean deferResume) {
5205 // pass UserHandle.USER_NULL as userId because we don't persist configuration for any user
5206 return updateConfigurationLocked(values, starting, initLocale, false /* persistent */,
5207 UserHandle.USER_NULL, deferResume);
5208 }
5209
Wale Ogunwale59507092018-10-29 09:00:30 -07005210 public void updatePersistentConfiguration(Configuration values, @UserIdInt int userId) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005211 final long origId = Binder.clearCallingIdentity();
5212 try {
5213 synchronized (mGlobalLock) {
5214 updateConfigurationLocked(values, null, false, true, userId,
5215 false /* deferResume */);
5216 }
5217 } finally {
5218 Binder.restoreCallingIdentity(origId);
5219 }
5220 }
5221
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005222 private boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5223 boolean initLocale, boolean persistent, int userId, boolean deferResume) {
5224 return updateConfigurationLocked(values, starting, initLocale, persistent, userId,
5225 deferResume, null /* result */);
5226 }
5227
5228 /**
5229 * Do either or both things: (1) change the current configuration, and (2)
5230 * make sure the given activity is running with the (now) current
5231 * configuration. Returns true if the activity has been left running, or
5232 * false if <var>starting</var> is being destroyed to match the new
5233 * configuration.
5234 *
5235 * @param userId is only used when persistent parameter is set to true to persist configuration
5236 * for that particular user
5237 */
5238 boolean updateConfigurationLocked(Configuration values, ActivityRecord starting,
5239 boolean initLocale, boolean persistent, int userId, boolean deferResume,
5240 ActivityTaskManagerService.UpdateConfigurationResult result) {
5241 int changes = 0;
5242 boolean kept = true;
5243
Riddle Hsua0022cd2019-09-09 21:12:41 +08005244 deferWindowLayout();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005245 try {
5246 if (values != null) {
5247 changes = updateGlobalConfigurationLocked(values, initLocale, persistent, userId,
5248 deferResume);
5249 }
5250
5251 kept = ensureConfigAndVisibilityAfterUpdate(starting, changes);
5252 } finally {
Riddle Hsua0022cd2019-09-09 21:12:41 +08005253 continueWindowLayout();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005254 }
5255
5256 if (result != null) {
5257 result.changes = changes;
5258 result.activityRelaunched = !kept;
5259 }
5260 return kept;
5261 }
5262
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005263 /** Update default (global) configuration and notify listeners about changes. */
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005264 int updateGlobalConfigurationLocked(@NonNull Configuration values, boolean initLocale,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005265 boolean persistent, int userId, boolean deferResume) {
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005266
Louis Chang677921f2019-12-06 16:44:24 +08005267 final DisplayContent defaultDisplay =
Louis Chang149d5c82019-12-30 09:47:39 +08005268 mRootWindowContainer.getDisplayContent(DEFAULT_DISPLAY);
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005269
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005270 mTempConfig.setTo(getGlobalConfiguration());
5271 final int changes = mTempConfig.updateFrom(values);
5272 if (changes == 0) {
5273 // Since calling to Activity.setRequestedOrientation leads to freezing the window with
5274 // setting WindowManagerService.mWaitingForConfig to true, it is important that we call
5275 // performDisplayOverrideConfigUpdate in order to send the new display configuration
5276 // (even if there are no actual changes) to unfreeze the window.
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005277 defaultDisplay.performDisplayOverrideConfigUpdate(values, deferResume);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005278 return 0;
5279 }
5280
5281 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.i(TAG_CONFIGURATION,
5282 "Updating global configuration to: " + values);
Jeff Changd136e772019-11-05 20:33:52 +08005283 writeConfigurationChanged(changes);
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005284 FrameworkStatsLog.write(FrameworkStatsLog.RESOURCE_CONFIGURATION_CHANGED,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005285 values.colorMode,
5286 values.densityDpi,
5287 values.fontScale,
5288 values.hardKeyboardHidden,
5289 values.keyboard,
5290 values.keyboardHidden,
5291 values.mcc,
5292 values.mnc,
5293 values.navigation,
5294 values.navigationHidden,
5295 values.orientation,
5296 values.screenHeightDp,
5297 values.screenLayout,
5298 values.screenWidthDp,
5299 values.smallestScreenWidthDp,
5300 values.touchscreen,
5301 values.uiMode);
5302
5303
5304 if (!initLocale && !values.getLocales().isEmpty() && values.userSetLocale) {
5305 final LocaleList locales = values.getLocales();
5306 int bestLocaleIndex = 0;
5307 if (locales.size() > 1) {
5308 if (mSupportedSystemLocales == null) {
5309 mSupportedSystemLocales = Resources.getSystem().getAssets().getLocales();
5310 }
5311 bestLocaleIndex = Math.max(0, locales.getFirstMatchIndex(mSupportedSystemLocales));
5312 }
5313 SystemProperties.set("persist.sys.locale",
5314 locales.get(bestLocaleIndex).toLanguageTag());
5315 LocaleList.setDefault(locales, bestLocaleIndex);
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005316
5317 final Message m = PooledLambda.obtainMessage(
5318 ActivityTaskManagerService::sendLocaleToMountDaemonMsg, this,
5319 locales.get(bestLocaleIndex));
5320 mH.sendMessage(m);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005321 }
5322
Yunfan Chen75157d72018-07-27 14:47:21 +09005323 mTempConfig.seq = increaseConfigurationSeqLocked();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005324
5325 // Update stored global config and notify everyone about the change.
Louis Chang149d5c82019-12-30 09:47:39 +08005326 mRootWindowContainer.onConfigurationChanged(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005327
5328 Slog.i(TAG, "Config changes=" + Integer.toHexString(changes) + " " + mTempConfig);
5329 // TODO(multi-display): Update UsageEvents#Event to include displayId.
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005330 mUsageStatsInternal.reportConfigurationChange(mTempConfig, mAmInternal.getCurrentUserId());
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005331
5332 // TODO: If our config changes, should we auto dismiss any currently showing dialogs?
Wale Ogunwalef6733932018-06-27 05:14:34 -07005333 updateShouldShowDialogsLocked(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005334
5335 AttributeCache ac = AttributeCache.instance();
5336 if (ac != null) {
5337 ac.updateConfiguration(mTempConfig);
5338 }
5339
5340 // Make sure all resources in our process are updated right now, so that anyone who is going
5341 // to retrieve resource values after we return will be sure to get the new ones. This is
5342 // especially important during boot, where the first config change needs to guarantee all
5343 // resources have that config before following boot code is executed.
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005344 mSystemThread.applyConfigurationToResources(mTempConfig);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005345
5346 // We need another copy of global config because we're scheduling some calls instead of
5347 // running them in place. We need to be sure that object we send will be handled unchanged.
5348 final Configuration configCopy = new Configuration(mTempConfig);
5349 if (persistent && Settings.System.hasInterestingConfigurationChanges(changes)) {
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005350 final Message msg = PooledLambda.obtainMessage(
5351 ActivityTaskManagerService::sendPutConfigurationForUserMsg,
5352 this, userId, configCopy);
5353 mH.sendMessage(msg);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005354 }
5355
Michal Karpinski2e0aad22019-04-12 16:22:55 +01005356 SparseArray<WindowProcessController> pidMap = mProcessMap.getPidMap();
5357 for (int i = pidMap.size() - 1; i >= 0; i--) {
5358 final int pid = pidMap.keyAt(i);
5359 final WindowProcessController app = pidMap.get(pid);
Yunfan Chen34fcc7a2018-10-11 16:26:09 -07005360 if (DEBUG_CONFIGURATION) {
5361 Slog.v(TAG_CONFIGURATION, "Update process config of "
5362 + app.mName + " to new config " + configCopy);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005363 }
Yunfan Chen34fcc7a2018-10-11 16:26:09 -07005364 app.onConfigurationChanged(configCopy);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005365 }
5366
Wale Ogunwale2ea36d42018-10-18 10:27:31 -07005367 final Message msg = PooledLambda.obtainMessage(
5368 ActivityManagerInternal::broadcastGlobalConfigurationChanged,
5369 mAmInternal, changes, initLocale);
5370 mH.sendMessage(msg);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005371
5372 // Override configuration of the default display duplicates global config, so we need to
5373 // update it also. This will also notify WindowManager about changes.
Louis Chang149d5c82019-12-30 09:47:39 +08005374 defaultDisplay.performDisplayOverrideConfigUpdate(mRootWindowContainer.getConfiguration(),
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005375 deferResume);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005376
5377 return changes;
5378 }
5379
Riddle Hsua0022cd2019-09-09 21:12:41 +08005380 /** @see WindowSurfacePlacer#deferLayout */
5381 void deferWindowLayout() {
5382 if (!mWindowManager.mWindowPlacerLocked.isLayoutDeferred()) {
5383 // Reset the reasons at the first entrance because we only care about the changes in the
5384 // deferred scope.
5385 mLayoutReasons = 0;
5386 }
5387
5388 mWindowManager.mWindowPlacerLocked.deferLayout();
5389 }
5390
5391 /** @see WindowSurfacePlacer#continueLayout */
5392 void continueWindowLayout() {
5393 mWindowManager.mWindowPlacerLocked.continueLayout(mLayoutReasons != 0);
5394 if (DEBUG_ALL && !mWindowManager.mWindowPlacerLocked.isLayoutDeferred()) {
5395 Slog.i(TAG, "continueWindowLayout reason=" + mLayoutReasons);
5396 }
5397 }
5398
5399 /**
5400 * If a reason is added between {@link #deferWindowLayout} and {@link #continueWindowLayout},
5401 * it will make sure {@link WindowSurfacePlacer#performSurfacePlacement} is called when the last
5402 * defer count is gone.
5403 */
5404 void addWindowLayoutReasons(@LayoutReason int reasons) {
5405 mLayoutReasons |= reasons;
5406 }
5407
Wale Ogunwalef6733932018-06-27 05:14:34 -07005408 private void updateEventDispatchingLocked(boolean booted) {
5409 mWindowManager.setEventDispatching(booted && !mShuttingDown);
5410 }
5411
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005412 private void sendPutConfigurationForUserMsg(int userId, Configuration config) {
5413 final ContentResolver resolver = mContext.getContentResolver();
5414 Settings.System.putConfigurationForUser(resolver, config, userId);
5415 }
5416
5417 private void sendLocaleToMountDaemonMsg(Locale l) {
5418 try {
5419 IBinder service = ServiceManager.getService("mount");
5420 IStorageManager storageManager = IStorageManager.Stub.asInterface(service);
5421 Log.d(TAG, "Storing locale " + l.toLanguageTag() + " for decryption UI");
5422 storageManager.setField(StorageManager.SYSTEM_LOCALE_KEY, l.toLanguageTag());
5423 } catch (RemoteException e) {
5424 Log.e(TAG, "Error storing locale for decryption UI", e);
5425 }
5426 }
5427
Alison Cichowlas3e340502018-08-07 17:15:01 -04005428 private void expireStartAsCallerTokenMsg(IBinder permissionToken) {
5429 mStartActivitySources.remove(permissionToken);
5430 mExpiredStartAsCallerTokens.add(permissionToken);
5431 }
5432
5433 private void forgetStartAsCallerTokenMsg(IBinder permissionToken) {
5434 mExpiredStartAsCallerTokens.remove(permissionToken);
5435 }
5436
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005437 boolean isActivityStartsLoggingEnabled() {
5438 return mAmInternal.isActivityStartsLoggingEnabled();
5439 }
5440
Michal Karpinski8596ded2018-11-14 14:43:48 +00005441 boolean isBackgroundActivityStartsEnabled() {
5442 return mAmInternal.isBackgroundActivityStartsEnabled();
5443 }
5444
Wale Ogunwalef6733932018-06-27 05:14:34 -07005445 void enableScreenAfterBoot(boolean booted) {
Jeff Changd136e772019-11-05 20:33:52 +08005446 writeBootProgressEnableScreen(SystemClock.uptimeMillis());
Wale Ogunwalef6733932018-06-27 05:14:34 -07005447 mWindowManager.enableScreenAfterBoot();
5448
5449 synchronized (mGlobalLock) {
5450 updateEventDispatchingLocked(booted);
5451 }
5452 }
5453
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005454 static long getInputDispatchingTimeoutLocked(ActivityRecord r) {
5455 if (r == null || !r.hasProcess()) {
5456 return KEY_DISPATCHING_TIMEOUT_MS;
5457 }
5458 return getInputDispatchingTimeoutLocked(r.app);
5459 }
5460
5461 private static long getInputDispatchingTimeoutLocked(WindowProcessController r) {
Wale Ogunwale51cc98a2018-10-15 10:41:05 -07005462 return r != null ? r.getInputDispatchingTimeout() : KEY_DISPATCHING_TIMEOUT_MS;
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005463 }
5464
Wale Ogunwalef6733932018-06-27 05:14:34 -07005465 /**
5466 * Decide based on the configuration whether we should show the ANR,
5467 * crash, etc dialogs. The idea is that if there is no affordance to
5468 * press the on-screen buttons, or the user experience would be more
5469 * greatly impacted than the crash itself, we shouldn't show the dialog.
5470 *
5471 * A thought: SystemUI might also want to get told about this, the Power
5472 * dialog / global actions also might want different behaviors.
5473 */
5474 private void updateShouldShowDialogsLocked(Configuration config) {
5475 final boolean inputMethodExists = !(config.keyboard == Configuration.KEYBOARD_NOKEYS
5476 && config.touchscreen == Configuration.TOUCHSCREEN_NOTOUCH
5477 && config.navigation == Configuration.NAVIGATION_NONAV);
5478 int modeType = config.uiMode & Configuration.UI_MODE_TYPE_MASK;
5479 final boolean uiModeSupportsDialogs = (modeType != Configuration.UI_MODE_TYPE_CAR
5480 && !(modeType == Configuration.UI_MODE_TYPE_WATCH && Build.IS_USER)
5481 && modeType != Configuration.UI_MODE_TYPE_TELEVISION
5482 && modeType != Configuration.UI_MODE_TYPE_VR_HEADSET);
5483 final boolean hideDialogsSet = Settings.Global.getInt(mContext.getContentResolver(),
5484 HIDE_ERROR_DIALOGS, 0) != 0;
5485 mShowDialogs = inputMethodExists && uiModeSupportsDialogs && !hideDialogsSet;
5486 }
5487
5488 private void updateFontScaleIfNeeded(@UserIdInt int userId) {
5489 final float scaleFactor = Settings.System.getFloatForUser(mContext.getContentResolver(),
5490 FONT_SCALE, 1.0f, userId);
5491
Riddle Hsu8419e4b2019-09-18 23:28:01 +08005492 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07005493 if (getGlobalConfiguration().fontScale == scaleFactor) {
5494 return;
5495 }
5496
5497 final Configuration configuration
5498 = mWindowManager.computeNewConfiguration(DEFAULT_DISPLAY);
5499 configuration.fontScale = scaleFactor;
5500 updatePersistentConfiguration(configuration, userId);
5501 }
5502 }
5503
5504 // Actually is sleeping or shutting down or whatever else in the future
5505 // is an inactive state.
5506 boolean isSleepingOrShuttingDownLocked() {
5507 return isSleepingLocked() || mShuttingDown;
5508 }
5509
5510 boolean isSleepingLocked() {
5511 return mSleeping;
5512 }
5513
Riddle Hsu16567132018-08-16 21:37:47 +08005514 /** Update AMS states when an activity is resumed. */
Wale Ogunwalef6733932018-06-27 05:14:34 -07005515 void setResumedActivityUncheckLocked(ActivityRecord r, String reason) {
Louis Changcdec0802019-11-11 11:45:07 +08005516 final Task task = r.getTask();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005517 if (task.isActivityTypeStandard()) {
5518 if (mCurAppTimeTracker != r.appTimeTracker) {
5519 // We are switching app tracking. Complete the current one.
5520 if (mCurAppTimeTracker != null) {
5521 mCurAppTimeTracker.stop();
5522 mH.obtainMessage(
5523 REPORT_TIME_TRACKER_MSG, mCurAppTimeTracker).sendToTarget();
Louis Chang149d5c82019-12-30 09:47:39 +08005524 mRootWindowContainer.clearOtherAppTimeTrackers(r.appTimeTracker);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005525 mCurAppTimeTracker = null;
5526 }
5527 if (r.appTimeTracker != null) {
5528 mCurAppTimeTracker = r.appTimeTracker;
5529 startTimeTrackingFocusedActivityLocked();
5530 }
5531 } else {
5532 startTimeTrackingFocusedActivityLocked();
5533 }
5534 } else {
5535 r.appTimeTracker = null;
5536 }
5537 // TODO: VI Maybe r.task.voiceInteractor || r.voiceInteractor != null
5538 // TODO: Probably not, because we don't want to resume voice on switching
5539 // back to this activity
5540 if (task.voiceInteractor != null) {
5541 startRunningVoiceLocked(task.voiceSession, r.info.applicationInfo.uid);
5542 } else {
5543 finishRunningVoiceLocked();
5544
5545 if (mLastResumedActivity != null) {
5546 final IVoiceInteractionSession session;
5547
Louis Changcdec0802019-11-11 11:45:07 +08005548 final Task lastResumedActivityTask = mLastResumedActivity.getTask();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005549 if (lastResumedActivityTask != null
5550 && lastResumedActivityTask.voiceSession != null) {
5551 session = lastResumedActivityTask.voiceSession;
5552 } else {
5553 session = mLastResumedActivity.voiceSession;
5554 }
5555
5556 if (session != null) {
5557 // We had been in a voice interaction session, but now focused has
5558 // move to something different. Just finish the session, we can't
5559 // return to it and retain the proper state and synchronization with
5560 // the voice interaction service.
5561 finishVoiceTask(session);
5562 }
5563 }
5564 }
5565
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005566 if (mLastResumedActivity != null && r.mUserId != mLastResumedActivity.mUserId) {
5567 mAmInternal.sendForegroundProfileChanged(r.mUserId);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005568 }
5569 updateResumedAppTrace(r);
5570 mLastResumedActivity = r;
5571
Tiger Huang1e5b10a2018-07-30 20:19:51 +08005572 r.getDisplay().setFocusedApp(r, true);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005573
5574 applyUpdateLockStateLocked(r);
5575 applyUpdateVrModeLocked(r);
5576
Jeff Changd136e772019-11-05 20:33:52 +08005577 EventLogTags.writeWmSetResumedActivity(
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005578 r == null ? -1 : r.mUserId,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005579 r == null ? "NULL" : r.shortComponentName,
5580 reason);
5581 }
5582
5583 ActivityTaskManagerInternal.SleepToken acquireSleepToken(String tag, int displayId) {
5584 synchronized (mGlobalLock) {
Wale Ogunwaled32da472018-11-16 07:19:28 -08005585 final ActivityTaskManagerInternal.SleepToken token =
Louis Chang149d5c82019-12-30 09:47:39 +08005586 mRootWindowContainer.createSleepToken(tag, displayId);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005587 updateSleepIfNeededLocked();
5588 return token;
5589 }
5590 }
5591
5592 void updateSleepIfNeededLocked() {
Louis Chang149d5c82019-12-30 09:47:39 +08005593 final boolean shouldSleep = !mRootWindowContainer.hasAwakeDisplay();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005594 final boolean wasSleeping = mSleeping;
5595 boolean updateOomAdj = false;
5596
5597 if (!shouldSleep) {
5598 // If wasSleeping is true, we need to wake up activity manager state from when
5599 // we started sleeping. In either case, we need to apply the sleep tokens, which
5600 // will wake up stacks or put them to sleep as appropriate.
5601 if (wasSleeping) {
5602 mSleeping = false;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005603 FrameworkStatsLog.write(FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED,
5604 FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED__STATE__AWAKE);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005605 startTimeTrackingFocusedActivityLocked();
5606 mTopProcessState = ActivityManager.PROCESS_STATE_TOP;
Varun Shah98694fb2019-04-11 09:28:27 -07005607 Slog.d(TAG, "Top Process State changed to PROCESS_STATE_TOP");
Wale Ogunwalef6733932018-06-27 05:14:34 -07005608 mStackSupervisor.comeOutOfSleepIfNeededLocked();
5609 }
Louis Chang149d5c82019-12-30 09:47:39 +08005610 mRootWindowContainer.applySleepTokens(true /* applyToStacks */);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005611 if (wasSleeping) {
5612 updateOomAdj = true;
5613 }
5614 } else if (!mSleeping && shouldSleep) {
5615 mSleeping = true;
Muhammad Qureshi759f92f2020-01-28 10:41:55 -08005616 FrameworkStatsLog.write(FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED,
5617 FrameworkStatsLog.ACTIVITY_MANAGER_SLEEP_STATE_CHANGED__STATE__ASLEEP);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005618 if (mCurAppTimeTracker != null) {
5619 mCurAppTimeTracker.stop();
5620 }
5621 mTopProcessState = ActivityManager.PROCESS_STATE_TOP_SLEEPING;
Varun Shah98694fb2019-04-11 09:28:27 -07005622 Slog.d(TAG, "Top Process State changed to PROCESS_STATE_TOP_SLEEPING");
Wale Ogunwalef6733932018-06-27 05:14:34 -07005623 mStackSupervisor.goingToSleepLocked();
5624 updateResumedAppTrace(null /* resumed */);
5625 updateOomAdj = true;
5626 }
5627 if (updateOomAdj) {
wilsonshih8d096d22019-08-01 17:46:14 +08005628 updateOomAdj();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005629 }
5630 }
5631
5632 void updateOomAdj() {
Wale Ogunwalea38654f2019-11-17 20:37:15 -08005633 mH.removeCallbacks(mUpdateOomAdjRunnable);
5634 mH.post(mUpdateOomAdjRunnable);
Wale Ogunwalef6733932018-06-27 05:14:34 -07005635 }
5636
Wale Ogunwale53783742018-09-16 10:21:51 -07005637 void updateCpuStats() {
5638 mH.post(mAmInternal::updateCpuStats);
5639 }
5640
Hui Yu03d12402018-12-06 18:00:37 -08005641 void updateBatteryStats(ActivityRecord component, boolean resumed) {
5642 final Message m = PooledLambda.obtainMessage(ActivityManagerInternal::updateBatteryStats,
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005643 mAmInternal, component.mActivityComponent, component.app.mUid, component.mUserId,
5644 resumed);
Wale Ogunwale53783742018-09-16 10:21:51 -07005645 mH.sendMessage(m);
5646 }
5647
Hui Yu03d12402018-12-06 18:00:37 -08005648 void updateActivityUsageStats(ActivityRecord activity, int event) {
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005649 ComponentName taskRoot = null;
Louis Changcdec0802019-11-11 11:45:07 +08005650 final Task task = activity.getTask();
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005651 if (task != null) {
5652 final ActivityRecord rootActivity = task.getRootActivity();
5653 if (rootActivity != null) {
5654 taskRoot = rootActivity.mActivityComponent;
5655 }
5656 }
5657
Hui Yu03d12402018-12-06 18:00:37 -08005658 final Message m = PooledLambda.obtainMessage(
5659 ActivityManagerInternal::updateActivityUsageStats, mAmInternal,
Michael Wachenschwanz0b4ab1f2019-01-07 13:59:10 -08005660 activity.mActivityComponent, activity.mUserId, event, activity.appToken, taskRoot);
Hui Yu03d12402018-12-06 18:00:37 -08005661 mH.sendMessage(m);
5662 }
5663
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005664 void startProcessAsync(ActivityRecord activity, boolean knownToBeDead, boolean isTop,
5665 String hostingType) {
5666 try {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005667 if (Trace.isTagEnabled(TRACE_TAG_WINDOW_MANAGER)) {
5668 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "dispatchingStartProcess:"
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005669 + activity.processName);
5670 }
5671 // Post message to start process to avoid possible deadlock of calling into AMS with the
5672 // ATMS lock held.
5673 final Message m = PooledLambda.obtainMessage(ActivityManagerInternal::startProcess,
5674 mAmInternal, activity.processName, activity.info.applicationInfo, knownToBeDead,
5675 isTop, hostingType, activity.intent.getComponent());
5676 mH.sendMessage(m);
5677 } finally {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005678 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
Riddle Hsu32dbdca2019-05-17 23:10:16 -06005679 }
5680 }
5681
Wale Ogunwale53783742018-09-16 10:21:51 -07005682 void setBooting(boolean booting) {
5683 mAmInternal.setBooting(booting);
5684 }
5685
5686 boolean isBooting() {
5687 return mAmInternal.isBooting();
5688 }
5689
5690 void setBooted(boolean booted) {
5691 mAmInternal.setBooted(booted);
5692 }
5693
5694 boolean isBooted() {
5695 return mAmInternal.isBooted();
5696 }
5697
5698 void postFinishBooting(boolean finishBooting, boolean enableScreen) {
5699 mH.post(() -> {
5700 if (finishBooting) {
5701 mAmInternal.finishBooting();
5702 }
5703 if (enableScreen) {
5704 mInternal.enableScreenAfterBoot(isBooted());
5705 }
5706 });
5707 }
5708
5709 void setHeavyWeightProcess(ActivityRecord root) {
5710 mHeavyWeightProcess = root.app;
5711 final Message m = PooledLambda.obtainMessage(
5712 ActivityTaskManagerService::postHeavyWeightProcessNotification, this,
Wale Ogunwale8b19de92018-11-29 19:58:26 -08005713 root.app, root.intent, root.mUserId);
Wale Ogunwale53783742018-09-16 10:21:51 -07005714 mH.sendMessage(m);
5715 }
5716
5717 void clearHeavyWeightProcessIfEquals(WindowProcessController proc) {
5718 if (mHeavyWeightProcess == null || mHeavyWeightProcess != proc) {
5719 return;
5720 }
5721
5722 mHeavyWeightProcess = null;
5723 final Message m = PooledLambda.obtainMessage(
5724 ActivityTaskManagerService::cancelHeavyWeightProcessNotification, this,
5725 proc.mUserId);
5726 mH.sendMessage(m);
5727 }
5728
5729 private void cancelHeavyWeightProcessNotification(int userId) {
5730 final INotificationManager inm = NotificationManager.getService();
5731 if (inm == null) {
5732 return;
5733 }
5734 try {
Julia Reynoldse4a47dd2019-06-07 13:40:59 -04005735 inm.cancelNotificationWithTag("android", "android", null,
Wale Ogunwale53783742018-09-16 10:21:51 -07005736 SystemMessage.NOTE_HEAVY_WEIGHT_NOTIFICATION, userId);
5737 } catch (RuntimeException e) {
5738 Slog.w(TAG, "Error canceling notification for service", e);
5739 } catch (RemoteException e) {
5740 }
5741
5742 }
5743
5744 private void postHeavyWeightProcessNotification(
5745 WindowProcessController proc, Intent intent, int userId) {
5746 if (proc == null) {
5747 return;
5748 }
5749
5750 final INotificationManager inm = NotificationManager.getService();
5751 if (inm == null) {
5752 return;
5753 }
5754
5755 try {
5756 Context context = mContext.createPackageContext(proc.mInfo.packageName, 0);
5757 String text = mContext.getString(R.string.heavy_weight_notification,
5758 context.getApplicationInfo().loadLabel(context.getPackageManager()));
5759 Notification notification =
5760 new Notification.Builder(context,
5761 SystemNotificationChannels.HEAVY_WEIGHT_APP)
5762 .setSmallIcon(com.android.internal.R.drawable.stat_sys_adb)
5763 .setWhen(0)
5764 .setOngoing(true)
5765 .setTicker(text)
5766 .setColor(mContext.getColor(
5767 com.android.internal.R.color.system_notification_accent_color))
5768 .setContentTitle(text)
5769 .setContentText(
5770 mContext.getText(R.string.heavy_weight_notification_detail))
5771 .setContentIntent(PendingIntent.getActivityAsUser(mContext, 0,
5772 intent, PendingIntent.FLAG_CANCEL_CURRENT, null,
5773 new UserHandle(userId)))
5774 .build();
5775 try {
5776 inm.enqueueNotificationWithTag("android", "android", null,
5777 SystemMessage.NOTE_HEAVY_WEIGHT_NOTIFICATION, notification, userId);
5778 } catch (RuntimeException e) {
5779 Slog.w(TAG, "Error showing notification for heavy-weight app", e);
5780 } catch (RemoteException e) {
5781 }
5782 } catch (PackageManager.NameNotFoundException e) {
5783 Slog.w(TAG, "Unable to create context for heavy notification", e);
5784 }
5785
5786 }
5787
Philip P. Moltmannee295092020-02-10 08:46:26 -08005788 IIntentSender getIntentSenderLocked(int type, String packageName, String featureId,
5789 int callingUid, int userId, IBinder token, String resultWho, int requestCode,
5790 Intent[] intents, String[] resolvedTypes, int flags, Bundle bOptions) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07005791
5792 ActivityRecord activity = null;
5793 if (type == ActivityManager.INTENT_SENDER_ACTIVITY_RESULT) {
5794 activity = ActivityRecord.isInStackLocked(token);
5795 if (activity == null) {
5796 Slog.w(TAG, "Failed createPendingResult: activity " + token + " not in any stack");
5797 return null;
5798 }
5799 if (activity.finishing) {
5800 Slog.w(TAG, "Failed createPendingResult: activity " + activity + " is finishing");
5801 return null;
5802 }
5803 }
5804
5805 final PendingIntentRecord rec = mPendingIntentController.getIntentSender(type, packageName,
Philip P. Moltmannee295092020-02-10 08:46:26 -08005806 featureId, callingUid, userId, token, resultWho, requestCode, intents,
5807 resolvedTypes, flags, bOptions);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07005808 final boolean noCreate = (flags & PendingIntent.FLAG_NO_CREATE) != 0;
5809 if (noCreate) {
5810 return rec;
5811 }
5812 if (type == ActivityManager.INTENT_SENDER_ACTIVITY_RESULT) {
5813 if (activity.pendingResults == null) {
5814 activity.pendingResults = new HashSet<>();
5815 }
5816 activity.pendingResults.add(rec.ref);
5817 }
5818 return rec;
5819 }
5820
Andrii Kulian52d255c2018-07-13 11:32:19 -07005821 // TODO(b/111541062): Update app time tracking to make it aware of multiple resumed activities
Wale Ogunwalef6733932018-06-27 05:14:34 -07005822 private void startTimeTrackingFocusedActivityLocked() {
Louis Chang149d5c82019-12-30 09:47:39 +08005823 final ActivityRecord resumedActivity = mRootWindowContainer.getTopResumedActivity();
Wale Ogunwalef6733932018-06-27 05:14:34 -07005824 if (!mSleeping && mCurAppTimeTracker != null && resumedActivity != null) {
5825 mCurAppTimeTracker.start(resumedActivity.packageName);
5826 }
5827 }
5828
5829 private void updateResumedAppTrace(@Nullable ActivityRecord resumed) {
5830 if (mTracedResumedActivity != null) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005831 Trace.asyncTraceEnd(TRACE_TAG_WINDOW_MANAGER,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005832 constructResumedTraceName(mTracedResumedActivity.packageName), 0);
5833 }
5834 if (resumed != null) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08005835 Trace.asyncTraceBegin(TRACE_TAG_WINDOW_MANAGER,
Wale Ogunwalef6733932018-06-27 05:14:34 -07005836 constructResumedTraceName(resumed.packageName), 0);
5837 }
5838 mTracedResumedActivity = resumed;
5839 }
5840
5841 private String constructResumedTraceName(String packageName) {
5842 return "focused app: " + packageName;
5843 }
5844
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005845 /** Applies latest configuration and/or visibility updates if needed. */
Shivam Agrawal1d3db652019-07-01 15:26:11 -07005846 boolean ensureConfigAndVisibilityAfterUpdate(ActivityRecord starting, int changes) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005847 boolean kept = true;
Louis Chang149d5c82019-12-30 09:47:39 +08005848 final ActivityStack mainStack = mRootWindowContainer.getTopDisplayFocusedStack();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005849 // mainStack is null during startup.
5850 if (mainStack != null) {
5851 if (changes != 0 && starting == null) {
5852 // If the configuration changed, and the caller is not already
5853 // in the process of starting an activity, then find the top
5854 // activity to check if its configuration needs to change.
Wale Ogunwale85fb19a2019-12-05 10:41:05 +09005855 starting = mainStack.topRunningActivity();
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005856 }
5857
5858 if (starting != null) {
5859 kept = starting.ensureActivityConfiguration(changes,
5860 false /* preserveWindow */);
5861 // And we need to make sure at this point that all other activities
5862 // are made visible with the correct configuration.
Louis Chang149d5c82019-12-30 09:47:39 +08005863 mRootWindowContainer.ensureActivitiesVisible(starting, changes,
Wale Ogunwalea6191b42018-05-09 07:41:32 -07005864 !PRESERVE_WINDOWS);
5865 }
5866 }
5867
5868 return kept;
5869 }
5870
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005871 void scheduleAppGcsLocked() {
5872 mH.post(() -> mAmInternal.scheduleAppGcs());
5873 }
5874
Wale Ogunwale53783742018-09-16 10:21:51 -07005875 CompatibilityInfo compatibilityInfoForPackageLocked(ApplicationInfo ai) {
5876 return mCompatModePackages.compatibilityInfoForPackageLocked(ai);
5877 }
5878
Wale Ogunwale906f9c62018-07-23 11:23:44 -07005879 /**
5880 * Returns the PackageManager. Used by classes hosted by {@link ActivityTaskManagerService}. The
5881 * PackageManager could be unavailable at construction time and therefore needs to be accessed
5882 * on demand.
5883 */
5884 IPackageManager getPackageManager() {
5885 return AppGlobals.getPackageManager();
5886 }
5887
5888 PackageManagerInternal getPackageManagerInternalLocked() {
5889 if (mPmInternal == null) {
5890 mPmInternal = LocalServices.getService(PackageManagerInternal.class);
5891 }
5892 return mPmInternal;
5893 }
5894
Hai Zhangf4da9be2019-05-01 13:46:06 +08005895 PermissionPolicyInternal getPermissionPolicyInternal() {
5896 if (mPermissionPolicyInternal == null) {
5897 mPermissionPolicyInternal = LocalServices.getService(PermissionPolicyInternal.class);
5898 }
5899 return mPermissionPolicyInternal;
5900 }
5901
Wale Ogunwale008163e2018-07-23 23:11:08 -07005902 AppWarnings getAppWarningsLocked() {
5903 return mAppWarnings;
5904 }
5905
Wale Ogunwale214f3482018-10-04 11:00:47 -07005906 Intent getHomeIntent() {
5907 Intent intent = new Intent(mTopAction, mTopData != null ? Uri.parse(mTopData) : null);
5908 intent.setComponent(mTopComponent);
5909 intent.addFlags(Intent.FLAG_DEBUG_TRIAGED_MISSING);
5910 if (mFactoryTest != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
5911 intent.addCategory(Intent.CATEGORY_HOME);
5912 }
5913 return intent;
5914 }
5915
Chilun2ef71f72018-11-16 17:57:15 +08005916 /**
5917 * Return the intent set with {@link Intent#CATEGORY_SECONDARY_HOME} to resolve secondary home
5918 * activities.
5919 *
5920 * @param preferredPackage Specify a preferred package name, otherwise use secondary home
5921 * component defined in config_secondaryHomeComponent.
5922 * @return the intent set with {@link Intent#CATEGORY_SECONDARY_HOME}
5923 */
5924 Intent getSecondaryHomeIntent(String preferredPackage) {
5925 final Intent intent = new Intent(mTopAction, mTopData != null ? Uri.parse(mTopData) : null);
Keun young Park340546a2019-05-06 16:27:44 -07005926 final boolean useSystemProvidedLauncher = mContext.getResources().getBoolean(
5927 com.android.internal.R.bool.config_useSystemProvidedLauncherForSecondary);
5928 if (preferredPackage == null || useSystemProvidedLauncher) {
5929 // Using the component stored in config if no package name or forced.
Chilun2ef71f72018-11-16 17:57:15 +08005930 final String secondaryHomeComponent = mContext.getResources().getString(
5931 com.android.internal.R.string.config_secondaryHomeComponent);
5932 intent.setComponent(ComponentName.unflattenFromString(secondaryHomeComponent));
5933 } else {
5934 intent.setPackage(preferredPackage);
5935 }
5936 intent.addFlags(Intent.FLAG_DEBUG_TRIAGED_MISSING);
5937 if (mFactoryTest != FactoryTest.FACTORY_TEST_LOW_LEVEL) {
5938 intent.addCategory(Intent.CATEGORY_SECONDARY_HOME);
5939 }
5940 return intent;
5941 }
5942
Wale Ogunwale214f3482018-10-04 11:00:47 -07005943 ApplicationInfo getAppInfoForUser(ApplicationInfo info, int userId) {
5944 if (info == null) return null;
5945 ApplicationInfo newInfo = new ApplicationInfo(info);
5946 newInfo.initForUser(userId);
5947 return newInfo;
5948 }
5949
Wale Ogunwale9c103022018-10-18 07:44:54 -07005950 WindowProcessController getProcessController(String processName, int uid) {
Wale Ogunwale214f3482018-10-04 11:00:47 -07005951 if (uid == SYSTEM_UID) {
5952 // The system gets to run in any process. If there are multiple processes with the same
5953 // uid, just pick the first (this should never happen).
5954 final SparseArray<WindowProcessController> procs =
5955 mProcessNames.getMap().get(processName);
5956 if (procs == null) return null;
5957 final int procCount = procs.size();
5958 for (int i = 0; i < procCount; i++) {
5959 final int procUid = procs.keyAt(i);
5960 if (UserHandle.isApp(procUid) || !UserHandle.isSameUser(procUid, uid)) {
5961 // Don't use an app process or different user process for system component.
5962 continue;
5963 }
5964 return procs.valueAt(i);
5965 }
5966 }
5967
5968 return mProcessNames.get(processName, uid);
5969 }
5970
Wale Ogunwale342fbe92018-10-09 08:44:10 -07005971 WindowProcessController getProcessController(IApplicationThread thread) {
5972 if (thread == null) {
5973 return null;
5974 }
5975
5976 final IBinder threadBinder = thread.asBinder();
5977 final ArrayMap<String, SparseArray<WindowProcessController>> pmap = mProcessNames.getMap();
5978 for (int i = pmap.size()-1; i >= 0; i--) {
5979 final SparseArray<WindowProcessController> procs = pmap.valueAt(i);
5980 for (int j = procs.size() - 1; j >= 0; j--) {
5981 final WindowProcessController proc = procs.valueAt(j);
5982 if (proc.hasThread() && proc.getThread().asBinder() == threadBinder) {
5983 return proc;
5984 }
5985 }
5986 }
5987
5988 return null;
5989 }
5990
Michal Karpinski9cbb20b2019-02-05 17:31:50 +00005991 WindowProcessController getProcessController(int pid, int uid) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01005992 final WindowProcessController proc = mProcessMap.getProcess(pid);
Yunfan Chen8546b212019-04-01 15:34:44 +09005993 if (proc == null) return null;
5994 if (UserHandle.isApp(uid) && proc.mUid == uid) {
5995 return proc;
Michal Karpinski9cbb20b2019-02-05 17:31:50 +00005996 }
5997 return null;
5998 }
5999
Riddle Hsua0536432019-02-16 00:38:59 +08006000 int getUidState(int uid) {
6001 return mActiveUids.getUidState(uid);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07006002 }
6003
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00006004 boolean isUidForeground(int uid) {
Alan Stokeseea8d3e2019-04-10 17:37:25 +01006005 // A uid is considered to be foreground if it has a visible non-toast window.
6006 return mWindowManager.mRoot.isAnyNonToastWindowVisibleForUid(uid);
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00006007 }
6008
Ricky Wai96f5c352019-04-10 18:40:17 +01006009 boolean isDeviceOwner(int uid) {
6010 return uid >= 0 && mDeviceOwnerUid == uid;
Michal Karpinski4026cae2019-02-12 11:51:47 +00006011 }
6012
Ricky Wai96f5c352019-04-10 18:40:17 +01006013 void setDeviceOwnerUid(int uid) {
6014 mDeviceOwnerUid = uid;
Michal Karpinski4026cae2019-02-12 11:51:47 +00006015 }
6016
Wale Ogunwale9de19442018-10-18 19:05:03 -07006017 /**
6018 * @return whitelist tag for a uid from mPendingTempWhitelist, null if not currently on
6019 * the whitelist
6020 */
6021 String getPendingTempWhitelistTagForUidLocked(int uid) {
6022 return mPendingTempWhitelist.get(uid);
6023 }
6024
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006025 void logAppTooSlow(WindowProcessController app, long startTime, String msg) {
6026 if (true || Build.IS_USER) {
6027 return;
6028 }
6029
6030 StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskReads();
6031 StrictMode.allowThreadDiskWrites();
6032 try {
6033 File tracesDir = new File("/data/anr");
6034 File tracesFile = null;
6035 try {
6036 tracesFile = File.createTempFile("app_slow", null, tracesDir);
6037
6038 StringBuilder sb = new StringBuilder();
Neil Fuller97746812019-08-19 14:20:50 +01006039 String timeString =
6040 TimeMigrationUtils.formatMillisWithFixedFormat(System.currentTimeMillis());
6041 sb.append(timeString);
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006042 sb.append(": ");
6043 TimeUtils.formatDuration(SystemClock.uptimeMillis()-startTime, sb);
6044 sb.append(" since ");
6045 sb.append(msg);
6046 FileOutputStream fos = new FileOutputStream(tracesFile);
6047 fos.write(sb.toString().getBytes());
6048 if (app == null) {
6049 fos.write("\n*** No application process!".getBytes());
6050 }
6051 fos.close();
6052 FileUtils.setPermissions(tracesFile.getPath(), 0666, -1, -1); // -rw-rw-rw-
6053 } catch (IOException e) {
6054 Slog.w(TAG, "Unable to prepare slow app traces file: " + tracesFile, e);
6055 return;
6056 }
6057
6058 if (app != null && app.getPid() > 0) {
6059 ArrayList<Integer> firstPids = new ArrayList<Integer>();
6060 firstPids.add(app.getPid());
6061 dumpStackTraces(tracesFile.getAbsolutePath(), firstPids, null, null);
6062 }
6063
6064 File lastTracesFile = null;
6065 File curTracesFile = null;
6066 for (int i=9; i>=0; i--) {
6067 String name = String.format(Locale.US, "slow%02d.txt", i);
6068 curTracesFile = new File(tracesDir, name);
6069 if (curTracesFile.exists()) {
6070 if (lastTracesFile != null) {
6071 curTracesFile.renameTo(lastTracesFile);
6072 } else {
6073 curTracesFile.delete();
6074 }
6075 }
6076 lastTracesFile = curTracesFile;
6077 }
6078 tracesFile.renameTo(curTracesFile);
6079 } finally {
6080 StrictMode.setThreadPolicy(oldPolicy);
6081 }
6082 }
6083
Michal Karpinskida34cd42019-04-02 19:46:52 +01006084 boolean isAssociatedCompanionApp(int userId, int uid) {
6085 final Set<Integer> allUids = mCompanionAppUidsMap.get(userId);
6086 if (allUids == null) {
Ricky Wai2452e2d2019-03-18 19:19:08 +00006087 return false;
6088 }
Michal Karpinskida34cd42019-04-02 19:46:52 +01006089 return allUids.contains(uid);
Ricky Wai2452e2d2019-03-18 19:19:08 +00006090 }
6091
Issei Suzuki734bc942019-06-05 13:59:52 +02006092 void notifySingleTaskDisplayEmpty(int displayId) {
6093 mTaskChangeNotificationController.notifySingleTaskDisplayEmpty(displayId);
6094 }
6095
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006096 final class H extends Handler {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006097 static final int REPORT_TIME_TRACKER_MSG = 1;
Alison Cichowlas3e340502018-08-07 17:15:01 -04006098
6099
Wale Ogunwale98875612018-10-12 07:53:02 -07006100 static final int FIRST_ACTIVITY_STACK_MSG = 100;
6101 static final int FIRST_SUPERVISOR_STACK_MSG = 200;
Wale Ogunwalef6733932018-06-27 05:14:34 -07006102
Riddle Hsud93a6c42018-11-29 21:50:06 +08006103 H(Looper looper) {
6104 super(looper);
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006105 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006106
6107 @Override
6108 public void handleMessage(Message msg) {
6109 switch (msg.what) {
6110 case REPORT_TIME_TRACKER_MSG: {
6111 AppTimeTracker tracker = (AppTimeTracker) msg.obj;
6112 tracker.deliverResult(mContext);
6113 } break;
6114 }
6115 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006116 }
6117
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006118 final class UiHandler extends Handler {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006119 static final int DISMISS_DIALOG_UI_MSG = 1;
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006120
6121 public UiHandler() {
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -08006122 super(UiThread.get().getLooper(), null, true);
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006123 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006124
6125 @Override
6126 public void handleMessage(Message msg) {
6127 switch (msg.what) {
6128 case DISMISS_DIALOG_UI_MSG: {
6129 final Dialog d = (Dialog) msg.obj;
6130 d.dismiss();
6131 break;
6132 }
6133 }
6134 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006135 }
6136
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006137 final class LocalService extends ActivityTaskManagerInternal {
6138 @Override
6139 public SleepToken acquireSleepToken(String tag, int displayId) {
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +00006140 Objects.requireNonNull(tag);
Wale Ogunwalef6733932018-06-27 05:14:34 -07006141 return ActivityTaskManagerService.this.acquireSleepToken(tag, displayId);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006142 }
6143
6144 @Override
6145 public ComponentName getHomeActivityForUser(int userId) {
6146 synchronized (mGlobalLock) {
Wale Ogunwaled32da472018-11-16 07:19:28 -08006147 final ActivityRecord homeActivity =
Louis Chang149d5c82019-12-30 09:47:39 +08006148 mRootWindowContainer.getDefaultDisplayHomeActivityForUser(userId);
Wale Ogunwale8b19de92018-11-29 19:58:26 -08006149 return homeActivity == null ? null : homeActivity.mActivityComponent;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006150 }
6151 }
6152
6153 @Override
6154 public void onLocalVoiceInteractionStarted(IBinder activity,
6155 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor) {
6156 synchronized (mGlobalLock) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006157 onLocalVoiceInteractionStartedLocked(activity, voiceSession, voiceInteractor);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006158 }
6159 }
6160
6161 @Override
Issei Suzukicac2a502019-04-16 16:52:50 +02006162 public void notifySingleTaskDisplayDrawn(int displayId) {
6163 mTaskChangeNotificationController.notifySingleTaskDisplayDrawn(displayId);
6164 }
6165
6166 @Override
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006167 public void notifyAppTransitionFinished() {
6168 synchronized (mGlobalLock) {
6169 mStackSupervisor.notifyAppTransitionDone();
6170 }
6171 }
6172
6173 @Override
6174 public void notifyAppTransitionCancelled() {
6175 synchronized (mGlobalLock) {
6176 mStackSupervisor.notifyAppTransitionDone();
6177 }
6178 }
6179
6180 @Override
6181 public List<IBinder> getTopVisibleActivities() {
6182 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006183 return mRootWindowContainer.getTopVisibleActivities();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006184 }
6185 }
6186
6187 @Override
6188 public void notifyDockedStackMinimizedChanged(boolean minimized) {
6189 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006190 mRootWindowContainer.setDockedStackMinimized(minimized);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006191 }
6192 }
6193
6194 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08006195 public int startActivitiesAsPackage(String packageName, @Nullable String featureId,
6196 int userId, Intent[] intents, Bundle bOptions) {
Daulet Zhanguzinc6c641f2020-01-02 17:18:30 +00006197 Objects.requireNonNull(intents, "intents");
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006198 final String[] resolvedTypes = new String[intents.length];
6199
6200 // UID of the package on user userId.
6201 // "= 0" is needed because otherwise catch(RemoteException) would make it look like
6202 // packageUid may not be initialized.
6203 int packageUid = 0;
6204 final long ident = Binder.clearCallingIdentity();
6205
6206 try {
6207 for (int i = 0; i < intents.length; i++) {
6208 resolvedTypes[i] =
6209 intents[i].resolveTypeIfNeeded(mContext.getContentResolver());
6210 }
6211
6212 packageUid = AppGlobals.getPackageManager().getPackageUid(
6213 packageName, PackageManager.MATCH_DEBUG_TRIAGED_MISSING, userId);
6214 } catch (RemoteException e) {
6215 // Shouldn't happen.
6216 } finally {
6217 Binder.restoreCallingIdentity(ident);
6218 }
6219
Riddle Hsu591bf612019-02-14 17:55:31 +08006220 return getActivityStartController().startActivitiesInPackage(
Philip P. Moltmannee295092020-02-10 08:46:26 -08006221 packageUid, packageName, featureId,
Riddle Hsu591bf612019-02-14 17:55:31 +08006222 intents, resolvedTypes, null /* resultTo */,
6223 SafeActivityOptions.fromBundle(bOptions), userId,
6224 false /* validateIncomingUser */, null /* originatingPendingIntent */,
6225 false /* allowBackgroundActivityStart */);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006226 }
6227
6228 @Override
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006229 public int startActivitiesInPackage(int uid, int realCallingPid, int realCallingUid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006230 String callingPackage, @Nullable String callingFeatureId, Intent[] intents,
6231 String[] resolvedTypes, IBinder resultTo, SafeActivityOptions options, int userId,
6232 boolean validateIncomingUser, PendingIntentRecord originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006233 boolean allowBackgroundActivityStart) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07006234 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006235 synchronized (mGlobalLock) {
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006236 return getActivityStartController().startActivitiesInPackage(uid, realCallingPid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006237 realCallingUid, callingPackage, callingFeatureId, intents, resolvedTypes,
6238 resultTo, options, userId, validateIncomingUser, originatingPendingIntent,
Michal Karpinski84d9ebd2019-01-17 18:28:59 +00006239 allowBackgroundActivityStart);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006240 }
6241 }
6242
6243 @Override
6244 public int startActivityInPackage(int uid, int realCallingPid, int realCallingUid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006245 String callingPackage, @Nullable String callingFeatureId, Intent intent,
6246 String resolvedType, IBinder resultTo, String resultWho, int requestCode,
6247 int startFlags, SafeActivityOptions options, int userId, Task inTask, String reason,
6248 boolean validateIncomingUser, PendingIntentRecord originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006249 boolean allowBackgroundActivityStart) {
Andrii Kulianf9e5c9f2019-07-16 11:24:45 -07006250 assertPackageMatchesCallingUid(callingPackage);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006251 synchronized (mGlobalLock) {
6252 return getActivityStartController().startActivityInPackage(uid, realCallingPid,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006253 realCallingUid, callingPackage, callingFeatureId, intent, resolvedType,
6254 resultTo, resultWho, requestCode, startFlags, options, userId, inTask,
6255 reason, validateIncomingUser, originatingPendingIntent,
Michal Karpinskiac116df2018-12-10 17:51:42 +00006256 allowBackgroundActivityStart);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006257 }
6258 }
6259
6260 @Override
Philip P. Moltmannee295092020-02-10 08:46:26 -08006261 public int startActivityAsUser(IApplicationThread caller, String callerPackage,
6262 @Nullable String callerFeatureId, Intent intent, Bundle options, int userId) {
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006263 return ActivityTaskManagerService.this.startActivityAsUser(
Philip P. Moltmannee295092020-02-10 08:46:26 -08006264 caller, callerPackage, callerFeatureId, intent,
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006265 intent.resolveTypeIfNeeded(mContext.getContentResolver()),
6266 null, null, 0, Intent.FLAG_ACTIVITY_NEW_TASK, null, options, userId,
6267 false /*validateIncomingUser*/);
6268 }
6269
6270 @Override
lumark588a3e82018-07-20 18:53:54 +08006271 public void notifyKeyguardFlagsChanged(@Nullable Runnable callback, int displayId) {
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006272 synchronized (mGlobalLock) {
6273
6274 // We might change the visibilities here, so prepare an empty app transition which
6275 // might be overridden later if we actually change visibilities.
Louis Chang677921f2019-12-06 16:44:24 +08006276 final DisplayContent displayContent =
Louis Chang149d5c82019-12-30 09:47:39 +08006277 mRootWindowContainer.getDisplayContent(displayId);
Louis Chang677921f2019-12-06 16:44:24 +08006278 if (displayContent == null) {
lumark52ea28e2018-11-09 17:30:47 +08006279 return;
6280 }
Louis Chang677921f2019-12-06 16:44:24 +08006281 final DisplayContent dc = displayContent.mDisplayContent;
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006282 final boolean wasTransitionSet =
6283 dc.mAppTransition.getAppTransition() != TRANSIT_NONE;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006284 if (!wasTransitionSet) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006285 dc.prepareAppTransition(TRANSIT_NONE, false /* alwaysKeepCurrent */);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006286 }
Louis Chang149d5c82019-12-30 09:47:39 +08006287 mRootWindowContainer.ensureActivitiesVisible(null, 0, !PRESERVE_WINDOWS);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006288
6289 // If there was a transition set already we don't want to interfere with it as we
6290 // might be starting it too early.
6291 if (!wasTransitionSet) {
Wale Ogunwale3a256e62018-12-06 14:41:18 -08006292 dc.executeAppTransition();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006293 }
6294 }
6295 if (callback != null) {
6296 callback.run();
6297 }
6298 }
6299
6300 @Override
6301 public void notifyKeyguardTrustedChanged() {
6302 synchronized (mGlobalLock) {
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006303 if (mKeyguardController.isKeyguardShowing(DEFAULT_DISPLAY)) {
Louis Chang149d5c82019-12-30 09:47:39 +08006304 mRootWindowContainer.ensureActivitiesVisible(null, 0, !PRESERVE_WINDOWS);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006305 }
6306 }
6307 }
6308
6309 /**
6310 * Called after virtual display Id is updated by
6311 * {@link com.android.server.vr.Vr2dDisplay} with a specific
6312 * {@param vrVr2dDisplayId}.
6313 */
6314 @Override
6315 public void setVr2dDisplayId(int vr2dDisplayId) {
6316 if (DEBUG_STACK) Slog.d(TAG, "setVr2dDisplayId called for: " + vr2dDisplayId);
6317 synchronized (mGlobalLock) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006318 mVr2dDisplayId = vr2dDisplayId;
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006319 }
6320 }
6321
6322 @Override
6323 public void setFocusedActivity(IBinder token) {
6324 synchronized (mGlobalLock) {
6325 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
6326 if (r == null) {
6327 throw new IllegalArgumentException(
6328 "setFocusedActivity: No activity record matching token=" + token);
6329 }
Louis Chang19443452018-10-09 12:10:21 +08006330 if (r.moveFocusableActivityToTop("setFocusedActivity")) {
Louis Chang149d5c82019-12-30 09:47:39 +08006331 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006332 }
6333 }
6334 }
6335
6336 @Override
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006337 public void registerScreenObserver(ScreenObserver observer) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006338 mScreenObservers.add(observer);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006339 }
6340
6341 @Override
6342 public boolean isCallerRecents(int callingUid) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07006343 return getRecentTasks().isCallerRecents(callingUid);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006344 }
6345
6346 @Override
6347 public boolean isRecentsComponentHomeActivity(int userId) {
Wale Ogunwale16e505a2018-05-07 15:00:49 -07006348 return getRecentTasks().isRecentsComponentHomeActivity(userId);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006349 }
6350
6351 @Override
6352 public void cancelRecentsAnimation(boolean restoreHomeStackPosition) {
6353 ActivityTaskManagerService.this.cancelRecentsAnimation(restoreHomeStackPosition);
6354 }
6355
6356 @Override
6357 public void enforceCallerIsRecentsOrHasPermission(String permission, String func) {
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006358 ActivityTaskManagerService.this.enforceCallerIsRecentsOrHasPermission(permission, func);
Wale Ogunwale6767eae2018-05-03 15:52:51 -07006359 }
Wale Ogunwaled0412b32018-05-08 09:25:50 -07006360
6361 @Override
6362 public void notifyActiveVoiceInteractionServiceChanged(ComponentName component) {
6363 synchronized (mGlobalLock) {
6364 mActiveVoiceInteractionServiceComponent = component;
6365 }
6366 }
Wale Ogunwalea6191b42018-05-09 07:41:32 -07006367
6368 @Override
6369 public void setAllowAppSwitches(@NonNull String type, int uid, int userId) {
6370 if (!mAmInternal.isUserRunning(userId, ActivityManager.FLAG_OR_STOPPED)) {
6371 return;
6372 }
6373 synchronized (mGlobalLock) {
6374 ArrayMap<String, Integer> types = mAllowAppSwitchUids.get(userId);
6375 if (types == null) {
6376 if (uid < 0) {
6377 return;
6378 }
6379 types = new ArrayMap<>();
6380 mAllowAppSwitchUids.put(userId, types);
6381 }
6382 if (uid < 0) {
6383 types.remove(type);
6384 } else {
6385 types.put(type, uid);
6386 }
6387 }
6388 }
6389
6390 @Override
6391 public void onUserStopped(int userId) {
6392 synchronized (mGlobalLock) {
6393 getRecentTasks().unloadUserDataFromMemoryLocked(userId);
6394 mAllowAppSwitchUids.remove(userId);
6395 }
6396 }
6397
6398 @Override
6399 public boolean isGetTasksAllowed(String caller, int callingPid, int callingUid) {
6400 synchronized (mGlobalLock) {
6401 return ActivityTaskManagerService.this.isGetTasksAllowed(
6402 caller, callingPid, callingUid);
6403 }
6404 }
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006405
Riddle Hsua0536432019-02-16 00:38:59 +08006406 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006407 @Override
6408 public void onProcessAdded(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006409 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006410 mProcessNames.put(proc.mName, proc.mUid, proc);
6411 }
6412 }
6413
Riddle Hsua0536432019-02-16 00:38:59 +08006414 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006415 @Override
6416 public void onProcessRemoved(String name, int uid) {
Riddle Hsua0536432019-02-16 00:38:59 +08006417 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006418 mProcessNames.remove(name, uid);
6419 }
6420 }
6421
Riddle Hsua0536432019-02-16 00:38:59 +08006422 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006423 @Override
6424 public void onCleanUpApplicationRecord(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006425 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -07006426 if (proc == mHomeProcess) {
6427 mHomeProcess = null;
6428 }
6429 if (proc == mPreviousProcess) {
6430 mPreviousProcess = null;
6431 }
6432 }
6433 }
Wale Ogunwalef6733932018-06-27 05:14:34 -07006434
Riddle Hsua0536432019-02-16 00:38:59 +08006435 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalef6733932018-06-27 05:14:34 -07006436 @Override
6437 public int getTopProcessState() {
Riddle Hsua0536432019-02-16 00:38:59 +08006438 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006439 return mTopProcessState;
6440 }
6441 }
6442
Riddle Hsua0536432019-02-16 00:38:59 +08006443 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalef6733932018-06-27 05:14:34 -07006444 @Override
Wale Ogunwale53783742018-09-16 10:21:51 -07006445 public boolean isHeavyWeightProcess(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006446 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006447 return proc == mHeavyWeightProcess;
6448 }
6449 }
6450
Riddle Hsua0536432019-02-16 00:38:59 +08006451 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale53783742018-09-16 10:21:51 -07006452 @Override
6453 public void clearHeavyWeightProcessIfEquals(WindowProcessController proc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006454 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006455 ActivityTaskManagerService.this.clearHeavyWeightProcessIfEquals(proc);
6456 }
6457 }
6458
6459 @Override
6460 public void finishHeavyWeightApp() {
6461 synchronized (mGlobalLock) {
Sudheer Shankaee1da272018-10-20 20:11:44 -07006462 if (mHeavyWeightProcess != null) {
6463 mHeavyWeightProcess.finishActivities();
6464 }
Wale Ogunwale53783742018-09-16 10:21:51 -07006465 ActivityTaskManagerService.this.clearHeavyWeightProcessIfEquals(
6466 mHeavyWeightProcess);
6467 }
6468 }
6469
Riddle Hsua0536432019-02-16 00:38:59 +08006470 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale53783742018-09-16 10:21:51 -07006471 @Override
Wale Ogunwalef6733932018-06-27 05:14:34 -07006472 public boolean isSleeping() {
Riddle Hsua0536432019-02-16 00:38:59 +08006473 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwalef6733932018-06-27 05:14:34 -07006474 return isSleepingLocked();
6475 }
6476 }
6477
6478 @Override
6479 public boolean isShuttingDown() {
6480 synchronized (mGlobalLock) {
6481 return mShuttingDown;
6482 }
6483 }
6484
6485 @Override
6486 public boolean shuttingDown(boolean booted, int timeout) {
6487 synchronized (mGlobalLock) {
6488 mShuttingDown = true;
Louis Chang149d5c82019-12-30 09:47:39 +08006489 mRootWindowContainer.prepareForShutdown();
Wale Ogunwalef6733932018-06-27 05:14:34 -07006490 updateEventDispatchingLocked(booted);
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07006491 notifyTaskPersisterLocked(null, true);
Wale Ogunwalef6733932018-06-27 05:14:34 -07006492 return mStackSupervisor.shutdownLocked(timeout);
6493 }
6494 }
6495
6496 @Override
6497 public void enableScreenAfterBoot(boolean booted) {
6498 synchronized (mGlobalLock) {
Jeff Changd136e772019-11-05 20:33:52 +08006499 writeBootProgressEnableScreen(SystemClock.uptimeMillis());
Wale Ogunwalef6733932018-06-27 05:14:34 -07006500 mWindowManager.enableScreenAfterBoot();
6501 updateEventDispatchingLocked(booted);
6502 }
6503 }
6504
6505 @Override
6506 public boolean showStrictModeViolationDialog() {
6507 synchronized (mGlobalLock) {
6508 return mShowDialogs && !mSleeping && !mShuttingDown;
6509 }
6510 }
6511
6512 @Override
6513 public void showSystemReadyErrorDialogsIfNeeded() {
6514 synchronized (mGlobalLock) {
6515 try {
6516 if (AppGlobals.getPackageManager().hasSystemUidErrors()) {
6517 Slog.e(TAG, "UIDs on the system are inconsistent, you need to wipe your"
6518 + " data partition or your device will be unstable.");
6519 mUiHandler.post(() -> {
6520 if (mShowDialogs) {
6521 AlertDialog d = new BaseErrorDialog(mUiContext);
6522 d.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
6523 d.setCancelable(false);
6524 d.setTitle(mUiContext.getText(R.string.android_system_label));
6525 d.setMessage(mUiContext.getText(R.string.system_error_wipe_data));
6526 d.setButton(DialogInterface.BUTTON_POSITIVE,
6527 mUiContext.getText(R.string.ok),
6528 mUiHandler.obtainMessage(DISMISS_DIALOG_UI_MSG, d));
6529 d.show();
6530 }
6531 });
6532 }
6533 } catch (RemoteException e) {
6534 }
6535
6536 if (!Build.isBuildConsistent()) {
6537 Slog.e(TAG, "Build fingerprint is not consistent, warning user");
6538 mUiHandler.post(() -> {
6539 if (mShowDialogs) {
6540 AlertDialog d = new BaseErrorDialog(mUiContext);
6541 d.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ERROR);
6542 d.setCancelable(false);
6543 d.setTitle(mUiContext.getText(R.string.android_system_label));
6544 d.setMessage(mUiContext.getText(R.string.system_error_manufacturer));
6545 d.setButton(DialogInterface.BUTTON_POSITIVE,
6546 mUiContext.getText(R.string.ok),
6547 mUiHandler.obtainMessage(DISMISS_DIALOG_UI_MSG, d));
6548 d.show();
6549 }
6550 });
6551 }
6552 }
6553 }
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006554
6555 @Override
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006556 public void onProcessMapped(int pid, WindowProcessController proc) {
6557 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006558 mProcessMap.put(pid, proc);
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006559 }
6560 }
6561
6562 @Override
6563 public void onProcessUnMapped(int pid) {
6564 synchronized (mGlobalLock) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006565 mProcessMap.remove(pid);
Wale Ogunwale906f9c62018-07-23 11:23:44 -07006566 }
6567 }
Wale Ogunwale008163e2018-07-23 23:11:08 -07006568
6569 @Override
6570 public void onPackageDataCleared(String name) {
6571 synchronized (mGlobalLock) {
Wale Ogunwale53783742018-09-16 10:21:51 -07006572 mCompatModePackages.handlePackageDataClearedLocked(name);
Wale Ogunwale008163e2018-07-23 23:11:08 -07006573 mAppWarnings.onPackageDataCleared(name);
6574 }
6575 }
6576
6577 @Override
6578 public void onPackageUninstalled(String name) {
6579 synchronized (mGlobalLock) {
6580 mAppWarnings.onPackageUninstalled(name);
Wale Ogunwale53783742018-09-16 10:21:51 -07006581 mCompatModePackages.handlePackageUninstalledLocked(name);
Wale Ogunwale008163e2018-07-23 23:11:08 -07006582 }
6583 }
Wale Ogunwale53783742018-09-16 10:21:51 -07006584
6585 @Override
6586 public void onPackageAdded(String name, boolean replacing) {
6587 synchronized (mGlobalLock) {
6588 mCompatModePackages.handlePackageAddedLocked(name, replacing);
6589 }
6590 }
6591
6592 @Override
Wale Ogunwale31913b52018-10-13 08:29:31 -07006593 public void onPackageReplaced(ApplicationInfo aInfo) {
6594 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006595 mRootWindowContainer.updateActivityApplicationInfo(aInfo);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006596 }
6597 }
6598
6599 @Override
Wale Ogunwale53783742018-09-16 10:21:51 -07006600 public CompatibilityInfo compatibilityInfoForPackage(ApplicationInfo ai) {
6601 synchronized (mGlobalLock) {
6602 return compatibilityInfoForPackageLocked(ai);
6603 }
6604 }
6605
Yunfan Chen75157d72018-07-27 14:47:21 +09006606 /**
6607 * Set the corresponding display information for the process global configuration. To be
6608 * called when we need to show IME on a different display.
6609 *
6610 * @param pid The process id associated with the IME window.
6611 * @param displayId The ID of the display showing the IME.
6612 */
6613 @Override
Yunfan Chen79b96062018-10-17 12:45:23 -07006614 public void onImeWindowSetOnDisplay(final int pid, final int displayId) {
lumark48973532019-04-12 20:18:15 +08006615 // Don't update process-level configuration for Multi-Client IME process since other
6616 // IMEs on other displays will also receive this configuration change due to IME
6617 // services use the same application config/context.
6618 if (InputMethodSystemProperty.MULTI_CLIENT_IME_ENABLED) return;
lumark5df49512019-04-02 14:56:46 +08006619
Yunfan Chen75157d72018-07-27 14:47:21 +09006620 if (pid == MY_PID || pid < 0) {
6621 if (DEBUG_CONFIGURATION) {
6622 Slog.w(TAG,
6623 "Trying to update display configuration for system/invalid process.");
6624 }
6625 return;
6626 }
Yunfan Chencafc7062019-01-22 17:21:32 +09006627 synchronized (mGlobalLock) {
Louis Chang677921f2019-12-06 16:44:24 +08006628 final DisplayContent displayContent =
Louis Chang149d5c82019-12-30 09:47:39 +08006629 mRootWindowContainer.getDisplayContent(displayId);
Louis Chang677921f2019-12-06 16:44:24 +08006630 if (displayContent == null) {
Yunfan Chencafc7062019-01-22 17:21:32 +09006631 // Call might come when display is not yet added or has been removed.
6632 if (DEBUG_CONFIGURATION) {
6633 Slog.w(TAG, "Trying to update display configuration for non-existing "
6634 + "displayId=" + displayId);
Yunfan Chen75157d72018-07-27 14:47:21 +09006635 }
Yunfan Chencafc7062019-01-22 17:21:32 +09006636 return;
Yunfan Chen75157d72018-07-27 14:47:21 +09006637 }
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006638 final WindowProcessController process = mProcessMap.getProcess(pid);
Yunfan Chencafc7062019-01-22 17:21:32 +09006639 if (process == null) {
6640 if (DEBUG_CONFIGURATION) {
6641 Slog.w(TAG, "Trying to update display configuration for invalid "
6642 + "process, pid=" + pid);
6643 }
6644 return;
6645 }
lumarkddc77fb2019-06-27 22:22:23 +08006646 process.mIsImeProcess = true;
Andrii Kulianfa23a9e2019-10-10 15:15:36 -07006647 process.registerDisplayConfigurationListener(displayContent);
Yunfan Chencafc7062019-01-22 17:21:32 +09006648 }
Yunfan Chen75157d72018-07-27 14:47:21 +09006649 }
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006650
6651 @Override
6652 public void sendActivityResult(int callingUid, IBinder activityToken, String resultWho,
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00006653 int requestCode, int resultCode, Intent data) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006654 synchronized (mGlobalLock) {
Wale Ogunwale586a8ee2019-06-04 13:44:14 +00006655 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
Wale Ogunwale1ebcd8e2020-01-21 11:27:03 -08006656 if (r != null && r.getRootTask() != null) {
Andrii Kulian79d67982019-08-19 11:56:16 -07006657 r.sendResult(callingUid, resultWho, requestCode, resultCode, data);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006658 }
6659 }
6660 }
6661
6662 @Override
6663 public void clearPendingResultForActivity(IBinder activityToken,
6664 WeakReference<PendingIntentRecord> pir) {
6665 synchronized (mGlobalLock) {
6666 final ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
6667 if (r != null && r.pendingResults != null) {
6668 r.pendingResults.remove(pir);
6669 }
6670 }
6671 }
6672
6673 @Override
Sunny Goyald40c3452019-03-20 12:46:55 -07006674 public ActivityTokens getTopActivityForTask(int taskId) {
6675 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006676 final Task task = mRootWindowContainer.anyTaskForId(taskId);
Louis Changcdec0802019-11-11 11:45:07 +08006677 if (task == null) {
Sunny Goyald40c3452019-03-20 12:46:55 -07006678 Slog.w(TAG, "getApplicationThreadForTopActivity failed:"
6679 + " Requested task not found");
6680 return null;
6681 }
Wale Ogunwale21e06482019-11-18 05:14:15 -08006682 final ActivityRecord activity = task.getTopNonFinishingActivity();
Sunny Goyald40c3452019-03-20 12:46:55 -07006683 if (activity == null) {
6684 Slog.w(TAG, "getApplicationThreadForTopActivity failed:"
6685 + " Requested activity not found");
6686 return null;
6687 }
6688 if (!activity.attachedToProcess()) {
6689 Slog.w(TAG, "getApplicationThreadForTopActivity failed: No process for "
6690 + activity);
6691 return null;
6692 }
6693 return new ActivityTokens(activity.appToken, activity.assistToken,
6694 activity.app.getThread());
6695 }
6696 }
6697
6698 @Override
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006699 public IIntentSender getIntentSender(int type, String packageName,
Philip P. Moltmannee295092020-02-10 08:46:26 -08006700 @Nullable String featureId, int callingUid, int userId, IBinder token,
6701 String resultWho, int requestCode, Intent[] intents, String[] resolvedTypes,
6702 int flags, Bundle bOptions) {
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006703 synchronized (mGlobalLock) {
Philip P. Moltmannee295092020-02-10 08:46:26 -08006704 return getIntentSenderLocked(type, packageName, featureId, callingUid, userId,
6705 token, resultWho, requestCode, intents, resolvedTypes, flags, bOptions);
Wale Ogunwaleee6eca12018-09-19 20:37:53 -07006706 }
6707 }
Wale Ogunwalec4e63a42018-10-02 13:19:54 -07006708
6709 @Override
6710 public ActivityServiceConnectionsHolder getServiceConnectionsHolder(IBinder token) {
6711 synchronized (mGlobalLock) {
6712 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
6713 if (r == null) {
6714 return null;
6715 }
6716 if (r.mServiceConnectionsHolder == null) {
6717 r.mServiceConnectionsHolder = new ActivityServiceConnectionsHolder(
6718 ActivityTaskManagerService.this, r);
6719 }
6720
6721 return r.mServiceConnectionsHolder;
6722 }
6723 }
Wale Ogunwale214f3482018-10-04 11:00:47 -07006724
6725 @Override
6726 public Intent getHomeIntent() {
6727 synchronized (mGlobalLock) {
6728 return ActivityTaskManagerService.this.getHomeIntent();
6729 }
6730 }
6731
6732 @Override
6733 public boolean startHomeActivity(int userId, String reason) {
6734 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006735 return mRootWindowContainer.startHomeOnDisplay(userId, reason, DEFAULT_DISPLAY);
Louis Chang89f43fc2018-10-05 10:59:14 +08006736 }
6737 }
6738
6739 @Override
Chilun8b1f1be2019-03-13 17:14:36 +08006740 public boolean startHomeOnDisplay(int userId, String reason, int displayId,
Chilun39232092019-03-22 14:41:30 +08006741 boolean allowInstrumenting, boolean fromHomeKey) {
Chilun5fd56542019-03-21 19:51:37 +08006742 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006743 return mRootWindowContainer.startHomeOnDisplay(userId, reason, displayId,
Chilun39232092019-03-22 14:41:30 +08006744 allowInstrumenting, fromHomeKey);
Chilun5fd56542019-03-21 19:51:37 +08006745 }
Chilun8b1f1be2019-03-13 17:14:36 +08006746 }
6747
6748 @Override
Louis Chang89f43fc2018-10-05 10:59:14 +08006749 public boolean startHomeOnAllDisplays(int userId, String reason) {
6750 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006751 return mRootWindowContainer.startHomeOnAllDisplays(userId, reason);
Wale Ogunwale214f3482018-10-04 11:00:47 -07006752 }
6753 }
6754
Riddle Hsua0536432019-02-16 00:38:59 +08006755 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale214f3482018-10-04 11:00:47 -07006756 @Override
6757 public boolean isFactoryTestProcess(WindowProcessController wpc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006758 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale214f3482018-10-04 11:00:47 -07006759 if (mFactoryTest == FACTORY_TEST_OFF) {
6760 return false;
6761 }
6762 if (mFactoryTest == FACTORY_TEST_LOW_LEVEL && mTopComponent != null
6763 && wpc.mName.equals(mTopComponent.getPackageName())) {
6764 return true;
6765 }
6766 return mFactoryTest == FACTORY_TEST_HIGH_LEVEL
6767 && (wpc.mInfo.flags & FLAG_FACTORY_TEST) != 0;
6768 }
6769 }
6770
6771 @Override
6772 public void updateTopComponentForFactoryTest() {
6773 synchronized (mGlobalLock) {
6774 if (mFactoryTest != FACTORY_TEST_LOW_LEVEL) {
6775 return;
6776 }
6777 final ResolveInfo ri = mContext.getPackageManager()
6778 .resolveActivity(new Intent(Intent.ACTION_FACTORY_TEST), STOCK_PM_FLAGS);
6779 final CharSequence errorMsg;
6780 if (ri != null) {
6781 final ActivityInfo ai = ri.activityInfo;
6782 final ApplicationInfo app = ai.applicationInfo;
6783 if ((app.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
6784 mTopAction = Intent.ACTION_FACTORY_TEST;
6785 mTopData = null;
6786 mTopComponent = new ComponentName(app.packageName, ai.name);
6787 errorMsg = null;
6788 } else {
6789 errorMsg = mContext.getResources().getText(
6790 com.android.internal.R.string.factorytest_not_system);
6791 }
6792 } else {
6793 errorMsg = mContext.getResources().getText(
6794 com.android.internal.R.string.factorytest_no_action);
6795 }
6796 if (errorMsg == null) {
6797 return;
6798 }
6799
6800 mTopAction = null;
6801 mTopData = null;
6802 mTopComponent = null;
6803 mUiHandler.post(() -> {
6804 Dialog d = new FactoryErrorDialog(mUiContext, errorMsg);
6805 d.show();
Wale Ogunwale342fbe92018-10-09 08:44:10 -07006806 mAmInternal.ensureBootCompleted();
Wale Ogunwale214f3482018-10-04 11:00:47 -07006807 });
6808 }
6809 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006810
Riddle Hsua0536432019-02-16 00:38:59 +08006811 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006812 @Override
6813 public void handleAppDied(WindowProcessController wpc, boolean restarting,
6814 Runnable finishInstrumentationCallback) {
Riddle Hsua0536432019-02-16 00:38:59 +08006815 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07006816 // Remove this application's activities from active lists.
Louis Chang149d5c82019-12-30 09:47:39 +08006817 boolean hasVisibleActivities = mRootWindowContainer.handleAppDied(wpc);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006818
6819 wpc.clearRecentTasks();
6820 wpc.clearActivities();
6821
6822 if (wpc.isInstrumenting()) {
6823 finishInstrumentationCallback.run();
6824 }
6825
Jorim Jaggid0752812018-10-16 16:07:20 +02006826 if (!restarting && hasVisibleActivities) {
Riddle Hsua0022cd2019-09-09 21:12:41 +08006827 deferWindowLayout();
Jorim Jaggid0752812018-10-16 16:07:20 +02006828 try {
Louis Chang149d5c82019-12-30 09:47:39 +08006829 if (!mRootWindowContainer.resumeFocusedStacksTopActivities()) {
Jorim Jaggid0752812018-10-16 16:07:20 +02006830 // If there was nothing to resume, and we are not already restarting
6831 // this process, but there is a visible activity that is hosted by the
6832 // process...then make sure all visible activities are running, taking
6833 // care of restarting this process.
Louis Chang149d5c82019-12-30 09:47:39 +08006834 mRootWindowContainer.ensureActivitiesVisible(null, 0,
Jorim Jaggid0752812018-10-16 16:07:20 +02006835 !PRESERVE_WINDOWS);
6836 }
6837 } finally {
Riddle Hsua0022cd2019-09-09 21:12:41 +08006838 continueWindowLayout();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006839 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006840 }
6841 }
6842 }
6843
6844 @Override
6845 public void closeSystemDialogs(String reason) {
6846 enforceNotIsolatedCaller("closeSystemDialogs");
6847
6848 final int pid = Binder.getCallingPid();
6849 final int uid = Binder.getCallingUid();
6850 final long origId = Binder.clearCallingIdentity();
6851 try {
6852 synchronized (mGlobalLock) {
6853 // Only allow this from foreground processes, so that background
6854 // applications can't abuse it to prevent system UI from being shown.
6855 if (uid >= FIRST_APPLICATION_UID) {
Michal Karpinski2e0aad22019-04-12 16:22:55 +01006856 final WindowProcessController proc = mProcessMap.getProcess(pid);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006857 if (!proc.isPerceptible()) {
6858 Slog.w(TAG, "Ignoring closeSystemDialogs " + reason
6859 + " from background process " + proc);
6860 return;
6861 }
6862 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006863 mWindowManager.closeSystemDialogs(reason);
6864
Louis Chang149d5c82019-12-30 09:47:39 +08006865 mRootWindowContainer.closeSystemDialogs();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006866 }
Wale Ogunwale2ea36d42018-10-18 10:27:31 -07006867 // Call into AM outside the synchronized block.
6868 mAmInternal.broadcastCloseSystemDialogs(reason);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006869 } finally {
6870 Binder.restoreCallingIdentity(origId);
6871 }
6872 }
6873
6874 @Override
6875 public void cleanupDisabledPackageComponents(
6876 String packageName, Set<String> disabledClasses, int userId, boolean booted) {
6877 synchronized (mGlobalLock) {
6878 // Clean-up disabled activities.
Louis Chang149d5c82019-12-30 09:47:39 +08006879 if (mRootWindowContainer.finishDisabledPackageActivities(
Wale Ogunwale31913b52018-10-13 08:29:31 -07006880 packageName, disabledClasses, true, false, userId) && booted) {
Louis Chang149d5c82019-12-30 09:47:39 +08006881 mRootWindowContainer.resumeFocusedStacksTopActivities();
Riddle Hsufc8ab262019-12-31 15:31:24 +08006882 mStackSupervisor.scheduleIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006883 }
6884
6885 // Clean-up disabled tasks
6886 getRecentTasks().cleanupDisabledPackageTasksLocked(
6887 packageName, disabledClasses, userId);
6888 }
6889 }
6890
6891 @Override
6892 public boolean onForceStopPackage(String packageName, boolean doit, boolean evenPersistent,
6893 int userId) {
6894 synchronized (mGlobalLock) {
6895
6896 boolean didSomething =
6897 getActivityStartController().clearPendingActivityLaunches(packageName);
Louis Chang149d5c82019-12-30 09:47:39 +08006898 didSomething |= mRootWindowContainer.finishDisabledPackageActivities(packageName,
Wale Ogunwale31913b52018-10-13 08:29:31 -07006899 null, doit, evenPersistent, userId);
6900 return didSomething;
6901 }
6902 }
6903
6904 @Override
6905 public void resumeTopActivities(boolean scheduleIdle) {
6906 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08006907 mRootWindowContainer.resumeFocusedStacksTopActivities();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006908 if (scheduleIdle) {
Riddle Hsufc8ab262019-12-31 15:31:24 +08006909 mStackSupervisor.scheduleIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006910 }
6911 }
6912 }
6913
Riddle Hsua0536432019-02-16 00:38:59 +08006914 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006915 @Override
6916 public void preBindApplication(WindowProcessController wpc) {
Riddle Hsua0536432019-02-16 00:38:59 +08006917 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07006918 mStackSupervisor.getActivityMetricsLogger().notifyBindApplication(wpc.mInfo);
6919 }
6920 }
6921
Riddle Hsua0536432019-02-16 00:38:59 +08006922 @HotPath(caller = HotPath.PROCESS_CHANGE)
Wale Ogunwale31913b52018-10-13 08:29:31 -07006923 @Override
6924 public boolean attachApplication(WindowProcessController wpc) throws RemoteException {
Riddle Hsua0536432019-02-16 00:38:59 +08006925 synchronized (mGlobalLockWithoutBoost) {
Riddle Hsu2ca561b2019-10-08 21:58:58 +08006926 if (Trace.isTagEnabled(TRACE_TAG_WINDOW_MANAGER)) {
6927 Trace.traceBegin(TRACE_TAG_WINDOW_MANAGER, "attachApplication:" + wpc.mName);
6928 }
6929 try {
Louis Chang149d5c82019-12-30 09:47:39 +08006930 return mRootWindowContainer.attachApplication(wpc);
Riddle Hsu2ca561b2019-10-08 21:58:58 +08006931 } finally {
6932 Trace.traceEnd(TRACE_TAG_WINDOW_MANAGER);
6933 }
Wale Ogunwale31913b52018-10-13 08:29:31 -07006934 }
6935 }
6936
6937 @Override
6938 public void notifyLockedProfile(@UserIdInt int userId, int currentUserId) {
6939 try {
6940 if (!AppGlobals.getPackageManager().isUidPrivileged(Binder.getCallingUid())) {
6941 throw new SecurityException("Only privileged app can call notifyLockedProfile");
6942 }
6943 } catch (RemoteException ex) {
6944 throw new SecurityException("Fail to check is caller a privileged app", ex);
6945 }
6946
6947 synchronized (mGlobalLock) {
6948 final long ident = Binder.clearCallingIdentity();
6949 try {
6950 if (mAmInternal.shouldConfirmCredentials(userId)) {
6951 if (mKeyguardController.isKeyguardLocked()) {
6952 // Showing launcher to avoid user entering credential twice.
6953 startHomeActivity(currentUserId, "notifyLockedProfile");
6954 }
Louis Chang149d5c82019-12-30 09:47:39 +08006955 mRootWindowContainer.lockAllProfileTasks(userId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006956 }
6957 } finally {
6958 Binder.restoreCallingIdentity(ident);
6959 }
6960 }
6961 }
6962
6963 @Override
6964 public void startConfirmDeviceCredentialIntent(Intent intent, Bundle options) {
6965 mAmInternal.enforceCallingPermission(
6966 MANAGE_ACTIVITY_STACKS, "startConfirmDeviceCredentialIntent");
6967
6968 synchronized (mGlobalLock) {
6969 final long ident = Binder.clearCallingIdentity();
6970 try {
Pavel Grafovc0fe0a02019-05-13 18:19:33 +01006971 intent.addFlags(FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
6972 final ActivityOptions activityOptions = options != null
Wale Ogunwale31913b52018-10-13 08:29:31 -07006973 ? new ActivityOptions(options) : ActivityOptions.makeBasic();
Wale Ogunwale31913b52018-10-13 08:29:31 -07006974 mContext.startActivityAsUser(intent, activityOptions.toBundle(),
6975 UserHandle.CURRENT);
6976 } finally {
6977 Binder.restoreCallingIdentity(ident);
6978 }
6979 }
6980 }
6981
6982 @Override
6983 public void writeActivitiesToProto(ProtoOutputStream proto) {
6984 synchronized (mGlobalLock) {
6985 // The output proto of "activity --proto activities"
Wale Ogunwalef342f062020-01-27 07:34:13 -08006986 mRootWindowContainer.dumpDebug(
6987 proto, ROOT_WINDOW_CONTAINER, WindowTraceLogLevel.ALL);
Wale Ogunwale31913b52018-10-13 08:29:31 -07006988 }
6989 }
6990
6991 @Override
6992 public void saveANRState(String reason) {
6993 synchronized (mGlobalLock) {
6994 final StringWriter sw = new StringWriter();
6995 final PrintWriter pw = new FastPrintWriter(sw, false, 1024);
6996 pw.println(" ANR time: " + DateFormat.getDateTimeInstance().format(new Date()));
6997 if (reason != null) {
6998 pw.println(" Reason: " + reason);
6999 }
7000 pw.println();
7001 getActivityStartController().dump(pw, " ", null);
7002 pw.println();
7003 pw.println("-------------------------------------------------------------------------------");
7004 dumpActivitiesLocked(null /* fd */, pw, null /* args */, 0 /* opti */,
7005 true /* dumpAll */, false /* dumpClient */, null /* dumpPackage */,
7006 "" /* header */);
7007 pw.println();
7008 pw.close();
7009
7010 mLastANRState = sw.toString();
7011 }
7012 }
7013
7014 @Override
7015 public void clearSavedANRState() {
7016 synchronized (mGlobalLock) {
7017 mLastANRState = null;
7018 }
7019 }
7020
7021 @Override
7022 public void dump(String cmd, FileDescriptor fd, PrintWriter pw, String[] args, int opti,
7023 boolean dumpAll, boolean dumpClient, String dumpPackage) {
7024 synchronized (mGlobalLock) {
7025 if (DUMP_ACTIVITIES_CMD.equals(cmd) || DUMP_ACTIVITIES_SHORT_CMD.equals(cmd)) {
7026 dumpActivitiesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage);
7027 } else if (DUMP_LASTANR_CMD.equals(cmd)) {
7028 dumpLastANRLocked(pw);
7029 } else if (DUMP_LASTANR_TRACES_CMD.equals(cmd)) {
7030 dumpLastANRTracesLocked(pw);
7031 } else if (DUMP_STARTER_CMD.equals(cmd)) {
7032 dumpActivityStarterLocked(pw, dumpPackage);
7033 } else if (DUMP_CONTAINERS_CMD.equals(cmd)) {
7034 dumpActivityContainersLocked(pw);
7035 } else if (DUMP_RECENTS_CMD.equals(cmd) || DUMP_RECENTS_SHORT_CMD.equals(cmd)) {
7036 if (getRecentTasks() != null) {
7037 getRecentTasks().dump(pw, dumpAll, dumpPackage);
7038 }
7039 }
7040 }
7041 }
7042
7043 @Override
7044 public boolean dumpForProcesses(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
7045 String dumpPackage, int dumpAppId, boolean needSep, boolean testPssMode,
7046 int wakefulness) {
7047 synchronized (mGlobalLock) {
7048 if (mHomeProcess != null && (dumpPackage == null
7049 || mHomeProcess.mPkgList.contains(dumpPackage))) {
7050 if (needSep) {
7051 pw.println();
7052 needSep = false;
7053 }
7054 pw.println(" mHomeProcess: " + mHomeProcess);
7055 }
7056 if (mPreviousProcess != null && (dumpPackage == null
7057 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
7058 if (needSep) {
7059 pw.println();
7060 needSep = false;
7061 }
7062 pw.println(" mPreviousProcess: " + mPreviousProcess);
7063 }
7064 if (dumpAll && (mPreviousProcess == null || dumpPackage == null
7065 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
7066 StringBuilder sb = new StringBuilder(128);
7067 sb.append(" mPreviousProcessVisibleTime: ");
7068 TimeUtils.formatDuration(mPreviousProcessVisibleTime, sb);
7069 pw.println(sb);
7070 }
7071 if (mHeavyWeightProcess != null && (dumpPackage == null
7072 || mHeavyWeightProcess.mPkgList.contains(dumpPackage))) {
7073 if (needSep) {
7074 pw.println();
7075 needSep = false;
7076 }
7077 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
7078 }
7079 if (dumpPackage == null) {
7080 pw.println(" mGlobalConfiguration: " + getGlobalConfiguration());
Louis Chang149d5c82019-12-30 09:47:39 +08007081 mRootWindowContainer.dumpDisplayConfigs(pw, " ");
Wale Ogunwale31913b52018-10-13 08:29:31 -07007082 }
7083 if (dumpAll) {
7084 if (dumpPackage == null) {
7085 pw.println(" mConfigWillChange: "
7086 + getTopDisplayFocusedStack().mConfigWillChange);
7087 }
7088 if (mCompatModePackages.getPackages().size() > 0) {
7089 boolean printed = false;
7090 for (Map.Entry<String, Integer> entry
7091 : mCompatModePackages.getPackages().entrySet()) {
7092 String pkg = entry.getKey();
7093 int mode = entry.getValue();
7094 if (dumpPackage != null && !dumpPackage.equals(pkg)) {
7095 continue;
7096 }
7097 if (!printed) {
7098 pw.println(" mScreenCompatPackages:");
7099 printed = true;
7100 }
7101 pw.println(" " + pkg + ": " + mode);
7102 }
7103 }
7104 }
7105
7106 if (dumpPackage == null) {
7107 pw.println(" mWakefulness="
7108 + PowerManagerInternal.wakefulnessToString(wakefulness));
Louis Chang149d5c82019-12-30 09:47:39 +08007109 pw.println(" mSleepTokens=" + mRootWindowContainer.mSleepTokens);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007110 if (mRunningVoice != null) {
7111 pw.println(" mRunningVoice=" + mRunningVoice);
7112 pw.println(" mVoiceWakeLock" + mVoiceWakeLock);
7113 }
7114 pw.println(" mSleeping=" + mSleeping);
7115 pw.println(" mShuttingDown=" + mShuttingDown + " mTestPssMode=" + testPssMode);
7116 pw.println(" mVrController=" + mVrController);
7117 }
7118 if (mCurAppTimeTracker != null) {
7119 mCurAppTimeTracker.dumpWithHeader(pw, " ", true);
7120 }
7121 if (mAllowAppSwitchUids.size() > 0) {
7122 boolean printed = false;
7123 for (int i = 0; i < mAllowAppSwitchUids.size(); i++) {
7124 ArrayMap<String, Integer> types = mAllowAppSwitchUids.valueAt(i);
7125 for (int j = 0; j < types.size(); j++) {
7126 if (dumpPackage == null ||
7127 UserHandle.getAppId(types.valueAt(j).intValue()) == dumpAppId) {
7128 if (needSep) {
7129 pw.println();
7130 needSep = false;
7131 }
7132 if (!printed) {
7133 pw.println(" mAllowAppSwitchUids:");
7134 printed = true;
7135 }
7136 pw.print(" User ");
7137 pw.print(mAllowAppSwitchUids.keyAt(i));
7138 pw.print(": Type ");
7139 pw.print(types.keyAt(j));
7140 pw.print(" = ");
7141 UserHandle.formatUid(pw, types.valueAt(j).intValue());
7142 pw.println();
7143 }
7144 }
7145 }
7146 }
7147 if (dumpPackage == null) {
7148 if (mController != null) {
7149 pw.println(" mController=" + mController
7150 + " mControllerIsAMonkey=" + mControllerIsAMonkey);
7151 }
Andrii Kulianc598b2d2019-02-07 17:16:38 -08007152 pw.println(" mGoingToSleepWakeLock=" + mStackSupervisor.mGoingToSleepWakeLock);
7153 pw.println(" mLaunchingActivityWakeLock="
7154 + mStackSupervisor.mLaunchingActivityWakeLock);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007155 }
7156
7157 return needSep;
7158 }
7159 }
7160
7161 @Override
sanryhuang498e77e2018-12-06 14:57:01 +08007162 public void writeProcessesToProto(ProtoOutputStream proto, String dumpPackage,
7163 int wakeFullness, boolean testPssMode) {
Wale Ogunwale31913b52018-10-13 08:29:31 -07007164 synchronized (mGlobalLock) {
7165 if (dumpPackage == null) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007166 getGlobalConfiguration().dumpDebug(proto, GLOBAL_CONFIGURATION);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007167 proto.write(CONFIG_WILL_CHANGE, getTopDisplayFocusedStack().mConfigWillChange);
sanryhuang498e77e2018-12-06 14:57:01 +08007168 writeSleepStateToProto(proto, wakeFullness, testPssMode);
7169 if (mRunningVoice != null) {
7170 final long vrToken = proto.start(
7171 ActivityManagerServiceDumpProcessesProto.RUNNING_VOICE);
7172 proto.write(ActivityManagerServiceDumpProcessesProto.Voice.SESSION,
7173 mRunningVoice.toString());
Jeffrey Huangcb782852019-12-05 11:28:11 -08007174 mVoiceWakeLock.dumpDebug(
sanryhuang498e77e2018-12-06 14:57:01 +08007175 proto, ActivityManagerServiceDumpProcessesProto.Voice.WAKELOCK);
7176 proto.end(vrToken);
7177 }
Jeffrey Huangcb782852019-12-05 11:28:11 -08007178 mVrController.dumpDebug(proto,
sanryhuang498e77e2018-12-06 14:57:01 +08007179 ActivityManagerServiceDumpProcessesProto.VR_CONTROLLER);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007180 if (mController != null) {
7181 final long token = proto.start(CONTROLLER);
Wally Yau0eb29f62020-01-08 10:16:43 -08007182 proto.write(ActivityManagerServiceDumpProcessesProto.Controller.CONTROLLER,
7183 mController.toString());
Wale Ogunwale31913b52018-10-13 08:29:31 -07007184 proto.write(IS_A_MONKEY, mControllerIsAMonkey);
7185 proto.end(token);
7186 }
Jeffrey Huangcb782852019-12-05 11:28:11 -08007187 mStackSupervisor.mGoingToSleepWakeLock.dumpDebug(proto, GOING_TO_SLEEP);
7188 mStackSupervisor.mLaunchingActivityWakeLock.dumpDebug(proto,
Andrii Kulianc598b2d2019-02-07 17:16:38 -08007189 LAUNCHING_ACTIVITY);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007190 }
7191
7192 if (mHomeProcess != null && (dumpPackage == null
7193 || mHomeProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007194 mHomeProcess.dumpDebug(proto, HOME_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007195 }
7196
7197 if (mPreviousProcess != null && (dumpPackage == null
7198 || mPreviousProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007199 mPreviousProcess.dumpDebug(proto, PREVIOUS_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007200 proto.write(PREVIOUS_PROC_VISIBLE_TIME_MS, mPreviousProcessVisibleTime);
7201 }
7202
7203 if (mHeavyWeightProcess != null && (dumpPackage == null
7204 || mHeavyWeightProcess.mPkgList.contains(dumpPackage))) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007205 mHeavyWeightProcess.dumpDebug(proto, HEAVY_WEIGHT_PROC);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007206 }
7207
7208 for (Map.Entry<String, Integer> entry
7209 : mCompatModePackages.getPackages().entrySet()) {
7210 String pkg = entry.getKey();
7211 int mode = entry.getValue();
7212 if (dumpPackage == null || dumpPackage.equals(pkg)) {
7213 long compatToken = proto.start(SCREEN_COMPAT_PACKAGES);
7214 proto.write(PACKAGE, pkg);
7215 proto.write(MODE, mode);
7216 proto.end(compatToken);
7217 }
7218 }
7219
7220 if (mCurAppTimeTracker != null) {
Jeffrey Huangcb782852019-12-05 11:28:11 -08007221 mCurAppTimeTracker.dumpDebug(proto, CURRENT_TRACKER, true);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007222 }
7223
7224 }
7225 }
7226
7227 @Override
7228 public boolean dumpActivity(FileDescriptor fd, PrintWriter pw, String name,
7229 String[] args, int opti, boolean dumpAll, boolean dumpVisibleStacksOnly,
7230 boolean dumpFocusedStackOnly) {
Riddle Hsud7cd8ed2019-07-16 18:19:01 +08007231 return ActivityTaskManagerService.this.dumpActivity(fd, pw, name, args, opti, dumpAll,
7232 dumpVisibleStacksOnly, dumpFocusedStackOnly);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007233 }
7234
7235 @Override
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07007236 public void dumpForOom(PrintWriter pw) {
7237 synchronized (mGlobalLock) {
7238 pw.println(" mHomeProcess: " + mHomeProcess);
7239 pw.println(" mPreviousProcess: " + mPreviousProcess);
7240 if (mHeavyWeightProcess != null) {
7241 pw.println(" mHeavyWeightProcess: " + mHeavyWeightProcess);
7242 }
7243 }
7244 }
7245
7246 @Override
Wale Ogunwale31913b52018-10-13 08:29:31 -07007247 public boolean canGcNow() {
7248 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007249 return isSleeping() || mRootWindowContainer.allResumedActivitiesIdle();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007250 }
7251 }
7252
Riddle Hsua0536432019-02-16 00:38:59 +08007253 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale31913b52018-10-13 08:29:31 -07007254 @Override
7255 public WindowProcessController getTopApp() {
Riddle Hsud7088f82019-01-30 13:04:50 +08007256 synchronized (mGlobalLockWithoutBoost) {
Louis Chang149d5c82019-12-30 09:47:39 +08007257 if (mRootWindowContainer == null) {
7258 // Return null if mRootWindowContainer not yet initialize, while update
Louis Chang3ff72a82019-12-17 12:12:59 +08007259 // oomadj after AMS created.
7260 return null;
7261 }
Louis Chang149d5c82019-12-30 09:47:39 +08007262 final ActivityRecord top = mRootWindowContainer.getTopResumedActivity();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007263 return top != null ? top.app : null;
7264 }
7265 }
7266
Riddle Hsua0536432019-02-16 00:38:59 +08007267 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwale31913b52018-10-13 08:29:31 -07007268 @Override
7269 public void rankTaskLayersIfNeeded() {
Riddle Hsud7088f82019-01-30 13:04:50 +08007270 synchronized (mGlobalLockWithoutBoost) {
Louis Chang149d5c82019-12-30 09:47:39 +08007271 if (mRootWindowContainer != null) {
7272 mRootWindowContainer.rankTaskLayersIfNeeded();
Wale Ogunwale31913b52018-10-13 08:29:31 -07007273 }
7274 }
7275 }
7276
7277 @Override
7278 public void scheduleDestroyAllActivities(String reason) {
7279 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007280 mRootWindowContainer.scheduleDestroyAllActivities(reason);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007281 }
7282 }
7283
7284 @Override
7285 public void removeUser(int userId) {
7286 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007287 mRootWindowContainer.removeUser(userId);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007288 }
7289 }
7290
7291 @Override
7292 public boolean switchUser(int userId, UserState userState) {
7293 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007294 return mRootWindowContainer.switchUser(userId, userState);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007295 }
7296 }
7297
7298 @Override
7299 public void onHandleAppCrash(WindowProcessController wpc) {
7300 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007301 mRootWindowContainer.handleAppCrash(wpc);
Wale Ogunwale31913b52018-10-13 08:29:31 -07007302 }
7303 }
Wale Ogunwale64258362018-10-16 15:13:37 -07007304
7305 @Override
7306 public int finishTopCrashedActivities(WindowProcessController crashedApp, String reason) {
7307 synchronized (mGlobalLock) {
Louis Chang149d5c82019-12-30 09:47:39 +08007308 return mRootWindowContainer.finishTopCrashedActivities(crashedApp, reason);
Wale Ogunwale64258362018-10-16 15:13:37 -07007309 }
7310 }
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007311
Riddle Hsua0536432019-02-16 00:38:59 +08007312 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007313 @Override
7314 public void onUidActive(int uid, int procState) {
Riddle Hsua0536432019-02-16 00:38:59 +08007315 mActiveUids.onUidActive(uid, procState);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007316 }
7317
Riddle Hsua0536432019-02-16 00:38:59 +08007318 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007319 @Override
7320 public void onUidInactive(int uid) {
Riddle Hsua0536432019-02-16 00:38:59 +08007321 mActiveUids.onUidInactive(uid);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007322 }
7323
Riddle Hsua0536432019-02-16 00:38:59 +08007324 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007325 @Override
7326 public void onActiveUidsCleared() {
Riddle Hsua0536432019-02-16 00:38:59 +08007327 mActiveUids.onActiveUidsCleared();
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007328 }
7329
Riddle Hsua0536432019-02-16 00:38:59 +08007330 @HotPath(caller = HotPath.OOM_ADJUSTMENT)
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007331 @Override
7332 public void onUidProcStateChanged(int uid, int procState) {
Riddle Hsua0536432019-02-16 00:38:59 +08007333 mActiveUids.onUidProcStateChanged(uid, procState);
Wale Ogunwalebff2df42018-10-18 17:09:19 -07007334 }
Wale Ogunwale9de19442018-10-18 19:05:03 -07007335
7336 @Override
7337 public void onUidAddedToPendingTempWhitelist(int uid, String tag) {
Riddle Hsud7088f82019-01-30 13:04:50 +08007338 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9de19442018-10-18 19:05:03 -07007339 mPendingTempWhitelist.put(uid, tag);
7340 }
7341 }
7342
7343 @Override
7344 public void onUidRemovedFromPendingTempWhitelist(int uid) {
Riddle Hsud7088f82019-01-30 13:04:50 +08007345 synchronized (mGlobalLockWithoutBoost) {
Wale Ogunwale9de19442018-10-18 19:05:03 -07007346 mPendingTempWhitelist.remove(uid);
7347 }
7348 }
Wale Ogunwalee2172292018-10-25 10:11:10 -07007349
7350 @Override
7351 public boolean handleAppCrashInActivityController(String processName, int pid,
7352 String shortMsg, String longMsg, long timeMillis, String stackTrace,
7353 Runnable killCrashingAppCallback) {
7354 synchronized (mGlobalLock) {
7355 if (mController == null) {
7356 return false;
7357 }
7358
7359 try {
7360 if (!mController.appCrashed(processName, pid, shortMsg, longMsg, timeMillis,
7361 stackTrace)) {
7362 killCrashingAppCallback.run();
7363 return true;
7364 }
7365 } catch (RemoteException e) {
7366 mController = null;
7367 Watchdog.getInstance().setActivityController(null);
7368 }
7369 return false;
7370 }
7371 }
Wale Ogunwaled7889f52018-10-25 11:03:20 -07007372
7373 @Override
7374 public void removeRecentTasksByPackageName(String packageName, int userId) {
7375 synchronized (mGlobalLock) {
7376 mRecentTasks.removeTasksByPackageName(packageName, userId);
7377 }
7378 }
7379
7380 @Override
7381 public void cleanupRecentTasksForUser(int userId) {
7382 synchronized (mGlobalLock) {
7383 mRecentTasks.cleanupLocked(userId);
7384 }
7385 }
7386
7387 @Override
7388 public void loadRecentTasksForUser(int userId) {
7389 synchronized (mGlobalLock) {
7390 mRecentTasks.loadUserRecentsLocked(userId);
7391 }
7392 }
7393
7394 @Override
7395 public void onPackagesSuspendedChanged(String[] packages, boolean suspended, int userId) {
7396 synchronized (mGlobalLock) {
7397 mRecentTasks.onPackagesSuspendedChanged(packages, suspended, userId);
7398 }
7399 }
7400
7401 @Override
7402 public void flushRecentTasks() {
7403 mRecentTasks.flush();
7404 }
Wale Ogunwaled4d67d02018-10-25 18:09:39 -07007405
7406 @Override
7407 public WindowProcessController getHomeProcess() {
7408 synchronized (mGlobalLock) {
7409 return mHomeProcess;
7410 }
7411 }
7412
7413 @Override
7414 public WindowProcessController getPreviousProcess() {
7415 synchronized (mGlobalLock) {
7416 return mPreviousProcess;
7417 }
7418 }
Wale Ogunwale27c48ae2018-10-25 19:01:01 -07007419
7420 @Override
7421 public void clearLockedTasks(String reason) {
7422 synchronized (mGlobalLock) {
7423 getLockTaskController().clearLockedTasks(reason);
7424 }
7425 }
7426
7427 @Override
7428 public void updateUserConfiguration() {
7429 synchronized (mGlobalLock) {
7430 final Configuration configuration = new Configuration(getGlobalConfiguration());
7431 final int currentUserId = mAmInternal.getCurrentUserId();
7432 Settings.System.adjustConfigurationForUser(mContext.getContentResolver(),
7433 configuration, currentUserId, Settings.System.canWrite(mContext));
7434 updateConfigurationLocked(configuration, null /* starting */,
7435 false /* initLocale */, false /* persistent */, currentUserId,
7436 false /* deferResume */);
7437 }
7438 }
Wale Ogunwale387b34c2018-10-25 19:59:40 -07007439
7440 @Override
7441 public boolean canShowErrorDialogs() {
7442 synchronized (mGlobalLock) {
7443 return mShowDialogs && !mSleeping && !mShuttingDown
7444 && !mKeyguardController.isKeyguardOrAodShowing(DEFAULT_DISPLAY)
7445 && !hasUserRestriction(UserManager.DISALLOW_SYSTEM_ERROR_DIALOGS,
7446 mAmInternal.getCurrentUserId())
7447 && !(UserManager.isDeviceInDemoMode(mContext)
7448 && mAmInternal.getCurrentUser().isDemo());
7449 }
7450 }
Wale Ogunwale1f5e53d2018-11-05 05:12:46 -08007451
7452 @Override
7453 public void setProfileApp(String profileApp) {
7454 synchronized (mGlobalLock) {
7455 mProfileApp = profileApp;
7456 }
7457 }
7458
7459 @Override
7460 public void setProfileProc(WindowProcessController wpc) {
7461 synchronized (mGlobalLock) {
7462 mProfileProc = wpc;
7463 }
7464 }
7465
7466 @Override
7467 public void setProfilerInfo(ProfilerInfo profilerInfo) {
7468 synchronized (mGlobalLock) {
7469 mProfilerInfo = profilerInfo;
7470 }
7471 }
Igor Murashkinc0b47e42018-11-07 15:54:18 -08007472
7473 @Override
7474 public ActivityMetricsLaunchObserverRegistry getLaunchObserverRegistry() {
7475 synchronized (mGlobalLock) {
7476 return mStackSupervisor.getActivityMetricsLogger().getLaunchObserverRegistry();
7477 }
7478 }
Winson Chung3fb0f252019-01-08 17:41:55 -08007479
7480 @Override
Jorim Jaggi925bb3c2019-06-04 19:51:45 +02007481 public ActivityManager.TaskSnapshot getTaskSnapshotNoRestore(int taskId,
7482 boolean reducedResolution) {
7483 return ActivityTaskManagerService.this.getTaskSnapshot(taskId, reducedResolution,
7484 false /* restoreFromDisk */);
Winson Chung3fb0f252019-01-08 17:41:55 -08007485 }
Michal Karpinskicc88d7e2019-01-24 15:32:12 +00007486
7487 @Override
7488 public boolean isUidForeground(int uid) {
7489 synchronized (mGlobalLock) {
7490 return ActivityTaskManagerService.this.isUidForeground(uid);
7491 }
7492 }
Michal Karpinski4026cae2019-02-12 11:51:47 +00007493
7494 @Override
Ricky Wai96f5c352019-04-10 18:40:17 +01007495 public void setDeviceOwnerUid(int uid) {
Michal Karpinski4026cae2019-02-12 11:51:47 +00007496 synchronized (mGlobalLock) {
Ricky Wai96f5c352019-04-10 18:40:17 +01007497 ActivityTaskManagerService.this.setDeviceOwnerUid(uid);
Michal Karpinski4026cae2019-02-12 11:51:47 +00007498 }
7499 }
Ricky Wai2452e2d2019-03-18 19:19:08 +00007500
7501 @Override
7502 public void setCompanionAppPackages(int userId, Set<String> companionAppPackages) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007503 // Translate package names into UIDs
7504 final Set<Integer> result = new HashSet<>();
Ricky Wai2452e2d2019-03-18 19:19:08 +00007505 for (String pkg : companionAppPackages) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007506 final int uid = getPackageManagerInternalLocked().getPackageUid(pkg, 0, userId);
7507 if (uid >= 0) {
7508 result.add(uid);
7509 }
Ricky Wai2452e2d2019-03-18 19:19:08 +00007510 }
7511 synchronized (mGlobalLock) {
Michal Karpinskida34cd42019-04-02 19:46:52 +01007512 mCompanionAppUidsMap.put(userId, result);
Ricky Wai2452e2d2019-03-18 19:19:08 +00007513 }
7514 }
Wale Ogunwale6767eae2018-05-03 15:52:51 -07007515 }
Wale Ogunwaleb73f3962018-11-20 07:58:22 -08007516}