1/*
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
19import com.android.internal.R;
20import com.android.internal.telephony.ITelephony;
21import com.google.android.collect.Lists;
22
23import android.app.admin.DevicePolicyManager;
24import android.content.ContentResolver;
25import android.content.Context;
26import android.content.Intent;
27import android.content.pm.PackageManager;
28import android.os.FileObserver;
29import android.os.IBinder;
30import android.os.RemoteException;
31import android.os.ServiceManager;
32import android.os.SystemClock;
33import android.os.storage.IMountService;
34import android.provider.Settings;
35import android.security.KeyStore;
36import android.telephony.TelephonyManager;
37import android.text.TextUtils;
38import android.util.Log;
39import android.view.View;
40import android.widget.Button;
41
42import java.io.File;
43import java.io.FileNotFoundException;
44import java.io.IOException;
45import java.io.RandomAccessFile;
46import java.security.MessageDigest;
47import java.security.NoSuchAlgorithmException;
48import java.security.SecureRandom;
49import java.util.Arrays;
50import java.util.List;
51import java.util.concurrent.atomic.AtomicBoolean;
52
53/**
54 * Utilities for the lock pattern and its settings.
55 */
56public class LockPatternUtils {
57
58    private static final String OPTION_ENABLE_FACELOCK = "enable_facelock";
59
60    private static final String TAG = "LockPatternUtils";
61
62    private static final String SYSTEM_DIRECTORY = "/system/";
63    private static final String LOCK_PATTERN_FILE = "gesture.key";
64    private static final String LOCK_PASSWORD_FILE = "password.key";
65
66    /**
67     * The maximum number of incorrect attempts before the user is prevented
68     * from trying again for {@link #FAILED_ATTEMPT_TIMEOUT_MS}.
69     */
70    public static final int FAILED_ATTEMPTS_BEFORE_TIMEOUT = 5;
71
72    /**
73     * The number of incorrect attempts before which we fall back on an alternative
74     * method of verifying the user, and resetting their lock pattern.
75     */
76    public static final int FAILED_ATTEMPTS_BEFORE_RESET = 20;
77
78    /**
79     * How long the user is prevented from trying again after entering the
80     * wrong pattern too many times.
81     */
82    public static final long FAILED_ATTEMPT_TIMEOUT_MS = 30000L;
83
84    /**
85     * The interval of the countdown for showing progress of the lockout.
86     */
87    public static final long FAILED_ATTEMPT_COUNTDOWN_INTERVAL_MS = 1000L;
88
89
90    /**
91     * This dictates when we start telling the user that continued failed attempts will wipe
92     * their device.
93     */
94    public static final int FAILED_ATTEMPTS_BEFORE_WIPE_GRACE = 5;
95
96    /**
97     * The minimum number of dots in a valid pattern.
98     */
99    public static final int MIN_LOCK_PATTERN_SIZE = 4;
100
101    /**
102     * The minimum number of dots the user must include in a wrong pattern
103     * attempt for it to be counted against the counts that affect
104     * {@link #FAILED_ATTEMPTS_BEFORE_TIMEOUT} and {@link #FAILED_ATTEMPTS_BEFORE_RESET}
105     */
106    public static final int MIN_PATTERN_REGISTER_FAIL = MIN_LOCK_PATTERN_SIZE;
107
108    private final static String LOCKOUT_PERMANENT_KEY = "lockscreen.lockedoutpermanently";
109    private final static String LOCKOUT_ATTEMPT_DEADLINE = "lockscreen.lockoutattemptdeadline";
110    private final static String PATTERN_EVER_CHOSEN_KEY = "lockscreen.patterneverchosen";
111    public final static String PASSWORD_TYPE_KEY = "lockscreen.password_type";
112    public static final String PASSWORD_TYPE_ALTERNATE_KEY = "lockscreen.password_type_alternate";
113    private final static String LOCK_PASSWORD_SALT_KEY = "lockscreen.password_salt";
114    private final static String DISABLE_LOCKSCREEN_KEY = "lockscreen.disabled";
115    private final static String LOCKSCREEN_OPTIONS = "lockscreen.options";
116    public final static String LOCKSCREEN_BIOMETRIC_WEAK_FALLBACK
117            = "lockscreen.biometric_weak_fallback";
118    public final static String BIOMETRIC_WEAK_EVER_CHOSEN_KEY
119            = "lockscreen.biometricweakeverchosen";
120
121    private final static String PASSWORD_HISTORY_KEY = "lockscreen.passwordhistory";
122
123    private final Context mContext;
124    private final ContentResolver mContentResolver;
125    private DevicePolicyManager mDevicePolicyManager;
126    private static String sLockPatternFilename;
127    private static String sLockPasswordFilename;
128
129    private static final AtomicBoolean sHaveNonZeroPatternFile = new AtomicBoolean(false);
130    private static final AtomicBoolean sHaveNonZeroPasswordFile = new AtomicBoolean(false);
131
132    private static FileObserver sPasswordObserver;
133
134    private static class PasswordFileObserver extends FileObserver {
135        public PasswordFileObserver(String path, int mask) {
136            super(path, mask);
137        }
138
139        @Override
140        public void onEvent(int event, String path) {
141            if (LOCK_PATTERN_FILE.equals(path)) {
142                Log.d(TAG, "lock pattern file changed");
143                sHaveNonZeroPatternFile.set(new File(sLockPatternFilename).length() > 0);
144            } else if (LOCK_PASSWORD_FILE.equals(path)) {
145                Log.d(TAG, "lock password file changed");
146                sHaveNonZeroPasswordFile.set(new File(sLockPasswordFilename).length() > 0);
147            }
148        }
149    }
150
151    public DevicePolicyManager getDevicePolicyManager() {
152        if (mDevicePolicyManager == null) {
153            mDevicePolicyManager =
154                (DevicePolicyManager)mContext.getSystemService(Context.DEVICE_POLICY_SERVICE);
155            if (mDevicePolicyManager == null) {
156                Log.e(TAG, "Can't get DevicePolicyManagerService: is it running?",
157                        new IllegalStateException("Stack trace:"));
158            }
159        }
160        return mDevicePolicyManager;
161    }
162    /**
163     * @param contentResolver Used to look up and save settings.
164     */
165    public LockPatternUtils(Context context) {
166        mContext = context;
167        mContentResolver = context.getContentResolver();
168
169        // Initialize the location of gesture & PIN lock files
170        if (sLockPatternFilename == null) {
171            String dataSystemDirectory =
172                    android.os.Environment.getDataDirectory().getAbsolutePath() +
173                    SYSTEM_DIRECTORY;
174            sLockPatternFilename =  dataSystemDirectory + LOCK_PATTERN_FILE;
175            sLockPasswordFilename = dataSystemDirectory + LOCK_PASSWORD_FILE;
176            sHaveNonZeroPatternFile.set(new File(sLockPatternFilename).length() > 0);
177            sHaveNonZeroPasswordFile.set(new File(sLockPasswordFilename).length() > 0);
178            int fileObserverMask = FileObserver.CLOSE_WRITE | FileObserver.DELETE |
179                    FileObserver.MOVED_TO | FileObserver.CREATE;
180            sPasswordObserver = new PasswordFileObserver(dataSystemDirectory, fileObserverMask);
181            sPasswordObserver.startWatching();
182        }
183    }
184
185    public int getRequestedMinimumPasswordLength() {
186        return getDevicePolicyManager().getPasswordMinimumLength(null);
187    }
188
189
190    /**
191     * Gets the device policy password mode. If the mode is non-specific, returns
192     * MODE_PATTERN which allows the user to choose anything.
193     */
194    public int getRequestedPasswordQuality() {
195        return getDevicePolicyManager().getPasswordQuality(null);
196    }
197
198    public int getRequestedPasswordHistoryLength() {
199        return getDevicePolicyManager().getPasswordHistoryLength(null);
200    }
201
202    public int getRequestedPasswordMinimumLetters() {
203        return getDevicePolicyManager().getPasswordMinimumLetters(null);
204    }
205
206    public int getRequestedPasswordMinimumUpperCase() {
207        return getDevicePolicyManager().getPasswordMinimumUpperCase(null);
208    }
209
210    public int getRequestedPasswordMinimumLowerCase() {
211        return getDevicePolicyManager().getPasswordMinimumLowerCase(null);
212    }
213
214    public int getRequestedPasswordMinimumNumeric() {
215        return getDevicePolicyManager().getPasswordMinimumNumeric(null);
216    }
217
218    public int getRequestedPasswordMinimumSymbols() {
219        return getDevicePolicyManager().getPasswordMinimumSymbols(null);
220    }
221
222    public int getRequestedPasswordMinimumNonLetter() {
223        return getDevicePolicyManager().getPasswordMinimumNonLetter(null);
224    }
225    /**
226     * Returns the actual password mode, as set by keyguard after updating the password.
227     *
228     * @return
229     */
230    public void reportFailedPasswordAttempt() {
231        getDevicePolicyManager().reportFailedPasswordAttempt();
232    }
233
234    public void reportSuccessfulPasswordAttempt() {
235        getDevicePolicyManager().reportSuccessfulPasswordAttempt();
236    }
237
238    /**
239     * Check to see if a pattern matches the saved pattern.  If no pattern exists,
240     * always returns true.
241     * @param pattern The pattern to check.
242     * @return Whether the pattern matches the stored one.
243     */
244    public boolean checkPattern(List<LockPatternView.Cell> pattern) {
245        try {
246            // Read all the bytes from the file
247            RandomAccessFile raf = new RandomAccessFile(sLockPatternFilename, "r");
248            final byte[] stored = new byte[(int) raf.length()];
249            int got = raf.read(stored, 0, stored.length);
250            raf.close();
251            if (got <= 0) {
252                return true;
253            }
254            // Compare the hash from the file with the entered pattern's hash
255            return Arrays.equals(stored, LockPatternUtils.patternToHash(pattern));
256        } catch (FileNotFoundException fnfe) {
257            return true;
258        } catch (IOException ioe) {
259            return true;
260        }
261    }
262
263    /**
264     * Check to see if a password matches the saved password.  If no password exists,
265     * always returns true.
266     * @param password The password to check.
267     * @return Whether the password matches the stored one.
268     */
269    public boolean checkPassword(String password) {
270        try {
271            // Read all the bytes from the file
272            RandomAccessFile raf = new RandomAccessFile(sLockPasswordFilename, "r");
273            final byte[] stored = new byte[(int) raf.length()];
274            int got = raf.read(stored, 0, stored.length);
275            raf.close();
276            if (got <= 0) {
277                return true;
278            }
279            // Compare the hash from the file with the entered password's hash
280            return Arrays.equals(stored, passwordToHash(password));
281        } catch (FileNotFoundException fnfe) {
282            return true;
283        } catch (IOException ioe) {
284            return true;
285        }
286    }
287
288    /**
289     * Check to see if a password matches any of the passwords stored in the
290     * password history.
291     *
292     * @param password The password to check.
293     * @return Whether the password matches any in the history.
294     */
295    public boolean checkPasswordHistory(String password) {
296        String passwordHashString = new String(passwordToHash(password));
297        String passwordHistory = getString(PASSWORD_HISTORY_KEY);
298        if (passwordHistory == null) {
299            return false;
300        }
301        // Password History may be too long...
302        int passwordHashLength = passwordHashString.length();
303        int passwordHistoryLength = getRequestedPasswordHistoryLength();
304        if(passwordHistoryLength == 0) {
305            return false;
306        }
307        int neededPasswordHistoryLength = passwordHashLength * passwordHistoryLength
308                + passwordHistoryLength - 1;
309        if (passwordHistory.length() > neededPasswordHistoryLength) {
310            passwordHistory = passwordHistory.substring(0, neededPasswordHistoryLength);
311        }
312        return passwordHistory.contains(passwordHashString);
313    }
314
315    /**
316     * Check to see if the user has stored a lock pattern.
317     * @return Whether a saved pattern exists.
318     */
319    public boolean savedPatternExists() {
320        return sHaveNonZeroPatternFile.get();
321    }
322
323    /**
324     * Check to see if the user has stored a lock pattern.
325     * @return Whether a saved pattern exists.
326     */
327    public boolean savedPasswordExists() {
328        return sHaveNonZeroPasswordFile.get();
329    }
330
331    /**
332     * Return true if the user has ever chosen a pattern.  This is true even if the pattern is
333     * currently cleared.
334     *
335     * @return True if the user has ever chosen a pattern.
336     */
337    public boolean isPatternEverChosen() {
338        return getBoolean(PATTERN_EVER_CHOSEN_KEY);
339    }
340
341    /**
342     * Return true if the user has ever chosen biometric weak.  This is true even if biometric
343     * weak is not current set.
344     *
345     * @return True if the user has ever chosen biometric weak.
346     */
347    public boolean isBiometricWeakEverChosen() {
348        return getBoolean(BIOMETRIC_WEAK_EVER_CHOSEN_KEY);
349    }
350
351    /**
352     * Used by device policy manager to validate the current password
353     * information it has.
354     */
355    public int getActivePasswordQuality() {
356        int activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED;
357        // Note we don't want to use getKeyguardStoredPasswordQuality() because we want this to
358        // return biometric_weak if that is being used instead of the backup
359        int quality =
360                (int) getLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
361        switch (quality) {
362            case DevicePolicyManager.PASSWORD_QUALITY_SOMETHING:
363                if (isLockPatternEnabled()) {
364                    activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_SOMETHING;
365                }
366                break;
367            case DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK:
368                if (isBiometricWeakInstalled()) {
369                    activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK;
370                }
371                break;
372            case DevicePolicyManager.PASSWORD_QUALITY_NUMERIC:
373                if (isLockPasswordEnabled()) {
374                    activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_NUMERIC;
375                }
376                break;
377            case DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC:
378                if (isLockPasswordEnabled()) {
379                    activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC;
380                }
381                break;
382            case DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC:
383                if (isLockPasswordEnabled()) {
384                    activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC;
385                }
386                break;
387            case DevicePolicyManager.PASSWORD_QUALITY_COMPLEX:
388                if (isLockPasswordEnabled()) {
389                    activePasswordQuality = DevicePolicyManager.PASSWORD_QUALITY_COMPLEX;
390                }
391                break;
392        }
393
394        return activePasswordQuality;
395    }
396
397    /**
398     * Clear any lock pattern or password.
399     */
400    public void clearLock(boolean isFallback) {
401        if(!isFallback) deleteGallery();
402        saveLockPassword(null, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
403        setLockPatternEnabled(false);
404        saveLockPattern(null);
405        setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
406        setLong(PASSWORD_TYPE_ALTERNATE_KEY, DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED);
407    }
408
409    /**
410     * Disable showing lock screen at all when the DevicePolicyManager allows it.
411     * This is only meaningful if pattern, pin or password are not set.
412     *
413     * @param disable Disables lock screen when true
414     */
415    public void setLockScreenDisabled(boolean disable) {
416        setLong(DISABLE_LOCKSCREEN_KEY, disable ? 1 : 0);
417    }
418
419    /**
420     * Determine if LockScreen can be disabled. This is used, for example, to tell if we should
421     * show LockScreen or go straight to the home screen.
422     *
423     * @return true if lock screen is can be disabled
424     */
425    public boolean isLockScreenDisabled() {
426        return !isSecure() && getLong(DISABLE_LOCKSCREEN_KEY, 0) != 0;
427    }
428
429    /**
430     * Save a lock pattern.
431     * @param pattern The new pattern to save.
432     */
433    public void saveLockPattern(List<LockPatternView.Cell> pattern) {
434        this.saveLockPattern(pattern, false);
435    }
436
437    /**
438     * Calls back SetupFaceLock to delete the temporary gallery file
439     */
440    public void deleteTempGallery() {
441        Intent intent = new Intent().setClassName("com.android.facelock",
442                "com.android.facelock.SetupFaceLock");
443        intent.putExtra("deleteTempGallery", true);
444        mContext.startActivity(intent);
445    }
446
447    /**
448     * Calls back SetupFaceLock to delete the gallery file when the lock type is changed
449    */
450    void deleteGallery() {
451        if(usingBiometricWeak()) {
452            Intent intent = new Intent().setClassName("com.android.facelock",
453                    "com.android.facelock.SetupFaceLock");
454            intent.putExtra("deleteGallery", true);
455            mContext.startActivity(intent);
456        }
457    }
458
459    /**
460     * Save a lock pattern.
461     * @param pattern The new pattern to save.
462     * @param isFallback Specifies if this is a fallback to biometric weak
463     */
464    public void saveLockPattern(List<LockPatternView.Cell> pattern, boolean isFallback) {
465        // Compute the hash
466        final byte[] hash = LockPatternUtils.patternToHash(pattern);
467        try {
468            // Write the hash to file
469            RandomAccessFile raf = new RandomAccessFile(sLockPatternFilename, "rw");
470            // Truncate the file if pattern is null, to clear the lock
471            if (pattern == null) {
472                raf.setLength(0);
473            } else {
474                raf.write(hash, 0, hash.length);
475            }
476            raf.close();
477            DevicePolicyManager dpm = getDevicePolicyManager();
478            KeyStore keyStore = KeyStore.getInstance();
479            if (pattern != null) {
480                keyStore.password(patternToString(pattern));
481                setBoolean(PATTERN_EVER_CHOSEN_KEY, true);
482                if (!isFallback) {
483                    deleteGallery();
484                    setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
485                } else {
486                    setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK);
487                    setLong(PASSWORD_TYPE_ALTERNATE_KEY,
488                            DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
489                    finishBiometricWeak();
490                }
491                dpm.setActivePasswordState(DevicePolicyManager.PASSWORD_QUALITY_SOMETHING, pattern
492                        .size(), 0, 0, 0, 0, 0, 0);
493            } else {
494                if (keyStore.isEmpty()) {
495                    keyStore.reset();
496                }
497                dpm.setActivePasswordState(DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED, 0, 0,
498                        0, 0, 0, 0, 0);
499            }
500        } catch (FileNotFoundException fnfe) {
501            // Cant do much, unless we want to fail over to using the settings
502            // provider
503            Log.e(TAG, "Unable to save lock pattern to " + sLockPatternFilename);
504        } catch (IOException ioe) {
505            // Cant do much
506            Log.e(TAG, "Unable to save lock pattern to " + sLockPatternFilename);
507        }
508    }
509
510    /**
511     * Compute the password quality from the given password string.
512     */
513    static public int computePasswordQuality(String password) {
514        boolean hasDigit = false;
515        boolean hasNonDigit = false;
516        final int len = password.length();
517        for (int i = 0; i < len; i++) {
518            if (Character.isDigit(password.charAt(i))) {
519                hasDigit = true;
520            } else {
521                hasNonDigit = true;
522            }
523        }
524
525        if (hasNonDigit && hasDigit) {
526            return DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC;
527        }
528        if (hasNonDigit) {
529            return DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC;
530        }
531        if (hasDigit) {
532            return DevicePolicyManager.PASSWORD_QUALITY_NUMERIC;
533        }
534        return DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED;
535    }
536
537    /** Update the encryption password if it is enabled **/
538    private void updateEncryptionPassword(String password) {
539        DevicePolicyManager dpm = getDevicePolicyManager();
540        if (dpm.getStorageEncryptionStatus() != DevicePolicyManager.ENCRYPTION_STATUS_ACTIVE) {
541            return;
542        }
543
544        IBinder service = ServiceManager.getService("mount");
545        if (service == null) {
546            Log.e(TAG, "Could not find the mount service to update the encryption password");
547            return;
548        }
549
550        IMountService mountService = IMountService.Stub.asInterface(service);
551        try {
552            mountService.changeEncryptionPassword(password);
553        } catch (RemoteException e) {
554            Log.e(TAG, "Error changing encryption password", e);
555        }
556    }
557
558    /**
559     * Save a lock password.  Does not ensure that the password is as good
560     * as the requested mode, but will adjust the mode to be as good as the
561     * pattern.
562     * @param password The password to save
563     * @param quality {@see DevicePolicyManager#getPasswordQuality(android.content.ComponentName)}
564     */
565    public void saveLockPassword(String password, int quality) {
566        this.saveLockPassword(password, quality, false);
567    }
568
569    /**
570     * Save a lock password.  Does not ensure that the password is as good
571     * as the requested mode, but will adjust the mode to be as good as the
572     * pattern.
573     * @param password The password to save
574     * @param quality {@see DevicePolicyManager#getPasswordQuality(android.content.ComponentName)}
575     * @param isFallback Specifies if this is a fallback to biometric weak
576     */
577    public void saveLockPassword(String password, int quality, boolean isFallback) {
578        // Compute the hash
579        final byte[] hash = passwordToHash(password);
580        try {
581            // Write the hash to file
582            RandomAccessFile raf = new RandomAccessFile(sLockPasswordFilename, "rw");
583            // Truncate the file if pattern is null, to clear the lock
584            if (password == null) {
585                raf.setLength(0);
586            } else {
587                raf.write(hash, 0, hash.length);
588            }
589            raf.close();
590            DevicePolicyManager dpm = getDevicePolicyManager();
591            KeyStore keyStore = KeyStore.getInstance();
592            if (password != null) {
593                // Update the encryption password.
594                updateEncryptionPassword(password);
595
596                // Update the keystore password
597                keyStore.password(password);
598
599                int computedQuality = computePasswordQuality(password);
600                if (!isFallback) {
601                    deleteGallery();
602                    setLong(PASSWORD_TYPE_KEY, Math.max(quality, computedQuality));
603                } else {
604                    setLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK);
605                    setLong(PASSWORD_TYPE_ALTERNATE_KEY, Math.max(quality, computedQuality));
606                    finishBiometricWeak();
607                }
608                if (computedQuality != DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED) {
609                    int letters = 0;
610                    int uppercase = 0;
611                    int lowercase = 0;
612                    int numbers = 0;
613                    int symbols = 0;
614                    int nonletter = 0;
615                    for (int i = 0; i < password.length(); i++) {
616                        char c = password.charAt(i);
617                        if (c >= 'A' && c <= 'Z') {
618                            letters++;
619                            uppercase++;
620                        } else if (c >= 'a' && c <= 'z') {
621                            letters++;
622                            lowercase++;
623                        } else if (c >= '0' && c <= '9') {
624                            numbers++;
625                            nonletter++;
626                        } else {
627                            symbols++;
628                            nonletter++;
629                        }
630                    }
631                    dpm.setActivePasswordState(Math.max(quality, computedQuality), password
632                            .length(), letters, uppercase, lowercase, numbers, symbols, nonletter);
633                } else {
634                    // The password is not anything.
635                    dpm.setActivePasswordState(
636                            DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED, 0, 0, 0, 0, 0, 0, 0);
637                }
638                // Add the password to the password history. We assume all
639                // password
640                // hashes have the same length for simplicity of implementation.
641                String passwordHistory = getString(PASSWORD_HISTORY_KEY);
642                if (passwordHistory == null) {
643                    passwordHistory = new String();
644                }
645                int passwordHistoryLength = getRequestedPasswordHistoryLength();
646                if (passwordHistoryLength == 0) {
647                    passwordHistory = "";
648                } else {
649                    passwordHistory = new String(hash) + "," + passwordHistory;
650                    // Cut it to contain passwordHistoryLength hashes
651                    // and passwordHistoryLength -1 commas.
652                    passwordHistory = passwordHistory.substring(0, Math.min(hash.length
653                            * passwordHistoryLength + passwordHistoryLength - 1, passwordHistory
654                            .length()));
655                }
656                setString(PASSWORD_HISTORY_KEY, passwordHistory);
657            } else {
658                // Conditionally reset the keystore if empty. If
659                // non-empty, we are just switching key guard type
660                if (keyStore.isEmpty()) {
661                    keyStore.reset();
662                }
663                dpm.setActivePasswordState(
664                        DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED, 0, 0, 0, 0, 0, 0, 0);
665            }
666        } catch (FileNotFoundException fnfe) {
667            // Cant do much, unless we want to fail over to using the settings provider
668            Log.e(TAG, "Unable to save lock pattern to " + sLockPasswordFilename);
669        } catch (IOException ioe) {
670            // Cant do much
671            Log.e(TAG, "Unable to save lock pattern to " + sLockPasswordFilename);
672        }
673    }
674
675    /**
676     * Retrieves the quality mode we're in.
677     * {@see DevicePolicyManager#getPasswordQuality(android.content.ComponentName)}
678     *
679     * @return stored password quality
680     */
681    public int getKeyguardStoredPasswordQuality() {
682        int quality =
683                (int) getLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
684        // If the user has chosen to use weak biometric sensor, then return the backup locking
685        // method and treat biometric as a special case.
686        if (quality == DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK) {
687            quality =
688                (int) getLong(PASSWORD_TYPE_ALTERNATE_KEY,
689                        DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
690        }
691        return quality;
692    }
693
694    /**
695     * @return true if the lockscreen method is set to biometric weak
696     */
697    public boolean usingBiometricWeak() {
698        int quality =
699                (int) getLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING);
700        return quality == DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK;
701    }
702
703    /**
704     * Deserialize a pattern.
705     * @param string The pattern serialized with {@link #patternToString}
706     * @return The pattern.
707     */
708    public static List<LockPatternView.Cell> stringToPattern(String string) {
709        List<LockPatternView.Cell> result = Lists.newArrayList();
710
711        final byte[] bytes = string.getBytes();
712        for (int i = 0; i < bytes.length; i++) {
713            byte b = bytes[i];
714            result.add(LockPatternView.Cell.of(b / 3, b % 3));
715        }
716        return result;
717    }
718
719    /**
720     * Serialize a pattern.
721     * @param pattern The pattern.
722     * @return The pattern in string form.
723     */
724    public static String patternToString(List<LockPatternView.Cell> pattern) {
725        if (pattern == null) {
726            return "";
727        }
728        final int patternSize = pattern.size();
729
730        byte[] res = new byte[patternSize];
731        for (int i = 0; i < patternSize; i++) {
732            LockPatternView.Cell cell = pattern.get(i);
733            res[i] = (byte) (cell.getRow() * 3 + cell.getColumn());
734        }
735        return new String(res);
736    }
737
738    /*
739     * Generate an SHA-1 hash for the pattern. Not the most secure, but it is
740     * at least a second level of protection. First level is that the file
741     * is in a location only readable by the system process.
742     * @param pattern the gesture pattern.
743     * @return the hash of the pattern in a byte array.
744     */
745    private static byte[] patternToHash(List<LockPatternView.Cell> pattern) {
746        if (pattern == null) {
747            return null;
748        }
749
750        final int patternSize = pattern.size();
751        byte[] res = new byte[patternSize];
752        for (int i = 0; i < patternSize; i++) {
753            LockPatternView.Cell cell = pattern.get(i);
754            res[i] = (byte) (cell.getRow() * 3 + cell.getColumn());
755        }
756        try {
757            MessageDigest md = MessageDigest.getInstance("SHA-1");
758            byte[] hash = md.digest(res);
759            return hash;
760        } catch (NoSuchAlgorithmException nsa) {
761            return res;
762        }
763    }
764
765    private String getSalt() {
766        long salt = getLong(LOCK_PASSWORD_SALT_KEY, 0);
767        if (salt == 0) {
768            try {
769                salt = SecureRandom.getInstance("SHA1PRNG").nextLong();
770                setLong(LOCK_PASSWORD_SALT_KEY, salt);
771                Log.v(TAG, "Initialized lock password salt");
772            } catch (NoSuchAlgorithmException e) {
773                // Throw an exception rather than storing a password we'll never be able to recover
774                throw new IllegalStateException("Couldn't get SecureRandom number", e);
775            }
776        }
777        return Long.toHexString(salt);
778    }
779
780    /*
781     * Generate a hash for the given password. To avoid brute force attacks, we use a salted hash.
782     * Not the most secure, but it is at least a second level of protection. First level is that
783     * the file is in a location only readable by the system process.
784     * @param password the gesture pattern.
785     * @return the hash of the pattern in a byte array.
786     */
787    public byte[] passwordToHash(String password) {
788        if (password == null) {
789            return null;
790        }
791        String algo = null;
792        byte[] hashed = null;
793        try {
794            byte[] saltedPassword = (password + getSalt()).getBytes();
795            byte[] sha1 = MessageDigest.getInstance(algo = "SHA-1").digest(saltedPassword);
796            byte[] md5 = MessageDigest.getInstance(algo = "MD5").digest(saltedPassword);
797            hashed = (toHex(sha1) + toHex(md5)).getBytes();
798        } catch (NoSuchAlgorithmException e) {
799            Log.w(TAG, "Failed to encode string because of missing algorithm: " + algo);
800        }
801        return hashed;
802    }
803
804    private static String toHex(byte[] ary) {
805        final String hex = "0123456789ABCDEF";
806        String ret = "";
807        for (int i = 0; i < ary.length; i++) {
808            ret += hex.charAt((ary[i] >> 4) & 0xf);
809            ret += hex.charAt(ary[i] & 0xf);
810        }
811        return ret;
812    }
813
814    /**
815     * @return Whether the lock password is enabled, or if it is set as a backup for biometric weak
816     */
817    public boolean isLockPasswordEnabled() {
818        long mode = getLong(PASSWORD_TYPE_KEY, 0);
819        long backupMode = getLong(PASSWORD_TYPE_ALTERNATE_KEY, 0);
820        final boolean passwordEnabled = mode == DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC
821                || mode == DevicePolicyManager.PASSWORD_QUALITY_NUMERIC
822                || mode == DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC
823                || mode == DevicePolicyManager.PASSWORD_QUALITY_COMPLEX;
824        final boolean backupEnabled = backupMode == DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC
825                || backupMode == DevicePolicyManager.PASSWORD_QUALITY_NUMERIC
826                || backupMode == DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC
827                || backupMode == DevicePolicyManager.PASSWORD_QUALITY_COMPLEX;
828
829        return savedPasswordExists() && (passwordEnabled ||
830                (usingBiometricWeak() && backupEnabled));
831    }
832
833    /**
834     * @return Whether the lock pattern is enabled, or if it is set as a backup for biometric weak
835     */
836    public boolean isLockPatternEnabled() {
837        final boolean backupEnabled =
838                getLong(PASSWORD_TYPE_ALTERNATE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING)
839                == DevicePolicyManager.PASSWORD_QUALITY_SOMETHING;
840
841        return getBoolean(Settings.Secure.LOCK_PATTERN_ENABLED)
842                && (getLong(PASSWORD_TYPE_KEY, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING)
843                        == DevicePolicyManager.PASSWORD_QUALITY_SOMETHING ||
844                        (usingBiometricWeak() && backupEnabled));
845    }
846
847    /**
848     * @return Whether biometric weak lock is installed and that the front facing camera exists
849     */
850    public boolean isBiometricWeakInstalled() {
851        // Check that the system flag was set
852        if (!OPTION_ENABLE_FACELOCK.equals(getString(LOCKSCREEN_OPTIONS))) {
853            return false;
854        }
855
856        // Check that it's installed
857        PackageManager pm = mContext.getPackageManager();
858        try {
859            pm.getPackageInfo("com.android.facelock", PackageManager.GET_ACTIVITIES);
860        } catch (PackageManager.NameNotFoundException e) {
861            return false;
862        }
863
864        // Check that the camera is enabled
865        if (!pm.hasSystemFeature(PackageManager.FEATURE_CAMERA_FRONT)) {
866            return false;
867        }
868        if (getDevicePolicyManager().getCameraDisabled(null)) {
869            return false;
870        }
871
872
873        return true;
874    }
875
876    /**
877     * Set whether the lock pattern is enabled.
878     */
879    public void setLockPatternEnabled(boolean enabled) {
880        setBoolean(Settings.Secure.LOCK_PATTERN_ENABLED, enabled);
881    }
882
883    /**
884     * @return Whether the visible pattern is enabled.
885     */
886    public boolean isVisiblePatternEnabled() {
887        return getBoolean(Settings.Secure.LOCK_PATTERN_VISIBLE);
888    }
889
890    /**
891     * Set whether the visible pattern is enabled.
892     */
893    public void setVisiblePatternEnabled(boolean enabled) {
894        setBoolean(Settings.Secure.LOCK_PATTERN_VISIBLE, enabled);
895    }
896
897    /**
898     * @return Whether tactile feedback for the pattern is enabled.
899     */
900    public boolean isTactileFeedbackEnabled() {
901        return getBoolean(Settings.Secure.LOCK_PATTERN_TACTILE_FEEDBACK_ENABLED);
902    }
903
904    /**
905     * Set whether tactile feedback for the pattern is enabled.
906     */
907    public void setTactileFeedbackEnabled(boolean enabled) {
908        setBoolean(Settings.Secure.LOCK_PATTERN_TACTILE_FEEDBACK_ENABLED, enabled);
909    }
910
911    /**
912     * Set and store the lockout deadline, meaning the user can't attempt his/her unlock
913     * pattern until the deadline has passed.
914     * @return the chosen deadline.
915     */
916    public long setLockoutAttemptDeadline() {
917        final long deadline = SystemClock.elapsedRealtime() + FAILED_ATTEMPT_TIMEOUT_MS;
918        setLong(LOCKOUT_ATTEMPT_DEADLINE, deadline);
919        return deadline;
920    }
921
922    /**
923     * @return The elapsed time in millis in the future when the user is allowed to
924     *   attempt to enter his/her lock pattern, or 0 if the user is welcome to
925     *   enter a pattern.
926     */
927    public long getLockoutAttemptDeadline() {
928        final long deadline = getLong(LOCKOUT_ATTEMPT_DEADLINE, 0L);
929        final long now = SystemClock.elapsedRealtime();
930        if (deadline < now || deadline > (now + FAILED_ATTEMPT_TIMEOUT_MS)) {
931            return 0L;
932        }
933        return deadline;
934    }
935
936    /**
937     * @return Whether the user is permanently locked out until they verify their
938     *   credentials.  Occurs after {@link #FAILED_ATTEMPTS_BEFORE_RESET} failed
939     *   attempts.
940     */
941    public boolean isPermanentlyLocked() {
942        return getBoolean(LOCKOUT_PERMANENT_KEY);
943    }
944
945    /**
946     * Set the state of whether the device is permanently locked, meaning the user
947     * must authenticate via other means.
948     *
949     * @param locked Whether the user is permanently locked out until they verify their
950     *   credentials.  Occurs after {@link #FAILED_ATTEMPTS_BEFORE_RESET} failed
951     *   attempts.
952     */
953    public void setPermanentlyLocked(boolean locked) {
954        setBoolean(LOCKOUT_PERMANENT_KEY, locked);
955    }
956
957    public boolean isEmergencyCallCapable() {
958        return mContext.getResources().getBoolean(
959                com.android.internal.R.bool.config_voice_capable);
960    }
961
962    public boolean isPukUnlockScreenEnable() {
963        return mContext.getResources().getBoolean(
964                com.android.internal.R.bool.config_enable_puk_unlock_screen);
965    }
966
967    public boolean isEmergencyCallEnabledWhileSimLocked() {
968        return mContext.getResources().getBoolean(
969                com.android.internal.R.bool.config_enable_emergency_call_while_sim_locked);
970    }
971
972    /**
973     * @return A formatted string of the next alarm (for showing on the lock screen),
974     *   or null if there is no next alarm.
975     */
976    public String getNextAlarm() {
977        String nextAlarm = Settings.System.getString(mContentResolver,
978                Settings.System.NEXT_ALARM_FORMATTED);
979        if (nextAlarm == null || TextUtils.isEmpty(nextAlarm)) {
980            return null;
981        }
982        return nextAlarm;
983    }
984
985    private boolean getBoolean(String secureSettingKey) {
986        return 1 ==
987                android.provider.Settings.Secure.getInt(mContentResolver, secureSettingKey, 0);
988    }
989
990    private void setBoolean(String secureSettingKey, boolean enabled) {
991        android.provider.Settings.Secure.putInt(mContentResolver, secureSettingKey,
992                                                enabled ? 1 : 0);
993    }
994
995    private long getLong(String secureSettingKey, long def) {
996        return android.provider.Settings.Secure.getLong(mContentResolver, secureSettingKey, def);
997    }
998
999    private void setLong(String secureSettingKey, long value) {
1000        android.provider.Settings.Secure.putLong(mContentResolver, secureSettingKey, value);
1001    }
1002
1003    private String getString(String secureSettingKey) {
1004        return android.provider.Settings.Secure.getString(mContentResolver, secureSettingKey);
1005    }
1006
1007    private void setString(String secureSettingKey, String value) {
1008        android.provider.Settings.Secure.putString(mContentResolver, secureSettingKey, value);
1009    }
1010
1011    public boolean isSecure() {
1012        long mode = getKeyguardStoredPasswordQuality();
1013        final boolean isPattern = mode == DevicePolicyManager.PASSWORD_QUALITY_SOMETHING;
1014        final boolean isPassword = mode == DevicePolicyManager.PASSWORD_QUALITY_NUMERIC
1015                || mode == DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC
1016                || mode == DevicePolicyManager.PASSWORD_QUALITY_ALPHANUMERIC
1017                || mode == DevicePolicyManager.PASSWORD_QUALITY_COMPLEX;
1018        final boolean secure = isPattern && isLockPatternEnabled() && savedPatternExists()
1019                || isPassword && savedPasswordExists();
1020        return secure;
1021    }
1022
1023    /**
1024     * Sets the emergency button visibility based on isEmergencyCallCapable().
1025     *
1026     * If the emergency button is visible, sets the text on the emergency button
1027     * to indicate what action will be taken.
1028     *
1029     * If there's currently a call in progress, the button will take them to the call
1030     * @param button the button to update
1031     * @param the phone state:
1032     *  {@link TelephonyManager#CALL_STATE_IDLE}
1033     *  {@link TelephonyManager#CALL_STATE_RINGING}
1034     *  {@link TelephonyManager#CALL_STATE_OFFHOOK}
1035     * @param shown indicates whether the given screen wants the emergency button to show at all
1036     */
1037    public void updateEmergencyCallButtonState(Button button, int  phoneState, boolean shown) {
1038        if (isEmergencyCallCapable() && shown) {
1039            button.setVisibility(View.VISIBLE);
1040        } else {
1041            button.setVisibility(View.GONE);
1042            return;
1043        }
1044
1045        int textId;
1046        if (phoneState == TelephonyManager.CALL_STATE_OFFHOOK) {
1047            // show "return to call" text and show phone icon
1048            textId = R.string.lockscreen_return_to_call;
1049            int phoneCallIcon = R.drawable.stat_sys_phone_call;
1050            button.setCompoundDrawablesWithIntrinsicBounds(phoneCallIcon, 0, 0, 0);
1051        } else {
1052            textId = R.string.lockscreen_emergency_call;
1053            int emergencyIcon = R.drawable.ic_emergency;
1054            button.setCompoundDrawablesWithIntrinsicBounds(emergencyIcon, 0, 0, 0);
1055        }
1056        button.setText(textId);
1057    }
1058
1059    /**
1060     * Resumes a call in progress. Typically launched from the EmergencyCall button
1061     * on various lockscreens.
1062     *
1063     * @return true if we were able to tell InCallScreen to show.
1064     */
1065    public boolean resumeCall() {
1066        ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.checkService("phone"));
1067        try {
1068            if (phone != null && phone.showCallScreen()) {
1069                return true;
1070            }
1071        } catch (RemoteException e) {
1072            // What can we do?
1073        }
1074        return false;
1075    }
1076
1077    private void finishBiometricWeak() {
1078        setBoolean(BIOMETRIC_WEAK_EVER_CHOSEN_KEY, true);
1079
1080        // Launch intent to show final screen, this also
1081        // moves the temporary gallery to the actual gallery
1082        Intent intent = new Intent();
1083        intent.setClassName("com.android.facelock",
1084                "com.android.facelock.SetupEndScreen");
1085        mContext.startActivity(intent);
1086    }
1087
1088}
1089