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