blob: 7e75ee27851c4a78740b43211f65095eb15b2f72 [file] [log] [blame]
Jason parks8fd5bc92011-01-12 16:03:31 -06001/*
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
17package com.android.settings;
18
Jason parks8fd5bc92011-01-12 16:03:31 -060019import android.app.Activity;
20import android.app.StatusBarManager;
21import android.content.ComponentName;
22import android.content.Context;
Jason parksec5a45e2011-01-18 15:28:36 -060023import android.content.Intent;
Paul Lawrence7ae20e32014-07-22 15:00:50 -070024import android.content.pm.ActivityInfo;
Jason parks8fd5bc92011-01-12 16:03:31 -060025import android.content.pm.PackageManager;
Paul Lawrence7ae20e32014-07-22 15:00:50 -070026import android.content.res.Resources.NotFoundException;
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -070027import android.media.AudioManager;
Jason parks06c5ff42011-03-01 10:17:40 -060028import android.os.AsyncTask;
Jason parks8fd5bc92011-01-12 16:03:31 -060029import android.os.Bundle;
Jason parksec5a45e2011-01-18 15:28:36 -060030import android.os.Handler;
Jason parks8fd5bc92011-01-12 16:03:31 -060031import android.os.IBinder;
Jason parksec5a45e2011-01-18 15:28:36 -060032import android.os.Message;
Jason parks35933812011-01-21 15:48:20 -060033import android.os.PowerManager;
David Brown8373b452011-06-20 12:38:45 -070034import android.os.RemoteException;
Jason parks8fd5bc92011-01-12 16:03:31 -060035import android.os.ServiceManager;
Christopher Tate6a5929b2012-09-10 15:39:05 -070036import android.os.UserHandle;
Sudheer Shankaee2d5922016-11-09 15:47:53 -080037import android.os.storage.IStorageManager;
Paul Lawrenceb05f39d2014-02-04 10:22:19 -080038import android.os.storage.StorageManager;
Vikram Aggarwal6ebbd302012-05-04 14:09:52 -070039import android.provider.Settings;
Inseob Kima1aeeb22018-11-08 12:44:47 +090040import android.sysprop.VoldProperties;
Tyler Gunn3e71b192014-09-10 15:21:33 -070041import android.telecom.TelecomManager;
David Brown8373b452011-06-20 12:38:45 -070042import android.telephony.TelephonyManager;
Vikram Aggarwald1147252012-05-08 13:52:30 -070043import android.text.Editable;
Jason parksec5a45e2011-01-18 15:28:36 -060044import android.text.TextUtils;
Vikram Aggarwald1147252012-05-08 13:52:30 -070045import android.text.TextWatcher;
Paul Lawrenceb15c68f2014-06-05 07:24:23 -070046import android.text.format.DateUtils;
Jason parks8fd5bc92011-01-12 16:03:31 -060047import android.util.Log;
48import android.view.KeyEvent;
Vikram Aggarwald1147252012-05-08 13:52:30 -070049import android.view.MotionEvent;
Andy Stadler13d62042011-01-31 19:21:37 -080050import android.view.View;
51import android.view.View.OnClickListener;
Vikram Aggarwald1147252012-05-08 13:52:30 -070052import android.view.View.OnKeyListener;
53import android.view.View.OnTouchListener;
Fyodor Kupolov19280af2015-01-27 11:59:00 -080054import android.view.WindowManager;
Jason parks8fd5bc92011-01-12 16:03:31 -060055import android.view.inputmethod.EditorInfo;
Ben Komalo9fcb6a72011-08-26 14:40:18 -070056import android.view.inputmethod.InputMethodInfo;
Jason parks75c085e2011-02-10 14:03:47 -060057import android.view.inputmethod.InputMethodManager;
Ben Komalo9fcb6a72011-08-26 14:40:18 -070058import android.view.inputmethod.InputMethodSubtype;
Andy Stadler13d62042011-01-31 19:21:37 -080059import android.widget.Button;
Kevin Chyn1895f8b2020-04-28 15:41:37 -070060import android.widget.ImeAwareEditText;
Jason parksec5a45e2011-01-18 15:28:36 -060061import android.widget.ProgressBar;
Jason parks8fd5bc92011-01-12 16:03:31 -060062import android.widget.TextView;
63
Paul Lawrenceb05f39d2014-02-04 10:22:19 -080064import com.android.internal.widget.LockPatternUtils;
65import com.android.internal.widget.LockPatternView;
66import com.android.internal.widget.LockPatternView.Cell;
Jason Monk39b46742015-09-10 15:52:51 -040067import com.android.internal.widget.LockPatternView.DisplayMode;
Ben Komalo9fcb6a72011-08-26 14:40:18 -070068
69import java.util.List;
Ben Komalo91a2f052011-08-16 17:48:25 -070070
71/**
72 * Settings screens to show the UI flows for encrypting/decrypting the device.
73 *
74 * This may be started via adb for debugging the UI layout, without having to go through
75 * encryption flows everytime. It should be noted that starting the activity in this manner
76 * is only useful for verifying UI-correctness - the behavior will not be identical.
77 * <pre>
78 * $ adb shell pm enable com.android.settings/.CryptKeeper
79 * $ adb shell am start \
80 * -e "com.android.settings.CryptKeeper.DEBUG_FORCE_VIEW" "progress" \
81 * -n com.android.settings/.CryptKeeper
82 * </pre>
83 */
Vikram Aggarwald1147252012-05-08 13:52:30 -070084public class CryptKeeper extends Activity implements TextView.OnEditorActionListener,
85 OnKeyListener, OnTouchListener, TextWatcher {
Jason parksec5a45e2011-01-18 15:28:36 -060086 private static final String TAG = "CryptKeeper";
Jason parks35933812011-01-21 15:48:20 -060087
Jason parks8fd5bc92011-01-12 16:03:31 -060088 private static final String DECRYPT_STATE = "trigger_restart_framework";
Paul Crowley51e08112014-11-12 12:06:38 +000089
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -070090 /** Message sent to us to indicate encryption update progress. */
91 private static final int MESSAGE_UPDATE_PROGRESS = 1;
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -070092 /** Message sent to us to indicate alerting the user that we are waiting for password entry */
Paul Crowley51e08112014-11-12 12:06:38 +000093 private static final int MESSAGE_NOTIFY = 2;
Jason parksec5a45e2011-01-18 15:28:36 -060094
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -070095 // Constants used to control policy.
Paul Crowley13b8b562014-11-21 09:43:17 +000096 private static final int MAX_FAILED_ATTEMPTS = 30;
Jason parksec5a45e2011-01-18 15:28:36 -060097 private static final int COOL_DOWN_ATTEMPTS = 10;
Jason parksec5a45e2011-01-18 15:28:36 -060098
David Brown8373b452011-06-20 12:38:45 -070099 // Intent action for launching the Emergency Dialer activity.
100 static final String ACTION_EMERGENCY_DIAL = "com.android.phone.EmergencyDialer.DIAL";
101
Ben Komalo91a2f052011-08-16 17:48:25 -0700102 // Debug Intent extras so that this Activity may be started via adb for debugging UI layouts
103 private static final String EXTRA_FORCE_VIEW =
104 "com.android.settings.CryptKeeper.DEBUG_FORCE_VIEW";
105 private static final String FORCE_VIEW_PROGRESS = "progress";
Ben Komalo91a2f052011-08-16 17:48:25 -0700106 private static final String FORCE_VIEW_ERROR = "error";
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700107 private static final String FORCE_VIEW_PASSWORD = "password";
Ben Komalo91a2f052011-08-16 17:48:25 -0700108
Paul Lawrence27841042015-11-24 12:42:09 -0800109 private static final String STATE_COOLDOWN = "cooldown";
110
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700111 /** When encryption is detected, this flag indicates whether or not we've checked for errors. */
Ben Komalo0e666092011-09-01 15:42:00 -0700112 private boolean mValidationComplete;
Ben Komalod4758ef2011-09-08 14:36:08 -0700113 private boolean mValidationRequested;
Ben Komalo0e666092011-09-01 15:42:00 -0700114 /** A flag to indicate that the volume is in a bad state (e.g. partially encrypted). */
115 private boolean mEncryptionGoneBad;
Paul Lawrence87abbd32014-08-28 15:56:38 -0700116 /** If gone bad, should we show encryption failed (false) or corrupt (true)*/
117 private boolean mCorrupt;
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700118 /** A flag to indicate when the back event should be ignored */
Paul Crowley51e08112014-11-12 12:06:38 +0000119 /** When set, blocks unlocking. Set every COOL_DOWN_ATTEMPTS attempts, only cleared
120 by power cycling phone. */
121 private boolean mCooldown = false;
122
Andy Stadler14997402011-02-01 15:34:59 -0800123 PowerManager.WakeLock mWakeLock;
Yohei Yukawaf6af0932017-03-21 12:38:44 -0700124 private ImeAwareEditText mPasswordEntry;
Paul Lawrenceb05f39d2014-02-04 10:22:19 -0800125 private LockPatternView mLockPatternView;
Vikram Aggarwald1147252012-05-08 13:52:30 -0700126 /** Number of calls to {@link #notifyUser()} to ignore before notifying. */
127 private int mNotificationCountdown = 0;
Paul Lawrence73456ac2014-05-16 07:56:04 -0700128 /** Number of calls to {@link #notifyUser()} before we release the wakelock */
129 private int mReleaseWakeLockCountdown = 0;
Paul Lawrence5a70f052014-06-13 11:09:55 -0700130 private int mStatusString = R.string.enter_password;
Andy Stadler14997402011-02-01 15:34:59 -0800131
Paul Lawrencef6cda3b2014-06-12 08:26:08 -0700132 // how long we wait to clear a wrong pattern
133 private static final int WRONG_PATTERN_CLEAR_TIMEOUT_MS = 1500;
134
Paul Lawrence0f11e152014-08-20 07:43:32 -0700135 // how long we wait to clear a right pattern
136 private static final int RIGHT_PATTERN_CLEAR_TIMEOUT_MS = 500;
137
Paul Crowley2555e5f2014-11-07 00:52:57 -0800138 // When the user enters a short pin/password, run this to show an error,
139 // but don't count it against attempts.
140 private final Runnable mFakeUnlockAttemptRunnable = new Runnable() {
Paul Crowley51e08112014-11-12 12:06:38 +0000141 @Override
Paul Crowley2555e5f2014-11-07 00:52:57 -0800142 public void run() {
143 handleBadAttempt(1 /* failedAttempt */);
144 }
145 };
146
147 // TODO: this should be tuned to match minimum decryption timeout
148 private static final int FAKE_ATTEMPT_DELAY = 1000;
149
150 private final Runnable mClearPatternRunnable = new Runnable() {
Paul Crowley529834d2014-10-21 10:12:47 +0100151 @Override
Paul Lawrencef6cda3b2014-06-12 08:26:08 -0700152 public void run() {
153 mLockPatternView.clearPattern();
154 }
155 };
156
Andy Stadler14997402011-02-01 15:34:59 -0800157 /**
158 * Used to propagate state through configuration changes (e.g. screen rotation)
159 */
160 private static class NonConfigurationInstanceState {
161 final PowerManager.WakeLock wakelock;
162
163 NonConfigurationInstanceState(PowerManager.WakeLock _wakelock) {
164 wakelock = _wakelock;
165 }
166 }
167
Jason parks06c5ff42011-03-01 10:17:40 -0600168 private class DecryptTask extends AsyncTask<String, Void, Integer> {
Paul Lawrenceced7db42014-09-18 11:23:40 -0700169 private void hide(int id) {
170 View view = findViewById(id);
171 if (view != null) {
172 view.setVisibility(View.GONE);
173 }
174 }
175
Jason parks06c5ff42011-03-01 10:17:40 -0600176 @Override
Paul Crowley529834d2014-10-21 10:12:47 +0100177 protected void onPreExecute() {
178 super.onPreExecute();
Paul Crowley2555e5f2014-11-07 00:52:57 -0800179 beginAttempt();
Paul Crowley529834d2014-10-21 10:12:47 +0100180 }
181
182 @Override
Jason parks06c5ff42011-03-01 10:17:40 -0600183 protected Integer doInBackground(String... params) {
Sudheer Shankaee2d5922016-11-09 15:47:53 -0800184 final IStorageManager service = getStorageManager();
Jason parks06c5ff42011-03-01 10:17:40 -0600185 try {
186 return service.decryptStorage(params[0]);
187 } catch (Exception e) {
188 Log.e(TAG, "Error while decrypting...", e);
189 return -1;
190 }
191 }
192
193 @Override
194 protected void onPostExecute(Integer failedAttempts) {
195 if (failedAttempts == 0) {
Paul Lawrence89c75702014-07-11 07:34:44 -0700196 // The password was entered successfully. Simply do nothing
197 // and wait for the service restart to switch to surfacefligner
Paul Lawrence0f11e152014-08-20 07:43:32 -0700198 if (mLockPatternView != null) {
199 mLockPatternView.removeCallbacks(mClearPatternRunnable);
200 mLockPatternView.postDelayed(mClearPatternRunnable, RIGHT_PATTERN_CLEAR_TIMEOUT_MS);
201 }
Paul Crowley529834d2014-10-21 10:12:47 +0100202 final TextView status = (TextView) findViewById(R.id.status);
203 status.setText(R.string.starting_android);
Paul Lawrenceced7db42014-09-18 11:23:40 -0700204 hide(R.id.passwordEntry);
205 hide(R.id.switch_ime_button);
206 hide(R.id.lockPattern);
Paul Lawrenceced7db42014-09-18 11:23:40 -0700207 hide(R.id.owner_info);
208 hide(R.id.emergencyCallButton);
Jason parks06c5ff42011-03-01 10:17:40 -0600209 } else if (failedAttempts == MAX_FAILED_ATTEMPTS) {
210 // Factory reset the device.
Lenka Trochtova3393dac2017-02-13 15:05:27 +0100211 Intent intent = new Intent(Intent.ACTION_FACTORY_RESET);
Christopher Tate1e99f0c2017-01-25 14:46:48 -0800212 intent.setPackage("android");
Jeff Sharkey1de688d2014-09-24 13:57:07 -0700213 intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
214 intent.putExtra(Intent.EXTRA_REASON, "CryptKeeper.MAX_FAILED_ATTEMPTS");
215 sendBroadcast(intent);
Paul Lawrence384d8e52014-08-08 15:11:36 -0700216 } else if (failedAttempts == -1) {
217 // Right password, but decryption failed. Tell user bad news ...
218 setContentView(R.layout.crypt_keeper_progress);
219 showFactoryReset(true);
220 return;
Jason parks06c5ff42011-03-01 10:17:40 -0600221 } else {
Paul Crowley2555e5f2014-11-07 00:52:57 -0800222 handleBadAttempt(failedAttempts);
223 }
224 }
225 }
226
227 private void beginAttempt() {
228 final TextView status = (TextView) findViewById(R.id.status);
229 status.setText(R.string.checking_decryption);
230 }
231
232 private void handleBadAttempt(Integer failedAttempts) {
233 // Wrong entry. Handle pattern case.
234 if (mLockPatternView != null) {
235 mLockPatternView.setDisplayMode(DisplayMode.Wrong);
236 mLockPatternView.removeCallbacks(mClearPatternRunnable);
237 mLockPatternView.postDelayed(mClearPatternRunnable, WRONG_PATTERN_CLEAR_TIMEOUT_MS);
238 }
239 if ((failedAttempts % COOL_DOWN_ATTEMPTS) == 0) {
Paul Crowley51e08112014-11-12 12:06:38 +0000240 mCooldown = true;
241 // No need to setBackFunctionality(false) - it's already done
242 // at this point.
Paul Crowley2555e5f2014-11-07 00:52:57 -0800243 cooldown();
244 } else {
245 final TextView status = (TextView) findViewById(R.id.status);
246
247 int remainingAttempts = MAX_FAILED_ATTEMPTS - failedAttempts;
248 if (remainingAttempts < COOL_DOWN_ATTEMPTS) {
249 CharSequence warningTemplate = getText(R.string.crypt_keeper_warn_wipe);
250 CharSequence warning = TextUtils.expandTemplate(warningTemplate,
251 Integer.toString(remainingAttempts));
252 status.setText(warning);
253 } else {
254 int passwordType = StorageManager.CRYPT_TYPE_PASSWORD;
255 try {
Sudheer Shankaee2d5922016-11-09 15:47:53 -0800256 final IStorageManager service = getStorageManager();
Paul Crowley2555e5f2014-11-07 00:52:57 -0800257 passwordType = service.getPasswordType();
258 } catch (Exception e) {
259 Log.e(TAG, "Error calling mount service " + e);
Paul Lawrencef6cda3b2014-06-12 08:26:08 -0700260 }
Paul Crowley2555e5f2014-11-07 00:52:57 -0800261
262 if (passwordType == StorageManager.CRYPT_TYPE_PIN) {
263 status.setText(R.string.cryptkeeper_wrong_pin);
264 } else if (passwordType == StorageManager.CRYPT_TYPE_PATTERN) {
265 status.setText(R.string.cryptkeeper_wrong_pattern);
Paul Lawrencef6cda3b2014-06-12 08:26:08 -0700266 } else {
Paul Crowley2555e5f2014-11-07 00:52:57 -0800267 status.setText(R.string.cryptkeeper_wrong_password);
Paul Lawrence2daf2642014-03-14 09:20:24 -0700268 }
Jason parks06c5ff42011-03-01 10:17:40 -0600269 }
Paul Crowley2555e5f2014-11-07 00:52:57 -0800270
271 if (mLockPatternView != null) {
272 mLockPatternView.setDisplayMode(DisplayMode.Wrong);
273 mLockPatternView.setEnabled(true);
274 }
275
276 // Reenable the password entry
277 if (mPasswordEntry != null) {
278 mPasswordEntry.setEnabled(true);
Yohei Yukawaf6af0932017-03-21 12:38:44 -0700279 mPasswordEntry.scheduleShowSoftInput();
Paul Crowley2555e5f2014-11-07 00:52:57 -0800280 setBackFunctionality(true);
281 }
Jason parks06c5ff42011-03-01 10:17:40 -0600282 }
283 }
Jason parks75c085e2011-02-10 14:03:47 -0600284
Ben Komalo0e666092011-09-01 15:42:00 -0700285 private class ValidationTask extends AsyncTask<Void, Void, Boolean> {
Paul Lawrence87abbd32014-08-28 15:56:38 -0700286 int state;
287
Ben Komalo0e666092011-09-01 15:42:00 -0700288 @Override
289 protected Boolean doInBackground(Void... params) {
Sudheer Shankaee2d5922016-11-09 15:47:53 -0800290 final IStorageManager service = getStorageManager();
Ben Komalo0e666092011-09-01 15:42:00 -0700291 try {
Ben Komalod4758ef2011-09-08 14:36:08 -0700292 Log.d(TAG, "Validating encryption state.");
Paul Lawrence87abbd32014-08-28 15:56:38 -0700293 state = service.getEncryptionState();
Sudheer Shanka1d8da1d2016-10-19 11:10:26 -0700294 if (state == StorageManager.ENCRYPTION_STATE_NONE) {
Ben Komalo0e666092011-09-01 15:42:00 -0700295 Log.w(TAG, "Unexpectedly in CryptKeeper even though there is no encryption.");
296 return true; // Unexpected, but fine, I guess...
297 }
Sudheer Shanka1d8da1d2016-10-19 11:10:26 -0700298 return state == StorageManager.ENCRYPTION_STATE_OK;
Ben Komalo0e666092011-09-01 15:42:00 -0700299 } 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;
Sudheer Shanka1d8da1d2016-10-19 11:10:26 -0700311 mCorrupt = state == StorageManager.ENCRYPTION_STATE_ERROR_CORRUPT;
Ben Komalod4758ef2011-09-08 14:36:08 -0700312 } else {
313 Log.d(TAG, "Encryption state validated. Proceeding to configure UI");
Ben Komalo0e666092011-09-01 15:42:00 -0700314 }
315 setupUi();
316 }
317 }
318
Ben Komalo91a2f052011-08-16 17:48:25 -0700319 private final Handler mHandler = new Handler() {
Jason parksec5a45e2011-01-18 15:28:36 -0600320 @Override
321 public void handleMessage(Message msg) {
Jason parksec5a45e2011-01-18 15:28:36 -0600322 switch (msg.what) {
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700323 case MESSAGE_UPDATE_PROGRESS:
Jason parksf8217302011-01-26 13:11:42 -0600324 updateProgress();
Jason parksec5a45e2011-01-18 15:28:36 -0600325 break;
Jason parks35933812011-01-21 15:48:20 -0600326
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700327 case MESSAGE_NOTIFY:
328 notifyUser();
329 break;
Jason parksec5a45e2011-01-18 15:28:36 -0600330 }
331 }
332 };
Jason parks35933812011-01-21 15:48:20 -0600333
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700334 private AudioManager mAudioManager;
Vikram Aggarwalbf459da2012-11-08 16:54:59 -0800335 /** 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
Vikram Aggarwalbf459da2012-11-08 16:54:59 -0800342 | StatusBarManager.DISABLE_HOME
Alon Albert66d050b2013-09-30 17:08:12 -0700343 | StatusBarManager.DISABLE_SEARCH
Vikram Aggarwalbf459da2012-11-08 16:54:59 -0800344 | StatusBarManager.DISABLE_RECENT;
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700345
Paul Crowley2555e5f2014-11-07 00:52:57 -0800346 protected static final int MIN_LENGTH_BEFORE_REPORT = LockPatternUtils.MIN_LOCK_PATTERN_SIZE;
347
Ben Komalo91a2f052011-08-16 17:48:25 -0700348 /** @return whether or not this Activity was started for debugging the UI only. */
349 private boolean isDebugView() {
350 return getIntent().hasExtra(EXTRA_FORCE_VIEW);
351 }
352
353 /** @return whether or not this Activity was started for debugging the specific UI view only. */
354 private boolean isDebugView(String viewType /* non-nullable */) {
355 return viewType.equals(getIntent().getStringExtra(EXTRA_FORCE_VIEW));
356 }
357
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700358 /**
359 * Notify the user that we are awaiting input. Currently this sends an audio alert.
360 */
361 private void notifyUser() {
Vikram Aggarwald1147252012-05-08 13:52:30 -0700362 if (mNotificationCountdown > 0) {
Vikram Aggarwald1147252012-05-08 13:52:30 -0700363 --mNotificationCountdown;
364 } else if (mAudioManager != null) {
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700365 try {
366 // Play the standard keypress sound at full volume. This should be available on
367 // every device. We cannot play a ringtone here because media services aren't
368 // available yet. A DTMF-style tone is too soft to be noticed, and might not exist
369 // on tablet devices. The idea is to alert the user that something is needed: this
370 // does not have to be pleasing.
371 mAudioManager.playSoundEffect(AudioManager.FX_KEYPRESS_STANDARD, 100);
372 } catch (Exception e) {
373 Log.w(TAG, "notifyUser: Exception while playing sound: " + e);
374 }
375 }
Vikram Aggarwal86b93932012-05-01 16:46:06 -0700376 // Notify the user again in 5 seconds.
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700377 mHandler.removeMessages(MESSAGE_NOTIFY);
Vikram Aggarwal86b93932012-05-01 16:46:06 -0700378 mHandler.sendEmptyMessageDelayed(MESSAGE_NOTIFY, 5 * 1000);
Paul Lawrence73456ac2014-05-16 07:56:04 -0700379
380 if (mWakeLock.isHeld()) {
381 if (mReleaseWakeLockCountdown > 0) {
382 --mReleaseWakeLockCountdown;
383 } else {
384 mWakeLock.release();
385 }
386 }
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700387 }
388
389 /**
Paul Lawrence2a6552e2015-05-14 15:49:08 -0700390 * Ignore back events from this activity always - there's nowhere to go back
391 * to
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700392 */
393 @Override
394 public void onBackPressed() {
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700395 }
396
Jason parks8fd5bc92011-01-12 16:03:31 -0600397 @Override
398 public void onCreate(Bundle savedInstanceState) {
399 super.onCreate(savedInstanceState);
Jason parks35933812011-01-21 15:48:20 -0600400
Andy Stadler95974062011-02-01 17:35:20 -0800401 // If we are not encrypted or encrypting, get out quickly.
Inseob Kima1aeeb22018-11-08 12:44:47 +0900402 final String state = VoldProperties.decrypt().orElse("");
Ben Komalo91a2f052011-08-16 17:48:25 -0700403 if (!isDebugView() && ("".equals(state) || DECRYPT_STATE.equals(state))) {
Fyodor Kupolov1b5cc422014-12-08 16:13:11 -0800404 disableCryptKeeperComponent(this);
Dianne Hackborn140f6c62011-10-16 11:49:00 -0700405 // Typically CryptKeeper is launched as the home app. We didn't
Dianne Hackborn644fa422011-10-18 13:38:03 -0700406 // want to be running, so need to finish this activity. We can count
407 // on the activity manager re-launching the new home app upon finishing
408 // this one, since this will leave the activity stack empty.
Dianne Hackborn140f6c62011-10-16 11:49:00 -0700409 // NOTE: This is really grungy. I think it would be better for the
410 // activity manager to explicitly launch the crypt keeper instead of
411 // home in the situation where we need to decrypt the device
412 finish();
Jason parks8fd5bc92011-01-12 16:03:31 -0600413 return;
414 }
Jason parks35933812011-01-21 15:48:20 -0600415
Paul Lawrence7ae20e32014-07-22 15:00:50 -0700416 try {
417 if (getResources().getBoolean(R.bool.crypt_keeper_allow_rotation)) {
418 setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
419 }
420 } catch (NotFoundException e) {
421 }
422
Vikram Aggarwalb96b35a2012-05-01 11:09:39 -0700423 // Disable the status bar, but do NOT disable back because the user needs a way to go
424 // from keyboard settings and back to the password screen.
Vikram Aggarwalbf459da2012-11-08 16:54:59 -0800425 mStatusBar = (StatusBarManager) getSystemService(Context.STATUS_BAR_SERVICE);
426 mStatusBar.disable(sWidgetsToDisable);
Andy Stadler14997402011-02-01 15:34:59 -0800427
Paul Lawrence27841042015-11-24 12:42:09 -0800428 if (savedInstanceState != null) {
429 mCooldown = savedInstanceState.getBoolean(STATE_COOLDOWN);
430 }
431
Vikram Aggarwalea1186d2012-05-03 15:35:03 -0700432 setAirplaneModeIfNecessary();
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700433 mAudioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
Andy Stadler14997402011-02-01 15:34:59 -0800434 // Check for (and recover) retained instance data
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700435 final Object lastInstance = getLastNonConfigurationInstance();
Andy Stadler14997402011-02-01 15:34:59 -0800436 if (lastInstance instanceof NonConfigurationInstanceState) {
437 NonConfigurationInstanceState retained = (NonConfigurationInstanceState) lastInstance;
438 mWakeLock = retained.wakelock;
Ben Komalo04606752011-08-18 14:50:26 -0700439 Log.d(TAG, "Restoring wakelock from NonConfigurationInstanceState");
Andy Stadler14997402011-02-01 15:34:59 -0800440 }
Jason parksec5a45e2011-01-18 15:28:36 -0600441 }
Jason parks35933812011-01-21 15:48:20 -0600442
Paul Lawrence27841042015-11-24 12:42:09 -0800443 @Override
444 public void onSaveInstanceState(Bundle savedInstanceState) {
445 savedInstanceState.putBoolean(STATE_COOLDOWN, mCooldown);
446 }
447
Andy Stadler95974062011-02-01 17:35:20 -0800448 /**
449 * Note, we defer the state check and screen setup to onStart() because this will be
450 * re-run if the user clicks the power button (sleeping/waking the screen), and this is
451 * especially important if we were to lose the wakelock for any reason.
452 */
453 @Override
454 public void onStart() {
455 super.onStart();
Ben Komalod4758ef2011-09-08 14:36:08 -0700456 setupUi();
Ben Komalo0e666092011-09-01 15:42:00 -0700457 }
458
459 /**
460 * Initializes the UI based on the current state of encryption.
461 * This is idempotent - calling repeatedly will simply re-initialize the UI.
462 */
463 private void setupUi() {
464 if (mEncryptionGoneBad || isDebugView(FORCE_VIEW_ERROR)) {
465 setContentView(R.layout.crypt_keeper_progress);
Paul Lawrence87abbd32014-08-28 15:56:38 -0700466 showFactoryReset(mCorrupt);
Ben Komalo0e666092011-09-01 15:42:00 -0700467 return;
468 }
469
Inseob Kima1aeeb22018-11-08 12:44:47 +0900470 final String progress = VoldProperties.encrypt_progress().orElse("");
Ben Komalo0e666092011-09-01 15:42:00 -0700471 if (!"".equals(progress) || isDebugView(FORCE_VIEW_PROGRESS)) {
Andy Stadler95974062011-02-01 17:35:20 -0800472 setContentView(R.layout.crypt_keeper_progress);
473 encryptionProgressInit();
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700474 } else if (mValidationComplete || isDebugView(FORCE_VIEW_PASSWORD)) {
Paul Lawrence9ac2d812014-03-18 10:59:18 -0700475 new AsyncTask<Void, Void, Void>() {
Paul Crowley529834d2014-10-21 10:12:47 +0100476 int passwordType = StorageManager.CRYPT_TYPE_PASSWORD;
Paul Lawrence9ac2d812014-03-18 10:59:18 -0700477 String owner_info;
Paul Lawrence0f11e152014-08-20 07:43:32 -0700478 boolean pattern_visible;
Paul Lawrencec04420c2015-05-18 13:25:01 -0700479 boolean password_visible;
Paul Lawrenceb05f39d2014-02-04 10:22:19 -0800480
Paul Lawrence9ac2d812014-03-18 10:59:18 -0700481 @Override
482 public Void doInBackground(Void... v) {
483 try {
Sudheer Shankaee2d5922016-11-09 15:47:53 -0800484 final IStorageManager service = getStorageManager();
Paul Crowley529834d2014-10-21 10:12:47 +0100485 passwordType = service.getPasswordType();
Elliott Hughesf9d6d292014-10-02 13:29:58 -0700486 owner_info = service.getField(StorageManager.OWNER_INFO_KEY);
487 pattern_visible = !("0".equals(service.getField(StorageManager.PATTERN_VISIBLE_KEY)));
Paul Lawrencec04420c2015-05-18 13:25:01 -0700488 password_visible = !("0".equals(service.getField(StorageManager.PASSWORD_VISIBLE_KEY)));
Paul Lawrence9ac2d812014-03-18 10:59:18 -0700489 } catch (Exception e) {
490 Log.e(TAG, "Error calling mount service " + e);
491 }
492
493 return null;
494 }
495
496 @Override
497 public void onPostExecute(java.lang.Void v) {
Paul Lawrencec04420c2015-05-18 13:25:01 -0700498 Settings.System.putInt(getContentResolver(), Settings.System.TEXT_SHOW_PASSWORD,
499 password_visible ? 1 : 0);
500
Paul Crowley51e08112014-11-12 12:06:38 +0000501 if (passwordType == StorageManager.CRYPT_TYPE_PIN) {
Paul Lawrence9ac2d812014-03-18 10:59:18 -0700502 setContentView(R.layout.crypt_keeper_pin_entry);
Paul Lawrence5a70f052014-06-13 11:09:55 -0700503 mStatusString = R.string.enter_pin;
Paul Crowley529834d2014-10-21 10:12:47 +0100504 } else if (passwordType == StorageManager.CRYPT_TYPE_PATTERN) {
Paul Lawrence9ac2d812014-03-18 10:59:18 -0700505 setContentView(R.layout.crypt_keeper_pattern_entry);
506 setBackFunctionality(false);
Paul Lawrence5a70f052014-06-13 11:09:55 -0700507 mStatusString = R.string.enter_pattern;
Paul Lawrence9ac2d812014-03-18 10:59:18 -0700508 } else {
509 setContentView(R.layout.crypt_keeper_password_entry);
Paul Lawrence5a70f052014-06-13 11:09:55 -0700510 mStatusString = R.string.enter_password;
Paul Lawrence9ac2d812014-03-18 10:59:18 -0700511 }
Paul Lawrence5a70f052014-06-13 11:09:55 -0700512 final TextView status = (TextView) findViewById(R.id.status);
513 status.setText(mStatusString);
Paul Lawrence9ac2d812014-03-18 10:59:18 -0700514
Paul Lawrence5a70f052014-06-13 11:09:55 -0700515 final TextView ownerInfo = (TextView) findViewById(R.id.owner_info);
516 ownerInfo.setText(owner_info);
517 ownerInfo.setSelected(true); // Required for marquee'ing to work
518
Paul Lawrence9ac2d812014-03-18 10:59:18 -0700519 passwordEntryInit();
Paul Lawrence5a70f052014-06-13 11:09:55 -0700520
Paul Lawrence2a6552e2015-05-14 15:49:08 -0700521 findViewById(android.R.id.content).setSystemUiVisibility(View.STATUS_BAR_DISABLE_BACK);
522
Paul Lawrence0f11e152014-08-20 07:43:32 -0700523 if (mLockPatternView != null) {
524 mLockPatternView.setInStealthMode(!pattern_visible);
525 }
Paul Crowley51e08112014-11-12 12:06:38 +0000526 if (mCooldown) {
527 // in case we are cooling down and coming back from emergency dialler
Paul Lawrence5a70f052014-06-13 11:09:55 -0700528 setBackFunctionality(false);
Paul Crowley51e08112014-11-12 12:06:38 +0000529 cooldown();
Paul Lawrence5a70f052014-06-13 11:09:55 -0700530 }
Paul Crowley51e08112014-11-12 12:06:38 +0000531
Paul Lawrence9ac2d812014-03-18 10:59:18 -0700532 }
533 }.execute();
Ben Komalod4758ef2011-09-08 14:36:08 -0700534 } else if (!mValidationRequested) {
535 // We're supposed to be encrypted, but no validation has been done.
536 new ValidationTask().execute((Void[]) null);
537 mValidationRequested = true;
Andy Stadler95974062011-02-01 17:35:20 -0800538 }
539 }
540
Jason parksf8217302011-01-26 13:11:42 -0600541 @Override
542 public void onStop() {
543 super.onStop();
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700544 mHandler.removeMessages(MESSAGE_UPDATE_PROGRESS);
545 mHandler.removeMessages(MESSAGE_NOTIFY);
Andy Stadler14997402011-02-01 15:34:59 -0800546 }
547
548 /**
549 * Reconfiguring, so propagate the wakelock to the next instance. This runs between onStop()
550 * and onDestroy() and only if we are changing configuration (e.g. rotation). Also clears
551 * mWakeLock so the subsequent call to onDestroy does not release it.
552 */
553 @Override
554 public Object onRetainNonConfigurationInstance() {
555 NonConfigurationInstanceState state = new NonConfigurationInstanceState(mWakeLock);
Ben Komalo04606752011-08-18 14:50:26 -0700556 Log.d(TAG, "Handing wakelock off to NonConfigurationInstanceState");
Andy Stadler14997402011-02-01 15:34:59 -0800557 mWakeLock = null;
558 return state;
559 }
560
561 @Override
562 public void onDestroy() {
563 super.onDestroy();
Jason parksf8217302011-01-26 13:11:42 -0600564
565 if (mWakeLock != null) {
Ben Komalo04606752011-08-18 14:50:26 -0700566 Log.d(TAG, "Releasing and destroying wakelock");
Jason parksf8217302011-01-26 13:11:42 -0600567 mWakeLock.release();
568 mWakeLock = null;
569 }
570 }
571
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700572 /**
573 * Start encrypting the device.
574 */
Jason parksec5a45e2011-01-18 15:28:36 -0600575 private void encryptionProgressInit() {
Jason parks35933812011-01-21 15:48:20 -0600576 // Accquire a partial wakelock to prevent the device from sleeping. Note
577 // we never release this wakelock as we will be restarted after the device
578 // is encrypted.
Ben Komalo04606752011-08-18 14:50:26 -0700579 Log.d(TAG, "Encryption progress screen initializing.");
Ben Komalo9ee164f2011-09-21 10:40:50 -0700580 if (mWakeLock == null) {
Ben Komalo04606752011-08-18 14:50:26 -0700581 Log.d(TAG, "Acquiring wakelock.");
582 PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
583 mWakeLock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK, TAG);
584 mWakeLock.acquire();
585 }
Jason parks35933812011-01-21 15:48:20 -0600586
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700587 ((ProgressBar) findViewById(R.id.progress_bar)).setIndeterminate(true);
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700588 // Ignore all back presses from now, both hard and soft keys.
Vikram Aggarwalbf459da2012-11-08 16:54:59 -0800589 setBackFunctionality(false);
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700590 // Start the first run of progress manually. This method sets up messages to occur at
591 // repeated intervals.
Jason parksf8217302011-01-26 13:11:42 -0600592 updateProgress();
593 }
594
Paul Lawrence384d8e52014-08-08 15:11:36 -0700595 /**
596 * Show factory reset screen allowing the user to reset their phone when
597 * there is nothing else we can do
598 * @param corrupt true if userdata is corrupt, false if encryption failed
599 * partway through
600 */
Jeff Sharkey1de688d2014-09-24 13:57:07 -0700601 private void showFactoryReset(final boolean corrupt) {
Andy Stadler13d62042011-01-31 19:21:37 -0800602 // Hide the encryption-bot to make room for the "factory reset" button
603 findViewById(R.id.encroid).setVisibility(View.GONE);
604
605 // Show the reset button, failure text, and a divider
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700606 final Button button = (Button) findViewById(R.id.factory_reset);
Andy Stadler13d62042011-01-31 19:21:37 -0800607 button.setVisibility(View.VISIBLE);
608 button.setOnClickListener(new OnClickListener() {
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700609 @Override
Andy Stadler13d62042011-01-31 19:21:37 -0800610 public void onClick(View v) {
611 // Factory reset the device.
Lenka Trochtova3393dac2017-02-13 15:05:27 +0100612 Intent intent = new Intent(Intent.ACTION_FACTORY_RESET);
Christopher Tate1e99f0c2017-01-25 14:46:48 -0800613 intent.setPackage("android");
Jeff Sharkey1de688d2014-09-24 13:57:07 -0700614 intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
615 intent.putExtra(Intent.EXTRA_REASON,
616 "CryptKeeper.showFactoryReset() corrupt=" + corrupt);
617 sendBroadcast(intent);
Andy Stadler13d62042011-01-31 19:21:37 -0800618 }
619 });
620
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700621 // Alert the user of the failure.
Paul Lawrence384d8e52014-08-08 15:11:36 -0700622 if (corrupt) {
623 ((TextView) findViewById(R.id.title)).setText(R.string.crypt_keeper_data_corrupt_title);
624 ((TextView) findViewById(R.id.status)).setText(R.string.crypt_keeper_data_corrupt_summary);
625 } else {
626 ((TextView) findViewById(R.id.title)).setText(R.string.crypt_keeper_failed_title);
627 ((TextView) findViewById(R.id.status)).setText(R.string.crypt_keeper_failed_summary);
628 }
Andy Stadler13d62042011-01-31 19:21:37 -0800629
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700630 final View view = findViewById(R.id.bottom_divider);
631 // TODO(viki): Why would the bottom divider be missing in certain layouts? Investigate.
Ben Komalof0104df2011-08-16 17:48:42 -0700632 if (view != null) {
633 view.setVisibility(View.VISIBLE);
634 }
Andy Stadler13d62042011-01-31 19:21:37 -0800635 }
636
Jason parksf8217302011-01-26 13:11:42 -0600637 private void updateProgress() {
Inseob Kima1aeeb22018-11-08 12:44:47 +0900638 final String state = VoldProperties.encrypt_progress().orElse("");
Jason parksf8217302011-01-26 13:11:42 -0600639
Ben Komalo0e666092011-09-01 15:42:00 -0700640 if ("error_partially_encrypted".equals(state)) {
Paul Lawrence384d8e52014-08-08 15:11:36 -0700641 showFactoryReset(false);
Andy Stadler13d62042011-01-31 19:21:37 -0800642 return;
643 }
644
Paul Lawrenceb15c68f2014-06-05 07:24:23 -0700645 // Get status as percentage first
646 CharSequence status = getText(R.string.crypt_keeper_setup_description);
647 int percent = 0;
Jason parksf8217302011-01-26 13:11:42 -0600648 try {
Ben Komalo91a2f052011-08-16 17:48:25 -0700649 // Force a 50% progress state when debugging the view.
Paul Lawrenceb15c68f2014-06-05 07:24:23 -0700650 percent = isDebugView() ? 50 : Integer.parseInt(state);
Jason parksf8217302011-01-26 13:11:42 -0600651 } catch (Exception e) {
652 Log.w(TAG, "Error parsing progress: " + e.toString());
653 }
Paul Lawrenceb15c68f2014-06-05 07:24:23 -0700654 String progress = Integer.toString(percent);
Jason parksf8217302011-01-26 13:11:42 -0600655
Paul Lawrenceb15c68f2014-06-05 07:24:23 -0700656 // Now try to get status as time remaining and replace as appropriate
Ben Komalo04606752011-08-18 14:50:26 -0700657 Log.v(TAG, "Encryption progress: " + progress);
Paul Lawrenceb15c68f2014-06-05 07:24:23 -0700658 try {
Inseob Kima1aeeb22018-11-08 12:44:47 +0900659 int time = VoldProperties.encrypt_time_remaining().get();
Paul Lawrenceb15c68f2014-06-05 07:24:23 -0700660 if (time >= 0) {
661 // Round up to multiple of 10 - this way display is less jerky
662 time = (time + 9) / 10 * 10;
663 progress = DateUtils.formatElapsedTime(time);
664 status = getText(R.string.crypt_keeper_setup_time_remaining);
665 }
666 } catch (Exception e) {
667 // Will happen if no time etc - show percentage
668 }
669
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700670 final TextView tv = (TextView) findViewById(R.id.status);
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700671 if (tv != null) {
Paul Lawrenceb15c68f2014-06-05 07:24:23 -0700672 tv.setText(TextUtils.expandTemplate(status, progress));
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700673 }
Paul Lawrenceb15c68f2014-06-05 07:24:23 -0700674
675 // Check the progress every 1 seconds
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700676 mHandler.removeMessages(MESSAGE_UPDATE_PROGRESS);
Paul Lawrenceb15c68f2014-06-05 07:24:23 -0700677 mHandler.sendEmptyMessageDelayed(MESSAGE_UPDATE_PROGRESS, 1000);
Jason parksf8217302011-01-26 13:11:42 -0600678 }
679
Paul Crowley51e08112014-11-12 12:06:38 +0000680 /** Insist on a power cycle to force the user to waste time between retries.
681 *
682 * Call setBackFunctionality(false) before calling this. */
Jason parksf8217302011-01-26 13:11:42 -0600683 private void cooldown() {
Paul Crowley51e08112014-11-12 12:06:38 +0000684 // Disable the password entry.
685 if (mPasswordEntry != null) {
686 mPasswordEntry.setEnabled(false);
Jason parksf8217302011-01-26 13:11:42 -0600687 }
Paul Crowley51e08112014-11-12 12:06:38 +0000688 if (mLockPatternView != null) {
689 mLockPatternView.setEnabled(false);
690 }
691
692 final TextView status = (TextView) findViewById(R.id.status);
693 status.setText(R.string.crypt_keeper_force_power_cycle);
Jason parksec5a45e2011-01-18 15:28:36 -0600694 }
Jason parks35933812011-01-21 15:48:20 -0600695
Vikram Aggarwalbf459da2012-11-08 16:54:59 -0800696 /**
697 * Sets the back status: enabled or disabled according to the parameter.
698 * @param isEnabled true if back is enabled, false otherwise.
699 */
700 private final void setBackFunctionality(boolean isEnabled) {
Vikram Aggarwalbf459da2012-11-08 16:54:59 -0800701 if (isEnabled) {
702 mStatusBar.disable(sWidgetsToDisable);
703 } else {
704 mStatusBar.disable(sWidgetsToDisable | StatusBarManager.DISABLE_BACK);
705 }
706 }
707
Paul Crowley2555e5f2014-11-07 00:52:57 -0800708 private void fakeUnlockAttempt(View postingView) {
709 beginAttempt();
710 postingView.postDelayed(mFakeUnlockAttemptRunnable, FAKE_ATTEMPT_DELAY);
711 }
712
Paul Lawrenceb05f39d2014-02-04 10:22:19 -0800713 protected LockPatternView.OnPatternListener mChooseNewLockPatternListener =
Paul Lawrencef6cda3b2014-06-12 08:26:08 -0700714 new LockPatternView.OnPatternListener() {
Paul Lawrenceb05f39d2014-02-04 10:22:19 -0800715
Paul Lawrencef6cda3b2014-06-12 08:26:08 -0700716 @Override
717 public void onPatternStart() {
718 mLockPatternView.removeCallbacks(mClearPatternRunnable);
719 }
Paul Lawrenceb05f39d2014-02-04 10:22:19 -0800720
Paul Lawrencef6cda3b2014-06-12 08:26:08 -0700721 @Override
722 public void onPatternCleared() {
723 }
Paul Lawrenceb05f39d2014-02-04 10:22:19 -0800724
Paul Lawrencef6cda3b2014-06-12 08:26:08 -0700725 @Override
726 public void onPatternDetected(List<LockPatternView.Cell> pattern) {
727 mLockPatternView.setEnabled(false);
Paul Crowley2555e5f2014-11-07 00:52:57 -0800728 if (pattern.size() >= MIN_LENGTH_BEFORE_REPORT) {
Rubin Xu010116a2019-09-11 17:36:37 +0100729 new DecryptTask().execute(new String(LockPatternUtils.patternToByteArray(pattern)));
Paul Crowley2555e5f2014-11-07 00:52:57 -0800730 } else {
731 // Allow user to make as many of these as they want.
732 fakeUnlockAttempt(mLockPatternView);
733 }
Paul Lawrencef6cda3b2014-06-12 08:26:08 -0700734 }
Paul Lawrenceb05f39d2014-02-04 10:22:19 -0800735
Paul Lawrencef6cda3b2014-06-12 08:26:08 -0700736 @Override
737 public void onPatternCellAdded(List<Cell> pattern) {
738 }
Paul Lawrenceb05f39d2014-02-04 10:22:19 -0800739 };
740
741 private void passwordEntryInit() {
742 // Password/pin case
Yohei Yukawaf6af0932017-03-21 12:38:44 -0700743 mPasswordEntry = (ImeAwareEditText) findViewById(R.id.passwordEntry);
Paul Lawrenceb05f39d2014-02-04 10:22:19 -0800744 if (mPasswordEntry != null){
745 mPasswordEntry.setOnEditorActionListener(this);
746 mPasswordEntry.requestFocus();
747 // Become quiet when the user interacts with the Edit text screen.
748 mPasswordEntry.setOnKeyListener(this);
749 mPasswordEntry.setOnTouchListener(this);
750 mPasswordEntry.addTextChangedListener(this);
751 }
752
753 // Pattern case
754 mLockPatternView = (LockPatternView) findViewById(R.id.lockPattern);
755 if (mLockPatternView != null) {
756 mLockPatternView.setOnPatternListener(mChooseNewLockPatternListener);
757 }
Jason parks35933812011-01-21 15:48:20 -0600758
Vikram Aggarwalc62d3212012-05-02 16:29:10 -0700759 // Disable the Emergency call button if the device has no voice telephone capability
Santos Cordon3afbdf02014-05-29 21:48:16 -0700760 if (!getTelephonyManager().isVoiceCapable()) {
Vikram Aggarwalc62d3212012-05-02 16:29:10 -0700761 final View emergencyCall = findViewById(R.id.emergencyCallButton);
762 if (emergencyCall != null) {
763 Log.d(TAG, "Removing the emergency Call button");
764 emergencyCall.setVisibility(View.GONE);
765 }
766 }
767
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700768 final View imeSwitcher = findViewById(R.id.switch_ime_button);
Ben Komalo9fcb6a72011-08-26 14:40:18 -0700769 final InputMethodManager imm = (InputMethodManager) getSystemService(
770 Context.INPUT_METHOD_SERVICE);
771 if (imeSwitcher != null && hasMultipleEnabledIMEsOrSubtypes(imm, false)) {
772 imeSwitcher.setVisibility(View.VISIBLE);
773 imeSwitcher.setOnClickListener(new OnClickListener() {
lumarkc8c9c282018-12-03 16:11:16 +0800774 @Override
Ben Komalo9fcb6a72011-08-26 14:40:18 -0700775 public void onClick(View v) {
lumarkc8c9c282018-12-03 16:11:16 +0800776 imm.showInputMethodPickerFromSystem(false /* showAuxiliarySubtypes */,
777 v.getDisplay().getDisplayId());
Ben Komalo9fcb6a72011-08-26 14:40:18 -0700778 }
779 });
Jason parks00046d62011-06-13 17:38:45 -0500780 }
David Brown8373b452011-06-20 12:38:45 -0700781
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700782 // We want to keep the screen on while waiting for input. In minimal boot mode, the device
783 // is completely non-functional, and we want the user to notice the device and enter a
784 // password.
785 if (mWakeLock == null) {
786 Log.d(TAG, "Acquiring wakelock.");
787 final PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
788 if (pm != null) {
789 mWakeLock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK, TAG);
790 mWakeLock.acquire();
Paul Lawrence73456ac2014-05-16 07:56:04 -0700791 // Keep awake for 10 minutes - if the user hasn't been alerted by then
792 // best not to just drain their battery
Paul Lawrence5a70f052014-06-13 11:09:55 -0700793 mReleaseWakeLockCountdown = 96; // 96 * 5 secs per click + 120 secs before we show this = 600
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700794 }
795 }
Paul Lawrence73456ac2014-05-16 07:56:04 -0700796
Yohei Yukawaf6af0932017-03-21 12:38:44 -0700797 // Make sure that the IME is shown when everything becomes ready.
Paul Crowley51e08112014-11-12 12:06:38 +0000798 if (mLockPatternView == null && !mCooldown) {
Seigo Nonaka25977532016-04-13 08:41:43 +0000799 getWindow().setSoftInputMode(
800 WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
Yohei Yukawaf6af0932017-03-21 12:38:44 -0700801 if (mPasswordEntry != null) {
802 mPasswordEntry.scheduleShowSoftInput();
803 }
Paul Lawrencee54e9322014-03-13 14:05:48 -0700804 }
Ben Komalo9fcb6a72011-08-26 14:40:18 -0700805
David Brown8373b452011-06-20 12:38:45 -0700806 updateEmergencyCallButtonState();
Vikram Aggarwald1147252012-05-08 13:52:30 -0700807 // Notify the user in 120 seconds that we are waiting for him to enter the password.
Vikram Aggarwal86b93932012-05-01 16:46:06 -0700808 mHandler.removeMessages(MESSAGE_NOTIFY);
Vikram Aggarwald1147252012-05-08 13:52:30 -0700809 mHandler.sendEmptyMessageDelayed(MESSAGE_NOTIFY, 120 * 1000);
Jim Millerfb3d5ca2013-11-14 14:40:22 -0800810
John Spurlock2c526512014-09-17 12:55:17 -0400811 // Dismiss secure & non-secure keyguards while this screen is showing.
812 getWindow().addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD
813 | WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);
Jason parks8fd5bc92011-01-12 16:03:31 -0600814 }
815
Ben Komalo9fcb6a72011-08-26 14:40:18 -0700816 /**
817 * Method adapted from com.android.inputmethod.latin.Utils
818 *
819 * @param imm The input method manager
820 * @param shouldIncludeAuxiliarySubtypes
821 * @return true if we have multiple IMEs to choose from
822 */
823 private boolean hasMultipleEnabledIMEsOrSubtypes(InputMethodManager imm,
824 final boolean shouldIncludeAuxiliarySubtypes) {
825 final List<InputMethodInfo> enabledImis = imm.getEnabledInputMethodList();
826
827 // Number of the filtered IMEs
828 int filteredImisCount = 0;
829
830 for (InputMethodInfo imi : enabledImis) {
831 // We can return true immediately after we find two or more filtered IMEs.
832 if (filteredImisCount > 1) return true;
833 final List<InputMethodSubtype> subtypes =
834 imm.getEnabledInputMethodSubtypeList(imi, true);
835 // IMEs that have no subtypes should be counted.
836 if (subtypes.isEmpty()) {
837 ++filteredImisCount;
838 continue;
839 }
840
841 int auxCount = 0;
842 for (InputMethodSubtype subtype : subtypes) {
843 if (subtype.isAuxiliary()) {
844 ++auxCount;
845 }
846 }
847 final int nonAuxCount = subtypes.size() - auxCount;
848
849 // IMEs that have one or more non-auxiliary subtypes should be counted.
850 // If shouldIncludeAuxiliarySubtypes is true, IMEs that have two or more auxiliary
851 // subtypes should be counted as well.
852 if (nonAuxCount > 0 || (shouldIncludeAuxiliarySubtypes && auxCount > 1)) {
853 ++filteredImisCount;
854 continue;
855 }
856 }
857
858 return filteredImisCount > 1
859 // imm.getEnabledInputMethodSubtypeList(null, false) will return the current IME's enabled
860 // input method subtype (The current IME should be LatinIME.)
861 || imm.getEnabledInputMethodSubtypeList(null, false).size() > 1;
862 }
863
Sudheer Shankaee2d5922016-11-09 15:47:53 -0800864 private IStorageManager getStorageManager() {
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700865 final IBinder service = ServiceManager.getService("mount");
Jason parks8fd5bc92011-01-12 16:03:31 -0600866 if (service != null) {
Sudheer Shankaee2d5922016-11-09 15:47:53 -0800867 return IStorageManager.Stub.asInterface(service);
Jason parks8fd5bc92011-01-12 16:03:31 -0600868 }
869 return null;
870 }
871
872 @Override
873 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
Jason parks00046d62011-06-13 17:38:45 -0500874 if (actionId == EditorInfo.IME_NULL || actionId == EditorInfo.IME_ACTION_DONE) {
Jason parks8fd5bc92011-01-12 16:03:31 -0600875 // Get the password
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700876 final String password = v.getText().toString();
Jason parks8fd5bc92011-01-12 16:03:31 -0600877
Jason parksec5a45e2011-01-18 15:28:36 -0600878 if (TextUtils.isEmpty(password)) {
879 return true;
880 }
Jason parks35933812011-01-21 15:48:20 -0600881
Jason parks8fd5bc92011-01-12 16:03:31 -0600882 // Now that we have the password clear the password field.
883 v.setText(null);
884
Vikram Aggarwalde3c9cb2012-05-01 15:37:30 -0700885 // Disable the password entry and back keypress while checking the password. These
886 // we either be re-enabled if the password was wrong or after the cooldown period.
Jason parks06c5ff42011-03-01 10:17:40 -0600887 mPasswordEntry.setEnabled(false);
Vikram Aggarwalbf459da2012-11-08 16:54:59 -0800888 setBackFunctionality(false);
Jason parks8fd5bc92011-01-12 16:03:31 -0600889
Andrew Zeng233d88a2017-04-06 15:34:45 -0700890 if (password.length() >= LockPatternUtils.MIN_LOCK_PASSWORD_SIZE) {
Paul Crowley2555e5f2014-11-07 00:52:57 -0800891 new DecryptTask().execute(password);
892 } else {
893 // Allow user to make as many of these as they want.
894 fakeUnlockAttempt(mPasswordEntry);
895 }
Jason parks35933812011-01-21 15:48:20 -0600896
Jason parks8fd5bc92011-01-12 16:03:31 -0600897 return true;
898 }
899 return false;
900 }
David Brown8373b452011-06-20 12:38:45 -0700901
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700902 /**
Vikram Aggarwalea1186d2012-05-03 15:35:03 -0700903 * Set airplane mode on the device if it isn't an LTE device.
904 * Full story: In minimal boot mode, we cannot save any state. In particular, we cannot save
905 * any incoming SMS's. So SMSs that are received here will be silently dropped to the floor.
906 * That is bad. Also, we cannot receive any telephone calls in this state. So to avoid
907 * both these problems, we turn the radio off. However, on certain networks turning on and
908 * off the radio takes a long time. In such cases, we are better off leaving the radio
909 * running so the latency of an E911 call is short.
910 * The behavior after this is:
911 * 1. Emergency dialing: the emergency dialer has logic to force the device out of
912 * airplane mode and restart the radio.
913 * 2. Full boot: we read the persistent settings from the previous boot and restore the
914 * radio to whatever it was before it restarted. This also happens when rebooting a
915 * phone that has no encryption.
916 */
917 private final void setAirplaneModeIfNecessary() {
Sarah Chin77dea1b2020-02-27 15:52:18 -0800918 if (!getTelephonyManager().isLteCdmaEvdoGsmWcdmaEnabled()) {
Vikram Aggarwalea1186d2012-05-03 15:35:03 -0700919 Log.d(TAG, "Going into airplane mode.");
Christopher Tate6a5929b2012-09-10 15:39:05 -0700920 Settings.Global.putInt(getContentResolver(), Settings.Global.AIRPLANE_MODE_ON, 1);
Vikram Aggarwalea1186d2012-05-03 15:35:03 -0700921 final Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
922 intent.putExtra("state", true);
Christopher Tate6a5929b2012-09-10 15:39:05 -0700923 sendBroadcastAsUser(intent, UserHandle.ALL);
Vikram Aggarwalea1186d2012-05-03 15:35:03 -0700924 }
925 }
926
927 /**
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700928 * Code to update the state of, and handle clicks from, the "Emergency call" button.
929 *
930 * This code is mostly duplicated from the corresponding code in
931 * LockPatternUtils and LockPatternKeyguardView under frameworks/base.
932 */
David Brown8373b452011-06-20 12:38:45 -0700933 private void updateEmergencyCallButtonState() {
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700934 final Button emergencyCall = (Button) findViewById(R.id.emergencyCallButton);
David Brown8373b452011-06-20 12:38:45 -0700935 // The button isn't present at all in some configurations.
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700936 if (emergencyCall == null)
937 return;
David Brown8373b452011-06-20 12:38:45 -0700938
939 if (isEmergencyCallCapable()) {
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700940 emergencyCall.setVisibility(View.VISIBLE);
941 emergencyCall.setOnClickListener(new View.OnClickListener() {
942 @Override
943
David Brown8373b452011-06-20 12:38:45 -0700944 public void onClick(View v) {
945 takeEmergencyCallAction();
946 }
947 });
948 } else {
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700949 emergencyCall.setVisibility(View.GONE);
David Brown8373b452011-06-20 12:38:45 -0700950 return;
951 }
952
David Brown8373b452011-06-20 12:38:45 -0700953 int textId;
Tyler Gunn3e71b192014-09-10 15:21:33 -0700954 if (getTelecomManager().isInCall()) {
Paul Lawrence89c75702014-07-11 07:34:44 -0700955 // Show "return to call"
David Brown8373b452011-06-20 12:38:45 -0700956 textId = R.string.cryptkeeper_return_to_call;
David Brown8373b452011-06-20 12:38:45 -0700957 } else {
958 textId = R.string.cryptkeeper_emergency_call;
David Brown8373b452011-06-20 12:38:45 -0700959 }
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700960 emergencyCall.setText(textId);
David Brown8373b452011-06-20 12:38:45 -0700961 }
962
963 private boolean isEmergencyCallCapable() {
Michele37b54252019-12-11 14:54:14 -0800964 return getTelephonyManager().isVoiceCapable();
David Brown8373b452011-06-20 12:38:45 -0700965 }
966
967 private void takeEmergencyCallAction() {
Tyler Gunn3e71b192014-09-10 15:21:33 -0700968 TelecomManager telecomManager = getTelecomManager();
969 if (telecomManager.isInCall()) {
970 telecomManager.showInCallScreen(false /* showDialpad */);
David Brown8373b452011-06-20 12:38:45 -0700971 } else {
972 launchEmergencyDialer();
973 }
974 }
975
David Brown8373b452011-06-20 12:38:45 -0700976
977 private void launchEmergencyDialer() {
Vikram Aggarwalbfa3a642012-03-29 14:07:22 -0700978 final Intent intent = new Intent(ACTION_EMERGENCY_DIAL);
David Brown8373b452011-06-20 12:38:45 -0700979 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
980 | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
Paul Lawrence5a70f052014-06-13 11:09:55 -0700981 setBackFunctionality(true);
David Brown8373b452011-06-20 12:38:45 -0700982 startActivity(intent);
983 }
Vikram Aggarwald1147252012-05-08 13:52:30 -0700984
Santos Cordon3afbdf02014-05-29 21:48:16 -0700985 private TelephonyManager getTelephonyManager() {
986 return (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
987 }
988
Tyler Gunn3e71b192014-09-10 15:21:33 -0700989 private TelecomManager getTelecomManager() {
990 return (TelecomManager) getSystemService(Context.TELECOM_SERVICE);
Santos Cordon35230e92014-07-07 16:25:10 -0700991 }
992
Vikram Aggarwald1147252012-05-08 13:52:30 -0700993 /**
994 * Listen to key events so we can disable sounds when we get a keyinput in EditText.
995 */
996 private void delayAudioNotification() {
Vikram Aggarwald1147252012-05-08 13:52:30 -0700997 mNotificationCountdown = 20;
998 }
999
1000 @Override
1001 public boolean onKey(View v, int keyCode, KeyEvent event) {
1002 delayAudioNotification();
1003 return false;
1004 }
1005
1006 @Override
1007 public boolean onTouch(View v, MotionEvent event) {
1008 delayAudioNotification();
1009 return false;
1010 }
1011
1012 @Override
1013 public void beforeTextChanged(CharSequence s, int start, int count, int after) {
1014 return;
1015 }
1016
1017 @Override
1018 public void onTextChanged(CharSequence s, int start, int before, int count) {
1019 delayAudioNotification();
1020 }
1021
1022 @Override
1023 public void afterTextChanged(Editable s) {
1024 return;
1025 }
Fyodor Kupolov1b5cc422014-12-08 16:13:11 -08001026
1027 private static void disableCryptKeeperComponent(Context context) {
1028 PackageManager pm = context.getPackageManager();
1029 ComponentName name = new ComponentName(context, CryptKeeper.class);
1030 Log.d(TAG, "Disabling component " + name);
Paul Lawrenceae4a5572015-09-19 02:29:37 +00001031 pm.setComponentEnabledSetting(name, PackageManager.COMPONENT_ENABLED_STATE_DISABLED,
1032 PackageManager.DONT_KILL_APP);
Fyodor Kupolov1b5cc422014-12-08 16:13:11 -08001033 }
David Brown8373b452011-06-20 12:38:45 -07001034}