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