xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 19 | #include <string.h> |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 20 | |
| 21 | #include <functional> |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 22 | #include <vector> |
| 23 | |
| 24 | #include <android-base/file.h> |
| 25 | #include <android-base/logging.h> |
| 26 | #include <android-base/stringprintf.h> |
| 27 | |
Florian Mayer | 21d50b2 | 2022-06-23 13:36:21 -0700 | [diff] [blame] | 28 | #include "bootloader_message/bootloader_message.h" |
David Anderson | 89d2d05 | 2019-10-15 13:22:20 -0700 | [diff] [blame] | 29 | #include "install/snapshot_utils.h" |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 30 | #include "otautil/dirutil.h" |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 31 | #include "recovery_ui/ui.h" |
Tao Bao | e3f09a7 | 2019-10-01 11:55:36 -0700 | [diff] [blame] | 32 | #include "recovery_utils/logging.h" |
| 33 | #include "recovery_utils/roots.h" |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 34 | |
| 35 | constexpr const char* CACHE_ROOT = "/cache"; |
| 36 | constexpr const char* DATA_ROOT = "/data"; |
| 37 | constexpr const char* METADATA_ROOT = "/metadata"; |
| 38 | |
Eric Biggers | fde69fb | 2022-03-10 22:13:39 +0000 | [diff] [blame] | 39 | static bool EraseVolume(const char* volume, RecoveryUI* ui) { |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 40 | bool is_cache = (strcmp(volume, CACHE_ROOT) == 0); |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 41 | |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 42 | // ui->SetBackground(RecoveryUI::ERASING); |
| 43 | // ui->SetProgressType(RecoveryUI::INDETERMINATE); |
xunchang | 388d253 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 44 | |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 45 | std::vector<saved_log_file> log_files; |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 46 | if (is_cache) { |
xunchang | 2239b9e | 2019-04-15 15:24:24 -0700 | [diff] [blame] | 47 | // If we're reformatting /cache, we load any past logs (i.e. "/cache/recovery/last_*") and the |
| 48 | // current log ("/cache/recovery/log") into memory, so we can restore them after the reformat. |
| 49 | log_files = ReadLogFilesToMemory(); |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 50 | } |
| 51 | |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 52 | // ui->Print("Formatting %s...\n", volume); |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 53 | |
| 54 | ensure_path_unmounted(volume); |
| 55 | |
Eric Biggers | fde69fb | 2022-03-10 22:13:39 +0000 | [diff] [blame] | 56 | int result = format_volume(volume); |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 57 | |
| 58 | if (is_cache) { |
xunchang | 2239b9e | 2019-04-15 15:24:24 -0700 | [diff] [blame] | 59 | RestoreLogFilesAfterFormat(log_files); |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | return (result == 0); |
| 63 | } |
| 64 | |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 65 | bool WipeCache(const std::function<bool()>& confirm_func) { |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 66 | bool has_cache = volume_for_mount_point("/cache") != nullptr; |
| 67 | if (!has_cache) { |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 68 | // ui->Print("No /cache partition found.\n"); |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 69 | return false; |
| 70 | } |
| 71 | |
| 72 | if (confirm_func && !confirm_func()) { |
| 73 | return false; |
| 74 | } |
| 75 | |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 76 | // ui->Print("\n-- Wiping cache...\n"); |
bigbiff | 75b9423 | 2021-11-11 17:34:34 -0500 | [diff] [blame] | 77 | // ui->SetBackground(RecoveryUI::ERASING); |
| 78 | // ui->SetProgressType(RecoveryUI::INDETERMINATE); |
Tianjie | 32b4e72 | 2021-03-02 16:42:07 -0800 | [diff] [blame] | 79 | |
bigbiff | 984fa15 | 2021-11-21 14:48:57 -0500 | [diff] [blame] | 80 | bool success = EraseVolume("/cache", false); |
bigbiff | 8b83b2e | 2021-11-20 15:56:23 -0500 | [diff] [blame] | 81 | // ui->Print("Cache wipe %s.\n", success ? "complete" : "failed"); |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 82 | return success; |
| 83 | } |
| 84 | |
xunchang | 388d253 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 85 | bool WipeData(Device* device, bool convert_fbe) { |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 86 | // RecoveryUI* ui = device->GetUI(); |
| 87 | // ui->Print("\n-- Wiping data...\n"); |
bigbiff | 75b9423 | 2021-11-11 17:34:34 -0500 | [diff] [blame] | 88 | // ui->SetBackground(RecoveryUI::ERASING); |
| 89 | // ui->SetProgressType(RecoveryUI::INDETERMINATE); |
David Anderson | 89d2d05 | 2019-10-15 13:22:20 -0700 | [diff] [blame] | 90 | |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 91 | // if (!FinishPendingSnapshotMerges(device)) { |
| 92 | // ui->Print("Unable to check update status or complete merge, cannot wipe partitions.\n"); |
| 93 | // return false; |
| 94 | // } |
David Anderson | 89d2d05 | 2019-10-15 13:22:20 -0700 | [diff] [blame] | 95 | |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 96 | bool success = device->PreWipeData(); |
| 97 | if (success) { |
bigbiff | 49551a2 | 2023-12-24 15:24:13 -0500 | [diff] [blame^] | 98 | success &= EraseVolume(DATA_ROOT); |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 99 | bool has_cache = volume_for_mount_point("/cache") != nullptr; |
| 100 | if (has_cache) { |
bigbiff | 49551a2 | 2023-12-24 15:24:13 -0500 | [diff] [blame^] | 101 | success &= EraseVolume(CACHE_ROOT); |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 102 | } |
| 103 | if (volume_for_mount_point(METADATA_ROOT) != nullptr) { |
bigbiff | 49551a2 | 2023-12-24 15:24:13 -0500 | [diff] [blame^] | 104 | success &= EraseVolume(METADATA_ROOT); |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 105 | } |
| 106 | } |
Florian Mayer | 21d50b2 | 2022-06-23 13:36:21 -0700 | [diff] [blame] | 107 | ui->Print("Resetting memtag message...\n"); |
| 108 | std::string err; |
| 109 | if (!WriteMiscMemtagMessage({}, &err)) { |
| 110 | ui->Print("Failed to reset memtag message: %s\n", err.c_str()); |
| 111 | success = false; |
| 112 | } |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 113 | if (success) { |
| 114 | success &= device->PostWipeData(); |
| 115 | } |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 116 | // ui->Print("Data wipe %s.\n", success ? "complete" : "failed"); |
xunchang | 316e971 | 2019-04-12 16:22:15 -0700 | [diff] [blame] | 117 | return success; |
Tao Bao | e3f09a7 | 2019-10-01 11:55:36 -0700 | [diff] [blame] | 118 | } |