Merge "Add SafetyNet logging for b/79776455" into rvc-dev am: 0b2bb19db4
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11853950 Change-Id: Ic741b43434aa171b72da5de961020b153bb06976
This commit is contained in:
@@ -79,6 +79,7 @@ import android.telephony.SubscriptionInfo;
|
|||||||
import android.telephony.SubscriptionManager;
|
import android.telephony.SubscriptionManager;
|
||||||
import android.telephony.SubscriptionManager.OnSubscriptionsChangedListener;
|
import android.telephony.SubscriptionManager.OnSubscriptionsChangedListener;
|
||||||
import android.telephony.TelephonyManager;
|
import android.telephony.TelephonyManager;
|
||||||
|
import android.util.EventLog;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.util.SparseArray;
|
import android.util.SparseArray;
|
||||||
import android.util.SparseBooleanArray;
|
import android.util.SparseBooleanArray;
|
||||||
@@ -1074,6 +1075,17 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener, Dumpab
|
|||||||
!= LockPatternUtils.StrongAuthTracker.STRONG_AUTH_NOT_REQUIRED;
|
!= LockPatternUtils.StrongAuthTracker.STRONG_AUTH_NOT_REQUIRED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private boolean isUserEncryptedOrLockdown(int userId) {
|
||||||
|
// Biometrics should not be started in this case. Think carefully before modifying this
|
||||||
|
// method, see b/79776455
|
||||||
|
final int strongAuth = mStrongAuthTracker.getStrongAuthForUser(userId);
|
||||||
|
final boolean isLockDown =
|
||||||
|
containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW)
|
||||||
|
|| containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN);
|
||||||
|
final boolean isEncrypted = containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_BOOT);
|
||||||
|
return isLockDown || isEncrypted;
|
||||||
|
}
|
||||||
|
|
||||||
private boolean containsFlag(int haystack, int needle) {
|
private boolean containsFlag(int haystack, int needle) {
|
||||||
return (haystack & needle) != 0;
|
return (haystack & needle) != 0;
|
||||||
}
|
}
|
||||||
@@ -1904,11 +1916,6 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener, Dumpab
|
|||||||
final boolean allowedOnBouncer =
|
final boolean allowedOnBouncer =
|
||||||
!(mFingerprintLockedOut && mBouncer && mCredentialAttempted);
|
!(mFingerprintLockedOut && mBouncer && mCredentialAttempted);
|
||||||
final int user = getCurrentUser();
|
final int user = getCurrentUser();
|
||||||
final int strongAuth = mStrongAuthTracker.getStrongAuthForUser(user);
|
|
||||||
final boolean isLockDown =
|
|
||||||
containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW)
|
|
||||||
|| containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN);
|
|
||||||
final boolean isEncrypted = containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_BOOT);
|
|
||||||
|
|
||||||
// Only listen if this KeyguardUpdateMonitor belongs to the primary user. There is an
|
// Only listen if this KeyguardUpdateMonitor belongs to the primary user. There is an
|
||||||
// instance of KeyguardUpdateMonitor for each user but KeyguardUpdateMonitor is user-aware.
|
// instance of KeyguardUpdateMonitor for each user but KeyguardUpdateMonitor is user-aware.
|
||||||
@@ -1917,7 +1924,7 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener, Dumpab
|
|||||||
shouldListenForFingerprintAssistant() || (mKeyguardOccluded && mIsDreaming))
|
shouldListenForFingerprintAssistant() || (mKeyguardOccluded && mIsDreaming))
|
||||||
&& !mSwitchingUser && !isFingerprintDisabled(getCurrentUser())
|
&& !mSwitchingUser && !isFingerprintDisabled(getCurrentUser())
|
||||||
&& (!mKeyguardGoingAway || !mDeviceInteractive) && mIsPrimaryUser
|
&& (!mKeyguardGoingAway || !mDeviceInteractive) && mIsPrimaryUser
|
||||||
&& allowedOnBouncer && !isLockDown && !isEncrypted;
|
&& allowedOnBouncer && !isUserEncryptedOrLockdown(user);
|
||||||
return shouldListen;
|
return shouldListen;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1931,11 +1938,6 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener, Dumpab
|
|||||||
&& !statusBarShadeLocked;
|
&& !statusBarShadeLocked;
|
||||||
final int user = getCurrentUser();
|
final int user = getCurrentUser();
|
||||||
final int strongAuth = mStrongAuthTracker.getStrongAuthForUser(user);
|
final int strongAuth = mStrongAuthTracker.getStrongAuthForUser(user);
|
||||||
final boolean isLockDown =
|
|
||||||
containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_DPM_LOCK_NOW)
|
|
||||||
|| containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_USER_LOCKDOWN);
|
|
||||||
final boolean isEncrypted =
|
|
||||||
containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_BOOT);
|
|
||||||
final boolean isTimedOut =
|
final boolean isTimedOut =
|
||||||
containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_TIMEOUT);
|
containsFlag(strongAuth, STRONG_AUTH_REQUIRED_AFTER_TIMEOUT);
|
||||||
|
|
||||||
@@ -1958,7 +1960,7 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener, Dumpab
|
|||||||
&& !mSwitchingUser && !isFaceDisabled(user) && becauseCannotSkipBouncer
|
&& !mSwitchingUser && !isFaceDisabled(user) && becauseCannotSkipBouncer
|
||||||
&& !mKeyguardGoingAway && mFaceSettingEnabledForUser.get(user) && !mLockIconPressed
|
&& !mKeyguardGoingAway && mFaceSettingEnabledForUser.get(user) && !mLockIconPressed
|
||||||
&& strongAuthAllowsScanning && mIsPrimaryUser
|
&& strongAuthAllowsScanning && mIsPrimaryUser
|
||||||
&& !mSecureCameraLaunched && !isLockDown && !isEncrypted;
|
&& !mSecureCameraLaunched && !isUserEncryptedOrLockdown(user);
|
||||||
|
|
||||||
// Aggregate relevant fields for debug logging.
|
// Aggregate relevant fields for debug logging.
|
||||||
if (DEBUG_FACE || DEBUG_SPEW) {
|
if (DEBUG_FACE || DEBUG_SPEW) {
|
||||||
@@ -2031,6 +2033,11 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener, Dumpab
|
|||||||
if (mFingerprintCancelSignal != null) {
|
if (mFingerprintCancelSignal != null) {
|
||||||
mFingerprintCancelSignal.cancel();
|
mFingerprintCancelSignal.cancel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isUserEncryptedOrLockdown(userId)) {
|
||||||
|
// If this happens, shouldListenForFingerprint() is wrong. SafetyNet for b/79776455
|
||||||
|
EventLog.writeEvent(0x534e4554, "79776455", "startListeningForFingerprint");
|
||||||
|
}
|
||||||
mFingerprintCancelSignal = new CancellationSignal();
|
mFingerprintCancelSignal = new CancellationSignal();
|
||||||
mFpm.authenticate(null, mFingerprintCancelSignal, 0, mFingerprintAuthenticationCallback,
|
mFpm.authenticate(null, mFingerprintCancelSignal, 0, mFingerprintAuthenticationCallback,
|
||||||
null, userId);
|
null, userId);
|
||||||
@@ -2049,6 +2056,11 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener, Dumpab
|
|||||||
if (mFaceCancelSignal != null) {
|
if (mFaceCancelSignal != null) {
|
||||||
mFaceCancelSignal.cancel();
|
mFaceCancelSignal.cancel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isUserEncryptedOrLockdown(userId)) {
|
||||||
|
// If this happens, shouldListenForFace() is wrong. SafetyNet for b/79776455
|
||||||
|
EventLog.writeEvent(0x534e4554, "79776455", "startListeningForFace");
|
||||||
|
}
|
||||||
mFaceCancelSignal = new CancellationSignal();
|
mFaceCancelSignal = new CancellationSignal();
|
||||||
mFaceManager.authenticate(null, mFaceCancelSignal, 0,
|
mFaceManager.authenticate(null, mFaceCancelSignal, 0,
|
||||||
mFaceAuthenticationCallback, null, userId);
|
mFaceAuthenticationCallback, null, userId);
|
||||||
|
|||||||
Reference in New Issue
Block a user