Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 1 | /* |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 2 | Copyright 2014 to 2020 TeamWin |
Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 3 | This file is part of TWRP/TeamWin Recovery Project. |
| 4 | |
| 5 | TWRP is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by |
| 7 | the Free Software Foundation, either version 3 of the License, or |
| 8 | (at your option) any later version. |
| 9 | |
| 10 | TWRP is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | GNU General Public License for more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License |
| 16 | along with TWRP. If not, see <http://www.gnu.org/licenses/>. |
| 17 | */ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 18 | |
| 19 | #include <stdio.h> |
| 20 | #include <stdlib.h> |
| 21 | #include <string.h> |
| 22 | #include <sys/stat.h> |
| 23 | #include <sys/vfs.h> |
| 24 | #include <unistd.h> |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 25 | #include <map> |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 26 | #include <vector> |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 27 | #include <dirent.h> |
| 28 | #include <time.h> |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 29 | #include <errno.h> |
| 30 | #include <fcntl.h> |
bigbiff | 25d25b9 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 31 | #include <grp.h> |
| 32 | #include <pwd.h> |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 33 | #include <zlib.h> |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 34 | #include <iostream> |
| 35 | #include <iomanip> |
Ethan Yonker | 8613dc0 | 2014-09-11 09:28:20 -0500 | [diff] [blame] | 36 | #include <sys/wait.h> |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 37 | #include <linux/fs.h> |
| 38 | #include <sys/mount.h> |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 39 | |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 40 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 41 | #include <sys/poll.h> |
| 42 | #include <sys/socket.h> |
| 43 | #include <linux/types.h> |
| 44 | #include <linux/netlink.h> |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 45 | #include <android-base/chrono_utils.h> |
| 46 | #include <android-base/file.h> |
| 47 | #include <android-base/logging.h> |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 48 | #include <android-base/properties.h> |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 49 | #include <android-base/strings.h> |
| 50 | #include <fstab/fstab.h> |
| 51 | #include <fs_avb/fs_avb.h> |
| 52 | #include <fs_mgr.h> |
| 53 | #include <fs_mgr_dm_linear.h> |
| 54 | #include <fs_mgr_overlayfs.h> |
| 55 | #include <libgsi/libgsi.h> |
| 56 | #include <liblp/liblp.h> |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 57 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 58 | #include "variables.h" |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 59 | #include "twcommon.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 60 | #include "partitions.hpp" |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 61 | #include "data.hpp" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 62 | #include "twrp-functions.hpp" |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 63 | #include "fixContexts.hpp" |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 64 | #include "exclude.hpp" |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 65 | #include "set_metadata.h" |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 66 | #include "tw_atomic.hpp" |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 67 | #include "gui/gui.hpp" |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 68 | #include "progresstracking.hpp" |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 69 | #include "twrpDigestDriver.hpp" |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 70 | #include "twrpRepacker.hpp" |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 71 | #include "adbbu/libtwadbbu.hpp" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 72 | |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 73 | #ifdef TW_HAS_MTP |
bigbiff bigbiff | af32bb9 | 2018-12-18 18:39:53 -0500 | [diff] [blame] | 74 | #ifdef TW_HAS_LEGACY_MTP |
| 75 | #include "mtp/legacy/mtp_MtpServer.hpp" |
| 76 | #include "mtp/legacy/twrpMtp.hpp" |
| 77 | #include "mtp/legacy/MtpMessage.hpp" |
| 78 | #else |
| 79 | #include "mtp/ffs/mtp_MtpServer.hpp" |
| 80 | #include "mtp/ffs/twrpMtp.hpp" |
| 81 | #include "mtp/ffs/MtpMessage.hpp" |
| 82 | #endif |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 83 | #endif |
| 84 | |
Dees Troy | 6f6441d | 2014-01-23 02:07:03 +0000 | [diff] [blame] | 85 | extern "C" { |
| 86 | #include "cutils/properties.h" |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 87 | #include "gui/gui.h" |
Dees Troy | 6f6441d | 2014-01-23 02:07:03 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 90 | #ifdef TW_INCLUDE_CRYPTO |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 91 | #include "crypto/fde/cryptfs.h" |
| 92 | #include "gui/rapidxml.hpp" |
| 93 | #include "gui/pages.hpp" |
| 94 | #ifdef TW_INCLUDE_FBE |
| 95 | #include "crypto/ext4crypt/Decrypt.h" |
| 96 | #ifdef TW_INCLUDE_FBE_METADATA_DECRYPT |
| 97 | #ifdef USE_FSCRYPT |
| 98 | #include "crypto/fscrypt/MetadataCrypt.h" |
| 99 | #else |
| 100 | #include "crypto/ext4crypt/MetadataCrypt.h" |
bigbiff | adc599e | 2020-05-28 19:36:30 +0000 | [diff] [blame] | 101 | #endif |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 102 | #endif |
| 103 | #endif |
| 104 | #ifdef TW_CRYPTO_USE_SYSTEM_VOLD |
| 105 | #include "crypto/vold_decrypt/vold_decrypt.h" |
| 106 | #endif |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 107 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 108 | |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 109 | #ifdef AB_OTA_UPDATER |
| 110 | #include <hardware/hardware.h> |
| 111 | #include <hardware/boot_control.h> |
| 112 | #endif |
| 113 | |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 114 | using android::fs_mgr::Fstab; |
| 115 | using android::fs_mgr::FstabEntry; |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 116 | |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 117 | extern bool datamedia; |
Noah Jacobson | 81d638d | 2019-04-28 00:10:07 -0400 | [diff] [blame^] | 118 | std::vector<users_struct> Users_List; |
| 119 | |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 120 | TWPartitionManager::TWPartitionManager(void) { |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 121 | mtp_was_enabled = false; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 122 | mtp_write_fd = -1; |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 123 | uevent_pfd.fd = -1; |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 124 | stop_backup.set_value(0); |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 125 | #ifdef AB_OTA_UPDATER |
| 126 | char slot_suffix[PROPERTY_VALUE_MAX]; |
Ethan Yonker | fefe591 | 2017-09-30 22:22:13 -0500 | [diff] [blame] | 127 | property_get("ro.boot.slot_suffix", slot_suffix, "error"); |
| 128 | if (strcmp(slot_suffix, "error") == 0) |
| 129 | property_get("ro.boot.slot", slot_suffix, "error"); |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 130 | Active_Slot_Display = ""; |
Ethan Yonker | fefe591 | 2017-09-30 22:22:13 -0500 | [diff] [blame] | 131 | if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0) |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 132 | Set_Active_Slot("A"); |
| 133 | else |
| 134 | Set_Active_Slot("B"); |
| 135 | #endif |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 136 | } |
| 137 | |
bigbiff | 8da46fa | 2020-09-08 16:42:34 -0400 | [diff] [blame] | 138 | int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 139 | FILE *fstabFile; |
| 140 | char fstab_line[MAX_FSTAB_LINE_LENGTH]; |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 141 | TWPartition* settings_partition = NULL; |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 142 | TWPartition* andsec_partition = NULL; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 143 | unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 144 | std::map<string, Flags_Map> twrp_flags; |
| 145 | |
| 146 | fstabFile = fopen("/etc/twrp.flags", "rt"); |
| 147 | if (fstabFile != NULL) { |
Ian Macdonald | 160e8d3 | 2020-09-29 20:47:31 +0200 | [diff] [blame] | 148 | LOGINFO("Reading /etc/twrp.flags\n"); |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 149 | while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) { |
| 150 | if (fstab_line[0] != '/') |
| 151 | continue; |
| 152 | |
| 153 | size_t line_size = strlen(fstab_line); |
| 154 | if (fstab_line[line_size - 1] != '\n') |
| 155 | fstab_line[line_size] = '\n'; |
| 156 | Flags_Map line_flags; |
| 157 | line_flags.Primary_Block_Device = ""; |
| 158 | line_flags.Alternate_Block_Device = ""; |
| 159 | line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH); |
| 160 | if (!line_flags.fstab_line) { |
| 161 | LOGERR("malloc error on line_flags.fstab_line\n"); |
| 162 | return false; |
| 163 | } |
| 164 | memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH); |
| 165 | bool found_separator = false; |
| 166 | char *fs_loc = NULL; |
| 167 | char *block_loc = NULL; |
| 168 | char *flags_loc = NULL; |
| 169 | size_t index, item_index = 0; |
| 170 | for (index = 0; index < line_size; index++) { |
| 171 | if (fstab_line[index] <= 32) { |
| 172 | fstab_line[index] = '\0'; |
| 173 | found_separator = true; |
| 174 | } else if (found_separator) { |
| 175 | if (item_index == 0) { |
| 176 | fs_loc = fstab_line + index; |
| 177 | } else if (item_index == 1) { |
| 178 | block_loc = fstab_line + index; |
| 179 | } else if (item_index > 1) { |
| 180 | char *ptr = fstab_line + index; |
| 181 | if (*ptr == '/') { |
| 182 | line_flags.Alternate_Block_Device = ptr; |
| 183 | } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) { |
| 184 | flags_loc = ptr; |
| 185 | // Once we find the flags=, we're done scanning the line |
| 186 | break; |
| 187 | } |
| 188 | } |
| 189 | found_separator = false; |
| 190 | item_index++; |
| 191 | } |
| 192 | } |
| 193 | if (block_loc) |
| 194 | line_flags.Primary_Block_Device = block_loc; |
| 195 | if (fs_loc) |
| 196 | line_flags.File_System = fs_loc; |
| 197 | if (flags_loc) |
| 198 | line_flags.Flags = flags_loc; |
| 199 | string Mount_Point = fstab_line; |
| 200 | twrp_flags[Mount_Point] = line_flags; |
| 201 | memset(fstab_line, 0, sizeof(fstab_line)); |
| 202 | } |
| 203 | fclose(fstabFile); |
| 204 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 205 | |
| 206 | fstabFile = fopen(Fstab_Filename.c_str(), "rt"); |
| 207 | if (fstabFile == NULL) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 208 | LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 209 | return false; |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 210 | } else |
| 211 | LOGINFO("Reading %s\n", Fstab_Filename.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 212 | |
| 213 | while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) { |
bigbiff | ee7b7ff | 2020-03-23 15:08:27 -0400 | [diff] [blame] | 214 | bool isSuper = Is_Super_Partition(fstab_line); |
| 215 | |
| 216 | if (!isSuper && fstab_line[0] != '/') |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 217 | continue; |
| 218 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 219 | if (strstr(fstab_line, "swap")) |
| 220 | continue; // Skip swap in recovery |
| 221 | |
| 222 | size_t line_size = strlen(fstab_line); |
| 223 | if (fstab_line[line_size - 1] != '\n') |
| 224 | fstab_line[line_size] = '\n'; |
Dees_Troy | 2a92358 | 2012-09-20 12:13:34 -0400 | [diff] [blame] | 225 | |
Matt Mower | 2b2dd15 | 2016-04-26 11:24:08 -0500 | [diff] [blame] | 226 | TWPartition* partition = new TWPartition(); |
bigbiff | 8da46fa | 2020-09-08 16:42:34 -0400 | [diff] [blame] | 227 | if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags)) |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 228 | Partitions.push_back(partition); |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 229 | else |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 230 | delete partition; |
Matt Mower | 2b2dd15 | 2016-04-26 11:24:08 -0500 | [diff] [blame] | 231 | |
| 232 | memset(fstab_line, 0, sizeof(fstab_line)); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 233 | } |
| 234 | fclose(fstabFile); |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 235 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 236 | if (twrp_flags.size() > 0) { |
| 237 | LOGINFO("Processing remaining twrp.flags\n"); |
| 238 | // Add any items from twrp.flags that did not exist in the recovery.fstab |
| 239 | for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) { |
| 240 | if (Find_Partition_By_Path(mapit->first) == NULL) { |
| 241 | TWPartition* partition = new TWPartition(); |
bigbiff | 8da46fa | 2020-09-08 16:42:34 -0400 | [diff] [blame] | 242 | if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL)) |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 243 | Partitions.push_back(partition); |
| 244 | else |
| 245 | delete partition; |
| 246 | } |
| 247 | if (mapit->second.fstab_line) |
| 248 | free(mapit->second.fstab_line); |
| 249 | mapit->second.fstab_line = NULL; |
| 250 | } |
| 251 | } |
Mohd Faraz | e3948ec | 2020-08-14 01:40:59 +0000 | [diff] [blame] | 252 | if (Get_Super_Status()) { |
| 253 | Setup_Super_Devices(); |
| 254 | } |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 255 | LOGINFO("Done processing fstab files\n"); |
| 256 | |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 257 | std::vector<TWPartition*>::iterator iter; |
| 258 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 259 | (*iter)->Partition_Post_Processing(Display_Error); |
| 260 | |
| 261 | if ((*iter)->Is_Storage) { |
| 262 | ++storageid; |
| 263 | (*iter)->MTP_Storage_ID = storageid; |
| 264 | } |
| 265 | |
| 266 | if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present) |
| 267 | settings_partition = (*iter); |
| 268 | else |
| 269 | (*iter)->Is_Settings_Storage = false; |
| 270 | |
| 271 | if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present) |
| 272 | andsec_partition = (*iter); |
| 273 | else |
| 274 | (*iter)->Has_Android_Secure = false; |
bigbiff | df8436b | 2020-08-30 16:22:34 -0400 | [diff] [blame] | 275 | |
Mohd Faraz | e3948ec | 2020-08-14 01:40:59 +0000 | [diff] [blame] | 276 | if (Is_Super_Partition(TWFunc::Remove_Beginning_Slash((*iter)->Get_Mount_Point()).c_str())) |
| 277 | Prepare_Super_Volume((*iter)); |
| 278 | } |
| 279 | |
| 280 | //Setup Apex before decryption |
| 281 | TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path()); |
| 282 | TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor"); |
| 283 | if (sys) { |
| 284 | if (sys->Get_Super_Status()) { |
| 285 | sys->Mount(true); |
| 286 | if (ven) { |
| 287 | ven->Mount(true); |
| 288 | } |
| 289 | twrpApex apex; |
| 290 | if (!apex.loadApexImages()) { |
| 291 | LOGERR("Unable to load apex images from %s\n", APEX_DIR); |
| 292 | property_set("twrp.apex.loaded", "false"); |
| 293 | } else { |
| 294 | property_set("twrp.apex.loaded", "true"); |
| 295 | } |
| 296 | } |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 297 | } |
| 298 | |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 299 | if (!datamedia && !settings_partition && Find_Partition_By_Path("/sdcard") == NULL && Find_Partition_By_Path("/internal_sd") == NULL && Find_Partition_By_Path("/internal_sdcard") == NULL && Find_Partition_By_Path("/emmc") == NULL) { |
| 300 | // Attempt to automatically identify /data/media emulated storage devices |
| 301 | TWPartition* Dat = Find_Partition_By_Path("/data"); |
| 302 | if (Dat) { |
| 303 | LOGINFO("Using automatic handling for /data/media emulated storage device.\n"); |
| 304 | datamedia = true; |
that | 9e0593e | 2014-10-08 00:01:24 +0200 | [diff] [blame] | 305 | Dat->Setup_Data_Media(); |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 306 | settings_partition = Dat; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 307 | // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID |
| 308 | ++storageid; |
| 309 | Dat->MTP_Storage_ID = storageid; |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 310 | } |
| 311 | } |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 312 | if (!settings_partition) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 313 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 314 | if ((*iter)->Is_Storage) { |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 315 | settings_partition = (*iter); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 316 | break; |
| 317 | } |
| 318 | } |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 319 | if (!settings_partition) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 320 | LOGERR("Unable to locate storage partition for storing settings file.\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 321 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 322 | if (!Write_Fstab()) { |
| 323 | if (Display_Error) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 324 | LOGERR("Error creating fstab\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 325 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 326 | LOGINFO("Error creating fstab\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 327 | } |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 328 | |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 329 | if (andsec_partition) { |
| 330 | Setup_Android_Secure_Location(andsec_partition); |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 331 | } else if (settings_partition) { |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 332 | Setup_Android_Secure_Location(settings_partition); |
| 333 | } |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 334 | if (settings_partition) { |
| 335 | Setup_Settings_Storage_Partition(settings_partition); |
| 336 | } |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 337 | |
Mohd Faraz | e3948ec | 2020-08-14 01:40:59 +0000 | [diff] [blame] | 338 | #ifdef TW_INCLUDE_CRYPTO |
| 339 | DataManager::SetValue(TW_IS_ENCRYPTED, 1); |
| 340 | Decrypt_Data(); |
| 341 | #endif |
| 342 | |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 343 | Update_System_Details(); |
Mohd Faraz | e3948ec | 2020-08-14 01:40:59 +0000 | [diff] [blame] | 344 | if (Get_Super_Status()) |
| 345 | Setup_Super_Partition(); |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 346 | UnMount_Main_Partitions(); |
| 347 | #ifdef AB_OTA_UPDATER |
| 348 | DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display()); |
| 349 | #endif |
| 350 | setup_uevent(); |
| 351 | return true; |
| 352 | } |
| 353 | |
| 354 | int TWPartitionManager::Write_Fstab(void) { |
| 355 | FILE *fp; |
| 356 | std::vector<TWPartition*>::iterator iter; |
| 357 | string Line; |
| 358 | |
| 359 | fp = fopen("/etc/fstab", "w"); |
| 360 | if (fp == NULL) { |
| 361 | LOGINFO("Can not open /etc/fstab.\n"); |
| 362 | return false; |
| 363 | } |
| 364 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 365 | if ((*iter)->Can_Be_Mounted) { |
Mohd Faraz | 2a1e375 | 2020-09-30 10:55:48 +0530 | [diff] [blame] | 366 | Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + |
| 367 | ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n"; |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 368 | fputs(Line.c_str(), fp); |
| 369 | } |
| 370 | // Handle subpartition tracking |
| 371 | if ((*iter)->Is_SubPartition) { |
| 372 | TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of); |
| 373 | if (ParentPartition) |
| 374 | ParentPartition->Has_SubPartition = true; |
| 375 | else |
| 376 | LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str()); |
| 377 | } |
| 378 | } |
| 379 | fclose(fp); |
| 380 | return true; |
| 381 | } |
| 382 | |
| 383 | void TWPartitionManager::Decrypt_Data() { |
| 384 | #ifdef TW_INCLUDE_CRYPTO |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 385 | TWPartition* Decrypt_Data = Find_Partition_By_Path("/data"); |
| 386 | if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) { |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 387 | if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) { |
| 388 | #ifdef TW_INCLUDE_FBE_METADATA_DECRYPT |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 389 | #ifdef USE_FSCRYPT |
| 390 | if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) { |
Mohd Faraz | e3948ec | 2020-08-14 01:40:59 +0000 | [diff] [blame] | 391 | std::string crypto_blkdev =android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error"); |
| 392 | Decrypt_Data->Decrypted_Block_Device = crypto_blkdev; |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 393 | LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str()); |
| 394 | #else |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 395 | if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) { |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 396 | LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", |
| 397 | Decrypt_Data->Decrypted_Block_Device.c_str()); |
| 398 | #endif |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 399 | property_set("ro.crypto.state", "encrypted"); |
| 400 | Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly |
| 401 | int retry_count = 10; |
| 402 | while (!Decrypt_Data->Mount(false) && --retry_count) |
| 403 | usleep(500); |
| 404 | if (Decrypt_Data->Mount(false)) { |
bigbiff bigbiff | 0be03b3 | 2019-08-27 20:50:31 -0400 | [diff] [blame] | 405 | if (!Decrypt_Data->Decrypt_FBE_DE()) { |
mauronofrio | fc79aa6 | 2019-11-23 23:13:04 +0100 | [diff] [blame] | 406 | char wrappedvalue[PROPERTY_VALUE_MAX]; |
| 407 | property_get("fbe.data.wrappedkey", wrappedvalue, ""); |
| 408 | std::string wrappedkeyvalue(wrappedvalue); |
| 409 | if (wrappedkeyvalue == "true") { |
bigbiff bigbiff | 0be03b3 | 2019-08-27 20:50:31 -0400 | [diff] [blame] | 410 | LOGERR("Unable to decrypt FBE device\n"); |
mauronofrio | fc79aa6 | 2019-11-23 23:13:04 +0100 | [diff] [blame] | 411 | } else { |
| 412 | LOGINFO("Trying wrapped key.\n"); |
| 413 | property_set("fbe.data.wrappedkey", "true"); |
| 414 | if (!Decrypt_Data->Decrypt_FBE_DE()) { |
| 415 | LOGERR("Unable to decrypt FBE device\n"); |
| 416 | } |
bigbiff bigbiff | 0be03b3 | 2019-08-27 20:50:31 -0400 | [diff] [blame] | 417 | } |
| 418 | } |
| 419 | |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 420 | } else { |
| 421 | LOGINFO("Failed to mount data after metadata decrypt\n"); |
| 422 | } |
| 423 | } else { |
| 424 | LOGINFO("Unable to decrypt metadata encryption\n"); |
| 425 | } |
| 426 | #else |
| 427 | LOGERR("Metadata FBE decrypt support not present in this TWRP\n"); |
| 428 | #endif |
| 429 | } |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 430 | if (Decrypt_Data->Is_FBE) { |
| 431 | if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) { |
| 432 | if (Decrypt_Device("!") == 0) { |
| 433 | gui_msg("decrypt_success=Successfully decrypted with default password."); |
| 434 | DataManager::SetValue(TW_IS_ENCRYPTED, 0); |
| 435 | } else { |
| 436 | gui_err("unable_to_decrypt=Unable to decrypt with default password."); |
| 437 | } |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 438 | } |
| 439 | } else { |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 440 | int password_type = cryptfs_get_password_type(); |
| 441 | if (password_type == CRYPT_TYPE_DEFAULT) { |
| 442 | LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n"); |
| 443 | if (Decrypt_Device("default_password") == 0) { |
| 444 | gui_msg("decrypt_success=Successfully decrypted with default password."); |
| 445 | DataManager::SetValue(TW_IS_ENCRYPTED, 0); |
| 446 | } else { |
| 447 | gui_err("unable_to_decrypt=Unable to decrypt with default password."); |
| 448 | } |
| 449 | } else { |
| 450 | DataManager::SetValue("TW_CRYPTO_TYPE", password_type); |
Noah Jacobson | 81d638d | 2019-04-28 00:10:07 -0400 | [diff] [blame^] | 451 | DataManager::SetValue("tw_crypto_pwtype_0", password_type); |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 452 | } |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 453 | } |
| 454 | } |
Noah Jacobson | 81d638d | 2019-04-28 00:10:07 -0400 | [diff] [blame^] | 455 | if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && |
| 456 | Decrypt_Data->Mount(false)) { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 457 | Decrypt_Adopted(); |
| 458 | } |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 459 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 460 | } |
| 461 | |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 462 | void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) { |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 463 | DataManager::SetValue("tw_settings_path", Part->Storage_Path); |
| 464 | DataManager::SetValue("tw_storage_path", Part->Storage_Path); |
| 465 | LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str()); |
| 466 | } |
| 467 | |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 468 | void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) { |
| 469 | if (Part->Has_Android_Secure) |
| 470 | Part->Setup_AndSec(); |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 471 | else if (!datamedia) |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 472 | Part->Setup_AndSec(); |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 473 | } |
| 474 | |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 475 | void TWPartitionManager::Output_Partition_Logging(void) { |
| 476 | std::vector<TWPartition*>::iterator iter; |
| 477 | |
| 478 | printf("\n\nPartition Logs:\n"); |
| 479 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) |
| 480 | Output_Partition((*iter)); |
| 481 | } |
| 482 | |
| 483 | void TWPartitionManager::Output_Partition(TWPartition* Part) { |
| 484 | unsigned long long mb = 1048576; |
| 485 | |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 486 | printf("%s | %s | Size: %iMB", Part->Mount_Point.c_str(), Part->Actual_Block_Device.c_str(), (int)(Part->Size / mb)); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 487 | if (Part->Can_Be_Mounted) { |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 488 | printf(" Used: %iMB Free: %iMB Backup Size: %iMB", (int)(Part->Used / mb), (int)(Part->Free / mb), (int)(Part->Backup_Size / mb)); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 489 | } |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 490 | printf("\n Flags: "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 491 | if (Part->Can_Be_Mounted) |
| 492 | printf("Can_Be_Mounted "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 493 | if (Part->Can_Be_Wiped) |
| 494 | printf("Can_Be_Wiped "); |
Hashcode | dabfd49 | 2013-08-29 22:45:30 -0700 | [diff] [blame] | 495 | if (Part->Use_Rm_Rf) |
| 496 | printf("Use_Rm_Rf "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 497 | if (Part->Can_Be_Backed_Up) |
| 498 | printf("Can_Be_Backed_Up "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 499 | if (Part->Wipe_During_Factory_Reset) |
| 500 | printf("Wipe_During_Factory_Reset "); |
| 501 | if (Part->Wipe_Available_in_GUI) |
| 502 | printf("Wipe_Available_in_GUI "); |
| 503 | if (Part->Is_SubPartition) |
| 504 | printf("Is_SubPartition "); |
| 505 | if (Part->Has_SubPartition) |
| 506 | printf("Has_SubPartition "); |
| 507 | if (Part->Removable) |
| 508 | printf("Removable "); |
| 509 | if (Part->Is_Present) |
| 510 | printf("IsPresent "); |
| 511 | if (Part->Can_Be_Encrypted) |
| 512 | printf("Can_Be_Encrypted "); |
| 513 | if (Part->Is_Encrypted) |
| 514 | printf("Is_Encrypted "); |
| 515 | if (Part->Is_Decrypted) |
| 516 | printf("Is_Decrypted "); |
| 517 | if (Part->Has_Data_Media) |
| 518 | printf("Has_Data_Media "); |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 519 | if (Part->Can_Encrypt_Backup) |
| 520 | printf("Can_Encrypt_Backup "); |
| 521 | if (Part->Use_Userdata_Encryption) |
| 522 | printf("Use_Userdata_Encryption "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 523 | if (Part->Has_Android_Secure) |
| 524 | printf("Has_Android_Secure "); |
| 525 | if (Part->Is_Storage) |
| 526 | printf("Is_Storage "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 527 | if (Part->Is_Settings_Storage) |
| 528 | printf("Is_Settings_Storage "); |
Dees_Troy | 68cab49 | 2012-12-12 19:29:35 +0000 | [diff] [blame] | 529 | if (Part->Ignore_Blkid) |
| 530 | printf("Ignore_Blkid "); |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 531 | if (Part->Mount_To_Decrypt) |
| 532 | printf("Mount_To_Decrypt "); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 533 | if (Part->Can_Flash_Img) |
| 534 | printf("Can_Flash_Img "); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 535 | if (Part->Is_Adopted_Storage) |
| 536 | printf("Is_Adopted_Storage "); |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 537 | if (Part->SlotSelect) |
| 538 | printf("SlotSelect "); |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 539 | if (Part->Mount_Read_Only) |
| 540 | printf("Mount_Read_Only "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 541 | printf("\n"); |
| 542 | if (!Part->SubPartition_Of.empty()) |
| 543 | printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str()); |
| 544 | if (!Part->Symlink_Path.empty()) |
| 545 | printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str()); |
| 546 | if (!Part->Symlink_Mount_Point.empty()) |
| 547 | printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str()); |
| 548 | if (!Part->Primary_Block_Device.empty()) |
| 549 | printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str()); |
| 550 | if (!Part->Alternate_Block_Device.empty()) |
| 551 | printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str()); |
| 552 | if (!Part->Decrypted_Block_Device.empty()) |
| 553 | printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str()); |
dianlujitao | 4879b37 | 2018-12-03 18:45:47 +0800 | [diff] [blame] | 554 | if (!Part->Crypto_Key_Location.empty()) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 555 | printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str()); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 556 | if (Part->Length != 0) |
| 557 | printf(" Length: %i\n", Part->Length); |
| 558 | if (!Part->Display_Name.empty()) |
| 559 | printf(" Display_Name: %s\n", Part->Display_Name.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 560 | if (!Part->Storage_Name.empty()) |
| 561 | printf(" Storage_Name: %s\n", Part->Storage_Name.c_str()); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 562 | if (!Part->Backup_Path.empty()) |
| 563 | printf(" Backup_Path: %s\n", Part->Backup_Path.c_str()); |
| 564 | if (!Part->Backup_Name.empty()) |
| 565 | printf(" Backup_Name: %s\n", Part->Backup_Name.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 566 | if (!Part->Backup_Display_Name.empty()) |
| 567 | printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str()); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 568 | if (!Part->Backup_FileName.empty()) |
| 569 | printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str()); |
| 570 | if (!Part->Storage_Path.empty()) |
| 571 | printf(" Storage_Path: %s\n", Part->Storage_Path.c_str()); |
| 572 | if (!Part->Current_File_System.empty()) |
| 573 | printf(" Current_File_System: %s\n", Part->Current_File_System.c_str()); |
| 574 | if (!Part->Fstab_File_System.empty()) |
| 575 | printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str()); |
| 576 | if (Part->Format_Block_Size != 0) |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 577 | printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size); |
Dees_Troy | 094207a | 2012-09-26 12:00:39 -0400 | [diff] [blame] | 578 | if (!Part->MTD_Name.empty()) |
| 579 | printf(" MTD_Name: %s\n", Part->MTD_Name.c_str()); |
Matt Mower | 029a82d | 2017-01-08 13:12:38 -0600 | [diff] [blame] | 580 | printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str()); |
Hashcode | 62bd9e0 | 2013-11-19 21:59:42 -0800 | [diff] [blame] | 581 | if (Part->Mount_Flags || !Part->Mount_Options.empty()) |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 582 | printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str()); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 583 | if (Part->MTP_Storage_ID) |
| 584 | printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID); |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 585 | if (!Part->Key_Directory.empty()) |
| 586 | printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str()); |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 587 | printf("\n"); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 588 | } |
| 589 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 590 | int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 591 | std::vector<TWPartition*>::iterator iter; |
| 592 | int ret = false; |
| 593 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 594 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 595 | |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 596 | if (Local_Path == "/tmp" || Local_Path == "/") |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 597 | return true; |
| 598 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 599 | // Iterate through all partitions |
| 600 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 601 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 602 | ret = (*iter)->Mount(Display_Error); |
| 603 | found = true; |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 604 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 605 | (*iter)->Mount(Display_Error); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 606 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 607 | } |
| 608 | if (found) { |
| 609 | return ret; |
| 610 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 611 | gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path)); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 612 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 613 | LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 614 | } |
| 615 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 616 | } |
| 617 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 618 | int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 619 | std::vector<TWPartition*>::iterator iter; |
| 620 | int ret = false; |
| 621 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 622 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 623 | |
| 624 | // Iterate through all partitions |
| 625 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 626 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 627 | ret = (*iter)->UnMount(Display_Error); |
| 628 | found = true; |
| 629 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 630 | (*iter)->UnMount(Display_Error); |
| 631 | } |
| 632 | } |
| 633 | if (found) { |
| 634 | return ret; |
| 635 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 636 | gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path)); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 637 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 638 | LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 639 | } |
| 640 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 641 | } |
| 642 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 643 | int TWPartitionManager::Is_Mounted_By_Path(string Path) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 644 | TWPartition* Part = Find_Partition_By_Path(Path); |
| 645 | |
| 646 | if (Part) |
| 647 | return Part->Is_Mounted(); |
| 648 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 649 | LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str()); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 650 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 651 | } |
| 652 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 653 | int TWPartitionManager::Mount_Current_Storage(bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 654 | string current_storage_path = DataManager::GetCurrentStoragePath(); |
| 655 | |
| 656 | if (Mount_By_Path(current_storage_path, Display_Error)) { |
| 657 | TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path); |
| 658 | if (FreeStorage) |
| 659 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU)); |
| 660 | return true; |
| 661 | } |
| 662 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 663 | } |
| 664 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 665 | int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) { |
| 666 | return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error); |
| 667 | } |
| 668 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 669 | TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 670 | std::vector<TWPartition*>::iterator iter; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 671 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 672 | |
dianlujitao | b76a73a | 2020-04-30 20:33:20 +0800 | [diff] [blame] | 673 | if (Local_Path == "/system") |
| 674 | Local_Path = Get_Android_Root_Path(); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 675 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 676 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 677 | return (*iter); |
| 678 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 679 | return NULL; |
| 680 | } |
| 681 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 682 | TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) { |
| 683 | std::vector<TWPartition*>::iterator iter; |
| 684 | |
| 685 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 686 | if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device)) |
| 687 | return (*iter); |
| 688 | } |
| 689 | return NULL; |
| 690 | } |
| 691 | |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 692 | int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) { |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 693 | // Check the backup name to ensure that it is the correct size and contains only valid characters |
| 694 | // and that a backup with that name doesn't already exist |
| 695 | char backup_name[MAX_BACKUP_NAME_LEN]; |
| 696 | char backup_loc[255], tw_image_dir[255]; |
| 697 | int copy_size; |
| 698 | int index, cur_char; |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 699 | string Backup_Loc; |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 700 | |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 701 | copy_size = Backup_Name.size(); |
| 702 | // Check size |
| 703 | if (copy_size > MAX_BACKUP_NAME_LEN) { |
| 704 | if (Display_Error) |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 705 | gui_err("backup_name_len=Backup name is too long."); |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 706 | return -2; |
| 707 | } |
| 708 | |
| 709 | // Check each character |
| 710 | strncpy(backup_name, Backup_Name.c_str(), copy_size); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 711 | if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0) |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 712 | return 0; // A "0" (zero) means to use the current timestamp for the backup name |
| 713 | for (index=0; index<copy_size; index++) { |
| 714 | cur_char = (int)backup_name[index]; |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 715 | if (cur_char == 32 || (cur_char >= 48 && cur_char <= 57) || (cur_char >= 65 && cur_char <= 91) || cur_char == 93 || cur_char == 95 || (cur_char >= 97 && cur_char <= 123) || cur_char == 125 || cur_char == 45 || cur_char == 46) { |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 716 | // These are valid characters |
| 717 | // Numbers |
| 718 | // Upper case letters |
| 719 | // Lower case letters |
| 720 | // Space |
| 721 | // and -_.{}[] |
| 722 | } else { |
| 723 | if (Display_Error) |
Ethan Yonker | 4adc33e | 2016-01-22 16:07:11 -0600 | [diff] [blame] | 724 | gui_msg(Msg(msg::kError, "backup_name_invalid=Backup name '{1}' contains invalid character: '{1}'")(Backup_Name)((char)cur_char)); |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 725 | return -3; |
| 726 | } |
| 727 | } |
| 728 | |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 729 | if (Must_Be_Unique) { |
| 730 | // Check to make sure that a backup with this name doesn't already exist |
| 731 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc); |
| 732 | strcpy(backup_loc, Backup_Loc.c_str()); |
| 733 | sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str()); |
| 734 | if (TWFunc::Path_Exists(tw_image_dir)) { |
| 735 | if (Display_Error) |
| 736 | gui_err("backup_name_exists=A backup with that name already exists!"); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 737 | |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 738 | return -4; |
| 739 | } |
| 740 | // Backup is unique |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 741 | } |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 742 | // No problems found |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 743 | return 0; |
| 744 | } |
| 745 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 746 | bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) { |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 747 | time_t start, stop; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 748 | int use_compression; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 749 | string backup_log = part_settings->Backup_Folder + "/recovery.log"; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 750 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 751 | if (part_settings->Part == NULL) |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 752 | return true; |
| 753 | |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 754 | DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 755 | |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 756 | TWFunc::SetPerformanceMode(true); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 757 | time(&start); |
| 758 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 759 | if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) { |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 760 | sync(); |
| 761 | sync(); |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 762 | string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName; |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 763 | if (!part_settings->adbbackup && part_settings->generate_digest) { |
| 764 | if (!twrpDigestDriver::Make_Digest(Full_Filename)) |
| 765 | goto backup_error; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 766 | } |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 767 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 768 | if (part_settings->Part->Has_SubPartition) { |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 769 | std::vector<TWPartition*>::iterator subpart; |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 770 | TWPartition *parentPart = part_settings->Part; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 771 | |
| 772 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 773 | if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) { |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 774 | part_settings->Part = *subpart; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 775 | if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) { |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 776 | goto backup_error; |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 777 | } |
Dees_Troy | 2727b99 | 2013-08-14 20:09:30 +0000 | [diff] [blame] | 778 | sync(); |
| 779 | sync(); |
bigbiff bigbiff | f5955b1 | 2019-05-18 17:28:58 -0400 | [diff] [blame] | 780 | string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 781 | if (!part_settings->adbbackup && part_settings->generate_digest) { |
| 782 | if (!twrpDigestDriver::Make_Digest(Full_Filename)) { |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 783 | goto backup_error; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 784 | } |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 785 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 786 | } |
| 787 | } |
| 788 | } |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 789 | |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 790 | time(&stop); |
that | 203bcc9 | 2015-05-09 17:27:33 +0200 | [diff] [blame] | 791 | int backup_time = (int) difftime(stop, start); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 792 | LOGINFO("Partition Backup time: %d\n", backup_time); |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 793 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 794 | if (part_settings->Part->Backup_Method == BM_FILES) { |
| 795 | part_settings->file_time += backup_time; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 796 | } else { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 797 | part_settings->img_time += backup_time; |
| 798 | |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 799 | } |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 800 | |
Matt Mower | 0289955 | 2016-12-30 18:13:51 -0600 | [diff] [blame] | 801 | TWFunc::SetPerformanceMode(false); |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 802 | return true; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 803 | } |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 804 | backup_error: |
| 805 | Clean_Backup_Folder(part_settings->Backup_Folder); |
| 806 | TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644); |
| 807 | tw_set_default_metadata(backup_log.c_str()); |
| 808 | TWFunc::SetPerformanceMode(false); |
| 809 | return false; |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 810 | } |
| 811 | |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 812 | void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) { |
| 813 | DIR *d = opendir(Backup_Folder.c_str()); |
| 814 | struct dirent *p; |
| 815 | int r; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 816 | vector<string> ext; |
| 817 | |
| 818 | //extensions we should delete when cleaning |
| 819 | ext.push_back("win"); |
| 820 | ext.push_back("md5"); |
| 821 | ext.push_back("sha2"); |
| 822 | ext.push_back("info"); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 823 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 824 | gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder."); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 825 | |
| 826 | if (d == NULL) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 827 | gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno))); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 828 | return; |
| 829 | } |
| 830 | |
Matt Mower | 2b18a53 | 2015-02-20 16:58:05 -0600 | [diff] [blame] | 831 | while ((p = readdir(d))) { |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 832 | if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, "..")) |
| 833 | continue; |
| 834 | |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 835 | string path = Backup_Folder + "/" + p->d_name; |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 836 | |
| 837 | size_t dot = path.find_last_of(".") + 1; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 838 | for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) { |
| 839 | if (path.substr(dot) == *i) { |
| 840 | r = unlink(path.c_str()); |
| 841 | if (r != 0) |
| 842 | LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno)); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 843 | } |
| 844 | } |
| 845 | } |
| 846 | closedir(d); |
| 847 | } |
| 848 | |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 849 | int TWPartitionManager::Check_Backup_Cancel() { |
| 850 | return stop_backup.get_value(); |
| 851 | } |
| 852 | |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 853 | int TWPartitionManager::Cancel_Backup() { |
| 854 | string Backup_Folder, Backup_Name, Full_Backup_Path; |
| 855 | |
| 856 | stop_backup.set_value(1); |
| 857 | |
| 858 | if (tar_fork_pid != 0) { |
| 859 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
| 860 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder); |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 861 | Full_Backup_Path = Backup_Folder + "/" + Backup_Name; |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 862 | LOGINFO("Killing pid: %d\n", tar_fork_pid); |
| 863 | kill(tar_fork_pid, SIGUSR2); |
| 864 | while (kill(tar_fork_pid, 0) == 0) { |
| 865 | usleep(1000); |
| 866 | } |
| 867 | LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n"); |
| 868 | LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str()); |
| 869 | TWFunc::removeDir(Full_Backup_Path, false); |
| 870 | tar_fork_pid = 0; |
| 871 | } |
| 872 | |
| 873 | return 0; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 874 | } |
| 875 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 876 | int TWPartitionManager::Run_Backup(bool adbbackup) { |
| 877 | PartitionSettings part_settings; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 878 | int partition_count = 0, disable_free_space_check = 0, skip_digest = 0; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 879 | string Backup_Name, Backup_List, backup_path; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 880 | unsigned long long total_bytes = 0, free_space = 0; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 881 | TWPartition* storage = NULL; |
| 882 | struct tm *t; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 883 | time_t seconds, total_start, total_stop; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 884 | size_t start_pos = 0, end_pos = 0; |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 885 | stop_backup.set_value(0); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 886 | seconds = time(0); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 887 | t = localtime(&seconds); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 888 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 889 | part_settings.img_bytes_remaining = 0; |
| 890 | part_settings.file_bytes_remaining = 0; |
| 891 | part_settings.img_time = 0; |
| 892 | part_settings.file_time = 0; |
| 893 | part_settings.img_bytes = 0; |
| 894 | part_settings.file_bytes = 0; |
| 895 | part_settings.PM_Method = PM_BACKUP; |
| 896 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 897 | part_settings.adbbackup = adbbackup; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 898 | time(&total_start); |
| 899 | |
| 900 | Update_System_Details(); |
| 901 | |
| 902 | if (!Mount_Current_Storage(true)) |
| 903 | return false; |
| 904 | |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 905 | DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest); |
| 906 | if (skip_digest == 0) |
| 907 | part_settings.generate_digest = true; |
Dees_Troy | c5865ab | 2012-09-24 15:08:04 -0400 | [diff] [blame] | 908 | else |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 909 | part_settings.generate_digest = false; |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 910 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 911 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder); |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 912 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
| 913 | if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) { |
| 914 | Backup_Name = TWFunc::Get_Current_Date(); |
| 915 | } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) { |
Dees Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 916 | TWFunc::Auto_Generate_Backup_Name(); |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 917 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 918 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 919 | |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 920 | LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str()); |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 921 | part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 922 | |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 923 | LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str()); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 924 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 925 | LOGINFO("Calculating backup details...\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 926 | DataManager::GetValue("tw_backup_list", Backup_List); |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 927 | LOGINFO("Backup_List: %s\n", Backup_List.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 928 | if (!Backup_List.empty()) { |
| 929 | end_pos = Backup_List.find(";", start_pos); |
| 930 | while (end_pos != string::npos && start_pos < Backup_List.size()) { |
| 931 | backup_path = Backup_List.substr(start_pos, end_pos - start_pos); |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 932 | LOGINFO("backup_path: %s\n", backup_path.c_str()); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 933 | part_settings.Part = Find_Partition_By_Path(backup_path); |
| 934 | if (part_settings.Part != NULL) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 935 | partition_count++; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 936 | if (part_settings.Part->Backup_Method == BM_FILES) |
| 937 | part_settings.file_bytes += part_settings.Part->Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 938 | else |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 939 | part_settings.img_bytes += part_settings.Part->Backup_Size; |
| 940 | if (part_settings.Part->Has_SubPartition) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 941 | std::vector<TWPartition*>::iterator subpart; |
| 942 | |
| 943 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 944 | if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == part_settings.Part->Mount_Point) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 945 | partition_count++; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 946 | if ((*subpart)->Backup_Method == BM_FILES) |
| 947 | part_settings.file_bytes += (*subpart)->Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 948 | else |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 949 | part_settings.img_bytes += (*subpart)->Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 950 | } |
| 951 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 952 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 953 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 954 | gui_msg(Msg(msg::kError, "unable_to_locate_partition=Unable to locate '{1}' partition for backup calculations.")(backup_path)); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 955 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 956 | start_pos = end_pos + 1; |
| 957 | end_pos = Backup_List.find(";", start_pos); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 958 | } |
| 959 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 960 | |
| 961 | if (partition_count == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 962 | gui_msg("no_partition_selected=No partitions selected for backup."); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 963 | return false; |
| 964 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 965 | if (adbbackup) { |
| 966 | if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) { |
| 967 | return false; |
| 968 | } |
| 969 | } |
| 970 | total_bytes = part_settings.file_bytes + part_settings.img_bytes; |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 971 | ProgressTracking progress(total_bytes); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 972 | part_settings.progress = &progress; |
| 973 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 974 | gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count)); |
| 975 | gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024)); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 976 | storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath()); |
| 977 | if (storage != NULL) { |
| 978 | free_space = storage->Free; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 979 | gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024)); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 980 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 981 | gui_err("unable_locate_storage=Unable to locate storage device."); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 982 | return false; |
| 983 | } |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 984 | |
Matt Mower | bfccfb8 | 2016-04-25 23:22:31 -0500 | [diff] [blame] | 985 | DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 986 | |
| 987 | if (adbbackup) |
| 988 | disable_free_space_check = true; |
| 989 | |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 990 | if (!disable_free_space_check) { |
| 991 | if (free_space - (32 * 1024 * 1024) < total_bytes) { |
| 992 | // We require an extra 32MB just in case |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 993 | gui_err("no_space=Not enough free space on storage."); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 994 | return false; |
| 995 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 996 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 997 | part_settings.img_bytes_remaining = part_settings.img_bytes; |
| 998 | part_settings.file_bytes_remaining = part_settings.file_bytes; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 999 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1000 | gui_msg("backup_started=[BACKUP STARTED]"); |
bigbiff bigbiff | cdd97c7 | 2019-03-29 19:12:33 -0400 | [diff] [blame] | 1001 | |
| 1002 | int is_decrypted = 0; |
| 1003 | int is_encrypted = 0; |
| 1004 | |
| 1005 | DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted); |
| 1006 | DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted); |
| 1007 | if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) { |
| 1008 | gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder)); |
| 1009 | if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) { |
| 1010 | gui_err("fail_backup_folder=Failed to make backup folder."); |
| 1011 | return false; |
| 1012 | } |
Dees_Troy | d4b22b0 | 2013-01-18 17:17:58 +0000 | [diff] [blame] | 1013 | } |
| 1014 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1015 | DataManager::SetProgress(0.0); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1016 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1017 | start_pos = 0; |
| 1018 | end_pos = Backup_List.find(";", start_pos); |
| 1019 | while (end_pos != string::npos && start_pos < Backup_List.size()) { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1020 | if (stop_backup.get_value() != 0) |
| 1021 | return -1; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1022 | backup_path = Backup_List.substr(start_pos, end_pos - start_pos); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1023 | part_settings.Part = Find_Partition_By_Path(backup_path); |
| 1024 | if (part_settings.Part != NULL) { |
| 1025 | if (!Backup_Partition(&part_settings)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1026 | return false; |
| 1027 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1028 | gui_msg(Msg(msg::kError, "unable_to_locate_partition=Unable to locate '{1}' partition for backup calculations.")(backup_path)); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1029 | } |
| 1030 | start_pos = end_pos + 1; |
| 1031 | end_pos = Backup_List.find(";", start_pos); |
| 1032 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1033 | |
| 1034 | // Average BPS |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1035 | if (part_settings.img_time == 0) |
| 1036 | part_settings.img_time = 1; |
| 1037 | if (part_settings.file_time == 0) |
| 1038 | part_settings.file_time = 1; |
| 1039 | int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time; |
| 1040 | unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1041 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1042 | if (part_settings.file_bytes != 0) |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 1043 | gui_msg(Msg("avg_backup_fs=Average backup rate for file systems: {1} MB/sec")(file_bps / (1024 * 1024))); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1044 | if (part_settings.img_bytes != 0) |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 1045 | gui_msg(Msg("avg_backup_img=Average backup rate for imaged drives: {1} MB/sec")(img_bps / (1024 * 1024))); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1046 | |
| 1047 | time(&total_stop); |
| 1048 | int total_time = (int) difftime(total_stop, total_start); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1049 | |
| 1050 | uint64_t actual_backup_size; |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 1051 | if (!adbbackup) { |
| 1052 | TWExclude twe; |
| 1053 | actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder); |
| 1054 | } else |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1055 | actual_backup_size = part_settings.file_bytes + part_settings.img_bytes; |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1056 | actual_backup_size /= (1024LLU * 1024LLU); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1057 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1058 | int prev_img_bps = 0, use_compression = 0; |
| 1059 | unsigned long long prev_file_bps = 0; |
Matt Mower | 173cdb9 | 2016-12-31 02:49:19 -0600 | [diff] [blame] | 1060 | DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1061 | img_bps += (prev_img_bps * 4); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1062 | img_bps /= 5; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1063 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1064 | DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1065 | if (use_compression) |
| 1066 | DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1067 | else |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1068 | DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps); |
| 1069 | file_bps += (prev_file_bps * 4); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1070 | file_bps /= 5; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1071 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1072 | DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1073 | if (use_compression) |
| 1074 | DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps); |
| 1075 | else |
| 1076 | DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps); |
| 1077 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1078 | gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size)); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1079 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 1080 | UnMount_Main_Partitions(); |
Ethan Yonker | 56db1c4 | 2015-12-20 22:49:00 -0600 | [diff] [blame] | 1081 | gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 1082 | string backup_log = part_settings.Backup_Folder + "/recovery.log"; |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 1083 | TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644); |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 1084 | tw_set_default_metadata(backup_log.c_str()); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1085 | |
| 1086 | if (part_settings.adbbackup) { |
| 1087 | if (twadbbu::Write_ADB_Stream_Trailer() == false) { |
| 1088 | return false; |
| 1089 | } |
| 1090 | } |
| 1091 | part_settings.adbbackup = false; |
| 1092 | DataManager::SetValue("tw_enable_adb_backup", 0); |
| 1093 | |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 1094 | return true; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1095 | } |
| 1096 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1097 | bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) { |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1098 | time_t Start, Stop; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1099 | |
bigbiff bigbiff | b5ecaad | 2017-03-20 18:53:53 -0400 | [diff] [blame] | 1100 | if (part_settings->adbbackup) { |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1101 | std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win"; |
| 1102 | LOGINFO("setting backup name: %s\n", partName.c_str()); |
bigbiff bigbiff | b5ecaad | 2017-03-20 18:53:53 -0400 | [diff] [blame] | 1103 | part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win"); |
| 1104 | } |
| 1105 | |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1106 | TWFunc::SetPerformanceMode(true); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1107 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1108 | time(&Start); |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 1109 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1110 | if (!part_settings->Part->Restore(part_settings)) { |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1111 | TWFunc::SetPerformanceMode(false); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1112 | return false; |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1113 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1114 | if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) { |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1115 | std::vector<TWPartition*>::iterator subpart; |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 1116 | TWPartition *parentPart = part_settings->Part; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1117 | |
| 1118 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 1119 | part_settings->Part = *subpart; |
| 1120 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) { |
| 1121 | part_settings->Part = (*subpart); |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1122 | part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win"); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1123 | if (!(*subpart)->Restore(part_settings)) { |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1124 | TWFunc::SetPerformanceMode(false); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1125 | return false; |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1126 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1127 | } |
| 1128 | } |
| 1129 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1130 | time(&Stop); |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1131 | TWFunc::SetPerformanceMode(false); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1132 | gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start))); |
| 1133 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1134 | return true; |
| 1135 | } |
| 1136 | |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 1137 | int TWPartitionManager::Run_Restore(const string& Restore_Name) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1138 | PartitionSettings part_settings; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 1139 | int check_digest; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1140 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1141 | time_t rStart, rStop; |
| 1142 | time(&rStart); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1143 | string Restore_List, restore_path; |
| 1144 | size_t start_pos = 0, end_pos; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1145 | |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 1146 | part_settings.Backup_Folder = Restore_Name; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1147 | part_settings.Part = NULL; |
| 1148 | part_settings.partition_count = 0; |
| 1149 | part_settings.total_restore_size = 0; |
| 1150 | part_settings.adbbackup = false; |
| 1151 | part_settings.PM_Method = PM_RESTORE; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1152 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1153 | gui_msg("restore_started=[RESTORE STARTED]"); |
| 1154 | gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name)); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1155 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1156 | if (!Mount_Current_Storage(true)) |
| 1157 | return false; |
| 1158 | |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 1159 | DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest); |
| 1160 | if (check_digest > 0) { |
| 1161 | // Check Digest files first before restoring to ensure that all of them match before starting a restore |
| 1162 | TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}")); |
| 1163 | gui_msg("verifying_digest=Verifying Digest"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1164 | } else { |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 1165 | gui_msg("skip_digest=Skipping Digest check based on user setting."); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1166 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1167 | gui_msg("calc_restore=Calculating restore details..."); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1168 | DataManager::GetValue("tw_restore_selected", Restore_List); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1169 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1170 | if (!Restore_List.empty()) { |
| 1171 | end_pos = Restore_List.find(";", start_pos); |
| 1172 | while (end_pos != string::npos && start_pos < Restore_List.size()) { |
| 1173 | restore_path = Restore_List.substr(start_pos, end_pos - start_pos); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1174 | part_settings.Part = Find_Partition_By_Path(restore_path); |
| 1175 | if (part_settings.Part != NULL) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1176 | if (part_settings.Part->Mount_Read_Only) { |
| 1177 | gui_msg(Msg(msg::kError, "restore_read_only=Cannot restore {1} -- mounted read only.")(part_settings.Part->Backup_Display_Name)); |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 1178 | return false; |
| 1179 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1180 | |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 1181 | string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName; |
| 1182 | |
| 1183 | if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1184 | return false; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1185 | part_settings.partition_count++; |
| 1186 | part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings); |
| 1187 | if (part_settings.Part->Has_SubPartition) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 1188 | TWPartition *parentPart = part_settings.Part; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1189 | std::vector<TWPartition*>::iterator subpart; |
| 1190 | |
| 1191 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 1192 | part_settings.Part = *subpart; |
| 1193 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) { |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 1194 | if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1195 | return false; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1196 | part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1197 | } |
| 1198 | } |
| 1199 | } |
| 1200 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1201 | gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path)); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1202 | } |
| 1203 | start_pos = end_pos + 1; |
| 1204 | end_pos = Restore_List.find(";", start_pos); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1205 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1206 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1207 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1208 | if (part_settings.partition_count == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1209 | gui_err("no_part_restore=No partitions selected for restore."); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1210 | return false; |
| 1211 | } |
| 1212 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1213 | gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count)); |
| 1214 | gui_msg(Msg("total_restore_size=Total restore size is {1}MB")(part_settings.total_restore_size / 1048576)); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1215 | DataManager::SetProgress(0.0); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1216 | ProgressTracking progress(part_settings.total_restore_size); |
| 1217 | part_settings.progress = &progress; |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 1218 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1219 | start_pos = 0; |
| 1220 | if (!Restore_List.empty()) { |
| 1221 | end_pos = Restore_List.find(";", start_pos); |
| 1222 | while (end_pos != string::npos && start_pos < Restore_List.size()) { |
| 1223 | restore_path = Restore_List.substr(start_pos, end_pos - start_pos); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1224 | |
| 1225 | part_settings.Part = Find_Partition_By_Path(restore_path); |
| 1226 | if (part_settings.Part != NULL) { |
| 1227 | part_settings.partition_count++; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1228 | if (!Restore_Partition(&part_settings)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1229 | return false; |
| 1230 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1231 | gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path)); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1232 | } |
| 1233 | start_pos = end_pos + 1; |
| 1234 | end_pos = Restore_List.find(";", start_pos); |
| 1235 | } |
| 1236 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1237 | TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}")); |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 1238 | UnMount_By_Path(Get_Android_Root_Path(), false); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1239 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 1240 | UnMount_Main_Partitions(); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1241 | time(&rStop); |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 1242 | gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart))); |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 1243 | DataManager::SetValue("tw_file_progress", ""); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1244 | |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1245 | return true; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1246 | } |
| 1247 | |
| 1248 | void TWPartitionManager::Set_Restore_Files(string Restore_Name) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1249 | // Start with the default values |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1250 | string Restore_List; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1251 | bool get_date = true, check_encryption = true; |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1252 | bool adbbackup = false; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1253 | |
| 1254 | DataManager::SetValue("tw_restore_encrypted", 0); |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1255 | if (twadbbu::Check_ADB_Backup_File(Restore_Name)) { |
| 1256 | vector<string> adb_files; |
| 1257 | adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name); |
| 1258 | for (unsigned int i = 0; i < adb_files.size(); ++i) { |
| 1259 | string adb_restore_file = adb_files.at(i); |
| 1260 | std::size_t pos = adb_restore_file.find_first_of("."); |
| 1261 | std::string path = "/" + adb_restore_file.substr(0, pos); |
| 1262 | Restore_List = path + ";"; |
| 1263 | TWPartition* Part = Find_Partition_By_Path(path); |
| 1264 | Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file); |
| 1265 | adbbackup = true; |
| 1266 | } |
| 1267 | DataManager::SetValue("tw_enable_adb_backup", 1); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1268 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1269 | else { |
| 1270 | DIR* d; |
| 1271 | d = opendir(Restore_Name.c_str()); |
| 1272 | if (d == NULL) |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1273 | { |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1274 | gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno))); |
| 1275 | return; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1276 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1277 | |
| 1278 | struct dirent* de; |
| 1279 | while ((de = readdir(d)) != NULL) |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1280 | { |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1281 | // Strip off three components |
| 1282 | char str[256]; |
| 1283 | char* label; |
| 1284 | char* fstype = NULL; |
| 1285 | char* extn = NULL; |
| 1286 | char* ptr; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1287 | |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1288 | strcpy(str, de->d_name); |
| 1289 | if (strlen(str) <= 2) |
| 1290 | continue; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1291 | |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1292 | if (get_date) { |
| 1293 | char file_path[255]; |
| 1294 | struct stat st; |
| 1295 | |
| 1296 | strcpy(file_path, Restore_Name.c_str()); |
| 1297 | strcat(file_path, "/"); |
| 1298 | strcat(file_path, str); |
| 1299 | stat(file_path, &st); |
| 1300 | string backup_date = ctime((const time_t*)(&st.st_mtime)); |
| 1301 | DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date); |
| 1302 | get_date = false; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1303 | } |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1304 | |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1305 | label = str; |
| 1306 | ptr = label; |
| 1307 | while (*ptr && *ptr != '.') ptr++; |
| 1308 | if (*ptr == '.') |
| 1309 | { |
| 1310 | *ptr = 0x00; |
| 1311 | ptr++; |
| 1312 | fstype = ptr; |
| 1313 | } |
| 1314 | while (*ptr && *ptr != '.') ptr++; |
| 1315 | if (*ptr == '.') |
| 1316 | { |
| 1317 | *ptr = 0x00; |
| 1318 | ptr++; |
| 1319 | extn = ptr; |
| 1320 | } |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1321 | |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1322 | if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue; |
| 1323 | int extnlength = strlen(extn); |
| 1324 | if (extnlength != 3 && extnlength != 6) continue; |
| 1325 | if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue; |
| 1326 | //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1327 | |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1328 | if (check_encryption) { |
| 1329 | string filename = Restore_Name + "/"; |
| 1330 | filename += de->d_name; |
| 1331 | if (TWFunc::Get_File_Type(filename) == 2) { |
| 1332 | LOGINFO("'%s' is encrypted\n", filename.c_str()); |
| 1333 | DataManager::SetValue("tw_restore_encrypted", 1); |
| 1334 | } |
| 1335 | } |
| 1336 | if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue; |
| 1337 | |
| 1338 | TWPartition* Part = Find_Partition_By_Path(label); |
| 1339 | if (Part == NULL) |
| 1340 | { |
| 1341 | gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label)); |
| 1342 | continue; |
| 1343 | } |
| 1344 | |
| 1345 | Part->Backup_FileName = de->d_name; |
| 1346 | if (strlen(extn) > 3) { |
| 1347 | Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3); |
| 1348 | } |
| 1349 | |
dianlujitao | b76a73a | 2020-04-30 20:33:20 +0800 | [diff] [blame] | 1350 | if (!Part->Is_SubPartition) { |
| 1351 | if (Part->Backup_Path == Get_Android_Root_Path()) |
| 1352 | Restore_List += "/system;"; |
| 1353 | else |
| 1354 | Restore_List += Part->Backup_Path + ";"; |
| 1355 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1356 | } |
| 1357 | closedir(d); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1358 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1359 | |
| 1360 | if (adbbackup) { |
| 1361 | Restore_List = "ADB_Backup;"; |
| 1362 | adbbackup = false; |
| 1363 | } |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1364 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1365 | // Set the final value |
| 1366 | DataManager::SetValue("tw_restore_list", Restore_List); |
| 1367 | DataManager::SetValue("tw_restore_selected", Restore_List); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1368 | return; |
| 1369 | } |
| 1370 | |
| 1371 | int TWPartitionManager::Wipe_By_Path(string Path) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1372 | std::vector<TWPartition*>::iterator iter; |
Mohd Faraz | fdd49bb | 2020-04-21 18:56:44 +0530 | [diff] [blame] | 1373 | std::vector < TWPartition * >::iterator iter1; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1374 | int ret = false; |
| 1375 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1376 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1377 | |
dianlujitao | b76a73a | 2020-04-30 20:33:20 +0800 | [diff] [blame] | 1378 | if (Local_Path == "/system") |
| 1379 | Local_Path = Get_Android_Root_Path(); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1380 | // Iterate through all partitions |
| 1381 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 1382 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
Mohd Faraz | fdd49bb | 2020-04-21 18:56:44 +0530 | [diff] [blame] | 1383 | // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping |
| 1384 | (*iter)->Find_Actual_Block_Device(); |
| 1385 | for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++) |
| 1386 | { |
| 1387 | (*iter1)->Find_Actual_Block_Device(); |
| 1388 | if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point) |
| 1389 | (*iter1)->UnMount(false); |
| 1390 | } |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1391 | if (Path == "/and-sec") |
| 1392 | ret = (*iter)->Wipe_AndSec(); |
| 1393 | else |
| 1394 | ret = (*iter)->Wipe(); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1395 | found = true; |
| 1396 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1397 | (*iter)->Wipe(); |
| 1398 | } |
| 1399 | } |
| 1400 | if (found) { |
| 1401 | return ret; |
| 1402 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1403 | gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path)); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1404 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1405 | } |
| 1406 | |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 1407 | int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) { |
| 1408 | std::vector<TWPartition*>::iterator iter; |
| 1409 | int ret = false; |
| 1410 | bool found = false; |
| 1411 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 1412 | |
| 1413 | // Iterate through all partitions |
| 1414 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1415 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 1416 | if (Path == "/and-sec") |
| 1417 | ret = (*iter)->Wipe_AndSec(); |
| 1418 | else |
| 1419 | ret = (*iter)->Wipe(New_File_System); |
| 1420 | found = true; |
| 1421 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1422 | (*iter)->Wipe(New_File_System); |
| 1423 | } |
| 1424 | } |
| 1425 | if (found) { |
| 1426 | return ret; |
| 1427 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1428 | gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path)); |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 1429 | return false; |
| 1430 | } |
| 1431 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1432 | int TWPartitionManager::Factory_Reset(void) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1433 | std::vector<TWPartition*>::iterator iter; |
| 1434 | int ret = true; |
| 1435 | |
| 1436 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1437 | if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) { |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 1438 | #ifdef TW_OEM_BUILD |
| 1439 | if ((*iter)->Mount_Point == "/data") { |
| 1440 | if (!(*iter)->Wipe_Encryption()) |
| 1441 | ret = false; |
| 1442 | } else { |
| 1443 | #endif |
| 1444 | if (!(*iter)->Wipe()) |
| 1445 | ret = false; |
| 1446 | #ifdef TW_OEM_BUILD |
| 1447 | } |
| 1448 | #endif |
Dees_Troy | 094207a | 2012-09-26 12:00:39 -0400 | [diff] [blame] | 1449 | } else if ((*iter)->Has_Android_Secure) { |
| 1450 | if (!(*iter)->Wipe_AndSec()) |
| 1451 | ret = false; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1452 | } |
| 1453 | } |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 1454 | TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script"); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1455 | return ret; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1456 | } |
| 1457 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1458 | int TWPartitionManager::Wipe_Dalvik_Cache(void) { |
| 1459 | struct stat st; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1460 | vector <string> dir; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1461 | |
| 1462 | if (!Mount_By_Path("/data", true)) |
| 1463 | return false; |
| 1464 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1465 | dir.push_back("/data/dalvik-cache"); |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1466 | |
bigbiff | 25d25b9 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 1467 | std::string cacheDir = TWFunc::get_log_dir(); |
| 1468 | if (cacheDir == CACHE_LOGS_DIR) { |
| 1469 | if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) { |
| 1470 | LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR); |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1471 | } |
| 1472 | dir.push_back(cacheDir + "dalvik-cache"); |
| 1473 | dir.push_back(cacheDir + "/dc"); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1474 | } |
Ethan Yonker | ff2b788 | 2016-12-10 09:04:41 -0600 | [diff] [blame] | 1475 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1476 | TWPartition* sdext = Find_Partition_By_Path("/sd-ext"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1477 | if (sdext && sdext->Is_Present && sdext->Mount(false)) |
| 1478 | { |
| 1479 | if (stat("/sd-ext/dalvik-cache", &st) == 0) |
| 1480 | { |
Ethan Yonker | ff2b788 | 2016-12-10 09:04:41 -0600 | [diff] [blame] | 1481 | dir.push_back("/sd-ext/dalvik-cache"); |
| 1482 | } |
| 1483 | } |
| 1484 | |
bigbiff | 25d25b9 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 1485 | if (cacheDir == CACHE_LOGS_DIR) { |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1486 | gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories..."); |
| 1487 | } else { |
| 1488 | gui_msg("wiping_dalvik=Wiping Dalvik Directory..."); |
| 1489 | } |
Ethan Yonker | ff2b788 | 2016-12-10 09:04:41 -0600 | [diff] [blame] | 1490 | for (unsigned i = 0; i < dir.size(); ++i) { |
| 1491 | if (stat(dir.at(i).c_str(), &st) == 0) { |
| 1492 | TWFunc::removeDir(dir.at(i), false); |
| 1493 | gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i))); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1494 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1495 | } |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1496 | |
bigbiff | 25d25b9 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 1497 | if (cacheDir == CACHE_LOGS_DIR) { |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1498 | gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!"); |
| 1499 | } else { |
| 1500 | gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!"); |
| 1501 | } |
| 1502 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1503 | return true; |
| 1504 | } |
| 1505 | |
| 1506 | int TWPartitionManager::Wipe_Rotate_Data(void) { |
| 1507 | if (!Mount_By_Path("/data", true)) |
| 1508 | return false; |
| 1509 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1510 | unlink("/data/misc/akmd*"); |
| 1511 | unlink("/data/misc/rild*"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1512 | gui_print("Rotation data wiped.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1513 | return true; |
| 1514 | } |
| 1515 | |
| 1516 | int TWPartitionManager::Wipe_Battery_Stats(void) { |
| 1517 | struct stat st; |
| 1518 | |
| 1519 | if (!Mount_By_Path("/data", true)) |
| 1520 | return false; |
| 1521 | |
| 1522 | if (0 != stat("/data/system/batterystats.bin", &st)) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1523 | gui_print("No Battery Stats Found. No Need To Wipe.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1524 | } else { |
| 1525 | remove("/data/system/batterystats.bin"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1526 | gui_print("Cleared battery stats.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1527 | } |
| 1528 | return true; |
| 1529 | } |
| 1530 | |
Dees_Troy | 2ff5a8d | 2012-09-26 14:53:02 -0400 | [diff] [blame] | 1531 | int TWPartitionManager::Wipe_Android_Secure(void) { |
| 1532 | std::vector<TWPartition*>::iterator iter; |
| 1533 | int ret = false; |
| 1534 | bool found = false; |
| 1535 | |
| 1536 | // Iterate through all partitions |
| 1537 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1538 | if ((*iter)->Has_Android_Secure) { |
| 1539 | ret = (*iter)->Wipe_AndSec(); |
| 1540 | found = true; |
| 1541 | } |
| 1542 | } |
| 1543 | if (found) { |
| 1544 | return ret; |
| 1545 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1546 | gui_err("no_andsec=No android secure partitions found."); |
Dees_Troy | 2ff5a8d | 2012-09-26 14:53:02 -0400 | [diff] [blame] | 1547 | } |
| 1548 | return false; |
| 1549 | } |
| 1550 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1551 | int TWPartitionManager::Format_Data(void) { |
| 1552 | TWPartition* dat = Find_Partition_By_Path("/data"); |
| 1553 | |
| 1554 | if (dat != NULL) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1555 | return dat->Wipe_Encryption(); |
| 1556 | } else { |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 1557 | gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data")); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1558 | return false; |
| 1559 | } |
| 1560 | return false; |
| 1561 | } |
| 1562 | |
| 1563 | int TWPartitionManager::Wipe_Media_From_Data(void) { |
| 1564 | TWPartition* dat = Find_Partition_By_Path("/data"); |
| 1565 | |
| 1566 | if (dat != NULL) { |
| 1567 | if (!dat->Has_Data_Media) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1568 | LOGERR("This device does not have /data/media\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1569 | return false; |
| 1570 | } |
| 1571 | if (!dat->Mount(true)) |
| 1572 | return false; |
| 1573 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1574 | gui_msg("wiping_datamedia=Wiping internal storage -- /data/media..."); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 1575 | Remove_MTP_Storage(dat->MTP_Storage_ID); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1576 | TWFunc::removeDir("/data/media", false); |
xiaolu | 9416f4f | 2015-06-04 08:22:23 +0800 | [diff] [blame] | 1577 | dat->Recreate_Media_Folder(); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 1578 | Add_MTP_Storage(dat->MTP_Storage_ID); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1579 | return true; |
| 1580 | } else { |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 1581 | gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data")); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1582 | return false; |
| 1583 | } |
| 1584 | return false; |
| 1585 | } |
| 1586 | |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 1587 | int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) { |
| 1588 | std::vector<TWPartition*>::iterator iter; |
| 1589 | int ret = false; |
| 1590 | bool found = false; |
| 1591 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 1592 | |
| 1593 | if (Local_Path == "/tmp" || Local_Path == "/") |
| 1594 | return true; |
| 1595 | |
| 1596 | // Iterate through all partitions |
| 1597 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1598 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 1599 | ret = (*iter)->Repair(); |
| 1600 | found = true; |
| 1601 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1602 | (*iter)->Repair(); |
| 1603 | } |
| 1604 | } |
| 1605 | if (found) { |
| 1606 | return ret; |
| 1607 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1608 | gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path)); |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 1609 | } else { |
| 1610 | LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
| 1611 | } |
| 1612 | return false; |
| 1613 | } |
| 1614 | |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 1615 | int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) { |
| 1616 | std::vector<TWPartition*>::iterator iter; |
| 1617 | int ret = false; |
| 1618 | bool found = false; |
| 1619 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 1620 | |
| 1621 | if (Local_Path == "/tmp" || Local_Path == "/") |
| 1622 | return true; |
| 1623 | |
| 1624 | // Iterate through all partitions |
| 1625 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1626 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 1627 | ret = (*iter)->Resize(); |
| 1628 | found = true; |
| 1629 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1630 | (*iter)->Resize(); |
| 1631 | } |
| 1632 | } |
| 1633 | if (found) { |
| 1634 | return ret; |
| 1635 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1636 | gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path)); |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 1637 | } else { |
| 1638 | LOGINFO("Resize: Unable to find partition for path '%
|