Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 1 | /* |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 2 | Copyright 2014 to 2017 TeamWin |
Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 3 | This file is part of TWRP/TeamWin Recovery Project. |
| 4 | |
| 5 | TWRP is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by |
| 7 | the Free Software Foundation, either version 3 of the License, or |
| 8 | (at your option) any later version. |
| 9 | |
| 10 | TWRP is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | GNU General Public License for more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License |
| 16 | along with TWRP. If not, see <http://www.gnu.org/licenses/>. |
| 17 | */ |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 18 | |
| 19 | #include <stdio.h> |
| 20 | #include <stdlib.h> |
| 21 | #include <string.h> |
| 22 | #include <sys/stat.h> |
| 23 | #include <sys/vfs.h> |
| 24 | #include <unistd.h> |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 25 | #include <map> |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 26 | #include <vector> |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 27 | #include <dirent.h> |
| 28 | #include <time.h> |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 29 | #include <errno.h> |
| 30 | #include <fcntl.h> |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 31 | #include <zlib.h> |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 32 | #include <iostream> |
| 33 | #include <iomanip> |
Ethan Yonker | 8613dc0 | 2014-09-11 09:28:20 -0500 | [diff] [blame] | 34 | #include <sys/wait.h> |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 35 | #include <linux/fs.h> |
| 36 | #include <sys/mount.h> |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 37 | |
| 38 | #include <sys/poll.h> |
| 39 | #include <sys/socket.h> |
| 40 | #include <linux/types.h> |
| 41 | #include <linux/netlink.h> |
| 42 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 43 | #include "variables.h" |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 44 | #include "twcommon.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 45 | #include "partitions.hpp" |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 46 | #include "data.hpp" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 47 | #include "twrp-functions.hpp" |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 48 | #include "fixContexts.hpp" |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 49 | #include "exclude.hpp" |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 50 | #include "set_metadata.h" |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 51 | #include "tw_atomic.hpp" |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 52 | #include "gui/gui.hpp" |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 53 | #include "progresstracking.hpp" |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 54 | #include "twrpDigestDriver.hpp" |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 55 | #include "adbbu/libtwadbbu.hpp" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 56 | |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 57 | #ifdef TW_HAS_MTP |
bigbiff bigbiff | af32bb9 | 2018-12-18 18:39:53 -0500 | [diff] [blame] | 58 | #ifdef TW_HAS_LEGACY_MTP |
| 59 | #include "mtp/legacy/mtp_MtpServer.hpp" |
| 60 | #include "mtp/legacy/twrpMtp.hpp" |
| 61 | #include "mtp/legacy/MtpMessage.hpp" |
| 62 | #else |
| 63 | #include "mtp/ffs/mtp_MtpServer.hpp" |
| 64 | #include "mtp/ffs/twrpMtp.hpp" |
| 65 | #include "mtp/ffs/MtpMessage.hpp" |
| 66 | #endif |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 67 | #endif |
| 68 | |
Dees Troy | 6f6441d | 2014-01-23 02:07:03 +0000 | [diff] [blame] | 69 | extern "C" { |
| 70 | #include "cutils/properties.h" |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 71 | #include "gui/gui.h" |
Dees Troy | 6f6441d | 2014-01-23 02:07:03 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 74 | #ifdef TW_INCLUDE_CRYPTO |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 75 | #include "crypto/fde/cryptfs.h" |
| 76 | #include "gui/rapidxml.hpp" |
| 77 | #include "gui/pages.hpp" |
| 78 | #ifdef TW_INCLUDE_FBE |
| 79 | #include "crypto/ext4crypt/Decrypt.h" |
| 80 | #ifdef TW_INCLUDE_FBE_METADATA_DECRYPT |
| 81 | #include "crypto/ext4crypt/MetadataCrypt.h" |
| 82 | #endif |
| 83 | #endif |
| 84 | #ifdef TW_CRYPTO_USE_SYSTEM_VOLD |
| 85 | #include "crypto/vold_decrypt/vold_decrypt.h" |
| 86 | #endif |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 87 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 88 | |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 89 | #ifdef AB_OTA_UPDATER |
| 90 | #include <hardware/hardware.h> |
| 91 | #include <hardware/boot_control.h> |
| 92 | #endif |
| 93 | |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 94 | extern bool datamedia; |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 95 | std::vector<users_struct> Users_List; |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 96 | |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 97 | TWPartitionManager::TWPartitionManager(void) { |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 98 | mtp_was_enabled = false; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 99 | mtp_write_fd = -1; |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 100 | uevent_pfd.fd = -1; |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 101 | stop_backup.set_value(0); |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 102 | #ifdef AB_OTA_UPDATER |
| 103 | char slot_suffix[PROPERTY_VALUE_MAX]; |
Ethan Yonker | fefe591 | 2017-09-30 22:22:13 -0500 | [diff] [blame] | 104 | property_get("ro.boot.slot_suffix", slot_suffix, "error"); |
| 105 | if (strcmp(slot_suffix, "error") == 0) |
| 106 | property_get("ro.boot.slot", slot_suffix, "error"); |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 107 | Active_Slot_Display = ""; |
Ethan Yonker | fefe591 | 2017-09-30 22:22:13 -0500 | [diff] [blame] | 108 | if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0) |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 109 | Set_Active_Slot("A"); |
| 110 | else |
| 111 | Set_Active_Slot("B"); |
| 112 | #endif |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 113 | } |
| 114 | |
Captain Throwback | 07b8e05 | 2020-10-29 12:43:17 -0400 | [diff] [blame] | 115 | int TWPartitionManager::Set_FDE_Encrypt_Status(void) { |
| 116 | property_set("ro.crypto.state", "encrypted"); |
| 117 | property_set("ro.crypto.type", "block"); |
| 118 | // Sleep for a bit so that services can start if needed |
| 119 | sleep(1); |
| 120 | return 0; |
| 121 | } |
| 122 | |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 123 | int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool Sar_Detect) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 124 | FILE *fstabFile; |
| 125 | char fstab_line[MAX_FSTAB_LINE_LENGTH]; |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 126 | TWPartition* settings_partition = NULL; |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 127 | TWPartition* andsec_partition = NULL; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 128 | 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] | 129 | std::map<string, Flags_Map> twrp_flags; |
| 130 | |
| 131 | fstabFile = fopen("/etc/twrp.flags", "rt"); |
| 132 | if (fstabFile != NULL) { |
| 133 | LOGINFO("reading /etc/twrp.flags\n"); |
| 134 | while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) { |
| 135 | if (fstab_line[0] != '/') |
| 136 | continue; |
| 137 | |
| 138 | size_t line_size = strlen(fstab_line); |
| 139 | if (fstab_line[line_size - 1] != '\n') |
| 140 | fstab_line[line_size] = '\n'; |
| 141 | Flags_Map line_flags; |
| 142 | line_flags.Primary_Block_Device = ""; |
| 143 | line_flags.Alternate_Block_Device = ""; |
| 144 | line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH); |
| 145 | if (!line_flags.fstab_line) { |
| 146 | LOGERR("malloc error on line_flags.fstab_line\n"); |
| 147 | return false; |
| 148 | } |
| 149 | memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH); |
| 150 | bool found_separator = false; |
| 151 | char *fs_loc = NULL; |
| 152 | char *block_loc = NULL; |
| 153 | char *flags_loc = NULL; |
| 154 | size_t index, item_index = 0; |
| 155 | for (index = 0; index < line_size; index++) { |
| 156 | if (fstab_line[index] <= 32) { |
| 157 | fstab_line[index] = '\0'; |
| 158 | found_separator = true; |
| 159 | } else if (found_separator) { |
| 160 | if (item_index == 0) { |
| 161 | fs_loc = fstab_line + index; |
| 162 | } else if (item_index == 1) { |
| 163 | block_loc = fstab_line + index; |
| 164 | } else if (item_index > 1) { |
| 165 | char *ptr = fstab_line + index; |
| 166 | if (*ptr == '/') { |
| 167 | line_flags.Alternate_Block_Device = ptr; |
| 168 | } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) { |
| 169 | flags_loc = ptr; |
| 170 | // Once we find the flags=, we're done scanning the line |
| 171 | break; |
| 172 | } |
| 173 | } |
| 174 | found_separator = false; |
| 175 | item_index++; |
| 176 | } |
| 177 | } |
| 178 | if (block_loc) |
| 179 | line_flags.Primary_Block_Device = block_loc; |
| 180 | if (fs_loc) |
| 181 | line_flags.File_System = fs_loc; |
| 182 | if (flags_loc) |
| 183 | line_flags.Flags = flags_loc; |
| 184 | string Mount_Point = fstab_line; |
| 185 | twrp_flags[Mount_Point] = line_flags; |
| 186 | memset(fstab_line, 0, sizeof(fstab_line)); |
| 187 | } |
| 188 | fclose(fstabFile); |
| 189 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 190 | |
| 191 | fstabFile = fopen(Fstab_Filename.c_str(), "rt"); |
| 192 | if (fstabFile == NULL) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 193 | 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] | 194 | return false; |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 195 | } else |
| 196 | LOGINFO("Reading %s\n", Fstab_Filename.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 197 | |
| 198 | while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) { |
| 199 | if (fstab_line[0] != '/') |
| 200 | continue; |
| 201 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 202 | if (strstr(fstab_line, "swap")) |
| 203 | continue; // Skip swap in recovery |
| 204 | |
| 205 | size_t line_size = strlen(fstab_line); |
| 206 | if (fstab_line[line_size - 1] != '\n') |
| 207 | fstab_line[line_size] = '\n'; |
Dees_Troy | 2a92358 | 2012-09-20 12:13:34 -0400 | [diff] [blame] | 208 | |
Matt Mower | 2b2dd15 | 2016-04-26 11:24:08 -0500 | [diff] [blame] | 209 | TWPartition* partition = new TWPartition(); |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 210 | if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags, Sar_Detect)) |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 211 | Partitions.push_back(partition); |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 212 | else |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 213 | delete partition; |
Matt Mower | 2b2dd15 | 2016-04-26 11:24:08 -0500 | [diff] [blame] | 214 | |
| 215 | memset(fstab_line, 0, sizeof(fstab_line)); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 216 | } |
| 217 | fclose(fstabFile); |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 218 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 219 | if (twrp_flags.size() > 0) { |
| 220 | LOGINFO("Processing remaining twrp.flags\n"); |
| 221 | // Add any items from twrp.flags that did not exist in the recovery.fstab |
| 222 | for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) { |
| 223 | if (Find_Partition_By_Path(mapit->first) == NULL) { |
| 224 | TWPartition* partition = new TWPartition(); |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 225 | if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL, Sar_Detect)) |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 226 | Partitions.push_back(partition); |
| 227 | else |
| 228 | delete partition; |
| 229 | } |
| 230 | if (mapit->second.fstab_line) |
| 231 | free(mapit->second.fstab_line); |
| 232 | mapit->second.fstab_line = NULL; |
| 233 | } |
| 234 | } |
| 235 | LOGINFO("Done processing fstab files\n"); |
| 236 | |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 237 | std::vector<TWPartition*>::iterator iter; |
| 238 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 239 | if (Sar_Detect) { |
| 240 | if ((*iter)->Mount_Point == "/s") |
| 241 | return true; |
| 242 | else |
| 243 | continue; |
| 244 | } |
| 245 | |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 246 | (*iter)->Partition_Post_Processing(Display_Error); |
| 247 | |
| 248 | if ((*iter)->Is_Storage) { |
| 249 | ++storageid; |
| 250 | (*iter)->MTP_Storage_ID = storageid; |
| 251 | } |
| 252 | |
| 253 | if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present) |
| 254 | settings_partition = (*iter); |
| 255 | else |
| 256 | (*iter)->Is_Settings_Storage = false; |
| 257 | |
| 258 | if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present) |
| 259 | andsec_partition = (*iter); |
| 260 | else |
| 261 | (*iter)->Has_Android_Secure = false; |
| 262 | } |
| 263 | |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 264 | 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) { |
| 265 | // Attempt to automatically identify /data/media emulated storage devices |
| 266 | TWPartition* Dat = Find_Partition_By_Path("/data"); |
| 267 | if (Dat) { |
| 268 | LOGINFO("Using automatic handling for /data/media emulated storage device.\n"); |
| 269 | datamedia = true; |
that | 9e0593e | 2014-10-08 00:01:24 +0200 | [diff] [blame] | 270 | Dat->Setup_Data_Media(); |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 271 | settings_partition = Dat; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 272 | // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID |
| 273 | ++storageid; |
| 274 | Dat->MTP_Storage_ID = storageid; |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 275 | } |
| 276 | } |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 277 | if (!settings_partition) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 278 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 279 | if ((*iter)->Is_Storage) { |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 280 | settings_partition = (*iter); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 281 | break; |
| 282 | } |
| 283 | } |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 284 | if (!settings_partition) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 285 | LOGERR("Unable to locate storage partition for storing settings file.\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 286 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 287 | if (!Write_Fstab()) { |
| 288 | if (Display_Error) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 289 | LOGERR("Error creating fstab\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 290 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 291 | LOGINFO("Error creating fstab\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 292 | } |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 293 | |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 294 | if (andsec_partition) { |
| 295 | Setup_Android_Secure_Location(andsec_partition); |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 296 | } else if (settings_partition) { |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 297 | Setup_Android_Secure_Location(settings_partition); |
| 298 | } |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 299 | if (settings_partition) { |
| 300 | Setup_Settings_Storage_Partition(settings_partition); |
| 301 | } |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 302 | #ifdef TW_INCLUDE_CRYPTO |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 303 | TWPartition* Decrypt_Data = Find_Partition_By_Path("/data"); |
| 304 | if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) { |
nebrassy | 674bb0c | 2020-10-24 21:08:20 +0200 | [diff] [blame] | 305 | property_set("ro.crypto.state", "encrypted"); |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 306 | if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) { |
nebrassy | 674bb0c | 2020-10-24 21:08:20 +0200 | [diff] [blame] | 307 | property_set("ro.crypto.type", "file"); |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 308 | #ifdef TW_INCLUDE_FBE_METADATA_DECRYPT |
| 309 | if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) { |
| 310 | LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", Decrypt_Data->Decrypted_Block_Device.c_str()); |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 311 | Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly |
| 312 | int retry_count = 10; |
| 313 | while (!Decrypt_Data->Mount(false) && --retry_count) |
| 314 | usleep(500); |
| 315 | if (Decrypt_Data->Mount(false)) { |
bigbiff bigbiff | 0be03b3 | 2019-08-27 20:50:31 -0400 | [diff] [blame] | 316 | if (!Decrypt_Data->Decrypt_FBE_DE()) { |
mauronofrio | 1db9432 | 2019-11-23 23:13:04 +0100 | [diff] [blame] | 317 | char wrappedvalue[PROPERTY_VALUE_MAX]; |
| 318 | property_get("fbe.data.wrappedkey", wrappedvalue, ""); |
| 319 | std::string wrappedkeyvalue(wrappedvalue); |
| 320 | if (wrappedkeyvalue == "true") { |
bigbiff bigbiff | 0be03b3 | 2019-08-27 20:50:31 -0400 | [diff] [blame] | 321 | LOGERR("Unable to decrypt FBE device\n"); |
mauronofrio | 1db9432 | 2019-11-23 23:13:04 +0100 | [diff] [blame] | 322 | } else { |
| 323 | LOGINFO("Trying wrapped key.\n"); |
| 324 | property_set("fbe.data.wrappedkey", "true"); |
| 325 | if (!Decrypt_Data->Decrypt_FBE_DE()) { |
| 326 | LOGERR("Unable to decrypt FBE device\n"); |
| 327 | } |
bigbiff bigbiff | 0be03b3 | 2019-08-27 20:50:31 -0400 | [diff] [blame] | 328 | } |
| 329 | } |
| 330 | |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 331 | } else { |
| 332 | LOGINFO("Failed to mount data after metadata decrypt\n"); |
| 333 | } |
| 334 | } else { |
| 335 | LOGINFO("Unable to decrypt metadata encryption\n"); |
| 336 | } |
| 337 | #else |
| 338 | LOGERR("Metadata FBE decrypt support not present in this TWRP\n"); |
| 339 | #endif |
| 340 | } |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 341 | if (Decrypt_Data->Is_FBE) { |
| 342 | if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) { |
| 343 | if (Decrypt_Device("!") == 0) { |
| 344 | gui_msg("decrypt_success=Successfully decrypted with default password."); |
| 345 | DataManager::SetValue(TW_IS_ENCRYPTED, 0); |
| 346 | } else { |
| 347 | gui_err("unable_to_decrypt=Unable to decrypt with default password."); |
| 348 | } |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 349 | } |
| 350 | } else { |
Captain Throwback | 07b8e05 | 2020-10-29 12:43:17 -0400 | [diff] [blame] | 351 | Set_FDE_Encrypt_Status(); |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 352 | int password_type = cryptfs_get_password_type(); |
| 353 | if (password_type == CRYPT_TYPE_DEFAULT) { |
| 354 | LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n"); |
| 355 | if (Decrypt_Device("default_password") == 0) { |
| 356 | gui_msg("decrypt_success=Successfully decrypted with default password."); |
| 357 | DataManager::SetValue(TW_IS_ENCRYPTED, 0); |
| 358 | } else { |
| 359 | gui_err("unable_to_decrypt=Unable to decrypt with default password."); |
| 360 | } |
| 361 | } else { |
| 362 | DataManager::SetValue("TW_CRYPTO_TYPE", password_type); |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 363 | DataManager::SetValue("tw_crypto_pwtype_0", password_type); |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 364 | } |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 365 | } |
| 366 | } |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 367 | if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && |
| 368 | Decrypt_Data->Mount(false)) { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 369 | Decrypt_Adopted(); |
| 370 | } |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 371 | #endif |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 372 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 373 | UnMount_Main_Partitions(); |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 374 | #ifdef AB_OTA_UPDATER |
| 375 | DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display()); |
| 376 | #endif |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 377 | setup_uevent(); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 378 | return true; |
| 379 | } |
| 380 | |
| 381 | int TWPartitionManager::Write_Fstab(void) { |
| 382 | FILE *fp; |
| 383 | std::vector<TWPartition*>::iterator iter; |
| 384 | string Line; |
| 385 | |
| 386 | fp = fopen("/etc/fstab", "w"); |
| 387 | if (fp == NULL) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 388 | LOGINFO("Can not open /etc/fstab.\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 389 | return false; |
| 390 | } |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 391 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 392 | if ((*iter)->Can_Be_Mounted) { |
dianlujitao | 7d304c7 | 2016-01-02 12:15:50 +0800 | [diff] [blame] | 393 | Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n"; |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 394 | fputs(Line.c_str(), fp); |
Dees_Troy | 91862e6 | 2013-04-04 23:48:21 +0000 | [diff] [blame] | 395 | } |
| 396 | // Handle subpartition tracking |
| 397 | if ((*iter)->Is_SubPartition) { |
| 398 | TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of); |
| 399 | if (ParentPartition) |
| 400 | ParentPartition->Has_SubPartition = true; |
| 401 | else |
| 402 | LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 403 | } |
| 404 | } |
| 405 | fclose(fp); |
| 406 | return true; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 407 | } |
| 408 | |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 409 | void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) { |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 410 | DataManager::SetValue("tw_settings_path", Part->Storage_Path); |
| 411 | DataManager::SetValue("tw_storage_path", Part->Storage_Path); |
| 412 | LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str()); |
| 413 | } |
| 414 | |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 415 | void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) { |
| 416 | if (Part->Has_Android_Secure) |
| 417 | Part->Setup_AndSec(); |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 418 | else if (!datamedia) |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 419 | Part->Setup_AndSec(); |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 420 | } |
| 421 | |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 422 | void TWPartitionManager::Output_Partition_Logging(void) { |
| 423 | std::vector<TWPartition*>::iterator iter; |
| 424 | |
| 425 | printf("\n\nPartition Logs:\n"); |
| 426 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) |
| 427 | Output_Partition((*iter)); |
| 428 | } |
| 429 | |
| 430 | void TWPartitionManager::Output_Partition(TWPartition* Part) { |
| 431 | unsigned long long mb = 1048576; |
| 432 | |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 433 | 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] | 434 | if (Part->Can_Be_Mounted) { |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 435 | 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] | 436 | } |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 437 | printf("\n Flags: "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 438 | if (Part->Can_Be_Mounted) |
| 439 | printf("Can_Be_Mounted "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 440 | if (Part->Can_Be_Wiped) |
| 441 | printf("Can_Be_Wiped "); |
Hashcode | dabfd49 | 2013-08-29 22:45:30 -0700 | [diff] [blame] | 442 | if (Part->Use_Rm_Rf) |
| 443 | printf("Use_Rm_Rf "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 444 | if (Part->Can_Be_Backed_Up) |
| 445 | printf("Can_Be_Backed_Up "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 446 | if (Part->Wipe_During_Factory_Reset) |
| 447 | printf("Wipe_During_Factory_Reset "); |
| 448 | if (Part->Wipe_Available_in_GUI) |
| 449 | printf("Wipe_Available_in_GUI "); |
| 450 | if (Part->Is_SubPartition) |
| 451 | printf("Is_SubPartition "); |
| 452 | if (Part->Has_SubPartition) |
| 453 | printf("Has_SubPartition "); |
| 454 | if (Part->Removable) |
| 455 | printf("Removable "); |
| 456 | if (Part->Is_Present) |
| 457 | printf("IsPresent "); |
| 458 | if (Part->Can_Be_Encrypted) |
| 459 | printf("Can_Be_Encrypted "); |
| 460 | if (Part->Is_Encrypted) |
| 461 | printf("Is_Encrypted "); |
| 462 | if (Part->Is_Decrypted) |
| 463 | printf("Is_Decrypted "); |
| 464 | if (Part->Has_Data_Media) |
| 465 | printf("Has_Data_Media "); |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 466 | if (Part->Can_Encrypt_Backup) |
| 467 | printf("Can_Encrypt_Backup "); |
| 468 | if (Part->Use_Userdata_Encryption) |
| 469 | printf("Use_Userdata_Encryption "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 470 | if (Part->Has_Android_Secure) |
| 471 | printf("Has_Android_Secure "); |
| 472 | if (Part->Is_Storage) |
| 473 | printf("Is_Storage "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 474 | if (Part->Is_Settings_Storage) |
| 475 | printf("Is_Settings_Storage "); |
Dees_Troy | 68cab49 | 2012-12-12 19:29:35 +0000 | [diff] [blame] | 476 | if (Part->Ignore_Blkid) |
| 477 | printf("Ignore_Blkid "); |
Dees_Troy | 16c2b31 | 2013-01-15 16:51:18 +0000 | [diff] [blame] | 478 | if (Part->Retain_Layout_Version) |
| 479 | printf("Retain_Layout_Version "); |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 480 | if (Part->Mount_To_Decrypt) |
| 481 | printf("Mount_To_Decrypt "); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 482 | if (Part->Can_Flash_Img) |
| 483 | printf("Can_Flash_Img "); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 484 | if (Part->Is_Adopted_Storage) |
| 485 | printf("Is_Adopted_Storage "); |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 486 | if (Part->SlotSelect) |
| 487 | printf("SlotSelect "); |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 488 | if (Part->Mount_Read_Only) |
| 489 | printf("Mount_Read_Only "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 490 | printf("\n"); |
| 491 | if (!Part->SubPartition_Of.empty()) |
| 492 | printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str()); |
| 493 | if (!Part->Symlink_Path.empty()) |
| 494 | printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str()); |
| 495 | if (!Part->Symlink_Mount_Point.empty()) |
| 496 | printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str()); |
| 497 | if (!Part->Primary_Block_Device.empty()) |
| 498 | printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str()); |
| 499 | if (!Part->Alternate_Block_Device.empty()) |
| 500 | printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str()); |
| 501 | if (!Part->Decrypted_Block_Device.empty()) |
| 502 | printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str()); |
dianlujitao | 4879b37 | 2018-12-03 18:45:47 +0800 | [diff] [blame] | 503 | if (!Part->Crypto_Key_Location.empty()) |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 504 | printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str()); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 505 | if (Part->Length != 0) |
| 506 | printf(" Length: %i\n", Part->Length); |
| 507 | if (!Part->Display_Name.empty()) |
| 508 | printf(" Display_Name: %s\n", Part->Display_Name.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 509 | if (!Part->Storage_Name.empty()) |
| 510 | printf(" Storage_Name: %s\n", Part->Storage_Name.c_str()); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 511 | if (!Part->Backup_Path.empty()) |
| 512 | printf(" Backup_Path: %s\n", Part->Backup_Path.c_str()); |
| 513 | if (!Part->Backup_Name.empty()) |
| 514 | printf(" Backup_Name: %s\n", Part->Backup_Name.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 515 | if (!Part->Backup_Display_Name.empty()) |
| 516 | printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str()); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 517 | if (!Part->Backup_FileName.empty()) |
| 518 | printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str()); |
| 519 | if (!Part->Storage_Path.empty()) |
| 520 | printf(" Storage_Path: %s\n", Part->Storage_Path.c_str()); |
| 521 | if (!Part->Current_File_System.empty()) |
| 522 | printf(" Current_File_System: %s\n", Part->Current_File_System.c_str()); |
| 523 | if (!Part->Fstab_File_System.empty()) |
| 524 | printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str()); |
| 525 | if (Part->Format_Block_Size != 0) |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 526 | printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size); |
Dees_Troy | 094207a | 2012-09-26 12:00:39 -0400 | [diff] [blame] | 527 | if (!Part->MTD_Name.empty()) |
| 528 | printf(" MTD_Name: %s\n", Part->MTD_Name.c_str()); |
Matt Mower | 029a82d | 2017-01-08 13:12:38 -0600 | [diff] [blame] | 529 | printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str()); |
Hashcode | 62bd9e0 | 2013-11-19 21:59:42 -0800 | [diff] [blame] | 530 | if (Part->Mount_Flags || !Part->Mount_Options.empty()) |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 531 | 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] | 532 | if (Part->MTP_Storage_ID) |
| 533 | printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID); |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 534 | if (!Part->Key_Directory.empty()) |
| 535 | printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str()); |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 536 | printf("\n"); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 537 | } |
| 538 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 539 | int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 540 | std::vector<TWPartition*>::iterator iter; |
| 541 | int ret = false; |
| 542 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 543 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 544 | |
Captain Throwback | d54e1da | 2020-03-04 16:49:51 -0500 | [diff] [blame] | 545 | if (Local_Path == "/tmp" || Local_Path == "/" || Local_Path == "/etc") |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 546 | return true; |
| 547 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 548 | // Iterate through all partitions |
| 549 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 550 | 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] | 551 | ret = (*iter)->Mount(Display_Error); |
| 552 | found = true; |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 553 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 554 | (*iter)->Mount(Display_Error); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 555 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 556 | } |
| 557 | if (found) { |
| 558 | return ret; |
| 559 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 560 | 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] | 561 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 562 | 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] | 563 | } |
| 564 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 565 | } |
| 566 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 567 | int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 568 | std::vector<TWPartition*>::iterator iter; |
| 569 | int ret = false; |
| 570 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 571 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 572 | |
| 573 | // Iterate through all partitions |
| 574 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 575 | 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] | 576 | ret = (*iter)->UnMount(Display_Error); |
| 577 | found = true; |
| 578 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 579 | (*iter)->UnMount(Display_Error); |
| 580 | } |
| 581 | } |
| 582 | if (found) { |
| 583 | return ret; |
| 584 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 585 | 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] | 586 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 587 | 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] | 588 | } |
| 589 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 590 | } |
| 591 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 592 | int TWPartitionManager::Is_Mounted_By_Path(string Path) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 593 | TWPartition* Part = Find_Partition_By_Path(Path); |
| 594 | |
| 595 | if (Part) |
| 596 | return Part->Is_Mounted(); |
| 597 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 598 | 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] | 599 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 600 | } |
| 601 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 602 | int TWPartitionManager::Mount_Current_Storage(bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 603 | string current_storage_path = DataManager::GetCurrentStoragePath(); |
| 604 | |
| 605 | if (Mount_By_Path(current_storage_path, Display_Error)) { |
| 606 | TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path); |
| 607 | if (FreeStorage) |
| 608 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU)); |
| 609 | return true; |
| 610 | } |
| 611 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 612 | } |
| 613 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 614 | int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) { |
| 615 | return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error); |
| 616 | } |
| 617 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 618 | TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 619 | std::vector<TWPartition*>::iterator iter; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 620 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 621 | |
dianlujitao | b76a73a | 2020-04-30 20:33:20 +0800 | [diff] [blame] | 622 | if (Local_Path == "/system") |
| 623 | Local_Path = Get_Android_Root_Path(); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 624 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 625 | 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] | 626 | return (*iter); |
| 627 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 628 | return NULL; |
| 629 | } |
| 630 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 631 | TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) { |
| 632 | std::vector<TWPartition*>::iterator iter; |
| 633 | |
| 634 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 635 | if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device)) |
| 636 | return (*iter); |
| 637 | } |
| 638 | return NULL; |
| 639 | } |
| 640 | |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 641 | 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] | 642 | // Check the backup name to ensure that it is the correct size and contains only valid characters |
| 643 | // and that a backup with that name doesn't already exist |
| 644 | char backup_name[MAX_BACKUP_NAME_LEN]; |
| 645 | char backup_loc[255], tw_image_dir[255]; |
| 646 | int copy_size; |
| 647 | int index, cur_char; |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 648 | string Backup_Loc; |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 649 | |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 650 | copy_size = Backup_Name.size(); |
| 651 | // Check size |
| 652 | if (copy_size > MAX_BACKUP_NAME_LEN) { |
| 653 | if (Display_Error) |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 654 | gui_err("backup_name_len=Backup name is too long."); |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 655 | return -2; |
| 656 | } |
| 657 | |
| 658 | // Check each character |
| 659 | strncpy(backup_name, Backup_Name.c_str(), copy_size); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 660 | if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0) |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 661 | return 0; // A "0" (zero) means to use the current timestamp for the backup name |
| 662 | for (index=0; index<copy_size; index++) { |
| 663 | cur_char = (int)backup_name[index]; |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 664 | 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] | 665 | // These are valid characters |
| 666 | // Numbers |
| 667 | // Upper case letters |
| 668 | // Lower case letters |
| 669 | // Space |
| 670 | // and -_.{}[] |
| 671 | } else { |
| 672 | if (Display_Error) |
Ethan Yonker | 4adc33e | 2016-01-22 16:07:11 -0600 | [diff] [blame] | 673 | 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] | 674 | return -3; |
| 675 | } |
| 676 | } |
| 677 | |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 678 | if (Must_Be_Unique) { |
| 679 | // Check to make sure that a backup with this name doesn't already exist |
| 680 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc); |
| 681 | strcpy(backup_loc, Backup_Loc.c_str()); |
| 682 | sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str()); |
| 683 | if (TWFunc::Path_Exists(tw_image_dir)) { |
| 684 | if (Display_Error) |
| 685 | gui_err("backup_name_exists=A backup with that name already exists!"); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 686 | |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 687 | return -4; |
| 688 | } |
| 689 | // Backup is unique |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 690 | } |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 691 | // No problems found |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 692 | return 0; |
| 693 | } |
| 694 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 695 | bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) { |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 696 | time_t start, stop; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 697 | int use_compression; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 698 | string backup_log = part_settings->Backup_Folder + "/recovery.log"; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 699 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 700 | if (part_settings->Part == NULL) |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 701 | return true; |
| 702 | |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 703 | DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 704 | |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 705 | TWFunc::SetPerformanceMode(true); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 706 | time(&start); |
| 707 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 708 | if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) { |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 709 | sync(); |
| 710 | sync(); |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 711 | string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName; |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 712 | if (!part_settings->adbbackup && part_settings->generate_digest) { |
| 713 | if (!twrpDigestDriver::Make_Digest(Full_Filename)) |
| 714 | goto backup_error; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 715 | } |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 716 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 717 | if (part_settings->Part->Has_SubPartition) { |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 718 | std::vector<TWPartition*>::iterator subpart; |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 719 | TWPartition *parentPart = part_settings->Part; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 720 | |
| 721 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 722 | 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] | 723 | part_settings->Part = *subpart; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 724 | if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) { |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 725 | goto backup_error; |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 726 | } |
Dees_Troy | 2727b99 | 2013-08-14 20:09:30 +0000 | [diff] [blame] | 727 | sync(); |
| 728 | sync(); |
bigbiff bigbiff | f5955b1 | 2019-05-18 17:28:58 -0400 | [diff] [blame] | 729 | string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 730 | if (!part_settings->adbbackup && part_settings->generate_digest) { |
| 731 | if (!twrpDigestDriver::Make_Digest(Full_Filename)) { |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 732 | goto backup_error; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 733 | } |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 734 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 735 | } |
| 736 | } |
| 737 | } |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 738 | |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 739 | time(&stop); |
that | 203bcc9 | 2015-05-09 17:27:33 +0200 | [diff] [blame] | 740 | int backup_time = (int) difftime(stop, start); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 741 | LOGINFO("Partition Backup time: %d\n", backup_time); |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 742 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 743 | if (part_settings->Part->Backup_Method == BM_FILES) { |
| 744 | part_settings->file_time += backup_time; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 745 | } else { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 746 | part_settings->img_time += backup_time; |
| 747 | |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 748 | } |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 749 | |
Matt Mower | 0289955 | 2016-12-30 18:13:51 -0600 | [diff] [blame] | 750 | TWFunc::SetPerformanceMode(false); |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 751 | return true; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 752 | } |
Ethan Yonker | cd00a8b | 2017-07-06 10:23:30 -0500 | [diff] [blame] | 753 | backup_error: |
| 754 | Clean_Backup_Folder(part_settings->Backup_Folder); |
| 755 | TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644); |
| 756 | tw_set_default_metadata(backup_log.c_str()); |
| 757 | TWFunc::SetPerformanceMode(false); |
| 758 | return false; |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 759 | } |
| 760 | |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 761 | void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) { |
| 762 | DIR *d = opendir(Backup_Folder.c_str()); |
| 763 | struct dirent *p; |
| 764 | int r; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 765 | vector<string> ext; |
| 766 | |
| 767 | //extensions we should delete when cleaning |
| 768 | ext.push_back("win"); |
| 769 | ext.push_back("md5"); |
| 770 | ext.push_back("sha2"); |
| 771 | ext.push_back("info"); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 772 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 773 | gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder."); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 774 | |
| 775 | if (d == NULL) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 776 | 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] | 777 | return; |
| 778 | } |
| 779 | |
Matt Mower | 2b18a53 | 2015-02-20 16:58:05 -0600 | [diff] [blame] | 780 | while ((p = readdir(d))) { |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 781 | if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, "..")) |
| 782 | continue; |
| 783 | |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 784 | string path = Backup_Folder + "/" + p->d_name; |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 785 | |
| 786 | size_t dot = path.find_last_of(".") + 1; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 787 | for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) { |
| 788 | if (path.substr(dot) == *i) { |
| 789 | r = unlink(path.c_str()); |
| 790 | if (r != 0) |
| 791 | LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno)); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 792 | } |
| 793 | } |
| 794 | } |
| 795 | closedir(d); |
| 796 | } |
| 797 | |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 798 | int TWPartitionManager::Check_Backup_Cancel() { |
| 799 | return stop_backup.get_value(); |
| 800 | } |
| 801 | |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 802 | int TWPartitionManager::Cancel_Backup() { |
| 803 | string Backup_Folder, Backup_Name, Full_Backup_Path; |
| 804 | |
| 805 | stop_backup.set_value(1); |
| 806 | |
| 807 | if (tar_fork_pid != 0) { |
| 808 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
| 809 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder); |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 810 | Full_Backup_Path = Backup_Folder + "/" + Backup_Name; |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 811 | LOGINFO("Killing pid: %d\n", tar_fork_pid); |
| 812 | kill(tar_fork_pid, SIGUSR2); |
| 813 | while (kill(tar_fork_pid, 0) == 0) { |
| 814 | usleep(1000); |
| 815 | } |
| 816 | LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n"); |
| 817 | LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str()); |
| 818 | TWFunc::removeDir(Full_Backup_Path, false); |
| 819 | tar_fork_pid = 0; |
| 820 | } |
| 821 | |
| 822 | return 0; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 823 | } |
| 824 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 825 | int TWPartitionManager::Run_Backup(bool adbbackup) { |
| 826 | PartitionSettings part_settings; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 827 | int partition_count = 0, disable_free_space_check = 0, skip_digest = 0; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 828 | string Backup_Name, Backup_List, backup_path; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 829 | unsigned long long total_bytes = 0, free_space = 0; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 830 | TWPartition* storage = NULL; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 831 | std::vector<TWPartition*>::iterator subpart; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 832 | struct tm *t; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 833 | time_t seconds, total_start, total_stop; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 834 | size_t start_pos = 0, end_pos = 0; |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 835 | stop_backup.set_value(0); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 836 | seconds = time(0); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 837 | t = localtime(&seconds); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 838 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 839 | part_settings.img_bytes_remaining = 0; |
| 840 | part_settings.file_bytes_remaining = 0; |
| 841 | part_settings.img_time = 0; |
| 842 | part_settings.file_time = 0; |
| 843 | part_settings.img_bytes = 0; |
| 844 | part_settings.file_bytes = 0; |
| 845 | part_settings.PM_Method = PM_BACKUP; |
| 846 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 847 | part_settings.adbbackup = adbbackup; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 848 | time(&total_start); |
| 849 | |
| 850 | Update_System_Details(); |
| 851 | |
| 852 | if (!Mount_Current_Storage(true)) |
| 853 | return false; |
| 854 | |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 855 | DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest); |
| 856 | if (skip_digest == 0) |
| 857 | part_settings.generate_digest = true; |
Dees_Troy | c5865ab | 2012-09-24 15:08:04 -0400 | [diff] [blame] | 858 | else |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 859 | part_settings.generate_digest = false; |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 860 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 861 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder); |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 862 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
| 863 | if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) { |
| 864 | Backup_Name = TWFunc::Get_Current_Date(); |
| 865 | } 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] | 866 | TWFunc::Auto_Generate_Backup_Name(); |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 867 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 868 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 869 | |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 870 | LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str()); |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 871 | part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 872 | |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 873 | LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str()); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 874 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 875 | LOGINFO("Calculating backup details...\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 876 | DataManager::GetValue("tw_backup_list", Backup_List); |
| 877 | if (!Backup_List.empty()) { |
| 878 | end_pos = Backup_List.find(";", start_pos); |
| 879 | while (end_pos != string::npos && start_pos < Backup_List.size()) { |
| 880 | backup_path = Backup_List.substr(start_pos, end_pos - start_pos); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 881 | part_settings.Part = Find_Partition_By_Path(backup_path); |
| 882 | if (part_settings.Part != NULL) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 883 | partition_count++; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 884 | if (part_settings.Part->Backup_Method == BM_FILES) |
| 885 | part_settings.file_bytes += part_settings.Part->Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 886 | else |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 887 | part_settings.img_bytes += part_settings.Part->Backup_Size; |
| 888 | if (part_settings.Part->Has_SubPartition) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 889 | std::vector<TWPartition*>::iterator subpart; |
| 890 | |
| 891 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 892 | 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] | 893 | partition_count++; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 894 | if ((*subpart)->Backup_Method == BM_FILES) |
| 895 | part_settings.file_bytes += (*subpart)->Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 896 | else |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 897 | part_settings.img_bytes += (*subpart)->Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 898 | } |
| 899 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 900 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 901 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 902 | 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] | 903 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 904 | start_pos = end_pos + 1; |
| 905 | end_pos = Backup_List.find(";", start_pos); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 906 | } |
| 907 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 908 | |
| 909 | if (partition_count == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 910 | gui_msg("no_partition_selected=No partitions selected for backup."); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 911 | return false; |
| 912 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 913 | if (adbbackup) { |
| 914 | if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) { |
| 915 | return false; |
| 916 | } |
| 917 | } |
| 918 | total_bytes = part_settings.file_bytes + part_settings.img_bytes; |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 919 | ProgressTracking progress(total_bytes); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 920 | part_settings.progress = &progress; |
| 921 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 922 | gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count)); |
| 923 | 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] | 924 | storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath()); |
| 925 | if (storage != NULL) { |
| 926 | free_space = storage->Free; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 927 | 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] | 928 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 929 | gui_err("unable_locate_storage=Unable to locate storage device."); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 930 | return false; |
| 931 | } |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 932 | |
Matt Mower | bfccfb8 | 2016-04-25 23:22:31 -0500 | [diff] [blame] | 933 | DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 934 | |
| 935 | if (adbbackup) |
| 936 | disable_free_space_check = true; |
| 937 | |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 938 | if (!disable_free_space_check) { |
| 939 | if (free_space - (32 * 1024 * 1024) < total_bytes) { |
| 940 | // We require an extra 32MB just in case |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 941 | gui_err("no_space=Not enough free space on storage."); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 942 | return false; |
| 943 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 944 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 945 | part_settings.img_bytes_remaining = part_settings.img_bytes; |
| 946 | part_settings.file_bytes_remaining = part_settings.file_bytes; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 947 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 948 | gui_msg("backup_started=[BACKUP STARTED]"); |
bigbiff bigbiff | cdd97c7 | 2019-03-29 19:12:33 -0400 | [diff] [blame] | 949 | |
| 950 | int is_decrypted = 0; |
| 951 | int is_encrypted = 0; |
| 952 | |
| 953 | DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted); |
| 954 | DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted); |
| 955 | if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) { |
| 956 | gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder)); |
| 957 | if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) { |
| 958 | gui_err("fail_backup_folder=Failed to make backup folder."); |
| 959 | return false; |
| 960 | } |
Dees_Troy | d4b22b0 | 2013-01-18 17:17:58 +0000 | [diff] [blame] | 961 | } |
| 962 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 963 | DataManager::SetProgress(0.0); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 964 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 965 | start_pos = 0; |
| 966 | end_pos = Backup_List.find(";", start_pos); |
| 967 | while (end_pos != string::npos && start_pos < Backup_List.size()) { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 968 | if (stop_backup.get_value() != 0) |
| 969 | return -1; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 970 | backup_path = Backup_List.substr(start_pos, end_pos - start_pos); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 971 | part_settings.Part = Find_Partition_By_Path(backup_path); |
| 972 | if (part_settings.Part != NULL) { |
| 973 | if (!Backup_Partition(&part_settings)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 974 | return false; |
| 975 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 976 | 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] | 977 | } |
| 978 | start_pos = end_pos + 1; |
| 979 | end_pos = Backup_List.find(";", start_pos); |
| 980 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 981 | |
| 982 | // Average BPS |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 983 | if (part_settings.img_time == 0) |
| 984 | part_settings.img_time = 1; |
| 985 | if (part_settings.file_time == 0) |
| 986 | part_settings.file_time = 1; |
| 987 | int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time; |
| 988 | 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] | 989 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 990 | if (part_settings.file_bytes != 0) |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 991 | 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] | 992 | if (part_settings.img_bytes != 0) |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 993 | 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] | 994 | |
| 995 | time(&total_stop); |
| 996 | int total_time = (int) difftime(total_stop, total_start); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 997 | |
| 998 | uint64_t actual_backup_size; |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 999 | if (!adbbackup) { |
| 1000 | TWExclude twe; |
| 1001 | actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder); |
| 1002 | } else |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1003 | actual_backup_size = part_settings.file_bytes + part_settings.img_bytes; |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1004 | actual_backup_size /= (1024LLU * 1024LLU); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1005 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1006 | int prev_img_bps = 0, use_compression = 0; |
| 1007 | unsigned long long prev_file_bps = 0; |
Matt Mower | 173cdb9 | 2016-12-31 02:49:19 -0600 | [diff] [blame] | 1008 | DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1009 | img_bps += (prev_img_bps * 4); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1010 | img_bps /= 5; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1011 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1012 | DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1013 | if (use_compression) |
| 1014 | DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1015 | else |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1016 | DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps); |
| 1017 | file_bps += (prev_file_bps * 4); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1018 | file_bps /= 5; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1019 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 1020 | DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 1021 | if (use_compression) |
| 1022 | DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps); |
| 1023 | else |
| 1024 | DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps); |
| 1025 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1026 | 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] | 1027 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 1028 | UnMount_Main_Partitions(); |
Ethan Yonker | 56db1c4 | 2015-12-20 22:49:00 -0600 | [diff] [blame] | 1029 | 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] | 1030 | string backup_log = part_settings.Backup_Folder + "/recovery.log"; |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 1031 | TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644); |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 1032 | tw_set_default_metadata(backup_log.c_str()); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1033 | |
| 1034 | if (part_settings.adbbackup) { |
| 1035 | if (twadbbu::Write_ADB_Stream_Trailer() == false) { |
| 1036 | return false; |
| 1037 | } |
| 1038 | } |
| 1039 | part_settings.adbbackup = false; |
| 1040 | DataManager::SetValue("tw_enable_adb_backup", 0); |
| 1041 | |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 1042 | return true; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1043 | } |
| 1044 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1045 | bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) { |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1046 | time_t Start, Stop; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1047 | |
bigbiff bigbiff | b5ecaad | 2017-03-20 18:53:53 -0400 | [diff] [blame] | 1048 | if (part_settings->adbbackup) { |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1049 | std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win"; |
| 1050 | LOGINFO("setting backup name: %s\n", partName.c_str()); |
bigbiff bigbiff | b5ecaad | 2017-03-20 18:53:53 -0400 | [diff] [blame] | 1051 | part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win"); |
| 1052 | } |
| 1053 | |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1054 | TWFunc::SetPerformanceMode(true); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1055 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1056 | time(&Start); |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 1057 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1058 | if (!part_settings->Part->Restore(part_settings)) { |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1059 | TWFunc::SetPerformanceMode(false); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1060 | return false; |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1061 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1062 | if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) { |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1063 | std::vector<TWPartition*>::iterator subpart; |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 1064 | TWPartition *parentPart = part_settings->Part; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1065 | |
| 1066 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 1067 | part_settings->Part = *subpart; |
| 1068 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) { |
| 1069 | part_settings->Part = (*subpart); |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1070 | 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] | 1071 | if (!(*subpart)->Restore(part_settings)) { |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1072 | TWFunc::SetPerformanceMode(false); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1073 | return false; |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1074 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1075 | } |
| 1076 | } |
| 1077 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1078 | time(&Stop); |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1079 | TWFunc::SetPerformanceMode(false); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1080 | gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start))); |
| 1081 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1082 | return true; |
| 1083 | } |
| 1084 | |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 1085 | int TWPartitionManager::Run_Restore(const string& Restore_Name) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1086 | PartitionSettings part_settings; |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 1087 | int check_digest; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1088 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1089 | time_t rStart, rStop; |
| 1090 | time(&rStart); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1091 | string Restore_List, restore_path; |
| 1092 | size_t start_pos = 0, end_pos; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1093 | |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 1094 | part_settings.Backup_Folder = Restore_Name; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1095 | part_settings.Part = NULL; |
| 1096 | part_settings.partition_count = 0; |
| 1097 | part_settings.total_restore_size = 0; |
| 1098 | part_settings.adbbackup = false; |
| 1099 | part_settings.PM_Method = PM_RESTORE; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1100 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1101 | gui_msg("restore_started=[RESTORE STARTED]"); |
| 1102 | gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name)); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1103 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1104 | if (!Mount_Current_Storage(true)) |
| 1105 | return false; |
| 1106 | |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 1107 | DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest); |
| 1108 | if (check_digest > 0) { |
| 1109 | // Check Digest files first before restoring to ensure that all of them match before starting a restore |
| 1110 | TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}")); |
| 1111 | gui_msg("verifying_digest=Verifying Digest"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1112 | } else { |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 1113 | gui_msg("skip_digest=Skipping Digest check based on user setting."); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1114 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1115 | gui_msg("calc_restore=Calculating restore details..."); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1116 | DataManager::GetValue("tw_restore_selected", Restore_List); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1117 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1118 | if (!Restore_List.empty()) { |
| 1119 | end_pos = Restore_List.find(";", start_pos); |
| 1120 | while (end_pos != string::npos && start_pos < Restore_List.size()) { |
| 1121 | restore_path = Restore_List.substr(start_pos, end_pos - start_pos); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1122 | part_settings.Part = Find_Partition_By_Path(restore_path); |
| 1123 | if (part_settings.Part != NULL) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1124 | if (part_settings.Part->Mount_Read_Only) { |
| 1125 | 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] | 1126 | return false; |
| 1127 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1128 | |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 1129 | string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName; |
| 1130 | |
| 1131 | if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1132 | return false; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1133 | part_settings.partition_count++; |
| 1134 | part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings); |
| 1135 | if (part_settings.Part->Has_SubPartition) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 1136 | TWPartition *parentPart = part_settings.Part; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1137 | std::vector<TWPartition*>::iterator subpart; |
| 1138 | |
| 1139 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 1140 | part_settings.Part = *subpart; |
| 1141 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) { |
bigbiff bigbiff | 56cf564 | 2016-08-19 17:43:45 -0400 | [diff] [blame] | 1142 | if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1143 | return false; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1144 | part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1145 | } |
| 1146 | } |
| 1147 | } |
| 1148 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1149 | 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] | 1150 | } |
| 1151 | start_pos = end_pos + 1; |
| 1152 | end_pos = Restore_List.find(";", start_pos); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1153 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1154 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1155 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1156 | if (part_settings.partition_count == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1157 | gui_err("no_part_restore=No partitions selected for restore."); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1158 | return false; |
| 1159 | } |
| 1160 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1161 | gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count)); |
| 1162 | 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] | 1163 | DataManager::SetProgress(0.0); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1164 | ProgressTracking progress(part_settings.total_restore_size); |
| 1165 | part_settings.progress = &progress; |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 1166 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1167 | start_pos = 0; |
| 1168 | if (!Restore_List.empty()) { |
| 1169 | end_pos = Restore_List.find(";", start_pos); |
| 1170 | while (end_pos != string::npos && start_pos < Restore_List.size()) { |
| 1171 | restore_path = Restore_List.substr(start_pos, end_pos - start_pos); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1172 | |
| 1173 | part_settings.Part = Find_Partition_By_Path(restore_path); |
| 1174 | if (part_settings.Part != NULL) { |
| 1175 | part_settings.partition_count++; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1176 | if (!Restore_Partition(&part_settings)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1177 | return false; |
| 1178 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1179 | 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] | 1180 | } |
| 1181 | start_pos = end_pos + 1; |
| 1182 | end_pos = Restore_List.find(";", start_pos); |
| 1183 | } |
| 1184 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1185 | 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] | 1186 | UnMount_By_Path(Get_Android_Root_Path(), false); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1187 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 1188 | UnMount_Main_Partitions(); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1189 | time(&rStop); |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 1190 | 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] | 1191 | DataManager::SetValue("tw_file_progress", ""); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1192 | |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1193 | return true; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1194 | } |
| 1195 | |
| 1196 | void TWPartitionManager::Set_Restore_Files(string Restore_Name) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1197 | // Start with the default values |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1198 | string Restore_List; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1199 | bool get_date = true, check_encryption = true; |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1200 | bool adbbackup = false; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1201 | |
| 1202 | DataManager::SetValue("tw_restore_encrypted", 0); |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1203 | if (twadbbu::Check_ADB_Backup_File(Restore_Name)) { |
| 1204 | vector<string> adb_files; |
| 1205 | adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name); |
| 1206 | for (unsigned int i = 0; i < adb_files.size(); ++i) { |
| 1207 | string adb_restore_file = adb_files.at(i); |
| 1208 | std::size_t pos = adb_restore_file.find_first_of("."); |
| 1209 | std::string path = "/" + adb_restore_file.substr(0, pos); |
| 1210 | Restore_List = path + ";"; |
| 1211 | TWPartition* Part = Find_Partition_By_Path(path); |
| 1212 | Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file); |
| 1213 | adbbackup = true; |
| 1214 | } |
| 1215 | DataManager::SetValue("tw_enable_adb_backup", 1); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1216 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1217 | else { |
| 1218 | DIR* d; |
| 1219 | d = opendir(Restore_Name.c_str()); |
| 1220 | if (d == NULL) |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1221 | { |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1222 | gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno))); |
| 1223 | return; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1224 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1225 | |
| 1226 | struct dirent* de; |
| 1227 | while ((de = readdir(d)) != NULL) |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1228 | { |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1229 | // Strip off three components |
| 1230 | char str[256]; |
| 1231 | char* label; |
| 1232 | char* fstype = NULL; |
| 1233 | char* extn = NULL; |
| 1234 | char* ptr; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1235 | |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1236 | strcpy(str, de->d_name); |
| 1237 | if (strlen(str) <= 2) |
| 1238 | continue; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1239 | |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1240 | if (get_date) { |
| 1241 | char file_path[255]; |
| 1242 | struct stat st; |
| 1243 | |
| 1244 | strcpy(file_path, Restore_Name.c_str()); |
| 1245 | strcat(file_path, "/"); |
| 1246 | strcat(file_path, str); |
| 1247 | stat(file_path, &st); |
| 1248 | string backup_date = ctime((const time_t*)(&st.st_mtime)); |
| 1249 | DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date); |
| 1250 | get_date = false; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1251 | } |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1252 | |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1253 | label = str; |
| 1254 | ptr = label; |
| 1255 | while (*ptr && *ptr != '.') ptr++; |
| 1256 | if (*ptr == '.') |
| 1257 | { |
| 1258 | *ptr = 0x00; |
| 1259 | ptr++; |
| 1260 | fstype = ptr; |
| 1261 | } |
| 1262 | while (*ptr && *ptr != '.') ptr++; |
| 1263 | if (*ptr == '.') |
| 1264 | { |
| 1265 | *ptr = 0x00; |
| 1266 | ptr++; |
| 1267 | extn = ptr; |
| 1268 | } |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1269 | |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1270 | if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue; |
| 1271 | int extnlength = strlen(extn); |
| 1272 | if (extnlength != 3 && extnlength != 6) continue; |
| 1273 | if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue; |
| 1274 | //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue; |
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 | if (check_encryption) { |
| 1277 | string filename = Restore_Name + "/"; |
| 1278 | filename += de->d_name; |
| 1279 | if (TWFunc::Get_File_Type(filename) == 2) { |
| 1280 | LOGINFO("'%s' is encrypted\n", filename.c_str()); |
| 1281 | DataManager::SetValue("tw_restore_encrypted", 1); |
| 1282 | } |
| 1283 | } |
| 1284 | if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue; |
| 1285 | |
| 1286 | TWPartition* Part = Find_Partition_By_Path(label); |
| 1287 | if (Part == NULL) |
| 1288 | { |
| 1289 | gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label)); |
| 1290 | continue; |
| 1291 | } |
| 1292 | |
| 1293 | Part->Backup_FileName = de->d_name; |
| 1294 | if (strlen(extn) > 3) { |
| 1295 | Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3); |
| 1296 | } |
| 1297 | |
dianlujitao | b76a73a | 2020-04-30 20:33:20 +0800 | [diff] [blame] | 1298 | if (!Part->Is_SubPartition) { |
| 1299 | if (Part->Backup_Path == Get_Android_Root_Path()) |
| 1300 | Restore_List += "/system;"; |
| 1301 | else |
| 1302 | Restore_List += Part->Backup_Path + ";"; |
| 1303 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1304 | } |
| 1305 | closedir(d); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1306 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1307 | |
| 1308 | if (adbbackup) { |
| 1309 | Restore_List = "ADB_Backup;"; |
| 1310 | adbbackup = false; |
| 1311 | } |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1312 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1313 | // Set the final value |
| 1314 | DataManager::SetValue("tw_restore_list", Restore_List); |
| 1315 | DataManager::SetValue("tw_restore_selected", Restore_List); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1316 | return; |
| 1317 | } |
| 1318 | |
| 1319 | int TWPartitionManager::Wipe_By_Path(string Path) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1320 | std::vector<TWPartition*>::iterator iter; |
Mohd Faraz | 77a3191 | 2020-04-21 18:56:44 +0530 | [diff] [blame] | 1321 | std::vector < TWPartition * >::iterator iter1; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1322 | int ret = false; |
| 1323 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1324 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1325 | |
dianlujitao | b76a73a | 2020-04-30 20:33:20 +0800 | [diff] [blame] | 1326 | if (Local_Path == "/system") |
| 1327 | Local_Path = Get_Android_Root_Path(); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1328 | // Iterate through all partitions |
| 1329 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 1330 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
Mohd Faraz | 77a3191 | 2020-04-21 18:56:44 +0530 | [diff] [blame] | 1331 | // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping |
| 1332 | (*iter)->Find_Actual_Block_Device(); |
| 1333 | for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++) |
| 1334 | { |
| 1335 | (*iter1)->Find_Actual_Block_Device(); |
| 1336 | if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point) |
| 1337 | (*iter1)->UnMount(false); |
| 1338 | } |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1339 | if (Path == "/and-sec") |
| 1340 | ret = (*iter)->Wipe_AndSec(); |
| 1341 | else |
| 1342 | ret = (*iter)->Wipe(); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1343 | found = true; |
| 1344 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1345 | (*iter)->Wipe(); |
| 1346 | } |
| 1347 | } |
| 1348 | if (found) { |
| 1349 | return ret; |
| 1350 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1351 | 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] | 1352 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1353 | } |
| 1354 | |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 1355 | int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) { |
| 1356 | std::vector<TWPartition*>::iterator iter; |
| 1357 | int ret = false; |
| 1358 | bool found = false; |
| 1359 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 1360 | |
| 1361 | // Iterate through all partitions |
| 1362 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1363 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 1364 | if (Path == "/and-sec") |
| 1365 | ret = (*iter)->Wipe_AndSec(); |
| 1366 | else |
| 1367 | ret = (*iter)->Wipe(New_File_System); |
| 1368 | found = true; |
| 1369 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1370 | (*iter)->Wipe(New_File_System); |
| 1371 | } |
| 1372 | } |
| 1373 | if (found) { |
| 1374 | return ret; |
| 1375 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1376 | 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] | 1377 | return false; |
| 1378 | } |
| 1379 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1380 | int TWPartitionManager::Factory_Reset(void) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1381 | std::vector<TWPartition*>::iterator iter; |
| 1382 | int ret = true; |
| 1383 | |
| 1384 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1385 | if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) { |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 1386 | #ifdef TW_OEM_BUILD |
| 1387 | if ((*iter)->Mount_Point == "/data") { |
| 1388 | if (!(*iter)->Wipe_Encryption()) |
| 1389 | ret = false; |
| 1390 | } else { |
| 1391 | #endif |
| 1392 | if (!(*iter)->Wipe()) |
| 1393 | ret = false; |
| 1394 | #ifdef TW_OEM_BUILD |
| 1395 | } |
| 1396 | #endif |
Dees_Troy | 094207a | 2012-09-26 12:00:39 -0400 | [diff] [blame] | 1397 | } else if ((*iter)->Has_Android_Secure) { |
| 1398 | if (!(*iter)->Wipe_AndSec()) |
| 1399 | ret = false; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1400 | } |
| 1401 | } |
Ethan Yonker | 9fa76ba | 2016-06-30 14:05:43 -0500 | [diff] [blame] | 1402 | TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script"); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1403 | return ret; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1404 | } |
| 1405 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1406 | int TWPartitionManager::Wipe_Dalvik_Cache(void) { |
| 1407 | struct stat st; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1408 | vector <string> dir; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1409 | |
| 1410 | if (!Mount_By_Path("/data", true)) |
| 1411 | return false; |
| 1412 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1413 | dir.push_back("/data/dalvik-cache"); |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1414 | |
bigbiff | 349ea55 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 1415 | std::string cacheDir = TWFunc::get_log_dir(); |
| 1416 | if (cacheDir == CACHE_LOGS_DIR) { |
| 1417 | if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) { |
| 1418 | LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR); |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1419 | } |
| 1420 | dir.push_back(cacheDir + "dalvik-cache"); |
| 1421 | dir.push_back(cacheDir + "/dc"); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1422 | } |
Ethan Yonker | ff2b788 | 2016-12-10 09:04:41 -0600 | [diff] [blame] | 1423 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1424 | TWPartition* sdext = Find_Partition_By_Path("/sd-ext"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1425 | if (sdext && sdext->Is_Present && sdext->Mount(false)) |
| 1426 | { |
| 1427 | if (stat("/sd-ext/dalvik-cache", &st) == 0) |
| 1428 | { |
Ethan Yonker | ff2b788 | 2016-12-10 09:04:41 -0600 | [diff] [blame] | 1429 | dir.push_back("/sd-ext/dalvik-cache"); |
| 1430 | } |
| 1431 | } |
| 1432 | |
bigbiff | 349ea55 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 1433 | if (cacheDir == CACHE_LOGS_DIR) { |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1434 | gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories..."); |
| 1435 | } else { |
| 1436 | gui_msg("wiping_dalvik=Wiping Dalvik Directory..."); |
| 1437 | } |
Ethan Yonker | ff2b788 | 2016-12-10 09:04:41 -0600 | [diff] [blame] | 1438 | for (unsigned i = 0; i < dir.size(); ++i) { |
| 1439 | if (stat(dir.at(i).c_str(), &st) == 0) { |
| 1440 | TWFunc::removeDir(dir.at(i), false); |
| 1441 | gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i))); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1442 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1443 | } |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1444 | |
bigbiff | 349ea55 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 1445 | if (cacheDir == CACHE_LOGS_DIR) { |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1446 | gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!"); |
| 1447 | } else { |
| 1448 | gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!"); |
| 1449 | } |
| 1450 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1451 | return true; |
| 1452 | } |
| 1453 | |
| 1454 | int TWPartitionManager::Wipe_Rotate_Data(void) { |
| 1455 | if (!Mount_By_Path("/data", true)) |
| 1456 | return false; |
| 1457 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1458 | unlink("/data/misc/akmd*"); |
| 1459 | unlink("/data/misc/rild*"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1460 | gui_print("Rotation data wiped.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1461 | return true; |
| 1462 | } |
| 1463 | |
| 1464 | int TWPartitionManager::Wipe_Battery_Stats(void) { |
| 1465 | struct stat st; |
| 1466 | |
| 1467 | if (!Mount_By_Path("/data", true)) |
| 1468 | return false; |
| 1469 | |
| 1470 | if (0 != stat("/data/system/batterystats.bin", &st)) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1471 | gui_print("No Battery Stats Found. No Need To Wipe.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1472 | } else { |
| 1473 | remove("/data/system/batterystats.bin"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1474 | gui_print("Cleared battery stats.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1475 | } |
| 1476 | return true; |
| 1477 | } |
| 1478 | |
Dees_Troy | 2ff5a8d | 2012-09-26 14:53:02 -0400 | [diff] [blame] | 1479 | int TWPartitionManager::Wipe_Android_Secure(void) { |
| 1480 | std::vector<TWPartition*>::iterator iter; |
| 1481 | int ret = false; |
| 1482 | bool found = false; |
| 1483 | |
| 1484 | // Iterate through all partitions |
| 1485 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1486 | if ((*iter)->Has_Android_Secure) { |
| 1487 | ret = (*iter)->Wipe_AndSec(); |
| 1488 | found = true; |
| 1489 | } |
| 1490 | } |
| 1491 | if (found) { |
| 1492 | return ret; |
| 1493 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1494 | gui_err("no_andsec=No android secure partitions found."); |
Dees_Troy | 2ff5a8d | 2012-09-26 14:53:02 -0400 | [diff] [blame] | 1495 | } |
| 1496 | return false; |
| 1497 | } |
| 1498 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1499 | int TWPartitionManager::Format_Data(void) { |
| 1500 | TWPartition* dat = Find_Partition_By_Path("/data"); |
| 1501 | |
| 1502 | if (dat != NULL) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1503 | return dat->Wipe_Encryption(); |
| 1504 | } else { |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 1505 | 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] | 1506 | return false; |
| 1507 | } |
| 1508 | return false; |
| 1509 | } |
| 1510 | |
| 1511 | int TWPartitionManager::Wipe_Media_From_Data(void) { |
| 1512 | TWPartition* dat = Find_Partition_By_Path("/data"); |
| 1513 | |
| 1514 | if (dat != NULL) { |
| 1515 | if (!dat->Has_Data_Media) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1516 | LOGERR("This device does not have /data/media\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1517 | return false; |
| 1518 | } |
| 1519 | if (!dat->Mount(true)) |
| 1520 | return false; |
| 1521 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1522 | gui_msg("wiping_datamedia=Wiping internal storage -- /data/media..."); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 1523 | Remove_MTP_Storage(dat->MTP_Storage_ID); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1524 | TWFunc::removeDir("/data/media", false); |
xiaolu | 9416f4f | 2015-06-04 08:22:23 +0800 | [diff] [blame] | 1525 | dat->Recreate_Media_Folder(); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 1526 | Add_MTP_Storage(dat->MTP_Storage_ID); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1527 | return true; |
| 1528 | } else { |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 1529 | 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] | 1530 | return false; |
| 1531 | } |
| 1532 | return false; |
| 1533 | } |
| 1534 | |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 1535 | int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) { |
| 1536 | std::vector<TWPartition*>::iterator iter; |
| 1537 | int ret = false; |
| 1538 | bool found = false; |
| 1539 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 1540 | |
| 1541 | if (Local_Path == "/tmp" || Local_Path == "/") |
| 1542 | return true; |
| 1543 | |
| 1544 | // Iterate through all partitions |
| 1545 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1546 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 1547 | ret = (*iter)->Repair(); |
| 1548 | found = true; |
| 1549 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1550 | (*iter)->Repair(); |
| 1551 | } |
| 1552 | } |
| 1553 | if (found) { |
| 1554 | return ret; |
| 1555 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1556 | 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] | 1557 | } else { |
| 1558 | LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
| 1559 | } |
| 1560 | return false; |
| 1561 | } |
| 1562 | |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 1563 | int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) { |
| 1564 | std::vector<TWPartition*>::iterator iter; |
| 1565 | int ret = false; |
| 1566 | bool found = false; |
| 1567 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 1568 | |
| 1569 | if (Local_Path == "/tmp" || Local_Path == "/") |
| 1570 | return true; |
| 1571 | |
| 1572 | // Iterate through all partitions |
| 1573 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1574 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 1575 | ret = (*iter)->Resize(); |
| 1576 | found = true; |
| 1577 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1578 | (*iter)->Resize(); |
| 1579 | } |
| 1580 | } |
| 1581 | if (found) { |
| 1582 | return ret; |
| 1583 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1584 | 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] | 1585 | } else { |
| 1586 | LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
| 1587 | } |
| 1588 | return false; |
| 1589 | } |
| 1590 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1591 | void TWPartitionManager::Update_System_Details(void) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1592 | std::vector<TWPartition*>::iterator iter; |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1593 | int data_size = 0; |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1594 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1595 | gui_msg("update_part_details=Updating partition details..."); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1596 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 1597 | (*iter)->Update_Size(true); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1598 | if ((*iter)->Can_Be_Mounted) { |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 1599 | if ((*iter)->Mount_Point == Get_Android_Root_Path()) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1600 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1601 | DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size); |
Ethan Yonker | 76bbd3a | 2019-05-10 10:50:04 -0500 | [diff] [blame] | 1602 | TWFunc::Is_TWRP_App_In_System(); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1603 | } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") { |
| 1604 | data_size += (int)((*iter)->Backup_Size / 1048576LLU); |
| 1605 | } else if ((*iter)->Mount_Point == "/cache") { |
| 1606 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1607 | DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size); |
| 1608 | } else if ((*iter)->Mount_Point == "/sd-ext") { |
| 1609 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1610 | DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size); |
| 1611 | if ((*iter)->Backup_Size == 0) { |
| 1612 | DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0); |
| 1613 | DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0); |
| 1614 | } else |
| 1615 | DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1); |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1616 | } else if ((*iter)->Has_Android_Secure) { |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1617 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1618 | DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1619 | if ((*iter)->Backup_Size == 0) { |
| 1620 | DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0); |
| 1621 | DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0); |
| 1622 | } else |
| 1623 | DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1); |
Dees_Troy | 2c50e18 | 2012-09-26 20:05:28 -0400 | [diff] [blame] | 1624 | } else if ((*iter)->Mount_Point == "/boot") { |
| 1625 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1626 | DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size); |
| 1627 | if ((*iter)->Backup_Size == 0) { |
| 1628 | DataManager::SetValue("tw_has_boot_partition", 0); |
| 1629 | DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0); |
| 1630 | } else |
| 1631 | DataManager::SetValue("tw_has_boot_partition", 1); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1632 | } |
Dees_Troy | aa9cc40 | 2012-10-13 12:14:05 -0400 | [diff] [blame] | 1633 | } else { |
| 1634 | // Handle unmountable partitions in case we reset defaults |
| 1635 | if ((*iter)->Mount_Point == "/boot") { |
| 1636 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1637 | DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size); |
| 1638 | if ((*iter)->Backup_Size == 0) { |
| 1639 | DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0); |
| 1640 | DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0); |
| 1641 | } else |
| 1642 | DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1); |
| 1643 | } else if ((*iter)->Mount_Point == "/recovery") { |
| 1644 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1645 | DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size); |
| 1646 | if ((*iter)->Backup_Size == 0) { |
| 1647 | DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0); |
| 1648 | DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0); |
| 1649 | } else |
| 1650 | DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1); |
Gary Peck | 82599a8 | 2012-11-21 16:23:12 -0800 | [diff] [blame] | 1651 | } else if ((*iter)->Mount_Point == "/data") { |
| 1652 | data_size += (int)((*iter)->Backup_Size / 1048576LLU); |
Dees_Troy | aa9cc40 | 2012-10-13 12:14:05 -0400 | [diff] [blame] | 1653 | } |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1654 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1655 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1656 | gui_msg("update_part_details_done=...done"); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1657 | DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size); |
| 1658 | string current_storage_path = DataManager::GetCurrentStoragePath(); |
| 1659 | TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1660 | if (FreeStorage != NULL) { |
| 1661 | // Attempt to mount storage |
| 1662 | if (!FreeStorage->Mount(false)) { |
Matt Mower | 2d50cad | 2015-12-03 22:26:55 -0600 | [diff] [blame] | 1663 | gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage")); |
| 1664 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1665 | } else { |
| 1666 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU)); |
| 1667 | } |
| 1668 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1669 | LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str()); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1670 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1671 | if (!Write_Fstab()) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1672 | LOGERR("Error creating fstab\n"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1673 | return; |
| 1674 | } |
| 1675 | |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1676 | void TWPartitionManager::Post_Decrypt(const string& Block_Device) { |
| 1677 | TWPartition* dat = Find_Partition_By_Path("/data"); |
| 1678 | if (dat != NULL) { |
| 1679 | DataManager::SetValue(TW_IS_DECRYPTED, 1); |
| 1680 | dat->Is_Decrypted = true; |
| 1681 | if (!Block_Device.empty()) { |
| 1682 | dat->Decrypted_Block_Device = Block_Device; |
| 1683 | gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device)); |
| 1684 | } else { |
| 1685 | gui_msg("decrypt_success_nodev=Data successfully decrypted"); |
| 1686 | } |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 1687 | property_set("twrp.decrypt.done", "true"); |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1688 | dat->Setup_File_System(false); |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 1689 | dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1690 | |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 1691 | sleep(1); // Sleep for a bit so that the device will be ready |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1692 | if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) { |
| 1693 | dat->Storage_Path = "/data/media/0"; |
| 1694 | dat->Symlink_Path = dat->Storage_Path; |
| 1695 | DataManager::SetValue("tw_storage_path", "/data/media/0"); |
| 1696 | DataManager::SetValue("tw_settings_path", "/data/media/0"); |
| 1697 | dat->UnMount(false); |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1698 | } |
| 1699 | Update_System_Details(); |
nkk71 | ffb02bd | 2017-06-04 23:12:16 +0300 | [diff] [blame] | 1700 | Output_Partition(dat); |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1701 | UnMount_Main_Partitions(); |
| 1702 | } else |
| 1703 | LOGERR("Unable to locate data partition.\n"); |
| 1704 | } |
| 1705 | |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 1706 | void TWPartitionManager::Parse_Users() { |
| 1707 | #ifdef TW_INCLUDE_FBE |
| 1708 | char user_check_result[PROPERTY_VALUE_MAX]; |
| 1709 | for (int userId = 0; userId <= 9999; userId++) { |
| 1710 | string prop = "twrp.user." + to_string(userId) + ".decrypt"; |
| 1711 | property_get(prop.c_str(), user_check_result, "-1"); |
| 1712 | if (strcmp(user_check_result, "-1") != 0) { |
| 1713 | if (userId < 0 || userId > 9999) { |
| 1714 | LOGINFO("Incorrect user id %d\n", userId); |
| 1715 | continue; |
| 1716 | } |
| 1717 | struct users_struct user; |
| 1718 | user.userId = to_string(userId); |
| 1719 | |
| 1720 | // Attempt to get name of user. Fallback to user ID if this fails. |
| 1721 | char* userFile = PageManager::LoadFileToBuffer("/data/system/users/" + to_string(userId) + ".xml", NULL); |
| 1722 | if (userFile == NULL) |
| 1723 | user.userName = to_string(userId); |
| 1724 | else { |
| 1725 | xml_document<> *userXml = new xml_document<>(); |
| 1726 | userXml->parse<0>(userFile); |
| 1727 | xml_node<>* userNode = userXml->first_node("user"); |
| 1728 | if (userNode == nullptr) { |
| 1729 | user.userName = to_string(userId); |
| 1730 | } else { |
| 1731 | xml_node<>* nameNode = userNode->first_node("name"); |
| 1732 | if (nameNode == nullptr) |
| 1733 | user.userName = to_string(userId); |
| 1734 | else { |
| 1735 | string userName = nameNode->value(); |
| 1736 | user.userName = userName + " (" + to_string(userId) + ")"; |
| 1737 | } |
| 1738 | } |
| 1739 | } |
| 1740 | |
| 1741 | string filename; |
| 1742 | user.type = Get_Password_Type(userId, filename); |
| 1743 | |
| 1744 | user.isDecrypted = false; |
| 1745 | if (strcmp(user_check_result, "1") == 0) |
| 1746 | user.isDecrypted = true; |
| 1747 | Users_List.push_back(user); |
| 1748 | } |
| 1749 | } |
| 1750 | Check_Users_Decryption_Status(); |
| 1751 | #endif |
| 1752 | } |
| 1753 | |
| 1754 | std::vector<users_struct>* TWPartitionManager::Get_Users_List() { |
| 1755 | return &Users_List; |
| 1756 | } |
| 1757 | |
| 1758 | void TWPartitionManager::Mark_User_Decrypted(int userID) { |
| 1759 | #ifdef TW_INCLUDE_FBE |
| 1760 | std::vector<users_struct>::iterator iter; |
| 1761 | for (iter = Users_List.begin(); iter != Users_List.end(); iter++) { |
| 1762 | if (atoi((*iter).userId.c_str()) == userID) { |
| 1763 | (*iter).isDecrypted = true; |
| 1764 | string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt"; |
| 1765 | property_set(user_prop_decrypted.c_str(), "1"); |
| 1766 | break; |
| 1767 | } |
| 1768 | } |
| 1769 | Check_Users_Decryption_Status(); |
| 1770 | #endif |
| 1771 | } |
| 1772 | |
| 1773 | void TWPartitionManager::Check_Users_Decryption_Status() { |
| 1774 | #ifdef TW_INCLUDE_FBE |
| 1775 | int all_is_decrypted = 1; |
| 1776 | std::vector<users_struct>::iterator iter; |
| 1777 | for (iter = Users_List.begin(); iter != Users_List.end(); iter++) { |
| 1778 | if (!(*iter).isDecrypted) { |
Noah Jacobson | bf0b0fb | 2020-06-05 12:47:20 -0400 | [diff] [blame] | 1779 | LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str()); |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 1780 | all_is_decrypted = 0; |
| 1781 | break; |
| 1782 | } |
| 1783 | } |
| 1784 | if (all_is_decrypted == 1) { |
Noah Jacobson | bf0b0fb | 2020-06-05 12:47:20 -0400 | [diff] [blame] | 1785 | LOGINFO("All found users are decrypted.\n"); |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 1786 | DataManager::SetValue("tw_all_users_decrypted", "1"); |
| 1787 | property_set("twrp.all.users.decrypted", "true"); |
| 1788 | } else |
| 1789 | DataManager::SetValue("tw_all_users_decrypted", "0"); |
| 1790 | #endif |
| 1791 | } |
| 1792 | |
| 1793 | int TWPartitionManager::Decrypt_Device(string Password, int user_id) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1794 | #ifdef TW_INCLUDE_CRYPTO |
Ethan Yonker | ddb63e2 | 2017-01-19 14:01:57 -0600 | [diff] [blame] | 1795 | char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX]; |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 1796 | std::vector<TWPartition*>::iterator iter; |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1797 | |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 1798 | // Mount any partitions that need to be mounted for decrypt |
| 1799 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1800 | if ((*iter)->Mount_To_Decrypt) { |
| 1801 | (*iter)->Mount(true); |
| 1802 | } |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1803 | } |
oshmoun | a82a754 | 2018-04-10 17:45:55 +0200 | [diff] [blame] | 1804 | property_set("twrp.mount_to_decrypt", "1"); |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1805 | |
Ethan Yonker | a1de149 | 2015-11-04 11:58:27 -0600 | [diff] [blame] | 1806 | property_get("ro.crypto.state", crypto_state, "error"); |
| 1807 | if (strcmp(crypto_state, "error") == 0) { |
Captain Throwback | 07b8e05 | 2020-10-29 12:43:17 -0400 | [diff] [blame] | 1808 | Set_FDE_Encrypt_Status(); |
Ethan Yonker | a1de149 | 2015-11-04 11:58:27 -0600 | [diff] [blame] | 1809 | } |
| 1810 | |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1811 | if (DataManager::GetIntValue(TW_IS_FBE)) { |
| 1812 | #ifdef TW_INCLUDE_FBE |
| 1813 | if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE |
| 1814 | return -1; |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 1815 | |
| 1816 | bool user_need_decrypt = false; |
| 1817 | std::vector<users_struct>::iterator iter; |
| 1818 | for (iter = Users_List.begin(); iter != Users_List.end(); iter++) { |
| 1819 | if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) { |
| 1820 | user_need_decrypt = true; |
| 1821 | } |
| 1822 | } |
| 1823 | if (!user_need_decrypt) { |
| 1824 | LOGINFO("User %d does not require decryption\n", user_id); |
| 1825 | return 0; |
| 1826 | } |
| 1827 | |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1828 | int retry_count = 10; |
| 1829 | while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count) |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 1830 | usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE? |
| 1831 | gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id)); |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1832 | if (Decrypt_User(user_id, Password)) { |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 1833 | gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id)); |
| 1834 | Mark_User_Decrypted(user_id); |
| 1835 | if (user_id == 0) { |
| 1836 | // When decrypting user 0 also try all other users |
| 1837 | std::vector<users_struct>::iterator iter; |
| 1838 | for (iter = Users_List.begin(); iter != Users_List.end(); iter++) { |
| 1839 | if ((*iter).userId == "0" || (*iter).isDecrypted) |
| 1840 | continue; |
| 1841 | |
| 1842 | int tmp_user_id = atoi((*iter).userId.c_str()); |
| 1843 | gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id)); |
| 1844 | if (Decrypt_User(tmp_user_id, Password) || |
| 1845 | (Password != "!" && Decrypt_User(tmp_user_id, "!"))) { // "!" means default password |
| 1846 | gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id)); |
| 1847 | Mark_User_Decrypted(tmp_user_id); |
| 1848 | } else { |
| 1849 | gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id)); |
| 1850 | } |
| 1851 | } |
| 1852 | Post_Decrypt(""); |
| 1853 | } |
| 1854 | |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1855 | return 0; |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 1856 | } else { |
| 1857 | gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id)); |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1858 | } |
| 1859 | #else |
| 1860 | LOGERR("FBE support is not present\n"); |
| 1861 | #endif |
| 1862 | return -1; |
| 1863 | } |
| 1864 | |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 1865 | char isdecrypteddata[PROPERTY_VALUE_MAX]; |
| 1866 | property_get("twrp.decrypt.done", isdecrypteddata, ""); |
| 1867 | if (strcmp(isdecrypteddata, "true") == 0) { |
| 1868 | LOGINFO("Data has no decryption required\n"); |
| 1869 | return 0; |
| 1870 | } |
| 1871 | |
Ethan Yonker | ddb63e2 | 2017-01-19 14:01:57 -0600 | [diff] [blame] | 1872 | int pwret = -1; |
| 1873 | pid_t pid = fork(); |
| 1874 | if (pid < 0) { |
| 1875 | LOGERR("fork failed\n"); |
| 1876 | return -1; |
| 1877 | } else if (pid == 0) { |
| 1878 | // Child process |
| 1879 | char cPassword[255]; |
| 1880 | strcpy(cPassword, Password.c_str()); |
| 1881 | int ret = cryptfs_check_passwd(cPassword); |
| 1882 | exit(ret); |
| 1883 | } else { |
| 1884 | // Parent |
| 1885 | int status; |
| 1886 | if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30)) |
| 1887 | pwret = -1; |
| 1888 | else |
| 1889 | pwret = WEXITSTATUS(status) ? -1 : 0; |
| 1890 | } |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1891 | |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 1892 | #ifdef TW_CRYPTO_USE_SYSTEM_VOLD |
| 1893 | if (pwret != 0) { |
| 1894 | pwret = vold_decrypt(Password); |
nkk71 | 7d1222a | 2017-11-06 17:27:21 +0200 | [diff] [blame] | 1895 | switch (pwret) { |
| 1896 | case VD_SUCCESS: |
| 1897 | break; |
| 1898 | case VD_ERR_MISSING_VDC: |
| 1899 | gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc")); |
| 1900 | break; |
| 1901 | case VD_ERR_MISSING_VOLD: |
| 1902 | gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold")); |
| 1903 | break; |
| 1904 | } |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame] | 1905 | } |
| 1906 | #endif // TW_CRYPTO_USE_SYSTEM_VOLD |
| 1907 | |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 1908 | // Unmount any partitions that were needed for decrypt |
| 1909 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1910 | if ((*iter)->Mount_To_Decrypt) { |
| 1911 | (*iter)->UnMount(false); |
| 1912 | } |
| 1913 | } |
oshmoun | a82a754 | 2018-04-10 17:45:55 +0200 | [diff] [blame] | 1914 | property_set("twrp.mount_to_decrypt", "0"); |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 1915 | |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1916 | if (pwret != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1917 | gui_err("fail_decrypt=Failed to decrypt data."); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1918 | return -1; |
| 1919 | } |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1920 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1921 | property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error"); |
| 1922 | if (strcmp(crypto_blkdev, "error") == 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1923 | LOGERR("Error retrieving decrypted data block device.\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1924 | } else { |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1925 | Post_Decrypt(crypto_blkdev); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1926 | } |
| 1927 | return 0; |
| 1928 | #else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1929 | gui_err("no_crypto_support=No crypto support was compiled into this build."); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1930 | return -1; |
| 1931 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1932 | return 1; |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1933 | } |
| 1934 | |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1935 | int TWPartitionManager::Fix_Contexts(void) { |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1936 | std::vector<TWPartition*>::iterator iter; |
| 1937 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1938 | if ((*iter)->Has_Data_Media) { |
| 1939 | if ((*iter)->Mount(true)) { |
| 1940 | if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0) |
| 1941 | return -1; |
| 1942 | } |
| 1943 | } |
| 1944 | } |
Dees_Troy | 1a650e6 | 2012-10-19 20:54:32 -0400 | [diff] [blame] | 1945 | UnMount_Main_Partitions(); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1946 | gui_msg("done=Done."); |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1947 | return 0; |
bigbiff bigbiff | a0f8a59 | 2012-10-09 21:01:03 -0400 | [diff] [blame] | 1948 | } |
| 1949 | |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 1950 | TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) { |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1951 | std::vector<TWPartition*>::iterator iter = Partitions.begin(); |
| 1952 | |
| 1953 | if (!Path.empty()) { |
| 1954 | string Search_Path = TWFunc::Get_Root_Path(Path); |
| 1955 | for (; iter != Partitions.end(); iter++) { |
Matt Mower | 9a561dd | 2016-02-22 21:25:51 -0600 | [diff] [blame] | 1956 | if ((*iter)->Mount_Point == Search_Path) { |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1957 | iter++; |
| 1958 | break; |
| 1959 | } |
| 1960 | } |
| 1961 | } |
| 1962 | |
| 1963 | for (; iter != Partitions.end(); iter++) { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 1964 | if (Exclude_Data_Media && (*iter)->Has_Data_Media) { |
| 1965 | // do nothing, do not return this type of partition |
| 1966 | } else if ((*iter)->Is_Storage && (*iter)->Is_Present) { |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1967 | return (*iter); |
| 1968 | } |
| 1969 | } |
| 1970 | |
| 1971 | return NULL; |
| 1972 | } |
| 1973 | |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1974 | int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) { |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1975 | TWPartition* Part = Find_Partition_By_Path(Partition_Path); |
| 1976 | |
| 1977 | if (Part == NULL) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1978 | LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str()); |
| 1979 | gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Partition_Path)); |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1980 | return false; |
| 1981 | } |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1982 | LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str()); |
| 1983 | if (!Part->UnMount(true) || !Part->Is_Present) |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1984 | return false; |
| 1985 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 1986 | if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1987 | LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno)); |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1988 | return false; |
| 1989 | } |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1990 | return true; |
| 1991 | } |
| 1992 | |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1993 | int TWPartitionManager::usb_storage_enable(void) { |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1994 | char lun_file[255]; |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1995 | bool has_multiple_lun = false; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1996 | |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1997 | string Lun_File_str = CUSTOM_LUN_FILE; |
| 1998 | size_t found = Lun_File_str.find("%"); |
| 1999 | if (found != string::npos) { |
| 2000 | sprintf(lun_file, CUSTOM_LUN_FILE, 1); |
| 2001 | if (TWFunc::Path_Exists(lun_file)) |
| 2002 | has_multiple_lun = true; |
| 2003 | } |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2004 | mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 2005 | if (!has_multiple_lun) { |
| 2006 | LOGINFO("Device doesn't have multiple lun files, mount current storage\n"); |
| 2007 | sprintf(lun_file, CUSTOM_LUN_FILE, 0); |
| 2008 | if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2009 | TWPartition* Mount = Find_Next_Storage("", true); |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 2010 | if (Mount) { |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2011 | if (!Open_Lun_File(Mount->Mount_Point, lun_file)) { |
| 2012 | goto error_handle; |
| 2013 | } |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 2014 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2015 | gui_err("unable_locate_storage=Unable to locate storage device."); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2016 | goto error_handle; |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 2017 | } |
| 2018 | } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) { |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2019 | goto error_handle; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 2020 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 2021 | } else { |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 2022 | LOGINFO("Device has multiple lun files\n"); |
| 2023 | TWPartition* Mount1; |
| 2024 | TWPartition* Mount2; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 2025 | sprintf(lun_file, CUSTOM_LUN_FILE, 0); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2026 | Mount1 = Find_Next_Storage("", true); |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 2027 | if (Mount1) { |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2028 | if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) { |
| 2029 | goto error_handle; |
| 2030 | } |
Matt Mower | ee71706 | 2014-04-26 01:46:46 -0500 | [diff] [blame] | 2031 | sprintf(lun_file, CUSTOM_LUN_FILE, 1); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2032 | Mount2 = Find_Next_Storage(Mount1->Mount_Point, true); |
Matt Mower | 1fdcdb7 | 2016-01-25 20:53:47 -0600 | [diff] [blame] | 2033 | if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) { |
Matt Mower | ee71706 | 2014-04-26 01:46:46 -0500 | [diff] [blame] | 2034 | Open_Lun_File(Mount2->Mount_Point, lun_file); |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 2035 | } |
| 2036 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2037 | gui_err("unable_locate_storage=Unable to locate storage device."); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2038 | goto error_handle; |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 2039 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 2040 | } |
Matt Mower | b6ef478 | 2014-11-06 02:24:36 -0600 | [diff] [blame] | 2041 | property_set("sys.storage.ums_enabled", "1"); |
HandyMenny | 37d4299 | 2014-10-26 22:15:59 +0100 | [diff] [blame] | 2042 | property_set("sys.usb.config", "mass_storage,adb"); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 2043 | return true; |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2044 | error_handle: |
| 2045 | if (mtp_was_enabled) |
| 2046 | if (!Enable_MTP()) |
| 2047 | Disable_MTP(); |
| 2048 | return false; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 2049 | } |
| 2050 | |
| 2051 | int TWPartitionManager::usb_storage_disable(void) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2052 | int index, ret; |
| 2053 | char lun_file[255], ch[2] = {0, 0}; |
| 2054 | string str = ch; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 2055 | |
| 2056 | for (index=0; index<2; index++) { |
| 2057 | sprintf(lun_file, CUSTOM_LUN_FILE, index); |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2058 | ret = TWFunc::write_to_file(lun_file, str); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2059 | if (ret < 0) { |
| 2060 | break; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 2061 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 2062 | } |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 2063 | Mount_All_Storage(); |
| 2064 | Update_System_Details(); |
Dees_Troy | cfd73ef | 2012-10-12 16:52:00 -0400 | [diff] [blame] | 2065 | UnMount_Main_Partitions(); |
Matt Mower | d9cb906 | 2013-12-14 20:34:45 -0600 | [diff] [blame] | 2066 | property_set("sys.storage.ums_enabled", "0"); |
HandyMenny | 37d4299 | 2014-10-26 22:15:59 +0100 | [diff] [blame] | 2067 | property_set("sys.usb.config", "adb"); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2068 | if (mtp_was_enabled) |
| 2069 | if (!Enable_MTP()) |
| 2070 | Disable_MTP(); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2071 | if (ret < 0 && index == 0) { |
| 2072 | LOGERR("Unable to write to ums lunfile '%s'.", lun_file); |
| 2073 | return false; |
| 2074 | } else { |
| 2075 | return true; |
| 2076 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 2077 | return true; |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 2078 | } |
| 2079 | |
| 2080 | void TWPartitionManager::Mount_All_Storage(void) { |
| 2081 | std::vector<TWPartition*>::iterator iter; |
| 2082 | |
| 2083 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2084 | if ((*iter)->Is_Storage) |
| 2085 | (*iter)->Mount(false); |
| 2086 | } |
Dees_Troy | 2c50e18 | 2012-09-26 20:05:28 -0400 | [diff] [blame] | 2087 | } |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2088 | |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 2089 | void TWPartitionManager::UnMount_Main_Partitions(void) { |
| 2090 | // Unmounts system and data if data is not data/media |
| 2091 | // Also unmounts boot if boot is mountable |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2092 | LOGINFO("Unmounting main partitions...\n"); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 2093 | |
| 2094 | TWPartition* Boot_Partition = Find_Partition_By_Path("/boot"); |
| 2095 | |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 2096 | UnMount_By_Path(Get_Android_Root_Path(), true); |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 2097 | if (!datamedia) |
| 2098 | UnMount_By_Path("/data", true); |
| 2099 | |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 2100 | if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted) |
| 2101 | Boot_Partition->UnMount(true); |
| 2102 | } |
| 2103 | |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2104 | int TWPartitionManager::Partition_SDCard(void) { |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 2105 | char temp[255]; |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2106 | string Storage_Path, Command, Device, fat_str, ext_str, start_loc, end_loc, ext_format, sd_path, tmpdevice; |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2107 | int ext, swap, total_size = 0, fat_size; |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2108 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2109 | gui_msg("start_partition_sd=Partitioning SD Card..."); |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2110 | |
| 2111 | // Locate and validate device to partition |
| 2112 | TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath()); |
| 2113 | |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2114 | if (SDCard->Is_Adopted_Storage) |
| 2115 | SDCard->Revert_Adopted(); |
| 2116 | |
Ethan Yonker | 1eff6cd | 2014-09-15 13:30:42 -0500 | [diff] [blame] | 2117 | if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2118 | gui_err("partition_sd_locate=Unable to locate device to partition."); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2119 | return false; |
| 2120 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2121 | |
| 2122 | // Unmount everything |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2123 | if (!SDCard->UnMount(true)) |
| 2124 | return false; |
| 2125 | TWPartition* SDext = Find_Partition_By_Path("/sd-ext"); |
| 2126 | if (SDext != NULL) { |
| 2127 | if (!SDext->UnMount(true)) |
| 2128 | return false; |
| 2129 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2130 | char* swappath = getenv("SWAPPATH"); |
| 2131 | if (swappath != NULL) { |
| 2132 | LOGINFO("Unmounting swap at '%s'\n", swappath); |
| 2133 | umount(swappath); |
| 2134 | } |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 2135 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2136 | // Determine block device |
| 2137 | if (SDCard->Alternate_Block_Device.empty()) { |
| 2138 | SDCard->Find_Actual_Block_Device(); |
| 2139 | Device = SDCard->Actual_Block_Device; |
| 2140 | // Just use the root block device |
| 2141 | Device.resize(strlen("/dev/block/mmcblkX")); |
| 2142 | } else { |
| 2143 | Device = SDCard->Alternate_Block_Device; |
| 2144 | } |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2145 | |
| 2146 | // Find the size of the block device: |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2147 | total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576)); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2148 | |
| 2149 | DataManager::GetValue("tw_sdext_size", ext); |
| 2150 | DataManager::GetValue("tw_swap_size", swap); |
| 2151 | DataManager::GetValue("tw_sdpart_file_system", ext_format); |
| 2152 | fat_size = total_size - ext - swap; |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2153 | LOGINFO("sd card mount point %s block device is '%s', sdcard size is: %iMB, fat size: %iMB, ext size: %iMB, ext system: '%s', swap size: %iMB\n", DataManager::GetCurrentStoragePath().c_str(), Device.c_str(), total_size, fat_size, ext, ext_format.c_str(), swap); |
| 2154 | |
| 2155 | // Determine partition sizes |
| 2156 | if (swap == 0 && ext == 0) { |
| 2157 | fat_str = "-0"; |
| 2158 | } else { |
| 2159 | memset(temp, 0, sizeof(temp)); |
| 2160 | sprintf(temp, "%i", fat_size); |
| 2161 | fat_str = temp; |
| 2162 | fat_str += "MB"; |
| 2163 | } |
| 2164 | if (swap == 0) { |
| 2165 | ext_str = "-0"; |
| 2166 | } else { |
| 2167 | memset(temp, 0, sizeof(temp)); |
| 2168 | sprintf(temp, "%i", ext); |
| 2169 | ext_str = "+"; |
| 2170 | ext_str += temp; |
| 2171 | ext_str += "MB"; |
| 2172 | } |
| 2173 | |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2174 | if (ext + swap > total_size) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2175 | gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size."); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2176 | return false; |
| 2177 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2178 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2179 | gui_msg("remove_part_table=Removing partition table..."); |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2180 | Command = "sgdisk --zap-all " + Device; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2181 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 2182 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2183 | gui_err("unable_rm_part=Unable to remove partition table."); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2184 | Update_System_Details(); |
| 2185 | return false; |
| 2186 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2187 | gui_msg(Msg("create_part=Creating {1} partition...")("FAT32")); |
Captain Throwback | 9643a80 | 2016-05-27 11:44:51 -0400 | [diff] [blame] | 2188 | Command = "sgdisk --new=0:0:" + fat_str + " --change-name=0:\"Microsoft basic data\" --typecode=0:EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 " + Device; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2189 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 2190 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2191 | gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32")); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2192 | return false; |
| 2193 | } |
| 2194 | if (ext > 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2195 | gui_msg(Msg("create_part=Creating {1} partition...")("EXT")); |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2196 | Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2197 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 2198 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2199 | gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT")); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2200 | Update_System_Details(); |
| 2201 | return false; |
| 2202 | } |
| 2203 | } |
| 2204 | if (swap > 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2205 | gui_msg(Msg("create_part=Creating {1} partition...")("swap")); |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2206 | Command = "sgdisk --new=0:0:-0 --change-name=0:\"Linux swap\" --typecode=0:0657FD6D-A4AB-43C4-84E5-0933C84B4F4F " + Device; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2207 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 2208 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2209 | gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap")); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2210 | Update_System_Details(); |
| 2211 | return false; |
| 2212 | } |
| 2213 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2214 | |
| 2215 | // Convert GPT to MBR |
| 2216 | Command = "sgdisk --gpttombr " + Device; |
| 2217 | if (TWFunc::Exec_Cmd(Command) != 0) |
| 2218 | LOGINFO("Failed to covert partition GPT to MBR\n"); |
| 2219 | |
| 2220 | // Tell the kernel to rescan the partition table |
| 2221 | int fd = open(Device.c_str(), O_RDONLY); |
| 2222 | ioctl(fd, BLKRRPART, 0); |
| 2223 | close(fd); |
| 2224 | |
| 2225 | string format_device = Device; |
| 2226 | if (Device.substr(0, 17) == "/dev/block/mmcblk") |
| 2227 | format_device += "p"; |
| 2228 | |
| 2229 | // Format new partitions to proper file system |
| 2230 | if (fat_size > 0) { |
| 2231 | Command = "mkfs.fat " + format_device + "1"; |
| 2232 | TWFunc::Exec_Cmd(Command); |
| 2233 | } |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2234 | if (ext > 0) { |
| 2235 | if (SDext == NULL) { |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2236 | Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2"; |
| 2237 | gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format)); |
| 2238 | LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str()); |
| 2239 | TWFunc::Exec_Cmd(Command); |
| 2240 | } else { |
| 2241 | SDext->Wipe(ext_format); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2242 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2243 | } |
| 2244 | if (swap > 0) { |
| 2245 | Command = "mkswap " + format_device; |
| 2246 | if (ext > 0) |
| 2247 | Command += "3"; |
| 2248 | else |
| 2249 | Command += "2"; |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 2250 | TWFunc::Exec_Cmd(Command); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2251 | } |
| 2252 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 2253 | // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned |
| 2254 | if (SDCard->Mount(true)) { |
| 2255 | string TWRP_Folder = SDCard->Mount_Point + "/TWRP"; |
| 2256 | mkdir(TWRP_Folder.c_str(), 0777); |
| 2257 | DataManager::Flush(); |
| 2258 | } |
| 2259 | |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2260 | Update_System_Details(); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2261 | gui_msg("part_complete=Partitioning complete."); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 2262 | return true; |
bigbiff bigbiff | a0f8a59 | 2012-10-09 21:01:03 -0400 | [diff] [blame] | 2263 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2264 | |
| 2265 | void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) { |
| 2266 | std::vector<TWPartition*>::iterator iter; |
| 2267 | if (ListType == "mount") { |
| 2268 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2269 | if ((*iter)->Can_Be_Mounted) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2270 | struct PartitionList part; |
| 2271 | part.Display_Name = (*iter)->Display_Name; |
| 2272 | part.Mount_Point = (*iter)->Mount_Point; |
| 2273 | part.selected = (*iter)->Is_Mounted(); |
| 2274 | Partition_List->push_back(part); |
| 2275 | } |
| 2276 | } |
| 2277 | } else if (ListType == "storage") { |
| 2278 | char free_space[255]; |
| 2279 | string Current_Storage = DataManager::GetCurrentStoragePath(); |
| 2280 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2281 | if ((*iter)->Is_Storage) { |
| 2282 | struct PartitionList part; |
| 2283 | sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024); |
| 2284 | part.Display_Name = (*iter)->Storage_Name + " ("; |
| 2285 | part.Display_Name += free_space; |
| 2286 | part.Display_Name += "MB)"; |
| 2287 | part.Mount_Point = (*iter)->Storage_Path; |
| 2288 | if ((*iter)->Storage_Path == Current_Storage) |
| 2289 | part.selected = 1; |
| 2290 | else |
| 2291 | part.selected = 0; |
| 2292 | Partition_List->push_back(part); |
| 2293 | } |
| 2294 | } |
| 2295 | } else if (ListType == "backup") { |
| 2296 | char backup_size[255]; |
Dees_Troy | 9e0b71c | 2013-04-08 13:35:37 +0000 | [diff] [blame] | 2297 | unsigned long long Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2298 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 9e0b71c | 2013-04-08 13:35:37 +0000 | [diff] [blame] | 2299 | if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2300 | struct PartitionList part; |
Dees_Troy | 9e0b71c | 2013-04-08 13:35:37 +0000 | [diff] [blame] | 2301 | Backup_Size = (*iter)->Backup_Size; |
| 2302 | if ((*iter)->Has_SubPartition) { |
| 2303 | std::vector<TWPartition*>::iterator subpart; |
| 2304 | |
| 2305 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 2306 | if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point) |
| 2307 | Backup_Size += (*subpart)->Backup_Size; |
| 2308 | } |
| 2309 | } |
| 2310 | sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2311 | part.Display_Name = (*iter)->Backup_Display_Name + " ("; |
| 2312 | part.Display_Name += backup_size; |
| 2313 | part.Display_Name += "MB)"; |
| 2314 | part.Mount_Point = (*iter)->Backup_Path; |
| 2315 | part.selected = 0; |
| 2316 | Partition_List->push_back(part); |
| 2317 | } |
| 2318 | } |
| 2319 | } else if (ListType == "restore") { |
| 2320 | string Restore_List, restore_path; |
| 2321 | TWPartition* restore_part = NULL; |
| 2322 | |
| 2323 | DataManager::GetValue("tw_restore_list", Restore_List); |
| 2324 | if (!Restore_List.empty()) { |
| 2325 | size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos); |
| 2326 | while (end_pos != string::npos && start_pos < Restore_List.size()) { |
| 2327 | restore_path = Restore_List.substr(start_pos, end_pos - start_pos); |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 2328 | struct PartitionList part; |
| 2329 | if (restore_path.compare("ADB_Backup") == 0) { |
| 2330 | part.Display_Name = "ADB Backup"; |
| 2331 | part.Mount_Point = "ADB Backup"; |
| 2332 | part.selected = 1; |
| 2333 | Partition_List->push_back(part); |
| 2334 | break; |
| 2335 | } |
Dees_Troy | 59df926 | 2013-06-19 14:53:57 -0500 | [diff] [blame] | 2336 | if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) { |
Dees Troy | 4159aed | 2014-02-28 17:24:43 +0000 | [diff] [blame] | 2337 | if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2338 | // Don't allow restore of recovery (causes problems on some devices) |
Dees_Troy | 59df926 | 2013-06-19 14:53:57 -0500 | [diff] [blame] | 2339 | // Don't add subpartitions to the list of items |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2340 | } else { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2341 | part.Display_Name = restore_part->Backup_Display_Name; |
| 2342 | part.Mount_Point = restore_part->Backup_Path; |
| 2343 | part.selected = 1; |
| 2344 | Partition_List->push_back(part); |
| 2345 | } |
| 2346 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2347 | 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] | 2348 | } |
| 2349 | start_pos = end_pos + 1; |
| 2350 | end_pos = Restore_List.find(";", start_pos); |
| 2351 | } |
| 2352 | } |
| 2353 | } else if (ListType == "wipe") { |
| 2354 | struct PartitionList dalvik; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2355 | dalvik.Display_Name = gui_parse_text("{@dalvik}"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2356 | dalvik.Mount_Point = "DALVIK"; |
| 2357 | dalvik.selected = 0; |
| 2358 | Partition_List->push_back(dalvik); |
| 2359 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2360 | if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) { |
| 2361 | struct PartitionList part; |
| 2362 | part.Display_Name = (*iter)->Display_Name; |
| 2363 | part.Mount_Point = (*iter)->Mount_Point; |
| 2364 | part.selected = 0; |
| 2365 | Partition_List->push_back(part); |
| 2366 | } |
| 2367 | if ((*iter)->Has_Android_Secure) { |
| 2368 | struct PartitionList part; |
| 2369 | part.Display_Name = (*iter)->Backup_Display_Name; |
| 2370 | part.Mount_Point = (*iter)->Backup_Path; |
| 2371 | part.selected = 0; |
| 2372 | Partition_List->push_back(part); |
| 2373 | } |
Dees_Troy | 74fb2e9 | 2013-04-15 14:35:47 +0000 | [diff] [blame] | 2374 | if ((*iter)->Has_Data_Media) { |
| 2375 | struct PartitionList datamedia; |
| 2376 | datamedia.Display_Name = (*iter)->Storage_Name; |
| 2377 | datamedia.Mount_Point = "INTERNAL"; |
| 2378 | datamedia.selected = 0; |
| 2379 | Partition_List->push_back(datamedia); |
| 2380 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2381 | } |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2382 | } else if (ListType == "flashimg") { |
| 2383 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2384 | if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) { |
| 2385 | struct PartitionList part; |
| 2386 | part.Display_Name = (*iter)->Backup_Display_Name; |
| 2387 | part.Mount_Point = (*iter)->Backup_Path; |
| 2388 | part.selected = 0; |
| 2389 | Partition_List->push_back(part); |
| 2390 | } |
| 2391 | } |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 2392 | if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) { |
| 2393 | TWPartition* boot = Find_Partition_By_Path("/boot"); |
| 2394 | if (boot) { |
| 2395 | // Allow flashing kernels and ramdisks |
| 2396 | struct PartitionList repack_ramdisk; |
| 2397 | repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk"); |
| 2398 | repack_ramdisk.Mount_Point = "/repack_ramdisk"; |
| 2399 | repack_ramdisk.selected = 0; |
| 2400 | Partition_List->push_back(repack_ramdisk); |
| 2401 | /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only |
| 2402 | repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel"); |
| 2403 | repack_kernel.Mount_Point = "/repack_kernel"; |
| 2404 | repack_kernel.selected = 0; |
| 2405 | Partition_List->push_back(repack_kernel);*/ |
| 2406 | } |
| 2407 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2408 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2409 | LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2410 | } |
| 2411 | } |
| 2412 | |
| 2413 | int TWPartitionManager::Fstab_Processed(void) { |
| 2414 | return Partitions.size(); |
| 2415 | } |
Dees_Troy | d93bda5 | 2013-07-03 19:55:19 +0000 | [diff] [blame] | 2416 | |
| 2417 | void TWPartitionManager::Output_Storage_Fstab(void) { |
| 2418 | std::vector<TWPartition*>::iterator iter; |
| 2419 | char storage_partition[255]; |
bigbiff bigbiff | e4bdb15 | 2019-03-23 18:33:17 -0400 | [diff] [blame] | 2420 | std::string Temp; |
bigbiff | 349ea55 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 2421 | std::string cacheDir = TWFunc::get_log_dir(); |
bigbiff bigbiff | e4bdb15 | 2019-03-23 18:33:17 -0400 | [diff] [blame] | 2422 | |
| 2423 | if (cacheDir.empty()) { |
| 2424 | LOGINFO("Unable to find cache directory\n"); |
| 2425 | return; |
| 2426 | } |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 2427 | |
bigbiff | 349ea55 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 2428 | std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab"; |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 2429 | FILE *fp = fopen(storageFstab.c_str(), "w"); |
Dees_Troy | d93bda5 | 2013-07-03 19:55:19 +0000 | [diff] [blame] | 2430 | |
| 2431 | if (fp == NULL) { |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 2432 | gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab)); |
Dees_Troy | d93bda5 | 2013-07-03 19:55:19 +0000 | [diff] [blame] | 2433 | return; |
| 2434 | } |
| 2435 | |
| 2436 | // Iterate through all partitions |
| 2437 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2438 | if ((*iter)->Is_Storage) { |
| 2439 | Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n"; |
| 2440 | strcpy(storage_partition, Temp.c_str()); |
| 2441 | fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp); |
| 2442 | } |
| 2443 | } |
| 2444 | fclose(fp); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 2445 | } |
Vojtech Bocek | 93cb1ef | 2014-05-12 15:41:52 +0200 | [diff] [blame] | 2446 | |
| 2447 | TWPartition *TWPartitionManager::Get_Default_Storage_Partition() |
| 2448 | { |
| 2449 | TWPartition *res = NULL; |
| 2450 | for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) { |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 2451 | if (!(*iter)->Is_Storage) |
Vojtech Bocek | 93cb1ef | 2014-05-12 15:41:52 +0200 | [diff] [blame] | 2452 | continue; |
| 2453 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 2454 | if ((*iter)->Is_Settings_Storage) |
Vojtech Bocek | 93cb1ef | 2014-05-12 15:41:52 +0200 | [diff] [blame] | 2455 | return *iter; |
| 2456 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 2457 | if (!res) |
Vojtech Bocek | 93cb1ef | 2014-05-12 15:41:52 +0200 | [diff] [blame] | 2458 | res = *iter; |
| 2459 | } |
| 2460 | return res; |
| 2461 | } |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2462 | |
| 2463 | bool TWPartitionManager::Enable_MTP(void) { |
| 2464 | #ifdef TW_HAS_MTP |
Ethan Yonker | 8dfa777 | 2014-09-04 21:48:41 -0500 | [diff] [blame] | 2465 | if (mtppid) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2466 | gui_err("mtp_already_enabled=MTP already enabled"); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2467 | return true; |
| 2468 | } |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2469 | |
| 2470 | int mtppipe[2]; |
| 2471 | |
| 2472 | if (pipe(mtppipe) < 0) { |
| 2473 | LOGERR("Error creating MTP pipe\n"); |
| 2474 | return false; |
| 2475 | } |
| 2476 | |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2477 | char old_value[PROPERTY_VALUE_MAX]; |
Matt Mower | e07f010 | 2017-02-23 17:40:00 -0600 | [diff] [blame] | 2478 | property_get("sys.usb.config", old_value, ""); |
| 2479 | if (strcmp(old_value, "mtp,adb") != 0) { |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2480 | char vendor[PROPERTY_VALUE_MAX]; |
| 2481 | char product[PROPERTY_VALUE_MAX]; |
| 2482 | property_set("sys.usb.config", "none"); |
| 2483 | property_get("usb.vendor", vendor, "18D1"); |
| 2484 | property_get("usb.product.mtpadb", product, "4EE2"); |
| 2485 | string vendorstr = vendor; |
| 2486 | string productstr = product; |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2487 | TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr); |
| 2488 | TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr); |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2489 | property_set("sys.usb.config", "mtp,adb"); |
| 2490 | } |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 2491 | /* To enable MTP debug, use the twrp command line feature: |
Ethan Yonker | 6d154c4 | 2014-09-03 14:19:43 -0500 | [diff] [blame] | 2492 | * twrp set tw_mtp_debug 1 |
| 2493 | */ |
| 2494 | twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug")); |
Ethan Yonker | 1b03920 | 2015-01-30 10:08:48 -0600 | [diff] [blame] | 2495 | mtppid = mtp->forkserver(mtppipe); |
| 2496 | if (mtppid) { |
| 2497 | close(mtppipe[0]); // Host closes read side |
| 2498 | mtp_write_fd = mtppipe[1]; |
| 2499 | DataManager::SetValue("tw_mtp_enabled", 1); |
| 2500 | Add_All_MTP_Storage(); |
| 2501 | return true; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2502 | } else { |
| 2503 | close(mtppipe[0]); |
| 2504 | close(mtppipe[1]); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2505 | gui_err("mtp_fail=Failed to enable MTP"); |
Ethan Yonker | 1b03920 | 2015-01-30 10:08:48 -0600 | [diff] [blame] | 2506 | return false; |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2507 | } |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2508 | #else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2509 | gui_err("no_mtp=MTP support not included"); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2510 | #endif |
| 2511 | DataManager::SetValue("tw_mtp_enabled", 0); |
| 2512 | return false; |
| 2513 | } |
| 2514 | |
Ethan Yonker | 1b03920 | 2015-01-30 10:08:48 -0600 | [diff] [blame] | 2515 | void TWPartitionManager::Add_All_MTP_Storage(void) { |
| 2516 | #ifdef TW_HAS_MTP |
| 2517 | std::vector<TWPartition*>::iterator iter; |
| 2518 | |
| 2519 | if (!mtppid) |
| 2520 | return; // MTP is not enabled |
| 2521 | |
| 2522 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2523 | if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false)) |
| 2524 | Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE); |
| 2525 | } |
| 2526 | #else |
| 2527 | return; |
| 2528 | #endif |
| 2529 | } |
| 2530 | |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2531 | bool TWPartitionManager::Disable_MTP(void) { |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2532 | char old_value[PROPERTY_VALUE_MAX]; |
bigbiff bigbiff | af32bb9 | 2018-12-18 18:39:53 -0500 | [diff] [blame] | 2533 | property_set("sys.usb.ffs.mtp.ready", "0"); |
Matt Mower | e07f010 | 2017-02-23 17:40:00 -0600 | [diff] [blame] | 2534 | property_get("sys.usb.config", old_value, ""); |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2535 | if (strcmp(old_value, "adb") != 0) { |
| 2536 | char vendor[PROPERTY_VALUE_MAX]; |
| 2537 | char product[PROPERTY_VALUE_MAX]; |
| 2538 | property_set("sys.usb.config", "none"); |
| 2539 | property_get("usb.vendor", vendor, "18D1"); |
Matt Mower | e07f010 | 2017-02-23 17:40:00 -0600 | [diff] [blame] | 2540 | property_get("usb.product.adb", product, "D001"); |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2541 | string vendorstr = vendor; |
| 2542 | string productstr = product; |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2543 | TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr); |
| 2544 | TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr); |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2545 | usleep(2000); |
| 2546 | } |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2547 | #ifdef TW_HAS_MTP |
Ethan Yonker | 8dfa777 | 2014-09-04 21:48:41 -0500 | [diff] [blame] | 2548 | if (mtppid) { |
Ethan Yonker | 8613dc0 | 2014-09-11 09:28:20 -0500 | [diff] [blame] | 2549 | LOGINFO("Disabling MTP\n"); |
| 2550 | int status; |
| 2551 | kill(mtppid, SIGKILL); |
Ethan Yonker | 8dfa777 | 2014-09-04 21:48:41 -0500 | [diff] [blame] | 2552 | mtppid = 0; |
Ethan Yonker | 8613dc0 | 2014-09-11 09:28:20 -0500 | [diff] [blame] | 2553 | // We don't care about the exit value, but this prevents a zombie process |
| 2554 | waitpid(mtppid, &status, 0); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2555 | close(mtp_write_fd); |
| 2556 | mtp_write_fd = -1; |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2557 | } |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2558 | #endif |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2559 | property_set("sys.usb.config", "adb"); |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2560 | #ifdef TW_HAS_MTP |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2561 | DataManager::SetValue("tw_mtp_enabled", 0); |
| 2562 | return true; |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2563 | #endif |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2564 | return false; |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2565 | } |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2566 | |
| 2567 | TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) { |
| 2568 | std::vector<TWPartition*>::iterator iter; |
| 2569 | |
| 2570 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2571 | if ((*iter)->MTP_Storage_ID == Storage_ID) |
| 2572 | return (*iter); |
| 2573 | } |
| 2574 | return NULL; |
| 2575 | } |
| 2576 | |
| 2577 | bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) { |
| 2578 | #ifdef TW_HAS_MTP |
| 2579 | struct mtpmsg mtp_message; |
| 2580 | |
| 2581 | if (!mtppid) |
| 2582 | return false; // MTP is disabled |
| 2583 | |
| 2584 | if (mtp_write_fd < 0) { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2585 | LOGINFO("MTP: mtp_write_fd is not set\n"); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2586 | return false; |
| 2587 | } |
| 2588 | |
| 2589 | if (Part) { |
Ethan Yonker | 4bfabab | 2014-12-29 09:15:37 -0600 | [diff] [blame] | 2590 | if (Part->MTP_Storage_ID == 0) |
| 2591 | return false; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2592 | if (message_type == MTP_MESSAGE_REMOVE_STORAGE) { |
| 2593 | mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove |
| 2594 | LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID); |
| 2595 | mtp_message.storage_id = Part->MTP_Storage_ID; |
| 2596 | if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2597 | LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2598 | return false; |
| 2599 | } else { |
| 2600 | LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID); |
| 2601 | return true; |
| 2602 | } |
| 2603 | } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) { |
| 2604 | mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add |
| 2605 | mtp_message.storage_id = Part->MTP_Storage_ID; |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2606 | if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) { |
| 2607 | LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str()); |
| 2608 | return false; |
| 2609 | } |
| 2610 | strcpy(mtp_message.path, Part->Storage_Path.c_str()); |
| 2611 | if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) { |
| 2612 | LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str()); |
| 2613 | return false; |
| 2614 | } |
| 2615 | strcpy(mtp_message.display, Part->Storage_Name.c_str()); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2616 | mtp_message.maxFileSize = Part->Get_Max_FileSize(); |
Ethan Yonker | 1b03920 | 2015-01-30 10:08:48 -0600 | [diff] [blame] | 2617 | LOGINFO("sending message to add %i '%s' '%s'\n", mtp_message.storage_id, mtp_message.path, mtp_message.display); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2618 | if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2619 | LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2620 | return false; |
| 2621 | } else { |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2622 | LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2623 | return true; |
| 2624 | } |
| 2625 | } else { |
| 2626 | LOGERR("Unknown MTP message type: %i\n", message_type); |
| 2627 | } |
| 2628 | } else { |
| 2629 | // This hopefully never happens as the error handling should |
| 2630 | // occur in the calling function. |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2631 | LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n"); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2632 | } |
| 2633 | return true; |
| 2634 | #else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2635 | gui_err("no_mtp=MTP support not included"); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2636 | DataManager::SetValue("tw_mtp_enabled", 0); |
| 2637 | return false; |
| 2638 | #endif |
| 2639 | } |
| 2640 | |
| 2641 | bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) { |
| 2642 | #ifdef TW_HAS_MTP |
| 2643 | TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point); |
| 2644 | if (Part) { |
| 2645 | return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE); |
| 2646 | } else { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2647 | LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str()); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2648 | } |
| 2649 | #endif |
| 2650 | return false; |
| 2651 | } |
| 2652 | |
| 2653 | bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) { |
| 2654 | #ifdef TW_HAS_MTP |
| 2655 | TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID); |
| 2656 | if (Part) { |
| 2657 | return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE); |
| 2658 | } else { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2659 | LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2660 | } |
| 2661 | #endif |
| 2662 | return false; |
| 2663 | } |
| 2664 | |
| 2665 | bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) { |
| 2666 | #ifdef TW_HAS_MTP |
| 2667 | TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point); |
| 2668 | if (Part) { |
| 2669 | return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE); |
| 2670 | } else { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2671 | LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str()); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2672 | } |
| 2673 | #endif |
| 2674 | return false; |
| 2675 | } |
| 2676 | |
| 2677 | bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) { |
| 2678 | #ifdef TW_HAS_MTP |
| 2679 | TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID); |
| 2680 | if (Part) { |
| 2681 | return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE); |
| 2682 | } else { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2683 | LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2684 | } |
| 2685 | #endif |
| 2686 | return false; |
| 2687 | } |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2688 | |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 2689 | bool TWPartitionManager::Flash_Image(string& path, string& filename) { |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 2690 | int partition_count = 0; |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2691 | TWPartition* flash_part = NULL; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 2692 | string Flash_List, flash_path, full_filename; |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2693 | size_t start_pos = 0, end_pos = 0; |
| 2694 | |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 2695 | full_filename = path + "/" + filename; |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2696 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 2697 | gui_msg("image_flash_start=[IMAGE FLASH STARTED]"); |
| 2698 | gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename)); |
| 2699 | |
| 2700 | if (!TWFunc::Path_Exists(full_filename)) { |
| 2701 | if (!Mount_By_Path(full_filename, true)) { |
Ethan Yonker | b78fbdf | 2016-01-15 16:46:35 -0600 | [diff] [blame] | 2702 | return false; |
| 2703 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 2704 | if (!TWFunc::Path_Exists(full_filename)) { |
| 2705 | gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename)); |
Ethan Yonker | b78fbdf | 2016-01-15 16:46:35 -0600 | [diff] [blame] | 2706 | return false; |
| 2707 | } |
| 2708 | } |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2709 | |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 2710 | DataManager::GetValue("tw_flash_partition", Flash_List); |
| 2711 | Repack_Type repack = REPLACE_NONE; |
| 2712 | if (Flash_List == "/repack_ramdisk;") { |
| 2713 | repack = REPLACE_RAMDISK; |
| 2714 | } else if (Flash_List == "/repack_kernel;") { |
| 2715 | repack = REPLACE_KERNEL; |
| 2716 | } |
| 2717 | if (repack != REPLACE_NONE) { |
| 2718 | Repack_Options_struct Repack_Options; |
| 2719 | Repack_Options.Type = repack; |
| 2720 | Repack_Options.Disable_Verity = false; |
| 2721 | Repack_Options.Disable_Force_Encrypt = false; |
| 2722 | Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0; |
| 2723 | return Repack_Images(full_filename, Repack_Options); |
| 2724 | } |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 2725 | PartitionSettings part_settings; |
| 2726 | part_settings.Backup_Folder = path; |
| 2727 | unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename); |
| 2728 | ProgressTracking progress(total_bytes); |
| 2729 | part_settings.progress = &progress; |
| 2730 | part_settings.adbbackup = false; |
| 2731 | part_settings.PM_Method = PM_RESTORE; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2732 | gui_msg("calc_restore=Calculating restore details..."); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2733 | if (!Flash_List.empty()) { |
| 2734 | end_pos = Flash_List.find(";", start_pos); |
| 2735 | while (end_pos != string::npos && start_pos < Flash_List.size()) { |
| 2736 | flash_path = Flash_List.substr(start_pos, end_pos - start_pos); |
| 2737 | flash_part = Find_Partition_By_Path(flash_path); |
| 2738 | if (flash_part != NULL) { |
| 2739 | partition_count++; |
| 2740 | if (partition_count > 1) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2741 | gui_err("too_many_flash=Too many partitions selected for flashing."); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2742 | return false; |
| 2743 | } |
| 2744 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2745 | gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path)); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2746 | return false; |
| 2747 | } |
| 2748 | start_pos = end_pos + 1; |
| 2749 | end_pos = Flash_List.find(";", start_pos); |
| 2750 | } |
| 2751 | } |
| 2752 | |
| 2753 | if (partition_count == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2754 | gui_err("no_part_flash=No partitions selected for flashing."); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2755 | return false; |
| 2756 | } |
| 2757 | |
| 2758 | DataManager::SetProgress(0.0); |
| 2759 | if (flash_part) { |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 2760 | flash_part->Backup_FileName = filename; |
| 2761 | if (!flash_part->Flash_Image(&part_settings)) |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2762 | return false; |
| 2763 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2764 | gui_err("invalid_flash=Invalid flash partition specified."); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2765 | return false; |
| 2766 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2767 | gui_highlight("flash_done=IMAGE FLASH COMPLETED]"); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2768 | return true; |
| 2769 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2770 | |
| 2771 | void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) { |
| 2772 | TWPartition* part = PartitionManager.Find_Partition_By_Path(path); |
| 2773 | if (part) { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2774 | if (part->Is_Adopted_Storage) { |
| 2775 | part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data"); |
| 2776 | part->Backup_Display_Name = part->Display_Name; |
| 2777 | part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage"); |
| 2778 | } else { |
| 2779 | part->Display_Name = gui_lookup(resource_name, default_value); |
| 2780 | part->Backup_Display_Name = part->Display_Name; |
| 2781 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2782 | } |
| 2783 | } |
| 2784 | |
| 2785 | void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) { |
| 2786 | TWPartition* part = PartitionManager.Find_Partition_By_Path(path); |
| 2787 | if (part) { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2788 | if (part->Is_Adopted_Storage) { |
Ethan Yonker | 01f4e03 | 2017-02-03 15:30:52 -0600 | [diff] [blame] | 2789 | part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)"); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2790 | part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data"); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2791 | part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage"); |
| 2792 | } else { |
| 2793 | part->Display_Name = gui_lookup(resource_name, default_value); |
| 2794 | part->Backup_Display_Name = part->Display_Name; |
| 2795 | if (part->Is_Storage) |
| 2796 | part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value); |
| 2797 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2798 | } |
| 2799 | } |
| 2800 | |
Ethan Yonker | 01f4e03 | 2017-02-03 15:30:52 -0600 | [diff] [blame] | 2801 | void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value, const char* backup_name, const char* backup_default) { |
| 2802 | TWPartition* part = PartitionManager.Find_Partition_By_Path(path); |
| 2803 | if (part) { |
| 2804 | if (part->Is_Adopted_Storage) { |
| 2805 | part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default); |
| 2806 | part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data"); |
| 2807 | part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage"); |
| 2808 | } else { |
| 2809 | part->Display_Name = gui_lookup(resource_name, default_value); |
| 2810 | part->Backup_Display_Name = gui_lookup(backup_name, backup_default); |
| 2811 | if (part->Is_Storage) |
| 2812 | part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value); |
| 2813 | } |
| 2814 | } |
| 2815 | } |
| 2816 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2817 | void TWPartitionManager::Translate_Partition_Display_Names() { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2818 | LOGINFO("Translating partition display names\n"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2819 | Translate_Partition("/system", "system", "System"); |
| 2820 | Translate_Partition("/system_image", "system_image", "System Image"); |
| 2821 | Translate_Partition("/vendor", "vendor", "Vendor"); |
| 2822 | Translate_Partition("/vendor_image", "vendor_image", "Vendor Image"); |
| 2823 | Translate_Partition("/cache", "cache", "Cache"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2824 | Translate_Partition("/boot", "boot", "Boot"); |
| 2825 | Translate_Partition("/recovery", "recovery", "Recovery"); |
| 2826 | if (!datamedia) { |
Ethan Yonker | 01f4e03 | 2017-02-03 15:30:52 -0600 | [diff] [blame] | 2827 | Translate_Partition("/data", "data", "Data", "internal", "Internal Storage"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2828 | Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard"); |
| 2829 | Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard"); |
| 2830 | Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard"); |
| 2831 | Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard"); |
Ethan Yonker | 01f4e03 | 2017-02-03 15:30:52 -0600 | [diff] [blame] | 2832 | } else { |
| 2833 | Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2834 | } |
Ethan Yonker | 01f4e03 | 2017-02-03 15:30:52 -0600 | [diff] [blame] | 2835 | Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)"); |
| 2836 | Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2837 | Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG"); |
| 2838 | Translate_Partition("/sd-ext", "sdext", "SD-EXT"); |
| 2839 | |
| 2840 | // Android secure is a special case |
| 2841 | TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec"); |
| 2842 | if (part) |
| 2843 | part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure"); |
| 2844 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2845 | std::vector<TWPartition*>::iterator sysfs; |
| 2846 | for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) { |
| 2847 | if (!(*sysfs)->Sysfs_Entry.empty()) { |
| 2848 | Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage"); |
| 2849 | } |
| 2850 | } |
| 2851 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2852 | // This updates the text on all of the storage selection buttons in the GUI |
| 2853 | DataManager::SetBackupFolder(); |
| 2854 | } |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2855 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2856 | bool TWPartitionManager::Decrypt_Adopted() { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2857 | #ifdef TW_INCLUDE_CRYPTO |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2858 | bool ret = false; |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2859 | if (!Mount_By_Path("/data", false)) { |
| 2860 | LOGERR("Cannot decrypt adopted storage because /data will not mount\n"); |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2861 | return false; |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2862 | } |
| 2863 | LOGINFO("Decrypt adopted storage starting\n"); |
| 2864 | char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL); |
| 2865 | xml_document<> *doc = NULL; |
| 2866 | xml_node<>* volumes = NULL; |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2867 | string Primary_Storage_UUID = ""; |
| 2868 | if (xmlFile != NULL) { |
| 2869 | LOGINFO("successfully loaded storage.xml\n"); |
| 2870 | doc = new xml_document<>(); |
| 2871 | doc->parse<0>(xmlFile); |
| 2872 | volumes = doc->first_node("volumes"); |
| 2873 | if (volumes) { |
| 2874 | xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid"); |
| 2875 | if (psuuid) { |
| 2876 | Primary_Storage_UUID = psuuid->value(); |
| 2877 | } |
| 2878 | } |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2879 | } else { |
| 2880 | LOGINFO("No /data/system/storage.xml for adopted storage\n"); |
| 2881 | return false; |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2882 | } |
| 2883 | std::vector<TWPartition*>::iterator adopt; |
| 2884 | for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) { |
| 2885 | if ((*adopt)->Removable && (*adopt)->Is_Present) { |
| 2886 | if ((*adopt)->Decrypt_Adopted() == 0) { |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2887 | ret = true; |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2888 | if (volumes) { |
| 2889 | xml_node<>* volume = volumes->first_node("volume"); |
| 2890 | while (volume) { |
| 2891 | xml_attribute<>* guid = volume->first_attribute("partGuid"); |
| 2892 | if (guid) { |
| 2893 | string GUID = (*adopt)->Adopted_GUID.c_str(); |
| 2894 | GUID.insert(8, "-"); |
| 2895 | GUID.insert(13, "-"); |
| 2896 | GUID.insert(18, "-"); |
| 2897 | GUID.insert(23, "-"); |
| 2898 | |
| 2899 | if (strcasecmp(GUID.c_str(), guid->value()) == 0) { |
| 2900 | xml_attribute<>* attr = volume->first_attribute("nickname"); |
nkk71 | ffb02bd | 2017-06-04 23:12:16 +0300 | [diff] [blame] | 2901 | if (attr && attr->value() && strlen(attr->value()) > 0) { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2902 | (*adopt)->Storage_Name = attr->value(); |
| 2903 | (*adopt)->Display_Name = (*adopt)->Storage_Name; |
| 2904 | (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name; |
| 2905 | LOGINFO("storage name from storage.xml is '%s'\n", attr->value()); |
| 2906 | } |
| 2907 | attr = volume->first_attribute("fsUuid"); |
| 2908 | if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) { |
| 2909 | TWPartition* Dat = Find_Partition_By_Path("/data"); |
| 2910 | if (Dat) { |
| 2911 | LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str()); |
| 2912 | LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str()); |
| 2913 | (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point; |
| 2914 | Dat->Symlink_Mount_Point = ""; |
| 2915 | // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location |
| 2916 | Dat->UnMount(false); |
| 2917 | Dat->Mount(false); |
| 2918 | (*adopt)->UnMount(false); |
| 2919 | (*adopt)->Mount(false); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2920 | } |
| 2921 | } |
| 2922 | break; |
| 2923 | } |
| 2924 | } |
| 2925 | volume = volume->next_sibling("volume"); |
| 2926 | } |
| 2927 | } |
nkk71 | ffb02bd | 2017-06-04 23:12:16 +0300 | [diff] [blame] | 2928 | Update_System_Details(); |
| 2929 | Output_Partition((*adopt)); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2930 | } |
| 2931 | } |
| 2932 | } |
| 2933 | if (xmlFile) { |
| 2934 | doc->clear(); |
| 2935 | delete doc; |
| 2936 | free(xmlFile); |
| 2937 | } |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2938 | return ret; |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2939 | #else |
| 2940 | LOGINFO("Decrypt_Adopted: no crypto support\n"); |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 2941 | return false; |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2942 | #endif |
| 2943 | } |
Ethan Yonker | fcf3f24 | 2016-02-16 12:30:26 -0600 | [diff] [blame] | 2944 | |
| 2945 | void TWPartitionManager::Remove_Partition_By_Path(string Path) { |
| 2946 | std::vector<TWPartition*>::iterator iter; |
| 2947 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 2948 | |
| 2949 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2950 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 2951 | LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str()); |
| 2952 | Partitions.erase(iter); |
| 2953 | return; |
| 2954 | } |
| 2955 | } |
| 2956 | } |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 2957 | |
| 2958 | void TWPartitionManager::Set_Active_Slot(const string& Slot) { |
| 2959 | if (Slot != "A" && Slot != "B") { |
| 2960 | LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str()); |
| 2961 | return; |
| 2962 | } |
| 2963 | if (Active_Slot_Display == Slot) |
| 2964 | return; |
| 2965 | LOGINFO("Setting active slot %s\n", Slot.c_str()); |
| 2966 | #ifdef AB_OTA_UPDATER |
| 2967 | if (!Active_Slot_Display.empty()) { |
| 2968 | const hw_module_t *hw_module; |
| 2969 | boot_control_module_t *module; |
| 2970 | int ret; |
| 2971 | ret = hw_get_module("bootctrl", &hw_module); |
| 2972 | if (ret != 0) { |
| 2973 | LOGERR("Error getting bootctrl module.\n"); |
| 2974 | } else { |
| 2975 | module = (boot_control_module_t*) hw_module; |
| 2976 | module->init(module); |
| 2977 | int slot_number = 0; |
| 2978 | if (Slot == "B") |
| 2979 | slot_number = 1; |
| 2980 | if (module->setActiveBootSlot(module, slot_number)) |
| 2981 | gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot)); |
| 2982 | } |
| 2983 | DataManager::SetValue("tw_active_slot", Slot); // Doing this outside of this if block may result in a seg fault because the DataManager may not be ready yet |
| 2984 | } |
| 2985 | #else |
| 2986 | LOGERR("Boot slot feature not present\n"); |
| 2987 | #endif |
| 2988 | Active_Slot_Display = Slot; |
| 2989 | if (Fstab_Processed()) |
| 2990 | Update_System_Details(); |
| 2991 | } |
| 2992 | string TWPartitionManager::Get_Active_Slot_Suffix() { |
| 2993 | if (Active_Slot_Display == "A") |
| 2994 | return "_a"; |
| 2995 | return "_b"; |
| 2996 | } |
| 2997 | string TWPartitionManager::Get_Active_Slot_Display() { |
| 2998 | return Active_Slot_Display; |
| 2999 | } |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 3000 | |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 3001 | string TWPartitionManager::Get_Android_Root_Path() { |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 3002 | if (property_get_bool("ro.twrp.sar", false)) |
dianlujitao | 58f1a63 | 2020-01-16 23:03:56 +0800 | [diff] [blame] | 3003 | return "/system_root"; |
| 3004 | return "/system"; |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 3005 | } |
| 3006 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 3007 | void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) { |
| 3008 | std::vector<TWPartition*>::iterator iter; |
| 3009 | |
| 3010 | for (iter = Partitions.begin(); iter != Partitions.end(); ) { |
| 3011 | if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) { |
| 3012 | TWPartition *part = *iter; |
| 3013 | LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str()); |
| 3014 | (*iter)->UnMount(false); |
| 3015 | rmdir((*iter)->Mount_Point.c_str()); |
| 3016 | iter = Partitions.erase(iter); |
| 3017 | delete part; |
| 3018 | } else { |
| 3019 | iter++; |
| 3020 | } |
| 3021 | } |
| 3022 | } |
| 3023 | |
| 3024 | void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) { |
| 3025 | std::vector<TWPartition*>::iterator iter; |
| 3026 | |
| 3027 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 3028 | if (!(*iter)->Sysfs_Entry.empty()) { |
| 3029 | string device; |
| 3030 | size_t wildcard = (*iter)->Sysfs_Entry.find("*"); |
| 3031 | if (wildcard != string::npos) { |
| 3032 | device = (*iter)->Sysfs_Entry.substr(0, wildcard); |
| 3033 | } else { |
| 3034 | device = (*iter)->Sysfs_Entry; |
| 3035 | } |
| 3036 | if (device == uevent_data.sysfs_path.substr(0, device.size())) { |
| 3037 | // Found a match |
| 3038 | if (uevent_data.action == "add") { |
| 3039 | (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device; |
| 3040 | (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device; |
| 3041 | (*iter)->Is_Present = true; |
| 3042 | LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str()); |
| 3043 | if (!Decrypt_Adopted()) { |
| 3044 | LOGINFO("No adopted storage so finding actual block device\n"); |
| 3045 | (*iter)->Find_Actual_Block_Device(); |
| 3046 | } |
| 3047 | return; |
| 3048 | } else if (uevent_data.action == "remove") { |
| 3049 | (*iter)->Is_Present = false; |
| 3050 | (*iter)->Primary_Block_Device = ""; |
| 3051 | (*iter)->Actual_Block_Device = ""; |
| 3052 | Remove_Uevent_Devices((*iter)->Mount_Point); |
| 3053 | return; |
| 3054 | } |
| 3055 | } |
| 3056 | } |
| 3057 | } |
| 3058 | LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str()); |
| 3059 | } |
| 3060 | |
| 3061 | void TWPartitionManager::setup_uevent() { |
| 3062 | struct sockaddr_nl nls; |
| 3063 | |
| 3064 | if (uevent_pfd.fd >= 0) { |
| 3065 | LOGINFO("uevent already set up\n"); |
| 3066 | return; |
| 3067 | } |
| 3068 | |
| 3069 | // Open hotplug event netlink socket |
| 3070 | memset(&nls,0,sizeof(struct sockaddr_nl)); |
| 3071 | nls.nl_family = AF_NETLINK; |
| 3072 | nls.nl_pid = getpid(); |
| 3073 | nls.nl_groups = -1; |
| 3074 | uevent_pfd.events = POLLIN; |
| 3075 | uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT); |
| 3076 | if (uevent_pfd.fd==-1) { |
| 3077 | LOGERR("uevent not root\n"); |
| 3078 | return; |
| 3079 | } |
| 3080 | |
| 3081 | // Listen to netlink socket |
| 3082 | if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) { |
| 3083 | LOGERR("Bind failed\n"); |
| 3084 | return; |
| 3085 | } |
| 3086 | set_select_fd(); |
| 3087 | Coldboot(); |
| 3088 | } |
| 3089 | |
| 3090 | Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) { |
| 3091 | Uevent_Block_Data ret; |
| 3092 | ret.subsystem = ""; |
| 3093 | char *ptr = buf; |
| 3094 | const char *end = buf + len; |
| 3095 | |
| 3096 | buf[len - 1] = '\0'; |
| 3097 | while (ptr < end) { |
| 3098 | if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) { |
| 3099 | ptr += strlen("ACTION="); |
| 3100 | ret.action = ptr; |
| 3101 | } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) { |
| 3102 | ptr += strlen("SUBSYSTEM="); |
| 3103 | ret.subsystem = ptr; |
| 3104 | } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) { |
| 3105 | ptr += strlen("DEVTYPE="); |
| 3106 | ret.type = ptr; |
| 3107 | } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) { |
| 3108 | ptr += strlen("DEVPATH="); |
| 3109 | ret.sysfs_path += ptr; |
| 3110 | } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) { |
| 3111 | ptr += strlen("DEVNAME="); |
| 3112 | ret.block_device += ptr; |
| 3113 | } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) { |
| 3114 | ptr += strlen("MAJOR="); |
| 3115 | ret.major = atoi(ptr); |
| 3116 | } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) { |
| 3117 | ptr += strlen("MINOR="); |
| 3118 | ret.minor = atoi(ptr); |
| 3119 | } |
| 3120 | ptr += strlen(ptr) + 1; |
| 3121 | } |
| 3122 | return ret; |
| 3123 | } |
| 3124 | |
| 3125 | void TWPartitionManager::read_uevent() { |
| 3126 | char buf[1024]; |
| 3127 | |
| 3128 | int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT); |
| 3129 | if (len == -1) { |
Mauronofrio Matarrese | 9632f30 | 2019-08-04 17:02:41 +0100 | [diff] [blame] | 3130 | LOGINFO("recv error on uevent\n"); |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 3131 | return; |
| 3132 | } |
| 3133 | /*int i = 0; // Print all uevent output for test /debug |
| 3134 | while (i<len) { |
| 3135 | printf("%s\n", buf+i); |
| 3136 | i += strlen(buf+i)+1; |
| 3137 | }*/ |
| 3138 | Uevent_Block_Data uevent_data = get_event_block_values(buf, len); |
| 3139 | if (uevent_data.subsystem == "block" && uevent_data.type == "disk") { |
| 3140 | PartitionManager.Handle_Uevent(uevent_data); |
| 3141 | } |
| 3142 | } |
| 3143 | |
| 3144 | void TWPartitionManager::close_uevent() { |
| 3145 | if (uevent_pfd.fd > 0) |
| 3146 | close(uevent_pfd.fd); |
| 3147 | uevent_pfd.fd = -1; |
| 3148 | } |
| 3149 | |
| 3150 | void TWPartitionManager::Add_Partition(TWPartition* Part) { |
| 3151 | Partitions.push_back(Part); |
| 3152 | } |
| 3153 | |
| 3154 | void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) { |
| 3155 | string Real_Path = Path; |
| 3156 | char real_path[PATH_MAX]; |
| 3157 | if (realpath(Path.c_str(), &real_path[0])) { |
| 3158 | string Real_Path = real_path; |
| 3159 | std::vector<string>::iterator iter; |
| 3160 | for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) { |
| 3161 | if (Real_Path.find((*iter)) != string::npos) { |
| 3162 | string Write_Path = Real_Path + "/uevent"; |
| 3163 | if (TWFunc::Path_Exists(Write_Path)) { |
| 3164 | const char* write_val = "add\n"; |
| 3165 | TWFunc::write_to_file(Write_Path, write_val); |
| 3166 | break; |
| 3167 | } |
| 3168 | } |
| 3169 | } |
| 3170 | } |
| 3171 | |
| 3172 | DIR* d = opendir(Path.c_str()); |
| 3173 | if (d != NULL) { |
| 3174 | struct dirent* de; |
| 3175 | while ((de = readdir(d)) != NULL) { |
| 3176 | if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0)) |
| 3177 | continue; |
| 3178 | if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0)) |
| 3179 | continue; |
| 3180 | |
| 3181 | string item = Path + "/"; |
| 3182 | item.append(de->d_name); |
| 3183 | Coldboot_Scan(sysfs_entries, item, depth + 1); |
| 3184 | } |
| 3185 | closedir(d); |
| 3186 | } |
| 3187 | } |
| 3188 | |
| 3189 | void TWPartitionManager::Coldboot() { |
| 3190 | std::vector<TWPartition*>::iterator iter; |
| 3191 | std::vector<string> sysfs_entries; |
| 3192 | |
| 3193 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 3194 | if (!(*iter)->Sysfs_Entry.empty()) { |
| 3195 | size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*"); |
| 3196 | if (wildcard_pos == string::npos) |
| 3197 | wildcard_pos = (*iter)->Sysfs_Entry.size(); |
| 3198 | sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos)); |
| 3199 | } |
| 3200 | } |
| 3201 | |
| 3202 | if (sysfs_entries.size() > 0) |
| 3203 | Coldboot_Scan(&sysfs_entries, "/sys/block", 0); |
| 3204 | } |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 3205 | |
| 3206 | bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) { |
| 3207 | if (TWFunc::Path_Exists(Folder)) |
| 3208 | TWFunc::removeDir(Folder, false); |
| 3209 | return TWFunc::Recursive_Mkdir(Folder); |
| 3210 | } |
| 3211 | |
| 3212 | bool TWPartitionManager::Prepare_Repack(TWPartition* Part, const std::string& Temp_Folder_Destination, const bool Create_Backup, const std::string& Backup_Name) { |
| 3213 | if (!Part) { |
| 3214 | LOGERR("Partition was null!\n"); |
| 3215 | return false; |
| 3216 | } |
| 3217 | if (!Prepare_Empty_Folder(Temp_Folder_Destination)) |
| 3218 | return false; |
| 3219 | std::string target_image = Temp_Folder_Destination + "boot.img"; |
| 3220 | PartitionSettings part_settings; |
| 3221 | part_settings.Part = Part; |
| 3222 | if (Create_Backup) { |
| 3223 | if (Check_Backup_Name(Backup_Name, true, false) != 0) |
| 3224 | return false; |
| 3225 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder); |
| 3226 | part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + TWFunc::Get_Current_Date() + " " + Backup_Name + "/"; |
| 3227 | if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) |
| 3228 | return false; |
| 3229 | } else |
| 3230 | part_settings.Backup_Folder = Temp_Folder_Destination; |
| 3231 | part_settings.adbbackup = false; |
| 3232 | part_settings.generate_digest = false; |
| 3233 | part_settings.generate_md5 = false; |
| 3234 | part_settings.PM_Method = PM_BACKUP; |
| 3235 | part_settings.progress = NULL; |
| 3236 | pid_t not_a_pid = 0; |
| 3237 | if (!Part->Backup(&part_settings, ¬_a_pid)) |
| 3238 | return false; |
| 3239 | std::string backed_up_image = part_settings.Backup_Folder; |
| 3240 | backed_up_image += Part->Backup_FileName; |
| 3241 | target_image = Temp_Folder_Destination + "boot.img"; |
| 3242 | if (Create_Backup) { |
| 3243 | std::string source = part_settings.Backup_Folder + Part->Backup_FileName; |
| 3244 | if (TWFunc::copy_file(source, target_image, 0644) != 0) { |
| 3245 | LOGERR("Failed to copy backup file '%s' to temp folder target '%s'\n", source.c_str(), target_image.c_str()); |
| 3246 | return false; |
| 3247 | } |
| 3248 | } else { |
| 3249 | if (rename(backed_up_image.c_str(), target_image.c_str()) != 0) { |
| 3250 | LOGERR("Failed to rename '%s' to '%s'\n", backed_up_image.c_str(), target_image.c_str()); |
| 3251 | return false; |
| 3252 | } |
| 3253 | } |
| 3254 | return Prepare_Repack(target_image, Temp_Folder_Destination, false, false); |
| 3255 | } |
| 3256 | |
| 3257 | bool TWPartitionManager::Prepare_Repack(const std::string& Source_Path, const std::string& Temp_Folder_Destination, const bool Copy_Source, const bool Create_Destination) { |
| 3258 | if (Create_Destination) { |
| 3259 | if (!Prepare_Empty_Folder(Temp_Folder_Destination)) |
| 3260 | return false; |
| 3261 | } |
| 3262 | if (Copy_Source) { |
| 3263 | std::string destination = Temp_Folder_Destination + "/boot.img"; |
| 3264 | if (TWFunc::copy_file(Source_Path, destination, 0644)) |
| 3265 | return false; |
| 3266 | } |
Mohd Faraz | 5738e76 | 2020-05-10 04:18:30 +0530 | [diff] [blame] | 3267 | std::string command = "cd " + Temp_Folder_Destination + " && /sbin/magiskboot unpack -h '" + Source_Path +"'"; |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 3268 | if (TWFunc::Exec_Cmd(command) != 0) { |
| 3269 | LOGINFO("Error unpacking %s!\n", Source_Path.c_str()); |
| 3270 | gui_msg(Msg(msg::kError, "unpack_error=Error unpacking image.")); |
| 3271 | return false; |
| 3272 | } |
| 3273 | return true; |
| 3274 | } |
| 3275 | |
| 3276 | bool TWPartitionManager::Repack_Images(const std::string& Target_Image, const struct Repack_Options_struct& Repack_Options) { |
| 3277 | if (!TWFunc::Path_Exists("/sbin/magiskboot")) { |
| 3278 | LOGERR("Image repacking tool not present in this TWRP build!"); |
| 3279 | return false; |
| 3280 | } |
| 3281 | DataManager::SetProgress(0); |
| 3282 | TWPartition* part = PartitionManager.Find_Partition_By_Path("/boot"); |
| 3283 | if (part) |
| 3284 | gui_msg(Msg("unpacking_image=Unpacking {1}...")(part->Display_Name)); |
| 3285 | else { |
| 3286 | gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/boot")); |
| 3287 | return false; |
| 3288 | } |
| 3289 | if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack"))) |
| 3290 | return false; |
| 3291 | DataManager::SetProgress(.25); |
| 3292 | gui_msg(Msg("unpacking_image=Unpacking {1}...")(Target_Image)); |
| 3293 | if (!PartitionManager.Prepare_Repack(Target_Image, REPACK_NEW_DIR, true)) |
| 3294 | return false; |
| 3295 | DataManager::SetProgress(.5); |
| 3296 | gui_msg(Msg("repacking_image=Repacking {1}...")(part->Display_Name)); |
| 3297 | std::string path = REPACK_NEW_DIR; |
| 3298 | if (Repack_Options.Type == REPLACE_KERNEL) { |
| 3299 | // When we replace the kernel, what we really do is copy the boot partition ramdisk into the new image's folder |
| 3300 | if (TWFunc::copy_file(REPACK_ORIG_DIR "ramdisk.cpio", REPACK_NEW_DIR "ramdisk.cpio", 0644)) { |
| 3301 | LOGERR("Failed to copy ramdisk\n"); |
| 3302 | return false; |
| 3303 | } |
| 3304 | } else if (Repack_Options.Type == REPLACE_RAMDISK) { |
| 3305 | // Repack the ramdisk |
| 3306 | if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) { |
| 3307 | LOGERR("Failed to copy ramdisk\n"); |
| 3308 | return false; |
| 3309 | } |
| 3310 | path = REPACK_ORIG_DIR; |
| 3311 | } else { |
| 3312 | LOGERR("Invalid repacking options specified\n"); |
| 3313 | return false; |
| 3314 | } |
| 3315 | if (Repack_Options.Disable_Verity) |
| 3316 | LOGERR("Disabling verity is not implemented yet\n"); |
| 3317 | if (Repack_Options.Disable_Force_Encrypt) |
| 3318 | LOGERR("Disabling force encrypt is not implemented yet\n"); |
Mohd Faraz | 5738e76 | 2020-05-10 04:18:30 +0530 | [diff] [blame] | 3319 | std::string command = "cd " + path + " && /sbin/magiskboot repack " + path + "boot.img"; |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 3320 | if (TWFunc::Exec_Cmd(command) != 0) { |
| 3321 | gui_msg(Msg(msg::kError, "repack_error=Error repacking image.")); |
| 3322 | return false; |
| 3323 | } |
| 3324 | DataManager::SetProgress(.75); |
| 3325 | std::string file = "new-boot.img"; |
| 3326 | DataManager::SetValue("tw_flash_partition", "/boot;"); |
| 3327 | if (!PartitionManager.Flash_Image(path, file)) { |
| 3328 | LOGINFO("Error flashing new image\n"); |
| 3329 | return false; |
| 3330 | } |
| 3331 | DataManager::SetProgress(1); |
| 3332 | TWFunc::removeDir(REPACK_ORIG_DIR, false); |
Ethan Yonker | 9f5dd31 | 2019-05-15 15:17:36 -0500 | [diff] [blame] | 3333 | if (part->SlotSelect && Repack_Options.Type == REPLACE_RAMDISK) { |
| 3334 | LOGINFO("Switching slots to flash ramdisk to both partitions\n"); |
| 3335 | string Current_Slot = Get_Active_Slot_Display(); |
| 3336 | if (Current_Slot == "A") |
| 3337 | Set_Active_Slot("B"); |
| 3338 | else |
| 3339 | Set_Active_Slot("A"); |
| 3340 | DataManager::SetProgress(.25); |
| 3341 | if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack"))) |
| 3342 | return false; |
| 3343 | if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) { |
| 3344 | LOGERR("Failed to copy ramdisk\n"); |
| 3345 | return false; |
| 3346 | } |
| 3347 | path = REPACK_ORIG_DIR; |
Mohd Faraz | 5738e76 | 2020-05-10 04:18:30 +0530 | [diff] [blame] | 3348 | command = "cd " + path + " && /sbin/magiskboot repack " + path + "boot.img"; |
Ethan Yonker | 9f5dd31 | 2019-05-15 15:17:36 -0500 | [diff] [blame] | 3349 | if (TWFunc::Exec_Cmd(command) != 0) { |
| 3350 | gui_msg(Msg(msg::kError, "repack_error=Error repacking image.")); |
| 3351 | return false; |
| 3352 | } |
| 3353 | DataManager::SetProgress(.75); |
| 3354 | std::string file = "new-boot.img"; |
| 3355 | DataManager::SetValue("tw_flash_partition", "/boot;"); |
| 3356 | if (!PartitionManager.Flash_Image(path, file)) { |
| 3357 | LOGINFO("Error flashing new image\n"); |
| 3358 | return false; |
| 3359 | } |
| 3360 | DataManager::SetProgress(1); |
| 3361 | TWFunc::removeDir(REPACK_ORIG_DIR, false); |
| 3362 | Set_Active_Slot(Current_Slot); |
| 3363 | } |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 3364 | TWFunc::removeDir(REPACK_NEW_DIR, false); |
| 3365 | return true; |
| 3366 | } |