blob: c30477c77bbba4ae650c0c3b1d80cb5a60c7c7af [file] [log] [blame]
Kevin Chynaae4a152018-01-18 11:48:09 -08001/*
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
Kevin Chynf8688a02019-08-27 17:04:05 -070014 * limitations under the License.
Kevin Chynaae4a152018-01-18 11:48:09 -080015 */
16
Kevin Chyne9275662018-07-23 16:42:06 -070017package com.android.systemui.biometrics;
Kevin Chynaae4a152018-01-18 11:48:09 -080018
Ilya Matyukhin0f9da352019-10-03 14:10:01 -070019import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FACE;
20import static android.hardware.biometrics.BiometricAuthenticator.TYPE_FINGERPRINT;
Curtis Belmonte13eb5812019-10-22 14:17:30 -070021import static android.hardware.biometrics.BiometricManager.Authenticators;
Ilya Matyukhin0f9da352019-10-03 14:10:01 -070022
Kevin Chync8cb6852020-03-10 18:29:15 -070023import android.annotation.Nullable;
Kevin Chyn050315f2019-08-08 14:22:54 -070024import android.app.ActivityManager;
25import android.app.ActivityTaskManager;
26import android.app.IActivityTaskManager;
27import android.app.TaskStackListener;
Kevin Chyne181b8d2019-11-05 15:02:52 -080028import android.content.BroadcastReceiver;
Kevin Chyn42653e82018-01-19 14:15:46 -080029import android.content.Context;
Kevin Chyne181b8d2019-11-05 15:02:52 -080030import android.content.Intent;
31import android.content.IntentFilter;
Gus Prevasa7df7b22018-10-30 10:29:34 -040032import android.content.res.Configuration;
Kevin Chyn8429da22019-09-24 12:42:35 -070033import android.hardware.biometrics.BiometricConstants;
Vishwath Mohanecf00ce2018-04-05 10:28:24 -070034import android.hardware.biometrics.BiometricPrompt;
Kevin Chyn23289ef2018-11-28 16:32:36 -080035import android.hardware.biometrics.IBiometricServiceReceiverInternal;
Ilya Matyukhin0f9da352019-10-03 14:10:01 -070036import android.hardware.face.FaceManager;
37import android.hardware.fingerprint.FingerprintManager;
Kevin Chynaae4a152018-01-18 11:48:09 -080038import android.os.Bundle;
Kevin Chyn050315f2019-08-08 14:22:54 -070039import android.os.Handler;
40import android.os.Looper;
Kevin Chyn42653e82018-01-19 14:15:46 -080041import android.os.RemoteException;
Kevin Chynaae4a152018-01-18 11:48:09 -080042import android.util.Log;
Kevin Chyn42653e82018-01-19 14:15:46 -080043import android.view.WindowManager;
Kevin Chynaae4a152018-01-18 11:48:09 -080044
Ilya Matyukhin0f9da352019-10-03 14:10:01 -070045import com.android.internal.R;
Kevin Chyn050315f2019-08-08 14:22:54 -070046import com.android.internal.annotations.VisibleForTesting;
Kevin Chyn42653e82018-01-19 14:15:46 -080047import com.android.internal.os.SomeArgs;
Kevin Chynaae4a152018-01-18 11:48:09 -080048import com.android.systemui.SystemUI;
49import com.android.systemui.statusbar.CommandQueue;
50
Kevin Chyn050315f2019-08-08 14:22:54 -070051import java.util.List;
52
Dave Mankoffbcaca8a2019-10-31 18:04:08 -040053import javax.inject.Inject;
54import javax.inject.Singleton;
55
Kevin Chyne9275662018-07-23 16:42:06 -070056/**
Kevin Chync53d9812019-07-30 18:10:30 -070057 * Receives messages sent from {@link com.android.server.biometrics.BiometricService} and shows the
58 * appropriate biometric UI (e.g. BiometricDialogView).
Kevin Chyne9275662018-07-23 16:42:06 -070059 */
Dave Mankoffbcaca8a2019-10-31 18:04:08 -040060@Singleton
Kevin Chynf8688a02019-08-27 17:04:05 -070061public class AuthController extends SystemUI implements CommandQueue.Callbacks,
62 AuthDialogCallback {
Kevin Chynfc468262019-08-20 17:17:11 -070063
Kevin Chynf8688a02019-08-27 17:04:05 -070064 private static final String TAG = "BiometricPrompt/AuthController";
Kevin Chyn42653e82018-01-19 14:15:46 -080065 private static final boolean DEBUG = true;
66
Dave Mankoffbcaca8a2019-10-31 18:04:08 -040067 private final CommandQueue mCommandQueue;
Kevin Chyn050315f2019-08-08 14:22:54 -070068 private final Injector mInjector;
69
Kevin Chync53d9812019-07-30 18:10:30 -070070 // TODO: These should just be saved from onSaveState
Gus Prevasa7df7b22018-10-30 10:29:34 -040071 private SomeArgs mCurrentDialogArgs;
Kevin Chyn050315f2019-08-08 14:22:54 -070072 @VisibleForTesting
Kevin Chynf8688a02019-08-27 17:04:05 -070073 AuthDialog mCurrentDialog;
Kevin Chync53d9812019-07-30 18:10:30 -070074
Kevin Chyn050315f2019-08-08 14:22:54 -070075 private Handler mHandler = new Handler(Looper.getMainLooper());
Kevin Chyn42653e82018-01-19 14:15:46 -080076 private WindowManager mWindowManager;
Kevin Chyn050315f2019-08-08 14:22:54 -070077 @VisibleForTesting
78 IActivityTaskManager mActivityTaskManager;
79 @VisibleForTesting
80 BiometricTaskStackListener mTaskStackListener;
81 @VisibleForTesting
82 IBiometricServiceReceiverInternal mReceiver;
83
84 public class BiometricTaskStackListener extends TaskStackListener {
85 @Override
86 public void onTaskStackChanged() {
87 mHandler.post(mTaskStackChangedRunnable);
88 }
89 }
90
Kevin Chyne181b8d2019-11-05 15:02:52 -080091 @VisibleForTesting
92 final BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
93 @Override
94 public void onReceive(Context context, Intent intent) {
95 if (mCurrentDialog != null
96 && Intent.ACTION_CLOSE_SYSTEM_DIALOGS.equals(intent.getAction())) {
97 Log.w(TAG, "ACTION_CLOSE_SYSTEM_DIALOGS received");
98 mCurrentDialog.dismissWithoutCallback(true /* animate */);
99 mCurrentDialog = null;
100
101 try {
102 if (mReceiver != null) {
Kevin Chync8cb6852020-03-10 18:29:15 -0700103 mReceiver.onDialogDismissed(BiometricPrompt.DISMISSED_REASON_USER_CANCEL,
104 null /* credentialAttestation */);
Kevin Chyne181b8d2019-11-05 15:02:52 -0800105 mReceiver = null;
106 }
107 } catch (RemoteException e) {
108 Log.e(TAG, "Remote exception", e);
109 }
110 }
111 }
112 };
113
Kevin Chyn050315f2019-08-08 14:22:54 -0700114 private final Runnable mTaskStackChangedRunnable = () -> {
115 if (mCurrentDialog != null) {
116 try {
117 final String clientPackage = mCurrentDialog.getOpPackageName();
118 Log.w(TAG, "Task stack changed, current client: " + clientPackage);
119 final List<ActivityManager.RunningTaskInfo> runningTasks =
120 mActivityTaskManager.getTasks(1);
121 if (!runningTasks.isEmpty()) {
122 final String topPackage = runningTasks.get(0).topActivity.getPackageName();
123 if (!topPackage.contentEquals(clientPackage)) {
124 Log.w(TAG, "Evicting client due to: " + topPackage);
125 mCurrentDialog.dismissWithoutCallback(true /* animate */);
126 mCurrentDialog = null;
Curtis Belmonteffa9d872019-10-24 12:55:01 -0700127 if (mReceiver != null) {
128 mReceiver.onDialogDismissed(
Kevin Chync8cb6852020-03-10 18:29:15 -0700129 BiometricPrompt.DISMISSED_REASON_USER_CANCEL,
130 null /* credentialAttestation */);
Curtis Belmonteffa9d872019-10-24 12:55:01 -0700131 mReceiver = null;
132 }
Kevin Chyn050315f2019-08-08 14:22:54 -0700133 }
134 }
135 } catch (RemoteException e) {
136 Log.e(TAG, "Remote exception", e);
137 }
138 }
139 };
Kevin Chyn42653e82018-01-19 14:15:46 -0800140
Kevin Chync53d9812019-07-30 18:10:30 -0700141 @Override
142 public void onTryAgainPressed() {
Curtis Belmonteffa9d872019-10-24 12:55:01 -0700143 if (mReceiver == null) {
144 Log.e(TAG, "onTryAgainPressed: Receiver is null");
145 return;
146 }
Kevin Chync53d9812019-07-30 18:10:30 -0700147 try {
148 mReceiver.onTryAgainPressed();
149 } catch (RemoteException e) {
150 Log.e(TAG, "RemoteException when handling try again", e);
Kevin Chyn5906c172018-07-23 15:43:02 -0700151 }
152 }
153
Kevin Chync53d9812019-07-30 18:10:30 -0700154 @Override
Kevin Chynff168dc2019-09-16 16:04:38 -0700155 public void onDeviceCredentialPressed() {
Curtis Belmonteffa9d872019-10-24 12:55:01 -0700156 if (mReceiver == null) {
157 Log.e(TAG, "onDeviceCredentialPressed: Receiver is null");
158 return;
159 }
Kevin Chynff168dc2019-09-16 16:04:38 -0700160 try {
161 mReceiver.onDeviceCredentialPressed();
162 } catch (RemoteException e) {
163 Log.e(TAG, "RemoteException when handling credential button", e);
164 }
165 }
166
167 @Override
Kevin Chync8cb6852020-03-10 18:29:15 -0700168 public void onDismissed(@DismissedReason int reason, @Nullable byte[] credentialAttestation) {
Kevin Chync53d9812019-07-30 18:10:30 -0700169 switch (reason) {
Kevin Chynf8688a02019-08-27 17:04:05 -0700170 case AuthDialogCallback.DISMISSED_USER_CANCELED:
Kevin Chync8cb6852020-03-10 18:29:15 -0700171 sendResultAndCleanUp(BiometricPrompt.DISMISSED_REASON_USER_CANCEL,
172 credentialAttestation);
Kevin Chync53d9812019-07-30 18:10:30 -0700173 break;
174
Kevin Chynf8688a02019-08-27 17:04:05 -0700175 case AuthDialogCallback.DISMISSED_BUTTON_NEGATIVE:
Kevin Chync8cb6852020-03-10 18:29:15 -0700176 sendResultAndCleanUp(BiometricPrompt.DISMISSED_REASON_NEGATIVE,
177 credentialAttestation);
Kevin Chync53d9812019-07-30 18:10:30 -0700178 break;
179
Kevin Chynf8688a02019-08-27 17:04:05 -0700180 case AuthDialogCallback.DISMISSED_BUTTON_POSITIVE:
Kevin Chync8cb6852020-03-10 18:29:15 -0700181 sendResultAndCleanUp(BiometricPrompt.DISMISSED_REASON_BIOMETRIC_CONFIRMED,
182 credentialAttestation);
Kevin Chync53d9812019-07-30 18:10:30 -0700183 break;
184
Kevin Chynff168dc2019-09-16 16:04:38 -0700185 case AuthDialogCallback.DISMISSED_BIOMETRIC_AUTHENTICATED:
186 sendResultAndCleanUp(
Kevin Chync8cb6852020-03-10 18:29:15 -0700187 BiometricPrompt.DISMISSED_REASON_BIOMETRIC_CONFIRM_NOT_REQUIRED,
188 credentialAttestation);
Kevin Chync53d9812019-07-30 18:10:30 -0700189 break;
190
Kevin Chynf8688a02019-08-27 17:04:05 -0700191 case AuthDialogCallback.DISMISSED_ERROR:
Kevin Chync8cb6852020-03-10 18:29:15 -0700192 sendResultAndCleanUp(BiometricPrompt.DISMISSED_REASON_ERROR,
193 credentialAttestation);
Kevin Chync53d9812019-07-30 18:10:30 -0700194 break;
Kevin Chyn050315f2019-08-08 14:22:54 -0700195
Kevin Chynf8688a02019-08-27 17:04:05 -0700196 case AuthDialogCallback.DISMISSED_BY_SYSTEM_SERVER:
Kevin Chync8cb6852020-03-10 18:29:15 -0700197 sendResultAndCleanUp(BiometricPrompt.DISMISSED_REASON_SERVER_REQUESTED,
198 credentialAttestation);
Kevin Chyn050315f2019-08-08 14:22:54 -0700199 break;
200
Kevin Chynff168dc2019-09-16 16:04:38 -0700201 case AuthDialogCallback.DISMISSED_CREDENTIAL_AUTHENTICATED:
Kevin Chync8cb6852020-03-10 18:29:15 -0700202 sendResultAndCleanUp(BiometricPrompt.DISMISSED_REASON_CREDENTIAL_CONFIRMED,
203 credentialAttestation);
Kevin Chynff168dc2019-09-16 16:04:38 -0700204 break;
205
Kevin Chync53d9812019-07-30 18:10:30 -0700206 default:
207 Log.e(TAG, "Unhandled reason: " + reason);
208 break;
Kevin Chync94b7db2019-05-15 17:28:16 -0700209 }
Kevin Chync53d9812019-07-30 18:10:30 -0700210 }
211
Kevin Chync8cb6852020-03-10 18:29:15 -0700212 private void sendResultAndCleanUp(@DismissedReason int reason,
213 @Nullable byte[] credentialAttestation) {
Kevin Chync53d9812019-07-30 18:10:30 -0700214 if (mReceiver == null) {
Curtis Belmonteffa9d872019-10-24 12:55:01 -0700215 Log.e(TAG, "sendResultAndCleanUp: Receiver is null");
Kevin Chync53d9812019-07-30 18:10:30 -0700216 return;
217 }
218 try {
Kevin Chync8cb6852020-03-10 18:29:15 -0700219 mReceiver.onDialogDismissed(reason, credentialAttestation);
Kevin Chync53d9812019-07-30 18:10:30 -0700220 } catch (RemoteException e) {
221 Log.w(TAG, "Remote exception", e);
222 }
Kevin Chyn050315f2019-08-08 14:22:54 -0700223 onDialogDismissed(reason);
224 }
225
226 public static class Injector {
227 IActivityTaskManager getActivityTaskManager() {
228 return ActivityTaskManager.getService();
229 }
230 }
231
Dave Mankoffbcaca8a2019-10-31 18:04:08 -0400232 @Inject
233 public AuthController(Context context, CommandQueue commandQueue) {
234 this(context, commandQueue, new Injector());
Kevin Chyn050315f2019-08-08 14:22:54 -0700235 }
236
237 @VisibleForTesting
Dave Mankoffbcaca8a2019-10-31 18:04:08 -0400238 AuthController(Context context, CommandQueue commandQueue, Injector injector) {
Dave Mankoffa5d8a392019-10-10 12:21:09 -0400239 super(context);
Dave Mankoffbcaca8a2019-10-31 18:04:08 -0400240 mCommandQueue = commandQueue;
Kevin Chyn050315f2019-08-08 14:22:54 -0700241 mInjector = injector;
Kevin Chyne181b8d2019-11-05 15:02:52 -0800242
243 IntentFilter filter = new IntentFilter();
244 filter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
245
246 context.registerReceiver(mBroadcastReceiver, filter);
Kevin Chync53d9812019-07-30 18:10:30 -0700247 }
Kevin Chync94b7db2019-05-15 17:28:16 -0700248
Kevin Chynaae4a152018-01-18 11:48:09 -0800249 @Override
250 public void start() {
Kevin Chyn4e6417d2020-02-20 12:10:21 -0800251 mCommandQueue.addCallback(this);
252 mWindowManager = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);
253 mActivityTaskManager = mInjector.getActivityTaskManager();
Kevin Chyn050315f2019-08-08 14:22:54 -0700254
Kevin Chyn4e6417d2020-02-20 12:10:21 -0800255 try {
256 mTaskStackListener = new BiometricTaskStackListener();
257 mActivityTaskManager.registerTaskStackListener(mTaskStackListener);
258 } catch (RemoteException e) {
259 Log.w(TAG, "Unable to register task stack listener", e);
Gus Prevasa7df7b22018-10-30 10:29:34 -0400260 }
261 }
262
Kevin Chynaae4a152018-01-18 11:48:09 -0800263 @Override
Kevin Chyn86f1b8e2019-09-24 19:00:49 -0700264 public void showAuthenticationDialog(Bundle bundle, IBiometricServiceReceiverInternal receiver,
Kevin Chync8cb6852020-03-10 18:29:15 -0700265 int biometricModality, boolean requireConfirmation, int userId, String opPackageName,
266 long operationId) {
Kevin Chyn86f1b8e2019-09-24 19:00:49 -0700267 final int authenticators = Utils.getAuthenticators(bundle);
268
Kevin Chyn158fefb2019-01-03 18:59:05 -0800269 if (DEBUG) {
Kevin Chyn86f1b8e2019-09-24 19:00:49 -0700270 Log.d(TAG, "showAuthenticationDialog, authenticators: " + authenticators
271 + ", biometricModality: " + biometricModality
Kevin Chync8cb6852020-03-10 18:29:15 -0700272 + ", requireConfirmation: " + requireConfirmation
273 + ", operationId: " + operationId);
Kevin Chyn158fefb2019-01-03 18:59:05 -0800274 }
Kevin Chyn42653e82018-01-19 14:15:46 -0800275 SomeArgs args = SomeArgs.obtain();
276 args.arg1 = bundle;
277 args.arg2 = receiver;
Kevin Chyn86f1b8e2019-09-24 19:00:49 -0700278 args.argi1 = biometricModality;
Kevin Chyn6cf54e82018-09-18 19:13:27 -0700279 args.arg3 = requireConfirmation;
Kevin Chyn1b9f8df2018-11-12 19:04:55 -0800280 args.argi2 = userId;
Kevin Chyn050315f2019-08-08 14:22:54 -0700281 args.arg4 = opPackageName;
Kevin Chync8cb6852020-03-10 18:29:15 -0700282 args.arg5 = operationId;
Kevin Chync53d9812019-07-30 18:10:30 -0700283
284 boolean skipAnimation = false;
285 if (mCurrentDialog != null) {
286 Log.w(TAG, "mCurrentDialog: " + mCurrentDialog);
287 skipAnimation = true;
288 }
Kevin Chyn86f1b8e2019-09-24 19:00:49 -0700289
290 showDialog(args, skipAnimation, null /* savedState */);
Kevin Chynaae4a152018-01-18 11:48:09 -0800291 }
292
293 @Override
Ilya Matyukhin0f9da352019-10-03 14:10:01 -0700294 public void onBiometricAuthenticated() {
295 mCurrentDialog.onAuthenticationSucceeded();
Kevin Chyn42653e82018-01-19 14:15:46 -0800296 }
297
Kevin Chync53d9812019-07-30 18:10:30 -0700298 @Override
299 public void onBiometricHelp(String message) {
300 if (DEBUG) Log.d(TAG, "onBiometricHelp: " + message);
301
302 mCurrentDialog.onHelp(message);
Kevin Chyn42653e82018-01-19 14:15:46 -0800303 }
304
Ilya Matyukhin0f9da352019-10-03 14:10:01 -0700305 private String getErrorString(int modality, int error, int vendorCode) {
306 switch (modality) {
307 case TYPE_FACE:
308 return FaceManager.getErrorString(mContext, error, vendorCode);
Kevin Chyn8429da22019-09-24 12:42:35 -0700309
Ilya Matyukhin0f9da352019-10-03 14:10:01 -0700310 case TYPE_FINGERPRINT:
311 return FingerprintManager.getErrorString(mContext, error, vendorCode);
312
313 default:
314 return "";
315 }
316 }
317
318 @Override
319 public void onBiometricError(int modality, int error, int vendorCode) {
320 if (DEBUG) {
321 Log.d(TAG, String.format("onBiometricError(%d, %d, %d)", modality, error, vendorCode));
322 }
323
324 final boolean isLockout = (error == BiometricConstants.BIOMETRIC_ERROR_LOCKOUT)
325 || (error == BiometricConstants.BIOMETRIC_ERROR_LOCKOUT_PERMANENT);
326
327 // TODO(b/141025588): Create separate methods for handling hard and soft errors.
328 final boolean isSoftError = (error == BiometricConstants.BIOMETRIC_PAUSED_REJECTED
329 || error == BiometricConstants.BIOMETRIC_ERROR_TIMEOUT);
330
Kevin Chyn8429da22019-09-24 12:42:35 -0700331 if (mCurrentDialog.isAllowDeviceCredentials() && isLockout) {
Ilya Matyukhin0f9da352019-10-03 14:10:01 -0700332 if (DEBUG) Log.d(TAG, "onBiometricError, lockout");
Kevin Chyn8429da22019-09-24 12:42:35 -0700333 mCurrentDialog.animateToCredentialUI();
Ilya Matyukhin0f9da352019-10-03 14:10:01 -0700334 } else if (isSoftError) {
335 final String errorMessage = (error == BiometricConstants.BIOMETRIC_PAUSED_REJECTED)
336 ? mContext.getString(R.string.biometric_not_recognized)
337 : getErrorString(modality, error, vendorCode);
338 if (DEBUG) Log.d(TAG, "onBiometricError, soft error: " + errorMessage);
339 mCurrentDialog.onAuthenticationFailed(errorMessage);
Kevin Chyn8429da22019-09-24 12:42:35 -0700340 } else {
Ilya Matyukhin0f9da352019-10-03 14:10:01 -0700341 final String errorMessage = getErrorString(modality, error, vendorCode);
342 if (DEBUG) Log.d(TAG, "onBiometricError, hard error: " + errorMessage);
343 mCurrentDialog.onError(errorMessage);
Kevin Chyn8429da22019-09-24 12:42:35 -0700344 }
Kevin Chyn42653e82018-01-19 14:15:46 -0800345 }
346
Kevin Chync53d9812019-07-30 18:10:30 -0700347 @Override
Kevin Chyn86f1b8e2019-09-24 19:00:49 -0700348 public void hideAuthenticationDialog() {
Kevin Chyna847a032020-01-17 14:17:03 -0800349 if (DEBUG) Log.d(TAG, "hideAuthenticationDialog: " + mCurrentDialog);
350
351 if (mCurrentDialog == null) {
352 // Could be possible if the caller canceled authentication after credential success
353 // but before the client was notified.
354 return;
355 }
Kevin Chync53d9812019-07-30 18:10:30 -0700356
Kevin Chyn050315f2019-08-08 14:22:54 -0700357 mCurrentDialog.dismissFromSystemServer();
Kevin Chyn22910722019-12-13 16:57:51 -0800358
359 // BiometricService will have already sent the callback to the client in this case.
360 // This avoids a round trip to SystemUI. So, just dismiss the dialog and we're done.
361 mCurrentDialog = null;
Kevin Chync53d9812019-07-30 18:10:30 -0700362 }
363
Kevin Chyn86f1b8e2019-09-24 19:00:49 -0700364 private void showDialog(SomeArgs args, boolean skipAnimation, Bundle savedState) {
Kevin Chync53d9812019-07-30 18:10:30 -0700365 mCurrentDialogArgs = args;
366 final int type = args.argi1;
Kevin Chyn050315f2019-08-08 14:22:54 -0700367 final Bundle biometricPromptBundle = (Bundle) args.arg1;
368 final boolean requireConfirmation = (boolean) args.arg3;
369 final int userId = args.argi2;
370 final String opPackageName = (String) args.arg4;
Kevin Chync8cb6852020-03-10 18:29:15 -0700371 final long operationId = (long) args.arg5;
Kevin Chync53d9812019-07-30 18:10:30 -0700372
373 // Create a new dialog but do not replace the current one yet.
Kevin Chynf8688a02019-08-27 17:04:05 -0700374 final AuthDialog newDialog = buildDialog(
Kevin Chyn050315f2019-08-08 14:22:54 -0700375 biometricPromptBundle,
376 requireConfirmation,
377 userId,
378 type,
Kevin Chynfc468262019-08-20 17:17:11 -0700379 opPackageName,
Kevin Chync8cb6852020-03-10 18:29:15 -0700380 skipAnimation,
381 operationId);
Kevin Chync53d9812019-07-30 18:10:30 -0700382
383 if (newDialog == null) {
384 Log.e(TAG, "Unsupported type: " + type);
Kevin Chyn42653e82018-01-19 14:15:46 -0800385 return;
386 }
Kevin Chync53d9812019-07-30 18:10:30 -0700387
388 if (DEBUG) {
Kevin Chynbc3347f2020-02-20 16:45:59 -0800389 Log.d(TAG, "userId: " + userId
Kevin Chync53d9812019-07-30 18:10:30 -0700390 + " savedState: " + savedState
391 + " mCurrentDialog: " + mCurrentDialog
392 + " newDialog: " + newDialog
Kevin Chyn86f1b8e2019-09-24 19:00:49 -0700393 + " type: " + type);
Kevin Chync53d9812019-07-30 18:10:30 -0700394 }
395
Kevin Chyn9cf89912019-08-30 13:33:58 -0700396 if (mCurrentDialog != null) {
Kevin Chync53d9812019-07-30 18:10:30 -0700397 // If somehow we're asked to show a dialog, the old one doesn't need to be animated
398 // away. This can happen if the app cancels and re-starts auth during configuration
399 // change. This is ugly because we also have to do things on onConfigurationChanged
400 // here.
401 mCurrentDialog.dismissWithoutCallback(false /* animate */);
402 }
403
404 mReceiver = (IBiometricServiceReceiverInternal) args.arg2;
405 mCurrentDialog = newDialog;
Kevin Chyn9cf89912019-08-30 13:33:58 -0700406 mCurrentDialog.show(mWindowManager, savedState);
Kevin Chync53d9812019-07-30 18:10:30 -0700407 }
408
Kevin Chyn050315f2019-08-08 14:22:54 -0700409 private void onDialogDismissed(@DismissedReason int reason) {
410 if (DEBUG) Log.d(TAG, "onDialogDismissed: " + reason);
Kevin Chync53d9812019-07-30 18:10:30 -0700411 if (mCurrentDialog == null) {
412 Log.w(TAG, "Dialog already dismissed");
Kevin Chyn42653e82018-01-19 14:15:46 -0800413 }
414 mReceiver = null;
Kevin Chync53d9812019-07-30 18:10:30 -0700415 mCurrentDialog = null;
Kevin Chyn23289ef2018-11-28 16:32:36 -0800416 }
417
Gus Prevasa7df7b22018-10-30 10:29:34 -0400418 @Override
419 protected void onConfigurationChanged(Configuration newConfig) {
Kevin Chyn02129b12018-11-01 16:47:12 -0700420 super.onConfigurationChanged(newConfig);
Kevin Chyne1912712019-01-04 14:22:34 -0800421
422 // Save the state of the current dialog (buttons showing, etc)
Kevin Chyne1912712019-01-04 14:22:34 -0800423 if (mCurrentDialog != null) {
Kevin Chync53d9812019-07-30 18:10:30 -0700424 final Bundle savedState = new Bundle();
Kevin Chyne1912712019-01-04 14:22:34 -0800425 mCurrentDialog.onSaveState(savedState);
Kevin Chync53d9812019-07-30 18:10:30 -0700426 mCurrentDialog.dismissWithoutCallback(false /* animate */);
427 mCurrentDialog = null;
Kevin Chyne1912712019-01-04 14:22:34 -0800428
Kevin Chyn27da7182019-09-11 12:17:55 -0700429 // Only show the dialog if necessary. If it was animating out, the dialog is supposed
430 // to send its pending callback immediately.
431 if (savedState.getInt(AuthDialog.KEY_CONTAINER_STATE)
432 != AuthContainerView.STATE_ANIMATING_OUT) {
Kevin Chyn8cbb4882019-09-19 16:49:02 -0700433 final boolean credentialShowing =
434 savedState.getBoolean(AuthDialog.KEY_CREDENTIAL_SHOWING);
Kevin Chyn86f1b8e2019-09-24 19:00:49 -0700435 if (credentialShowing) {
436 // TODO: Clean this up
437 Bundle bundle = (Bundle) mCurrentDialogArgs.arg1;
438 bundle.putInt(BiometricPrompt.KEY_AUTHENTICATORS_ALLOWED,
Curtis Belmonte13eb5812019-10-22 14:17:30 -0700439 Authenticators.DEVICE_CREDENTIAL);
Kevin Chyn86f1b8e2019-09-24 19:00:49 -0700440 }
Kevin Chyn8cbb4882019-09-19 16:49:02 -0700441
Kevin Chyn86f1b8e2019-09-24 19:00:49 -0700442 showDialog(mCurrentDialogArgs, true /* skipAnimation */, savedState);
Kevin Chyn27da7182019-09-11 12:17:55 -0700443 }
Gus Prevasa7df7b22018-10-30 10:29:34 -0400444 }
Kevin Chync53d9812019-07-30 18:10:30 -0700445 }
Kevin Chyne1912712019-01-04 14:22:34 -0800446
Kevin Chynf8688a02019-08-27 17:04:05 -0700447 protected AuthDialog buildDialog(Bundle biometricPromptBundle, boolean requireConfirmation,
Kevin Chync8cb6852020-03-10 18:29:15 -0700448 int userId, int type, String opPackageName, boolean skipIntro, long operationId) {
Kevin Chynd837ced2019-09-11 16:09:43 -0700449 return new AuthContainerView.Builder(mContext)
450 .setCallback(this)
451 .setBiometricPromptBundle(biometricPromptBundle)
452 .setRequireConfirmation(requireConfirmation)
453 .setUserId(userId)
454 .setOpPackageName(opPackageName)
455 .setSkipIntro(skipIntro)
Kevin Chync8cb6852020-03-10 18:29:15 -0700456 .setOperationId(operationId)
Kevin Chynd837ced2019-09-11 16:09:43 -0700457 .build(type);
Gus Prevasa7df7b22018-10-30 10:29:34 -0400458 }
Kevin Chynaae4a152018-01-18 11:48:09 -0800459}