blob: d3ead26d963a76fb401517fe9729d62d2ae90d0a [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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
17package com.android.internal.widget;
18
Amith Yamasani4b4b9542012-09-14 13:36:29 -070019import android.app.ActivityManagerNative;
Dianne Hackborn87bba1e2010-02-26 17:25:54 -080020import android.app.admin.DevicePolicyManager;
Jim Miller51117262012-11-04 17:58:09 -080021import android.appwidget.AppWidgetManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.ContentResolver;
Jim Miller31f90b62010-01-20 13:35:20 -080023import android.content.Context;
Steven Ross329979c2011-09-28 11:42:56 -040024import android.content.Intent;
Danielle Millett58396982011-09-30 13:55:07 -040025import android.content.pm.PackageManager;
Amith Yamasani52c489c2012-03-28 11:42:42 -070026import android.os.Binder;
Jason parksf7b3cd42011-01-27 09:28:25 -060027import android.os.IBinder;
Jim Miller69ac9882010-02-24 15:35:05 -080028import android.os.RemoteException;
29import android.os.ServiceManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.os.SystemClock;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070031import android.os.UserHandle;
Jason parksf7b3cd42011-01-27 09:28:25 -060032import android.os.storage.IMountService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033import android.provider.Settings;
Brian Carlstrom5cfee3f2011-05-31 01:00:15 -070034import android.security.KeyStore;
Jim Miller69ac9882010-02-24 15:35:05 -080035import android.telephony.TelephonyManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036import android.text.TextUtils;
37import android.util.Log;
Jim Miller51117262012-11-04 17:58:09 -080038import android.view.IWindowManager;
John Wang0f7b3f82011-05-31 11:20:55 -070039import android.view.View;
Jim Miller69ac9882010-02-24 15:35:05 -080040import android.widget.Button;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041
Michael Jurka1254f2f2012-10-25 11:44:31 -070042import com.android.internal.R;
43import com.android.internal.telephony.ITelephony;
44import com.google.android.collect.Lists;
Michael Jurkaaa2859a2012-10-24 12:46:49 -070045
Brian Carlstrom929a1c22011-02-01 21:54:09 -080046import java.security.MessageDigest;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047import java.security.NoSuchAlgorithmException;
Jim Miller11b019d2010-01-20 16:34:45 -080048import java.security.SecureRandom;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049import java.util.List;
50
51/**
Brian Carlstrom5cfee3f2011-05-31 01:00:15 -070052 * Utilities for the lock pattern and its settings.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053 */
54public class LockPatternUtils {
55
56 private static final String TAG = "LockPatternUtils";
Jim Miller69aa4a92009-12-22 19:03:28 -080057
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058 /**
59 * The maximum number of incorrect attempts before the user is prevented
60 * from trying again for {@link #FAILED_ATTEMPT_TIMEOUT_MS}.
61 */
62 public static final int FAILED_ATTEMPTS_BEFORE_TIMEOUT = 5;
63
64 /**
65 * The number of incorrect attempts before which we fall back on an alternative
66 * method of verifying the user, and resetting their lock pattern.
67 */
68 public static final int FAILED_ATTEMPTS_BEFORE_RESET = 20;
69
70 /**
71 * How long the user is prevented from trying again after entering the
72 * wrong pattern too many times.
73 */
74 public static final long FAILED_ATTEMPT_TIMEOUT_MS = 30000L;
75
76 /**
77 * The interval of the countdown for showing progress of the lockout.
78 */
79 public static final long FAILED_ATTEMPT_COUNTDOWN_INTERVAL_MS = 1000L;
80
Jim Miller4f369952011-08-19 18:29:22 -070081
82 /**
83 * This dictates when we start telling the user that continued failed attempts will wipe
84 * their device.
85 */
86 public static final int FAILED_ATTEMPTS_BEFORE_WIPE_GRACE = 5;
87
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 /**
89 * The minimum number of dots in a valid pattern.
90 */
91 public static final int MIN_LOCK_PATTERN_SIZE = 4;
92
93 /**
94 * The minimum number of dots the user must include in a wrong pattern
95 * attempt for it to be counted against the counts that affect
96 * {@link #FAILED_ATTEMPTS_BEFORE_TIMEOUT} and {@link #FAILED_ATTEMPTS_BEFORE_RESET}
97 */
Jim Miller4f369952011-08-19 18:29:22 -070098 public static final int MIN_PATTERN_REGISTER_FAIL = MIN_LOCK_PATTERN_SIZE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099
Danielle Millett925a7d82012-03-19 18:02:20 -0400100 /**
Adam Cohenf7522022012-10-03 20:03:18 -0700101 * Tells the keyguard to show the user switcher when the keyguard is created.
102 */
103 public static final String KEYGUARD_SHOW_USER_SWITCHER = "showuserswitcher";
104
105 /**
106 * Tells the keyguard to show the security challenge when the keyguard is created.
107 */
108 public static final String KEYGUARD_SHOW_SECURITY_CHALLENGE = "showsecuritychallenge";
109
110 /**
Michael Jurka76017ca2012-11-06 16:21:09 -0800111 * Tells the keyguard to show the widget with the specified id when the keyguard is created.
112 */
113 public static final String KEYGUARD_SHOW_APPWIDGET = "showappwidget";
114
115 /**
Danielle Millett925a7d82012-03-19 18:02:20 -0400116 * The bit in LOCK_BIOMETRIC_WEAK_FLAGS to be used to indicate whether liveliness should
117 * be used
118 */
119 public static final int FLAG_BIOMETRIC_WEAK_LIVELINESS = 0x1;
120
Michael Jurka1254f2f2012-10-25 11:44:31 -0700121 /**
122 * Pseudo-appwidget id we use to represent the default clock status widget
123 */
124 public static final int ID_DEFAULT_STATUS_WIDGET = -2;
125
Jeff Sharkey7a96c392012-11-15 14:01:46 -0800126 public final static String LOCKOUT_PERMANENT_KEY = "lockscreen.lockedoutpermanently";
127 public final static String LOCKOUT_ATTEMPT_DEADLINE = "lockscreen.lockoutattemptdeadline";
128 public final static String PATTERN_EVER_CHOSEN_KEY = "lockscreen.patterneverchosen";
Jim Miller69aa4a92009-12-22 19:03:28 -0800129 public final static String PASSWORD_TYPE_KEY = "lockscreen.password_type";
Jim Miller6edf2632011-09-05 16:03:14 -0700130 public static final String PASSWORD_TYPE_ALTERNATE_KEY = "lockscreen.password_type_alternate";
Jeff Sharkey7a96c392012-11-15 14:01:46 -0800131 public final static String LOCK_PASSWORD_SALT_KEY = "lockscreen.password_salt";
132 public final static String DISABLE_LOCKSCREEN_KEY = "lockscreen.disabled";
133 public final static String LOCKSCREEN_OPTIONS = "lockscreen.options";
Jim Miller6edf2632011-09-05 16:03:14 -0700134 public final static String LOCKSCREEN_BIOMETRIC_WEAK_FALLBACK
135 = "lockscreen.biometric_weak_fallback";
Danielle Millett7a072192011-10-03 17:36:01 -0400136 public final static String BIOMETRIC_WEAK_EVER_CHOSEN_KEY
137 = "lockscreen.biometricweakeverchosen";
Jim Millera4edd152012-01-06 18:24:04 -0800138 public final static String LOCKSCREEN_POWER_BUTTON_INSTANTLY_LOCKS
139 = "lockscreen.power_button_instantly_locks";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140
Jeff Sharkey7a96c392012-11-15 14:01:46 -0800141 public final static String PASSWORD_HISTORY_KEY = "lockscreen.passwordhistory";
Konstantin Lopyrev863f22d2010-05-12 17:16:58 -0700142
Jim Miller187ec582013-04-15 18:27:54 -0700143 private static final String LOCK_SCREEN_OWNER_INFO = Settings.Secure.LOCK_SCREEN_OWNER_INFO;
144 private static final String LOCK_SCREEN_OWNER_INFO_ENABLED =
145 Settings.Secure.LOCK_SCREEN_OWNER_INFO_ENABLED;
146
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800147 private final Context mContext;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 private final ContentResolver mContentResolver;
Jim Miller31f90b62010-01-20 13:35:20 -0800149 private DevicePolicyManager mDevicePolicyManager;
Amith Yamasani52c489c2012-03-28 11:42:42 -0700150 private ILockSettings mLockSettingsService;
Jim Milleree82f8f2012-10-01 16:26:18 -0700151
152 // The current user is set by KeyguardViewMediator and shared by all LockPatternUtils.
153 private static volatile int sCurrentUserId = UserHandle.USER_NULL;
Dianne Hackbornde4c26f2011-07-17 13:42:47 -0700154
Jim Millercd709882010-03-25 18:24:02 -0700155 public DevicePolicyManager getDevicePolicyManager() {
Jim Miller5b0fb3a2010-02-23 13:46:35 -0800156 if (mDevicePolicyManager == null) {
157 mDevicePolicyManager =
158 (DevicePolicyManager)mContext.getSystemService(Context.DEVICE_POLICY_SERVICE);
159 if (mDevicePolicyManager == null) {
160 Log.e(TAG, "Can't get DevicePolicyManagerService: is it running?",
161 new IllegalStateException("Stack trace:"));
162 }
163 }
164 return mDevicePolicyManager;
165 }
Amith Yamasani52c489c2012-03-28 11:42:42 -0700166
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 /**
168 * @param contentResolver Used to look up and save settings.
169 */
Jim Miller31f90b62010-01-20 13:35:20 -0800170 public LockPatternUtils(Context context) {
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800171 mContext = context;
Jim Miller31f90b62010-01-20 13:35:20 -0800172 mContentResolver = context.getContentResolver();
Amith Yamasani52c489c2012-03-28 11:42:42 -0700173 }
Jim Miller69aa4a92009-12-22 19:03:28 -0800174
Amith Yamasani52c489c2012-03-28 11:42:42 -0700175 private ILockSettings getLockSettings() {
176 if (mLockSettingsService == null) {
177 mLockSettingsService = ILockSettings.Stub.asInterface(
178 (IBinder) ServiceManager.getService("lock_settings"));
Brad Fitzpatrick90881002010-08-23 18:30:08 -0700179 }
Amith Yamasani52c489c2012-03-28 11:42:42 -0700180 return mLockSettingsService;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181 }
182
Jim Miller31f90b62010-01-20 13:35:20 -0800183 public int getRequestedMinimumPasswordLength() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700184 return getDevicePolicyManager().getPasswordMinimumLength(null, getCurrentOrCallingUserId());
Jim Miller31f90b62010-01-20 13:35:20 -0800185 }
186
Jim Miller31f90b62010-01-20 13:35:20 -0800187 /**
188 * Gets the device policy password mode. If the mode is non-specific, returns
189 * MODE_PATTERN which allows the user to choose anything.
Jim Miller31f90b62010-01-20 13:35:20 -0800190 */
Jim Millercd709882010-03-25 18:24:02 -0700191 public int getRequestedPasswordQuality() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700192 return getDevicePolicyManager().getPasswordQuality(null, getCurrentOrCallingUserId());
Jim Miller31f90b62010-01-20 13:35:20 -0800193 }
194
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700195 public int getRequestedPasswordHistoryLength() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700196 return getDevicePolicyManager().getPasswordHistoryLength(null, getCurrentOrCallingUserId());
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700197 }
198
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700199 public int getRequestedPasswordMinimumLetters() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700200 return getDevicePolicyManager().getPasswordMinimumLetters(null,
201 getCurrentOrCallingUserId());
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700202 }
203
204 public int getRequestedPasswordMinimumUpperCase() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700205 return getDevicePolicyManager().getPasswordMinimumUpperCase(null,
206 getCurrentOrCallingUserId());
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700207 }
208
209 public int getRequestedPasswordMinimumLowerCase() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700210 return getDevicePolicyManager().getPasswordMinimumLowerCase(null,
211 getCurrentOrCallingUserId());
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700212 }
213
214 public int getRequestedPasswordMinimumNumeric() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700215 return getDevicePolicyManager().getPasswordMinimumNumeric(null,
216 getCurrentOrCallingUserId());
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700217 }
218
219 public int getRequestedPasswordMinimumSymbols() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700220 return getDevicePolicyManager().getPasswordMinimumSymbols(null,
221 getCurrentOrCallingUserId());
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700222 }
223
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700224 public int getRequestedPasswordMinimumNonLetter() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700225 return getDevicePolicyManager().getPasswordMinimumNonLetter(null,
226 getCurrentOrCallingUserId());
Konstantin Lopyrevc8577402010-06-04 17:15:02 -0700227 }
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700228
Jim Miller31f90b62010-01-20 13:35:20 -0800229 /**
230 * Returns the actual password mode, as set by keyguard after updating the password.
231 *
232 * @return
233 */
Jim Miller31f90b62010-01-20 13:35:20 -0800234 public void reportFailedPasswordAttempt() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700235 getDevicePolicyManager().reportFailedPasswordAttempt(getCurrentOrCallingUserId());
Jim Miller31f90b62010-01-20 13:35:20 -0800236 }
237
238 public void reportSuccessfulPasswordAttempt() {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700239 getDevicePolicyManager().reportSuccessfulPasswordAttempt(getCurrentOrCallingUserId());
Jim Miller31f90b62010-01-20 13:35:20 -0800240 }
241
Amith Yamasani52c489c2012-03-28 11:42:42 -0700242 public void setCurrentUser(int userId) {
Jim Milleree82f8f2012-10-01 16:26:18 -0700243 sCurrentUserId = userId;
Amith Yamasani52c489c2012-03-28 11:42:42 -0700244 }
245
Amith Yamasanif882f1a2012-04-10 15:13:39 -0700246 public int getCurrentUser() {
Jim Milleree82f8f2012-10-01 16:26:18 -0700247 if (sCurrentUserId != UserHandle.USER_NULL) {
Jim Miller25645d82012-09-21 14:47:54 -0700248 // Someone is regularly updating using setCurrentUser() use that value.
Jim Milleree82f8f2012-10-01 16:26:18 -0700249 return sCurrentUserId;
Jim Miller25645d82012-09-21 14:47:54 -0700250 }
251 try {
252 return ActivityManagerNative.getDefault().getCurrentUser().id;
253 } catch (RemoteException re) {
254 return UserHandle.USER_OWNER;
Amith Yamasanif882f1a2012-04-10 15:13:39 -0700255 }
256 }
257
Amith Yamasani52c489c2012-03-28 11:42:42 -0700258 public void removeUser(int userId) {
Jim Miller25645d82012-09-21 14:47:54 -0700259 try {
260 getLockSettings().removeUser(userId);
261 } catch (RemoteException re) {
262 Log.e(TAG, "Couldn't remove lock settings for user " + userId);
Amith Yamasani52c489c2012-03-28 11:42:42 -0700263 }
264 }
265
266 private int getCurrentOrCallingUserId() {
267 int callingUid = Binder.getCallingUid();
268 if (callingUid == android.os.Process.SYSTEM_UID) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700269 // TODO: This is a little inefficient. See if all users of this are able to
270 // handle USER_CURRENT and pass that instead.
271 return getCurrentUser();
Amith Yamasani52c489c2012-03-28 11:42:42 -0700272 } else {
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700273 return UserHandle.getUserId(callingUid);
Amith Yamasani52c489c2012-03-28 11:42:42 -0700274 }
275 }
276
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 /**
278 * Check to see if a pattern matches the saved pattern. If no pattern exists,
279 * always returns true.
280 * @param pattern The pattern to check.
Jim Miller69aa4a92009-12-22 19:03:28 -0800281 * @return Whether the pattern matches the stored one.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 */
283 public boolean checkPattern(List<LockPatternView.Cell> pattern) {
Kenny Rootdf8bfe02012-09-21 15:00:25 -0700284 final int userId = getCurrentOrCallingUserId();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 try {
Kenny Rootdf8bfe02012-09-21 15:00:25 -0700286 final boolean matched = getLockSettings().checkPattern(patternToHash(pattern), userId);
287 if (matched && (userId == UserHandle.USER_OWNER)) {
288 KeyStore.getInstance().password(patternToString(pattern));
289 }
290 return matched;
Amith Yamasani52c489c2012-03-28 11:42:42 -0700291 } catch (RemoteException re) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800292 return true;
293 }
294 }
295
296 /**
Jim Miller69aa4a92009-12-22 19:03:28 -0800297 * Check to see if a password matches the saved password. If no password exists,
298 * always returns true.
299 * @param password The password to check.
300 * @return Whether the password matches the stored one.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800301 */
Jim Miller69aa4a92009-12-22 19:03:28 -0800302 public boolean checkPassword(String password) {
Kenny Rootdf8bfe02012-09-21 15:00:25 -0700303 final int userId = getCurrentOrCallingUserId();
Jim Miller69aa4a92009-12-22 19:03:28 -0800304 try {
Kenny Rootdf8bfe02012-09-21 15:00:25 -0700305 final boolean matched = getLockSettings().checkPassword(passwordToHash(password),
306 userId);
307 if (matched && (userId == UserHandle.USER_OWNER)) {
308 KeyStore.getInstance().password(password);
309 }
310 return matched;
Amith Yamasani52c489c2012-03-28 11:42:42 -0700311 } catch (RemoteException re) {
Jim Miller69aa4a92009-12-22 19:03:28 -0800312 return true;
313 }
314 }
315
316 /**
Konstantin Lopyrev863f22d2010-05-12 17:16:58 -0700317 * Check to see if a password matches any of the passwords stored in the
318 * password history.
319 *
320 * @param password The password to check.
321 * @return Whether the password matches any in the history.
322 */
323 public boolean checkPasswordHistory(String password) {
324 String passwordHashString = new String(passwordToHash(password));
325 String passwordHistory = getString(PASSWORD_HISTORY_KEY);
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700326 if (passwordHistory == null) {
327 return false;
328 }
329 // Password History may be too long...
330 int passwordHashLength = passwordHashString.length();
331 int passwordHistoryLength = getRequestedPasswordHistoryLength();
332 if(passwordHistoryLength == 0) {
333 return false;
334 }
335 int neededPasswordHistoryLength = passwordHashLength * passwordHistoryLength
336 + passwordHistoryLength - 1;
337 if (passwordHistory.length() > neededPasswordHistoryLength) {
338 passwordHistory = passwordHistory.substring(0, neededPasswordHistoryLength);
339 }
340 return passwordHistory.contains(passwordHashString);
Konstantin Lopyrev863f22d2010-05-12 17:16:58 -0700341 }
342
343 /**
Jim Miller69aa4a92009-12-22 19:03:28 -0800344 * Check to see if the user has stored a lock pattern.
345 * @return Whether a saved pattern exists.
346 */
347 public boolean savedPatternExists() {
Amith Yamasani52c489c2012-03-28 11:42:42 -0700348 try {
349 return getLockSettings().havePattern(getCurrentOrCallingUserId());
350 } catch (RemoteException re) {
351 return false;
352 }
Jim Miller69aa4a92009-12-22 19:03:28 -0800353 }
354
355 /**
356 * Check to see if the user has stored a lock pattern.
357 * @return Whether a saved pattern exists.
358 */
359 public boolean savedPasswordExists() {
Amith Yamasani52c489c2012-03-28 11:42:42 -0700360 try {
361 return getLockSettings().havePassword(getCurrentOrCallingUserId());
362 } catch (RemoteException re) {
363 return false;
364 }
Jim Miller69aa4a92009-12-22 19:03:28 -0800365 }
366
367 /**
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700368 * Return true if the user has ever chosen a pattern. This is true even if the pattern is
369 * currently cleared.
370 *
371 * @return True if the user has ever chosen a pattern.
372 */
373 public boolean isPatternEverChosen() {
Jim Millera4edd152012-01-06 18:24:04 -0800374 return getBoolean(PATTERN_EVER_CHOSEN_KEY, false);
The Android Open Source Projectba87e3e2009-03-13 13:04:22 -0700375 }
376
377 /**
Danielle Millett7a072192011-10-03 17:36:01 -0400378 * Return true if the user has ever chosen biometric weak. This is true even if biometric
379 * weak is not current set.
380 *
381 * @return True if the user has ever chosen biometric weak.
382 */
383 public boolean isBiometricWeakEverChosen() {
Jim Millera4edd152012-01-06 18:24:04 -0800384 return getBoolean(BIOMETRIC_WEAK_EVER_CHOSEN_KEY, false);
Danielle Millett7a072192011-10-03 17:36:01 -0400385 }
386
387 /**
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700388 * Used by device policy manager to validate the current password
389 * information it has.
390 */
391 public int getActivePasswordQuality() {
Jim Millercd709882010-03-25 18:24:02 -0700392 int activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED;
Danielle Millettc8fb5322011-10-04 12:18:51 -0400393 // Note we don't want to use getKeyguardStoredPasswordQuality() because we want this to
394 // return biometric_weak if that is being used instead of the backup
395 int quality =
396 (int) getLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
397 switch (quality) {
Jim Millercd709882010-03-25 18:24:02 -0700398 case DevicePolicyManager.PASSWORD_QUALITY_SOMETHING:
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700399 if (isLockPatternEnabled()) {
Jim Millercd709882010-03-25 18:24:02 -0700400 activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_SOMETHING;
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700401 }
Jim Millercd709882010-03-25 18:24:02 -0700402 break;
Danielle Millettc8fb5322011-10-04 12:18:51 -0400403 case DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK:
404 if (isBiometricWeakInstalled()) {
405 activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK;
406 }
407 break;
Jim Millercd709882010-03-25 18:24:02 -0700408 case DevicePolicyManager.PASSWORD_QUALITY_NUMERIC:
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700409 if (isLockPasswordEnabled()) {
Jim Millercd709882010-03-25 18:24:02 -0700410 activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_NUMERIC;
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700411 }
Jim Millercd709882010-03-25 18:24:02 -0700412 break;
413 case DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC:
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700414 if (isLockPasswordEnabled()) {
Jim Millercd709882010-03-25 18:24:02 -0700415 activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC;
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700416 }
Jim Millercd709882010-03-25 18:24:02 -0700417 break;
418 case DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC:
419 if (isLockPasswordEnabled()) {
420 activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC;
421 }
422 break;
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700423 case DevicePolicyManager.PASSWORD_QUALITY_COMPLEX:
424 if (isLockPasswordEnabled()) {
425 activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_COMPLEX;
426 }
427 break;
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700428 }
Danielle Millettc8fb5322011-10-04 12:18:51 -0400429
Jim Millercd709882010-03-25 18:24:02 -0700430 return activePasswordQuality;
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700431 }
Jim Millercd709882010-03-25 18:24:02 -0700432
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700433 /**
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800434 * Clear any lock pattern or password.
435 */
Steven Ross329979c2011-09-28 11:42:56 -0400436 public void clearLock(boolean isFallback) {
437 if(!isFallback) deleteGallery();
Jim Millercd709882010-03-25 18:24:02 -0700438 saveLockPassword(null, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800439 setLockPatternEnabled(false);
440 saveLockPattern(null);
Jim Miller93708af12012-01-25 18:26:12 -0800441 setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED);
Jim Miller6edf2632011-09-05 16:03:14 -0700442 setLong(PASSWORD_TYPE_ALTERNATE_KEY, DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED);
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800443 }
Jim Miller5b0fb3a2010-02-23 13:46:35 -0800444
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800445 /**
Jim Miller2a98a4c2010-11-19 18:49:26 -0800446 * Disable showing lock screen at all when the DevicePolicyManager allows it.
447 * This is only meaningful if pattern, pin or password are not set.
448 *
449 * @param disable Disables lock screen when true
450 */
451 public void setLockScreenDisabled(boolean disable) {
452 setLong(DISABLE_LOCKSCREEN_KEY, disable ? 1 : 0);
453 }
454
455 /**
456 * Determine if LockScreen can be disabled. This is used, for example, to tell if we should
457 * show LockScreen or go straight to the home screen.
458 *
459 * @return true if lock screen is can be disabled
460 */
461 public boolean isLockScreenDisabled() {
462 return !isSecure() && getLong(DISABLE_LOCKSCREEN_KEY, 0) != 0;
463 }
464
465 /**
Steven Ross3553c292011-09-30 15:48:40 -0400466 * Calls back SetupFaceLock to delete the temporary gallery file
Steven Ross329979c2011-09-28 11:42:56 -0400467 */
468 public void deleteTempGallery() {
Danielle Millett574e49e2012-03-27 16:17:10 -0400469 Intent intent = new Intent().setAction("com.android.facelock.DELETE_GALLERY");
Steven Ross3553c292011-09-30 15:48:40 -0400470 intent.putExtra("deleteTempGallery", true);
Danielle Millett574e49e2012-03-27 16:17:10 -0400471 mContext.sendBroadcast(intent);
Steven Ross329979c2011-09-28 11:42:56 -0400472 }
473
474 /**
475 * Calls back SetupFaceLock to delete the gallery file when the lock type is changed
476 */
477 void deleteGallery() {
Danielle Millett58396982011-09-30 13:55:07 -0400478 if(usingBiometricWeak()) {
Danielle Millett574e49e2012-03-27 16:17:10 -0400479 Intent intent = new Intent().setAction("com.android.facelock.DELETE_GALLERY");
Steven Ross329979c2011-09-28 11:42:56 -0400480 intent.putExtra("deleteGallery", true);
Danielle Millett574e49e2012-03-27 16:17:10 -0400481 mContext.sendBroadcast(intent);
Steven Ross329979c2011-09-28 11:42:56 -0400482 }
483 }
484
485 /**
Jim Miller6edf2632011-09-05 16:03:14 -0700486 * Save a lock pattern.
487 * @param pattern The new pattern to save.
Danielle Millett2364a222011-12-21 17:02:32 -0500488 */
489 public void saveLockPattern(List<LockPatternView.Cell> pattern) {
490 this.saveLockPattern(pattern, false);
491 }
492
493 /**
494 * Save a lock pattern.
495 * @param pattern The new pattern to save.
Jim Miller6edf2632011-09-05 16:03:14 -0700496 * @param isFallback Specifies if this is a fallback to biometric weak
497 */
498 public void saveLockPattern(List<LockPatternView.Cell> pattern, boolean isFallback) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 // Compute the hash
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700500 final byte[] hash = LockPatternUtils.patternToHash(pattern);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800501 try {
Amith Yamasani52c489c2012-03-28 11:42:42 -0700502 getLockSettings().setLockPattern(hash, getCurrentOrCallingUserId());
Dianne Hackborn2509d3c2010-03-08 12:54:25 -0800503 DevicePolicyManager dpm = getDevicePolicyManager();
Brian Carlstrome2afc242011-06-02 16:21:55 -0700504 KeyStore keyStore = KeyStore.getInstance();
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800505 if (pattern != null) {
Brian Carlstrome2afc242011-06-02 16:21:55 -0700506 keyStore.password(patternToString(pattern));
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800507 setBoolean(PATTERN_EVER_CHOSEN_KEY, true);
Jim Miller6edf2632011-09-05 16:03:14 -0700508 if (!isFallback) {
Steven Ross329979c2011-09-28 11:42:56 -0400509 deleteGallery();
Jim Miller6edf2632011-09-05 16:03:14 -0700510 setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
Danielle Millett2364a222011-12-21 17:02:32 -0500511 dpm.setActivePasswordState(DevicePolicyManager.PASSWORD_QUALITY_SOMETHING,
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700512 pattern.size(), 0, 0, 0, 0, 0, 0, getCurrentOrCallingUserId());
Jim Miller6edf2632011-09-05 16:03:14 -0700513 } else {
514 setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK);
515 setLong(PASSWORD_TYPE_ALTERNATE_KEY,
516 DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
Danielle Millett044a0a72011-11-07 15:42:12 -0500517 finishBiometricWeak();
Danielle Millett2364a222011-12-21 17:02:32 -0500518 dpm.setActivePasswordState(DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK,
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700519 0, 0, 0, 0, 0, 0, 0, getCurrentOrCallingUserId());
Jim Miller6edf2632011-09-05 16:03:14 -0700520 }
Dianne Hackborn2509d3c2010-03-08 12:54:25 -0800521 } else {
Brian Carlstrome2afc242011-06-02 16:21:55 -0700522 if (keyStore.isEmpty()) {
523 keyStore.reset();
524 }
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -0700525 dpm.setActivePasswordState(DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED, 0, 0,
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700526 0, 0, 0, 0, 0, getCurrentOrCallingUserId());
Jim Miller31f90b62010-01-20 13:35:20 -0800527 }
Amith Yamasani52c489c2012-03-28 11:42:42 -0700528 } catch (RemoteException re) {
529 Log.e(TAG, "Couldn't save lock pattern " + re);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800530 }
531 }
532
Jim Miller187ec582013-04-15 18:27:54 -0700533 public void setOwnerInfo(String info, int userId) {
534 setString(LOCK_SCREEN_OWNER_INFO, info, userId);
535 }
536
537 public void setOwnerInfoEnabled(boolean enabled) {
538 setBoolean(LOCK_SCREEN_OWNER_INFO_ENABLED, enabled);
539 }
540
541 public String getOwnerInfo(int userId) {
542 return getString(LOCK_SCREEN_OWNER_INFO);
543 }
544
545 public boolean isOwnerInfoEnabled() {
546 return getBoolean(LOCK_SCREEN_OWNER_INFO_ENABLED, false);
547 }
548
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800549 /**
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700550 * Compute the password quality from the given password string.
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800551 */
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700552 static public int computePasswordQuality(String password) {
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800553 boolean hasDigit = false;
554 boolean hasNonDigit = false;
555 final int len = password.length();
556 for (int i = 0; i < len; i++) {
557 if (Character.isDigit(password.charAt(i))) {
558 hasDigit = true;
559 } else {
560 hasNonDigit = true;
561 }
562 }
Jim Miller5b0fb3a2010-02-23 13:46:35 -0800563
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700564 if (hasNonDigit && hasDigit) {
565 return DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800566 }
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800567 if (hasNonDigit) {
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700568 return DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800569 }
570 if (hasDigit) {
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700571 return DevicePolicyManager.PASSWORD_QUALITY_NUMERIC;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800572 }
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700573 return DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800574 }
Jim Miller5b0fb3a2010-02-23 13:46:35 -0800575
Jason parksf7b3cd42011-01-27 09:28:25 -0600576 /** Update the encryption password if it is enabled **/
577 private void updateEncryptionPassword(String password) {
578 DevicePolicyManager dpm = getDevicePolicyManager();
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700579 if (dpm.getStorageEncryptionStatus(getCurrentOrCallingUserId())
580 != DevicePolicyManager.ENCRYPTION_STATUS_ACTIVE) {
Jason parksf7b3cd42011-01-27 09:28:25 -0600581 return;
582 }
583
584 IBinder service = ServiceManager.getService("mount");
585 if (service == null) {
586 Log.e(TAG, "Could not find the mount service to update the encryption password");
587 return;
588 }
589
590 IMountService mountService = IMountService.Stub.asInterface(service);
591 try {
592 mountService.changeEncryptionPassword(password);
593 } catch (RemoteException e) {
594 Log.e(TAG, "Error changing encryption password", e);
595 }
596 }
597
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800598 /**
Jim Millercd709882010-03-25 18:24:02 -0700599 * Save a lock password. Does not ensure that the password is as good
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800600 * as the requested mode, but will adjust the mode to be as good as the
601 * pattern.
Jim Miller69aa4a92009-12-22 19:03:28 -0800602 * @param password The password to save
Jim Millercd709882010-03-25 18:24:02 -0700603 * @param quality {@see DevicePolicyManager#getPasswordQuality(android.content.ComponentName)}
Jim Miller69aa4a92009-12-22 19:03:28 -0800604 */
Jim Millercd709882010-03-25 18:24:02 -0700605 public void saveLockPassword(String password, int quality) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700606 this.saveLockPassword(password, quality, false, getCurrentOrCallingUserId());
Jim Miller6edf2632011-09-05 16:03:14 -0700607 }
608
609 /**
610 * Save a lock password. Does not ensure that the password is as good
611 * as the requested mode, but will adjust the mode to be as good as the
612 * pattern.
613 * @param password The password to save
614 * @param quality {@see DevicePolicyManager#getPasswordQuality(android.content.ComponentName)}
615 * @param isFallback Specifies if this is a fallback to biometric weak
616 */
617 public void saveLockPassword(String password, int quality, boolean isFallback) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700618 saveLockPassword(password, quality, isFallback, getCurrentOrCallingUserId());
619 }
620
621 /**
622 * Save a lock password. Does not ensure that the password is as good
623 * as the requested mode, but will adjust the mode to be as good as the
624 * pattern.
625 * @param password The password to save
626 * @param quality {@see DevicePolicyManager#getPasswordQuality(android.content.ComponentName)}
627 * @param isFallback Specifies if this is a fallback to biometric weak
628 * @param userHandle The userId of the user to change the password for
629 */
630 public void saveLockPassword(String password, int quality, boolean isFallback, int userHandle) {
Jim Miller69aa4a92009-12-22 19:03:28 -0800631 // Compute the hash
Jim Miller11b019d2010-01-20 16:34:45 -0800632 final byte[] hash = passwordToHash(password);
Jim Miller69aa4a92009-12-22 19:03:28 -0800633 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700634 getLockSettings().setLockPassword(hash, userHandle);
Dianne Hackborn2509d3c2010-03-08 12:54:25 -0800635 DevicePolicyManager dpm = getDevicePolicyManager();
Brian Carlstrome2afc242011-06-02 16:21:55 -0700636 KeyStore keyStore = KeyStore.getInstance();
Dianne Hackborndf83afa2010-01-20 13:37:26 -0800637 if (password != null) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700638 if (userHandle == UserHandle.USER_OWNER) {
639 // Update the encryption password.
640 updateEncryptionPassword(password);
Jason parksf7b3cd42011-01-27 09:28:25 -0600641
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700642 // Update the keystore password
643 keyStore.password(password);
644 }
Brian Carlstrom5cfee3f2011-05-31 01:00:15 -0700645
Jim Millercd709882010-03-25 18:24:02 -0700646 int computedQuality = computePasswordQuality(password);
Jim Miller6edf2632011-09-05 16:03:14 -0700647 if (!isFallback) {
Steven Ross329979c2011-09-28 11:42:56 -0400648 deleteGallery();
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700649 setLong(PASSWORD_TYPE_KEY, Math.max(quality, computedQuality), userHandle);
Danielle Millett2364a222011-12-21 17:02:32 -0500650 if (computedQuality != DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED) {
651 int letters = 0;
652 int uppercase = 0;
653 int lowercase = 0;
654 int numbers = 0;
655 int symbols = 0;
656 int nonletter = 0;
657 for (int i = 0; i < password.length(); i++) {
658 char c = password.charAt(i);
659 if (c >= 'A' && c <= 'Z') {
660 letters++;
661 uppercase++;
662 } else if (c >= 'a' && c <= 'z') {
663 letters++;
664 lowercase++;
665 } else if (c >= '0' && c <= '9') {
666 numbers++;
667 nonletter++;
668 } else {
669 symbols++;
670 nonletter++;
671 }
672 }
673 dpm.setActivePasswordState(Math.max(quality, computedQuality),
674 password.length(), letters, uppercase, lowercase,
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700675 numbers, symbols, nonletter, userHandle);
Danielle Millett2364a222011-12-21 17:02:32 -0500676 } else {
677 // The password is not anything.
678 dpm.setActivePasswordState(
679 DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED,
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700680 0, 0, 0, 0, 0, 0, 0, userHandle);
Danielle Millett2364a222011-12-21 17:02:32 -0500681 }
Jim Miller6edf2632011-09-05 16:03:14 -0700682 } else {
Danielle Millett2364a222011-12-21 17:02:32 -0500683 // Case where it's a fallback for biometric weak
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700684 setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK,
685 userHandle);
686 setLong(PASSWORD_TYPE_ALTERNATE_KEY, Math.max(quality, computedQuality),
687 userHandle);
Danielle Millett044a0a72011-11-07 15:42:12 -0500688 finishBiometricWeak();
Danielle Millett2364a222011-12-21 17:02:32 -0500689 dpm.setActivePasswordState(DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK,
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700690 0, 0, 0, 0, 0, 0, 0, userHandle);
Dianne Hackborn85f2c9c2010-03-22 11:12:48 -0700691 }
Konstantin Lopyrev863f22d2010-05-12 17:16:58 -0700692 // Add the password to the password history. We assume all
693 // password
694 // hashes have the same length for simplicity of implementation.
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700695 String passwordHistory = getString(PASSWORD_HISTORY_KEY, userHandle);
Konstantin Lopyrev863f22d2010-05-12 17:16:58 -0700696 if (passwordHistory == null) {
697 passwordHistory = new String();
698 }
Konstantin Lopyrev32558232010-05-20 16:18:05 -0700699 int passwordHistoryLength = getRequestedPasswordHistoryLength();
700 if (passwordHistoryLength == 0) {
701 passwordHistory = "";
702 } else {
703 passwordHistory = new String(hash) + "," + passwordHistory;
704 // Cut it to contain passwordHistoryLength hashes
705 // and passwordHistoryLength -1 commas.
706 passwordHistory = passwordHistory.substring(0, Math.min(hash.length
707 * passwordHistoryLength + passwordHistoryLength - 1, passwordHistory
708 .length()));
709 }
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700710 setString(PASSWORD_HISTORY_KEY, passwordHistory, userHandle);
Dianne Hackborn2509d3c2010-03-08 12:54:25 -0800711 } else {
Brian Carlstrome2afc242011-06-02 16:21:55 -0700712 // Conditionally reset the keystore if empty. If
713 // non-empty, we are just switching key guard type
714 if (keyStore.isEmpty()) {
715 keyStore.reset();
716 }
Dianne Hackborn2509d3c2010-03-08 12:54:25 -0800717 dpm.setActivePasswordState(
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700718 DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED, 0, 0, 0, 0, 0, 0, 0,
719 userHandle);
Jim Miller31f90b62010-01-20 13:35:20 -0800720 }
Amith Yamasani52c489c2012-03-28 11:42:42 -0700721 } catch (RemoteException re) {
Jim Miller69aa4a92009-12-22 19:03:28 -0800722 // Cant do much
Amith Yamasani52c489c2012-03-28 11:42:42 -0700723 Log.e(TAG, "Unable to save lock password " + re);
Jim Miller69aa4a92009-12-22 19:03:28 -0800724 }
725 }
726
Jim Millercd709882010-03-25 18:24:02 -0700727 /**
728 * Retrieves the quality mode we're in.
729 * {@see DevicePolicyManager#getPasswordQuality(android.content.ComponentName)}
730 *
731 * @return stored password quality
732 */
733 public int getKeyguardStoredPasswordQuality() {
Jim Miller6edf2632011-09-05 16:03:14 -0700734 int quality =
735 (int) getLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
736 // If the user has chosen to use weak biometric sensor, then return the backup locking
737 // method and treat biometric as a special case.
738 if (quality == DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK) {
739 quality =
740 (int) getLong(PASSWORD_TYPE_ALTERNATE_KEY,
741 DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
742 }
743 return quality;
744 }
745
Danielle Millett58396982011-09-30 13:55:07 -0400746 /**
747 * @return true if the lockscreen method is set to biometric weak
748 */
Jim Miller6edf2632011-09-05 16:03:14 -0700749 public boolean usingBiometricWeak() {
750 int quality =
751 (int) getLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
752 return quality == DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK;
Jim Miller69aa4a92009-12-22 19:03:28 -0800753 }
754
755 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800756 * Deserialize a pattern.
757 * @param string The pattern serialized with {@link #patternToString}
758 * @return The pattern.
759 */
760 public static List<LockPatternView.Cell> stringToPattern(String string) {
761 List<LockPatternView.Cell> result = Lists.newArrayList();
762
763 final byte[] bytes = string.getBytes();
764 for (int i = 0; i < bytes.length; i++) {
765 byte b = bytes[i];
766 result.add(LockPatternView.Cell.of(b / 3, b % 3));
767 }
768 return result;
769 }
770
771 /**
772 * Serialize a pattern.
773 * @param pattern The pattern.
774 * @return The pattern in string form.
775 */
776 public static String patternToString(List<LockPatternView.Cell> pattern) {
777 if (pattern == null) {
778 return "";
779 }
780 final int patternSize = pattern.size();
781
782 byte[] res = new byte[patternSize];
783 for (int i = 0; i < patternSize; i++) {
784 LockPatternView.Cell cell = pattern.get(i);
785 res[i] = (byte) (cell.getRow() * 3 + cell.getColumn());
786 }
787 return new String(res);
788 }
Jim Miller69aa4a92009-12-22 19:03:28 -0800789
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790 /*
791 * Generate an SHA-1 hash for the pattern. Not the most secure, but it is
792 * at least a second level of protection. First level is that the file
793 * is in a location only readable by the system process.
794 * @param pattern the gesture pattern.
795 * @return the hash of the pattern in a byte array.
796 */
Jim Miller69aa4a92009-12-22 19:03:28 -0800797 private static byte[] patternToHash(List<LockPatternView.Cell> pattern) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800798 if (pattern == null) {
799 return null;
800 }
Jim Miller69aa4a92009-12-22 19:03:28 -0800801
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800802 final int patternSize = pattern.size();
803 byte[] res = new byte[patternSize];
804 for (int i = 0; i < patternSize; i++) {
805 LockPatternView.Cell cell = pattern.get(i);
806 res[i] = (byte) (cell.getRow() * 3 + cell.getColumn());
807 }
808 try {
809 MessageDigest md = MessageDigest.getInstance("SHA-1");
810 byte[] hash = md.digest(res);
811 return hash;
812 } catch (NoSuchAlgorithmException nsa) {
813 return res;
814 }
815 }
816
Jim Miller11b019d2010-01-20 16:34:45 -0800817 private String getSalt() {
818 long salt = getLong(LOCK_PASSWORD_SALT_KEY, 0);
819 if (salt == 0) {
820 try {
821 salt = SecureRandom.getInstance("SHA1PRNG").nextLong();
822 setLong(LOCK_PASSWORD_SALT_KEY, salt);
823 Log.v(TAG, "Initialized lock password salt");
824 } catch (NoSuchAlgorithmException e) {
825 // Throw an exception rather than storing a password we'll never be able to recover
826 throw new IllegalStateException("Couldn't get SecureRandom number", e);
827 }
828 }
829 return Long.toHexString(salt);
830 }
831
Jim Miller69aa4a92009-12-22 19:03:28 -0800832 /*
833 * Generate a hash for the given password. To avoid brute force attacks, we use a salted hash.
834 * Not the most secure, but it is at least a second level of protection. First level is that
835 * the file is in a location only readable by the system process.
836 * @param password the gesture pattern.
837 * @return the hash of the pattern in a byte array.
838 */
Brian Carlstrom5cfee3f2011-05-31 01:00:15 -0700839 public byte[] passwordToHash(String password) {
Jim Miller69aa4a92009-12-22 19:03:28 -0800840 if (password == null) {
841 return null;
842 }
843 String algo = null;
844 byte[] hashed = null;
845 try {
Jim Miller11b019d2010-01-20 16:34:45 -0800846 byte[] saltedPassword = (password + getSalt()).getBytes();
Jim Miller69aa4a92009-12-22 19:03:28 -0800847 byte[] sha1 = MessageDigest.getInstance(algo = "SHA-1").digest(saltedPassword);
848 byte[] md5 = MessageDigest.getInstance(algo = "MD5").digest(saltedPassword);
849 hashed = (toHex(sha1) + toHex(md5)).getBytes();
850 } catch (NoSuchAlgorithmException e) {
851 Log.w(TAG, "Failed to encode string because of missing algorithm: " + algo);
852 }
853 return hashed;
854 }
855
856 private static String toHex(byte[] ary) {
857 final String hex = "0123456789ABCDEF";
858 String ret = "";
859 for (int i = 0; i < ary.length; i++) {
860 ret += hex.charAt((ary[i] >> 4) & 0xf);
861 ret += hex.charAt(ary[i] & 0xf);
862 }
863 return ret;
864 }
865
866 /**
Danielle Millett73da5fe2011-09-13 16:20:05 -0400867 * @return Whether the lock password is enabled, or if it is set as a backup for biometric weak
Jim Miller69aa4a92009-12-22 19:03:28 -0800868 */
869 public boolean isLockPasswordEnabled() {
870 long mode = getLong(PASSWORD_TYPE_KEY, 0);
Danielle Millett73da5fe2011-09-13 16:20:05 -0400871 long backupMode = getLong(PASSWORD_TYPE_ALTERNATE_KEY, 0);
872 final boolean passwordEnabled = mode == DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC
873 || mode == DevicePolicyManager.PASSWORD_QUALITY_NUMERIC
874 || mode == DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC
875 || mode == DevicePolicyManager.PASSWORD_QUALITY_COMPLEX;
876 final boolean backupEnabled = backupMode == DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC
877 || backupMode == DevicePolicyManager.PASSWORD_QUALITY_NUMERIC
878 || backupMode == DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC
879 || backupMode == DevicePolicyManager.PASSWORD_QUALITY_COMPLEX;
880
881 return savedPasswordExists() && (passwordEnabled ||
Danielle Millett58396982011-09-30 13:55:07 -0400882 (usingBiometricWeak() && backupEnabled));
Jim Miller69aa4a92009-12-22 19:03:28 -0800883 }
884
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800885 /**
Danielle Millett73da5fe2011-09-13 16:20:05 -0400886 * @return Whether the lock pattern is enabled, or if it is set as a backup for biometric weak
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800887 */
888 public boolean isLockPatternEnabled() {
Danielle Millett73da5fe2011-09-13 16:20:05 -0400889 final boolean backupEnabled =
890 getLong(PASSWORD_TYPE_ALTERNATE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING)
891 == DevicePolicyManager.PASSWORD_QUALITY_SOMETHING;
892
Jim Millera4edd152012-01-06 18:24:04 -0800893 return getBoolean(Settings.Secure.LOCK_PATTERN_ENABLED, false)
Danielle Millett73da5fe2011-09-13 16:20:05 -0400894 && (getLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING)
895 == DevicePolicyManager.PASSWORD_QUALITY_SOMETHING ||
Danielle Millett58396982011-09-30 13:55:07 -0400896 (usingBiometricWeak() && backupEnabled));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800897 }
898
899 /**
Danielle Millett58396982011-09-30 13:55:07 -0400900 * @return Whether biometric weak lock is installed and that the front facing camera exists
Jim Miller6edf2632011-09-05 16:03:14 -0700901 */
Danielle Millett58396982011-09-30 13:55:07 -0400902 public boolean isBiometricWeakInstalled() {
Danielle Millett58396982011-09-30 13:55:07 -0400903 // Check that it's installed
904 PackageManager pm = mContext.getPackageManager();
905 try {
906 pm.getPackageInfo("com.android.facelock", PackageManager.GET_ACTIVITIES);
907 } catch (PackageManager.NameNotFoundException e) {
908 return false;
909 }
910
911 // Check that the camera is enabled
912 if (!pm.hasSystemFeature(PackageManager.FEATURE_CAMERA_FRONT)) {
913 return false;
914 }
Amith Yamasani599dd7c2012-09-14 23:20:08 -0700915 if (getDevicePolicyManager().getCameraDisabled(null, getCurrentOrCallingUserId())) {
Danielle Millett58396982011-09-30 13:55:07 -0400916 return false;
917 }
918
919
920 return true;
Jim Miller6edf2632011-09-05 16:03:14 -0700921 }
922
923 /**
Danielle Millett925a7d82012-03-19 18:02:20 -0400924 * Set whether biometric weak liveliness is enabled.
925 */
926 public void setBiometricWeakLivelinessEnabled(boolean enabled) {
927 long currentFlag = getLong(Settings.Secure.LOCK_BIOMETRIC_WEAK_FLAGS, 0L);
928 long newFlag;
929 if (enabled) {
930 newFlag = currentFlag | FLAG_BIOMETRIC_WEAK_LIVELINESS;
931 } else {
932 newFlag = currentFlag & ~FLAG_BIOMETRIC_WEAK_LIVELINESS;
933 }
934 setLong(Settings.Secure.LOCK_BIOMETRIC_WEAK_FLAGS, newFlag);
935 }
936
937 /**
938 * @return Whether the biometric weak liveliness is enabled.
939 */
940 public boolean isBiometricWeakLivelinessEnabled() {
941 long currentFlag = getLong(Settings.Secure.LOCK_BIOMETRIC_WEAK_FLAGS, 0L);
942 return ((currentFlag & FLAG_BIOMETRIC_WEAK_LIVELINESS) != 0);
943 }
944
945 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800946 * Set whether the lock pattern is enabled.
947 */
948 public void setLockPatternEnabled(boolean enabled) {
Amith Yamasani156c4352010-03-05 17:10:03 -0800949 setBoolean(Settings.Secure.LOCK_PATTERN_ENABLED, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800950 }
951
952 /**
953 * @return Whether the visible pattern is enabled.
954 */
955 public boolean isVisiblePatternEnabled() {
Jim Millera4edd152012-01-06 18:24:04 -0800956 return getBoolean(Settings.Secure.LOCK_PATTERN_VISIBLE, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800957 }
958
959 /**
960 * Set whether the visible pattern is enabled.
961 */
962 public void setVisiblePatternEnabled(boolean enabled) {
Amith Yamasani156c4352010-03-05 17:10:03 -0800963 setBoolean(Settings.Secure.LOCK_PATTERN_VISIBLE, enabled);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800964 }
965
966 /**
967 * @return Whether tactile feedback for the pattern is enabled.
968 */
969 public boolean isTactileFeedbackEnabled() {
Jeff Sharkey5ed9d682012-10-10 14:28:27 -0700970 return Settings.System.getIntForUser(mContentResolver,
971 Settings.System.HAPTIC_FEEDBACK_ENABLED, 1, UserHandle.USER_CURRENT) != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800972 }
973
974 /**
975 * Set and store the lockout deadline, meaning the user can't attempt his/her unlock
976 * pattern until the deadline has passed.
977 * @return the chosen deadline.
978 */
979 public long setLockoutAttemptDeadline() {
980 final long deadline = SystemClock.elapsedRealtime() + FAILED_ATTEMPT_TIMEOUT_MS;
981 setLong(LOCKOUT_ATTEMPT_DEADLINE, deadline);
982 return deadline;
983 }
984
985 /**
986 * @return The elapsed time in millis in the future when the user is allowed to
987 * attempt to enter his/her lock pattern, or 0 if the user is welcome to
988 * enter a pattern.
989 */
990 public long getLockoutAttemptDeadline() {
991 final long deadline = getLong(LOCKOUT_ATTEMPT_DEADLINE, 0L);
992 final long now = SystemClock.elapsedRealtime();
993 if (deadline < now || deadline > (now + FAILED_ATTEMPT_TIMEOUT_MS)) {
994 return 0L;
995 }
996 return deadline;
997 }
998
999 /**
1000 * @return Whether the user is permanently locked out until they verify their
1001 * credentials. Occurs after {@link #FAILED_ATTEMPTS_BEFORE_RESET} failed
1002 * attempts.
1003 */
1004 public boolean isPermanentlyLocked() {
Jim Millera4edd152012-01-06 18:24:04 -08001005 return getBoolean(LOCKOUT_PERMANENT_KEY, false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001006 }
1007
1008 /**
1009 * Set the state of whether the device is permanently locked, meaning the user
Karl Rosaen678771b2009-08-21 14:00:26 -07001010 * must authenticate via other means.
1011 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001012 * @param locked Whether the user is permanently locked out until they verify their
1013 * credentials. Occurs after {@link #FAILED_ATTEMPTS_BEFORE_RESET} failed
1014 * attempts.
1015 */
1016 public void setPermanentlyLocked(boolean locked) {
1017 setBoolean(LOCKOUT_PERMANENT_KEY, locked);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001018 }
1019
John Wang0f7b3f82011-05-31 11:20:55 -07001020 public boolean isEmergencyCallCapable() {
1021 return mContext.getResources().getBoolean(
1022 com.android.internal.R.bool.config_voice_capable);
1023 }
1024
1025 public boolean isPukUnlockScreenEnable() {
1026 return mContext.getResources().getBoolean(
1027 com.android.internal.R.bool.config_enable_puk_unlock_screen);
1028 }
1029
Jim Miller1f56edc2011-11-07 19:00:48 -08001030 public boolean isEmergencyCallEnabledWhileSimLocked() {
1031 return mContext.getResources().getBoolean(
1032 com.android.internal.R.bool.config_enable_emergency_call_while_sim_locked);
1033 }
1034
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001035 /**
1036 * @return A formatted string of the next alarm (for showing on the lock screen),
1037 * or null if there is no next alarm.
1038 */
1039 public String getNextAlarm() {
Amith Yamasani8fd96ec2012-09-21 17:48:49 -07001040 String nextAlarm = Settings.System.getStringForUser(mContentResolver,
1041 Settings.System.NEXT_ALARM_FORMATTED, UserHandle.USER_CURRENT);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001042 if (nextAlarm == null || TextUtils.isEmpty(nextAlarm)) {
1043 return null;
1044 }
1045 return nextAlarm;
1046 }
1047
Jim Millera4edd152012-01-06 18:24:04 -08001048 private boolean getBoolean(String secureSettingKey, boolean defaultValue) {
Amith Yamasani52c489c2012-03-28 11:42:42 -07001049 try {
1050 return getLockSettings().getBoolean(secureSettingKey, defaultValue,
1051 getCurrentOrCallingUserId());
1052 } catch (RemoteException re) {
1053 return defaultValue;
1054 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001055 }
1056
Amith Yamasani156c4352010-03-05 17:10:03 -08001057 private void setBoolean(String secureSettingKey, boolean enabled) {
Amith Yamasani52c489c2012-03-28 11:42:42 -07001058 try {
1059 getLockSettings().setBoolean(secureSettingKey, enabled, getCurrentOrCallingUserId());
1060 } catch (RemoteException re) {
1061 // What can we do?
1062 Log.e(TAG, "Couldn't write boolean " + secureSettingKey + re);
1063 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001064 }
1065
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001066 public int[] getAppWidgets() {
Amith Yamasani8fd96ec2012-09-21 17:48:49 -07001067 String appWidgetIdString = Settings.Secure.getStringForUser(
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001068 mContentResolver, Settings.Secure.LOCK_SCREEN_APPWIDGET_IDS,
Amith Yamasani8fd96ec2012-09-21 17:48:49 -07001069 UserHandle.USER_CURRENT);
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001070 String delims = ",";
Michael Jurka1254f2f2012-10-25 11:44:31 -07001071 if (appWidgetIdString != null && appWidgetIdString.length() > 0) {
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001072 String[] appWidgetStringIds = appWidgetIdString.split(delims);
1073 int[] appWidgetIds = new int[appWidgetStringIds.length];
1074 for (int i = 0; i < appWidgetStringIds.length; i++) {
1075 String appWidget = appWidgetStringIds[i];
1076 try {
1077 appWidgetIds[i] = Integer.decode(appWidget);
1078 } catch (NumberFormatException e) {
Michael Jurka1254f2f2012-10-25 11:44:31 -07001079 Log.d(TAG, "Error when parsing widget id " + appWidget);
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001080 return null;
1081 }
1082 }
1083 return appWidgetIds;
Jim Millerf229e4d2012-09-12 20:32:50 -07001084 }
Michael Jurka67a871d2012-11-01 18:26:01 -07001085 return new int[0];
Jim Millerf229e4d2012-09-12 20:32:50 -07001086 }
1087
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001088 private static String combineStrings(int[] list, String separator) {
1089 int listLength = list.length;
1090
1091 switch (listLength) {
1092 case 0: {
1093 return "";
1094 }
1095 case 1: {
1096 return Integer.toString(list[0]);
1097 }
Michael Jurka20c41d52012-09-20 19:01:06 -07001098 }
1099
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001100 int strLength = 0;
1101 int separatorLength = separator.length();
1102
1103 String[] stringList = new String[list.length];
1104 for (int i = 0; i < listLength; i++) {
1105 stringList[i] = Integer.toString(list[i]);
1106 strLength += stringList[i].length();
1107 if (i < listLength - 1) {
1108 strLength += separatorLength;
1109 }
1110 }
1111
1112 StringBuilder sb = new StringBuilder(strLength);
1113
1114 for (int i = 0; i < listLength; i++) {
1115 sb.append(list[i]);
1116 if (i < listLength - 1) {
1117 sb.append(separator);
1118 }
1119 }
1120
1121 return sb.toString();
1122 }
1123
Jim Miller51117262012-11-04 17:58:09 -08001124 // appwidget used when appwidgets are disabled (we make an exception for
1125 // default clock widget)
1126 public void writeFallbackAppWidgetId(int appWidgetId) {
1127 Settings.Secure.putIntForUser(mContentResolver,
1128 Settings.Secure.LOCK_SCREEN_FALLBACK_APPWIDGET_ID,
1129 appWidgetId,
1130 UserHandle.USER_CURRENT);
1131 }
1132
1133 // appwidget used when appwidgets are disabled (we make an exception for
1134 // default clock widget)
1135 public int getFallbackAppWidgetId() {
1136 return Settings.Secure.getIntForUser(
1137 mContentResolver,
1138 Settings.Secure.LOCK_SCREEN_FALLBACK_APPWIDGET_ID,
1139 AppWidgetManager.INVALID_APPWIDGET_ID,
1140 UserHandle.USER_CURRENT);
1141 }
1142
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001143 private void writeAppWidgets(int[] appWidgetIds) {
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001144 Settings.Secure.putStringForUser(mContentResolver,
1145 Settings.Secure.LOCK_SCREEN_APPWIDGET_IDS,
1146 combineStrings(appWidgetIds, ","),
1147 UserHandle.USER_CURRENT);
1148 }
1149
Michael Jurka1254f2f2012-10-25 11:44:31 -07001150 // TODO: log an error if this returns false
1151 public boolean addAppWidget(int widgetId, int index) {
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001152 int[] widgets = getAppWidgets();
Michael Jurka1254f2f2012-10-25 11:44:31 -07001153 if (widgets == null) {
1154 return false;
1155 }
Michael Jurka229dd8b2012-10-26 16:06:12 -07001156 if (index < 0 || index > widgets.length) {
Michael Jurka1254f2f2012-10-25 11:44:31 -07001157 return false;
1158 }
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001159 int[] newWidgets = new int[widgets.length + 1];
1160 for (int i = 0, j = 0; i < newWidgets.length; i++) {
1161 if (index == i) {
1162 newWidgets[i] = widgetId;
1163 i++;
1164 }
1165 if (i < newWidgets.length) {
1166 newWidgets[i] = widgets[j];
1167 j++;
1168 }
1169 }
1170 writeAppWidgets(newWidgets);
Michael Jurka1254f2f2012-10-25 11:44:31 -07001171 return true;
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001172 }
1173
Michael Jurka1254f2f2012-10-25 11:44:31 -07001174 public boolean removeAppWidget(int widgetId) {
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001175 int[] widgets = getAppWidgets();
Michael Jurka1254f2f2012-10-25 11:44:31 -07001176
Jim Millera9768602012-11-06 22:17:25 -08001177 if (widgets.length == 0) {
1178 return false;
1179 }
1180
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001181 int[] newWidgets = new int[widgets.length - 1];
1182 for (int i = 0, j = 0; i < widgets.length; i++) {
Michael Jurka1254f2f2012-10-25 11:44:31 -07001183 if (widgets[i] == widgetId) {
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001184 // continue...
Michael Jurka1254f2f2012-10-25 11:44:31 -07001185 } else if (j >= newWidgets.length) {
1186 // we couldn't find the widget
1187 return false;
Michael Jurkaaa2859a2012-10-24 12:46:49 -07001188 } else {
1189 newWidgets[j] = widgets[i];
1190 j++;
1191 }
1192 }
1193 writeAppWidgets(newWidgets);
1194 return true;
Michael Jurka20c41d52012-09-20 19:01:06 -07001195 }
1196
Amith Yamasani52c489c2012-03-28 11:42:42 -07001197 private long getLong(String secureSettingKey, long defaultValue) {
1198 try {
1199 return getLockSettings().getLong(secureSettingKey, defaultValue,
1200 getCurrentOrCallingUserId());
1201 } catch (RemoteException re) {
1202 return defaultValue;
1203 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001204 }
1205
Amith Yamasani156c4352010-03-05 17:10:03 -08001206 private void setLong(String secureSettingKey, long value) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001207 setLong(secureSettingKey, value, getCurrentOrCallingUserId());
1208 }
1209
1210 private void setLong(String secureSettingKey, long value, int userHandle) {
Amith Yamasani52c489c2012-03-28 11:42:42 -07001211 try {
1212 getLockSettings().setLong(secureSettingKey, value, getCurrentOrCallingUserId());
1213 } catch (RemoteException re) {
1214 // What can we do?
1215 Log.e(TAG, "Couldn't write long " + secureSettingKey + re);
1216 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001217 }
1218
Konstantin Lopyrev863f22d2010-05-12 17:16:58 -07001219 private String getString(String secureSettingKey) {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001220 return getString(secureSettingKey, getCurrentOrCallingUserId());
1221 }
1222
1223 private String getString(String secureSettingKey, int userHandle) {
Amith Yamasani52c489c2012-03-28 11:42:42 -07001224 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001225 return getLockSettings().getString(secureSettingKey, null, userHandle);
Amith Yamasani52c489c2012-03-28 11:42:42 -07001226 } catch (RemoteException re) {
1227 return null;
1228 }
Konstantin Lopyrev863f22d2010-05-12 17:16:58 -07001229 }
1230
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001231 private void setString(String secureSettingKey, String value, int userHandle) {
Amith Yamasani52c489c2012-03-28 11:42:42 -07001232 try {
Amith Yamasani599dd7c2012-09-14 23:20:08 -07001233 getLockSettings().setString(secureSettingKey, value, userHandle);
Amith Yamasani52c489c2012-03-28 11:42:42 -07001234 } catch (RemoteException re) {
1235 // What can we do?
1236 Log.e(TAG, "Couldn't write string " + secureSettingKey + re);
1237 }
Konstantin Lopyrev863f22d2010-05-12 17:16:58 -07001238 }
1239
Jim Miller69aa4a92009-12-22 19:03:28 -08001240 public boolean isSecure() {
Jim Millercd709882010-03-25 18:24:02 -07001241 long mode = getKeyguardStoredPasswordQuality();
1242 final boolean isPattern = mode == DevicePolicyManager.PASSWORD_QUALITY_SOMETHING;
1243 final boolean isPassword = mode == DevicePolicyManager.PASSWORD_QUALITY_NUMERIC
1244 || mode == DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC
Konstantin Lopyreva15dcfa2010-05-24 17:10:56 -07001245 || mode == DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC
1246 || mode == DevicePolicyManager.PASSWORD_QUALITY_COMPLEX;
Jim Millercd709882010-03-25 18:24:02 -07001247 final boolean secure = isPattern && isLockPatternEnabled() && savedPatternExists()
Danielle Millett73da5fe2011-09-13 16:20:05 -04001248 || isPassword && savedPasswordExists();
Jim Miller69aa4a92009-12-22 19:03:28 -08001249 return secure;
1250 }
Jim Miller69ac9882010-02-24 15:35:05 -08001251
1252 /**
John Wang0f7b3f82011-05-31 11:20:55 -07001253 * Sets the emergency button visibility based on isEmergencyCallCapable().
1254 *
1255 * If the emergency button is visible, sets the text on the emergency button
1256 * to indicate what action will be taken.
1257 *
Jim Miller69ac9882010-02-24 15:35:05 -08001258 * If there's currently a call in progress, the button will take them to the call
1259 * @param button the button to update
Jim Miller3f5f83b2011-09-26 15:17:05 -07001260 * @param the phone state:
1261 * {@link TelephonyManager#CALL_STATE_IDLE}
1262 * {@link TelephonyManager#CALL_STATE_RINGING}
1263 * {@link TelephonyManager#CALL_STATE_OFFHOOK}
Jim Miller1f56edc2011-11-07 19:00:48 -08001264 * @param shown indicates whether the given screen wants the emergency button to show at all
Jim Miller109f1fd2012-09-19 20:44:16 -07001265 * @param button
1266 * @param phoneState
1267 * @param shown shown if true; hidden if false
1268 * @param upperCase if true, converts button label string to upper case
Jim Miller69ac9882010-02-24 15:35:05 -08001269 */
Jim Miller109f1fd2012-09-19 20:44:16 -07001270 public void updateEmergencyCallButtonState(Button button, int phoneState, boolean shown,
1271 boolean upperCase, boolean showIcon) {
Jim Miller1f56edc2011-11-07 19:00:48 -08001272 if (isEmergencyCallCapable() && shown) {
John Wang0f7b3f82011-05-31 11:20:55 -07001273 button.setVisibility(View.VISIBLE);
1274 } else {
1275 button.setVisibility(View.GONE);
1276 return;
1277 }
1278
Jim Miller69ac9882010-02-24 15:35:05 -08001279 int textId;
Jim Miller3f5f83b2011-09-26 15:17:05 -07001280 if (phoneState == TelephonyManager.CALL_STATE_OFFHOOK) {
Jim Miller69ac9882010-02-24 15:35:05 -08001281 // show "return to call" text and show phone icon
1282 textId = R.string.lockscreen_return_to_call;
Jim Miller109f1fd2012-09-19 20:44:16 -07001283 int phoneCallIcon = showIcon ? R.drawable.stat_sys_phone_call : 0;
Jim Miller69ac9882010-02-24 15:35:05 -08001284 button.setCompoundDrawablesWithIntrinsicBounds(phoneCallIcon, 0, 0, 0);
1285 } else {
1286 textId = R.string.lockscreen_emergency_call;
Jim Miller109f1fd2012-09-19 20:44:16 -07001287 int emergencyIcon = showIcon ? R.drawable.ic_emergency : 0;
Jim Miller69ac9882010-02-24 15:35:05 -08001288 button.setCompoundDrawablesWithIntrinsicBounds(emergencyIcon, 0, 0, 0);
1289 }
Jim Miller109f1fd2012-09-19 20:44:16 -07001290 if (upperCase) {
1291 CharSequence original = mContext.getResources().getText(textId);
1292 String upper = original != null ? original.toString().toUpperCase() : null;
1293 button.setText(upper);
1294 } else {
1295 button.setText(textId);
1296 }
1297 }
1298
1299 /**
1300 * @deprecated
1301 * @param button
1302 * @param phoneState
1303 * @param shown
1304 */
1305 public void updateEmergencyCallButtonState(Button button, int phoneState, boolean shown) {
1306 updateEmergencyCallButtonState(button, phoneState, shown, false, true);
Jim Miller69ac9882010-02-24 15:35:05 -08001307 }
1308
1309 /**
1310 * Resumes a call in progress. Typically launched from the EmergencyCall button
1311 * on various lockscreens.
1312 *
1313 * @return true if we were able to tell InCallScreen to show.
1314 */
1315 public boolean resumeCall() {
1316 ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.checkService("phone"));
1317 try {
1318 if (phone != null && phone.showCallScreen()) {
1319 return true;
1320 }
1321 } catch (RemoteException e) {
1322 // What can we do?
1323 }
1324 return false;
1325 }
Danielle Millett044a0a72011-11-07 15:42:12 -05001326
1327 private void finishBiometricWeak() {
1328 setBoolean(BIOMETRIC_WEAK_EVER_CHOSEN_KEY, true);
1329
1330 // Launch intent to show final screen, this also
1331 // moves the temporary gallery to the actual gallery
1332 Intent intent = new Intent();
1333 intent.setClassName("com.android.facelock",
1334 "com.android.facelock.SetupEndScreen");
1335 mContext.startActivity(intent);
1336 }
1337
Jim Millera4edd152012-01-06 18:24:04 -08001338 public void setPowerButtonInstantlyLocks(boolean enabled) {
1339 setBoolean(LOCKSCREEN_POWER_BUTTON_INSTANTLY_LOCKS, enabled);
1340 }
1341
1342 public boolean getPowerButtonInstantlyLocks() {
1343 return getBoolean(LOCKSCREEN_POWER_BUTTON_INSTANTLY_LOCKS, true);
1344 }
Jim Millera9768602012-11-06 22:17:25 -08001345
Jim Miller51117262012-11-04 17:58:09 -08001346 public static boolean isSafeModeEnabled() {
1347 try {
1348 return IWindowManager.Stub.asInterface(
1349 ServiceManager.getService("window")).isSafeModeEnabled();
1350 } catch (RemoteException e) {
1351 // Shouldn't happen!
1352 }
1353 return false;
1354 }
Jim Millera4edd152012-01-06 18:24:04 -08001355
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001356}