CryptKeeper.java revision 39b467482d1bf256a111c757e9b7621c6f523271
18fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks/*
28fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks * Copyright (C) 2011 The Android Open Source Project
38fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks *
48fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks * Licensed under the Apache License, Version 2.0 (the "License");
58fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks * you may not use this file except in compliance with the License.
68fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks * You may obtain a copy of the License at
78fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks *
88fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks *      http://www.apache.org/licenses/LICENSE-2.0
98fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks *
108fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks * Unless required by applicable law or agreed to in writing, software
118fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks * distributed under the License is distributed on an "AS IS" BASIS,
128fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
138fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks * See the License for the specific language governing permissions and
148fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks * limitations under the License.
158fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks */
168fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks
178fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parkspackage com.android.settings;
188fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks
198fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.app.Activity;
208fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.app.StatusBarManager;
218fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.content.ComponentName;
228fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.content.Context;
23ec5a45e79cb7161adfabf475342c1e1b25994276Jason parksimport android.content.Intent;
247ae20e3ce98543888cfccbef6b1254d060bc30caPaul Lawrenceimport android.content.pm.ActivityInfo;
258fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.content.pm.PackageManager;
267ae20e3ce98543888cfccbef6b1254d060bc30caPaul Lawrenceimport android.content.res.Resources.NotFoundException;
27de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwalimport android.media.AudioManager;
2806c5ff4a46686d3f599e40df0768177d3d88913cJason parksimport android.os.AsyncTask;
298fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.os.Bundle;
30ec5a45e79cb7161adfabf475342c1e1b25994276Jason parksimport android.os.Handler;
318fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.os.IBinder;
32ec5a45e79cb7161adfabf475342c1e1b25994276Jason parksimport android.os.Message;
3335933812b16f0b4221280bbcc3c32f6540996bf2Jason parksimport android.os.PowerManager;
348373b451692a39abdfd12444241c016831e1a4a4David Brownimport android.os.RemoteException;
358fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.os.ServiceManager;
368fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.os.SystemProperties;
376a5929b086a61a955a4a2f43f5fa251e8754ff4aChristopher Tateimport android.os.UserHandle;
388fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.os.storage.IMountService;
39b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrenceimport android.os.storage.StorageManager;
406ebbd30e18ca514ca9ee87ffa428c55c9fd92a8cVikram Aggarwalimport android.provider.Settings;
413e71b197f7f85c5045a083ecc532954958807be6Tyler Gunnimport android.telecom.TelecomManager;
428373b451692a39abdfd12444241c016831e1a4a4David Brownimport android.telephony.TelephonyManager;
43d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwalimport android.text.Editable;
44ec5a45e79cb7161adfabf475342c1e1b25994276Jason parksimport android.text.TextUtils;
45d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwalimport android.text.TextWatcher;
46b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrenceimport android.text.format.DateUtils;
478fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.util.Log;
488fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.view.KeyEvent;
49d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwalimport android.view.MotionEvent;
5013d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadlerimport android.view.View;
5113d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadlerimport android.view.View.OnClickListener;
52d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwalimport android.view.View.OnKeyListener;
53d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwalimport android.view.View.OnTouchListener;
5419280af592876d1fe7acd4120eb93390c089641cFyodor Kupolovimport android.view.WindowManager;
558fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.view.inputmethod.EditorInfo;
569fcb6a7fac02aef85085c2db616556257e1642f5Ben Komaloimport android.view.inputmethod.InputMethodInfo;
5775c085ee890744cdd4b90c72f8b50e6aeeb31e88Jason parksimport android.view.inputmethod.InputMethodManager;
589fcb6a7fac02aef85085c2db616556257e1642f5Ben Komaloimport android.view.inputmethod.InputMethodSubtype;
5913d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadlerimport android.widget.Button;
60ec5a45e79cb7161adfabf475342c1e1b25994276Jason parksimport android.widget.EditText;
61ec5a45e79cb7161adfabf475342c1e1b25994276Jason parksimport android.widget.ProgressBar;
628fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parksimport android.widget.TextView;
638fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks
645543404ae0ec9635b59d37fa01074ea598d539ebWink Savilleimport com.android.internal.telephony.PhoneConstants;
65b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrenceimport com.android.internal.widget.LockPatternUtils;
66b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrenceimport com.android.internal.widget.LockPatternView;
67b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrenceimport com.android.internal.widget.LockPatternView.Cell;
6839b467482d1bf256a111c757e9b7621c6f523271Jason Monkimport com.android.internal.widget.LockPatternView.DisplayMode;
699fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo
709fcb6a7fac02aef85085c2db616556257e1642f5Ben Komaloimport java.util.List;
7191a2f0566afb91549cbda9289b516154a6467624Ben Komalo
7291a2f0566afb91549cbda9289b516154a6467624Ben Komalo/**
7391a2f0566afb91549cbda9289b516154a6467624Ben Komalo * Settings screens to show the UI flows for encrypting/decrypting the device.
7491a2f0566afb91549cbda9289b516154a6467624Ben Komalo *
7591a2f0566afb91549cbda9289b516154a6467624Ben Komalo * This may be started via adb for debugging the UI layout, without having to go through
7691a2f0566afb91549cbda9289b516154a6467624Ben Komalo * encryption flows everytime. It should be noted that starting the activity in this manner
7791a2f0566afb91549cbda9289b516154a6467624Ben Komalo * is only useful for verifying UI-correctness - the behavior will not be identical.
7891a2f0566afb91549cbda9289b516154a6467624Ben Komalo * <pre>
7991a2f0566afb91549cbda9289b516154a6467624Ben Komalo * $ adb shell pm enable com.android.settings/.CryptKeeper
8091a2f0566afb91549cbda9289b516154a6467624Ben Komalo * $ adb shell am start \
8191a2f0566afb91549cbda9289b516154a6467624Ben Komalo *     -e "com.android.settings.CryptKeeper.DEBUG_FORCE_VIEW" "progress" \
8291a2f0566afb91549cbda9289b516154a6467624Ben Komalo *     -n com.android.settings/.CryptKeeper
8391a2f0566afb91549cbda9289b516154a6467624Ben Komalo * </pre>
8491a2f0566afb91549cbda9289b516154a6467624Ben Komalo */
85d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwalpublic class CryptKeeper extends Activity implements TextView.OnEditorActionListener,
86d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        OnKeyListener, OnTouchListener, TextWatcher {
87ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks    private static final String TAG = "CryptKeeper";
8835933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
898fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks    private static final String DECRYPT_STATE = "trigger_restart_framework";
9051e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley
91de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    /** Message sent to us to indicate encryption update progress. */
92de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    private static final int MESSAGE_UPDATE_PROGRESS = 1;
93de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    /** Message sent to us to indicate alerting the user that we are waiting for password entry */
9451e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley    private static final int MESSAGE_NOTIFY = 2;
95de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal
96de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    // Constants used to control policy.
9713b8b564f83c9520358647c54ec5b0f890829d0ePaul Crowley    private static final int MAX_FAILED_ATTEMPTS = 30;
98ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks    private static final int COOL_DOWN_ATTEMPTS = 10;
99ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks
1008373b451692a39abdfd12444241c016831e1a4a4David Brown    // Intent action for launching the Emergency Dialer activity.
1018373b451692a39abdfd12444241c016831e1a4a4David Brown    static final String ACTION_EMERGENCY_DIAL = "com.android.phone.EmergencyDialer.DIAL";
1028373b451692a39abdfd12444241c016831e1a4a4David Brown
10391a2f0566afb91549cbda9289b516154a6467624Ben Komalo    // Debug Intent extras so that this Activity may be started via adb for debugging UI layouts
10491a2f0566afb91549cbda9289b516154a6467624Ben Komalo    private static final String EXTRA_FORCE_VIEW =
10591a2f0566afb91549cbda9289b516154a6467624Ben Komalo            "com.android.settings.CryptKeeper.DEBUG_FORCE_VIEW";
10691a2f0566afb91549cbda9289b516154a6467624Ben Komalo    private static final String FORCE_VIEW_PROGRESS = "progress";
10791a2f0566afb91549cbda9289b516154a6467624Ben Komalo    private static final String FORCE_VIEW_ERROR = "error";
108de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    private static final String FORCE_VIEW_PASSWORD = "password";
10991a2f0566afb91549cbda9289b516154a6467624Ben Komalo
110bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal    /** When encryption is detected, this flag indicates whether or not we've checked for errors. */
1110e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo    private boolean mValidationComplete;
112d4758efef6d6564d7b4b0b747d0a9ae9b44a38c7Ben Komalo    private boolean mValidationRequested;
1130e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo    /** A flag to indicate that the volume is in a bad state (e.g. partially encrypted). */
1140e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo    private boolean mEncryptionGoneBad;
11587abbd3ea06a4901a4a967ce01e9fded356ae75fPaul Lawrence    /** If gone bad, should we show encryption failed (false) or corrupt (true)*/
11687abbd3ea06a4901a4a967ce01e9fded356ae75fPaul Lawrence    private boolean mCorrupt;
117de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    /** A flag to indicate when the back event should be ignored */
11851e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley    /** When set, blocks unlocking. Set every COOL_DOWN_ATTEMPTS attempts, only cleared
11951e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley        by power cycling phone. */
12051e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley    private boolean mCooldown = false;
12151e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley
1221499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler    PowerManager.WakeLock mWakeLock;
12306c5ff4a46686d3f599e40df0768177d3d88913cJason parks    private EditText mPasswordEntry;
124b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence    private LockPatternView mLockPatternView;
125d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    /** Number of calls to {@link #notifyUser()} to ignore before notifying. */
126d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    private int mNotificationCountdown = 0;
12773456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence    /** Number of calls to {@link #notifyUser()} before we release the wakelock */
12873456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence    private int mReleaseWakeLockCountdown = 0;
1295a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence    private int mStatusString = R.string.enter_password;
1301499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler
131f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence    // how long we wait to clear a wrong pattern
132f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence    private static final int WRONG_PATTERN_CLEAR_TIMEOUT_MS = 1500;
133f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence
1340f11e15f503d65d5a085157d8ec406a72d712ce7Paul Lawrence    // how long we wait to clear a right pattern
1350f11e15f503d65d5a085157d8ec406a72d712ce7Paul Lawrence    private static final int RIGHT_PATTERN_CLEAR_TIMEOUT_MS = 500;
1360f11e15f503d65d5a085157d8ec406a72d712ce7Paul Lawrence
1372555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    // When the user enters a short pin/password, run this to show an error,
1382555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    // but don't count it against attempts.
1392555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    private final Runnable mFakeUnlockAttemptRunnable = new Runnable() {
14051e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley        @Override
1412555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        public void run() {
1422555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            handleBadAttempt(1 /* failedAttempt */);
1432555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        }
1442555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    };
1452555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley
1462555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    // TODO: this should be tuned to match minimum decryption timeout
1472555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    private static final int FAKE_ATTEMPT_DELAY = 1000;
1482555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley
1492555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    private final Runnable mClearPatternRunnable = new Runnable() {
150529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley        @Override
151f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        public void run() {
152f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence            mLockPatternView.clearPattern();
153f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        }
154f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence    };
155f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence
1561499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler    /**
1571499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler     * Used to propagate state through configuration changes (e.g. screen rotation)
1581499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler     */
1591499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler    private static class NonConfigurationInstanceState {
1601499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler        final PowerManager.WakeLock wakelock;
1611499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler
1621499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler        NonConfigurationInstanceState(PowerManager.WakeLock _wakelock) {
1631499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler            wakelock = _wakelock;
1641499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler        }
1651499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler    }
1661499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler
16706c5ff4a46686d3f599e40df0768177d3d88913cJason parks    private class DecryptTask extends AsyncTask<String, Void, Integer> {
168ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence        private void hide(int id) {
169ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence            View view = findViewById(id);
170ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence            if (view != null) {
171ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence                view.setVisibility(View.GONE);
172ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence            }
173ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence        }
174ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence
17506c5ff4a46686d3f599e40df0768177d3d88913cJason parks        @Override
176529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley        protected void onPreExecute() {
177529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley            super.onPreExecute();
1782555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            beginAttempt();
179529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley        }
180529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley
181529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley        @Override
18206c5ff4a46686d3f599e40df0768177d3d88913cJason parks        protected Integer doInBackground(String... params) {
183de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            final IMountService service = getMountService();
18406c5ff4a46686d3f599e40df0768177d3d88913cJason parks            try {
18506c5ff4a46686d3f599e40df0768177d3d88913cJason parks                return service.decryptStorage(params[0]);
18606c5ff4a46686d3f599e40df0768177d3d88913cJason parks            } catch (Exception e) {
18706c5ff4a46686d3f599e40df0768177d3d88913cJason parks                Log.e(TAG, "Error while decrypting...", e);
18806c5ff4a46686d3f599e40df0768177d3d88913cJason parks                return -1;
18906c5ff4a46686d3f599e40df0768177d3d88913cJason parks            }
19006c5ff4a46686d3f599e40df0768177d3d88913cJason parks        }
19106c5ff4a46686d3f599e40df0768177d3d88913cJason parks
19206c5ff4a46686d3f599e40df0768177d3d88913cJason parks        @Override
19306c5ff4a46686d3f599e40df0768177d3d88913cJason parks        protected void onPostExecute(Integer failedAttempts) {
19406c5ff4a46686d3f599e40df0768177d3d88913cJason parks            if (failedAttempts == 0) {
19589c7570dd42ce6945ce8e092892a22ec79c30c82Paul Lawrence                // The password was entered successfully. Simply do nothing
19689c7570dd42ce6945ce8e092892a22ec79c30c82Paul Lawrence                // and wait for the service restart to switch to surfacefligner
1970f11e15f503d65d5a085157d8ec406a72d712ce7Paul Lawrence                if (mLockPatternView != null) {
1980f11e15f503d65d5a085157d8ec406a72d712ce7Paul Lawrence                    mLockPatternView.removeCallbacks(mClearPatternRunnable);
1990f11e15f503d65d5a085157d8ec406a72d712ce7Paul Lawrence                    mLockPatternView.postDelayed(mClearPatternRunnable, RIGHT_PATTERN_CLEAR_TIMEOUT_MS);
2000f11e15f503d65d5a085157d8ec406a72d712ce7Paul Lawrence                }
201529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley                final TextView status = (TextView) findViewById(R.id.status);
202529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley                status.setText(R.string.starting_android);
203ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence                hide(R.id.passwordEntry);
204ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence                hide(R.id.switch_ime_button);
205ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence                hide(R.id.lockPattern);
206ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence                hide(R.id.owner_info);
207ced7db460f472a288255f6f75302381356eb9de8Paul Lawrence                hide(R.id.emergencyCallButton);
20806c5ff4a46686d3f599e40df0768177d3d88913cJason parks            } else if (failedAttempts == MAX_FAILED_ATTEMPTS) {
20906c5ff4a46686d3f599e40df0768177d3d88913cJason parks                // Factory reset the device.
2101de688d911cf96eff39eddc5a7070e3c44efefc1Jeff Sharkey                Intent intent = new Intent(Intent.ACTION_MASTER_CLEAR);
2111de688d911cf96eff39eddc5a7070e3c44efefc1Jeff Sharkey                intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
2121de688d911cf96eff39eddc5a7070e3c44efefc1Jeff Sharkey                intent.putExtra(Intent.EXTRA_REASON, "CryptKeeper.MAX_FAILED_ATTEMPTS");
2131de688d911cf96eff39eddc5a7070e3c44efefc1Jeff Sharkey                sendBroadcast(intent);
214384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence            } else if (failedAttempts == -1) {
215384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence                // Right password, but decryption failed. Tell user bad news ...
216384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence                setContentView(R.layout.crypt_keeper_progress);
217384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence                showFactoryReset(true);
218384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence                return;
21906c5ff4a46686d3f599e40df0768177d3d88913cJason parks            } else {
2202555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                handleBadAttempt(failedAttempts);
2212555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            }
2222555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        }
2232555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    }
224bd4c3210e1e0d6f58b2a5857032a2dacb316be98Paul Lawrence
2252555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    private void beginAttempt() {
2262555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        final TextView status = (TextView) findViewById(R.id.status);
2272555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        status.setText(R.string.checking_decryption);
2282555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    }
229bd4c3210e1e0d6f58b2a5857032a2dacb316be98Paul Lawrence
2302555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    private void handleBadAttempt(Integer failedAttempts) {
2312555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        // Wrong entry. Handle pattern case.
2322555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        if (mLockPatternView != null) {
2332555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            mLockPatternView.setDisplayMode(DisplayMode.Wrong);
2342555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            mLockPatternView.removeCallbacks(mClearPatternRunnable);
2352555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            mLockPatternView.postDelayed(mClearPatternRunnable, WRONG_PATTERN_CLEAR_TIMEOUT_MS);
2362555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        }
2372555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        if ((failedAttempts % COOL_DOWN_ATTEMPTS) == 0) {
23851e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley            mCooldown = true;
23951e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley            // No need to setBackFunctionality(false) - it's already done
24051e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley            // at this point.
2412555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            cooldown();
2422555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        } else {
2432555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            final TextView status = (TextView) findViewById(R.id.status);
244529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley
2452555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            int remainingAttempts = MAX_FAILED_ATTEMPTS - failedAttempts;
2462555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            if (remainingAttempts < COOL_DOWN_ATTEMPTS) {
2472555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                CharSequence warningTemplate = getText(R.string.crypt_keeper_warn_wipe);
2482555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                CharSequence warning = TextUtils.expandTemplate(warningTemplate,
2492555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                        Integer.toString(remainingAttempts));
2502555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                status.setText(warning);
2512555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            } else {
2522555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                int passwordType = StorageManager.CRYPT_TYPE_PASSWORD;
2532555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                try {
2542555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                    final IMountService service = getMountService();
2552555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                    passwordType = service.getPasswordType();
2562555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                } catch (Exception e) {
2572555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                    Log.e(TAG, "Error calling mount service " + e);
2582555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                }
2592555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley
2602555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                if (passwordType == StorageManager.CRYPT_TYPE_PIN) {
2612555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                    status.setText(R.string.cryptkeeper_wrong_pin);
2622555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                } else if (passwordType == StorageManager.CRYPT_TYPE_PATTERN) {
2632555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                    status.setText(R.string.cryptkeeper_wrong_pattern);
2642555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                } else {
2652555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                    status.setText(R.string.cryptkeeper_wrong_password);
2662daf2641d364683c21bcbae08a3358d0f3c6af94Paul Lawrence                }
26706c5ff4a46686d3f599e40df0768177d3d88913cJason parks            }
2682555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley
2692555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            if (mLockPatternView != null) {
2702555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                mLockPatternView.setDisplayMode(DisplayMode.Wrong);
2712555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                mLockPatternView.setEnabled(true);
2722555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            }
2732555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley
2742555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            // Reenable the password entry
2752555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            if (mPasswordEntry != null) {
2762555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                mPasswordEntry.setEnabled(true);
2772555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                final InputMethodManager imm = (InputMethodManager) getSystemService(
2782555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                        Context.INPUT_METHOD_SERVICE);
2792555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                imm.showSoftInput(mPasswordEntry, 0);
2802555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                setBackFunctionality(true);
2812555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            }
28206c5ff4a46686d3f599e40df0768177d3d88913cJason parks        }
28306c5ff4a46686d3f599e40df0768177d3d88913cJason parks    }
28475c085ee890744cdd4b90c72f8b50e6aeeb31e88Jason parks
2850e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo    private class ValidationTask extends AsyncTask<Void, Void, Boolean> {
28687abbd3ea06a4901a4a967ce01e9fded356ae75fPaul Lawrence        int state;
28787abbd3ea06a4901a4a967ce01e9fded356ae75fPaul Lawrence
2880e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo        @Override
2890e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo        protected Boolean doInBackground(Void... params) {
290de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            final IMountService service = getMountService();
2910e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo            try {
292d4758efef6d6564d7b4b0b747d0a9ae9b44a38c7Ben Komalo                Log.d(TAG, "Validating encryption state.");
29387abbd3ea06a4901a4a967ce01e9fded356ae75fPaul Lawrence                state = service.getEncryptionState();
2940e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo                if (state == IMountService.ENCRYPTION_STATE_NONE) {
2950e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo                    Log.w(TAG, "Unexpectedly in CryptKeeper even though there is no encryption.");
2960e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo                    return true; // Unexpected, but fine, I guess...
2970e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo                }
2980e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo                return state == IMountService.ENCRYPTION_STATE_OK;
2990e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo            } catch (RemoteException e) {
3000e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo                Log.w(TAG, "Unable to get encryption state properly");
3010e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo                return true;
3020e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo            }
3030e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo        }
3040e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo
3050e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo        @Override
3060e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo        protected void onPostExecute(Boolean result) {
3070e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo            mValidationComplete = true;
3080e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo            if (Boolean.FALSE.equals(result)) {
3090e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo                Log.w(TAG, "Incomplete, or corrupted encryption detected. Prompting user to wipe.");
3100e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo                mEncryptionGoneBad = true;
31187abbd3ea06a4901a4a967ce01e9fded356ae75fPaul Lawrence                mCorrupt = state == IMountService.ENCRYPTION_STATE_ERROR_CORRUPT;
312d4758efef6d6564d7b4b0b747d0a9ae9b44a38c7Ben Komalo            } else {
313d4758efef6d6564d7b4b0b747d0a9ae9b44a38c7Ben Komalo                Log.d(TAG, "Encryption state validated. Proceeding to configure UI");
3140e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo            }
3150e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo            setupUi();
3160e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo        }
3170e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo    }
3180e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo
31991a2f0566afb91549cbda9289b516154a6467624Ben Komalo    private final Handler mHandler = new Handler() {
320ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks        @Override
321ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks        public void handleMessage(Message msg) {
322ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks            switch (msg.what) {
323de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            case MESSAGE_UPDATE_PROGRESS:
324f8217304073b5cd13823a0602568394be93bf310Jason parks                updateProgress();
325ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks                break;
32635933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
327de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            case MESSAGE_NOTIFY:
328de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal                notifyUser();
329de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal                break;
330ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks            }
331ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks        }
332ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks    };
33335933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
334de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    private AudioManager mAudioManager;
335bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal    /** The status bar where back/home/recent buttons are shown. */
336bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal    private StatusBarManager mStatusBar;
337bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal
338bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal    /** All the widgets to disable in the status bar */
339bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal    final private static int sWidgetsToDisable = StatusBarManager.DISABLE_EXPAND
340bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal            | StatusBarManager.DISABLE_NOTIFICATION_ICONS
341bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal            | StatusBarManager.DISABLE_NOTIFICATION_ALERTS
342bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal            | StatusBarManager.DISABLE_SYSTEM_INFO
343bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal            | StatusBarManager.DISABLE_HOME
34466d050bb4b6bf899e363f3e67d1eb5774de744b5Alon Albert            | StatusBarManager.DISABLE_SEARCH
345bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal            | StatusBarManager.DISABLE_RECENT;
346de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal
3472555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    protected static final int MIN_LENGTH_BEFORE_REPORT = LockPatternUtils.MIN_LOCK_PATTERN_SIZE;
3482555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley
34991a2f0566afb91549cbda9289b516154a6467624Ben Komalo    /** @return whether or not this Activity was started for debugging the UI only. */
35091a2f0566afb91549cbda9289b516154a6467624Ben Komalo    private boolean isDebugView() {
35191a2f0566afb91549cbda9289b516154a6467624Ben Komalo        return getIntent().hasExtra(EXTRA_FORCE_VIEW);
35291a2f0566afb91549cbda9289b516154a6467624Ben Komalo    }
35391a2f0566afb91549cbda9289b516154a6467624Ben Komalo
35491a2f0566afb91549cbda9289b516154a6467624Ben Komalo    /** @return whether or not this Activity was started for debugging the specific UI view only. */
35591a2f0566afb91549cbda9289b516154a6467624Ben Komalo    private boolean isDebugView(String viewType /* non-nullable */) {
35691a2f0566afb91549cbda9289b516154a6467624Ben Komalo        return viewType.equals(getIntent().getStringExtra(EXTRA_FORCE_VIEW));
35791a2f0566afb91549cbda9289b516154a6467624Ben Komalo    }
35891a2f0566afb91549cbda9289b516154a6467624Ben Komalo
359de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    /**
360de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal     * Notify the user that we are awaiting input. Currently this sends an audio alert.
361de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal     */
362de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    private void notifyUser() {
363d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        if (mNotificationCountdown > 0) {
364d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal            --mNotificationCountdown;
365d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        } else if (mAudioManager != null) {
366de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            try {
367de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal                // Play the standard keypress sound at full volume. This should be available on
368de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal                // every device. We cannot play a ringtone here because media services aren't
369de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal                // available yet. A DTMF-style tone is too soft to be noticed, and might not exist
370de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal                // on tablet devices. The idea is to alert the user that something is needed: this
371de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal                // does not have to be pleasing.
372de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal                mAudioManager.playSoundEffect(AudioManager.FX_KEYPRESS_STANDARD, 100);
373de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            } catch (Exception e) {
374de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal                Log.w(TAG, "notifyUser: Exception while playing sound: " + e);
375de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            }
376de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        }
37786b93937fa417647d22ee15d3a0aff7a751be17aVikram Aggarwal        // Notify the user again in 5 seconds.
378de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        mHandler.removeMessages(MESSAGE_NOTIFY);
37986b93937fa417647d22ee15d3a0aff7a751be17aVikram Aggarwal        mHandler.sendEmptyMessageDelayed(MESSAGE_NOTIFY, 5 * 1000);
38073456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence
38173456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence        if (mWakeLock.isHeld()) {
38273456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence            if (mReleaseWakeLockCountdown > 0) {
38373456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence                --mReleaseWakeLockCountdown;
38473456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence            } else {
38573456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence                mWakeLock.release();
38673456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence            }
38773456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence        }
388de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    }
389de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal
390de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    /**
3912a6552ed502cfa60fec71a9d41a11faa1e4be963Paul Lawrence     * Ignore back events from this activity always - there's nowhere to go back
3922a6552ed502cfa60fec71a9d41a11faa1e4be963Paul Lawrence     * to
393de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal     */
394de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    @Override
395de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    public void onBackPressed() {
396de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    }
397de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal
3988fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks    @Override
3998fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks    public void onCreate(Bundle savedInstanceState) {
4008fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks        super.onCreate(savedInstanceState);
40135933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
4029597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler        // If we are not encrypted or encrypting, get out quickly.
403de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        final String state = SystemProperties.get("vold.decrypt");
40491a2f0566afb91549cbda9289b516154a6467624Ben Komalo        if (!isDebugView() && ("".equals(state) || DECRYPT_STATE.equals(state))) {
4051b5cc427f06019936e40ee8e43ae931b8752eb11Fyodor Kupolov            disableCryptKeeperComponent(this);
406140f6c6cf705f020c0ee6a2843cf1691cc68e729Dianne Hackborn            // Typically CryptKeeper is launched as the home app.  We didn't
407644fa4243b4c288c85845b3f86aab25135635729Dianne Hackborn            // want to be running, so need to finish this activity.  We can count
408644fa4243b4c288c85845b3f86aab25135635729Dianne Hackborn            // on the activity manager re-launching the new home app upon finishing
409644fa4243b4c288c85845b3f86aab25135635729Dianne Hackborn            // this one, since this will leave the activity stack empty.
410140f6c6cf705f020c0ee6a2843cf1691cc68e729Dianne Hackborn            // NOTE: This is really grungy.  I think it would be better for the
411140f6c6cf705f020c0ee6a2843cf1691cc68e729Dianne Hackborn            // activity manager to explicitly launch the crypt keeper instead of
412140f6c6cf705f020c0ee6a2843cf1691cc68e729Dianne Hackborn            // home in the situation where we need to decrypt the device
413140f6c6cf705f020c0ee6a2843cf1691cc68e729Dianne Hackborn            finish();
4148fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks            return;
4158fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks        }
41635933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
4177ae20e3ce98543888cfccbef6b1254d060bc30caPaul Lawrence        try {
4187ae20e3ce98543888cfccbef6b1254d060bc30caPaul Lawrence            if (getResources().getBoolean(R.bool.crypt_keeper_allow_rotation)) {
4197ae20e3ce98543888cfccbef6b1254d060bc30caPaul Lawrence                setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
4207ae20e3ce98543888cfccbef6b1254d060bc30caPaul Lawrence            }
4217ae20e3ce98543888cfccbef6b1254d060bc30caPaul Lawrence        } catch (NotFoundException e) {
4227ae20e3ce98543888cfccbef6b1254d060bc30caPaul Lawrence        }
4237ae20e3ce98543888cfccbef6b1254d060bc30caPaul Lawrence
424b96b35a62b1f092b6322643c3568f3e712543e53Vikram Aggarwal        // Disable the status bar, but do NOT disable back because the user needs a way to go
425b96b35a62b1f092b6322643c3568f3e712543e53Vikram Aggarwal        // from keyboard settings and back to the password screen.
426bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal        mStatusBar = (StatusBarManager) getSystemService(Context.STATUS_BAR_SERVICE);
427bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal        mStatusBar.disable(sWidgetsToDisable);
4281499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler
429ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal        setAirplaneModeIfNecessary();
430de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        mAudioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
4311499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler        // Check for (and recover) retained instance data
432de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        final Object lastInstance = getLastNonConfigurationInstance();
4331499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler        if (lastInstance instanceof NonConfigurationInstanceState) {
4341499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler            NonConfigurationInstanceState retained = (NonConfigurationInstanceState) lastInstance;
4351499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler            mWakeLock = retained.wakelock;
4360460675b7c0d5a9b02dae01578c64ff0453e4fb7Ben Komalo            Log.d(TAG, "Restoring wakelock from NonConfigurationInstanceState");
4371499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler        }
438ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks    }
43935933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
4409597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler    /**
4419597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler     * Note, we defer the state check and screen setup to onStart() because this will be
4429597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler     * re-run if the user clicks the power button (sleeping/waking the screen), and this is
4439597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler     * especially important if we were to lose the wakelock for any reason.
4449597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler     */
4459597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler    @Override
4469597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler    public void onStart() {
4479597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler        super.onStart();
448d4758efef6d6564d7b4b0b747d0a9ae9b44a38c7Ben Komalo        setupUi();
4490e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo    }
4500e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo
4510e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo    /**
4520e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo     * Initializes the UI based on the current state of encryption.
4530e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo     * This is idempotent - calling repeatedly will simply re-initialize the UI.
4540e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo     */
4550e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo    private void setupUi() {
4560e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo        if (mEncryptionGoneBad || isDebugView(FORCE_VIEW_ERROR)) {
4570e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo            setContentView(R.layout.crypt_keeper_progress);
45887abbd3ea06a4901a4a967ce01e9fded356ae75fPaul Lawrence            showFactoryReset(mCorrupt);
4590e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo            return;
4600e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo        }
4610e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo
462de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        final String progress = SystemProperties.get("vold.encrypt_progress");
4630e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo        if (!"".equals(progress) || isDebugView(FORCE_VIEW_PROGRESS)) {
4649597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler            setContentView(R.layout.crypt_keeper_progress);
4659597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler            encryptionProgressInit();
466de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        } else if (mValidationComplete || isDebugView(FORCE_VIEW_PASSWORD)) {
4679ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence            new AsyncTask<Void, Void, Void>() {
468529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley                int passwordType = StorageManager.CRYPT_TYPE_PASSWORD;
4699ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                String owner_info;
4700f11e15f503d65d5a085157d8ec406a72d712ce7Paul Lawrence                boolean pattern_visible;
471c04420ce2581627478b59cc5d8b453f1fa329e02Paul Lawrence                boolean password_visible;
4729ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence
4739ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                @Override
4749ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                public Void doInBackground(Void... v) {
4759ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                    try {
4769ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                        final IMountService service = getMountService();
477529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley                        passwordType = service.getPasswordType();
478f9d6d2916323472f6c543edcc3956a8d00925e6bElliott Hughes                        owner_info = service.getField(StorageManager.OWNER_INFO_KEY);
479f9d6d2916323472f6c543edcc3956a8d00925e6bElliott Hughes                        pattern_visible = !("0".equals(service.getField(StorageManager.PATTERN_VISIBLE_KEY)));
480c04420ce2581627478b59cc5d8b453f1fa329e02Paul Lawrence                        password_visible = !("0".equals(service.getField(StorageManager.PASSWORD_VISIBLE_KEY)));
4819ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                    } catch (Exception e) {
4829ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                        Log.e(TAG, "Error calling mount service " + e);
4839ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                    }
4849ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence
4859ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                    return null;
4869ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                }
487b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence
4889ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                @Override
4899ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                public void onPostExecute(java.lang.Void v) {
490c04420ce2581627478b59cc5d8b453f1fa329e02Paul Lawrence                    Settings.System.putInt(getContentResolver(), Settings.System.TEXT_SHOW_PASSWORD,
491c04420ce2581627478b59cc5d8b453f1fa329e02Paul Lawrence                                  password_visible ? 1 : 0);
492c04420ce2581627478b59cc5d8b453f1fa329e02Paul Lawrence
49351e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley                    if (passwordType == StorageManager.CRYPT_TYPE_PIN) {
4949ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                        setContentView(R.layout.crypt_keeper_pin_entry);
4955a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence                        mStatusString = R.string.enter_pin;
496529834dae1ce469d64f7e191db43315e88691e7ePaul Crowley                    } else if (passwordType == StorageManager.CRYPT_TYPE_PATTERN) {
4979ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                        setContentView(R.layout.crypt_keeper_pattern_entry);
4989ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                        setBackFunctionality(false);
4995a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence                        mStatusString = R.string.enter_pattern;
5009ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                    } else {
5019ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                        setContentView(R.layout.crypt_keeper_password_entry);
5025a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence                        mStatusString = R.string.enter_password;
5039ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                    }
5045a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence                    final TextView status = (TextView) findViewById(R.id.status);
5055a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence                    status.setText(mStatusString);
5065a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence
5075a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence                    final TextView ownerInfo = (TextView) findViewById(R.id.owner_info);
5085a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence                    ownerInfo.setText(owner_info);
5095a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence                    ownerInfo.setSelected(true); // Required for marquee'ing to work
5109ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence
5119ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                    passwordEntryInit();
5125a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence
5132a6552ed502cfa60fec71a9d41a11faa1e4be963Paul Lawrence                    findViewById(android.R.id.content).setSystemUiVisibility(View.STATUS_BAR_DISABLE_BACK);
5142a6552ed502cfa60fec71a9d41a11faa1e4be963Paul Lawrence
5150f11e15f503d65d5a085157d8ec406a72d712ce7Paul Lawrence                    if (mLockPatternView != null) {
5160f11e15f503d65d5a085157d8ec406a72d712ce7Paul Lawrence                        mLockPatternView.setInStealthMode(!pattern_visible);
5170f11e15f503d65d5a085157d8ec406a72d712ce7Paul Lawrence                    }
51851e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley                    if (mCooldown) {
51951e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley                        // in case we are cooling down and coming back from emergency dialler
5205a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence                        setBackFunctionality(false);
52151e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley                        cooldown();
5225a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence                    }
52351e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley
5249ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence                }
5259ac2d81d9fd155240e02284894148c6dcbe486ecPaul Lawrence            }.execute();
526d4758efef6d6564d7b4b0b747d0a9ae9b44a38c7Ben Komalo        } else if (!mValidationRequested) {
527d4758efef6d6564d7b4b0b747d0a9ae9b44a38c7Ben Komalo            // We're supposed to be encrypted, but no validation has been done.
528d4758efef6d6564d7b4b0b747d0a9ae9b44a38c7Ben Komalo            new ValidationTask().execute((Void[]) null);
529d4758efef6d6564d7b4b0b747d0a9ae9b44a38c7Ben Komalo            mValidationRequested = true;
5309597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler        }
5319597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler    }
5329597406aa1b83867b03a47d1a5162969b924f2fcAndy Stadler
533f8217304073b5cd13823a0602568394be93bf310Jason parks    @Override
534f8217304073b5cd13823a0602568394be93bf310Jason parks    public void onStop() {
535f8217304073b5cd13823a0602568394be93bf310Jason parks        super.onStop();
536de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        mHandler.removeMessages(MESSAGE_UPDATE_PROGRESS);
537de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        mHandler.removeMessages(MESSAGE_NOTIFY);
5381499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler    }
5391499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler
5401499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler    /**
5411499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler     * Reconfiguring, so propagate the wakelock to the next instance.  This runs between onStop()
5421499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler     * and onDestroy() and only if we are changing configuration (e.g. rotation).  Also clears
5431499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler     * mWakeLock so the subsequent call to onDestroy does not release it.
5441499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler     */
5451499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler    @Override
5461499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler    public Object onRetainNonConfigurationInstance() {
5471499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler        NonConfigurationInstanceState state = new NonConfigurationInstanceState(mWakeLock);
5480460675b7c0d5a9b02dae01578c64ff0453e4fb7Ben Komalo        Log.d(TAG, "Handing wakelock off to NonConfigurationInstanceState");
5491499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler        mWakeLock = null;
5501499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler        return state;
5511499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler    }
5521499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler
5531499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler    @Override
5541499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler    public void onDestroy() {
5551499740c13af5fbd5766a87825c3e789b37bab24Andy Stadler        super.onDestroy();
556f8217304073b5cd13823a0602568394be93bf310Jason parks
557f8217304073b5cd13823a0602568394be93bf310Jason parks        if (mWakeLock != null) {
5580460675b7c0d5a9b02dae01578c64ff0453e4fb7Ben Komalo            Log.d(TAG, "Releasing and destroying wakelock");
559f8217304073b5cd13823a0602568394be93bf310Jason parks            mWakeLock.release();
560f8217304073b5cd13823a0602568394be93bf310Jason parks            mWakeLock = null;
561f8217304073b5cd13823a0602568394be93bf310Jason parks        }
562f8217304073b5cd13823a0602568394be93bf310Jason parks    }
563f8217304073b5cd13823a0602568394be93bf310Jason parks
564de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal    /**
565de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal     * Start encrypting the device.
566de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal     */
567ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks    private void encryptionProgressInit() {
56835933812b16f0b4221280bbcc3c32f6540996bf2Jason parks        // Accquire a partial wakelock to prevent the device from sleeping. Note
56935933812b16f0b4221280bbcc3c32f6540996bf2Jason parks        // we never release this wakelock as we will be restarted after the device
57035933812b16f0b4221280bbcc3c32f6540996bf2Jason parks        // is encrypted.
5710460675b7c0d5a9b02dae01578c64ff0453e4fb7Ben Komalo        Log.d(TAG, "Encryption progress screen initializing.");
5729ee164f44ea1ad66fa16ed702eb885e36ade0d8bBen Komalo        if (mWakeLock == null) {
5730460675b7c0d5a9b02dae01578c64ff0453e4fb7Ben Komalo            Log.d(TAG, "Acquiring wakelock.");
5740460675b7c0d5a9b02dae01578c64ff0453e4fb7Ben Komalo            PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
5750460675b7c0d5a9b02dae01578c64ff0453e4fb7Ben Komalo            mWakeLock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK, TAG);
5760460675b7c0d5a9b02dae01578c64ff0453e4fb7Ben Komalo            mWakeLock.acquire();
5770460675b7c0d5a9b02dae01578c64ff0453e4fb7Ben Komalo        }
578f8217304073b5cd13823a0602568394be93bf310Jason parks
579bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        ((ProgressBar) findViewById(R.id.progress_bar)).setIndeterminate(true);
580de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        // Ignore all back presses from now, both hard and soft keys.
581bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal        setBackFunctionality(false);
582de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        // Start the first run of progress manually. This method sets up messages to occur at
583de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        // repeated intervals.
584f8217304073b5cd13823a0602568394be93bf310Jason parks        updateProgress();
585f8217304073b5cd13823a0602568394be93bf310Jason parks    }
586f8217304073b5cd13823a0602568394be93bf310Jason parks
587384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence    /**
588384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence     * Show factory reset screen allowing the user to reset their phone when
589384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence     * there is nothing else we can do
590384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence     * @param corrupt true if userdata is corrupt, false if encryption failed
591384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence     *        partway through
592384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence     */
5931de688d911cf96eff39eddc5a7070e3c44efefc1Jeff Sharkey    private void showFactoryReset(final boolean corrupt) {
59413d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler        // Hide the encryption-bot to make room for the "factory reset" button
59513d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler        findViewById(R.id.encroid).setVisibility(View.GONE);
59613d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler
59713d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler        // Show the reset button, failure text, and a divider
598bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        final Button button = (Button) findViewById(R.id.factory_reset);
59913d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler        button.setVisibility(View.VISIBLE);
60013d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler        button.setOnClickListener(new OnClickListener() {
601bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal                @Override
60213d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler            public void onClick(View v) {
60313d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler                // Factory reset the device.
6041de688d911cf96eff39eddc5a7070e3c44efefc1Jeff Sharkey                Intent intent = new Intent(Intent.ACTION_MASTER_CLEAR);
6051de688d911cf96eff39eddc5a7070e3c44efefc1Jeff Sharkey                intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
6061de688d911cf96eff39eddc5a7070e3c44efefc1Jeff Sharkey                intent.putExtra(Intent.EXTRA_REASON,
6071de688d911cf96eff39eddc5a7070e3c44efefc1Jeff Sharkey                        "CryptKeeper.showFactoryReset() corrupt=" + corrupt);
6081de688d911cf96eff39eddc5a7070e3c44efefc1Jeff Sharkey                sendBroadcast(intent);
60913d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler            }
61013d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler        });
61113d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler
612bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        // Alert the user of the failure.
613384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence        if (corrupt) {
614384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence            ((TextView) findViewById(R.id.title)).setText(R.string.crypt_keeper_data_corrupt_title);
615384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence            ((TextView) findViewById(R.id.status)).setText(R.string.crypt_keeper_data_corrupt_summary);
616384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence        } else {
617384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence            ((TextView) findViewById(R.id.title)).setText(R.string.crypt_keeper_failed_title);
618384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence            ((TextView) findViewById(R.id.status)).setText(R.string.crypt_keeper_failed_summary);
619384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence        }
62013d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler
621bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        final View view = findViewById(R.id.bottom_divider);
622bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        // TODO(viki): Why would the bottom divider be missing in certain layouts? Investigate.
623f0104df823a93ef4c3336118ddb02a0924e520daBen Komalo        if (view != null) {
624f0104df823a93ef4c3336118ddb02a0924e520daBen Komalo            view.setVisibility(View.VISIBLE);
625f0104df823a93ef4c3336118ddb02a0924e520daBen Komalo        }
62613d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler    }
62713d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler
628f8217304073b5cd13823a0602568394be93bf310Jason parks    private void updateProgress() {
629bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        final String state = SystemProperties.get("vold.encrypt_progress");
630f8217304073b5cd13823a0602568394be93bf310Jason parks
6310e66609c95047ba7e5c0408bdc88af4315fd35b1Ben Komalo        if ("error_partially_encrypted".equals(state)) {
632384d8e52b6750b2be7079f8828e4d2f038e22180Paul Lawrence            showFactoryReset(false);
63313d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler            return;
63413d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler        }
63513d62049f7c96c47356f23eaee7f0997612fdf9fAndy Stadler
636b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence        // Get status as percentage first
637b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence        CharSequence status = getText(R.string.crypt_keeper_setup_description);
638b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence        int percent = 0;
639f8217304073b5cd13823a0602568394be93bf310Jason parks        try {
64091a2f0566afb91549cbda9289b516154a6467624Ben Komalo            // Force a 50% progress state when debugging the view.
641b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence            percent = isDebugView() ? 50 : Integer.parseInt(state);
642f8217304073b5cd13823a0602568394be93bf310Jason parks        } catch (Exception e) {
643f8217304073b5cd13823a0602568394be93bf310Jason parks            Log.w(TAG, "Error parsing progress: " + e.toString());
644f8217304073b5cd13823a0602568394be93bf310Jason parks        }
645b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence        String progress = Integer.toString(percent);
64635933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
647b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence        // Now try to get status as time remaining and replace as appropriate
6480460675b7c0d5a9b02dae01578c64ff0453e4fb7Ben Komalo        Log.v(TAG, "Encryption progress: " + progress);
649b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence        try {
650b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence            final String timeProperty = SystemProperties.get("vold.encrypt_time_remaining");
651b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence            int time = Integer.parseInt(timeProperty);
652b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence            if (time >= 0) {
653b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence                // Round up to multiple of 10 - this way display is less jerky
654b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence                time = (time + 9) / 10 * 10;
655b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence                progress = DateUtils.formatElapsedTime(time);
656b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence                status = getText(R.string.crypt_keeper_setup_time_remaining);
657b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence            }
658b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence        } catch (Exception e) {
659b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence            // Will happen if no time etc - show percentage
660b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence        }
661b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence
662bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        final TextView tv = (TextView) findViewById(R.id.status);
663de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        if (tv != null) {
664b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence            tv.setText(TextUtils.expandTemplate(status, progress));
665de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        }
666b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence
667b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence        // Check the progress every 1 seconds
668de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        mHandler.removeMessages(MESSAGE_UPDATE_PROGRESS);
669b15c68fbf19c021eb0a3bed1ccc4dd7fda384ec7Paul Lawrence        mHandler.sendEmptyMessageDelayed(MESSAGE_UPDATE_PROGRESS, 1000);
670f8217304073b5cd13823a0602568394be93bf310Jason parks    }
671f8217304073b5cd13823a0602568394be93bf310Jason parks
67251e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley    /** Insist on a power cycle to force the user to waste time between retries.
67351e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley     *
67451e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley     * Call setBackFunctionality(false) before calling this. */
675f8217304073b5cd13823a0602568394be93bf310Jason parks    private void cooldown() {
67651e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley        // Disable the password entry.
67751e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley        if (mPasswordEntry != null) {
67851e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley            mPasswordEntry.setEnabled(false);
679f8217304073b5cd13823a0602568394be93bf310Jason parks        }
68051e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley        if (mLockPatternView != null) {
68151e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley            mLockPatternView.setEnabled(false);
68251e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley        }
68351e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley
68451e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley        final TextView status = (TextView) findViewById(R.id.status);
68551e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley        status.setText(R.string.crypt_keeper_force_power_cycle);
686ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks    }
68735933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
688bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal    /**
689bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal     * Sets the back status: enabled or disabled according to the parameter.
690bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal     * @param isEnabled true if back is enabled, false otherwise.
691bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal     */
692bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal    private final void setBackFunctionality(boolean isEnabled) {
693bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal        if (isEnabled) {
694bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal            mStatusBar.disable(sWidgetsToDisable);
695bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal        } else {
696bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal            mStatusBar.disable(sWidgetsToDisable | StatusBarManager.DISABLE_BACK);
697bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal        }
698bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal    }
699bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal
7002555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    private void fakeUnlockAttempt(View postingView) {
7012555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        beginAttempt();
7022555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley        postingView.postDelayed(mFakeUnlockAttemptRunnable, FAKE_ATTEMPT_DELAY);
7032555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley    }
7042555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley
705b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence    protected LockPatternView.OnPatternListener mChooseNewLockPatternListener =
706f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        new LockPatternView.OnPatternListener() {
707b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence
708f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        @Override
709f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        public void onPatternStart() {
710f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence            mLockPatternView.removeCallbacks(mClearPatternRunnable);
711f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        }
712b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence
713f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        @Override
714f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        public void onPatternCleared() {
715f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        }
716b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence
717f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        @Override
718f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        public void onPatternDetected(List<LockPatternView.Cell> pattern) {
719f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence            mLockPatternView.setEnabled(false);
7202555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            if (pattern.size() >= MIN_LENGTH_BEFORE_REPORT) {
7212555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                new DecryptTask().execute(LockPatternUtils.patternToString(pattern));
7222555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            } else {
7232555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                // Allow user to make as many of these as they want.
7242555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                fakeUnlockAttempt(mLockPatternView);
7252555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            }
726f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        }
727b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence
728f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        @Override
729f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        public void onPatternCellAdded(List<Cell> pattern) {
730f6cda3b176d097f8360b5c34c6ba746cd10b4004Paul Lawrence        }
731b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence     };
732b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence
733b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence     private void passwordEntryInit() {
734b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence        // Password/pin case
73506c5ff4a46686d3f599e40df0768177d3d88913cJason parks        mPasswordEntry = (EditText) findViewById(R.id.passwordEntry);
736b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence        if (mPasswordEntry != null){
737b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence            mPasswordEntry.setOnEditorActionListener(this);
738b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence            mPasswordEntry.requestFocus();
739b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence            // Become quiet when the user interacts with the Edit text screen.
740b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence            mPasswordEntry.setOnKeyListener(this);
741b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence            mPasswordEntry.setOnTouchListener(this);
742b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence            mPasswordEntry.addTextChangedListener(this);
743b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence        }
744b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence
745b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence        // Pattern case
746b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence        mLockPatternView = (LockPatternView) findViewById(R.id.lockPattern);
747b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence        if (mLockPatternView != null) {
748b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence            mLockPatternView.setOnPatternListener(mChooseNewLockPatternListener);
749b05f39d186d8ce1b53bb4da3cb4c2cd22986f513Paul Lawrence        }
7509fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo
751c62d321e8dcb023e8c7299802a75a271b7ca98d9Vikram Aggarwal        // Disable the Emergency call button if the device has no voice telephone capability
7523afbdf006057c93f930694e26306a3cc9cea34e4Santos Cordon        if (!getTelephonyManager().isVoiceCapable()) {
753c62d321e8dcb023e8c7299802a75a271b7ca98d9Vikram Aggarwal            final View emergencyCall = findViewById(R.id.emergencyCallButton);
754c62d321e8dcb023e8c7299802a75a271b7ca98d9Vikram Aggarwal            if (emergencyCall != null) {
755c62d321e8dcb023e8c7299802a75a271b7ca98d9Vikram Aggarwal                Log.d(TAG, "Removing the emergency Call button");
756c62d321e8dcb023e8c7299802a75a271b7ca98d9Vikram Aggarwal                emergencyCall.setVisibility(View.GONE);
757c62d321e8dcb023e8c7299802a75a271b7ca98d9Vikram Aggarwal            }
758c62d321e8dcb023e8c7299802a75a271b7ca98d9Vikram Aggarwal        }
759c62d321e8dcb023e8c7299802a75a271b7ca98d9Vikram Aggarwal
760bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        final View imeSwitcher = findViewById(R.id.switch_ime_button);
7619fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        final InputMethodManager imm = (InputMethodManager) getSystemService(
7629fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                Context.INPUT_METHOD_SERVICE);
7639fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        if (imeSwitcher != null && hasMultipleEnabledIMEsOrSubtypes(imm, false)) {
7649fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            imeSwitcher.setVisibility(View.VISIBLE);
7659fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            imeSwitcher.setOnClickListener(new OnClickListener() {
766bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal                    @Override
7679fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                public void onClick(View v) {
768e792729b4ca60632b43c9e1ee6126fb5e031deaeSeigo Nonaka                    imm.showInputMethodPicker(false /* showAuxiliarySubtypes */);
7699fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                }
7709fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            });
7719fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        }
7729fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo
773de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        // We want to keep the screen on while waiting for input. In minimal boot mode, the device
774de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        // is completely non-functional, and we want the user to notice the device and enter a
775de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        // password.
776de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        if (mWakeLock == null) {
777de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            Log.d(TAG, "Acquiring wakelock.");
778de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            final PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
779de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            if (pm != null) {
780de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal                mWakeLock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK, TAG);
781de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal                mWakeLock.acquire();
78273456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence                // Keep awake for 10 minutes - if the user hasn't been alerted by then
78373456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence                // best not to just drain their battery
7845a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence                mReleaseWakeLockCountdown = 96; // 96 * 5 secs per click + 120 secs before we show this = 600
785de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            }
786de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal        }
78773456acfb45beb7a95b5aee5a1f7566d3b803a86Paul Lawrence
7889fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        // Asynchronously throw up the IME, since there are issues with requesting it to be shown
7899fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        // immediately.
79051e0811a7ac7ec5e31c67a466bb450d80ffaa24aPaul Crowley        if (mLockPatternView == null && !mCooldown) {
791e54e9323ed423d68f0567dcf05f45c62187ad8ddPaul Lawrence            mHandler.postDelayed(new Runnable() {
792e54e9323ed423d68f0567dcf05f45c62187ad8ddPaul Lawrence                @Override public void run() {
793e54e9323ed423d68f0567dcf05f45c62187ad8ddPaul Lawrence                    imm.showSoftInputUnchecked(0, null);
794e54e9323ed423d68f0567dcf05f45c62187ad8ddPaul Lawrence                }
795e54e9323ed423d68f0567dcf05f45c62187ad8ddPaul Lawrence            }, 0);
796e54e9323ed423d68f0567dcf05f45c62187ad8ddPaul Lawrence        }
7979fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo
7989fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        updateEmergencyCallButtonState();
799d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        // Notify the user in 120 seconds that we are waiting for him to enter the password.
80086b93937fa417647d22ee15d3a0aff7a751be17aVikram Aggarwal        mHandler.removeMessages(MESSAGE_NOTIFY);
801d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        mHandler.sendEmptyMessageDelayed(MESSAGE_NOTIFY, 120 * 1000);
802fb3d5cad48876dbd366fd8b562529d355d2428dbJim Miller
8032c526515775559b34a311400435de28d85b9c79eJohn Spurlock        // Dismiss secure & non-secure keyguards while this screen is showing.
8042c526515775559b34a311400435de28d85b9c79eJohn Spurlock        getWindow().addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD
8052c526515775559b34a311400435de28d85b9c79eJohn Spurlock                | WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
8069fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo    }
80735933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
8089fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo    /**
8099fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo     * Method adapted from com.android.inputmethod.latin.Utils
8109fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo     *
8119fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo     * @param imm The input method manager
8129fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo     * @param shouldIncludeAuxiliarySubtypes
8139fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo     * @return true if we have multiple IMEs to choose from
8149fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo     */
8159fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo    private boolean hasMultipleEnabledIMEsOrSubtypes(InputMethodManager imm,
8169fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            final boolean shouldIncludeAuxiliarySubtypes) {
8179fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        final List<InputMethodInfo> enabledImis = imm.getEnabledInputMethodList();
8189fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo
8199fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        // Number of the filtered IMEs
8209fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        int filteredImisCount = 0;
8219fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo
8229fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        for (InputMethodInfo imi : enabledImis) {
8239fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            // We can return true immediately after we find two or more filtered IMEs.
8249fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            if (filteredImisCount > 1) return true;
8259fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            final List<InputMethodSubtype> subtypes =
8269fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                    imm.getEnabledInputMethodSubtypeList(imi, true);
8279fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            // IMEs that have no subtypes should be counted.
8289fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            if (subtypes.isEmpty()) {
8299fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                ++filteredImisCount;
8309fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                continue;
8319fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            }
83235933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
8339fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            int auxCount = 0;
8349fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            for (InputMethodSubtype subtype : subtypes) {
8359fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                if (subtype.isAuxiliary()) {
8369fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                    ++auxCount;
8379fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                }
8389fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            }
8399fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            final int nonAuxCount = subtypes.size() - auxCount;
8409fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo
8419fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            // IMEs that have one or more non-auxiliary subtypes should be counted.
8429fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            // If shouldIncludeAuxiliarySubtypes is true, IMEs that have two or more auxiliary
8439fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            // subtypes should be counted as well.
8449fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            if (nonAuxCount > 0 || (shouldIncludeAuxiliarySubtypes && auxCount > 1)) {
8459fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                ++filteredImisCount;
8469fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                continue;
8479fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo            }
84800046d6e176eb05c3e3b0d13d38a8da7491bba5eJason parks        }
8498373b451692a39abdfd12444241c016831e1a4a4David Brown
8509fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        return filteredImisCount > 1
8519fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        // imm.getEnabledInputMethodSubtypeList(null, false) will return the current IME's enabled
8529fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo        // input method subtype (The current IME should be LatinIME.)
8539fcb6a7fac02aef85085c2db616556257e1642f5Ben Komalo                || imm.getEnabledInputMethodSubtypeList(null, false).size() > 1;
8548fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks    }
8558fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks
8568fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks    private IMountService getMountService() {
857bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        final IBinder service = ServiceManager.getService("mount");
8588fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks        if (service != null) {
8598fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks            return IMountService.Stub.asInterface(service);
8608fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks        }
8618fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks        return null;
8628fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks    }
8638fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks
8648fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks    @Override
8658fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
86600046d6e176eb05c3e3b0d13d38a8da7491bba5eJason parks        if (actionId == EditorInfo.IME_NULL || actionId == EditorInfo.IME_ACTION_DONE) {
8678fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks            // Get the password
868bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal            final String password = v.getText().toString();
8698fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks
870ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks            if (TextUtils.isEmpty(password)) {
871ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks                return true;
872ec5a45e79cb7161adfabf475342c1e1b25994276Jason parks            }
87335933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
8748fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks            // Now that we have the password clear the password field.
8758fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks            v.setText(null);
8768fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks
877de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            // Disable the password entry and back keypress while checking the password. These
878de3c9cb412688eb841993ad971d06039d8a952c3Vikram Aggarwal            // we either be re-enabled if the password was wrong or after the cooldown period.
87906c5ff4a46686d3f599e40df0768177d3d88913cJason parks            mPasswordEntry.setEnabled(false);
880bf459dafdc5d97d8f2103c1d2a9cb65f5096e4f8Vikram Aggarwal            setBackFunctionality(false);
88106c5ff4a46686d3f599e40df0768177d3d88913cJason parks
8822555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            if (password.length() >= LockPatternUtils.MIN_LOCK_PATTERN_SIZE) {
8832555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                new DecryptTask().execute(password);
8842555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            } else {
8852555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                // Allow user to make as many of these as they want.
8862555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley                fakeUnlockAttempt(mPasswordEntry);
8872555e5f1040984a3422c5a4db43421e87d4ca0cePaul Crowley            }
88835933812b16f0b4221280bbcc3c32f6540996bf2Jason parks
8898fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks            return true;
8908fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks        }
8918fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks        return false;
8928fd5bc9e6ff0d02012df670a6bf4bcdaf903c09dJason parks    }
8938373b451692a39abdfd12444241c016831e1a4a4David Brown
894bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal    /**
895ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     * Set airplane mode on the device if it isn't an LTE device.
896ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     * Full story: In minimal boot mode, we cannot save any state. In particular, we cannot save
897ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     * any incoming SMS's. So SMSs that are received here will be silently dropped to the floor.
898ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     * That is bad. Also, we cannot receive any telephone calls in this state. So to avoid
899ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     * both these problems, we turn the radio off. However, on certain networks turning on and
900ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     * off the radio takes a long time. In such cases, we are better off leaving the radio
901ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     * running so the latency of an E911 call is short.
902ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     * The behavior after this is:
903ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     * 1. Emergency dialing: the emergency dialer has logic to force the device out of
904ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     *    airplane mode and restart the radio.
905ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     * 2. Full boot: we read the persistent settings from the previous boot and restore the
906ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     *    radio to whatever it was before it restarted. This also happens when rebooting a
907ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     *    phone that has no encryption.
908ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal     */
909ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal    private final void setAirplaneModeIfNecessary() {
910ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal        final boolean isLteDevice =
9113afbdf006057c93f930694e26306a3cc9cea34e4Santos Cordon                getTelephonyManager().getLteOnCdmaMode() == PhoneConstants.LTE_ON_CDMA_TRUE;
912ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal        if (!isLteDevice) {
913ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal            Log.d(TAG, "Going into airplane mode.");
9146a5929b086a61a955a4a2f43f5fa251e8754ff4aChristopher Tate            Settings.Global.putInt(getContentResolver(), Settings.Global.AIRPLANE_MODE_ON, 1);
915ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal            final Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
916ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal            intent.putExtra("state", true);
9176a5929b086a61a955a4a2f43f5fa251e8754ff4aChristopher Tate            sendBroadcastAsUser(intent, UserHandle.ALL);
918ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal        }
919ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal    }
920ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal
921ea1186db19e673b44084b43b6a70bbdb07480aa9Vikram Aggarwal    /**
922bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal     * Code to update the state of, and handle clicks from, the "Emergency call" button.
923bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal     *
924bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal     * This code is mostly duplicated from the corresponding code in
925bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal     * LockPatternUtils and LockPatternKeyguardView under frameworks/base.
926bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal     */
9278373b451692a39abdfd12444241c016831e1a4a4David Brown    private void updateEmergencyCallButtonState() {
928bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        final Button emergencyCall = (Button) findViewById(R.id.emergencyCallButton);
9298373b451692a39abdfd12444241c016831e1a4a4David Brown        // The button isn't present at all in some configurations.
930bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        if (emergencyCall == null)
931bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal            return;
9328373b451692a39abdfd12444241c016831e1a4a4David Brown
9338373b451692a39abdfd12444241c016831e1a4a4David Brown        if (isEmergencyCallCapable()) {
934bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal            emergencyCall.setVisibility(View.VISIBLE);
935bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal            emergencyCall.setOnClickListener(new View.OnClickListener() {
936bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal                    @Override
937bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal
9388373b451692a39abdfd12444241c016831e1a4a4David Brown                    public void onClick(View v) {
9398373b451692a39abdfd12444241c016831e1a4a4David Brown                        takeEmergencyCallAction();
9408373b451692a39abdfd12444241c016831e1a4a4David Brown                    }
9418373b451692a39abdfd12444241c016831e1a4a4David Brown                });
9428373b451692a39abdfd12444241c016831e1a4a4David Brown        } else {
943bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal            emergencyCall.setVisibility(View.GONE);
9448373b451692a39abdfd12444241c016831e1a4a4David Brown            return;
9458373b451692a39abdfd12444241c016831e1a4a4David Brown        }
9468373b451692a39abdfd12444241c016831e1a4a4David Brown
9478373b451692a39abdfd12444241c016831e1a4a4David Brown        int textId;
9483e71b197f7f85c5045a083ecc532954958807be6Tyler Gunn        if (getTelecomManager().isInCall()) {
94989c7570dd42ce6945ce8e092892a22ec79c30c82Paul Lawrence            // Show "return to call"
9508373b451692a39abdfd12444241c016831e1a4a4David Brown            textId = R.string.cryptkeeper_return_to_call;
9518373b451692a39abdfd12444241c016831e1a4a4David Brown        } else {
9528373b451692a39abdfd12444241c016831e1a4a4David Brown            textId = R.string.cryptkeeper_emergency_call;
9538373b451692a39abdfd12444241c016831e1a4a4David Brown        }
954bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        emergencyCall.setText(textId);
9558373b451692a39abdfd12444241c016831e1a4a4David Brown    }
9568373b451692a39abdfd12444241c016831e1a4a4David Brown
9578373b451692a39abdfd12444241c016831e1a4a4David Brown    private boolean isEmergencyCallCapable() {
9588373b451692a39abdfd12444241c016831e1a4a4David Brown        return getResources().getBoolean(com.android.internal.R.bool.config_voice_capable);
9598373b451692a39abdfd12444241c016831e1a4a4David Brown    }
9608373b451692a39abdfd12444241c016831e1a4a4David Brown
9618373b451692a39abdfd12444241c016831e1a4a4David Brown    private void takeEmergencyCallAction() {
9623e71b197f7f85c5045a083ecc532954958807be6Tyler Gunn        TelecomManager telecomManager = getTelecomManager();
9633e71b197f7f85c5045a083ecc532954958807be6Tyler Gunn        if (telecomManager.isInCall()) {
9643e71b197f7f85c5045a083ecc532954958807be6Tyler Gunn            telecomManager.showInCallScreen(false /* showDialpad */);
9658373b451692a39abdfd12444241c016831e1a4a4David Brown        } else {
9668373b451692a39abdfd12444241c016831e1a4a4David Brown            launchEmergencyDialer();
9678373b451692a39abdfd12444241c016831e1a4a4David Brown        }
9688373b451692a39abdfd12444241c016831e1a4a4David Brown    }
9698373b451692a39abdfd12444241c016831e1a4a4David Brown
9708373b451692a39abdfd12444241c016831e1a4a4David Brown
9718373b451692a39abdfd12444241c016831e1a4a4David Brown    private void launchEmergencyDialer() {
972bfa3a64310162c8f29eae208220988380ffeea6eVikram Aggarwal        final Intent intent = new Intent(ACTION_EMERGENCY_DIAL);
9738373b451692a39abdfd12444241c016831e1a4a4David Brown        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
9748373b451692a39abdfd12444241c016831e1a4a4David Brown                        | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
9755a70f05e0d86443cd97b186d2a5101eb4c7eed81Paul Lawrence        setBackFunctionality(true);
9768373b451692a39abdfd12444241c016831e1a4a4David Brown        startActivity(intent);
9778373b451692a39abdfd12444241c016831e1a4a4David Brown    }
978d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal
9793afbdf006057c93f930694e26306a3cc9cea34e4Santos Cordon    private TelephonyManager getTelephonyManager() {
9803afbdf006057c93f930694e26306a3cc9cea34e4Santos Cordon        return (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
9813afbdf006057c93f930694e26306a3cc9cea34e4Santos Cordon    }
9823afbdf006057c93f930694e26306a3cc9cea34e4Santos Cordon
9833e71b197f7f85c5045a083ecc532954958807be6Tyler Gunn    private TelecomManager getTelecomManager() {
9843e71b197f7f85c5045a083ecc532954958807be6Tyler Gunn        return (TelecomManager) getSystemService(Context.TELECOM_SERVICE);
98535230e9ed76de518c7ea46d9277bdc8fa765efd8Santos Cordon    }
98635230e9ed76de518c7ea46d9277bdc8fa765efd8Santos Cordon
987d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    /**
988d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal     * Listen to key events so we can disable sounds when we get a keyinput in EditText.
989d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal     */
990d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    private void delayAudioNotification() {
991d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        mNotificationCountdown = 20;
992d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    }
993d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal
994d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    @Override
995d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    public boolean onKey(View v, int keyCode, KeyEvent event) {
996d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        delayAudioNotification();
997d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        return false;
998d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    }
999d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal
1000d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    @Override
1001d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    public boolean onTouch(View v, MotionEvent event) {
1002d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        delayAudioNotification();
1003d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        return false;
1004d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    }
1005d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal
1006d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    @Override
1007d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    public void beforeTextChanged(CharSequence s, int start, int count, int after) {
1008d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        return;
1009d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    }
1010d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal
1011d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    @Override
1012d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    public void onTextChanged(CharSequence s, int start, int before, int count) {
1013d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        delayAudioNotification();
1014d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    }
1015d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal
1016d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    @Override
1017d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    public void afterTextChanged(Editable s) {
1018d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal        return;
1019d1147250dd5fb7022b01a5c899d365069bb625f8Vikram Aggarwal    }
10201b5cc427f06019936e40ee8e43ae931b8752eb11Fyodor Kupolov
10211b5cc427f06019936e40ee8e43ae931b8752eb11Fyodor Kupolov    private static void disableCryptKeeperComponent(Context context) {
10221b5cc427f06019936e40ee8e43ae931b8752eb11Fyodor Kupolov        PackageManager pm = context.getPackageManager();
10231b5cc427f06019936e40ee8e43ae931b8752eb11Fyodor Kupolov        ComponentName name = new ComponentName(context, CryptKeeper.class);
10241b5cc427f06019936e40ee8e43ae931b8752eb11Fyodor Kupolov        Log.d(TAG, "Disabling component " + name);
1025ae4a557a3f7b85b5c2ccfd275387cd3280c9a73aPaul Lawrence        pm.setComponentEnabledSetting(name, PackageManager.COMPONENT_ENABLED_STATE_DISABLED,
1026ae4a557a3f7b85b5c2ccfd275387cd3280c9a73aPaul Lawrence                PackageManager.DONT_KILL_APP);
10271b5cc427f06019936e40ee8e43ae931b8752eb11Fyodor Kupolov    }
10288373b451692a39abdfd12444241c016831e1a4a4David Brown}
1029