blob: 57565e24251de8dd01a83a536ca12aac086ccf7e [file] [log] [blame]
xunchang316e9712019-04-12 16:22:15 -07001/*
2 * Copyright (C) 2019 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#include "install/wipe_data.h"
18
xunchang316e9712019-04-12 16:22:15 -070019#include <string.h>
xunchang316e9712019-04-12 16:22:15 -070020
21#include <functional>
xunchang316e9712019-04-12 16:22:15 -070022#include <vector>
23
24#include <android-base/file.h>
25#include <android-base/logging.h>
26#include <android-base/stringprintf.h>
27
David Anderson89d2d052019-10-15 13:22:20 -070028#include "install/snapshot_utils.h"
xunchang316e9712019-04-12 16:22:15 -070029#include "otautil/dirutil.h"
xunchang316e9712019-04-12 16:22:15 -070030#include "recovery_ui/ui.h"
Tao Baoe3f09a72019-10-01 11:55:36 -070031#include "recovery_utils/logging.h"
32#include "recovery_utils/roots.h"
xunchang316e9712019-04-12 16:22:15 -070033
34constexpr const char* CACHE_ROOT = "/cache";
35constexpr const char* DATA_ROOT = "/data";
36constexpr const char* METADATA_ROOT = "/metadata";
37
Eric Biggersfde69fb2022-03-10 22:13:39 +000038static bool EraseVolume(const char* volume, RecoveryUI* ui) {
xunchang316e9712019-04-12 16:22:15 -070039 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
xunchang316e9712019-04-12 16:22:15 -070040
xunchang316e9712019-04-12 16:22:15 -070041 std::vector<saved_log_file> log_files;
xunchang316e9712019-04-12 16:22:15 -070042 if (is_cache) {
xunchang2239b9e2019-04-15 15:24:24 -070043 // If we're reformatting /cache, we load any past logs (i.e. "/cache/recovery/last_*") and the
44 // current log ("/cache/recovery/log") into memory, so we can restore them after the reformat.
45 log_files = ReadLogFilesToMemory();
xunchang316e9712019-04-12 16:22:15 -070046 }
47
48 ui->Print("Formatting %s...\n", volume);
49
Simon Shields0242aa22019-10-02 00:21:45 +100050 Volume* vol = volume_for_mount_point(volume);
51 if (ensure_volume_unmounted(vol->blk_device) == -1) {
52 PLOG(ERROR) << "Failed to unmount volume!";
53 return false;
54 }
xunchang316e9712019-04-12 16:22:15 -070055
Eric Biggersfde69fb2022-03-10 22:13:39 +000056 int result = format_volume(volume);
xunchang316e9712019-04-12 16:22:15 -070057
58 if (is_cache) {
xunchang2239b9e2019-04-15 15:24:24 -070059 RestoreLogFilesAfterFormat(log_files);
xunchang316e9712019-04-12 16:22:15 -070060 }
61
62 return (result == 0);
63}
64
65bool WipeCache(RecoveryUI* ui, const std::function<bool()>& confirm_func) {
66 bool has_cache = volume_for_mount_point("/cache") != nullptr;
67 if (!has_cache) {
68 ui->Print("No /cache partition found.\n");
69 return false;
70 }
71
72 if (confirm_func && !confirm_func()) {
73 return false;
74 }
75
76 ui->Print("\n-- Wiping cache...\n");
Tianjie32b4e722021-03-02 16:42:07 -080077 ui->SetBackground(RecoveryUI::ERASING);
78 ui->SetProgressType(RecoveryUI::INDETERMINATE);
79
Eric Biggersfde69fb2022-03-10 22:13:39 +000080 bool success = EraseVolume("/cache", ui);
xunchang316e9712019-04-12 16:22:15 -070081 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
82 return success;
83}
84
Eric Biggersfde69fb2022-03-10 22:13:39 +000085bool WipeData(Device* device) {
xunchang316e9712019-04-12 16:22:15 -070086 RecoveryUI* ui = device->GetUI();
87 ui->Print("\n-- Wiping data...\n");
Tianjie32b4e722021-03-02 16:42:07 -080088 ui->SetBackground(RecoveryUI::ERASING);
89 ui->SetProgressType(RecoveryUI::INDETERMINATE);
David Anderson89d2d052019-10-15 13:22:20 -070090
91 if (!FinishPendingSnapshotMerges(device)) {
92 ui->Print("Unable to check update status or complete merge, cannot wipe partitions.\n");
93 return false;
94 }
95
xunchang316e9712019-04-12 16:22:15 -070096 bool success = device->PreWipeData();
97 if (success) {
Eric Biggersfde69fb2022-03-10 22:13:39 +000098 success &= EraseVolume(DATA_ROOT, ui);
xunchang316e9712019-04-12 16:22:15 -070099 bool has_cache = volume_for_mount_point("/cache") != nullptr;
100 if (has_cache) {
Eric Biggersfde69fb2022-03-10 22:13:39 +0000101 success &= EraseVolume(CACHE_ROOT, ui);
xunchang316e9712019-04-12 16:22:15 -0700102 }
103 if (volume_for_mount_point(METADATA_ROOT) != nullptr) {
Eric Biggersfde69fb2022-03-10 22:13:39 +0000104 success &= EraseVolume(METADATA_ROOT, ui);
xunchang316e9712019-04-12 16:22:15 -0700105 }
106 }
107 if (success) {
108 success &= device->PostWipeData();
109 }
110 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
111 return success;
Tao Baoe3f09a72019-10-01 11:55:36 -0700112}