diff options
author | Jim Miller <jaggies@google.com> | 2014-10-13 18:15:17 -0700 |
---|---|---|
committer | Jim Miller <jaggies@google.com> | 2014-10-14 18:40:30 -0700 |
commit | 46c7f6d6f32efec26bc9343f591ad1ddbe8f3b4a (patch) | |
tree | 2bea20cdff429e942f679ea0616942b569b7a7b8 /src/com/android | |
parent | 94dce7618584b4ca51bf17937cbd6cb0c22aaaea (diff) | |
download | packages_apps_Settings-46c7f6d6f32efec26bc9343f591ad1ddbe8f3b4a.zip packages_apps_Settings-46c7f6d6f32efec26bc9343f591ad1ddbe8f3b4a.tar.gz packages_apps_Settings-46c7f6d6f32efec26bc9343f591ad1ddbe8f3b4a.tar.bz2 |
Add a checkbox option to 'require password to decrypt'
Fixes bug 17881324
Change-Id: I3f256f448a35cf8104ee6acb4de253874101f7c0
Diffstat (limited to 'src/com/android')
-rw-r--r-- | src/com/android/settings/ChooseLockGeneric.java | 45 | ||||
-rw-r--r-- | src/com/android/settings/ChooseLockPassword.java | 2 | ||||
-rw-r--r-- | src/com/android/settings/ChooseLockPattern.java | 3 | ||||
-rw-r--r-- | src/com/android/settings/EncryptionInterstitial.java | 129 |
4 files changed, 173 insertions, 6 deletions
diff --git a/src/com/android/settings/ChooseLockGeneric.java b/src/com/android/settings/ChooseLockGeneric.java index c65aa21..89ba20b 100644 --- a/src/com/android/settings/ChooseLockGeneric.java +++ b/src/com/android/settings/ChooseLockGeneric.java @@ -18,12 +18,16 @@ package com.android.settings; import android.accessibilityservice.AccessibilityServiceInfo; import android.app.Activity; +import android.app.ActivityManagerNative; import android.app.PendingIntent; import android.app.admin.DevicePolicyManager; import android.content.Context; import android.content.Intent; import android.content.pm.UserInfo; import android.os.Bundle; +import android.os.Process; +import android.os.RemoteException; +import android.os.UserHandle; import android.os.UserManager; import android.preference.Preference; import android.preference.PreferenceScreen; @@ -69,11 +73,14 @@ public class ChooseLockGeneric extends SettingsActivity { private static final String KEY_UNLOCK_SET_PATTERN = "unlock_set_pattern"; private static final int CONFIRM_EXISTING_REQUEST = 100; private static final int FALLBACK_REQUEST = 101; + private static final int ENABLE_ENCRYPTION_REQUEST = 102; private static final String PASSWORD_CONFIRMED = "password_confirmed"; private static final String CONFIRM_CREDENTIALS = "confirm_credentials"; private static final String WAITING_FOR_CONFIRMATION = "waiting_for_confirmation"; private static final String FINISH_PENDING = "finish_pending"; public static final String MINIMUM_QUALITY_KEY = "minimum_quality"; + public static final String ENCRYPT_REQUESTED_QUALITY = "encrypt_requested_quality"; + public static final String ENCRYPT_REQUESTED_DISABLED = "encrypt_requested_disabled"; private static final boolean ALWAY_SHOW_TUTORIAL = true; @@ -83,6 +90,8 @@ public class ChooseLockGeneric extends SettingsActivity { private boolean mPasswordConfirmed = false; private boolean mWaitingForConfirmation = false; private boolean mFinishPending = false; + private int mEncryptionRequestQuality; + private boolean mEncryptionRequestDisabled; @Override public void onCreate(Bundle savedInstanceState) { @@ -103,6 +112,9 @@ public class ChooseLockGeneric extends SettingsActivity { mPasswordConfirmed = savedInstanceState.getBoolean(PASSWORD_CONFIRMED); mWaitingForConfirmation = savedInstanceState.getBoolean(WAITING_FOR_CONFIRMATION); mFinishPending = savedInstanceState.getBoolean(FINISH_PENDING); + mEncryptionRequestQuality = savedInstanceState.getInt(ENCRYPT_REQUESTED_QUALITY); + mEncryptionRequestDisabled = savedInstanceState.getBoolean( + ENCRYPT_REQUESTED_DISABLED); } if (mPasswordConfirmed) { @@ -143,16 +155,16 @@ public class ChooseLockGeneric extends SettingsActivity { updateUnlockMethodAndFinish( DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED, false); } else if (KEY_UNLOCK_SET_BIOMETRIC_WEAK.equals(key)) { - updateUnlockMethodAndFinish( + maybeEnableEncryption( DevicePolicyManager.PASSWORD_QUALITY_BIOMETRIC_WEAK, false); }else if (KEY_UNLOCK_SET_PATTERN.equals(key)) { - updateUnlockMethodAndFinish( + maybeEnableEncryption( DevicePolicyManager.PASSWORD_QUALITY_SOMETHING, false); } else if (KEY_UNLOCK_SET_PIN.equals(key)) { - updateUnlockMethodAndFinish( + maybeEnableEncryption( DevicePolicyManager.PASSWORD_QUALITY_NUMERIC, false); } else if (KEY_UNLOCK_SET_PASSWORD.equals(key)) { - updateUnlockMethodAndFinish( + maybeEnableEncryption( DevicePolicyManager.PASSWORD_QUALITY_ALPHABETIC, false); } else { handled = false; @@ -160,6 +172,24 @@ public class ChooseLockGeneric extends SettingsActivity { return handled; } + /** + * If the device has encryption already enabled, then ask the user if they + * also want to encrypt the phone with this password. + * + * @param quality + * @param disabled + */ + private void maybeEnableEncryption(int quality, boolean disabled) { + if (Process.myUserHandle().isOwner() && LockPatternUtils.isDeviceEncryptionEnabled()) { + mEncryptionRequestQuality = quality; + mEncryptionRequestDisabled = disabled; + Intent intent = EncryptionInterstitial.createStartIntent(getActivity(), quality); + startActivityForResult(intent, ENABLE_ENCRYPTION_REQUEST); + } else { + updateUnlockMethodAndFinish(quality, disabled); + } + } + @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { @@ -182,10 +212,13 @@ public class ChooseLockGeneric extends SettingsActivity { if (requestCode == CONFIRM_EXISTING_REQUEST && resultCode == Activity.RESULT_OK) { mPasswordConfirmed = true; updatePreferencesOrFinish(); - } else if(requestCode == FALLBACK_REQUEST) { + } else if (requestCode == FALLBACK_REQUEST) { mChooseLockSettingsHelper.utils().deleteTempGallery(); getActivity().setResult(resultCode); finish(); + } else if (requestCode == ENABLE_ENCRYPTION_REQUEST + && resultCode == Activity.RESULT_OK) { + updateUnlockMethodAndFinish(mEncryptionRequestQuality, mEncryptionRequestDisabled); } else { getActivity().setResult(Activity.RESULT_CANCELED); finish(); @@ -199,6 +232,8 @@ public class ChooseLockGeneric extends SettingsActivity { outState.putBoolean(PASSWORD_CONFIRMED, mPasswordConfirmed); outState.putBoolean(WAITING_FOR_CONFIRMATION, mWaitingForConfirmation); outState.putBoolean(FINISH_PENDING, mFinishPending); + outState.putInt(ENCRYPT_REQUESTED_QUALITY, mEncryptionRequestQuality); + outState.putBoolean(ENCRYPT_REQUESTED_DISABLED, mEncryptionRequestDisabled); } private void updatePreferencesOrFinish() { diff --git a/src/com/android/settings/ChooseLockPassword.java b/src/com/android/settings/ChooseLockPassword.java index d04f6ac..0a703cf 100644 --- a/src/com/android/settings/ChooseLockPassword.java +++ b/src/com/android/settings/ChooseLockPassword.java @@ -24,11 +24,13 @@ import com.android.settings.notification.RedactionInterstitial; import android.app.Activity; import android.app.Fragment; import android.app.admin.DevicePolicyManager; +import android.content.ContentResolver; import android.content.Intent; import android.inputmethodservice.KeyboardView; import android.os.Bundle; import android.os.Handler; import android.os.Message; +import android.provider.Settings; import android.text.Editable; import android.text.InputType; import android.text.Selection; diff --git a/src/com/android/settings/ChooseLockPattern.java b/src/com/android/settings/ChooseLockPattern.java index c218c8d..46bf94c 100644 --- a/src/com/android/settings/ChooseLockPattern.java +++ b/src/com/android/settings/ChooseLockPattern.java @@ -17,7 +17,6 @@ package com.android.settings; import com.google.android.collect.Lists; - import com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient; import com.android.internal.widget.LockPatternUtils; import com.android.internal.widget.LockPatternView; @@ -28,8 +27,10 @@ import static com.android.internal.widget.LockPatternView.DisplayMode; import android.app.Activity; import android.app.Fragment; +import android.content.ContentResolver; import android.content.Intent; import android.os.Bundle; +import android.provider.Settings; import android.view.KeyEvent; import android.view.LayoutInflater; import android.view.View; diff --git a/src/com/android/settings/EncryptionInterstitial.java b/src/com/android/settings/EncryptionInterstitial.java new file mode 100644 index 0000000..8a62001 --- /dev/null +++ b/src/com/android/settings/EncryptionInterstitial.java @@ -0,0 +1,129 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License + */ + +package com.android.settings; + +import com.android.settings.R; +import com.android.settings.SettingsActivity; +import com.android.settings.SettingsPreferenceFragment; + +import android.app.admin.DevicePolicyManager; +import android.content.Context; +import android.content.Intent; +import android.os.Bundle; +import android.os.PersistableBundle; +import android.provider.Settings; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.widget.RadioButton; +import android.widget.TextView; + +public class EncryptionInterstitial extends SettingsActivity { + + private static final String EXTRA_PASSWORD_QUALITY = "extra_password_quality"; + + @Override + public Intent getIntent() { + Intent modIntent = new Intent(super.getIntent()); + modIntent.putExtra(EXTRA_SHOW_FRAGMENT, EncryptionInterstitialFragment.class.getName()); + return modIntent; + } + + @Override + protected boolean isValidFragment(String fragmentName) { + return EncryptionInterstitialFragment.class.getName().equals(fragmentName); + } + + public static Intent createStartIntent(Context ctx, int quality) { + return new Intent(ctx, EncryptionInterstitial.class) + .putExtra(EXTRA_PREFS_SHOW_BUTTON_BAR, true) + .putExtra(EXTRA_PREFS_SET_BACK_TEXT, (String) null) + .putExtra(EXTRA_PREFS_SET_NEXT_TEXT, ctx.getString( + R.string.encryption_continue_button)) + .putExtra(EXTRA_PASSWORD_QUALITY, quality) + .putExtra(EXTRA_SHOW_FRAGMENT_TITLE_RESID, R.string.encryption_interstitial_header); + } + + public static class EncryptionInterstitialFragment extends SettingsPreferenceFragment + implements View.OnClickListener { + + private RadioButton mRequirePasswordToDecryptButton; + private RadioButton mDontRequirePasswordToDecryptButton; + private TextView mEncryptionMessage; + + @Override + public View onCreateView(LayoutInflater inflater, ViewGroup container, + Bundle savedInstanceState) { + final int layoutId = R.layout.encryption_interstitial; + View view = inflater.inflate(layoutId, container, false); + mRequirePasswordToDecryptButton = + (RadioButton) view.findViewById(R.id.encrypt_require_password); + mDontRequirePasswordToDecryptButton = + (RadioButton) view.findViewById(R.id.encrypt_dont_require_password); + mEncryptionMessage = + (TextView) view.findViewById(R.id.encryption_message); + int quality = getActivity().getIntent().getIntExtra(EXTRA_PASSWORD_QUALITY, 0); + final int msgId; + final int enableId; + final int disableId; + switch (quality) { + case DevicePolicyManager.PASSWORD_QUALITY_SOMETHING: + msgId = R.string.encryption_interstitial_message_pattern; + enableId = R.string.encrypt_require_pattern; + disableId = R.string.encrypt_dont_require_pattern; + break; + case DevicePolicyManager.PASSWORD_QUALITY_NUMERIC: + case DevicePolicyManager.PASSWORD_QUALITY_NUMERIC_COMPLEX: + msgId = R.string.encryption_interstitial_message_pin; + enableId = R.string.encrypt_require_pin; + disableId = R.string.encrypt_dont_require_pin; + break; + default: + msgId = R.string.encryption_interstitial_message_password; + enableId = R.string.encrypt_require_password; + disableId = R.string.encrypt_dont_require_password; + break; + } + mEncryptionMessage.setText(msgId); + mRequirePasswordToDecryptButton.setOnClickListener(this); + mRequirePasswordToDecryptButton.setText(enableId); + mDontRequirePasswordToDecryptButton.setOnClickListener(this); + mDontRequirePasswordToDecryptButton.setText(disableId); + return view; + } + + @Override + public void onResume() { + super.onResume(); + loadFromSettings(); + } + + private void loadFromSettings() { + final boolean required = Settings.Global.getInt(getContentResolver(), + Settings.Global.REQUIRE_PASSWORD_TO_DECRYPT, 1) == 1 ? true : false; + mRequirePasswordToDecryptButton.setChecked(required); + mDontRequirePasswordToDecryptButton.setChecked(!required); + } + + @Override + public void onClick(View v) { + final boolean required = (v == mRequirePasswordToDecryptButton); + Settings.Global.putInt(getContentResolver(), + Settings.Global.REQUIRE_PASSWORD_TO_DECRYPT, required ? 1 : 0); + } + } +} |