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