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