blob: 26e471e4fc95ac72c5bdc1ee60bf15e282422f3e [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 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.server;
18
Rubin Xue8490f12015-06-25 12:17:48 +010019import android.app.ProgressDialog;
Dan Egnor18e93962010-02-10 19:27:58 -080020import android.content.BroadcastReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021import android.content.Context;
22import android.content.Intent;
Rubin Xue8490f12015-06-25 12:17:48 +010023import android.os.AsyncTask;
Dan Egnor18e93962010-02-10 19:27:58 -080024import android.os.RecoverySystem;
Rubin Xue8490f12015-06-25 12:17:48 +010025import android.os.storage.StorageManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import android.util.Log;
Joe Onorato8a9b2202010-02-26 18:56:32 -080027import android.util.Slog;
Rubin Xue8490f12015-06-25 12:17:48 +010028import android.view.WindowManager;
29
30import com.android.internal.R;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031
Dan Egnor18e93962010-02-10 19:27:58 -080032import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080033
Dan Egnor18e93962010-02-10 19:27:58 -080034public class MasterClearReceiver extends BroadcastReceiver {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035 private static final String TAG = "MasterClear";
36
37 @Override
Dianne Hackborn42499172010-10-15 18:45:07 -070038 public void onReceive(final Context context, final Intent intent) {
Wei Huang97ecc9c2009-05-11 17:44:20 -070039 if (intent.getAction().equals(Intent.ACTION_REMOTE_INTENT)) {
Costin Manolache63cfebf2010-02-04 16:52:34 -080040 if (!"google.com".equals(intent.getStringExtra("from"))) {
Joe Onorato8a9b2202010-02-26 18:56:32 -080041 Slog.w(TAG, "Ignoring master clear request -- not from trusted server.");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042 return;
43 }
44 }
Lenka Trochtova73aeea22016-11-18 17:34:34 +010045 if (Intent.ACTION_MASTER_CLEAR.equals(intent.getAction())) {
46 Slog.w(TAG, "The request uses the deprecated Intent#ACTION_MASTER_CLEAR, "
47 + "Intent#ACTION_FACTORY_RESET should be used instead.");
48 }
49 if (intent.hasExtra(Intent.EXTRA_FORCE_MASTER_CLEAR)) {
50 Slog.w(TAG, "The request uses the deprecated Intent#EXTRA_FORCE_MASTER_CLEAR, "
51 + "Intent#EXTRA_FORCE_FACTORY_RESET should be used instead.");
52 }
Dan Egnor18e93962010-02-10 19:27:58 -080053
Doug Zongkercdf00882014-03-18 12:52:04 -070054 final boolean shutdown = intent.getBooleanExtra("shutdown", false);
Jeff Sharkey004a4b22014-09-24 11:45:24 -070055 final String reason = intent.getStringExtra(Intent.EXTRA_REASON);
Rubin Xue8490f12015-06-25 12:17:48 +010056 final boolean wipeExternalStorage = intent.getBooleanExtra(
57 Intent.EXTRA_WIPE_EXTERNAL_STORAGE, false);
Lenka Trochtova73aeea22016-11-18 17:34:34 +010058 final boolean forceWipe = intent.getBooleanExtra(Intent.EXTRA_FORCE_MASTER_CLEAR, false)
59 || intent.getBooleanExtra(Intent.EXTRA_FORCE_FACTORY_RESET, false);
Doug Zongkercdf00882014-03-18 12:52:04 -070060
Dianne Hackborn42499172010-10-15 18:45:07 -070061 Slog.w(TAG, "!!! FACTORY RESET !!!");
62 // The reboot call is blocking, so we need to do it on another thread.
63 Thread thr = new Thread("Reboot") {
64 @Override
65 public void run() {
66 try {
Benjamin Franzf9d5e6a2016-05-26 14:24:29 +010067 RecoverySystem.rebootWipeUserData(context, shutdown, reason, forceWipe);
Dianne Hackborn42499172010-10-15 18:45:07 -070068 Log.wtf(TAG, "Still running after master clear?!");
69 } catch (IOException e) {
70 Slog.e(TAG, "Can't perform master clear/factory reset", e);
Julia Reynoldsfe053802014-06-30 11:41:32 -040071 } catch (SecurityException e) {
72 Slog.e(TAG, "Can't perform master clear/factory reset", e);
Dianne Hackborn42499172010-10-15 18:45:07 -070073 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074 }
Dianne Hackborn42499172010-10-15 18:45:07 -070075 };
Rubin Xue8490f12015-06-25 12:17:48 +010076
77 if (wipeExternalStorage) {
78 // thr will be started at the end of this task.
79 new WipeAdoptableDisksTask(context, thr).execute();
80 } else {
81 thr.start();
82 }
83 }
84
85 private class WipeAdoptableDisksTask extends AsyncTask<Void, Void, Void> {
86 private final Thread mChainedTask;
87 private final Context mContext;
88 private final ProgressDialog mProgressDialog;
89
90 public WipeAdoptableDisksTask(Context context, Thread chainedTask) {
91 mContext = context;
92 mChainedTask = chainedTask;
93 mProgressDialog = new ProgressDialog(context);
94 }
95
96 @Override
97 protected void onPreExecute() {
98 mProgressDialog.setIndeterminate(true);
99 mProgressDialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
100 mProgressDialog.setMessage(mContext.getText(R.string.progress_erasing));
101 mProgressDialog.show();
102 }
103
104 @Override
105 protected Void doInBackground(Void... params) {
106 Slog.w(TAG, "Wiping adoptable disks");
107 StorageManager sm = (StorageManager) mContext.getSystemService(
108 Context.STORAGE_SERVICE);
109 sm.wipeAdoptableDisks();
110 return null;
111 }
112
113 @Override
114 protected void onPostExecute(Void result) {
115 mProgressDialog.dismiss();
116 mChainedTask.start();
117 }
118
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119 }
120}