Merge "[RESTRICT AUTOMERGE] Restrict app transition maximum duration" into qt-dev
This commit is contained in:
@@ -168,6 +168,7 @@ public class AppTransition implements Dump {
|
|||||||
private static final int MAX_CLIP_REVEAL_TRANSITION_DURATION = 420;
|
private static final int MAX_CLIP_REVEAL_TRANSITION_DURATION = 420;
|
||||||
private static final int THUMBNAIL_APP_TRANSITION_DURATION = 336;
|
private static final int THUMBNAIL_APP_TRANSITION_DURATION = 336;
|
||||||
private static final long APP_TRANSITION_TIMEOUT_MS = 5000;
|
private static final long APP_TRANSITION_TIMEOUT_MS = 5000;
|
||||||
|
static final int MAX_APP_TRANSITION_DURATION = 3 * 1000; // 3 secs.
|
||||||
|
|
||||||
private final Context mContext;
|
private final Context mContext;
|
||||||
private final WindowManagerService mService;
|
private final WindowManagerService mService;
|
||||||
|
|||||||
@@ -38,6 +38,7 @@ import static android.view.WindowManager.TRANSIT_WALLPAPER_OPEN;
|
|||||||
|
|
||||||
import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
|
import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM;
|
||||||
import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
|
import static com.android.server.policy.WindowManagerPolicy.FINISH_LAYOUT_REDO_WALLPAPER;
|
||||||
|
import static com.android.server.wm.AppTransition.MAX_APP_TRANSITION_DURATION;
|
||||||
import static com.android.server.wm.AppWindowTokenProto.ALL_DRAWN;
|
import static com.android.server.wm.AppWindowTokenProto.ALL_DRAWN;
|
||||||
import static com.android.server.wm.AppWindowTokenProto.APP_STOPPED;
|
import static com.android.server.wm.AppWindowTokenProto.APP_STOPPED;
|
||||||
import static com.android.server.wm.AppWindowTokenProto.CLIENT_HIDDEN;
|
import static com.android.server.wm.AppWindowTokenProto.CLIENT_HIDDEN;
|
||||||
@@ -2679,7 +2680,16 @@ class AppWindowToken extends WindowToken implements WindowManagerService.AppFree
|
|||||||
displayConfig.uiMode, displayConfig.orientation, frame, displayFrame, insets,
|
displayConfig.uiMode, displayConfig.orientation, frame, displayFrame, insets,
|
||||||
surfaceInsets, stableInsets, isVoiceInteraction, freeform, getTask().mTaskId);
|
surfaceInsets, stableInsets, isVoiceInteraction, freeform, getTask().mTaskId);
|
||||||
if (a != null) {
|
if (a != null) {
|
||||||
if (DEBUG_ANIM) logWithStack(TAG, "Loaded animation " + a + " for " + this);
|
if (a != null) {
|
||||||
|
// Setup the maximum app transition duration to prevent malicious app may set a long
|
||||||
|
// animation duration or infinite repeat counts for the app transition through
|
||||||
|
// ActivityOption#makeCustomAnimation or WindowManager#overridePendingTransition.
|
||||||
|
a.restrictDuration(MAX_APP_TRANSITION_DURATION);
|
||||||
|
}
|
||||||
|
if (DEBUG_ANIM) {
|
||||||
|
logWithStack(TAG, "Loaded animation " + a + " for " + this
|
||||||
|
+ ", duration: " + ((a != null) ? a.getDuration() : 0));
|
||||||
|
}
|
||||||
final int containingWidth = frame.width();
|
final int containingWidth = frame.width();
|
||||||
final int containingHeight = frame.height();
|
final int containingHeight = frame.height();
|
||||||
a.initialize(containingWidth, containingHeight, width, height);
|
a.initialize(containingWidth, containingHeight, width, height);
|
||||||
|
|||||||
Reference in New Issue
Block a user