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