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