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