blob: 1653db95f15bc938f49f414f8732221d37a3c18d [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 }
Dan Egnor18e93962010-02-10 19:27:58 -080045
Doug Zongkercdf00882014-03-18 12:52:04 -070046 final boolean shutdown = intent.getBooleanExtra("shutdown", false);
Jeff Sharkey004a4b22014-09-24 11:45:24 -070047 final String reason = intent.getStringExtra(Intent.EXTRA_REASON);
Rubin Xue8490f12015-06-25 12:17:48 +010048 final boolean wipeExternalStorage = intent.getBooleanExtra(
49 Intent.EXTRA_WIPE_EXTERNAL_STORAGE, false);
Doug Zongkercdf00882014-03-18 12:52:04 -070050
Dianne Hackborn42499172010-10-15 18:45:07 -070051 Slog.w(TAG, "!!! FACTORY RESET !!!");
52 // The reboot call is blocking, so we need to do it on another thread.
53 Thread thr = new Thread("Reboot") {
54 @Override
55 public void run() {
56 try {
Jeff Sharkey004a4b22014-09-24 11:45:24 -070057 RecoverySystem.rebootWipeUserData(context, shutdown, reason);
Dianne Hackborn42499172010-10-15 18:45:07 -070058 Log.wtf(TAG, "Still running after master clear?!");
59 } catch (IOException e) {
60 Slog.e(TAG, "Can't perform master clear/factory reset", e);
Julia Reynoldsfe053802014-06-30 11:41:32 -040061 } catch (SecurityException e) {
62 Slog.e(TAG, "Can't perform master clear/factory reset", e);
Dianne Hackborn42499172010-10-15 18:45:07 -070063 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064 }
Dianne Hackborn42499172010-10-15 18:45:07 -070065 };
Rubin Xue8490f12015-06-25 12:17:48 +010066
67 if (wipeExternalStorage) {
68 // thr will be started at the end of this task.
69 new WipeAdoptableDisksTask(context, thr).execute();
70 } else {
71 thr.start();
72 }
73 }
74
75 private class WipeAdoptableDisksTask extends AsyncTask<Void, Void, Void> {
76 private final Thread mChainedTask;
77 private final Context mContext;
78 private final ProgressDialog mProgressDialog;
79
80 public WipeAdoptableDisksTask(Context context, Thread chainedTask) {
81 mContext = context;
82 mChainedTask = chainedTask;
83 mProgressDialog = new ProgressDialog(context);
84 }
85
86 @Override
87 protected void onPreExecute() {
88 mProgressDialog.setIndeterminate(true);
89 mProgressDialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
90 mProgressDialog.setMessage(mContext.getText(R.string.progress_erasing));
91 mProgressDialog.show();
92 }
93
94 @Override
95 protected Void doInBackground(Void... params) {
96 Slog.w(TAG, "Wiping adoptable disks");
97 StorageManager sm = (StorageManager) mContext.getSystemService(
98 Context.STORAGE_SERVICE);
99 sm.wipeAdoptableDisks();
100 return null;
101 }
102
103 @Override
104 protected void onPostExecute(Void result) {
105 mProgressDialog.dismiss();
106 mChainedTask.start();
107 }
108
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 }
110}