Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | package com.android.settings; |
| 18 | |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 19 | import android.app.Activity; |
| 20 | import android.app.StatusBarManager; |
| 21 | import android.content.ComponentName; |
| 22 | import android.content.Context; |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 23 | import android.content.Intent; |
Paul Lawrence | 7ae20e3 | 2014-07-22 15:00:50 -0700 | [diff] [blame] | 24 | import android.content.pm.ActivityInfo; |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 25 | import android.content.pm.PackageManager; |
Paul Lawrence | 7ae20e3 | 2014-07-22 15:00:50 -0700 | [diff] [blame] | 26 | import android.content.res.Resources.NotFoundException; |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 27 | import android.media.AudioManager; |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 28 | import android.os.AsyncTask; |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 29 | import android.os.Bundle; |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 30 | import android.os.Handler; |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 31 | import android.os.IBinder; |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 32 | import android.os.Message; |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 33 | import android.os.PowerManager; |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 34 | import android.os.RemoteException; |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 35 | import android.os.ServiceManager; |
| 36 | import android.os.SystemProperties; |
Christopher Tate | 6a5929b | 2012-09-10 15:39:05 -0700 | [diff] [blame] | 37 | import android.os.UserHandle; |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 38 | import android.os.storage.IMountService; |
Paul Lawrence | b05f39d | 2014-02-04 10:22:19 -0800 | [diff] [blame] | 39 | import android.os.storage.StorageManager; |
Vikram Aggarwal | 6ebbd30 | 2012-05-04 14:09:52 -0700 | [diff] [blame] | 40 | import android.provider.Settings; |
Tyler Gunn | 3e71b19 | 2014-09-10 15:21:33 -0700 | [diff] [blame] | 41 | import android.telecom.TelecomManager; |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 42 | import android.telephony.TelephonyManager; |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 43 | import android.text.Editable; |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 44 | import android.text.TextUtils; |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 45 | import android.text.TextWatcher; |
Paul Lawrence | b15c68f | 2014-06-05 07:24:23 -0700 | [diff] [blame] | 46 | import android.text.format.DateUtils; |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 47 | import android.util.Log; |
| 48 | import android.view.KeyEvent; |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 49 | import android.view.MotionEvent; |
Andy Stadler | 13d6204 | 2011-01-31 19:21:37 -0800 | [diff] [blame] | 50 | import android.view.View; |
| 51 | import android.view.View.OnClickListener; |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 52 | import android.view.View.OnKeyListener; |
| 53 | import android.view.View.OnTouchListener; |
Fyodor Kupolov | 19280af | 2015-01-27 11:59:00 -0800 | [diff] [blame] | 54 | import android.view.WindowManager; |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 55 | import android.view.inputmethod.EditorInfo; |
Ben Komalo | 9fcb6a7 | 2011-08-26 14:40:18 -0700 | [diff] [blame] | 56 | import android.view.inputmethod.InputMethodInfo; |
Jason parks | 75c085e | 2011-02-10 14:03:47 -0600 | [diff] [blame] | 57 | import android.view.inputmethod.InputMethodManager; |
Ben Komalo | 9fcb6a7 | 2011-08-26 14:40:18 -0700 | [diff] [blame] | 58 | import android.view.inputmethod.InputMethodSubtype; |
Andy Stadler | 13d6204 | 2011-01-31 19:21:37 -0800 | [diff] [blame] | 59 | import android.widget.Button; |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 60 | import android.widget.EditText; |
| 61 | import android.widget.ProgressBar; |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 62 | import android.widget.TextView; |
| 63 | |
Wink Saville | 5543404 | 2012-06-14 12:33:43 -0700 | [diff] [blame] | 64 | import com.android.internal.telephony.PhoneConstants; |
Paul Lawrence | b05f39d | 2014-02-04 10:22:19 -0800 | [diff] [blame] | 65 | import com.android.internal.widget.LockPatternUtils; |
| 66 | import com.android.internal.widget.LockPatternView; |
| 67 | import com.android.internal.widget.LockPatternView.Cell; |
Jason Monk | 39b4674 | 2015-09-10 15:52:51 -0400 | [diff] [blame^] | 68 | import com.android.internal.widget.LockPatternView.DisplayMode; |
Ben Komalo | 9fcb6a7 | 2011-08-26 14:40:18 -0700 | [diff] [blame] | 69 | |
| 70 | import java.util.List; |
Ben Komalo | 91a2f05 | 2011-08-16 17:48:25 -0700 | [diff] [blame] | 71 | |
| 72 | /** |
| 73 | * Settings screens to show the UI flows for encrypting/decrypting the device. |
| 74 | * |
| 75 | * This may be started via adb for debugging the UI layout, without having to go through |
| 76 | * encryption flows everytime. It should be noted that starting the activity in this manner |
| 77 | * is only useful for verifying UI-correctness - the behavior will not be identical. |
| 78 | * <pre> |
| 79 | * $ adb shell pm enable com.android.settings/.CryptKeeper |
| 80 | * $ adb shell am start \ |
| 81 | * -e "com.android.settings.CryptKeeper.DEBUG_FORCE_VIEW" "progress" \ |
| 82 | * -n com.android.settings/.CryptKeeper |
| 83 | * </pre> |
| 84 | */ |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 85 | public class CryptKeeper extends Activity implements TextView.OnEditorActionListener, |
| 86 | OnKeyListener, OnTouchListener, TextWatcher { |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 87 | private static final String TAG = "CryptKeeper"; |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 88 | |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 89 | private static final String DECRYPT_STATE = "trigger_restart_framework"; |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 90 | |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 91 | /** Message sent to us to indicate encryption update progress. */ |
| 92 | private static final int MESSAGE_UPDATE_PROGRESS = 1; |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 93 | /** Message sent to us to indicate alerting the user that we are waiting for password entry */ |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 94 | private static final int MESSAGE_NOTIFY = 2; |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 95 | |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 96 | // Constants used to control policy. |
Paul Crowley | 13b8b56 | 2014-11-21 09:43:17 +0000 | [diff] [blame] | 97 | private static final int MAX_FAILED_ATTEMPTS = 30; |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 98 | private static final int COOL_DOWN_ATTEMPTS = 10; |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 99 | |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 100 | // Intent action for launching the Emergency Dialer activity. |
| 101 | static final String ACTION_EMERGENCY_DIAL = "com.android.phone.EmergencyDialer.DIAL"; |
| 102 | |
Ben Komalo | 91a2f05 | 2011-08-16 17:48:25 -0700 | [diff] [blame] | 103 | // Debug Intent extras so that this Activity may be started via adb for debugging UI layouts |
| 104 | private static final String EXTRA_FORCE_VIEW = |
| 105 | "com.android.settings.CryptKeeper.DEBUG_FORCE_VIEW"; |
| 106 | private static final String FORCE_VIEW_PROGRESS = "progress"; |
Ben Komalo | 91a2f05 | 2011-08-16 17:48:25 -0700 | [diff] [blame] | 107 | private static final String FORCE_VIEW_ERROR = "error"; |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 108 | private static final String FORCE_VIEW_PASSWORD = "password"; |
Ben Komalo | 91a2f05 | 2011-08-16 17:48:25 -0700 | [diff] [blame] | 109 | |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 110 | /** When encryption is detected, this flag indicates whether or not we've checked for errors. */ |
Ben Komalo | 0e66609 | 2011-09-01 15:42:00 -0700 | [diff] [blame] | 111 | private boolean mValidationComplete; |
Ben Komalo | d4758ef | 2011-09-08 14:36:08 -0700 | [diff] [blame] | 112 | private boolean mValidationRequested; |
Ben Komalo | 0e66609 | 2011-09-01 15:42:00 -0700 | [diff] [blame] | 113 | /** A flag to indicate that the volume is in a bad state (e.g. partially encrypted). */ |
| 114 | private boolean mEncryptionGoneBad; |
Paul Lawrence | 87abbd3 | 2014-08-28 15:56:38 -0700 | [diff] [blame] | 115 | /** If gone bad, should we show encryption failed (false) or corrupt (true)*/ |
| 116 | private boolean mCorrupt; |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 117 | /** A flag to indicate when the back event should be ignored */ |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 118 | /** When set, blocks unlocking. Set every COOL_DOWN_ATTEMPTS attempts, only cleared |
| 119 | by power cycling phone. */ |
| 120 | private boolean mCooldown = false; |
| 121 | |
Andy Stadler | 1499740 | 2011-02-01 15:34:59 -0800 | [diff] [blame] | 122 | PowerManager.WakeLock mWakeLock; |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 123 | private EditText mPasswordEntry; |
Paul Lawrence | b05f39d | 2014-02-04 10:22:19 -0800 | [diff] [blame] | 124 | private LockPatternView mLockPatternView; |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 125 | /** Number of calls to {@link #notifyUser()} to ignore before notifying. */ |
| 126 | private int mNotificationCountdown = 0; |
Paul Lawrence | 73456ac | 2014-05-16 07:56:04 -0700 | [diff] [blame] | 127 | /** Number of calls to {@link #notifyUser()} before we release the wakelock */ |
| 128 | private int mReleaseWakeLockCountdown = 0; |
Paul Lawrence | 5a70f05 | 2014-06-13 11:09:55 -0700 | [diff] [blame] | 129 | private int mStatusString = R.string.enter_password; |
Andy Stadler | 1499740 | 2011-02-01 15:34:59 -0800 | [diff] [blame] | 130 | |
Paul Lawrence | f6cda3b | 2014-06-12 08:26:08 -0700 | [diff] [blame] | 131 | // how long we wait to clear a wrong pattern |
| 132 | private static final int WRONG_PATTERN_CLEAR_TIMEOUT_MS = 1500; |
| 133 | |
Paul Lawrence | 0f11e15 | 2014-08-20 07:43:32 -0700 | [diff] [blame] | 134 | // how long we wait to clear a right pattern |
| 135 | private static final int RIGHT_PATTERN_CLEAR_TIMEOUT_MS = 500; |
| 136 | |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 137 | // When the user enters a short pin/password, run this to show an error, |
| 138 | // but don't count it against attempts. |
| 139 | private final Runnable mFakeUnlockAttemptRunnable = new Runnable() { |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 140 | @Override |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 141 | public void run() { |
| 142 | handleBadAttempt(1 /* failedAttempt */); |
| 143 | } |
| 144 | }; |
| 145 | |
| 146 | // TODO: this should be tuned to match minimum decryption timeout |
| 147 | private static final int FAKE_ATTEMPT_DELAY = 1000; |
| 148 | |
| 149 | private final Runnable mClearPatternRunnable = new Runnable() { |
Paul Crowley | 529834d | 2014-10-21 10:12:47 +0100 | [diff] [blame] | 150 | @Override |
Paul Lawrence | f6cda3b | 2014-06-12 08:26:08 -0700 | [diff] [blame] | 151 | public void run() { |
| 152 | mLockPatternView.clearPattern(); |
| 153 | } |
| 154 | }; |
| 155 | |
Andy Stadler | 1499740 | 2011-02-01 15:34:59 -0800 | [diff] [blame] | 156 | /** |
| 157 | * Used to propagate state through configuration changes (e.g. screen rotation) |
| 158 | */ |
| 159 | private static class NonConfigurationInstanceState { |
| 160 | final PowerManager.WakeLock wakelock; |
| 161 | |
| 162 | NonConfigurationInstanceState(PowerManager.WakeLock _wakelock) { |
| 163 | wakelock = _wakelock; |
| 164 | } |
| 165 | } |
| 166 | |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 167 | private class DecryptTask extends AsyncTask<String, Void, Integer> { |
Paul Lawrence | ced7db4 | 2014-09-18 11:23:40 -0700 | [diff] [blame] | 168 | private void hide(int id) { |
| 169 | View view = findViewById(id); |
| 170 | if (view != null) { |
| 171 | view.setVisibility(View.GONE); |
| 172 | } |
| 173 | } |
| 174 | |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 175 | @Override |
Paul Crowley | 529834d | 2014-10-21 10:12:47 +0100 | [diff] [blame] | 176 | protected void onPreExecute() { |
| 177 | super.onPreExecute(); |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 178 | beginAttempt(); |
Paul Crowley | 529834d | 2014-10-21 10:12:47 +0100 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | @Override |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 182 | protected Integer doInBackground(String... params) { |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 183 | final IMountService service = getMountService(); |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 184 | try { |
| 185 | return service.decryptStorage(params[0]); |
| 186 | } catch (Exception e) { |
| 187 | Log.e(TAG, "Error while decrypting...", e); |
| 188 | return -1; |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | @Override |
| 193 | protected void onPostExecute(Integer failedAttempts) { |
| 194 | if (failedAttempts == 0) { |
Paul Lawrence | 89c7570 | 2014-07-11 07:34:44 -0700 | [diff] [blame] | 195 | // The password was entered successfully. Simply do nothing |
| 196 | // and wait for the service restart to switch to surfacefligner |
Paul Lawrence | 0f11e15 | 2014-08-20 07:43:32 -0700 | [diff] [blame] | 197 | if (mLockPatternView != null) { |
| 198 | mLockPatternView.removeCallbacks(mClearPatternRunnable); |
| 199 | mLockPatternView.postDelayed(mClearPatternRunnable, RIGHT_PATTERN_CLEAR_TIMEOUT_MS); |
| 200 | } |
Paul Crowley | 529834d | 2014-10-21 10:12:47 +0100 | [diff] [blame] | 201 | final TextView status = (TextView) findViewById(R.id.status); |
| 202 | status.setText(R.string.starting_android); |
Paul Lawrence | ced7db4 | 2014-09-18 11:23:40 -0700 | [diff] [blame] | 203 | hide(R.id.passwordEntry); |
| 204 | hide(R.id.switch_ime_button); |
| 205 | hide(R.id.lockPattern); |
Paul Lawrence | ced7db4 | 2014-09-18 11:23:40 -0700 | [diff] [blame] | 206 | hide(R.id.owner_info); |
| 207 | hide(R.id.emergencyCallButton); |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 208 | } else if (failedAttempts == MAX_FAILED_ATTEMPTS) { |
| 209 | // Factory reset the device. |
Jeff Sharkey | 1de688d | 2014-09-24 13:57:07 -0700 | [diff] [blame] | 210 | Intent intent = new Intent(Intent.ACTION_MASTER_CLEAR); |
| 211 | intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND); |
| 212 | intent.putExtra(Intent.EXTRA_REASON, "CryptKeeper.MAX_FAILED_ATTEMPTS"); |
| 213 | sendBroadcast(intent); |
Paul Lawrence | 384d8e5 | 2014-08-08 15:11:36 -0700 | [diff] [blame] | 214 | } else if (failedAttempts == -1) { |
| 215 | // Right password, but decryption failed. Tell user bad news ... |
| 216 | setContentView(R.layout.crypt_keeper_progress); |
| 217 | showFactoryReset(true); |
| 218 | return; |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 219 | } else { |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 220 | handleBadAttempt(failedAttempts); |
| 221 | } |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | private void beginAttempt() { |
| 226 | final TextView status = (TextView) findViewById(R.id.status); |
| 227 | status.setText(R.string.checking_decryption); |
| 228 | } |
| 229 | |
| 230 | private void handleBadAttempt(Integer failedAttempts) { |
| 231 | // Wrong entry. Handle pattern case. |
| 232 | if (mLockPatternView != null) { |
| 233 | mLockPatternView.setDisplayMode(DisplayMode.Wrong); |
| 234 | mLockPatternView.removeCallbacks(mClearPatternRunnable); |
| 235 | mLockPatternView.postDelayed(mClearPatternRunnable, WRONG_PATTERN_CLEAR_TIMEOUT_MS); |
| 236 | } |
| 237 | if ((failedAttempts % COOL_DOWN_ATTEMPTS) == 0) { |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 238 | mCooldown = true; |
| 239 | // No need to setBackFunctionality(false) - it's already done |
| 240 | // at this point. |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 241 | cooldown(); |
| 242 | } else { |
| 243 | final TextView status = (TextView) findViewById(R.id.status); |
| 244 | |
| 245 | int remainingAttempts = MAX_FAILED_ATTEMPTS - failedAttempts; |
| 246 | if (remainingAttempts < COOL_DOWN_ATTEMPTS) { |
| 247 | CharSequence warningTemplate = getText(R.string.crypt_keeper_warn_wipe); |
| 248 | CharSequence warning = TextUtils.expandTemplate(warningTemplate, |
| 249 | Integer.toString(remainingAttempts)); |
| 250 | status.setText(warning); |
| 251 | } else { |
| 252 | int passwordType = StorageManager.CRYPT_TYPE_PASSWORD; |
| 253 | try { |
| 254 | final IMountService service = getMountService(); |
| 255 | passwordType = service.getPasswordType(); |
| 256 | } catch (Exception e) { |
| 257 | Log.e(TAG, "Error calling mount service " + e); |
Paul Lawrence | f6cda3b | 2014-06-12 08:26:08 -0700 | [diff] [blame] | 258 | } |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 259 | |
| 260 | if (passwordType == StorageManager.CRYPT_TYPE_PIN) { |
| 261 | status.setText(R.string.cryptkeeper_wrong_pin); |
| 262 | } else if (passwordType == StorageManager.CRYPT_TYPE_PATTERN) { |
| 263 | status.setText(R.string.cryptkeeper_wrong_pattern); |
Paul Lawrence | f6cda3b | 2014-06-12 08:26:08 -0700 | [diff] [blame] | 264 | } else { |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 265 | status.setText(R.string.cryptkeeper_wrong_password); |
Paul Lawrence | 2daf264 | 2014-03-14 09:20:24 -0700 | [diff] [blame] | 266 | } |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 267 | } |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 268 | |
| 269 | if (mLockPatternView != null) { |
| 270 | mLockPatternView.setDisplayMode(DisplayMode.Wrong); |
| 271 | mLockPatternView.setEnabled(true); |
| 272 | } |
| 273 | |
| 274 | // Reenable the password entry |
| 275 | if (mPasswordEntry != null) { |
| 276 | mPasswordEntry.setEnabled(true); |
| 277 | final InputMethodManager imm = (InputMethodManager) getSystemService( |
| 278 | Context.INPUT_METHOD_SERVICE); |
| 279 | imm.showSoftInput(mPasswordEntry, 0); |
| 280 | setBackFunctionality(true); |
| 281 | } |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 282 | } |
| 283 | } |
Jason parks | 75c085e | 2011-02-10 14:03:47 -0600 | [diff] [blame] | 284 | |
Ben Komalo | 0e66609 | 2011-09-01 15:42:00 -0700 | [diff] [blame] | 285 | private class ValidationTask extends AsyncTask<Void, Void, Boolean> { |
Paul Lawrence | 87abbd3 | 2014-08-28 15:56:38 -0700 | [diff] [blame] | 286 | int state; |
| 287 | |
Ben Komalo | 0e66609 | 2011-09-01 15:42:00 -0700 | [diff] [blame] | 288 | @Override |
| 289 | protected Boolean doInBackground(Void... params) { |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 290 | final IMountService service = getMountService(); |
Ben Komalo | 0e66609 | 2011-09-01 15:42:00 -0700 | [diff] [blame] | 291 | try { |
Ben Komalo | d4758ef | 2011-09-08 14:36:08 -0700 | [diff] [blame] | 292 | Log.d(TAG, "Validating encryption state."); |
Paul Lawrence | 87abbd3 | 2014-08-28 15:56:38 -0700 | [diff] [blame] | 293 | state = service.getEncryptionState(); |
Ben Komalo | 0e66609 | 2011-09-01 15:42:00 -0700 | [diff] [blame] | 294 | if (state == IMountService.ENCRYPTION_STATE_NONE) { |
| 295 | Log.w(TAG, "Unexpectedly in CryptKeeper even though there is no encryption."); |
| 296 | return true; // Unexpected, but fine, I guess... |
| 297 | } |
| 298 | return state == IMountService.ENCRYPTION_STATE_OK; |
| 299 | } catch (RemoteException e) { |
| 300 | Log.w(TAG, "Unable to get encryption state properly"); |
| 301 | return true; |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | @Override |
| 306 | protected void onPostExecute(Boolean result) { |
| 307 | mValidationComplete = true; |
| 308 | if (Boolean.FALSE.equals(result)) { |
| 309 | Log.w(TAG, "Incomplete, or corrupted encryption detected. Prompting user to wipe."); |
| 310 | mEncryptionGoneBad = true; |
Paul Lawrence | 87abbd3 | 2014-08-28 15:56:38 -0700 | [diff] [blame] | 311 | mCorrupt = state == IMountService.ENCRYPTION_STATE_ERROR_CORRUPT; |
Ben Komalo | d4758ef | 2011-09-08 14:36:08 -0700 | [diff] [blame] | 312 | } else { |
| 313 | Log.d(TAG, "Encryption state validated. Proceeding to configure UI"); |
Ben Komalo | 0e66609 | 2011-09-01 15:42:00 -0700 | [diff] [blame] | 314 | } |
| 315 | setupUi(); |
| 316 | } |
| 317 | } |
| 318 | |
Ben Komalo | 91a2f05 | 2011-08-16 17:48:25 -0700 | [diff] [blame] | 319 | private final Handler mHandler = new Handler() { |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 320 | @Override |
| 321 | public void handleMessage(Message msg) { |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 322 | switch (msg.what) { |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 323 | case MESSAGE_UPDATE_PROGRESS: |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 324 | updateProgress(); |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 325 | break; |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 326 | |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 327 | case MESSAGE_NOTIFY: |
| 328 | notifyUser(); |
| 329 | break; |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 330 | } |
| 331 | } |
| 332 | }; |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 333 | |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 334 | private AudioManager mAudioManager; |
Vikram Aggarwal | bf459da | 2012-11-08 16:54:59 -0800 | [diff] [blame] | 335 | /** The status bar where back/home/recent buttons are shown. */ |
| 336 | private StatusBarManager mStatusBar; |
| 337 | |
| 338 | /** All the widgets to disable in the status bar */ |
| 339 | final private static int sWidgetsToDisable = StatusBarManager.DISABLE_EXPAND |
| 340 | | StatusBarManager.DISABLE_NOTIFICATION_ICONS |
| 341 | | StatusBarManager.DISABLE_NOTIFICATION_ALERTS |
| 342 | | StatusBarManager.DISABLE_SYSTEM_INFO |
| 343 | | StatusBarManager.DISABLE_HOME |
Alon Albert | 66d050b | 2013-09-30 17:08:12 -0700 | [diff] [blame] | 344 | | StatusBarManager.DISABLE_SEARCH |
Vikram Aggarwal | bf459da | 2012-11-08 16:54:59 -0800 | [diff] [blame] | 345 | | StatusBarManager.DISABLE_RECENT; |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 346 | |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 347 | protected static final int MIN_LENGTH_BEFORE_REPORT = LockPatternUtils.MIN_LOCK_PATTERN_SIZE; |
| 348 | |
Ben Komalo | 91a2f05 | 2011-08-16 17:48:25 -0700 | [diff] [blame] | 349 | /** @return whether or not this Activity was started for debugging the UI only. */ |
| 350 | private boolean isDebugView() { |
| 351 | return getIntent().hasExtra(EXTRA_FORCE_VIEW); |
| 352 | } |
| 353 | |
| 354 | /** @return whether or not this Activity was started for debugging the specific UI view only. */ |
| 355 | private boolean isDebugView(String viewType /* non-nullable */) { |
| 356 | return viewType.equals(getIntent().getStringExtra(EXTRA_FORCE_VIEW)); |
| 357 | } |
| 358 | |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 359 | /** |
| 360 | * Notify the user that we are awaiting input. Currently this sends an audio alert. |
| 361 | */ |
| 362 | private void notifyUser() { |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 363 | if (mNotificationCountdown > 0) { |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 364 | --mNotificationCountdown; |
| 365 | } else if (mAudioManager != null) { |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 366 | try { |
| 367 | // Play the standard keypress sound at full volume. This should be available on |
| 368 | // every device. We cannot play a ringtone here because media services aren't |
| 369 | // available yet. A DTMF-style tone is too soft to be noticed, and might not exist |
| 370 | // on tablet devices. The idea is to alert the user that something is needed: this |
| 371 | // does not have to be pleasing. |
| 372 | mAudioManager.playSoundEffect(AudioManager.FX_KEYPRESS_STANDARD, 100); |
| 373 | } catch (Exception e) { |
| 374 | Log.w(TAG, "notifyUser: Exception while playing sound: " + e); |
| 375 | } |
| 376 | } |
Vikram Aggarwal | 86b9393 | 2012-05-01 16:46:06 -0700 | [diff] [blame] | 377 | // Notify the user again in 5 seconds. |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 378 | mHandler.removeMessages(MESSAGE_NOTIFY); |
Vikram Aggarwal | 86b9393 | 2012-05-01 16:46:06 -0700 | [diff] [blame] | 379 | mHandler.sendEmptyMessageDelayed(MESSAGE_NOTIFY, 5 * 1000); |
Paul Lawrence | 73456ac | 2014-05-16 07:56:04 -0700 | [diff] [blame] | 380 | |
| 381 | if (mWakeLock.isHeld()) { |
| 382 | if (mReleaseWakeLockCountdown > 0) { |
| 383 | --mReleaseWakeLockCountdown; |
| 384 | } else { |
| 385 | mWakeLock.release(); |
| 386 | } |
| 387 | } |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | /** |
Paul Lawrence | 2a6552e | 2015-05-14 15:49:08 -0700 | [diff] [blame] | 391 | * Ignore back events from this activity always - there's nowhere to go back |
| 392 | * to |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 393 | */ |
| 394 | @Override |
| 395 | public void onBackPressed() { |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 398 | @Override |
| 399 | public void onCreate(Bundle savedInstanceState) { |
| 400 | super.onCreate(savedInstanceState); |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 401 | |
Andy Stadler | 9597406 | 2011-02-01 17:35:20 -0800 | [diff] [blame] | 402 | // If we are not encrypted or encrypting, get out quickly. |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 403 | final String state = SystemProperties.get("vold.decrypt"); |
Ben Komalo | 91a2f05 | 2011-08-16 17:48:25 -0700 | [diff] [blame] | 404 | if (!isDebugView() && ("".equals(state) || DECRYPT_STATE.equals(state))) { |
Fyodor Kupolov | 1b5cc42 | 2014-12-08 16:13:11 -0800 | [diff] [blame] | 405 | disableCryptKeeperComponent(this); |
Dianne Hackborn | 140f6c6 | 2011-10-16 11:49:00 -0700 | [diff] [blame] | 406 | // Typically CryptKeeper is launched as the home app. We didn't |
Dianne Hackborn | 644fa42 | 2011-10-18 13:38:03 -0700 | [diff] [blame] | 407 | // want to be running, so need to finish this activity. We can count |
| 408 | // on the activity manager re-launching the new home app upon finishing |
| 409 | // this one, since this will leave the activity stack empty. |
Dianne Hackborn | 140f6c6 | 2011-10-16 11:49:00 -0700 | [diff] [blame] | 410 | // NOTE: This is really grungy. I think it would be better for the |
| 411 | // activity manager to explicitly launch the crypt keeper instead of |
| 412 | // home in the situation where we need to decrypt the device |
| 413 | finish(); |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 414 | return; |
| 415 | } |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 416 | |
Paul Lawrence | 7ae20e3 | 2014-07-22 15:00:50 -0700 | [diff] [blame] | 417 | try { |
| 418 | if (getResources().getBoolean(R.bool.crypt_keeper_allow_rotation)) { |
| 419 | setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED); |
| 420 | } |
| 421 | } catch (NotFoundException e) { |
| 422 | } |
| 423 | |
Vikram Aggarwal | b96b35a | 2012-05-01 11:09:39 -0700 | [diff] [blame] | 424 | // Disable the status bar, but do NOT disable back because the user needs a way to go |
| 425 | // from keyboard settings and back to the password screen. |
Vikram Aggarwal | bf459da | 2012-11-08 16:54:59 -0800 | [diff] [blame] | 426 | mStatusBar = (StatusBarManager) getSystemService(Context.STATUS_BAR_SERVICE); |
| 427 | mStatusBar.disable(sWidgetsToDisable); |
Andy Stadler | 1499740 | 2011-02-01 15:34:59 -0800 | [diff] [blame] | 428 | |
Vikram Aggarwal | ea1186d | 2012-05-03 15:35:03 -0700 | [diff] [blame] | 429 | setAirplaneModeIfNecessary(); |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 430 | mAudioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE); |
Andy Stadler | 1499740 | 2011-02-01 15:34:59 -0800 | [diff] [blame] | 431 | // Check for (and recover) retained instance data |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 432 | final Object lastInstance = getLastNonConfigurationInstance(); |
Andy Stadler | 1499740 | 2011-02-01 15:34:59 -0800 | [diff] [blame] | 433 | if (lastInstance instanceof NonConfigurationInstanceState) { |
| 434 | NonConfigurationInstanceState retained = (NonConfigurationInstanceState) lastInstance; |
| 435 | mWakeLock = retained.wakelock; |
Ben Komalo | 0460675 | 2011-08-18 14:50:26 -0700 | [diff] [blame] | 436 | Log.d(TAG, "Restoring wakelock from NonConfigurationInstanceState"); |
Andy Stadler | 1499740 | 2011-02-01 15:34:59 -0800 | [diff] [blame] | 437 | } |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 438 | } |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 439 | |
Andy Stadler | 9597406 | 2011-02-01 17:35:20 -0800 | [diff] [blame] | 440 | /** |
| 441 | * Note, we defer the state check and screen setup to onStart() because this will be |
| 442 | * re-run if the user clicks the power button (sleeping/waking the screen), and this is |
| 443 | * especially important if we were to lose the wakelock for any reason. |
| 444 | */ |
| 445 | @Override |
| 446 | public void onStart() { |
| 447 | super.onStart(); |
Ben Komalo | d4758ef | 2011-09-08 14:36:08 -0700 | [diff] [blame] | 448 | setupUi(); |
Ben Komalo | 0e66609 | 2011-09-01 15:42:00 -0700 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | /** |
| 452 | * Initializes the UI based on the current state of encryption. |
| 453 | * This is idempotent - calling repeatedly will simply re-initialize the UI. |
| 454 | */ |
| 455 | private void setupUi() { |
| 456 | if (mEncryptionGoneBad || isDebugView(FORCE_VIEW_ERROR)) { |
| 457 | setContentView(R.layout.crypt_keeper_progress); |
Paul Lawrence | 87abbd3 | 2014-08-28 15:56:38 -0700 | [diff] [blame] | 458 | showFactoryReset(mCorrupt); |
Ben Komalo | 0e66609 | 2011-09-01 15:42:00 -0700 | [diff] [blame] | 459 | return; |
| 460 | } |
| 461 | |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 462 | final String progress = SystemProperties.get("vold.encrypt_progress"); |
Ben Komalo | 0e66609 | 2011-09-01 15:42:00 -0700 | [diff] [blame] | 463 | if (!"".equals(progress) || isDebugView(FORCE_VIEW_PROGRESS)) { |
Andy Stadler | 9597406 | 2011-02-01 17:35:20 -0800 | [diff] [blame] | 464 | setContentView(R.layout.crypt_keeper_progress); |
| 465 | encryptionProgressInit(); |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 466 | } else if (mValidationComplete || isDebugView(FORCE_VIEW_PASSWORD)) { |
Paul Lawrence | 9ac2d81 | 2014-03-18 10:59:18 -0700 | [diff] [blame] | 467 | new AsyncTask<Void, Void, Void>() { |
Paul Crowley | 529834d | 2014-10-21 10:12:47 +0100 | [diff] [blame] | 468 | int passwordType = StorageManager.CRYPT_TYPE_PASSWORD; |
Paul Lawrence | 9ac2d81 | 2014-03-18 10:59:18 -0700 | [diff] [blame] | 469 | String owner_info; |
Paul Lawrence | 0f11e15 | 2014-08-20 07:43:32 -0700 | [diff] [blame] | 470 | boolean pattern_visible; |
Paul Lawrence | c04420c | 2015-05-18 13:25:01 -0700 | [diff] [blame] | 471 | boolean password_visible; |
Paul Lawrence | b05f39d | 2014-02-04 10:22:19 -0800 | [diff] [blame] | 472 | |
Paul Lawrence | 9ac2d81 | 2014-03-18 10:59:18 -0700 | [diff] [blame] | 473 | @Override |
| 474 | public Void doInBackground(Void... v) { |
| 475 | try { |
| 476 | final IMountService service = getMountService(); |
Paul Crowley | 529834d | 2014-10-21 10:12:47 +0100 | [diff] [blame] | 477 | passwordType = service.getPasswordType(); |
Elliott Hughes | f9d6d29 | 2014-10-02 13:29:58 -0700 | [diff] [blame] | 478 | owner_info = service.getField(StorageManager.OWNER_INFO_KEY); |
| 479 | pattern_visible = !("0".equals(service.getField(StorageManager.PATTERN_VISIBLE_KEY))); |
Paul Lawrence | c04420c | 2015-05-18 13:25:01 -0700 | [diff] [blame] | 480 | password_visible = !("0".equals(service.getField(StorageManager.PASSWORD_VISIBLE_KEY))); |
Paul Lawrence | 9ac2d81 | 2014-03-18 10:59:18 -0700 | [diff] [blame] | 481 | } catch (Exception e) { |
| 482 | Log.e(TAG, "Error calling mount service " + e); |
| 483 | } |
| 484 | |
| 485 | return null; |
| 486 | } |
| 487 | |
| 488 | @Override |
| 489 | public void onPostExecute(java.lang.Void v) { |
Paul Lawrence | c04420c | 2015-05-18 13:25:01 -0700 | [diff] [blame] | 490 | Settings.System.putInt(getContentResolver(), Settings.System.TEXT_SHOW_PASSWORD, |
| 491 | password_visible ? 1 : 0); |
| 492 | |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 493 | if (passwordType == StorageManager.CRYPT_TYPE_PIN) { |
Paul Lawrence | 9ac2d81 | 2014-03-18 10:59:18 -0700 | [diff] [blame] | 494 | setContentView(R.layout.crypt_keeper_pin_entry); |
Paul Lawrence | 5a70f05 | 2014-06-13 11:09:55 -0700 | [diff] [blame] | 495 | mStatusString = R.string.enter_pin; |
Paul Crowley | 529834d | 2014-10-21 10:12:47 +0100 | [diff] [blame] | 496 | } else if (passwordType == StorageManager.CRYPT_TYPE_PATTERN) { |
Paul Lawrence | 9ac2d81 | 2014-03-18 10:59:18 -0700 | [diff] [blame] | 497 | setContentView(R.layout.crypt_keeper_pattern_entry); |
| 498 | setBackFunctionality(false); |
Paul Lawrence | 5a70f05 | 2014-06-13 11:09:55 -0700 | [diff] [blame] | 499 | mStatusString = R.string.enter_pattern; |
Paul Lawrence | 9ac2d81 | 2014-03-18 10:59:18 -0700 | [diff] [blame] | 500 | } else { |
| 501 | setContentView(R.layout.crypt_keeper_password_entry); |
Paul Lawrence | 5a70f05 | 2014-06-13 11:09:55 -0700 | [diff] [blame] | 502 | mStatusString = R.string.enter_password; |
Paul Lawrence | 9ac2d81 | 2014-03-18 10:59:18 -0700 | [diff] [blame] | 503 | } |
Paul Lawrence | 5a70f05 | 2014-06-13 11:09:55 -0700 | [diff] [blame] | 504 | final TextView status = (TextView) findViewById(R.id.status); |
| 505 | status.setText(mStatusString); |
Paul Lawrence | 9ac2d81 | 2014-03-18 10:59:18 -0700 | [diff] [blame] | 506 | |
Paul Lawrence | 5a70f05 | 2014-06-13 11:09:55 -0700 | [diff] [blame] | 507 | final TextView ownerInfo = (TextView) findViewById(R.id.owner_info); |
| 508 | ownerInfo.setText(owner_info); |
| 509 | ownerInfo.setSelected(true); // Required for marquee'ing to work |
| 510 | |
Paul Lawrence | 9ac2d81 | 2014-03-18 10:59:18 -0700 | [diff] [blame] | 511 | passwordEntryInit(); |
Paul Lawrence | 5a70f05 | 2014-06-13 11:09:55 -0700 | [diff] [blame] | 512 | |
Paul Lawrence | 2a6552e | 2015-05-14 15:49:08 -0700 | [diff] [blame] | 513 | findViewById(android.R.id.content).setSystemUiVisibility(View.STATUS_BAR_DISABLE_BACK); |
| 514 | |
Paul Lawrence | 0f11e15 | 2014-08-20 07:43:32 -0700 | [diff] [blame] | 515 | if (mLockPatternView != null) { |
| 516 | mLockPatternView.setInStealthMode(!pattern_visible); |
| 517 | } |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 518 | if (mCooldown) { |
| 519 | // in case we are cooling down and coming back from emergency dialler |
Paul Lawrence | 5a70f05 | 2014-06-13 11:09:55 -0700 | [diff] [blame] | 520 | setBackFunctionality(false); |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 521 | cooldown(); |
Paul Lawrence | 5a70f05 | 2014-06-13 11:09:55 -0700 | [diff] [blame] | 522 | } |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 523 | |
Paul Lawrence | 9ac2d81 | 2014-03-18 10:59:18 -0700 | [diff] [blame] | 524 | } |
| 525 | }.execute(); |
Ben Komalo | d4758ef | 2011-09-08 14:36:08 -0700 | [diff] [blame] | 526 | } else if (!mValidationRequested) { |
| 527 | // We're supposed to be encrypted, but no validation has been done. |
| 528 | new ValidationTask().execute((Void[]) null); |
| 529 | mValidationRequested = true; |
Andy Stadler | 9597406 | 2011-02-01 17:35:20 -0800 | [diff] [blame] | 530 | } |
| 531 | } |
| 532 | |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 533 | @Override |
| 534 | public void onStop() { |
| 535 | super.onStop(); |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 536 | mHandler.removeMessages(MESSAGE_UPDATE_PROGRESS); |
| 537 | mHandler.removeMessages(MESSAGE_NOTIFY); |
Andy Stadler | 1499740 | 2011-02-01 15:34:59 -0800 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | /** |
| 541 | * Reconfiguring, so propagate the wakelock to the next instance. This runs between onStop() |
| 542 | * and onDestroy() and only if we are changing configuration (e.g. rotation). Also clears |
| 543 | * mWakeLock so the subsequent call to onDestroy does not release it. |
| 544 | */ |
| 545 | @Override |
| 546 | public Object onRetainNonConfigurationInstance() { |
| 547 | NonConfigurationInstanceState state = new NonConfigurationInstanceState(mWakeLock); |
Ben Komalo | 0460675 | 2011-08-18 14:50:26 -0700 | [diff] [blame] | 548 | Log.d(TAG, "Handing wakelock off to NonConfigurationInstanceState"); |
Andy Stadler | 1499740 | 2011-02-01 15:34:59 -0800 | [diff] [blame] | 549 | mWakeLock = null; |
| 550 | return state; |
| 551 | } |
| 552 | |
| 553 | @Override |
| 554 | public void onDestroy() { |
| 555 | super.onDestroy(); |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 556 | |
| 557 | if (mWakeLock != null) { |
Ben Komalo | 0460675 | 2011-08-18 14:50:26 -0700 | [diff] [blame] | 558 | Log.d(TAG, "Releasing and destroying wakelock"); |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 559 | mWakeLock.release(); |
| 560 | mWakeLock = null; |
| 561 | } |
| 562 | } |
| 563 | |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 564 | /** |
| 565 | * Start encrypting the device. |
| 566 | */ |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 567 | private void encryptionProgressInit() { |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 568 | // Accquire a partial wakelock to prevent the device from sleeping. Note |
| 569 | // we never release this wakelock as we will be restarted after the device |
| 570 | // is encrypted. |
Ben Komalo | 0460675 | 2011-08-18 14:50:26 -0700 | [diff] [blame] | 571 | Log.d(TAG, "Encryption progress screen initializing."); |
Ben Komalo | 9ee164f | 2011-09-21 10:40:50 -0700 | [diff] [blame] | 572 | if (mWakeLock == null) { |
Ben Komalo | 0460675 | 2011-08-18 14:50:26 -0700 | [diff] [blame] | 573 | Log.d(TAG, "Acquiring wakelock."); |
| 574 | PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE); |
| 575 | mWakeLock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK, TAG); |
| 576 | mWakeLock.acquire(); |
| 577 | } |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 578 | |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 579 | ((ProgressBar) findViewById(R.id.progress_bar)).setIndeterminate(true); |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 580 | // Ignore all back presses from now, both hard and soft keys. |
Vikram Aggarwal | bf459da | 2012-11-08 16:54:59 -0800 | [diff] [blame] | 581 | setBackFunctionality(false); |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 582 | // Start the first run of progress manually. This method sets up messages to occur at |
| 583 | // repeated intervals. |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 584 | updateProgress(); |
| 585 | } |
| 586 | |
Paul Lawrence | 384d8e5 | 2014-08-08 15:11:36 -0700 | [diff] [blame] | 587 | /** |
| 588 | * Show factory reset screen allowing the user to reset their phone when |
| 589 | * there is nothing else we can do |
| 590 | * @param corrupt true if userdata is corrupt, false if encryption failed |
| 591 | * partway through |
| 592 | */ |
Jeff Sharkey | 1de688d | 2014-09-24 13:57:07 -0700 | [diff] [blame] | 593 | private void showFactoryReset(final boolean corrupt) { |
Andy Stadler | 13d6204 | 2011-01-31 19:21:37 -0800 | [diff] [blame] | 594 | // Hide the encryption-bot to make room for the "factory reset" button |
| 595 | findViewById(R.id.encroid).setVisibility(View.GONE); |
| 596 | |
| 597 | // Show the reset button, failure text, and a divider |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 598 | final Button button = (Button) findViewById(R.id.factory_reset); |
Andy Stadler | 13d6204 | 2011-01-31 19:21:37 -0800 | [diff] [blame] | 599 | button.setVisibility(View.VISIBLE); |
| 600 | button.setOnClickListener(new OnClickListener() { |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 601 | @Override |
Andy Stadler | 13d6204 | 2011-01-31 19:21:37 -0800 | [diff] [blame] | 602 | public void onClick(View v) { |
| 603 | // Factory reset the device. |
Jeff Sharkey | 1de688d | 2014-09-24 13:57:07 -0700 | [diff] [blame] | 604 | Intent intent = new Intent(Intent.ACTION_MASTER_CLEAR); |
| 605 | intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND); |
| 606 | intent.putExtra(Intent.EXTRA_REASON, |
| 607 | "CryptKeeper.showFactoryReset() corrupt=" + corrupt); |
| 608 | sendBroadcast(intent); |
Andy Stadler | 13d6204 | 2011-01-31 19:21:37 -0800 | [diff] [blame] | 609 | } |
| 610 | }); |
| 611 | |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 612 | // Alert the user of the failure. |
Paul Lawrence | 384d8e5 | 2014-08-08 15:11:36 -0700 | [diff] [blame] | 613 | if (corrupt) { |
| 614 | ((TextView) findViewById(R.id.title)).setText(R.string.crypt_keeper_data_corrupt_title); |
| 615 | ((TextView) findViewById(R.id.status)).setText(R.string.crypt_keeper_data_corrupt_summary); |
| 616 | } else { |
| 617 | ((TextView) findViewById(R.id.title)).setText(R.string.crypt_keeper_failed_title); |
| 618 | ((TextView) findViewById(R.id.status)).setText(R.string.crypt_keeper_failed_summary); |
| 619 | } |
Andy Stadler | 13d6204 | 2011-01-31 19:21:37 -0800 | [diff] [blame] | 620 | |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 621 | final View view = findViewById(R.id.bottom_divider); |
| 622 | // TODO(viki): Why would the bottom divider be missing in certain layouts? Investigate. |
Ben Komalo | f0104df | 2011-08-16 17:48:42 -0700 | [diff] [blame] | 623 | if (view != null) { |
| 624 | view.setVisibility(View.VISIBLE); |
| 625 | } |
Andy Stadler | 13d6204 | 2011-01-31 19:21:37 -0800 | [diff] [blame] | 626 | } |
| 627 | |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 628 | private void updateProgress() { |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 629 | final String state = SystemProperties.get("vold.encrypt_progress"); |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 630 | |
Ben Komalo | 0e66609 | 2011-09-01 15:42:00 -0700 | [diff] [blame] | 631 | if ("error_partially_encrypted".equals(state)) { |
Paul Lawrence | 384d8e5 | 2014-08-08 15:11:36 -0700 | [diff] [blame] | 632 | showFactoryReset(false); |
Andy Stadler | 13d6204 | 2011-01-31 19:21:37 -0800 | [diff] [blame] | 633 | return; |
| 634 | } |
| 635 | |
Paul Lawrence | b15c68f | 2014-06-05 07:24:23 -0700 | [diff] [blame] | 636 | // Get status as percentage first |
| 637 | CharSequence status = getText(R.string.crypt_keeper_setup_description); |
| 638 | int percent = 0; |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 639 | try { |
Ben Komalo | 91a2f05 | 2011-08-16 17:48:25 -0700 | [diff] [blame] | 640 | // Force a 50% progress state when debugging the view. |
Paul Lawrence | b15c68f | 2014-06-05 07:24:23 -0700 | [diff] [blame] | 641 | percent = isDebugView() ? 50 : Integer.parseInt(state); |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 642 | } catch (Exception e) { |
| 643 | Log.w(TAG, "Error parsing progress: " + e.toString()); |
| 644 | } |
Paul Lawrence | b15c68f | 2014-06-05 07:24:23 -0700 | [diff] [blame] | 645 | String progress = Integer.toString(percent); |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 646 | |
Paul Lawrence | b15c68f | 2014-06-05 07:24:23 -0700 | [diff] [blame] | 647 | // Now try to get status as time remaining and replace as appropriate |
Ben Komalo | 0460675 | 2011-08-18 14:50:26 -0700 | [diff] [blame] | 648 | Log.v(TAG, "Encryption progress: " + progress); |
Paul Lawrence | b15c68f | 2014-06-05 07:24:23 -0700 | [diff] [blame] | 649 | try { |
| 650 | final String timeProperty = SystemProperties.get("vold.encrypt_time_remaining"); |
| 651 | int time = Integer.parseInt(timeProperty); |
| 652 | if (time >= 0) { |
| 653 | // Round up to multiple of 10 - this way display is less jerky |
| 654 | time = (time + 9) / 10 * 10; |
| 655 | progress = DateUtils.formatElapsedTime(time); |
| 656 | status = getText(R.string.crypt_keeper_setup_time_remaining); |
| 657 | } |
| 658 | } catch (Exception e) { |
| 659 | // Will happen if no time etc - show percentage |
| 660 | } |
| 661 | |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 662 | final TextView tv = (TextView) findViewById(R.id.status); |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 663 | if (tv != null) { |
Paul Lawrence | b15c68f | 2014-06-05 07:24:23 -0700 | [diff] [blame] | 664 | tv.setText(TextUtils.expandTemplate(status, progress)); |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 665 | } |
Paul Lawrence | b15c68f | 2014-06-05 07:24:23 -0700 | [diff] [blame] | 666 | |
| 667 | // Check the progress every 1 seconds |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 668 | mHandler.removeMessages(MESSAGE_UPDATE_PROGRESS); |
Paul Lawrence | b15c68f | 2014-06-05 07:24:23 -0700 | [diff] [blame] | 669 | mHandler.sendEmptyMessageDelayed(MESSAGE_UPDATE_PROGRESS, 1000); |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 670 | } |
| 671 | |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 672 | /** Insist on a power cycle to force the user to waste time between retries. |
| 673 | * |
| 674 | * Call setBackFunctionality(false) before calling this. */ |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 675 | private void cooldown() { |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 676 | // Disable the password entry. |
| 677 | if (mPasswordEntry != null) { |
| 678 | mPasswordEntry.setEnabled(false); |
Jason parks | f821730 | 2011-01-26 13:11:42 -0600 | [diff] [blame] | 679 | } |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 680 | if (mLockPatternView != null) { |
| 681 | mLockPatternView.setEnabled(false); |
| 682 | } |
| 683 | |
| 684 | final TextView status = (TextView) findViewById(R.id.status); |
| 685 | status.setText(R.string.crypt_keeper_force_power_cycle); |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 686 | } |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 687 | |
Vikram Aggarwal | bf459da | 2012-11-08 16:54:59 -0800 | [diff] [blame] | 688 | /** |
| 689 | * Sets the back status: enabled or disabled according to the parameter. |
| 690 | * @param isEnabled true if back is enabled, false otherwise. |
| 691 | */ |
| 692 | private final void setBackFunctionality(boolean isEnabled) { |
Vikram Aggarwal | bf459da | 2012-11-08 16:54:59 -0800 | [diff] [blame] | 693 | if (isEnabled) { |
| 694 | mStatusBar.disable(sWidgetsToDisable); |
| 695 | } else { |
| 696 | mStatusBar.disable(sWidgetsToDisable | StatusBarManager.DISABLE_BACK); |
| 697 | } |
| 698 | } |
| 699 | |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 700 | private void fakeUnlockAttempt(View postingView) { |
| 701 | beginAttempt(); |
| 702 | postingView.postDelayed(mFakeUnlockAttemptRunnable, FAKE_ATTEMPT_DELAY); |
| 703 | } |
| 704 | |
Paul Lawrence | b05f39d | 2014-02-04 10:22:19 -0800 | [diff] [blame] | 705 | protected LockPatternView.OnPatternListener mChooseNewLockPatternListener = |
Paul Lawrence | f6cda3b | 2014-06-12 08:26:08 -0700 | [diff] [blame] | 706 | new LockPatternView.OnPatternListener() { |
Paul Lawrence | b05f39d | 2014-02-04 10:22:19 -0800 | [diff] [blame] | 707 | |
Paul Lawrence | f6cda3b | 2014-06-12 08:26:08 -0700 | [diff] [blame] | 708 | @Override |
| 709 | public void onPatternStart() { |
| 710 | mLockPatternView.removeCallbacks(mClearPatternRunnable); |
| 711 | } |
Paul Lawrence | b05f39d | 2014-02-04 10:22:19 -0800 | [diff] [blame] | 712 | |
Paul Lawrence | f6cda3b | 2014-06-12 08:26:08 -0700 | [diff] [blame] | 713 | @Override |
| 714 | public void onPatternCleared() { |
| 715 | } |
Paul Lawrence | b05f39d | 2014-02-04 10:22:19 -0800 | [diff] [blame] | 716 | |
Paul Lawrence | f6cda3b | 2014-06-12 08:26:08 -0700 | [diff] [blame] | 717 | @Override |
| 718 | public void onPatternDetected(List<LockPatternView.Cell> pattern) { |
| 719 | mLockPatternView.setEnabled(false); |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 720 | if (pattern.size() >= MIN_LENGTH_BEFORE_REPORT) { |
| 721 | new DecryptTask().execute(LockPatternUtils.patternToString(pattern)); |
| 722 | } else { |
| 723 | // Allow user to make as many of these as they want. |
| 724 | fakeUnlockAttempt(mLockPatternView); |
| 725 | } |
Paul Lawrence | f6cda3b | 2014-06-12 08:26:08 -0700 | [diff] [blame] | 726 | } |
Paul Lawrence | b05f39d | 2014-02-04 10:22:19 -0800 | [diff] [blame] | 727 | |
Paul Lawrence | f6cda3b | 2014-06-12 08:26:08 -0700 | [diff] [blame] | 728 | @Override |
| 729 | public void onPatternCellAdded(List<Cell> pattern) { |
| 730 | } |
Paul Lawrence | b05f39d | 2014-02-04 10:22:19 -0800 | [diff] [blame] | 731 | }; |
| 732 | |
| 733 | private void passwordEntryInit() { |
| 734 | // Password/pin case |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 735 | mPasswordEntry = (EditText) findViewById(R.id.passwordEntry); |
Paul Lawrence | b05f39d | 2014-02-04 10:22:19 -0800 | [diff] [blame] | 736 | if (mPasswordEntry != null){ |
| 737 | mPasswordEntry.setOnEditorActionListener(this); |
| 738 | mPasswordEntry.requestFocus(); |
| 739 | // Become quiet when the user interacts with the Edit text screen. |
| 740 | mPasswordEntry.setOnKeyListener(this); |
| 741 | mPasswordEntry.setOnTouchListener(this); |
| 742 | mPasswordEntry.addTextChangedListener(this); |
| 743 | } |
| 744 | |
| 745 | // Pattern case |
| 746 | mLockPatternView = (LockPatternView) findViewById(R.id.lockPattern); |
| 747 | if (mLockPatternView != null) { |
| 748 | mLockPatternView.setOnPatternListener(mChooseNewLockPatternListener); |
| 749 | } |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 750 | |
Vikram Aggarwal | c62d321 | 2012-05-02 16:29:10 -0700 | [diff] [blame] | 751 | // Disable the Emergency call button if the device has no voice telephone capability |
Santos Cordon | 3afbdf0 | 2014-05-29 21:48:16 -0700 | [diff] [blame] | 752 | if (!getTelephonyManager().isVoiceCapable()) { |
Vikram Aggarwal | c62d321 | 2012-05-02 16:29:10 -0700 | [diff] [blame] | 753 | final View emergencyCall = findViewById(R.id.emergencyCallButton); |
| 754 | if (emergencyCall != null) { |
| 755 | Log.d(TAG, "Removing the emergency Call button"); |
| 756 | emergencyCall.setVisibility(View.GONE); |
| 757 | } |
| 758 | } |
| 759 | |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 760 | final View imeSwitcher = findViewById(R.id.switch_ime_button); |
Ben Komalo | 9fcb6a7 | 2011-08-26 14:40:18 -0700 | [diff] [blame] | 761 | final InputMethodManager imm = (InputMethodManager) getSystemService( |
| 762 | Context.INPUT_METHOD_SERVICE); |
| 763 | if (imeSwitcher != null && hasMultipleEnabledIMEsOrSubtypes(imm, false)) { |
| 764 | imeSwitcher.setVisibility(View.VISIBLE); |
| 765 | imeSwitcher.setOnClickListener(new OnClickListener() { |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 766 | @Override |
Ben Komalo | 9fcb6a7 | 2011-08-26 14:40:18 -0700 | [diff] [blame] | 767 | public void onClick(View v) { |
Seigo Nonaka | e792729 | 2015-05-04 17:31:00 -0700 | [diff] [blame] | 768 | imm.showInputMethodPicker(false /* showAuxiliarySubtypes */); |
Ben Komalo | 9fcb6a7 | 2011-08-26 14:40:18 -0700 | [diff] [blame] | 769 | } |
| 770 | }); |
Jason parks | 00046d6 | 2011-06-13 17:38:45 -0500 | [diff] [blame] | 771 | } |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 772 | |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 773 | // We want to keep the screen on while waiting for input. In minimal boot mode, the device |
| 774 | // is completely non-functional, and we want the user to notice the device and enter a |
| 775 | // password. |
| 776 | if (mWakeLock == null) { |
| 777 | Log.d(TAG, "Acquiring wakelock."); |
| 778 | final PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE); |
| 779 | if (pm != null) { |
| 780 | mWakeLock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK, TAG); |
| 781 | mWakeLock.acquire(); |
Paul Lawrence | 73456ac | 2014-05-16 07:56:04 -0700 | [diff] [blame] | 782 | // Keep awake for 10 minutes - if the user hasn't been alerted by then |
| 783 | // best not to just drain their battery |
Paul Lawrence | 5a70f05 | 2014-06-13 11:09:55 -0700 | [diff] [blame] | 784 | mReleaseWakeLockCountdown = 96; // 96 * 5 secs per click + 120 secs before we show this = 600 |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 785 | } |
| 786 | } |
Paul Lawrence | 73456ac | 2014-05-16 07:56:04 -0700 | [diff] [blame] | 787 | |
Ben Komalo | 9fcb6a7 | 2011-08-26 14:40:18 -0700 | [diff] [blame] | 788 | // Asynchronously throw up the IME, since there are issues with requesting it to be shown |
| 789 | // immediately. |
Paul Crowley | 51e0811 | 2014-11-12 12:06:38 +0000 | [diff] [blame] | 790 | if (mLockPatternView == null && !mCooldown) { |
Paul Lawrence | e54e932 | 2014-03-13 14:05:48 -0700 | [diff] [blame] | 791 | mHandler.postDelayed(new Runnable() { |
| 792 | @Override public void run() { |
| 793 | imm.showSoftInputUnchecked(0, null); |
| 794 | } |
| 795 | }, 0); |
| 796 | } |
Ben Komalo | 9fcb6a7 | 2011-08-26 14:40:18 -0700 | [diff] [blame] | 797 | |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 798 | updateEmergencyCallButtonState(); |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 799 | // Notify the user in 120 seconds that we are waiting for him to enter the password. |
Vikram Aggarwal | 86b9393 | 2012-05-01 16:46:06 -0700 | [diff] [blame] | 800 | mHandler.removeMessages(MESSAGE_NOTIFY); |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 801 | mHandler.sendEmptyMessageDelayed(MESSAGE_NOTIFY, 120 * 1000); |
Jim Miller | fb3d5ca | 2013-11-14 14:40:22 -0800 | [diff] [blame] | 802 | |
John Spurlock | 2c52651 | 2014-09-17 12:55:17 -0400 | [diff] [blame] | 803 | // Dismiss secure & non-secure keyguards while this screen is showing. |
| 804 | getWindow().addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD |
| 805 | | WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED); |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 806 | } |
| 807 | |
Ben Komalo | 9fcb6a7 | 2011-08-26 14:40:18 -0700 | [diff] [blame] | 808 | /** |
| 809 | * Method adapted from com.android.inputmethod.latin.Utils |
| 810 | * |
| 811 | * @param imm The input method manager |
| 812 | * @param shouldIncludeAuxiliarySubtypes |
| 813 | * @return true if we have multiple IMEs to choose from |
| 814 | */ |
| 815 | private boolean hasMultipleEnabledIMEsOrSubtypes(InputMethodManager imm, |
| 816 | final boolean shouldIncludeAuxiliarySubtypes) { |
| 817 | final List<InputMethodInfo> enabledImis = imm.getEnabledInputMethodList(); |
| 818 | |
| 819 | // Number of the filtered IMEs |
| 820 | int filteredImisCount = 0; |
| 821 | |
| 822 | for (InputMethodInfo imi : enabledImis) { |
| 823 | // We can return true immediately after we find two or more filtered IMEs. |
| 824 | if (filteredImisCount > 1) return true; |
| 825 | final List<InputMethodSubtype> subtypes = |
| 826 | imm.getEnabledInputMethodSubtypeList(imi, true); |
| 827 | // IMEs that have no subtypes should be counted. |
| 828 | if (subtypes.isEmpty()) { |
| 829 | ++filteredImisCount; |
| 830 | continue; |
| 831 | } |
| 832 | |
| 833 | int auxCount = 0; |
| 834 | for (InputMethodSubtype subtype : subtypes) { |
| 835 | if (subtype.isAuxiliary()) { |
| 836 | ++auxCount; |
| 837 | } |
| 838 | } |
| 839 | final int nonAuxCount = subtypes.size() - auxCount; |
| 840 | |
| 841 | // IMEs that have one or more non-auxiliary subtypes should be counted. |
| 842 | // If shouldIncludeAuxiliarySubtypes is true, IMEs that have two or more auxiliary |
| 843 | // subtypes should be counted as well. |
| 844 | if (nonAuxCount > 0 || (shouldIncludeAuxiliarySubtypes && auxCount > 1)) { |
| 845 | ++filteredImisCount; |
| 846 | continue; |
| 847 | } |
| 848 | } |
| 849 | |
| 850 | return filteredImisCount > 1 |
| 851 | // imm.getEnabledInputMethodSubtypeList(null, false) will return the current IME's enabled |
| 852 | // input method subtype (The current IME should be LatinIME.) |
| 853 | || imm.getEnabledInputMethodSubtypeList(null, false).size() > 1; |
| 854 | } |
| 855 | |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 856 | private IMountService getMountService() { |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 857 | final IBinder service = ServiceManager.getService("mount"); |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 858 | if (service != null) { |
| 859 | return IMountService.Stub.asInterface(service); |
| 860 | } |
| 861 | return null; |
| 862 | } |
| 863 | |
| 864 | @Override |
| 865 | public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { |
Jason parks | 00046d6 | 2011-06-13 17:38:45 -0500 | [diff] [blame] | 866 | if (actionId == EditorInfo.IME_NULL || actionId == EditorInfo.IME_ACTION_DONE) { |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 867 | // Get the password |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 868 | final String password = v.getText().toString(); |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 869 | |
Jason parks | ec5a45e | 2011-01-18 15:28:36 -0600 | [diff] [blame] | 870 | if (TextUtils.isEmpty(password)) { |
| 871 | return true; |
| 872 | } |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 873 | |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 874 | // Now that we have the password clear the password field. |
| 875 | v.setText(null); |
| 876 | |
Vikram Aggarwal | de3c9cb | 2012-05-01 15:37:30 -0700 | [diff] [blame] | 877 | // Disable the password entry and back keypress while checking the password. These |
| 878 | // we either be re-enabled if the password was wrong or after the cooldown period. |
Jason parks | 06c5ff4 | 2011-03-01 10:17:40 -0600 | [diff] [blame] | 879 | mPasswordEntry.setEnabled(false); |
Vikram Aggarwal | bf459da | 2012-11-08 16:54:59 -0800 | [diff] [blame] | 880 | setBackFunctionality(false); |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 881 | |
Paul Crowley | 2555e5f | 2014-11-07 00:52:57 -0800 | [diff] [blame] | 882 | if (password.length() >= LockPatternUtils.MIN_LOCK_PATTERN_SIZE) { |
| 883 | new DecryptTask().execute(password); |
| 884 | } else { |
| 885 | // Allow user to make as many of these as they want. |
| 886 | fakeUnlockAttempt(mPasswordEntry); |
| 887 | } |
Jason parks | 3593381 | 2011-01-21 15:48:20 -0600 | [diff] [blame] | 888 | |
Jason parks | 8fd5bc9 | 2011-01-12 16:03:31 -0600 | [diff] [blame] | 889 | return true; |
| 890 | } |
| 891 | return false; |
| 892 | } |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 893 | |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 894 | /** |
Vikram Aggarwal | ea1186d | 2012-05-03 15:35:03 -0700 | [diff] [blame] | 895 | * Set airplane mode on the device if it isn't an LTE device. |
| 896 | * Full story: In minimal boot mode, we cannot save any state. In particular, we cannot save |
| 897 | * any incoming SMS's. So SMSs that are received here will be silently dropped to the floor. |
| 898 | * That is bad. Also, we cannot receive any telephone calls in this state. So to avoid |
| 899 | * both these problems, we turn the radio off. However, on certain networks turning on and |
| 900 | * off the radio takes a long time. In such cases, we are better off leaving the radio |
| 901 | * running so the latency of an E911 call is short. |
| 902 | * The behavior after this is: |
| 903 | * 1. Emergency dialing: the emergency dialer has logic to force the device out of |
| 904 | * airplane mode and restart the radio. |
| 905 | * 2. Full boot: we read the persistent settings from the previous boot and restore the |
| 906 | * radio to whatever it was before it restarted. This also happens when rebooting a |
| 907 | * phone that has no encryption. |
| 908 | */ |
| 909 | private final void setAirplaneModeIfNecessary() { |
| 910 | final boolean isLteDevice = |
Santos Cordon | 3afbdf0 | 2014-05-29 21:48:16 -0700 | [diff] [blame] | 911 | getTelephonyManager().getLteOnCdmaMode() == PhoneConstants.LTE_ON_CDMA_TRUE; |
Vikram Aggarwal | ea1186d | 2012-05-03 15:35:03 -0700 | [diff] [blame] | 912 | if (!isLteDevice) { |
| 913 | Log.d(TAG, "Going into airplane mode."); |
Christopher Tate | 6a5929b | 2012-09-10 15:39:05 -0700 | [diff] [blame] | 914 | Settings.Global.putInt(getContentResolver(), Settings.Global.AIRPLANE_MODE_ON, 1); |
Vikram Aggarwal | ea1186d | 2012-05-03 15:35:03 -0700 | [diff] [blame] | 915 | final Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED); |
| 916 | intent.putExtra("state", true); |
Christopher Tate | 6a5929b | 2012-09-10 15:39:05 -0700 | [diff] [blame] | 917 | sendBroadcastAsUser(intent, UserHandle.ALL); |
Vikram Aggarwal | ea1186d | 2012-05-03 15:35:03 -0700 | [diff] [blame] | 918 | } |
| 919 | } |
| 920 | |
| 921 | /** |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 922 | * Code to update the state of, and handle clicks from, the "Emergency call" button. |
| 923 | * |
| 924 | * This code is mostly duplicated from the corresponding code in |
| 925 | * LockPatternUtils and LockPatternKeyguardView under frameworks/base. |
| 926 | */ |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 927 | private void updateEmergencyCallButtonState() { |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 928 | final Button emergencyCall = (Button) findViewById(R.id.emergencyCallButton); |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 929 | // The button isn't present at all in some configurations. |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 930 | if (emergencyCall == null) |
| 931 | return; |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 932 | |
| 933 | if (isEmergencyCallCapable()) { |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 934 | emergencyCall.setVisibility(View.VISIBLE); |
| 935 | emergencyCall.setOnClickListener(new View.OnClickListener() { |
| 936 | @Override |
| 937 | |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 938 | public void onClick(View v) { |
| 939 | takeEmergencyCallAction(); |
| 940 | } |
| 941 | }); |
| 942 | } else { |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 943 | emergencyCall.setVisibility(View.GONE); |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 944 | return; |
| 945 | } |
| 946 | |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 947 | int textId; |
Tyler Gunn | 3e71b19 | 2014-09-10 15:21:33 -0700 | [diff] [blame] | 948 | if (getTelecomManager().isInCall()) { |
Paul Lawrence | 89c7570 | 2014-07-11 07:34:44 -0700 | [diff] [blame] | 949 | // Show "return to call" |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 950 | textId = R.string.cryptkeeper_return_to_call; |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 951 | } else { |
| 952 | textId = R.string.cryptkeeper_emergency_call; |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 953 | } |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 954 | emergencyCall.setText(textId); |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 955 | } |
| 956 | |
| 957 | private boolean isEmergencyCallCapable() { |
| 958 | return getResources().getBoolean(com.android.internal.R.bool.config_voice_capable); |
| 959 | } |
| 960 | |
| 961 | private void takeEmergencyCallAction() { |
Tyler Gunn | 3e71b19 | 2014-09-10 15:21:33 -0700 | [diff] [blame] | 962 | TelecomManager telecomManager = getTelecomManager(); |
| 963 | if (telecomManager.isInCall()) { |
| 964 | telecomManager.showInCallScreen(false /* showDialpad */); |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 965 | } else { |
| 966 | launchEmergencyDialer(); |
| 967 | } |
| 968 | } |
| 969 | |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 970 | |
| 971 | private void launchEmergencyDialer() { |
Vikram Aggarwal | bfa3a64 | 2012-03-29 14:07:22 -0700 | [diff] [blame] | 972 | final Intent intent = new Intent(ACTION_EMERGENCY_DIAL); |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 973 | intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
| 974 | | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS); |
Paul Lawrence | 5a70f05 | 2014-06-13 11:09:55 -0700 | [diff] [blame] | 975 | setBackFunctionality(true); |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 976 | startActivity(intent); |
| 977 | } |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 978 | |
Santos Cordon | 3afbdf0 | 2014-05-29 21:48:16 -0700 | [diff] [blame] | 979 | private TelephonyManager getTelephonyManager() { |
| 980 | return (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); |
| 981 | } |
| 982 | |
Tyler Gunn | 3e71b19 | 2014-09-10 15:21:33 -0700 | [diff] [blame] | 983 | private TelecomManager getTelecomManager() { |
| 984 | return (TelecomManager) getSystemService(Context.TELECOM_SERVICE); |
Santos Cordon | 35230e9 | 2014-07-07 16:25:10 -0700 | [diff] [blame] | 985 | } |
| 986 | |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 987 | /** |
| 988 | * Listen to key events so we can disable sounds when we get a keyinput in EditText. |
| 989 | */ |
| 990 | private void delayAudioNotification() { |
Vikram Aggarwal | d114725 | 2012-05-08 13:52:30 -0700 | [diff] [blame] | 991 | mNotificationCountdown = 20; |
| 992 | } |
| 993 | |
| 994 | @Override |
| 995 | public boolean onKey(View v, int keyCode, KeyEvent event) { |
| 996 | delayAudioNotification(); |
| 997 | return false; |
| 998 | } |
| 999 | |
| 1000 | @Override |
| 1001 | public boolean onTouch(View v, MotionEvent event) { |
| 1002 | delayAudioNotification(); |
| 1003 | return false; |
| 1004 | } |
| 1005 | |
| 1006 | @Override |
| 1007 | public void beforeTextChanged(CharSequence s, int start, int count, int after) { |
| 1008 | return; |
| 1009 | } |
| 1010 | |
| 1011 | @Override |
| 1012 | public void onTextChanged(CharSequence s, int start, int before, int count) { |
| 1013 | delayAudioNotification(); |
| 1014 | } |
| 1015 | |
| 1016 | @Override |
| 1017 | public void afterTextChanged(Editable s) { |
| 1018 | return; |
| 1019 | } |
Fyodor Kupolov | 1b5cc42 | 2014-12-08 16:13:11 -0800 | [diff] [blame] | 1020 | |
| 1021 | private static void disableCryptKeeperComponent(Context context) { |
| 1022 | PackageManager pm = context.getPackageManager(); |
| 1023 | ComponentName name = new ComponentName(context, CryptKeeper.class); |
| 1024 | Log.d(TAG, "Disabling component " + name); |
Paul Lawrence | ae4a557 | 2015-09-19 02:29:37 +0000 | [diff] [blame] | 1025 | pm.setComponentEnabledSetting(name, PackageManager.COMPONENT_ENABLED_STATE_DISABLED, |
| 1026 | PackageManager.DONT_KILL_APP); |
Fyodor Kupolov | 1b5cc42 | 2014-12-08 16:13:11 -0800 | [diff] [blame] | 1027 | } |
David Brown | 8373b45 | 2011-06-20 12:38:45 -0700 | [diff] [blame] | 1028 | } |