Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 1 | /* |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 2 | Copyright 2014 to 2016 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> |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 25 | #include <vector> |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 26 | #include <dirent.h> |
| 27 | #include <time.h> |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 28 | #include <errno.h> |
| 29 | #include <fcntl.h> |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 30 | #include <zlib.h> |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 31 | #include <iostream> |
| 32 | #include <iomanip> |
Ethan Yonker | 8613dc0 | 2014-09-11 09:28:20 -0500 | [diff] [blame] | 33 | #include <sys/wait.h> |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 34 | #include <linux/fs.h> |
| 35 | #include <sys/mount.h> |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 36 | #include "variables.h" |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 37 | #include "twcommon.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 38 | #include "partitions.hpp" |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 39 | #include "data.hpp" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 40 | #include "twrp-functions.hpp" |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 41 | #include "fixContexts.hpp" |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 42 | #include "twrpDigest.hpp" |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 43 | #include "exclude.hpp" |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 44 | #include "set_metadata.h" |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 45 | #include "tw_atomic.hpp" |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 46 | #include "gui/gui.hpp" |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 47 | #include "progresstracking.hpp" |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 48 | #include "adbbu/libtwadbbu.hpp" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 49 | |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 50 | #ifdef TW_HAS_MTP |
| 51 | #include "mtp/mtp_MtpServer.hpp" |
| 52 | #include "mtp/twrpMtp.hpp" |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 53 | #include "mtp/MtpMessage.hpp" |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 54 | #endif |
| 55 | |
Dees Troy | 6f6441d | 2014-01-23 02:07:03 +0000 | [diff] [blame] | 56 | extern "C" { |
| 57 | #include "cutils/properties.h" |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 58 | #include "gui/gui.h" |
Dees Troy | 6f6441d | 2014-01-23 02:07:03 +0000 | [diff] [blame] | 59 | } |
| 60 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 61 | #ifdef TW_INCLUDE_CRYPTO |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 62 | #include "crypto/lollipop/cryptfs.h" |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 63 | #include "gui/rapidxml.hpp" |
| 64 | #include "gui/pages.hpp" |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 65 | #ifdef TW_INCLUDE_FBE |
| 66 | #include "crypto/ext4crypt/Decrypt.h" |
| 67 | #endif |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame^] | 68 | #ifdef TW_CRYPTO_USE_SYSTEM_VOLD |
| 69 | #include "crypto/vold_decrypt/vold_decrypt.h" |
| 70 | #endif |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 71 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 72 | |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 73 | #ifdef AB_OTA_UPDATER |
| 74 | #include <hardware/hardware.h> |
| 75 | #include <hardware/boot_control.h> |
| 76 | #endif |
| 77 | |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 78 | extern bool datamedia; |
| 79 | |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 80 | TWPartitionManager::TWPartitionManager(void) { |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 81 | mtp_was_enabled = false; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 82 | mtp_write_fd = -1; |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 83 | stop_backup.set_value(0); |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 84 | #ifdef AB_OTA_UPDATER |
| 85 | char slot_suffix[PROPERTY_VALUE_MAX]; |
| 86 | property_get("ro.boot.slot_suffix", slot_suffix, "_a"); |
| 87 | Active_Slot_Display = ""; |
| 88 | if (strcmp(slot_suffix, "_a") == 0) |
| 89 | Set_Active_Slot("A"); |
| 90 | else |
| 91 | Set_Active_Slot("B"); |
| 92 | #endif |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 93 | } |
| 94 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 95 | int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 96 | FILE *fstabFile; |
| 97 | char fstab_line[MAX_FSTAB_LINE_LENGTH]; |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 98 | TWPartition* settings_partition = NULL; |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 99 | TWPartition* andsec_partition = NULL; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 100 | unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 101 | |
| 102 | fstabFile = fopen(Fstab_Filename.c_str(), "rt"); |
| 103 | if (fstabFile == NULL) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 104 | 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] | 105 | return false; |
| 106 | } |
| 107 | |
| 108 | while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) { |
| 109 | if (fstab_line[0] != '/') |
| 110 | continue; |
| 111 | |
Dees_Troy | 2a92358 | 2012-09-20 12:13:34 -0400 | [diff] [blame] | 112 | if (fstab_line[strlen(fstab_line) - 1] != '\n') |
| 113 | fstab_line[strlen(fstab_line)] = '\n'; |
Dees_Troy | 2a92358 | 2012-09-20 12:13:34 -0400 | [diff] [blame] | 114 | |
Matt Mower | 2b2dd15 | 2016-04-26 11:24:08 -0500 | [diff] [blame] | 115 | TWPartition* partition = new TWPartition(); |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 116 | if (partition->Process_Fstab_Line(fstab_line, Display_Error)) |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 117 | Partitions.push_back(partition); |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 118 | else |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 119 | delete partition; |
Matt Mower | 2b2dd15 | 2016-04-26 11:24:08 -0500 | [diff] [blame] | 120 | |
| 121 | memset(fstab_line, 0, sizeof(fstab_line)); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 122 | } |
| 123 | fclose(fstabFile); |
Matt Mower | 72c87ce | 2016-04-26 14:34:56 -0500 | [diff] [blame] | 124 | |
| 125 | std::vector<TWPartition*>::iterator iter; |
| 126 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 127 | (*iter)->Partition_Post_Processing(Display_Error); |
| 128 | |
| 129 | if ((*iter)->Is_Storage) { |
| 130 | ++storageid; |
| 131 | (*iter)->MTP_Storage_ID = storageid; |
| 132 | } |
| 133 | |
| 134 | if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present) |
| 135 | settings_partition = (*iter); |
| 136 | else |
| 137 | (*iter)->Is_Settings_Storage = false; |
| 138 | |
| 139 | if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present) |
| 140 | andsec_partition = (*iter); |
| 141 | else |
| 142 | (*iter)->Has_Android_Secure = false; |
| 143 | } |
| 144 | |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 145 | 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) { |
| 146 | // Attempt to automatically identify /data/media emulated storage devices |
| 147 | TWPartition* Dat = Find_Partition_By_Path("/data"); |
| 148 | if (Dat) { |
| 149 | LOGINFO("Using automatic handling for /data/media emulated storage device.\n"); |
| 150 | datamedia = true; |
that | 9e0593e | 2014-10-08 00:01:24 +0200 | [diff] [blame] | 151 | Dat->Setup_Data_Media(); |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 152 | settings_partition = Dat; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 153 | // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID |
| 154 | ++storageid; |
| 155 | Dat->MTP_Storage_ID = storageid; |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 156 | } |
| 157 | } |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 158 | if (!settings_partition) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 159 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 160 | if ((*iter)->Is_Storage) { |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 161 | settings_partition = (*iter); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 162 | break; |
| 163 | } |
| 164 | } |
Dees Troy | 02a6453 | 2014-03-19 15:23:32 +0000 | [diff] [blame] | 165 | if (!settings_partition) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 166 | LOGERR("Unable to locate storage partition for storing settings file.\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 167 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 168 | if (!Write_Fstab()) { |
| 169 | if (Display_Error) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 170 | LOGERR("Error creating fstab\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 171 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 172 | LOGINFO("Error creating fstab\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 173 | } |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 174 | |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 175 | if (andsec_partition) { |
| 176 | Setup_Android_Secure_Location(andsec_partition); |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 177 | } else if (settings_partition) { |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 178 | Setup_Android_Secure_Location(settings_partition); |
| 179 | } |
Matt Mower | ed71fa3 | 2014-04-16 13:21:47 -0500 | [diff] [blame] | 180 | if (settings_partition) { |
| 181 | Setup_Settings_Storage_Partition(settings_partition); |
| 182 | } |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 183 | #ifdef TW_INCLUDE_CRYPTO |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 184 | TWPartition* Decrypt_Data = Find_Partition_By_Path("/data"); |
| 185 | if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) { |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 186 | if (Decrypt_Data->Is_FBE) { |
| 187 | if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) { |
| 188 | if (Decrypt_Device("!") == 0) { |
| 189 | gui_msg("decrypt_success=Successfully decrypted with default password."); |
| 190 | DataManager::SetValue(TW_IS_ENCRYPTED, 0); |
| 191 | } else { |
| 192 | gui_err("unable_to_decrypt=Unable to decrypt with default password."); |
| 193 | } |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 194 | } |
| 195 | } else { |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 196 | int password_type = cryptfs_get_password_type(); |
| 197 | if (password_type == CRYPT_TYPE_DEFAULT) { |
| 198 | LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n"); |
| 199 | if (Decrypt_Device("default_password") == 0) { |
| 200 | gui_msg("decrypt_success=Successfully decrypted with default password."); |
| 201 | DataManager::SetValue(TW_IS_ENCRYPTED, 0); |
| 202 | } else { |
| 203 | gui_err("unable_to_decrypt=Unable to decrypt with default password."); |
| 204 | } |
| 205 | } else { |
| 206 | DataManager::SetValue("TW_CRYPTO_TYPE", password_type); |
| 207 | } |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 208 | } |
| 209 | } |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 210 | if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) { |
| 211 | Decrypt_Adopted(); |
| 212 | } |
Ethan Yonker | cceebb8 | 2014-11-18 10:17:59 -0600 | [diff] [blame] | 213 | #endif |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 214 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 215 | UnMount_Main_Partitions(); |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 216 | #ifdef AB_OTA_UPDATER |
| 217 | DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display()); |
| 218 | #endif |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 219 | return true; |
| 220 | } |
| 221 | |
| 222 | int TWPartitionManager::Write_Fstab(void) { |
| 223 | FILE *fp; |
| 224 | std::vector<TWPartition*>::iterator iter; |
| 225 | string Line; |
| 226 | |
| 227 | fp = fopen("/etc/fstab", "w"); |
| 228 | if (fp == NULL) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 229 | LOGINFO("Can not open /etc/fstab.\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 230 | return false; |
| 231 | } |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 232 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 233 | if ((*iter)->Can_Be_Mounted) { |
dianlujitao | 7d304c7 | 2016-01-02 12:15:50 +0800 | [diff] [blame] | 234 | Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n"; |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 235 | fputs(Line.c_str(), fp); |
Dees_Troy | 91862e6 | 2013-04-04 23:48:21 +0000 | [diff] [blame] | 236 | } |
| 237 | // Handle subpartition tracking |
| 238 | if ((*iter)->Is_SubPartition) { |
| 239 | TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of); |
| 240 | if (ParentPartition) |
| 241 | ParentPartition->Has_SubPartition = true; |
| 242 | else |
| 243 | LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 244 | } |
| 245 | } |
| 246 | fclose(fp); |
| 247 | return true; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 248 | } |
| 249 | |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 250 | void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) { |
Ethan Yonker | c05c598 | 2014-03-13 09:19:56 -0500 | [diff] [blame] | 251 | DataManager::SetValue("tw_settings_path", Part->Storage_Path); |
| 252 | DataManager::SetValue("tw_storage_path", Part->Storage_Path); |
| 253 | LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str()); |
| 254 | } |
| 255 | |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 256 | void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) { |
| 257 | if (Part->Has_Android_Secure) |
| 258 | Part->Setup_AndSec(); |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 259 | else if (!datamedia) |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 260 | Part->Setup_AndSec(); |
Matt Mower | bf4efa3 | 2014-04-14 23:25:26 -0500 | [diff] [blame] | 261 | } |
| 262 | |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 263 | void TWPartitionManager::Output_Partition_Logging(void) { |
| 264 | std::vector<TWPartition*>::iterator iter; |
| 265 | |
| 266 | printf("\n\nPartition Logs:\n"); |
| 267 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) |
| 268 | Output_Partition((*iter)); |
| 269 | } |
| 270 | |
| 271 | void TWPartitionManager::Output_Partition(TWPartition* Part) { |
| 272 | unsigned long long mb = 1048576; |
| 273 | |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 274 | 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] | 275 | if (Part->Can_Be_Mounted) { |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 276 | 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] | 277 | } |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 278 | printf("\n Flags: "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 279 | if (Part->Can_Be_Mounted) |
| 280 | printf("Can_Be_Mounted "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 281 | if (Part->Can_Be_Wiped) |
| 282 | printf("Can_Be_Wiped "); |
Hashcode | dabfd49 | 2013-08-29 22:45:30 -0700 | [diff] [blame] | 283 | if (Part->Use_Rm_Rf) |
| 284 | printf("Use_Rm_Rf "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 285 | if (Part->Can_Be_Backed_Up) |
| 286 | printf("Can_Be_Backed_Up "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 287 | if (Part->Wipe_During_Factory_Reset) |
| 288 | printf("Wipe_During_Factory_Reset "); |
| 289 | if (Part->Wipe_Available_in_GUI) |
| 290 | printf("Wipe_Available_in_GUI "); |
| 291 | if (Part->Is_SubPartition) |
| 292 | printf("Is_SubPartition "); |
| 293 | if (Part->Has_SubPartition) |
| 294 | printf("Has_SubPartition "); |
| 295 | if (Part->Removable) |
| 296 | printf("Removable "); |
| 297 | if (Part->Is_Present) |
| 298 | printf("IsPresent "); |
| 299 | if (Part->Can_Be_Encrypted) |
| 300 | printf("Can_Be_Encrypted "); |
| 301 | if (Part->Is_Encrypted) |
| 302 | printf("Is_Encrypted "); |
| 303 | if (Part->Is_Decrypted) |
| 304 | printf("Is_Decrypted "); |
| 305 | if (Part->Has_Data_Media) |
| 306 | printf("Has_Data_Media "); |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 307 | if (Part->Can_Encrypt_Backup) |
| 308 | printf("Can_Encrypt_Backup "); |
| 309 | if (Part->Use_Userdata_Encryption) |
| 310 | printf("Use_Userdata_Encryption "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 311 | if (Part->Has_Android_Secure) |
| 312 | printf("Has_Android_Secure "); |
| 313 | if (Part->Is_Storage) |
| 314 | printf("Is_Storage "); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 315 | if (Part->Is_Settings_Storage) |
| 316 | printf("Is_Settings_Storage "); |
Dees_Troy | 68cab49 | 2012-12-12 19:29:35 +0000 | [diff] [blame] | 317 | if (Part->Ignore_Blkid) |
| 318 | printf("Ignore_Blkid "); |
Dees_Troy | 16c2b31 | 2013-01-15 16:51:18 +0000 | [diff] [blame] | 319 | if (Part->Retain_Layout_Version) |
| 320 | printf("Retain_Layout_Version "); |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 321 | if (Part->Mount_To_Decrypt) |
| 322 | printf("Mount_To_Decrypt "); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 323 | if (Part->Can_Flash_Img) |
| 324 | printf("Can_Flash_Img "); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 325 | if (Part->Is_Adopted_Storage) |
| 326 | printf("Is_Adopted_Storage "); |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 327 | if (Part->SlotSelect) |
| 328 | printf("SlotSelect "); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 329 | printf("\n"); |
| 330 | if (!Part->SubPartition_Of.empty()) |
| 331 | printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str()); |
| 332 | if (!Part->Symlink_Path.empty()) |
| 333 | printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str()); |
| 334 | if (!Part->Symlink_Mount_Point.empty()) |
| 335 | printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str()); |
| 336 | if (!Part->Primary_Block_Device.empty()) |
| 337 | printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str()); |
| 338 | if (!Part->Alternate_Block_Device.empty()) |
| 339 | printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str()); |
| 340 | if (!Part->Decrypted_Block_Device.empty()) |
| 341 | printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str()); |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 342 | if (!Part->Crypto_Key_Location.empty() && Part->Crypto_Key_Location != "footer") |
| 343 | printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str()); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 344 | if (Part->Length != 0) |
| 345 | printf(" Length: %i\n", Part->Length); |
| 346 | if (!Part->Display_Name.empty()) |
| 347 | printf(" Display_Name: %s\n", Part->Display_Name.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 348 | if (!Part->Storage_Name.empty()) |
| 349 | printf(" Storage_Name: %s\n", Part->Storage_Name.c_str()); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 350 | if (!Part->Backup_Path.empty()) |
| 351 | printf(" Backup_Path: %s\n", Part->Backup_Path.c_str()); |
| 352 | if (!Part->Backup_Name.empty()) |
| 353 | printf(" Backup_Name: %s\n", Part->Backup_Name.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 354 | if (!Part->Backup_Display_Name.empty()) |
| 355 | printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str()); |
Gary Peck | 004d48b | 2012-11-21 16:28:18 -0800 | [diff] [blame] | 356 | if (!Part->Backup_FileName.empty()) |
| 357 | printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str()); |
| 358 | if (!Part->Storage_Path.empty()) |
| 359 | printf(" Storage_Path: %s\n", Part->Storage_Path.c_str()); |
| 360 | if (!Part->Current_File_System.empty()) |
| 361 | printf(" Current_File_System: %s\n", Part->Current_File_System.c_str()); |
| 362 | if (!Part->Fstab_File_System.empty()) |
| 363 | printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str()); |
| 364 | if (Part->Format_Block_Size != 0) |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 365 | printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size); |
Dees_Troy | 094207a | 2012-09-26 12:00:39 -0400 | [diff] [blame] | 366 | if (!Part->MTD_Name.empty()) |
| 367 | printf(" MTD_Name: %s\n", Part->MTD_Name.c_str()); |
Matt Mower | 029a82d | 2017-01-08 13:12:38 -0600 | [diff] [blame] | 368 | printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str()); |
Hashcode | 62bd9e0 | 2013-11-19 21:59:42 -0800 | [diff] [blame] | 369 | if (Part->Mount_Flags || !Part->Mount_Options.empty()) |
Matt Mower | 4ab42b1 | 2016-04-21 13:52:18 -0500 | [diff] [blame] | 370 | printf(" Mount_Options: %s\n", Part->Mount_Options.c_str()); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 371 | if (Part->MTP_Storage_ID) |
| 372 | printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID); |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 373 | printf("\n"); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 374 | } |
| 375 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 376 | int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 377 | std::vector<TWPartition*>::iterator iter; |
| 378 | int ret = false; |
| 379 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 380 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 381 | |
Dees_Troy | d93bda5 | 2013-07-03 19:55:19 +0000 | [diff] [blame] | 382 | if (Local_Path == "/tmp" || Local_Path == "/") |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 383 | return true; |
| 384 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 385 | // Iterate through all partitions |
| 386 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 387 | 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] | 388 | ret = (*iter)->Mount(Display_Error); |
| 389 | found = true; |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 390 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 391 | (*iter)->Mount(Display_Error); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 392 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 393 | } |
| 394 | if (found) { |
| 395 | return ret; |
| 396 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 397 | 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] | 398 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 399 | LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 400 | } |
| 401 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 402 | } |
| 403 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 404 | int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 405 | std::vector<TWPartition*>::iterator iter; |
| 406 | int ret = false; |
| 407 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 408 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 409 | |
| 410 | // Iterate through all partitions |
| 411 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 412 | 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] | 413 | ret = (*iter)->UnMount(Display_Error); |
| 414 | found = true; |
| 415 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 416 | (*iter)->UnMount(Display_Error); |
| 417 | } |
| 418 | } |
| 419 | if (found) { |
| 420 | return ret; |
| 421 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 422 | 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] | 423 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 424 | 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] | 425 | } |
| 426 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 427 | } |
| 428 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 429 | int TWPartitionManager::Is_Mounted_By_Path(string Path) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 430 | TWPartition* Part = Find_Partition_By_Path(Path); |
| 431 | |
| 432 | if (Part) |
| 433 | return Part->Is_Mounted(); |
| 434 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 435 | 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] | 436 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 437 | } |
| 438 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 439 | int TWPartitionManager::Mount_Current_Storage(bool Display_Error) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 440 | string current_storage_path = DataManager::GetCurrentStoragePath(); |
| 441 | |
| 442 | if (Mount_By_Path(current_storage_path, Display_Error)) { |
| 443 | TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path); |
| 444 | if (FreeStorage) |
| 445 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU)); |
| 446 | return true; |
| 447 | } |
| 448 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 449 | } |
| 450 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 451 | int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) { |
| 452 | return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error); |
| 453 | } |
| 454 | |
| 455 | TWPartition* TWPartitionManager::Find_Partition_By_Path(string Path) { |
| 456 | std::vector<TWPartition*>::iterator iter; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 457 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 458 | |
| 459 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 460 | 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] | 461 | return (*iter); |
| 462 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 463 | return NULL; |
| 464 | } |
| 465 | |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 466 | int TWPartitionManager::Check_Backup_Name(bool Display_Error) { |
| 467 | // Check the backup name to ensure that it is the correct size and contains only valid characters |
| 468 | // and that a backup with that name doesn't already exist |
| 469 | char backup_name[MAX_BACKUP_NAME_LEN]; |
| 470 | char backup_loc[255], tw_image_dir[255]; |
| 471 | int copy_size; |
| 472 | int index, cur_char; |
| 473 | string Backup_Name, Backup_Loc; |
| 474 | |
| 475 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
| 476 | copy_size = Backup_Name.size(); |
| 477 | // Check size |
| 478 | if (copy_size > MAX_BACKUP_NAME_LEN) { |
| 479 | if (Display_Error) |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 480 | gui_err("backup_name_len=Backup name is too long."); |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 481 | return -2; |
| 482 | } |
| 483 | |
| 484 | // Check each character |
| 485 | strncpy(backup_name, Backup_Name.c_str(), copy_size); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 486 | if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0) |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 487 | return 0; // A "0" (zero) means to use the current timestamp for the backup name |
| 488 | for (index=0; index<copy_size; index++) { |
| 489 | cur_char = (int)backup_name[index]; |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 490 | 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] | 491 | // These are valid characters |
| 492 | // Numbers |
| 493 | // Upper case letters |
| 494 | // Lower case letters |
| 495 | // Space |
| 496 | // and -_.{}[] |
| 497 | } else { |
| 498 | if (Display_Error) |
Ethan Yonker | 4adc33e | 2016-01-22 16:07:11 -0600 | [diff] [blame] | 499 | 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] | 500 | return -3; |
| 501 | } |
| 502 | } |
| 503 | |
| 504 | // Check to make sure that a backup with this name doesn't already exist |
| 505 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc); |
| 506 | strcpy(backup_loc, Backup_Loc.c_str()); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 507 | sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str()); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 508 | if (TWFunc::Path_Exists(tw_image_dir)) { |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 509 | if (Display_Error) |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 510 | gui_err("backup_name_exists=A backup with that name already exists!"); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 511 | |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 512 | return -4; |
| 513 | } |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 514 | // No problems found, return 0 |
| 515 | return 0; |
| 516 | } |
| 517 | |
bigbiff bigbiff | a481d36 | 2016-08-08 20:36:10 -0400 | [diff] [blame] | 518 | bool TWPartitionManager::Make_MD5(PartitionSettings *part_settings) |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 519 | { |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 520 | string command, result; |
| 521 | |
| 522 | if (part_settings->Part == NULL) |
| 523 | return false; |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 524 | string Full_File = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName; |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 525 | twrpDigest md5sum; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 526 | |
bigbiff bigbiff | a481d36 | 2016-08-08 20:36:10 -0400 | [diff] [blame] | 527 | if (!part_settings->generate_md5) |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 528 | return true; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 529 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 530 | TWFunc::GUI_Operation_Text(TW_GENERATE_MD5_TEXT, gui_parse_text("{@generating_md51}")); |
| 531 | gui_msg("generating_md52= * Generating md5..."); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 532 | if (TWFunc::Path_Exists(Full_File)) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 533 | md5sum.setfn(Full_File); |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 534 | if (md5sum.computeMD5() == 0) |
| 535 | if (md5sum.write_md5digest() == 0) |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 536 | gui_msg("md5_created= * MD5 Created."); |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 537 | else |
| 538 | return -1; |
| 539 | else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 540 | gui_err("md5_error= * MD5 Error!"); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 541 | } else { |
| 542 | char filename[512]; |
| 543 | int index = 0; |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 544 | string strfn; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 545 | sprintf(filename, "%s%03i", Full_File.c_str(), index); |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 546 | strfn = filename; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 547 | while (index < 1000) { |
bigbiff bigbiff | 65a4c73 | 2013-03-15 15:17:50 -0400 | [diff] [blame] | 548 | md5sum.setfn(filename); |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 549 | if (TWFunc::Path_Exists(filename)) { |
| 550 | if (md5sum.computeMD5() == 0) { |
| 551 | if (md5sum.write_md5digest() != 0) |
| 552 | { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 553 | gui_err("md5_error= * MD5 Error!"); |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 554 | return false; |
| 555 | } |
| 556 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 557 | gui_err("md5_compute_error= * Error computing MD5."); |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 558 | return false; |
| 559 | } |
| 560 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 561 | index++; |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 562 | sprintf(filename, "%s%03i", Full_File.c_str(), index); |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 563 | strfn = filename; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 564 | } |
| 565 | if (index == 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 566 | LOGERR("Backup file: '%s' not found!\n", filename); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 567 | return false; |
| 568 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 569 | gui_msg("md5_created= * MD5 Created."); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 570 | } |
| 571 | return true; |
| 572 | } |
| 573 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 574 | bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) { |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 575 | time_t start, stop; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 576 | int use_compression; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 577 | string backup_log = part_settings->Backup_Folder + "/recovery.log"; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 578 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 579 | if (part_settings->Part == NULL) |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 580 | return true; |
| 581 | |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 582 | DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 583 | |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 584 | TWFunc::SetPerformanceMode(true); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 585 | time(&start); |
| 586 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 587 | if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) { |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 588 | bool md5Success = false; |
Matt Mower | 029a82d | 2017-01-08 13:12:38 -0600 | [diff] [blame] | 589 | if (part_settings->adbbackup) |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 590 | md5Success = true; |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 591 | else |
| 592 | md5Success = Make_MD5(part_settings); |
| 593 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 594 | if (part_settings->Part->Has_SubPartition) { |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 595 | std::vector<TWPartition*>::iterator subpart; |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 596 | TWPartition *parentPart = part_settings->Part; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 597 | |
| 598 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 599 | 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] | 600 | part_settings->Part = *subpart; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 601 | if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 602 | Clean_Backup_Folder(part_settings->Backup_Folder); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 603 | TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644); |
| 604 | tw_set_default_metadata(backup_log.c_str()); |
Matt Mower | 0289955 | 2016-12-30 18:13:51 -0600 | [diff] [blame] | 605 | TWFunc::SetPerformanceMode(false); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 606 | return false; |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 607 | } |
Dees_Troy | 2727b99 | 2013-08-14 20:09:30 +0000 | [diff] [blame] | 608 | sync(); |
| 609 | sync(); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 610 | if (!part_settings->adbbackup) { |
bigbiff bigbiff | a481d36 | 2016-08-08 20:36:10 -0400 | [diff] [blame] | 611 | if (!Make_MD5(part_settings)) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 612 | TWFunc::SetPerformanceMode(false); |
| 613 | return false; |
| 614 | } |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 615 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 616 | } |
| 617 | } |
| 618 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 619 | time(&stop); |
that | 203bcc9 | 2015-05-09 17:27:33 +0200 | [diff] [blame] | 620 | int backup_time = (int) difftime(stop, start); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 621 | LOGINFO("Partition Backup time: %d\n", backup_time); |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 622 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 623 | if (part_settings->Part->Backup_Method == BM_FILES) { |
| 624 | part_settings->file_time += backup_time; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 625 | } else { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 626 | part_settings->img_time += backup_time; |
| 627 | |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 628 | } |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 629 | |
Matt Mower | 0289955 | 2016-12-30 18:13:51 -0600 | [diff] [blame] | 630 | TWFunc::SetPerformanceMode(false); |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 631 | return md5Success; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 632 | } else { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 633 | Clean_Backup_Folder(part_settings->Backup_Folder); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 634 | TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644); |
| 635 | tw_set_default_metadata(backup_log.c_str()); |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 636 | TWFunc::SetPerformanceMode(false); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 637 | return false; |
| 638 | } |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 639 | return 0; |
| 640 | } |
| 641 | |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 642 | void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) { |
| 643 | DIR *d = opendir(Backup_Folder.c_str()); |
| 644 | struct dirent *p; |
| 645 | int r; |
| 646 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 647 | gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder."); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 648 | |
| 649 | if (d == NULL) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 650 | 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] | 651 | return; |
| 652 | } |
| 653 | |
Matt Mower | 2b18a53 | 2015-02-20 16:58:05 -0600 | [diff] [blame] | 654 | while ((p = readdir(d))) { |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 655 | if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, "..")) |
| 656 | continue; |
| 657 | |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 658 | string path = Backup_Folder + "/" + p->d_name; |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 659 | |
| 660 | size_t dot = path.find_last_of(".") + 1; |
| 661 | if (path.substr(dot) == "win" || path.substr(dot) == "md5" || path.substr(dot) == "info") { |
| 662 | r = unlink(path.c_str()); |
| 663 | if (r != 0) { |
| 664 | LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno)); |
| 665 | } |
| 666 | } |
| 667 | } |
| 668 | closedir(d); |
| 669 | } |
| 670 | |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 671 | int TWPartitionManager::Check_Backup_Cancel() { |
| 672 | return stop_backup.get_value(); |
| 673 | } |
| 674 | |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 675 | int TWPartitionManager::Cancel_Backup() { |
| 676 | string Backup_Folder, Backup_Name, Full_Backup_Path; |
| 677 | |
| 678 | stop_backup.set_value(1); |
| 679 | |
| 680 | if (tar_fork_pid != 0) { |
| 681 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
| 682 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder); |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 683 | Full_Backup_Path = Backup_Folder + "/" + Backup_Name; |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 684 | LOGINFO("Killing pid: %d\n", tar_fork_pid); |
| 685 | kill(tar_fork_pid, SIGUSR2); |
| 686 | while (kill(tar_fork_pid, 0) == 0) { |
| 687 | usleep(1000); |
| 688 | } |
| 689 | LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n"); |
| 690 | LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str()); |
| 691 | TWFunc::removeDir(Full_Backup_Path, false); |
| 692 | tar_fork_pid = 0; |
| 693 | } |
| 694 | |
| 695 | return 0; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 696 | } |
| 697 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 698 | int TWPartitionManager::Run_Backup(bool adbbackup) { |
| 699 | PartitionSettings part_settings; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 700 | int partition_count = 0, disable_free_space_check = 0, do_md5 = 0; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 701 | int gui_adb_backup; |
| 702 | string Backup_Name, Backup_List, backup_path; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 703 | unsigned long long total_bytes = 0, free_space = 0; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 704 | TWPartition* storage = NULL; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 705 | std::vector<TWPartition*>::iterator subpart; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 706 | struct tm *t; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 707 | time_t seconds, total_start, total_stop; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 708 | size_t start_pos = 0, end_pos = 0; |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 709 | stop_backup.set_value(0); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 710 | seconds = time(0); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 711 | t = localtime(&seconds); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 712 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 713 | part_settings.img_bytes_remaining = 0; |
| 714 | part_settings.file_bytes_remaining = 0; |
| 715 | part_settings.img_time = 0; |
| 716 | part_settings.file_time = 0; |
| 717 | part_settings.img_bytes = 0; |
| 718 | part_settings.file_bytes = 0; |
| 719 | part_settings.PM_Method = PM_BACKUP; |
| 720 | |
| 721 | DataManager::GetValue("tw_enable_adb_backup", gui_adb_backup); |
| 722 | if (gui_adb_backup == true) |
| 723 | adbbackup = true; |
| 724 | |
| 725 | part_settings.adbbackup = adbbackup; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 726 | time(&total_start); |
| 727 | |
| 728 | Update_System_Details(); |
| 729 | |
| 730 | if (!Mount_Current_Storage(true)) |
| 731 | return false; |
| 732 | |
| 733 | DataManager::GetValue(TW_SKIP_MD5_GENERATE_VAR, do_md5); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 734 | if (do_md5 == 0) |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 735 | part_settings.generate_md5 = true; |
Dees_Troy | c5865ab | 2012-09-24 15:08:04 -0400 | [diff] [blame] | 736 | else |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 737 | part_settings.generate_md5 = false; |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 738 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 739 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder); |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 740 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
| 741 | if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) { |
| 742 | Backup_Name = TWFunc::Get_Current_Date(); |
| 743 | } 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] | 744 | TWFunc::Auto_Generate_Backup_Name(); |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 745 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 746 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 747 | |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 748 | LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str()); |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 749 | part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 750 | |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 751 | LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str()); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 752 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 753 | LOGINFO("Calculating backup details...\n"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 754 | DataManager::GetValue("tw_backup_list", Backup_List); |
| 755 | if (!Backup_List.empty()) { |
| 756 | end_pos = Backup_List.find(";", start_pos); |
| 757 | while (end_pos != string::npos && start_pos < Backup_List.size()) { |
| 758 | backup_path = Backup_List.substr(start_pos, end_pos - start_pos); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 759 | part_settings.Part = Find_Partition_By_Path(backup_path); |
| 760 | if (part_settings.Part != NULL) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 761 | partition_count++; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 762 | if (part_settings.Part->Backup_Method == BM_FILES) |
| 763 | part_settings.file_bytes += part_settings.Part->Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 764 | else |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 765 | part_settings.img_bytes += part_settings.Part->Backup_Size; |
| 766 | if (part_settings.Part->Has_SubPartition) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 767 | std::vector<TWPartition*>::iterator subpart; |
| 768 | |
| 769 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 770 | 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] | 771 | partition_count++; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 772 | if ((*subpart)->Backup_Method == BM_FILES) |
| 773 | part_settings.file_bytes += (*subpart)->Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 774 | else |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 775 | part_settings.img_bytes += (*subpart)->Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 776 | } |
| 777 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 778 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 779 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 780 | 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] | 781 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 782 | start_pos = end_pos + 1; |
| 783 | end_pos = Backup_List.find(";", start_pos); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 784 | } |
| 785 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 786 | |
| 787 | if (partition_count == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 788 | gui_msg("no_partition_selected=No partitions selected for backup."); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 789 | return false; |
| 790 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 791 | if (adbbackup) { |
| 792 | if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) { |
| 793 | return false; |
| 794 | } |
| 795 | } |
| 796 | total_bytes = part_settings.file_bytes + part_settings.img_bytes; |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 797 | ProgressTracking progress(total_bytes); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 798 | part_settings.progress = &progress; |
| 799 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 800 | gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count)); |
| 801 | 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] | 802 | storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath()); |
| 803 | if (storage != NULL) { |
| 804 | free_space = storage->Free; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 805 | 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] | 806 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 807 | gui_err("unable_locate_storage=Unable to locate storage device."); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 808 | return false; |
| 809 | } |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 810 | |
Matt Mower | bfccfb8 | 2016-04-25 23:22:31 -0500 | [diff] [blame] | 811 | DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 812 | |
| 813 | if (adbbackup) |
| 814 | disable_free_space_check = true; |
| 815 | |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 816 | if (!disable_free_space_check) { |
| 817 | if (free_space - (32 * 1024 * 1024) < total_bytes) { |
| 818 | // We require an extra 32MB just in case |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 819 | gui_err("no_space=Not enough free space on storage."); |
bigbiff | bf1d672 | 2015-02-14 16:25:59 -0500 | [diff] [blame] | 820 | return false; |
| 821 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 822 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 823 | part_settings.img_bytes_remaining = part_settings.img_bytes; |
| 824 | part_settings.file_bytes_remaining = part_settings.file_bytes; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 825 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 826 | gui_msg("backup_started=[BACKUP STARTED]"); |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 827 | gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder)); |
| 828 | if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 829 | gui_err("fail_backup_folder=Failed to make backup folder."); |
Dees_Troy | d4b22b0 | 2013-01-18 17:17:58 +0000 | [diff] [blame] | 830 | return false; |
| 831 | } |
| 832 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 833 | DataManager::SetProgress(0.0); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 834 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 835 | start_pos = 0; |
| 836 | end_pos = Backup_List.find(";", start_pos); |
| 837 | while (end_pos != string::npos && start_pos < Backup_List.size()) { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 838 | if (stop_backup.get_value() != 0) |
| 839 | return -1; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 840 | backup_path = Backup_List.substr(start_pos, end_pos - start_pos); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 841 | part_settings.Part = Find_Partition_By_Path(backup_path); |
| 842 | if (part_settings.Part != NULL) { |
| 843 | if (!Backup_Partition(&part_settings)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 844 | return false; |
| 845 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 846 | 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] | 847 | } |
| 848 | start_pos = end_pos + 1; |
| 849 | end_pos = Backup_List.find(";", start_pos); |
| 850 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 851 | |
| 852 | // Average BPS |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 853 | if (part_settings.img_time == 0) |
| 854 | part_settings.img_time = 1; |
| 855 | if (part_settings.file_time == 0) |
| 856 | part_settings.file_time = 1; |
| 857 | int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time; |
| 858 | 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] | 859 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 860 | if (part_settings.file_bytes != 0) |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 861 | 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] | 862 | if (part_settings.img_bytes != 0) |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 863 | 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] | 864 | |
| 865 | time(&total_stop); |
| 866 | int total_time = (int) difftime(total_stop, total_start); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 867 | |
| 868 | uint64_t actual_backup_size; |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 869 | if (!adbbackup) { |
| 870 | TWExclude twe; |
| 871 | actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder); |
| 872 | } else |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 873 | actual_backup_size = part_settings.file_bytes + part_settings.img_bytes; |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 874 | actual_backup_size /= (1024LLU * 1024LLU); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 875 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 876 | int prev_img_bps = 0, use_compression = 0; |
| 877 | unsigned long long prev_file_bps = 0; |
Matt Mower | 173cdb9 | 2016-12-31 02:49:19 -0600 | [diff] [blame] | 878 | DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 879 | img_bps += (prev_img_bps * 4); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 880 | img_bps /= 5; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 881 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 882 | DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 883 | if (use_compression) |
| 884 | DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 885 | else |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 886 | DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps); |
| 887 | file_bps += (prev_file_bps * 4); |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 888 | file_bps /= 5; |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 889 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 890 | DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps); |
Dees_Troy | 093b764 | 2012-09-21 15:59:38 -0400 | [diff] [blame] | 891 | if (use_compression) |
| 892 | DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps); |
| 893 | else |
| 894 | DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps); |
| 895 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 896 | 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] | 897 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 898 | UnMount_Main_Partitions(); |
Ethan Yonker | 56db1c4 | 2015-12-20 22:49:00 -0600 | [diff] [blame] | 899 | 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] | 900 | string backup_log = part_settings.Backup_Folder + "/recovery.log"; |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 901 | TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644); |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 902 | tw_set_default_metadata(backup_log.c_str()); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 903 | |
| 904 | if (part_settings.adbbackup) { |
| 905 | if (twadbbu::Write_ADB_Stream_Trailer() == false) { |
| 906 | return false; |
| 907 | } |
| 908 | } |
| 909 | part_settings.adbbackup = false; |
| 910 | DataManager::SetValue("tw_enable_adb_backup", 0); |
| 911 | |
Dees_Troy | 3f5c4e8 | 2013-02-01 15:16:59 +0000 | [diff] [blame] | 912 | return true; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 913 | } |
| 914 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 915 | bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) { |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 916 | time_t Start, Stop; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 917 | |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 918 | TWFunc::SetPerformanceMode(true); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 919 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 920 | time(&Start); |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 921 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 922 | if (!part_settings->Part->Restore(part_settings)) { |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 923 | TWFunc::SetPerformanceMode(false); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 924 | return false; |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 925 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 926 | if (part_settings->Part->Has_SubPartition) { |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 927 | std::vector<TWPartition*>::iterator subpart; |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 928 | TWPartition *parentPart = part_settings->Part; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 929 | |
| 930 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 931 | part_settings->Part = *subpart; |
| 932 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) { |
| 933 | part_settings->Part = (*subpart); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 934 | if (!(*subpart)->Restore(part_settings)) { |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 935 | TWFunc::SetPerformanceMode(false); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 936 | return false; |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 937 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 938 | } |
| 939 | } |
| 940 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 941 | time(&Stop); |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 942 | TWFunc::SetPerformanceMode(false); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 943 | gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start))); |
| 944 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 945 | return true; |
| 946 | } |
| 947 | |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 948 | int TWPartitionManager::Run_Restore(const string& Restore_Name) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 949 | PartitionSettings part_settings; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 950 | int check_md5; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 951 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 952 | time_t rStart, rStop; |
| 953 | time(&rStart); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 954 | string Restore_List, restore_path; |
| 955 | size_t start_pos = 0, end_pos; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 956 | |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 957 | part_settings.Backup_Folder = Restore_Name; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 958 | part_settings.Part = NULL; |
| 959 | part_settings.partition_count = 0; |
| 960 | part_settings.total_restore_size = 0; |
| 961 | part_settings.adbbackup = false; |
| 962 | part_settings.PM_Method = PM_RESTORE; |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 963 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 964 | gui_msg("restore_started=[RESTORE STARTED]"); |
| 965 | gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name)); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 966 | |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 967 | if (!Mount_Current_Storage(true)) |
| 968 | return false; |
| 969 | |
| 970 | DataManager::GetValue(TW_SKIP_MD5_CHECK_VAR, check_md5); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 971 | if (check_md5 > 0) { |
| 972 | // Check MD5 files first before restoring to ensure that all of them match before starting a restore |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 973 | TWFunc::GUI_Operation_Text(TW_VERIFY_MD5_TEXT, gui_parse_text("{@verifying_md5}")); |
| 974 | gui_msg("verifying_md5=Verifying MD5"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 975 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 976 | gui_msg("skip_md5=Skipping MD5 check based on user setting."); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 977 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 978 | gui_msg("calc_restore=Calculating restore details..."); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 979 | DataManager::GetValue("tw_restore_selected", Restore_List); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 980 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 981 | if (!Restore_List.empty()) { |
| 982 | end_pos = Restore_List.find(";", start_pos); |
| 983 | while (end_pos != string::npos && start_pos < Restore_List.size()) { |
| 984 | restore_path = Restore_List.substr(start_pos, end_pos - start_pos); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 985 | part_settings.Part = Find_Partition_By_Path(restore_path); |
| 986 | if (part_settings.Part != NULL) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 987 | if (part_settings.Part->Mount_Read_Only) { |
| 988 | 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] | 989 | return false; |
| 990 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 991 | |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 992 | if (check_md5 > 0 && !part_settings.Part->Check_MD5(&part_settings)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 993 | return false; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 994 | part_settings.partition_count++; |
| 995 | part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings); |
| 996 | if (part_settings.Part->Has_SubPartition) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 997 | TWPartition *parentPart = part_settings.Part; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 998 | std::vector<TWPartition*>::iterator subpart; |
| 999 | |
| 1000 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
bigbiff bigbiff | 8fd4b09 | 2016-08-30 20:48:53 -0400 | [diff] [blame] | 1001 | part_settings.Part = *subpart; |
| 1002 | if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) { |
| 1003 | if (check_md5 > 0 && !(*subpart)->Check_MD5(&part_settings)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1004 | return false; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1005 | part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1006 | } |
| 1007 | } |
| 1008 | } |
| 1009 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1010 | 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] | 1011 | } |
| 1012 | start_pos = end_pos + 1; |
| 1013 | end_pos = Restore_List.find(";", start_pos); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1014 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1015 | } |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1016 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1017 | if (part_settings.partition_count == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1018 | gui_err("no_part_restore=No partitions selected for restore."); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1019 | return false; |
| 1020 | } |
| 1021 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1022 | gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count)); |
| 1023 | 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] | 1024 | DataManager::SetProgress(0.0); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1025 | ProgressTracking progress(part_settings.total_restore_size); |
| 1026 | part_settings.progress = &progress; |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 1027 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1028 | start_pos = 0; |
| 1029 | if (!Restore_List.empty()) { |
| 1030 | end_pos = Restore_List.find(";", start_pos); |
| 1031 | while (end_pos != string::npos && start_pos < Restore_List.size()) { |
| 1032 | restore_path = Restore_List.substr(start_pos, end_pos - start_pos); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1033 | |
| 1034 | part_settings.Part = Find_Partition_By_Path(restore_path); |
| 1035 | if (part_settings.Part != NULL) { |
| 1036 | part_settings.partition_count++; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1037 | if (!Restore_Partition(&part_settings)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1038 | return false; |
| 1039 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1040 | 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] | 1041 | } |
| 1042 | start_pos = end_pos + 1; |
| 1043 | end_pos = Restore_List.find(";", start_pos); |
| 1044 | } |
| 1045 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1046 | TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}")); |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 1047 | Update_System_Details(); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 1048 | UnMount_Main_Partitions(); |
Dees_Troy | 4a2a126 | 2012-09-18 09:33:47 -0400 | [diff] [blame] | 1049 | time(&rStop); |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 1050 | 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] | 1051 | DataManager::SetValue("tw_file_progress", ""); |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1052 | |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1053 | return true; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1054 | } |
| 1055 | |
| 1056 | void TWPartitionManager::Set_Restore_Files(string Restore_Name) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1057 | // Start with the default values |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1058 | string Restore_List; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1059 | bool get_date = true, check_encryption = true; |
| 1060 | |
| 1061 | DataManager::SetValue("tw_restore_encrypted", 0); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1062 | |
| 1063 | DIR* d; |
| 1064 | d = opendir(Restore_Name.c_str()); |
| 1065 | if (d == NULL) |
| 1066 | { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1067 | gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno))); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1068 | return; |
| 1069 | } |
| 1070 | |
| 1071 | struct dirent* de; |
| 1072 | while ((de = readdir(d)) != NULL) |
| 1073 | { |
| 1074 | // Strip off three components |
| 1075 | char str[256]; |
| 1076 | char* label; |
| 1077 | char* fstype = NULL; |
| 1078 | char* extn = NULL; |
| 1079 | char* ptr; |
| 1080 | |
| 1081 | strcpy(str, de->d_name); |
| 1082 | if (strlen(str) <= 2) |
| 1083 | continue; |
| 1084 | |
| 1085 | if (get_date) { |
| 1086 | char file_path[255]; |
| 1087 | struct stat st; |
| 1088 | |
| 1089 | strcpy(file_path, Restore_Name.c_str()); |
| 1090 | strcat(file_path, "/"); |
| 1091 | strcat(file_path, str); |
| 1092 | stat(file_path, &st); |
| 1093 | string backup_date = ctime((const time_t*)(&st.st_mtime)); |
| 1094 | DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date); |
| 1095 | get_date = false; |
| 1096 | } |
| 1097 | |
| 1098 | label = str; |
| 1099 | ptr = label; |
| 1100 | while (*ptr && *ptr != '.') ptr++; |
| 1101 | if (*ptr == '.') |
| 1102 | { |
| 1103 | *ptr = 0x00; |
| 1104 | ptr++; |
| 1105 | fstype = ptr; |
| 1106 | } |
| 1107 | while (*ptr && *ptr != '.') ptr++; |
| 1108 | if (*ptr == '.') |
| 1109 | { |
| 1110 | *ptr = 0x00; |
| 1111 | ptr++; |
| 1112 | extn = ptr; |
| 1113 | } |
| 1114 | |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1115 | if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1116 | int extnlength = strlen(extn); |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 1117 | if (extnlength != 3 && extnlength != 6) continue; |
| 1118 | if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue; |
| 1119 | //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue; |
| 1120 | |
| 1121 | if (check_encryption) { |
| 1122 | string filename = Restore_Name + "/"; |
| 1123 | filename += de->d_name; |
| 1124 | if (TWFunc::Get_File_Type(filename) == 2) { |
| 1125 | LOGINFO("'%s' is encrypted\n", filename.c_str()); |
| 1126 | DataManager::SetValue("tw_restore_encrypted", 1); |
| 1127 | } |
| 1128 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1129 | if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1130 | |
| 1131 | TWPartition* Part = Find_Partition_By_Path(label); |
| 1132 | if (Part == NULL) |
| 1133 | { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1134 | gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label)); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1135 | continue; |
| 1136 | } |
| 1137 | |
| 1138 | Part->Backup_FileName = de->d_name; |
| 1139 | if (strlen(extn) > 3) { |
| 1140 | Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3); |
| 1141 | } |
| 1142 | |
James Christopher Adduono | fddbdfa | 2016-02-29 15:08:11 -0500 | [diff] [blame] | 1143 | if (!Part->Is_SubPartition) |
| 1144 | Restore_List += Part->Backup_Path + ";"; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1145 | } |
| 1146 | closedir(d); |
| 1147 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1148 | // Set the final value |
| 1149 | DataManager::SetValue("tw_restore_list", Restore_List); |
| 1150 | DataManager::SetValue("tw_restore_selected", Restore_List); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1151 | return; |
| 1152 | } |
| 1153 | |
| 1154 | int TWPartitionManager::Wipe_By_Path(string Path) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1155 | std::vector<TWPartition*>::iterator iter; |
| 1156 | int ret = false; |
| 1157 | bool found = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1158 | string Local_Path = TWFunc::Get_Root_Path(Path); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1159 | |
| 1160 | // Iterate through all partitions |
| 1161 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 1162 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1163 | if (Path == "/and-sec") |
| 1164 | ret = (*iter)->Wipe_AndSec(); |
| 1165 | else |
| 1166 | ret = (*iter)->Wipe(); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1167 | found = true; |
| 1168 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1169 | (*iter)->Wipe(); |
| 1170 | } |
| 1171 | } |
| 1172 | if (found) { |
| 1173 | return ret; |
| 1174 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1175 | 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] | 1176 | return false; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1177 | } |
| 1178 | |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 1179 | int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) { |
| 1180 | std::vector<TWPartition*>::iterator iter; |
| 1181 | int ret = false; |
| 1182 | bool found = false; |
| 1183 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 1184 | |
| 1185 | // Iterate through all partitions |
| 1186 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1187 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 1188 | if (Path == "/and-sec") |
| 1189 | ret = (*iter)->Wipe_AndSec(); |
| 1190 | else |
| 1191 | ret = (*iter)->Wipe(New_File_System); |
| 1192 | found = true; |
| 1193 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1194 | (*iter)->Wipe(New_File_System); |
| 1195 | } |
| 1196 | } |
| 1197 | if (found) { |
| 1198 | return ret; |
| 1199 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1200 | 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] | 1201 | return false; |
| 1202 | } |
| 1203 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1204 | int TWPartitionManager::Factory_Reset(void) { |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1205 | std::vector<TWPartition*>::iterator iter; |
| 1206 | int ret = true; |
| 1207 | |
| 1208 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1209 | if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) { |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 1210 | #ifdef TW_OEM_BUILD |
| 1211 | if ((*iter)->Mount_Point == "/data") { |
| 1212 | if (!(*iter)->Wipe_Encryption()) |
| 1213 | ret = false; |
| 1214 | } else { |
| 1215 | #endif |
| 1216 | if (!(*iter)->Wipe()) |
| 1217 | ret = false; |
| 1218 | #ifdef TW_OEM_BUILD |
| 1219 | } |
| 1220 | #endif |
Dees_Troy | 094207a | 2012-09-26 12:00:39 -0400 | [diff] [blame] | 1221 | } else if ((*iter)->Has_Android_Secure) { |
| 1222 | if (!(*iter)->Wipe_AndSec()) |
| 1223 | ret = false; |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1224 | } |
| 1225 | } |
Ethan Yonker | 9fa76ba | 2016-06-30 14:05:43 -0500 | [diff] [blame] | 1226 | TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script"); |
Dees_Troy | 63c8df7 | 2012-09-10 14:02:05 -0400 | [diff] [blame] | 1227 | return ret; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1228 | } |
| 1229 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1230 | int TWPartitionManager::Wipe_Dalvik_Cache(void) { |
| 1231 | struct stat st; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1232 | vector <string> dir; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1233 | |
| 1234 | if (!Mount_By_Path("/data", true)) |
| 1235 | return false; |
| 1236 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1237 | dir.push_back("/data/dalvik-cache"); |
Ethan Yonker | ff2b788 | 2016-12-10 09:04:41 -0600 | [diff] [blame] | 1238 | if (Mount_By_Path("/cache", false)) { |
| 1239 | dir.push_back("/cache/dalvik-cache"); |
| 1240 | dir.push_back("/cache/dc"); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1241 | } |
Ethan Yonker | ff2b788 | 2016-12-10 09:04:41 -0600 | [diff] [blame] | 1242 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1243 | TWPartition* sdext = Find_Partition_By_Path("/sd-ext"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1244 | if (sdext && sdext->Is_Present && sdext->Mount(false)) |
| 1245 | { |
| 1246 | if (stat("/sd-ext/dalvik-cache", &st) == 0) |
| 1247 | { |
Ethan Yonker | ff2b788 | 2016-12-10 09:04:41 -0600 | [diff] [blame] | 1248 | dir.push_back("/sd-ext/dalvik-cache"); |
| 1249 | } |
| 1250 | } |
| 1251 | |
| 1252 | gui_msg("wiping_dalvik=Wiping Dalvik Cache Directories..."); |
| 1253 | for (unsigned i = 0; i < dir.size(); ++i) { |
| 1254 | if (stat(dir.at(i).c_str(), &st) == 0) { |
| 1255 | TWFunc::removeDir(dir.at(i), false); |
| 1256 | gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i))); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1257 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1258 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1259 | gui_msg("dalvik_done=-- Dalvik Cache Directories Wipe Complete!"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1260 | return true; |
| 1261 | } |
| 1262 | |
| 1263 | int TWPartitionManager::Wipe_Rotate_Data(void) { |
| 1264 | if (!Mount_By_Path("/data", true)) |
| 1265 | return false; |
| 1266 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1267 | unlink("/data/misc/akmd*"); |
| 1268 | unlink("/data/misc/rild*"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1269 | gui_print("Rotation data wiped.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1270 | return true; |
| 1271 | } |
| 1272 | |
| 1273 | int TWPartitionManager::Wipe_Battery_Stats(void) { |
| 1274 | struct stat st; |
| 1275 | |
| 1276 | if (!Mount_By_Path("/data", true)) |
| 1277 | return false; |
| 1278 | |
| 1279 | if (0 != stat("/data/system/batterystats.bin", &st)) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1280 | gui_print("No Battery Stats Found. No Need To Wipe.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1281 | } else { |
| 1282 | remove("/data/system/batterystats.bin"); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1283 | gui_print("Cleared battery stats.\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1284 | } |
| 1285 | return true; |
| 1286 | } |
| 1287 | |
Dees_Troy | 2ff5a8d | 2012-09-26 14:53:02 -0400 | [diff] [blame] | 1288 | int TWPartitionManager::Wipe_Android_Secure(void) { |
| 1289 | std::vector<TWPartition*>::iterator iter; |
| 1290 | int ret = false; |
| 1291 | bool found = false; |
| 1292 | |
| 1293 | // Iterate through all partitions |
| 1294 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1295 | if ((*iter)->Has_Android_Secure) { |
| 1296 | ret = (*iter)->Wipe_AndSec(); |
| 1297 | found = true; |
| 1298 | } |
| 1299 | } |
| 1300 | if (found) { |
| 1301 | return ret; |
| 1302 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1303 | gui_err("no_andsec=No android secure partitions found."); |
Dees_Troy | 2ff5a8d | 2012-09-26 14:53:02 -0400 | [diff] [blame] | 1304 | } |
| 1305 | return false; |
| 1306 | } |
| 1307 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1308 | int TWPartitionManager::Format_Data(void) { |
| 1309 | TWPartition* dat = Find_Partition_By_Path("/data"); |
| 1310 | |
| 1311 | if (dat != NULL) { |
| 1312 | if (!dat->UnMount(true)) |
| 1313 | return false; |
| 1314 | |
| 1315 | return dat->Wipe_Encryption(); |
| 1316 | } else { |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 1317 | 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] | 1318 | return false; |
| 1319 | } |
| 1320 | return false; |
| 1321 | } |
| 1322 | |
| 1323 | int TWPartitionManager::Wipe_Media_From_Data(void) { |
| 1324 | TWPartition* dat = Find_Partition_By_Path("/data"); |
| 1325 | |
| 1326 | if (dat != NULL) { |
| 1327 | if (!dat->Has_Data_Media) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1328 | LOGERR("This device does not have /data/media\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1329 | return false; |
| 1330 | } |
| 1331 | if (!dat->Mount(true)) |
| 1332 | return false; |
| 1333 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1334 | gui_msg("wiping_datamedia=Wiping internal storage -- /data/media..."); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 1335 | Remove_MTP_Storage(dat->MTP_Storage_ID); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1336 | TWFunc::removeDir("/data/media", false); |
xiaolu | 9416f4f | 2015-06-04 08:22:23 +0800 | [diff] [blame] | 1337 | dat->Recreate_Media_Folder(); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 1338 | Add_MTP_Storage(dat->MTP_Storage_ID); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1339 | return true; |
| 1340 | } else { |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 1341 | 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] | 1342 | return false; |
| 1343 | } |
| 1344 | return false; |
| 1345 | } |
| 1346 | |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 1347 | int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) { |
| 1348 | std::vector<TWPartition*>::iterator iter; |
| 1349 | int ret = false; |
| 1350 | bool found = false; |
| 1351 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 1352 | |
| 1353 | if (Local_Path == "/tmp" || Local_Path == "/") |
| 1354 | return true; |
| 1355 | |
| 1356 | // Iterate through all partitions |
| 1357 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1358 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 1359 | ret = (*iter)->Repair(); |
| 1360 | found = true; |
| 1361 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1362 | (*iter)->Repair(); |
| 1363 | } |
| 1364 | } |
| 1365 | if (found) { |
| 1366 | return ret; |
| 1367 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1368 | 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] | 1369 | } else { |
| 1370 | LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
| 1371 | } |
| 1372 | return false; |
| 1373 | } |
| 1374 | |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 1375 | int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) { |
| 1376 | std::vector<TWPartition*>::iterator iter; |
| 1377 | int ret = false; |
| 1378 | bool found = false; |
| 1379 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 1380 | |
| 1381 | if (Local_Path == "/tmp" || Local_Path == "/") |
| 1382 | return true; |
| 1383 | |
| 1384 | // Iterate through all partitions |
| 1385 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1386 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 1387 | ret = (*iter)->Resize(); |
| 1388 | found = true; |
| 1389 | } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) { |
| 1390 | (*iter)->Resize(); |
| 1391 | } |
| 1392 | } |
| 1393 | if (found) { |
| 1394 | return ret; |
| 1395 | } else if (Display_Error) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1396 | 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] | 1397 | } else { |
| 1398 | LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str()); |
| 1399 | } |
| 1400 | return false; |
| 1401 | } |
| 1402 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1403 | void TWPartitionManager::Update_System_Details(void) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1404 | std::vector<TWPartition*>::iterator iter; |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1405 | int data_size = 0; |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1406 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1407 | gui_msg("update_part_details=Updating partition details..."); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1408 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 1409 | (*iter)->Update_Size(true); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1410 | if ((*iter)->Can_Be_Mounted) { |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1411 | if ((*iter)->Mount_Point == "/system") { |
| 1412 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1413 | DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size); |
| 1414 | } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") { |
| 1415 | data_size += (int)((*iter)->Backup_Size / 1048576LLU); |
| 1416 | } else if ((*iter)->Mount_Point == "/cache") { |
| 1417 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1418 | DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size); |
| 1419 | } else if ((*iter)->Mount_Point == "/sd-ext") { |
| 1420 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1421 | DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size); |
| 1422 | if ((*iter)->Backup_Size == 0) { |
| 1423 | DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0); |
| 1424 | DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0); |
| 1425 | } else |
| 1426 | DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1); |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1427 | } else if ((*iter)->Has_Android_Secure) { |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1428 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1429 | DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1430 | if ((*iter)->Backup_Size == 0) { |
| 1431 | DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0); |
| 1432 | DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0); |
| 1433 | } else |
| 1434 | DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1); |
Dees_Troy | 2c50e18 | 2012-09-26 20:05:28 -0400 | [diff] [blame] | 1435 | } else if ((*iter)->Mount_Point == "/boot") { |
| 1436 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1437 | DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size); |
| 1438 | if ((*iter)->Backup_Size == 0) { |
| 1439 | DataManager::SetValue("tw_has_boot_partition", 0); |
| 1440 | DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0); |
| 1441 | } else |
| 1442 | DataManager::SetValue("tw_has_boot_partition", 1); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1443 | } |
Dees_Troy | aa9cc40 | 2012-10-13 12:14:05 -0400 | [diff] [blame] | 1444 | } else { |
| 1445 | // Handle unmountable partitions in case we reset defaults |
| 1446 | if ((*iter)->Mount_Point == "/boot") { |
| 1447 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1448 | DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size); |
| 1449 | if ((*iter)->Backup_Size == 0) { |
| 1450 | DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0); |
| 1451 | DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0); |
| 1452 | } else |
| 1453 | DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1); |
| 1454 | } else if ((*iter)->Mount_Point == "/recovery") { |
| 1455 | int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU); |
| 1456 | DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size); |
| 1457 | if ((*iter)->Backup_Size == 0) { |
| 1458 | DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0); |
| 1459 | DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0); |
| 1460 | } else |
| 1461 | DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1); |
Gary Peck | 82599a8 | 2012-11-21 16:23:12 -0800 | [diff] [blame] | 1462 | } else if ((*iter)->Mount_Point == "/data") { |
| 1463 | data_size += (int)((*iter)->Backup_Size / 1048576LLU); |
Dees_Troy | aa9cc40 | 2012-10-13 12:14:05 -0400 | [diff] [blame] | 1464 | } |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1465 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1466 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1467 | gui_msg("update_part_details_done=...done"); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1468 | DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size); |
| 1469 | string current_storage_path = DataManager::GetCurrentStoragePath(); |
| 1470 | TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1471 | if (FreeStorage != NULL) { |
| 1472 | // Attempt to mount storage |
| 1473 | if (!FreeStorage->Mount(false)) { |
Matt Mower | 2d50cad | 2015-12-03 22:26:55 -0600 | [diff] [blame] | 1474 | gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage")); |
| 1475 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1476 | } else { |
| 1477 | DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU)); |
| 1478 | } |
| 1479 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1480 | 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] | 1481 | } |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1482 | if (!Write_Fstab()) |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1483 | LOGERR("Error creating fstab\n"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1484 | return; |
| 1485 | } |
| 1486 | |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1487 | void TWPartitionManager::Post_Decrypt(const string& Block_Device) { |
| 1488 | TWPartition* dat = Find_Partition_By_Path("/data"); |
| 1489 | if (dat != NULL) { |
| 1490 | DataManager::SetValue(TW_IS_DECRYPTED, 1); |
| 1491 | dat->Is_Decrypted = true; |
| 1492 | if (!Block_Device.empty()) { |
| 1493 | dat->Decrypted_Block_Device = Block_Device; |
| 1494 | gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device)); |
| 1495 | } else { |
| 1496 | gui_msg("decrypt_success_nodev=Data successfully decrypted"); |
| 1497 | } |
| 1498 | dat->Setup_File_System(false); |
| 1499 | dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc |
| 1500 | |
| 1501 | // Sleep for a bit so that the device will be ready |
| 1502 | sleep(1); |
| 1503 | if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) { |
| 1504 | dat->Storage_Path = "/data/media/0"; |
| 1505 | dat->Symlink_Path = dat->Storage_Path; |
| 1506 | DataManager::SetValue("tw_storage_path", "/data/media/0"); |
| 1507 | DataManager::SetValue("tw_settings_path", "/data/media/0"); |
| 1508 | dat->UnMount(false); |
| 1509 | Output_Partition(dat); |
| 1510 | } |
| 1511 | Update_System_Details(); |
| 1512 | UnMount_Main_Partitions(); |
| 1513 | } else |
| 1514 | LOGERR("Unable to locate data partition.\n"); |
| 1515 | } |
| 1516 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1517 | int TWPartitionManager::Decrypt_Device(string Password) { |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1518 | #ifdef TW_INCLUDE_CRYPTO |
Ethan Yonker | ddb63e2 | 2017-01-19 14:01:57 -0600 | [diff] [blame] | 1519 | char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX]; |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 1520 | std::vector<TWPartition*>::iterator iter; |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1521 | |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 1522 | // Mount any partitions that need to be mounted for decrypt |
| 1523 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1524 | if ((*iter)->Mount_To_Decrypt) { |
| 1525 | (*iter)->Mount(true); |
| 1526 | } |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1527 | } |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1528 | |
Ethan Yonker | a1de149 | 2015-11-04 11:58:27 -0600 | [diff] [blame] | 1529 | property_get("ro.crypto.state", crypto_state, "error"); |
| 1530 | if (strcmp(crypto_state, "error") == 0) { |
| 1531 | property_set("ro.crypto.state", "encrypted"); |
| 1532 | // Sleep for a bit so that services can start if needed |
| 1533 | sleep(1); |
| 1534 | } |
| 1535 | |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1536 | if (DataManager::GetIntValue(TW_IS_FBE)) { |
| 1537 | #ifdef TW_INCLUDE_FBE |
| 1538 | if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE |
| 1539 | return -1; |
| 1540 | int retry_count = 10; |
| 1541 | while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count) |
| 1542 | usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE? |
| 1543 | int user_id = DataManager::GetIntValue("tw_decrypt_user_id"); |
| 1544 | LOGINFO("Decrypting FBE for user %i\n", user_id); |
| 1545 | if (Decrypt_User(user_id, Password)) { |
| 1546 | Post_Decrypt(""); |
| 1547 | return 0; |
| 1548 | } |
| 1549 | #else |
| 1550 | LOGERR("FBE support is not present\n"); |
| 1551 | #endif |
| 1552 | return -1; |
| 1553 | } |
| 1554 | |
Ethan Yonker | ddb63e2 | 2017-01-19 14:01:57 -0600 | [diff] [blame] | 1555 | int pwret = -1; |
| 1556 | pid_t pid = fork(); |
| 1557 | if (pid < 0) { |
| 1558 | LOGERR("fork failed\n"); |
| 1559 | return -1; |
| 1560 | } else if (pid == 0) { |
| 1561 | // Child process |
| 1562 | char cPassword[255]; |
| 1563 | strcpy(cPassword, Password.c_str()); |
| 1564 | int ret = cryptfs_check_passwd(cPassword); |
| 1565 | exit(ret); |
| 1566 | } else { |
| 1567 | // Parent |
| 1568 | int status; |
| 1569 | if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30)) |
| 1570 | pwret = -1; |
| 1571 | else |
| 1572 | pwret = WEXITSTATUS(status) ? -1 : 0; |
| 1573 | } |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1574 | |
nkk71 | 71c6c50 | 2017-01-05 23:55:05 +0200 | [diff] [blame^] | 1575 | #ifdef TW_CRYPTO_USE_SYSTEM_VOLD |
| 1576 | if (pwret != 0) { |
| 1577 | pwret = vold_decrypt(Password); |
| 1578 | } |
| 1579 | #endif // TW_CRYPTO_USE_SYSTEM_VOLD |
| 1580 | |
Ethan Yonker | 253368a | 2014-11-25 15:00:52 -0600 | [diff] [blame] | 1581 | // Unmount any partitions that were needed for decrypt |
| 1582 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1583 | if ((*iter)->Mount_To_Decrypt) { |
| 1584 | (*iter)->UnMount(false); |
| 1585 | } |
| 1586 | } |
| 1587 | |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1588 | if (pwret != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1589 | gui_err("fail_decrypt=Failed to decrypt data."); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1590 | return -1; |
| 1591 | } |
a3955269 | 6ff55ce | 2013-01-08 16:14:56 +0000 | [diff] [blame] | 1592 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1593 | property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error"); |
| 1594 | if (strcmp(crypto_blkdev, "error") == 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1595 | LOGERR("Error retrieving decrypted data block device.\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1596 | } else { |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1597 | Post_Decrypt(crypto_blkdev); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 1598 | } |
| 1599 | return 0; |
| 1600 | #else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1601 | 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] | 1602 | return -1; |
| 1603 | #endif |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1604 | return 1; |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 1605 | } |
| 1606 | |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1607 | int TWPartitionManager::Fix_Contexts(void) { |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1608 | std::vector<TWPartition*>::iterator iter; |
| 1609 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1610 | if ((*iter)->Has_Data_Media) { |
| 1611 | if ((*iter)->Mount(true)) { |
| 1612 | if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0) |
| 1613 | return -1; |
| 1614 | } |
| 1615 | } |
| 1616 | } |
Dees_Troy | 1a650e6 | 2012-10-19 20:54:32 -0400 | [diff] [blame] | 1617 | UnMount_Main_Partitions(); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1618 | gui_msg("done=Done."); |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1619 | return 0; |
bigbiff bigbiff | a0f8a59 | 2012-10-09 21:01:03 -0400 | [diff] [blame] | 1620 | } |
| 1621 | |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 1622 | TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) { |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1623 | std::vector<TWPartition*>::iterator iter = Partitions.begin(); |
| 1624 | |
| 1625 | if (!Path.empty()) { |
| 1626 | string Search_Path = TWFunc::Get_Root_Path(Path); |
| 1627 | for (; iter != Partitions.end(); iter++) { |
Matt Mower | 9a561dd | 2016-02-22 21:25:51 -0600 | [diff] [blame] | 1628 | if ((*iter)->Mount_Point == Search_Path) { |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1629 | iter++; |
| 1630 | break; |
| 1631 | } |
| 1632 | } |
| 1633 | } |
| 1634 | |
| 1635 | for (; iter != Partitions.end(); iter++) { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 1636 | if (Exclude_Data_Media && (*iter)->Has_Data_Media) { |
| 1637 | // do nothing, do not return this type of partition |
| 1638 | } else if ((*iter)->Is_Storage && (*iter)->Is_Present) { |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1639 | return (*iter); |
| 1640 | } |
| 1641 | } |
| 1642 | |
| 1643 | return NULL; |
| 1644 | } |
| 1645 | |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1646 | int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) { |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1647 | TWPartition* Part = Find_Partition_By_Path(Partition_Path); |
| 1648 | |
| 1649 | if (Part == NULL) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1650 | LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str()); |
| 1651 | 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] | 1652 | return false; |
| 1653 | } |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1654 | LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str()); |
| 1655 | if (!Part->UnMount(true) || !Part->Is_Present) |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1656 | return false; |
| 1657 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1658 | if (TWFunc::write_file(Lun_File, Part->Actual_Block_Device)) { |
| 1659 | 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] | 1660 | return false; |
| 1661 | } |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1662 | return true; |
| 1663 | } |
| 1664 | |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1665 | int TWPartitionManager::usb_storage_enable(void) { |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1666 | char lun_file[255]; |
Dees_Troy | d21618c | 2012-10-14 18:48:49 -0400 | [diff] [blame] | 1667 | bool has_multiple_lun = false; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1668 | |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1669 | string Lun_File_str = CUSTOM_LUN_FILE; |
| 1670 | size_t found = Lun_File_str.find("%"); |
| 1671 | if (found != string::npos) { |
| 1672 | sprintf(lun_file, CUSTOM_LUN_FILE, 1); |
| 1673 | if (TWFunc::Path_Exists(lun_file)) |
| 1674 | has_multiple_lun = true; |
| 1675 | } |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 1676 | 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] | 1677 | if (!has_multiple_lun) { |
| 1678 | LOGINFO("Device doesn't have multiple lun files, mount current storage\n"); |
| 1679 | sprintf(lun_file, CUSTOM_LUN_FILE, 0); |
| 1680 | if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 1681 | TWPartition* Mount = Find_Next_Storage("", true); |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1682 | if (Mount) { |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 1683 | if (!Open_Lun_File(Mount->Mount_Point, lun_file)) { |
| 1684 | goto error_handle; |
| 1685 | } |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1686 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1687 | gui_err("unable_locate_storage=Unable to locate storage device."); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 1688 | goto error_handle; |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1689 | } |
| 1690 | } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) { |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 1691 | goto error_handle; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1692 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1693 | } else { |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1694 | LOGINFO("Device has multiple lun files\n"); |
| 1695 | TWPartition* Mount1; |
| 1696 | TWPartition* Mount2; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1697 | sprintf(lun_file, CUSTOM_LUN_FILE, 0); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 1698 | Mount1 = Find_Next_Storage("", true); |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1699 | if (Mount1) { |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 1700 | if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) { |
| 1701 | goto error_handle; |
| 1702 | } |
Matt Mower | ee71706 | 2014-04-26 01:46:46 -0500 | [diff] [blame] | 1703 | sprintf(lun_file, CUSTOM_LUN_FILE, 1); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 1704 | Mount2 = Find_Next_Storage(Mount1->Mount_Point, true); |
Matt Mower | 1fdcdb7 | 2016-01-25 20:53:47 -0600 | [diff] [blame] | 1705 | if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) { |
Matt Mower | ee71706 | 2014-04-26 01:46:46 -0500 | [diff] [blame] | 1706 | Open_Lun_File(Mount2->Mount_Point, lun_file); |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1707 | } |
| 1708 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1709 | gui_err("unable_locate_storage=Unable to locate storage device."); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 1710 | goto error_handle; |
Ethan Yonker | 47360be | 2014-04-01 10:34:34 -0500 | [diff] [blame] | 1711 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1712 | } |
Matt Mower | b6ef478 | 2014-11-06 02:24:36 -0600 | [diff] [blame] | 1713 | property_set("sys.storage.ums_enabled", "1"); |
HandyMenny | 37d4299 | 2014-10-26 22:15:59 +0100 | [diff] [blame] | 1714 | property_set("sys.usb.config", "mass_storage,adb"); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1715 | return true; |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 1716 | error_handle: |
| 1717 | if (mtp_was_enabled) |
| 1718 | if (!Enable_MTP()) |
| 1719 | Disable_MTP(); |
| 1720 | return false; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1721 | } |
| 1722 | |
| 1723 | int TWPartitionManager::usb_storage_disable(void) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1724 | int index, ret; |
| 1725 | char lun_file[255], ch[2] = {0, 0}; |
| 1726 | string str = ch; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1727 | |
| 1728 | for (index=0; index<2; index++) { |
| 1729 | sprintf(lun_file, CUSTOM_LUN_FILE, index); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1730 | ret = TWFunc::write_file(lun_file, str); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1731 | if (ret < 0) { |
| 1732 | break; |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1733 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1734 | } |
Dees_Troy | e58d526 | 2012-09-21 12:27:57 -0400 | [diff] [blame] | 1735 | Mount_All_Storage(); |
| 1736 | Update_System_Details(); |
Dees_Troy | cfd73ef | 2012-10-12 16:52:00 -0400 | [diff] [blame] | 1737 | UnMount_Main_Partitions(); |
Matt Mower | d9cb906 | 2013-12-14 20:34:45 -0600 | [diff] [blame] | 1738 | property_set("sys.storage.ums_enabled", "0"); |
HandyMenny | 37d4299 | 2014-10-26 22:15:59 +0100 | [diff] [blame] | 1739 | property_set("sys.usb.config", "adb"); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 1740 | if (mtp_was_enabled) |
| 1741 | if (!Enable_MTP()) |
| 1742 | Disable_MTP(); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1743 | if (ret < 0 && index == 0) { |
| 1744 | LOGERR("Unable to write to ums lunfile '%s'.", lun_file); |
| 1745 | return false; |
| 1746 | } else { |
| 1747 | return true; |
| 1748 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 1749 | return true; |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 1750 | } |
| 1751 | |
| 1752 | void TWPartitionManager::Mount_All_Storage(void) { |
| 1753 | std::vector<TWPartition*>::iterator iter; |
| 1754 | |
| 1755 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1756 | if ((*iter)->Is_Storage) |
| 1757 | (*iter)->Mount(false); |
| 1758 | } |
Dees_Troy | 2c50e18 | 2012-09-26 20:05:28 -0400 | [diff] [blame] | 1759 | } |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1760 | |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 1761 | void TWPartitionManager::UnMount_Main_Partitions(void) { |
| 1762 | // Unmounts system and data if data is not data/media |
| 1763 | // Also unmounts boot if boot is mountable |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1764 | LOGINFO("Unmounting main partitions...\n"); |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 1765 | |
| 1766 | TWPartition* Boot_Partition = Find_Partition_By_Path("/boot"); |
| 1767 | |
| 1768 | UnMount_By_Path("/system", true); |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 1769 | if (!datamedia) |
| 1770 | UnMount_By_Path("/data", true); |
| 1771 | |
Dees_Troy | d0384ef | 2012-10-12 12:15:42 -0400 | [diff] [blame] | 1772 | if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted) |
| 1773 | Boot_Partition->UnMount(true); |
| 1774 | } |
| 1775 | |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1776 | int TWPartitionManager::Partition_SDCard(void) { |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 1777 | char temp[255]; |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1778 | 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] | 1779 | int ext, swap, total_size = 0, fat_size; |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1780 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1781 | gui_msg("start_partition_sd=Partitioning SD Card..."); |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1782 | |
| 1783 | // Locate and validate device to partition |
| 1784 | TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath()); |
| 1785 | |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 1786 | if (SDCard->Is_Adopted_Storage) |
| 1787 | SDCard->Revert_Adopted(); |
| 1788 | |
Ethan Yonker | 1eff6cd | 2014-09-15 13:30:42 -0500 | [diff] [blame] | 1789 | if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1790 | gui_err("partition_sd_locate=Unable to locate device to partition."); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1791 | return false; |
| 1792 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1793 | |
| 1794 | // Unmount everything |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1795 | if (!SDCard->UnMount(true)) |
| 1796 | return false; |
| 1797 | TWPartition* SDext = Find_Partition_By_Path("/sd-ext"); |
| 1798 | if (SDext != NULL) { |
| 1799 | if (!SDext->UnMount(true)) |
| 1800 | return false; |
| 1801 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1802 | char* swappath = getenv("SWAPPATH"); |
| 1803 | if (swappath != NULL) { |
| 1804 | LOGINFO("Unmounting swap at '%s'\n", swappath); |
| 1805 | umount(swappath); |
| 1806 | } |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1807 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1808 | // Determine block device |
| 1809 | if (SDCard->Alternate_Block_Device.empty()) { |
| 1810 | SDCard->Find_Actual_Block_Device(); |
| 1811 | Device = SDCard->Actual_Block_Device; |
| 1812 | // Just use the root block device |
| 1813 | Device.resize(strlen("/dev/block/mmcblkX")); |
| 1814 | } else { |
| 1815 | Device = SDCard->Alternate_Block_Device; |
| 1816 | } |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1817 | |
| 1818 | // Find the size of the block device: |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1819 | total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576)); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1820 | |
| 1821 | DataManager::GetValue("tw_sdext_size", ext); |
| 1822 | DataManager::GetValue("tw_swap_size", swap); |
| 1823 | DataManager::GetValue("tw_sdpart_file_system", ext_format); |
| 1824 | fat_size = total_size - ext - swap; |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1825 | 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); |
| 1826 | |
| 1827 | // Determine partition sizes |
| 1828 | if (swap == 0 && ext == 0) { |
| 1829 | fat_str = "-0"; |
| 1830 | } else { |
| 1831 | memset(temp, 0, sizeof(temp)); |
| 1832 | sprintf(temp, "%i", fat_size); |
| 1833 | fat_str = temp; |
| 1834 | fat_str += "MB"; |
| 1835 | } |
| 1836 | if (swap == 0) { |
| 1837 | ext_str = "-0"; |
| 1838 | } else { |
| 1839 | memset(temp, 0, sizeof(temp)); |
| 1840 | sprintf(temp, "%i", ext); |
| 1841 | ext_str = "+"; |
| 1842 | ext_str += temp; |
| 1843 | ext_str += "MB"; |
| 1844 | } |
| 1845 | |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1846 | if (ext + swap > total_size) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1847 | 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] | 1848 | return false; |
| 1849 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1850 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1851 | gui_msg("remove_part_table=Removing partition table..."); |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1852 | Command = "sgdisk --zap-all " + Device; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 1853 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1854 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1855 | gui_err("unable_rm_part=Unable to remove partition table."); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1856 | Update_System_Details(); |
| 1857 | return false; |
| 1858 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1859 | gui_msg(Msg("create_part=Creating {1} partition...")("FAT32")); |
Captain Throwback | 9643a80 | 2016-05-27 11:44:51 -0400 | [diff] [blame] | 1860 | 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] | 1861 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1862 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1863 | 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] | 1864 | return false; |
| 1865 | } |
| 1866 | if (ext > 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1867 | gui_msg(Msg("create_part=Creating {1} partition...")("EXT")); |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1868 | 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] | 1869 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1870 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1871 | 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] | 1872 | Update_System_Details(); |
| 1873 | return false; |
| 1874 | } |
| 1875 | } |
| 1876 | if (swap > 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1877 | gui_msg(Msg("create_part=Creating {1} partition...")("swap")); |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1878 | 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] | 1879 | LOGINFO("Command is: '%s'\n", Command.c_str()); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1880 | if (TWFunc::Exec_Cmd(Command) != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1881 | 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] | 1882 | Update_System_Details(); |
| 1883 | return false; |
| 1884 | } |
| 1885 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1886 | |
| 1887 | // Convert GPT to MBR |
| 1888 | Command = "sgdisk --gpttombr " + Device; |
| 1889 | if (TWFunc::Exec_Cmd(Command) != 0) |
| 1890 | LOGINFO("Failed to covert partition GPT to MBR\n"); |
| 1891 | |
| 1892 | // Tell the kernel to rescan the partition table |
| 1893 | int fd = open(Device.c_str(), O_RDONLY); |
| 1894 | ioctl(fd, BLKRRPART, 0); |
| 1895 | close(fd); |
| 1896 | |
| 1897 | string format_device = Device; |
| 1898 | if (Device.substr(0, 17) == "/dev/block/mmcblk") |
| 1899 | format_device += "p"; |
| 1900 | |
| 1901 | // Format new partitions to proper file system |
| 1902 | if (fat_size > 0) { |
| 1903 | Command = "mkfs.fat " + format_device + "1"; |
| 1904 | TWFunc::Exec_Cmd(Command); |
| 1905 | } |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1906 | if (ext > 0) { |
| 1907 | if (SDext == NULL) { |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1908 | Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2"; |
| 1909 | gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format)); |
| 1910 | LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str()); |
| 1911 | TWFunc::Exec_Cmd(Command); |
| 1912 | } else { |
| 1913 | SDext->Wipe(ext_format); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1914 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1915 | } |
| 1916 | if (swap > 0) { |
| 1917 | Command = "mkswap " + format_device; |
| 1918 | if (ext > 0) |
| 1919 | Command += "3"; |
| 1920 | else |
| 1921 | Command += "2"; |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 1922 | TWFunc::Exec_Cmd(Command); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1923 | } |
| 1924 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1925 | // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned |
| 1926 | if (SDCard->Mount(true)) { |
| 1927 | string TWRP_Folder = SDCard->Mount_Point + "/TWRP"; |
| 1928 | mkdir(TWRP_Folder.c_str(), 0777); |
| 1929 | DataManager::Flush(); |
| 1930 | } |
| 1931 | |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1932 | Update_System_Details(); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1933 | gui_msg("part_complete=Partitioning complete."); |
Dees_Troy | 9350b8d | 2012-09-27 12:38:38 -0400 | [diff] [blame] | 1934 | return true; |
bigbiff bigbiff | a0f8a59 | 2012-10-09 21:01:03 -0400 | [diff] [blame] | 1935 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1936 | |
| 1937 | void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) { |
| 1938 | std::vector<TWPartition*>::iterator iter; |
| 1939 | if (ListType == "mount") { |
| 1940 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1941 | if ((*iter)->Can_Be_Mounted && !(*iter)->Is_SubPartition) { |
| 1942 | struct PartitionList part; |
| 1943 | part.Display_Name = (*iter)->Display_Name; |
| 1944 | part.Mount_Point = (*iter)->Mount_Point; |
| 1945 | part.selected = (*iter)->Is_Mounted(); |
| 1946 | Partition_List->push_back(part); |
| 1947 | } |
| 1948 | } |
| 1949 | } else if (ListType == "storage") { |
| 1950 | char free_space[255]; |
| 1951 | string Current_Storage = DataManager::GetCurrentStoragePath(); |
| 1952 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 1953 | if ((*iter)->Is_Storage) { |
| 1954 | struct PartitionList part; |
| 1955 | sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024); |
| 1956 | part.Display_Name = (*iter)->Storage_Name + " ("; |
| 1957 | part.Display_Name += free_space; |
| 1958 | part.Display_Name += "MB)"; |
| 1959 | part.Mount_Point = (*iter)->Storage_Path; |
| 1960 | if ((*iter)->Storage_Path == Current_Storage) |
| 1961 | part.selected = 1; |
| 1962 | else |
| 1963 | part.selected = 0; |
| 1964 | Partition_List->push_back(part); |
| 1965 | } |
| 1966 | } |
| 1967 | } else if (ListType == "backup") { |
| 1968 | char backup_size[255]; |
Dees_Troy | 9e0b71c | 2013-04-08 13:35:37 +0000 | [diff] [blame] | 1969 | unsigned long long Backup_Size; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1970 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
Dees_Troy | 9e0b71c | 2013-04-08 13:35:37 +0000 | [diff] [blame] | 1971 | if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1972 | struct PartitionList part; |
Dees_Troy | 9e0b71c | 2013-04-08 13:35:37 +0000 | [diff] [blame] | 1973 | Backup_Size = (*iter)->Backup_Size; |
| 1974 | if ((*iter)->Has_SubPartition) { |
| 1975 | std::vector<TWPartition*>::iterator subpart; |
| 1976 | |
| 1977 | for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) { |
| 1978 | if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point) |
| 1979 | Backup_Size += (*subpart)->Backup_Size; |
| 1980 | } |
| 1981 | } |
| 1982 | sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1983 | part.Display_Name = (*iter)->Backup_Display_Name + " ("; |
| 1984 | part.Display_Name += backup_size; |
| 1985 | part.Display_Name += "MB)"; |
| 1986 | part.Mount_Point = (*iter)->Backup_Path; |
| 1987 | part.selected = 0; |
| 1988 | Partition_List->push_back(part); |
| 1989 | } |
| 1990 | } |
| 1991 | } else if (ListType == "restore") { |
| 1992 | string Restore_List, restore_path; |
| 1993 | TWPartition* restore_part = NULL; |
| 1994 | |
| 1995 | DataManager::GetValue("tw_restore_list", Restore_List); |
| 1996 | if (!Restore_List.empty()) { |
| 1997 | size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos); |
| 1998 | while (end_pos != string::npos && start_pos < Restore_List.size()) { |
| 1999 | restore_path = Restore_List.substr(start_pos, end_pos - start_pos); |
Dees_Troy | 59df926 | 2013-06-19 14:53:57 -0500 | [diff] [blame] | 2000 | if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) { |
Dees Troy | 4159aed | 2014-02-28 17:24:43 +0000 | [diff] [blame] | 2001 | 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] | 2002 | // Don't allow restore of recovery (causes problems on some devices) |
Dees_Troy | 59df926 | 2013-06-19 14:53:57 -0500 | [diff] [blame] | 2003 | // Don't add subpartitions to the list of items |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2004 | } else { |
| 2005 | struct PartitionList part; |
| 2006 | part.Display_Name = restore_part->Backup_Display_Name; |
| 2007 | part.Mount_Point = restore_part->Backup_Path; |
| 2008 | part.selected = 1; |
| 2009 | Partition_List->push_back(part); |
| 2010 | } |
| 2011 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2012 | 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] | 2013 | } |
| 2014 | start_pos = end_pos + 1; |
| 2015 | end_pos = Restore_List.find(";", start_pos); |
| 2016 | } |
| 2017 | } |
| 2018 | } else if (ListType == "wipe") { |
| 2019 | struct PartitionList dalvik; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2020 | dalvik.Display_Name = gui_parse_text("{@dalvik}"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2021 | dalvik.Mount_Point = "DALVIK"; |
| 2022 | dalvik.selected = 0; |
| 2023 | Partition_List->push_back(dalvik); |
| 2024 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2025 | if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) { |
| 2026 | struct PartitionList part; |
| 2027 | part.Display_Name = (*iter)->Display_Name; |
| 2028 | part.Mount_Point = (*iter)->Mount_Point; |
| 2029 | part.selected = 0; |
| 2030 | Partition_List->push_back(part); |
| 2031 | } |
| 2032 | if ((*iter)->Has_Android_Secure) { |
| 2033 | struct PartitionList part; |
| 2034 | part.Display_Name = (*iter)->Backup_Display_Name; |
| 2035 | part.Mount_Point = (*iter)->Backup_Path; |
| 2036 | part.selected = 0; |
| 2037 | Partition_List->push_back(part); |
| 2038 | } |
Dees_Troy | 74fb2e9 | 2013-04-15 14:35:47 +0000 | [diff] [blame] | 2039 | if ((*iter)->Has_Data_Media) { |
| 2040 | struct PartitionList datamedia; |
| 2041 | datamedia.Display_Name = (*iter)->Storage_Name; |
| 2042 | datamedia.Mount_Point = "INTERNAL"; |
| 2043 | datamedia.selected = 0; |
| 2044 | Partition_List->push_back(datamedia); |
| 2045 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2046 | } |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2047 | } else if (ListType == "flashimg") { |
| 2048 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2049 | if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) { |
| 2050 | struct PartitionList part; |
| 2051 | part.Display_Name = (*iter)->Backup_Display_Name; |
| 2052 | part.Mount_Point = (*iter)->Backup_Path; |
| 2053 | part.selected = 0; |
| 2054 | Partition_List->push_back(part); |
| 2055 | } |
| 2056 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2057 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 2058 | 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] | 2059 | } |
| 2060 | } |
| 2061 | |
| 2062 | int TWPartitionManager::Fstab_Processed(void) { |
| 2063 | return Partitions.size(); |
| 2064 | } |
Dees_Troy | d93bda5 | 2013-07-03 19:55:19 +0000 | [diff] [blame] | 2065 | |
| 2066 | void TWPartitionManager::Output_Storage_Fstab(void) { |
| 2067 | std::vector<TWPartition*>::iterator iter; |
| 2068 | char storage_partition[255]; |
| 2069 | string Temp; |
| 2070 | FILE *fp = fopen("/cache/recovery/storage.fstab", "w"); |
| 2071 | |
| 2072 | if (fp == NULL) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2073 | gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")("/cache/recovery/storage.fstab")); |
Dees_Troy | d93bda5 | 2013-07-03 19:55:19 +0000 | [diff] [blame] | 2074 | return; |
| 2075 | } |
| 2076 | |
| 2077 | // Iterate through all partitions |
| 2078 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2079 | if ((*iter)->Is_Storage) { |
| 2080 | Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n"; |
| 2081 | strcpy(storage_partition, Temp.c_str()); |
| 2082 | fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp); |
| 2083 | } |
| 2084 | } |
| 2085 | fclose(fp); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 2086 | } |
Vojtech Bocek | 93cb1ef | 2014-05-12 15:41:52 +0200 | [diff] [blame] | 2087 | |
| 2088 | TWPartition *TWPartitionManager::Get_Default_Storage_Partition() |
| 2089 | { |
| 2090 | TWPartition *res = NULL; |
| 2091 | for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) { |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 2092 | if (!(*iter)->Is_Storage) |
Vojtech Bocek | 93cb1ef | 2014-05-12 15:41:52 +0200 | [diff] [blame] | 2093 | continue; |
| 2094 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 2095 | if ((*iter)->Is_Settings_Storage) |
Vojtech Bocek | 93cb1ef | 2014-05-12 15:41:52 +0200 | [diff] [blame] | 2096 | return *iter; |
| 2097 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 2098 | if (!res) |
Vojtech Bocek | 93cb1ef | 2014-05-12 15:41:52 +0200 | [diff] [blame] | 2099 | res = *iter; |
| 2100 | } |
| 2101 | return res; |
| 2102 | } |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2103 | |
| 2104 | bool TWPartitionManager::Enable_MTP(void) { |
| 2105 | #ifdef TW_HAS_MTP |
Ethan Yonker | 8dfa777 | 2014-09-04 21:48:41 -0500 | [diff] [blame] | 2106 | if (mtppid) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2107 | gui_err("mtp_already_enabled=MTP already enabled"); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2108 | return true; |
| 2109 | } |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2110 | |
| 2111 | int mtppipe[2]; |
| 2112 | |
| 2113 | if (pipe(mtppipe) < 0) { |
| 2114 | LOGERR("Error creating MTP pipe\n"); |
| 2115 | return false; |
| 2116 | } |
| 2117 | |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2118 | char old_value[PROPERTY_VALUE_MAX]; |
Matt Mower | e07f010 | 2017-02-23 17:40:00 -0600 | [diff] [blame] | 2119 | property_get("sys.usb.config", old_value, ""); |
| 2120 | if (strcmp(old_value, "mtp,adb") != 0) { |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2121 | char vendor[PROPERTY_VALUE_MAX]; |
| 2122 | char product[PROPERTY_VALUE_MAX]; |
| 2123 | property_set("sys.usb.config", "none"); |
| 2124 | property_get("usb.vendor", vendor, "18D1"); |
| 2125 | property_get("usb.product.mtpadb", product, "4EE2"); |
| 2126 | string vendorstr = vendor; |
| 2127 | string productstr = product; |
| 2128 | TWFunc::write_file("/sys/class/android_usb/android0/idVendor", vendorstr); |
| 2129 | TWFunc::write_file("/sys/class/android_usb/android0/idProduct", productstr); |
| 2130 | property_set("sys.usb.config", "mtp,adb"); |
| 2131 | } |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 2132 | /* To enable MTP debug, use the twrp command line feature: |
Ethan Yonker | 6d154c4 | 2014-09-03 14:19:43 -0500 | [diff] [blame] | 2133 | * twrp set tw_mtp_debug 1 |
| 2134 | */ |
| 2135 | twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug")); |
Ethan Yonker | 1b03920 | 2015-01-30 10:08:48 -0600 | [diff] [blame] | 2136 | mtppid = mtp->forkserver(mtppipe); |
| 2137 | if (mtppid) { |
| 2138 | close(mtppipe[0]); // Host closes read side |
| 2139 | mtp_write_fd = mtppipe[1]; |
| 2140 | DataManager::SetValue("tw_mtp_enabled", 1); |
| 2141 | Add_All_MTP_Storage(); |
| 2142 | return true; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2143 | } else { |
| 2144 | close(mtppipe[0]); |
| 2145 | close(mtppipe[1]); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2146 | gui_err("mtp_fail=Failed to enable MTP"); |
Ethan Yonker | 1b03920 | 2015-01-30 10:08:48 -0600 | [diff] [blame] | 2147 | return false; |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2148 | } |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2149 | #else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2150 | gui_err("no_mtp=MTP support not included"); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2151 | #endif |
| 2152 | DataManager::SetValue("tw_mtp_enabled", 0); |
| 2153 | return false; |
| 2154 | } |
| 2155 | |
Ethan Yonker | 1b03920 | 2015-01-30 10:08:48 -0600 | [diff] [blame] | 2156 | void TWPartitionManager::Add_All_MTP_Storage(void) { |
| 2157 | #ifdef TW_HAS_MTP |
| 2158 | std::vector<TWPartition*>::iterator iter; |
| 2159 | |
| 2160 | if (!mtppid) |
| 2161 | return; // MTP is not enabled |
| 2162 | |
| 2163 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2164 | if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false)) |
| 2165 | Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE); |
| 2166 | } |
| 2167 | #else |
| 2168 | return; |
| 2169 | #endif |
| 2170 | } |
| 2171 | |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2172 | bool TWPartitionManager::Disable_MTP(void) { |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2173 | char old_value[PROPERTY_VALUE_MAX]; |
Matt Mower | e07f010 | 2017-02-23 17:40:00 -0600 | [diff] [blame] | 2174 | property_get("sys.usb.config", old_value, ""); |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2175 | if (strcmp(old_value, "adb") != 0) { |
| 2176 | char vendor[PROPERTY_VALUE_MAX]; |
| 2177 | char product[PROPERTY_VALUE_MAX]; |
| 2178 | property_set("sys.usb.config", "none"); |
| 2179 | property_get("usb.vendor", vendor, "18D1"); |
Matt Mower | e07f010 | 2017-02-23 17:40:00 -0600 | [diff] [blame] | 2180 | property_get("usb.product.adb", product, "D001"); |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2181 | string vendorstr = vendor; |
| 2182 | string productstr = product; |
| 2183 | TWFunc::write_file("/sys/class/android_usb/android0/idVendor", vendorstr); |
| 2184 | TWFunc::write_file("/sys/class/android_usb/android0/idProduct", productstr); |
| 2185 | usleep(2000); |
| 2186 | } |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2187 | #ifdef TW_HAS_MTP |
Ethan Yonker | 8dfa777 | 2014-09-04 21:48:41 -0500 | [diff] [blame] | 2188 | if (mtppid) { |
Ethan Yonker | 8613dc0 | 2014-09-11 09:28:20 -0500 | [diff] [blame] | 2189 | LOGINFO("Disabling MTP\n"); |
| 2190 | int status; |
| 2191 | kill(mtppid, SIGKILL); |
Ethan Yonker | 8dfa777 | 2014-09-04 21:48:41 -0500 | [diff] [blame] | 2192 | mtppid = 0; |
Ethan Yonker | 8613dc0 | 2014-09-11 09:28:20 -0500 | [diff] [blame] | 2193 | // We don't care about the exit value, but this prevents a zombie process |
| 2194 | waitpid(mtppid, &status, 0); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2195 | close(mtp_write_fd); |
| 2196 | mtp_write_fd = -1; |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2197 | } |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2198 | #endif |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2199 | property_set("sys.usb.config", "adb"); |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2200 | #ifdef TW_HAS_MTP |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2201 | DataManager::SetValue("tw_mtp_enabled", 0); |
| 2202 | return true; |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2203 | #endif |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 2204 | return false; |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 2205 | } |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2206 | |
| 2207 | TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) { |
| 2208 | std::vector<TWPartition*>::iterator iter; |
| 2209 | |
| 2210 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2211 | if ((*iter)->MTP_Storage_ID == Storage_ID) |
| 2212 | return (*iter); |
| 2213 | } |
| 2214 | return NULL; |
| 2215 | } |
| 2216 | |
| 2217 | bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) { |
| 2218 | #ifdef TW_HAS_MTP |
| 2219 | struct mtpmsg mtp_message; |
| 2220 | |
| 2221 | if (!mtppid) |
| 2222 | return false; // MTP is disabled |
| 2223 | |
| 2224 | if (mtp_write_fd < 0) { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2225 | LOGINFO("MTP: mtp_write_fd is not set\n"); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2226 | return false; |
| 2227 | } |
| 2228 | |
| 2229 | if (Part) { |
Ethan Yonker | 4bfabab | 2014-12-29 09:15:37 -0600 | [diff] [blame] | 2230 | if (Part->MTP_Storage_ID == 0) |
| 2231 | return false; |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2232 | if (message_type == MTP_MESSAGE_REMOVE_STORAGE) { |
| 2233 | mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove |
| 2234 | LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID); |
| 2235 | mtp_message.storage_id = Part->MTP_Storage_ID; |
| 2236 | if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2237 | 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] | 2238 | return false; |
| 2239 | } else { |
| 2240 | LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID); |
| 2241 | return true; |
| 2242 | } |
| 2243 | } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) { |
| 2244 | mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add |
| 2245 | mtp_message.storage_id = Part->MTP_Storage_ID; |
| 2246 | mtp_message.path = Part->Storage_Path.c_str(); |
| 2247 | mtp_message.display = Part->Storage_Name.c_str(); |
| 2248 | mtp_message.maxFileSize = Part->Get_Max_FileSize(); |
Ethan Yonker | 1b03920 | 2015-01-30 10:08:48 -0600 | [diff] [blame] | 2249 | 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] | 2250 | if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2251 | 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] | 2252 | return false; |
| 2253 | } else { |
| 2254 | LOGINFO("Message sent, add storage ID: %i\n", Part->MTP_Storage_ID); |
| 2255 | return true; |
| 2256 | } |
| 2257 | } else { |
| 2258 | LOGERR("Unknown MTP message type: %i\n", message_type); |
| 2259 | } |
| 2260 | } else { |
| 2261 | // This hopefully never happens as the error handling should |
| 2262 | // occur in the calling function. |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2263 | LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n"); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2264 | } |
| 2265 | return true; |
| 2266 | #else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2267 | gui_err("no_mtp=MTP support not included"); |
Ethan Yonker | 726a020 | 2014-12-16 20:01:38 -0600 | [diff] [blame] | 2268 | DataManager::SetValue("tw_mtp_enabled", 0); |
| 2269 | return false; |
| 2270 | #endif |
| 2271 | } |
| 2272 | |
| 2273 | bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) { |
| 2274 | #ifdef TW_HAS_MTP |
| 2275 | TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point); |
| 2276 | if (Part) { |
| 2277 | return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE); |
| 2278 | } else { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2279 | 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] | 2280 | } |
| 2281 | #endif |
| 2282 | return false; |
| 2283 | } |
| 2284 | |
| 2285 | bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) { |
| 2286 | #ifdef TW_HAS_MTP |
| 2287 | TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID); |
| 2288 | if (Part) { |
| 2289 | return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE); |
| 2290 | } else { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2291 | 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] | 2292 | } |
| 2293 | #endif |
| 2294 | return false; |
| 2295 | } |
| 2296 | |
| 2297 | bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) { |
| 2298 | #ifdef TW_HAS_MTP |
| 2299 | TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point); |
| 2300 | if (Part) { |
| 2301 | return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE); |
| 2302 | } else { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2303 | 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] | 2304 | } |
| 2305 | #endif |
| 2306 | return false; |
| 2307 | } |
| 2308 | |
| 2309 | bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) { |
| 2310 | #ifdef TW_HAS_MTP |
| 2311 | TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID); |
| 2312 | if (Part) { |
| 2313 | return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE); |
| 2314 | } else { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 2315 | 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] | 2316 | } |
| 2317 | #endif |
| 2318 | return false; |
| 2319 | } |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2320 | |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 2321 | bool TWPartitionManager::Flash_Image(string& path, string& filename) { |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 2322 | int partition_count = 0; |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2323 | TWPartition* flash_part = NULL; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 2324 | string Flash_List, flash_path, full_filename; |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2325 | size_t start_pos = 0, end_pos = 0; |
| 2326 | |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 2327 | full_filename = path + "/" + filename; |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2328 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 2329 | gui_msg("image_flash_start=[IMAGE FLASH STARTED]"); |
| 2330 | gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename)); |
| 2331 | |
| 2332 | if (!TWFunc::Path_Exists(full_filename)) { |
| 2333 | if (!Mount_By_Path(full_filename, true)) { |
Ethan Yonker | b78fbdf | 2016-01-15 16:46:35 -0600 | [diff] [blame] | 2334 | return false; |
| 2335 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 2336 | if (!TWFunc::Path_Exists(full_filename)) { |
| 2337 | 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] | 2338 | return false; |
| 2339 | } |
| 2340 | } |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2341 | |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 2342 | PartitionSettings part_settings; |
| 2343 | part_settings.Backup_Folder = path; |
| 2344 | unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename); |
| 2345 | ProgressTracking progress(total_bytes); |
| 2346 | part_settings.progress = &progress; |
| 2347 | part_settings.adbbackup = false; |
| 2348 | part_settings.PM_Method = PM_RESTORE; |
| 2349 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2350 | gui_msg("calc_restore=Calculating restore details..."); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2351 | DataManager::GetValue("tw_flash_partition", Flash_List); |
| 2352 | if (!Flash_List.empty()) { |
| 2353 | end_pos = Flash_List.find(";", start_pos); |
| 2354 | while (end_pos != string::npos && start_pos < Flash_List.size()) { |
| 2355 | flash_path = Flash_List.substr(start_pos, end_pos - start_pos); |
| 2356 | flash_part = Find_Partition_By_Path(flash_path); |
| 2357 | if (flash_part != NULL) { |
| 2358 | partition_count++; |
| 2359 | if (partition_count > 1) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2360 | gui_err("too_many_flash=Too many partitions selected for flashing."); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2361 | return false; |
| 2362 | } |
| 2363 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2364 | 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] | 2365 | return false; |
| 2366 | } |
| 2367 | start_pos = end_pos + 1; |
| 2368 | end_pos = Flash_List.find(";", start_pos); |
| 2369 | } |
| 2370 | } |
| 2371 | |
| 2372 | if (partition_count == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2373 | gui_err("no_part_flash=No partitions selected for flashing."); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2374 | return false; |
| 2375 | } |
| 2376 | |
| 2377 | DataManager::SetProgress(0.0); |
| 2378 | if (flash_part) { |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 2379 | flash_part->Backup_FileName = filename; |
| 2380 | if (!flash_part->Flash_Image(&part_settings)) |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2381 | return false; |
| 2382 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2383 | gui_err("invalid_flash=Invalid flash partition specified."); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2384 | return false; |
| 2385 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2386 | gui_highlight("flash_done=IMAGE FLASH COMPLETED]"); |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 2387 | return true; |
| 2388 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2389 | |
| 2390 | void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) { |
| 2391 | TWPartition* part = PartitionManager.Find_Partition_By_Path(path); |
| 2392 | if (part) { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2393 | if (part->Is_Adopted_Storage) { |
| 2394 | part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data"); |
| 2395 | part->Backup_Display_Name = part->Display_Name; |
| 2396 | part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage"); |
| 2397 | } else { |
| 2398 | part->Display_Name = gui_lookup(resource_name, default_value); |
| 2399 | part->Backup_Display_Name = part->Display_Name; |
| 2400 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2401 | } |
| 2402 | } |
| 2403 | |
| 2404 | 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) { |
| 2405 | TWPartition* part = PartitionManager.Find_Partition_By_Path(path); |
| 2406 | if (part) { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2407 | if (part->Is_Adopted_Storage) { |
Ethan Yonker | 01f4e03 | 2017-02-03 15:30:52 -0600 | [diff] [blame] | 2408 | 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] | 2409 | part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data"); |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2410 | part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage"); |
| 2411 | } else { |
| 2412 | part->Display_Name = gui_lookup(resource_name, default_value); |
| 2413 | part->Backup_Display_Name = part->Display_Name; |
| 2414 | if (part->Is_Storage) |
| 2415 | part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value); |
| 2416 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2417 | } |
| 2418 | } |
| 2419 | |
Ethan Yonker | 01f4e03 | 2017-02-03 15:30:52 -0600 | [diff] [blame] | 2420 | 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) { |
| 2421 | TWPartition* part = PartitionManager.Find_Partition_By_Path(path); |
| 2422 | if (part) { |
| 2423 | if (part->Is_Adopted_Storage) { |
| 2424 | part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default); |
| 2425 | part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data"); |
| 2426 | part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage"); |
| 2427 | } else { |
| 2428 | part->Display_Name = gui_lookup(resource_name, default_value); |
| 2429 | part->Backup_Display_Name = gui_lookup(backup_name, backup_default); |
| 2430 | if (part->Is_Storage) |
| 2431 | part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value); |
| 2432 | } |
| 2433 | } |
| 2434 | } |
| 2435 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2436 | void TWPartitionManager::Translate_Partition_Display_Names() { |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2437 | LOGINFO("Translating partition display names\n"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2438 | Translate_Partition("/system", "system", "System"); |
| 2439 | Translate_Partition("/system_image", "system_image", "System Image"); |
| 2440 | Translate_Partition("/vendor", "vendor", "Vendor"); |
| 2441 | Translate_Partition("/vendor_image", "vendor_image", "Vendor Image"); |
| 2442 | Translate_Partition("/cache", "cache", "Cache"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2443 | Translate_Partition("/boot", "boot", "Boot"); |
| 2444 | Translate_Partition("/recovery", "recovery", "Recovery"); |
| 2445 | if (!datamedia) { |
Ethan Yonker | 01f4e03 | 2017-02-03 15:30:52 -0600 | [diff] [blame] | 2446 | Translate_Partition("/data", "data", "Data", "internal", "Internal Storage"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 2447 | Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard"); |
| 2448 | Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard"); |
| 2449 | Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard"); |
| 2450 | Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard"); |
Ethan Yonker | 01f4e03 | 2017-02-03 15:30:52 -0600 | [diff] [blame] | 2451 | } else { |
| 2452 | 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] | 2453 | } |
Ethan Yonker | 01f4e03 | 2017-02-03 15:30:52 -0600 | [diff] [blame] | 2454 | Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)"); |
| 2455 | 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] | 2456 | Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG"); |
| 2457 | Translate_Partition("/sd-ext", "sdext", "SD-EXT"); |
| 2458 | |
| 2459 | // Android secure is a special case |
| 2460 | TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec"); |
| 2461 | if (part) |
| 2462 | part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure"); |
| 2463 | |
| 2464 | // This updates the text on all of the storage selection buttons in the GUI |
| 2465 | DataManager::SetBackupFolder(); |
| 2466 | } |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2467 | |
| 2468 | void TWPartitionManager::Decrypt_Adopted() { |
| 2469 | #ifdef TW_INCLUDE_CRYPTO |
| 2470 | if (!Mount_By_Path("/data", false)) { |
| 2471 | LOGERR("Cannot decrypt adopted storage because /data will not mount\n"); |
| 2472 | return; |
| 2473 | } |
| 2474 | LOGINFO("Decrypt adopted storage starting\n"); |
| 2475 | char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL); |
| 2476 | xml_document<> *doc = NULL; |
| 2477 | xml_node<>* volumes = NULL; |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 2478 | string Primary_Storage_UUID = ""; |
| 2479 | if (xmlFile != NULL) { |
| 2480 | LOGINFO("successfully loaded storage.xml\n"); |
| 2481 | doc = new xml_document<>(); |
| 2482 | doc->parse<0>(xmlFile); |
| 2483 | volumes = doc->first_node("volumes"); |
| 2484 | if (volumes) { |
| 2485 | xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid"); |
| 2486 | if (psuuid) { |
| 2487 | Primary_Storage_UUID = psuuid->value(); |
| 2488 | } |
| 2489 | } |
| 2490 | } |
| 2491 | std::vector<TWPartition*>::iterator adopt; |
| 2492 | for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) { |
| 2493 | if ((*adopt)->Removable && (*adopt)->Is_Present) { |
| 2494 | if ((*adopt)->Decrypt_Adopted() == 0) { |
| 2495 | if (volumes) { |
| 2496 | xml_node<>* volume = volumes->first_node("volume"); |
| 2497 | while (volume) { |
| 2498 | xml_attribute<>* guid = volume->first_attribute("partGuid"); |
| 2499 | if (guid) { |
| 2500 | string GUID = (*adopt)->Adopted_GUID.c_str(); |
| 2501 | GUID.insert(8, "-"); |
| 2502 | GUID.insert(13, "-"); |
| 2503 | GUID.insert(18, "-"); |
| 2504 | GUID.insert(23, "-"); |
| 2505 | |
| 2506 | if (strcasecmp(GUID.c_str(), guid->value()) == 0) { |
| 2507 | xml_attribute<>* attr = volume->first_attribute("nickname"); |
| 2508 | if (attr) { |
| 2509 | (*adopt)->Storage_Name = attr->value(); |
| 2510 | (*adopt)->Display_Name = (*adopt)->Storage_Name; |
| 2511 | (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name; |
| 2512 | LOGINFO("storage name from storage.xml is '%s'\n", attr->value()); |
| 2513 | } |
| 2514 | attr = volume->first_attribute("fsUuid"); |
| 2515 | if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) { |
| 2516 | TWPartition* Dat = Find_Partition_By_Path("/data"); |
| 2517 | if (Dat) { |
| 2518 | LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str()); |
| 2519 | LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str()); |
| 2520 | (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point; |
| 2521 | Dat->Symlink_Mount_Point = ""; |
| 2522 | // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location |
| 2523 | Dat->UnMount(false); |
| 2524 | Dat->Mount(false); |
| 2525 | (*adopt)->UnMount(false); |
| 2526 | (*adopt)->Mount(false); |
| 2527 | Output_Partition((*adopt)); |
| 2528 | } |
| 2529 | } |
| 2530 | break; |
| 2531 | } |
| 2532 | } |
| 2533 | volume = volume->next_sibling("volume"); |
| 2534 | } |
| 2535 | } |
| 2536 | } |
| 2537 | } |
| 2538 | } |
| 2539 | if (xmlFile) { |
| 2540 | doc->clear(); |
| 2541 | delete doc; |
| 2542 | free(xmlFile); |
| 2543 | } |
| 2544 | #else |
| 2545 | LOGINFO("Decrypt_Adopted: no crypto support\n"); |
| 2546 | return; |
| 2547 | #endif |
| 2548 | } |
Ethan Yonker | fcf3f24 | 2016-02-16 12:30:26 -0600 | [diff] [blame] | 2549 | |
| 2550 | void TWPartitionManager::Remove_Partition_By_Path(string Path) { |
| 2551 | std::vector<TWPartition*>::iterator iter; |
| 2552 | string Local_Path = TWFunc::Get_Root_Path(Path); |
| 2553 | |
| 2554 | for (iter = Partitions.begin(); iter != Partitions.end(); iter++) { |
| 2555 | if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) { |
| 2556 | LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str()); |
| 2557 | Partitions.erase(iter); |
| 2558 | return; |
| 2559 | } |
| 2560 | } |
| 2561 | } |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 2562 | |
| 2563 | void TWPartitionManager::Set_Active_Slot(const string& Slot) { |
| 2564 | if (Slot != "A" && Slot != "B") { |
| 2565 | LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str()); |
| 2566 | return; |
| 2567 | } |
| 2568 | if (Active_Slot_Display == Slot) |
| 2569 | return; |
| 2570 | LOGINFO("Setting active slot %s\n", Slot.c_str()); |
| 2571 | #ifdef AB_OTA_UPDATER |
| 2572 | if (!Active_Slot_Display.empty()) { |
| 2573 | const hw_module_t *hw_module; |
| 2574 | boot_control_module_t *module; |
| 2575 | int ret; |
| 2576 | ret = hw_get_module("bootctrl", &hw_module); |
| 2577 | if (ret != 0) { |
| 2578 | LOGERR("Error getting bootctrl module.\n"); |
| 2579 | } else { |
| 2580 | module = (boot_control_module_t*) hw_module; |
| 2581 | module->init(module); |
| 2582 | int slot_number = 0; |
| 2583 | if (Slot == "B") |
| 2584 | slot_number = 1; |
| 2585 | if (module->setActiveBootSlot(module, slot_number)) |
| 2586 | gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot)); |
| 2587 | } |
| 2588 | 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 |
| 2589 | } |
| 2590 | #else |
| 2591 | LOGERR("Boot slot feature not present\n"); |
| 2592 | #endif |
| 2593 | Active_Slot_Display = Slot; |
| 2594 | if (Fstab_Processed()) |
| 2595 | Update_System_Details(); |
| 2596 | } |
| 2597 | string TWPartitionManager::Get_Active_Slot_Suffix() { |
| 2598 | if (Active_Slot_Display == "A") |
| 2599 | return "_a"; |
| 2600 | return "_b"; |
| 2601 | } |
| 2602 | string TWPartitionManager::Get_Active_Slot_Display() { |
| 2603 | return Active_Slot_Display; |
| 2604 | } |