blob: 19742241a922dd799cff6d7cbce36e24789e31ed [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002 Copyright 2014 to 2017 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 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_Troy51a0e822012-09-05 15:24:24 -040018
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/stat.h>
23#include <sys/vfs.h>
24#include <unistd.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060025#include <map>
Dees_Troy5bf43922012-09-07 16:07:55 -040026#include <vector>
Dees_Troy63c8df72012-09-10 14:02:05 -040027#include <dirent.h>
28#include <time.h>
Dees_Troy8170a922012-09-18 15:40:25 -040029#include <errno.h>
30#include <fcntl.h>
bigbiffce8f83c2015-12-12 18:30:21 -050031#include <zlib.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050032#include <iostream>
33#include <iomanip>
Ethan Yonker8613dc02014-09-11 09:28:20 -050034#include <sys/wait.h>
Ethan Yonker483e9f42016-01-11 22:21:18 -060035#include <linux/fs.h>
36#include <sys/mount.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060037
38#include <sys/poll.h>
39#include <sys/socket.h>
40#include <linux/types.h>
41#include <linux/netlink.h>
42
Dees_Troy51a0e822012-09-05 15:24:24 -040043#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000044#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040045#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040046#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040047#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060048#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060049#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060050#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050051#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050052#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060053#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040054#include "twrpDigestDriver.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050055#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040056
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040057#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050058#ifdef TW_HAS_LEGACY_MTP
59#include "mtp/legacy/mtp_MtpServer.hpp"
60#include "mtp/legacy/twrpMtp.hpp"
61#include "mtp/legacy/MtpMessage.hpp"
62#else
63#include "mtp/ffs/mtp_MtpServer.hpp"
64#include "mtp/ffs/twrpMtp.hpp"
65#include "mtp/ffs/MtpMessage.hpp"
66#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040067#endif
68
Dees Troy6f6441d2014-01-23 02:07:03 +000069extern "C" {
70 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050071 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000072}
73
Dees_Troy5bf43922012-09-07 16:07:55 -040074#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker98661c12018-10-17 08:39:28 -050075 #include "crypto/fde/cryptfs.h"
Ethan Yonker66a19492015-12-10 10:19:45 -060076 #include "gui/rapidxml.hpp"
77 #include "gui/pages.hpp"
Ethan Yonkerbd7492d2016-12-07 13:55:01 -060078 #ifdef TW_INCLUDE_FBE
79 #include "crypto/ext4crypt/Decrypt.h"
Ethan Yonker93382822018-11-01 15:25:31 -050080 #ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
81 #include "crypto/ext4crypt/MetadataCrypt.h"
82 #endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -060083 #endif
nkk7171c6c502017-01-05 23:55:05 +020084 #ifdef TW_CRYPTO_USE_SYSTEM_VOLD
85 #include "crypto/vold_decrypt/vold_decrypt.h"
86 #endif
Dees_Troy5bf43922012-09-07 16:07:55 -040087#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040088
Ethan Yonker1b190162016-12-05 15:25:19 -060089#ifdef AB_OTA_UPDATER
90#include <hardware/hardware.h>
91#include <hardware/boot_control.h>
92#endif
93
Ethan Yonker6277c792014-09-15 14:54:30 -050094extern bool datamedia;
95
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050096TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040097 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -060098 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060099 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500100 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600101#ifdef AB_OTA_UPDATER
102 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500103 property_get("ro.boot.slot_suffix", slot_suffix, "error");
104 if (strcmp(slot_suffix, "error") == 0)
105 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600106 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500107 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600108 Set_Active_Slot("A");
109 else
110 Set_Active_Slot("B");
111#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500112}
113
Dees_Troy51a0e822012-09-05 15:24:24 -0400114int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400115 FILE *fstabFile;
116 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000117 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500118 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600119 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600120 std::map<string, Flags_Map> twrp_flags;
121
122 fstabFile = fopen("/etc/twrp.flags", "rt");
123 if (fstabFile != NULL) {
124 LOGINFO("reading /etc/twrp.flags\n");
125 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
126 if (fstab_line[0] != '/')
127 continue;
128
129 size_t line_size = strlen(fstab_line);
130 if (fstab_line[line_size - 1] != '\n')
131 fstab_line[line_size] = '\n';
132 Flags_Map line_flags;
133 line_flags.Primary_Block_Device = "";
134 line_flags.Alternate_Block_Device = "";
135 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
136 if (!line_flags.fstab_line) {
137 LOGERR("malloc error on line_flags.fstab_line\n");
138 return false;
139 }
140 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
141 bool found_separator = false;
142 char *fs_loc = NULL;
143 char *block_loc = NULL;
144 char *flags_loc = NULL;
145 size_t index, item_index = 0;
146 for (index = 0; index < line_size; index++) {
147 if (fstab_line[index] <= 32) {
148 fstab_line[index] = '\0';
149 found_separator = true;
150 } else if (found_separator) {
151 if (item_index == 0) {
152 fs_loc = fstab_line + index;
153 } else if (item_index == 1) {
154 block_loc = fstab_line + index;
155 } else if (item_index > 1) {
156 char *ptr = fstab_line + index;
157 if (*ptr == '/') {
158 line_flags.Alternate_Block_Device = ptr;
159 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
160 flags_loc = ptr;
161 // Once we find the flags=, we're done scanning the line
162 break;
163 }
164 }
165 found_separator = false;
166 item_index++;
167 }
168 }
169 if (block_loc)
170 line_flags.Primary_Block_Device = block_loc;
171 if (fs_loc)
172 line_flags.File_System = fs_loc;
173 if (flags_loc)
174 line_flags.Flags = flags_loc;
175 string Mount_Point = fstab_line;
176 twrp_flags[Mount_Point] = line_flags;
177 memset(fstab_line, 0, sizeof(fstab_line));
178 }
179 fclose(fstabFile);
180 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400181
182 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
183 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000184 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400185 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600186 } else
187 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400188
189 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
190 if (fstab_line[0] != '/')
191 continue;
192
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600193 if (strstr(fstab_line, "swap"))
194 continue; // Skip swap in recovery
195
196 size_t line_size = strlen(fstab_line);
197 if (fstab_line[line_size - 1] != '\n')
198 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400199
Matt Mower2b2dd152016-04-26 11:24:08 -0500200 TWPartition* partition = new TWPartition();
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600201 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500202 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500203 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400204 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500205
206 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400207 }
208 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500209
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600210 if (twrp_flags.size() > 0) {
211 LOGINFO("Processing remaining twrp.flags\n");
212 // Add any items from twrp.flags that did not exist in the recovery.fstab
213 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
214 if (Find_Partition_By_Path(mapit->first) == NULL) {
215 TWPartition* partition = new TWPartition();
216 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
217 Partitions.push_back(partition);
218 else
219 delete partition;
220 }
221 if (mapit->second.fstab_line)
222 free(mapit->second.fstab_line);
223 mapit->second.fstab_line = NULL;
224 }
225 }
226 LOGINFO("Done processing fstab files\n");
227
Matt Mower72c87ce2016-04-26 14:34:56 -0500228 std::vector<TWPartition*>::iterator iter;
229 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
230 (*iter)->Partition_Post_Processing(Display_Error);
231
232 if ((*iter)->Is_Storage) {
233 ++storageid;
234 (*iter)->MTP_Storage_ID = storageid;
235 }
236
237 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
238 settings_partition = (*iter);
239 else
240 (*iter)->Is_Settings_Storage = false;
241
242 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
243 andsec_partition = (*iter);
244 else
245 (*iter)->Has_Android_Secure = false;
246 }
247
Ethan Yonker6277c792014-09-15 14:54:30 -0500248 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) {
249 // Attempt to automatically identify /data/media emulated storage devices
250 TWPartition* Dat = Find_Partition_By_Path("/data");
251 if (Dat) {
252 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
253 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200254 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500255 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600256 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
257 ++storageid;
258 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500259 }
260 }
Dees Troy02a64532014-03-19 15:23:32 +0000261 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500262 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
263 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000264 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500265 break;
266 }
267 }
Dees Troy02a64532014-03-19 15:23:32 +0000268 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000269 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500270 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400271 if (!Write_Fstab()) {
272 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000273 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400274 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000275 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400276 }
Matt Mowered71fa32014-04-16 13:21:47 -0500277
Matt Mowerbf4efa32014-04-14 23:25:26 -0500278 if (andsec_partition) {
279 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500280 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500281 Setup_Android_Secure_Location(settings_partition);
282 }
Matt Mowered71fa32014-04-16 13:21:47 -0500283 if (settings_partition) {
284 Setup_Settings_Storage_Partition(settings_partition);
285 }
Ethan Yonker253368a2014-11-25 15:00:52 -0600286#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600287 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
288 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500289 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
290#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
291 if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) {
292 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", Decrypt_Data->Decrypted_Block_Device.c_str());
293 property_set("ro.crypto.state", "encrypted");
294 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
295 int retry_count = 10;
296 while (!Decrypt_Data->Mount(false) && --retry_count)
297 usleep(500);
298 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400299 if (!Decrypt_Data->Decrypt_FBE_DE()) {
300 LOGINFO("Trying wrapped key.\n");
301 property_set("fbe.data.wrappedkey", "true");
302 if (!Decrypt_Data->Decrypt_FBE_DE()) {
303 LOGERR("Unable to decrypt FBE device\n");
304 }
305 }
306
Ethan Yonker93382822018-11-01 15:25:31 -0500307 } else {
308 LOGINFO("Failed to mount data after metadata decrypt\n");
309 }
310 } else {
311 LOGINFO("Unable to decrypt metadata encryption\n");
312 }
313#else
314 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
315#endif
316 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600317 if (Decrypt_Data->Is_FBE) {
318 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
319 if (Decrypt_Device("!") == 0) {
320 gui_msg("decrypt_success=Successfully decrypted with default password.");
321 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
322 } else {
323 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
324 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600325 }
326 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600327 int password_type = cryptfs_get_password_type();
328 if (password_type == CRYPT_TYPE_DEFAULT) {
329 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
330 if (Decrypt_Device("default_password") == 0) {
331 gui_msg("decrypt_success=Successfully decrypted with default password.");
332 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
333 } else {
334 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
335 }
336 } else {
337 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
338 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600339 }
340 }
Ethan Yonker66a19492015-12-10 10:19:45 -0600341 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
342 Decrypt_Adopted();
343 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600344#endif
Dees_Troy51127312012-09-08 13:08:49 -0400345 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400346 UnMount_Main_Partitions();
Ethan Yonker1b190162016-12-05 15:25:19 -0600347#ifdef AB_OTA_UPDATER
348 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
349#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600350 setup_uevent();
Dees_Troy5bf43922012-09-07 16:07:55 -0400351 return true;
352}
353
354int TWPartitionManager::Write_Fstab(void) {
355 FILE *fp;
356 std::vector<TWPartition*>::iterator iter;
357 string Line;
358
359 fp = fopen("/etc/fstab", "w");
360 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000361 LOGINFO("Can not open /etc/fstab.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400362 return false;
363 }
Dees_Troy63c8df72012-09-10 14:02:05 -0400364 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -0400365 if ((*iter)->Can_Be_Mounted) {
dianlujitao7d304c72016-01-02 12:15:50 +0800366 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
Dees_Troy5bf43922012-09-07 16:07:55 -0400367 fputs(Line.c_str(), fp);
Dees_Troy91862e62013-04-04 23:48:21 +0000368 }
369 // Handle subpartition tracking
370 if ((*iter)->Is_SubPartition) {
371 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
372 if (ParentPartition)
373 ParentPartition->Has_SubPartition = true;
374 else
375 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400376 }
377 }
378 fclose(fp);
379 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400380}
381
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500382void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500383 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
384 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
385 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
386}
387
Matt Mowerbf4efa32014-04-14 23:25:26 -0500388void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
389 if (Part->Has_Android_Secure)
390 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500391 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500392 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500393}
394
Dees_Troy8170a922012-09-18 15:40:25 -0400395void TWPartitionManager::Output_Partition_Logging(void) {
396 std::vector<TWPartition*>::iterator iter;
397
398 printf("\n\nPartition Logs:\n");
399 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
400 Output_Partition((*iter));
401}
402
403void TWPartitionManager::Output_Partition(TWPartition* Part) {
404 unsigned long long mb = 1048576;
405
Gary Peck004d48b2012-11-21 16:28:18 -0800406 printf("%s | %s | Size: %iMB", Part->Mount_Point.c_str(), Part->Actual_Block_Device.c_str(), (int)(Part->Size / mb));
Dees_Troy8170a922012-09-18 15:40:25 -0400407 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800408 printf(" Used: %iMB Free: %iMB Backup Size: %iMB", (int)(Part->Used / mb), (int)(Part->Free / mb), (int)(Part->Backup_Size / mb));
Dees_Troy8170a922012-09-18 15:40:25 -0400409 }
Gary Peck004d48b2012-11-21 16:28:18 -0800410 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500411 if (Part->Can_Be_Mounted)
412 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800413 if (Part->Can_Be_Wiped)
414 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700415 if (Part->Use_Rm_Rf)
416 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500417 if (Part->Can_Be_Backed_Up)
418 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800419 if (Part->Wipe_During_Factory_Reset)
420 printf("Wipe_During_Factory_Reset ");
421 if (Part->Wipe_Available_in_GUI)
422 printf("Wipe_Available_in_GUI ");
423 if (Part->Is_SubPartition)
424 printf("Is_SubPartition ");
425 if (Part->Has_SubPartition)
426 printf("Has_SubPartition ");
427 if (Part->Removable)
428 printf("Removable ");
429 if (Part->Is_Present)
430 printf("IsPresent ");
431 if (Part->Can_Be_Encrypted)
432 printf("Can_Be_Encrypted ");
433 if (Part->Is_Encrypted)
434 printf("Is_Encrypted ");
435 if (Part->Is_Decrypted)
436 printf("Is_Decrypted ");
437 if (Part->Has_Data_Media)
438 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000439 if (Part->Can_Encrypt_Backup)
440 printf("Can_Encrypt_Backup ");
441 if (Part->Use_Userdata_Encryption)
442 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800443 if (Part->Has_Android_Secure)
444 printf("Has_Android_Secure ");
445 if (Part->Is_Storage)
446 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500447 if (Part->Is_Settings_Storage)
448 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000449 if (Part->Ignore_Blkid)
450 printf("Ignore_Blkid ");
Dees_Troy16c2b312013-01-15 16:51:18 +0000451 if (Part->Retain_Layout_Version)
452 printf("Retain_Layout_Version ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600453 if (Part->Mount_To_Decrypt)
454 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600455 if (Part->Can_Flash_Img)
456 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600457 if (Part->Is_Adopted_Storage)
458 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600459 if (Part->SlotSelect)
460 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600461 if (Part->Mount_Read_Only)
462 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800463 printf("\n");
464 if (!Part->SubPartition_Of.empty())
465 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
466 if (!Part->Symlink_Path.empty())
467 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
468 if (!Part->Symlink_Mount_Point.empty())
469 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
470 if (!Part->Primary_Block_Device.empty())
471 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
472 if (!Part->Alternate_Block_Device.empty())
473 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
474 if (!Part->Decrypted_Block_Device.empty())
475 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800476 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600477 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800478 if (Part->Length != 0)
479 printf(" Length: %i\n", Part->Length);
480 if (!Part->Display_Name.empty())
481 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500482 if (!Part->Storage_Name.empty())
483 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800484 if (!Part->Backup_Path.empty())
485 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
486 if (!Part->Backup_Name.empty())
487 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500488 if (!Part->Backup_Display_Name.empty())
489 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800490 if (!Part->Backup_FileName.empty())
491 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
492 if (!Part->Storage_Path.empty())
493 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
494 if (!Part->Current_File_System.empty())
495 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
496 if (!Part->Fstab_File_System.empty())
497 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
498 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500499 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400500 if (!Part->MTD_Name.empty())
501 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600502 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800503 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600504 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600505 if (Part->MTP_Storage_ID)
506 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500507 if (!Part->Key_Directory.empty())
508 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500509 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400510}
511
Dees_Troy51a0e822012-09-05 15:24:24 -0400512int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400513 std::vector<TWPartition*>::iterator iter;
514 int ret = false;
515 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400516 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400517
bigbiffd58ba182020-03-23 10:02:29 -0400518 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400519 return true;
520
Dees_Troy5bf43922012-09-07 16:07:55 -0400521 // Iterate through all partitions
522 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400523 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400524 ret = (*iter)->Mount(Display_Error);
525 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400526 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400527 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400528 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400529 }
530 if (found) {
531 return ret;
532 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500533 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Dees_Troy5bf43922012-09-07 16:07:55 -0400534 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000535 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400536 }
537 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400538}
539
Dees_Troy51a0e822012-09-05 15:24:24 -0400540int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400541 std::vector<TWPartition*>::iterator iter;
542 int ret = false;
543 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400544 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400545
546 // Iterate through all partitions
547 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400548 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400549 ret = (*iter)->UnMount(Display_Error);
550 found = true;
551 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
552 (*iter)->UnMount(Display_Error);
553 }
554 }
555 if (found) {
556 return ret;
557 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500558 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Dees_Troy51127312012-09-08 13:08:49 -0400559 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000560 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400561 }
562 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400563}
564
Dees_Troy51a0e822012-09-05 15:24:24 -0400565int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400566 TWPartition* Part = Find_Partition_By_Path(Path);
567
568 if (Part)
569 return Part->Is_Mounted();
570 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000571 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400572 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400573}
574
Dees_Troy5bf43922012-09-07 16:07:55 -0400575int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400576 string current_storage_path = DataManager::GetCurrentStoragePath();
577
578 if (Mount_By_Path(current_storage_path, Display_Error)) {
579 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
580 if (FreeStorage)
581 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
582 return true;
583 }
584 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400585}
586
Dees_Troy5bf43922012-09-07 16:07:55 -0400587int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
588 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
589}
590
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600591TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400592 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400593 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400594
595 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400596 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400597 return (*iter);
598 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400599 return NULL;
600}
601
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600602TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
603 std::vector<TWPartition*>::iterator iter;
604
605 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
606 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
607 return (*iter);
608 }
609 return NULL;
610}
611
Ethan Yonker53796e72019-01-11 22:49:52 -0600612int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400613 // Check the backup name to ensure that it is the correct size and contains only valid characters
614 // and that a backup with that name doesn't already exist
615 char backup_name[MAX_BACKUP_NAME_LEN];
616 char backup_loc[255], tw_image_dir[255];
617 int copy_size;
618 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600619 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400620
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400621 copy_size = Backup_Name.size();
622 // Check size
623 if (copy_size > MAX_BACKUP_NAME_LEN) {
624 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500625 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400626 return -2;
627 }
628
629 // Check each character
630 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500631 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400632 return 0; // A "0" (zero) means to use the current timestamp for the backup name
633 for (index=0; index<copy_size; index++) {
634 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500635 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_Troyc9ff7a32012-09-27 10:09:41 -0400636 // These are valid characters
637 // Numbers
638 // Upper case letters
639 // Lower case letters
640 // Space
641 // and -_.{}[]
642 } else {
643 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600644 gui_msg(Msg(msg::kError, "backup_name_invalid=Backup name '{1}' contains invalid character: '{1}'")(Backup_Name)((char)cur_char));
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400645 return -3;
646 }
647 }
648
Ethan Yonker53796e72019-01-11 22:49:52 -0600649 if (Must_Be_Unique) {
650 // Check to make sure that a backup with this name doesn't already exist
651 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
652 strcpy(backup_loc, Backup_Loc.c_str());
653 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
654 if (TWFunc::Path_Exists(tw_image_dir)) {
655 if (Display_Error)
656 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500657
Ethan Yonker53796e72019-01-11 22:49:52 -0600658 return -4;
659 }
660 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400661 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600662 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400663 return 0;
664}
665
bigbiffce8f83c2015-12-12 18:30:21 -0500666bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400667 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600668 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500669 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400670
bigbiffce8f83c2015-12-12 18:30:21 -0500671 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400672 return true;
673
Dees_Troy093b7642012-09-21 15:59:38 -0400674 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400675
Tom Hite5a926722014-09-15 01:31:03 +0000676 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400677 time(&start);
678
bigbiffce8f83c2015-12-12 18:30:21 -0500679 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500680 sync();
681 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400682 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500683 if (!part_settings->adbbackup && part_settings->generate_digest) {
684 if (!twrpDigestDriver::Make_Digest(Full_Filename))
685 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400686 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400687
bigbiffce8f83c2015-12-12 18:30:21 -0500688 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400689 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400690 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400691
692 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400693 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500694 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500695 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500696 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000697 }
Dees_Troy2727b992013-08-14 20:09:30 +0000698 sync();
699 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400700 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400701 if (!part_settings->adbbackup && part_settings->generate_digest) {
702 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500703 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500704 }
Tom Hite5a926722014-09-15 01:31:03 +0000705 }
Dees_Troy8170a922012-09-18 15:40:25 -0400706 }
707 }
708 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400709
Dees_Troy43d8b002012-09-17 16:00:01 -0400710 time(&stop);
that203bcc92015-05-09 17:27:33 +0200711 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000712 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400713
bigbiffce8f83c2015-12-12 18:30:21 -0500714 if (part_settings->Part->Backup_Method == BM_FILES) {
715 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400716 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500717 part_settings->img_time += backup_time;
718
Dees_Troy43d8b002012-09-17 16:00:01 -0400719 }
Tom Hite5a926722014-09-15 01:31:03 +0000720
Matt Mower02899552016-12-30 18:13:51 -0600721 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500722 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400723 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500724backup_error:
725 Clean_Backup_Folder(part_settings->Backup_Folder);
726 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
727 tw_set_default_metadata(backup_log.c_str());
728 TWFunc::SetPerformanceMode(false);
729 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500730}
731
bigbiffbf1d6722015-02-14 16:25:59 -0500732void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
733 DIR *d = opendir(Backup_Folder.c_str());
734 struct dirent *p;
735 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400736 vector<string> ext;
737
738 //extensions we should delete when cleaning
739 ext.push_back("win");
740 ext.push_back("md5");
741 ext.push_back("sha2");
742 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500743
Ethan Yonker74db1572015-10-28 12:44:49 -0500744 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500745
746 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500747 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500748 return;
749 }
750
Matt Mower2b18a532015-02-20 16:58:05 -0600751 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500752 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
753 continue;
754
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500755 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500756
757 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400758 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
759 if (path.substr(dot) == *i) {
760 r = unlink(path.c_str());
761 if (r != 0)
762 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500763 }
764 }
765 }
766 closedir(d);
767}
768
Ethan Yonker472f5062016-02-25 13:47:30 -0600769int TWPartitionManager::Check_Backup_Cancel() {
770 return stop_backup.get_value();
771}
772
bigbiff7abc5fe2015-01-17 16:53:12 -0500773int TWPartitionManager::Cancel_Backup() {
774 string Backup_Folder, Backup_Name, Full_Backup_Path;
775
776 stop_backup.set_value(1);
777
778 if (tar_fork_pid != 0) {
779 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
780 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500781 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500782 LOGINFO("Killing pid: %d\n", tar_fork_pid);
783 kill(tar_fork_pid, SIGUSR2);
784 while (kill(tar_fork_pid, 0) == 0) {
785 usleep(1000);
786 }
787 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
788 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
789 TWFunc::removeDir(Full_Backup_Path, false);
790 tar_fork_pid = 0;
791 }
792
793 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400794}
795
bigbiffce8f83c2015-12-12 18:30:21 -0500796int TWPartitionManager::Run_Backup(bool adbbackup) {
797 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400798 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500799 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600800 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400801 TWPartition* storage = NULL;
802 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600803 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500804 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500805 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400806 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500807 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400808
bigbiffce8f83c2015-12-12 18:30:21 -0500809 part_settings.img_bytes_remaining = 0;
810 part_settings.file_bytes_remaining = 0;
811 part_settings.img_time = 0;
812 part_settings.file_time = 0;
813 part_settings.img_bytes = 0;
814 part_settings.file_bytes = 0;
815 part_settings.PM_Method = PM_BACKUP;
816
bigbiffce8f83c2015-12-12 18:30:21 -0500817 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400818 time(&total_start);
819
820 Update_System_Details();
821
822 if (!Mount_Current_Storage(true))
823 return false;
824
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400825 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
826 if (skip_digest == 0)
827 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400828 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400829 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400830
bigbiffce8f83c2015-12-12 18:30:21 -0500831 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500832 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
833 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
834 Backup_Name = TWFunc::Get_Current_Date();
835 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000836 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500837 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400838 }
bigbiffce8f83c2015-12-12 18:30:21 -0500839
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500840 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500841 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500842
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500843 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400844
Dees_Troy2673cec2013-04-02 20:22:16 +0000845 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500846 DataManager::GetValue("tw_backup_list", Backup_List);
847 if (!Backup_List.empty()) {
848 end_pos = Backup_List.find(";", start_pos);
849 while (end_pos != string::npos && start_pos < Backup_List.size()) {
850 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500851 part_settings.Part = Find_Partition_By_Path(backup_path);
852 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500853 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500854 if (part_settings.Part->Backup_Method == BM_FILES)
855 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500856 else
bigbiffce8f83c2015-12-12 18:30:21 -0500857 part_settings.img_bytes += part_settings.Part->Backup_Size;
858 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500859 std::vector<TWPartition*>::iterator subpart;
860
861 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500862 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == part_settings.Part->Mount_Point) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500863 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500864 if ((*subpart)->Backup_Method == BM_FILES)
865 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500866 else
bigbiffce8f83c2015-12-12 18:30:21 -0500867 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500868 }
869 }
Dees_Troy8170a922012-09-18 15:40:25 -0400870 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500871 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500872 gui_msg(Msg(msg::kError, "unable_to_locate_partition=Unable to locate '{1}' partition for backup calculations.")(backup_path));
Dees_Troy8170a922012-09-18 15:40:25 -0400873 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500874 start_pos = end_pos + 1;
875 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400876 }
877 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400878
879 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500880 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400881 return false;
882 }
bigbiffce8f83c2015-12-12 18:30:21 -0500883 if (adbbackup) {
884 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
885 return false;
886 }
887 }
888 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600889 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500890 part_settings.progress = &progress;
891
Ethan Yonker74db1572015-10-28 12:44:49 -0500892 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
893 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400894 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
895 if (storage != NULL) {
896 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500897 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400898 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500899 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400900 return false;
901 }
bigbiffbf1d6722015-02-14 16:25:59 -0500902
Matt Mowerbfccfb82016-04-25 23:22:31 -0500903 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500904
905 if (adbbackup)
906 disable_free_space_check = true;
907
bigbiffbf1d6722015-02-14 16:25:59 -0500908 if (!disable_free_space_check) {
909 if (free_space - (32 * 1024 * 1024) < total_bytes) {
910 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500911 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500912 return false;
913 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400914 }
bigbiffce8f83c2015-12-12 18:30:21 -0500915 part_settings.img_bytes_remaining = part_settings.img_bytes;
916 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400917
Ethan Yonker74db1572015-10-28 12:44:49 -0500918 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -0400919
920 int is_decrypted = 0;
921 int is_encrypted = 0;
922
923 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
924 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
925 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
926 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
927 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
928 gui_err("fail_backup_folder=Failed to make backup folder.");
929 return false;
930 }
Dees_Troyd4b22b02013-01-18 17:17:58 +0000931 }
932
Dees_Troy2673cec2013-04-02 20:22:16 +0000933 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400934
Dees_Troya13d74f2013-03-24 08:54:55 -0500935 start_pos = 0;
936 end_pos = Backup_List.find(";", start_pos);
937 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500938 if (stop_backup.get_value() != 0)
939 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500940 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500941 part_settings.Part = Find_Partition_By_Path(backup_path);
942 if (part_settings.Part != NULL) {
943 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500944 return false;
945 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500946 gui_msg(Msg(msg::kError, "unable_to_locate_partition=Unable to locate '{1}' partition for backup calculations.")(backup_path));
Dees_Troya13d74f2013-03-24 08:54:55 -0500947 }
948 start_pos = end_pos + 1;
949 end_pos = Backup_List.find(";", start_pos);
950 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400951
952 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500953 if (part_settings.img_time == 0)
954 part_settings.img_time = 1;
955 if (part_settings.file_time == 0)
956 part_settings.file_time = 1;
957 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
958 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400959
bigbiffce8f83c2015-12-12 18:30:21 -0500960 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600961 gui_msg(Msg("avg_backup_fs=Average backup rate for file systems: {1} MB/sec")(file_bps / (1024 * 1024)));
bigbiffce8f83c2015-12-12 18:30:21 -0500962 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600963 gui_msg(Msg("avg_backup_img=Average backup rate for imaged drives: {1} MB/sec")(img_bps / (1024 * 1024)));
Dees_Troy43d8b002012-09-17 16:00:01 -0400964
965 time(&total_stop);
966 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -0500967
968 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600969 if (!adbbackup) {
970 TWExclude twe;
971 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
972 } else
bigbiffce8f83c2015-12-12 18:30:21 -0500973 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500974 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -0400975
bigbiffce8f83c2015-12-12 18:30:21 -0500976 int prev_img_bps = 0, use_compression = 0;
977 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -0600978 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400979 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500980 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400981
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500982 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400983 if (use_compression)
984 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500985 else
Dees_Troy093b7642012-09-21 15:59:38 -0400986 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
987 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500988 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400989
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500990 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400991 if (use_compression)
992 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
993 else
994 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
995
Ethan Yonker74db1572015-10-28 12:44:49 -0500996 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -0400997 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400998 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -0600999 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001000 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001001 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001002 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001003
1004 if (part_settings.adbbackup) {
1005 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1006 return false;
1007 }
1008 }
1009 part_settings.adbbackup = false;
1010 DataManager::SetValue("tw_enable_adb_backup", 0);
1011
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001012 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001013}
1014
bigbiffce8f83c2015-12-12 18:30:21 -05001015bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001016 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001017
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001018 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001019 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1020 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001021 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1022 }
1023
Tom Hite5a926722014-09-15 01:31:03 +00001024 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001025
Dees_Troy4a2a1262012-09-18 09:33:47 -04001026 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001027
bigbiffce8f83c2015-12-12 18:30:21 -05001028 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001029 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001030 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001031 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001032 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001033 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001034 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001035
1036 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001037 part_settings->Part = *subpart;
1038 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1039 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001040 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001041 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001042 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001043 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001044 }
Dees_Troy8170a922012-09-18 15:40:25 -04001045 }
1046 }
1047 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001048 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001049 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001050 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1051
Dees_Troy4a2a1262012-09-18 09:33:47 -04001052 return true;
1053}
1054
Ethan Yonker472f5062016-02-25 13:47:30 -06001055int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001056 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001057 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001058
Dees_Troy4a2a1262012-09-18 09:33:47 -04001059 time_t rStart, rStop;
1060 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001061 string Restore_List, restore_path;
1062 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001063
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001064 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001065 part_settings.Part = NULL;
1066 part_settings.partition_count = 0;
1067 part_settings.total_restore_size = 0;
1068 part_settings.adbbackup = false;
1069 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001070
Ethan Yonker74db1572015-10-28 12:44:49 -05001071 gui_msg("restore_started=[RESTORE STARTED]");
1072 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001073
Dees_Troy4a2a1262012-09-18 09:33:47 -04001074 if (!Mount_Current_Storage(true))
1075 return false;
1076
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001077 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1078 if (check_digest > 0) {
1079 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1080 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1081 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001082 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001083 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001084 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001085 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001086 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001087
Dees_Troya13d74f2013-03-24 08:54:55 -05001088 if (!Restore_List.empty()) {
1089 end_pos = Restore_List.find(";", start_pos);
1090 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1091 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001092 part_settings.Part = Find_Partition_By_Path(restore_path);
1093 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001094 if (part_settings.Part->Mount_Read_Only) {
1095 gui_msg(Msg(msg::kError, "restore_read_only=Cannot restore {1} -- mounted read only.")(part_settings.Part->Backup_Display_Name));
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001096 return false;
1097 }
bigbiffce8f83c2015-12-12 18:30:21 -05001098
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001099 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1100
1101 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001102 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001103 part_settings.partition_count++;
1104 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1105 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001106 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001107 std::vector<TWPartition*>::iterator subpart;
1108
1109 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001110 part_settings.Part = *subpart;
1111 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001112 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001113 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001114 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001115 }
1116 }
1117 }
1118 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001119 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001120 }
1121 start_pos = end_pos + 1;
1122 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001123 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001124 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001125
bigbiffce8f83c2015-12-12 18:30:21 -05001126 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001127 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001128 return false;
1129 }
1130
bigbiffce8f83c2015-12-12 18:30:21 -05001131 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1132 gui_msg(Msg("total_restore_size=Total restore size is {1}MB")(part_settings.total_restore_size / 1048576));
Dees_Troy2673cec2013-04-02 20:22:16 +00001133 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001134 ProgressTracking progress(part_settings.total_restore_size);
1135 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001136
Dees_Troya13d74f2013-03-24 08:54:55 -05001137 start_pos = 0;
1138 if (!Restore_List.empty()) {
1139 end_pos = Restore_List.find(";", start_pos);
1140 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1141 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001142
1143 part_settings.Part = Find_Partition_By_Path(restore_path);
1144 if (part_settings.Part != NULL) {
1145 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001146 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001147 return false;
1148 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001149 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001150 }
1151 start_pos = end_pos + 1;
1152 end_pos = Restore_List.find(";", start_pos);
1153 }
1154 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001155 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001156 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001157 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001158 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001159 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001160 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001161 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001162
Dees_Troy63c8df72012-09-10 14:02:05 -04001163 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001164}
1165
1166void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001167 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001168 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001169 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001170 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001171
1172 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001173 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1174 vector<string> adb_files;
1175 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1176 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1177 string adb_restore_file = adb_files.at(i);
1178 std::size_t pos = adb_restore_file.find_first_of(".");
1179 std::string path = "/" + adb_restore_file.substr(0, pos);
1180 Restore_List = path + ";";
1181 TWPartition* Part = Find_Partition_By_Path(path);
1182 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1183 adbbackup = true;
1184 }
1185 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001186 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001187 else {
1188 DIR* d;
1189 d = opendir(Restore_Name.c_str());
1190 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001191 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001192 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1193 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001194 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001195
1196 struct dirent* de;
1197 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001198 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001199 // Strip off three components
1200 char str[256];
1201 char* label;
1202 char* fstype = NULL;
1203 char* extn = NULL;
1204 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001205
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001206 strcpy(str, de->d_name);
1207 if (strlen(str) <= 2)
1208 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001209
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001210 if (get_date) {
1211 char file_path[255];
1212 struct stat st;
1213
1214 strcpy(file_path, Restore_Name.c_str());
1215 strcat(file_path, "/");
1216 strcat(file_path, str);
1217 stat(file_path, &st);
1218 string backup_date = ctime((const time_t*)(&st.st_mtime));
1219 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1220 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001221 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001222
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001223 label = str;
1224 ptr = label;
1225 while (*ptr && *ptr != '.') ptr++;
1226 if (*ptr == '.')
1227 {
1228 *ptr = 0x00;
1229 ptr++;
1230 fstype = ptr;
1231 }
1232 while (*ptr && *ptr != '.') ptr++;
1233 if (*ptr == '.')
1234 {
1235 *ptr = 0x00;
1236 ptr++;
1237 extn = ptr;
1238 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001239
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001240 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1241 int extnlength = strlen(extn);
1242 if (extnlength != 3 && extnlength != 6) continue;
1243 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1244 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001245
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001246 if (check_encryption) {
1247 string filename = Restore_Name + "/";
1248 filename += de->d_name;
1249 if (TWFunc::Get_File_Type(filename) == 2) {
1250 LOGINFO("'%s' is encrypted\n", filename.c_str());
1251 DataManager::SetValue("tw_restore_encrypted", 1);
1252 }
1253 }
1254 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1255
1256 TWPartition* Part = Find_Partition_By_Path(label);
1257 if (Part == NULL)
1258 {
1259 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1260 continue;
1261 }
1262
1263 Part->Backup_FileName = de->d_name;
1264 if (strlen(extn) > 3) {
1265 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1266 }
1267
1268 if (!Part->Is_SubPartition)
1269 Restore_List += Part->Backup_Path + ";";
1270 }
1271 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001272 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001273
1274 if (adbbackup) {
1275 Restore_List = "ADB_Backup;";
1276 adbbackup = false;
1277 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001278
Dees_Troya13d74f2013-03-24 08:54:55 -05001279 // Set the final value
1280 DataManager::SetValue("tw_restore_list", Restore_List);
1281 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001282 return;
1283}
1284
1285int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001286 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301287 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001288 int ret = false;
1289 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001290 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001291
1292 // Iterate through all partitions
1293 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001294 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301295 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1296 (*iter)->Find_Actual_Block_Device();
1297 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1298 {
1299 (*iter1)->Find_Actual_Block_Device();
1300 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1301 (*iter1)->UnMount(false);
1302 }
Dees_Troye58d5262012-09-21 12:27:57 -04001303 if (Path == "/and-sec")
1304 ret = (*iter)->Wipe_AndSec();
1305 else
1306 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001307 found = true;
1308 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1309 (*iter)->Wipe();
1310 }
1311 }
1312 if (found) {
1313 return ret;
1314 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001315 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Dees_Troy63c8df72012-09-10 14:02:05 -04001316 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001317}
1318
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001319int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1320 std::vector<TWPartition*>::iterator iter;
1321 int ret = false;
1322 bool found = false;
1323 string Local_Path = TWFunc::Get_Root_Path(Path);
1324
1325 // Iterate through all partitions
1326 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1327 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1328 if (Path == "/and-sec")
1329 ret = (*iter)->Wipe_AndSec();
1330 else
1331 ret = (*iter)->Wipe(New_File_System);
1332 found = true;
1333 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1334 (*iter)->Wipe(New_File_System);
1335 }
1336 }
1337 if (found) {
1338 return ret;
1339 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001340 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001341 return false;
1342}
1343
Dees_Troy51a0e822012-09-05 15:24:24 -04001344int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001345 std::vector<TWPartition*>::iterator iter;
1346 int ret = true;
1347
1348 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001349 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001350#ifdef TW_OEM_BUILD
1351 if ((*iter)->Mount_Point == "/data") {
1352 if (!(*iter)->Wipe_Encryption())
1353 ret = false;
1354 } else {
1355#endif
1356 if (!(*iter)->Wipe())
1357 ret = false;
1358#ifdef TW_OEM_BUILD
1359 }
1360#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001361 } else if ((*iter)->Has_Android_Secure) {
1362 if (!(*iter)->Wipe_AndSec())
1363 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001364 }
1365 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001366 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001367 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001368}
1369
Dees_Troy38bd7602012-09-14 13:33:53 -04001370int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1371 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001372 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001373
1374 if (!Mount_By_Path("/data", true))
1375 return false;
1376
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001377 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001378
1379 std::string cacheDir = TWFunc::get_cache_dir();
1380 if (cacheDir == NON_AB_CACHE_DIR) {
1381 if (!PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false)) {
1382 LOGINFO("Unable to mount %s for wiping cache.\n", NON_AB_CACHE_DIR);
1383 }
1384 dir.push_back(cacheDir + "dalvik-cache");
1385 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001386 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001387
Dees_Troy38bd7602012-09-14 13:33:53 -04001388 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001389 if (sdext && sdext->Is_Present && sdext->Mount(false))
1390 {
1391 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1392 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001393 dir.push_back("/sd-ext/dalvik-cache");
1394 }
1395 }
1396
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001397 if (cacheDir == NON_AB_CACHE_DIR) {
1398 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1399 } else {
1400 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1401 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001402 for (unsigned i = 0; i < dir.size(); ++i) {
1403 if (stat(dir.at(i).c_str(), &st) == 0) {
1404 TWFunc::removeDir(dir.at(i), false);
1405 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001406 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001407 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001408
1409 if (cacheDir == NON_AB_CACHE_DIR) {
1410 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1411 } else {
1412 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1413 }
1414
Dees_Troy38bd7602012-09-14 13:33:53 -04001415 return true;
1416}
1417
1418int TWPartitionManager::Wipe_Rotate_Data(void) {
1419 if (!Mount_By_Path("/data", true))
1420 return false;
1421
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001422 unlink("/data/misc/akmd*");
1423 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001424 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001425 return true;
1426}
1427
1428int TWPartitionManager::Wipe_Battery_Stats(void) {
1429 struct stat st;
1430
1431 if (!Mount_By_Path("/data", true))
1432 return false;
1433
1434 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001435 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001436 } else {
1437 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001438 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001439 }
1440 return true;
1441}
1442
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001443int TWPartitionManager::Wipe_Android_Secure(void) {
1444 std::vector<TWPartition*>::iterator iter;
1445 int ret = false;
1446 bool found = false;
1447
1448 // Iterate through all partitions
1449 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1450 if ((*iter)->Has_Android_Secure) {
1451 ret = (*iter)->Wipe_AndSec();
1452 found = true;
1453 }
1454 }
1455 if (found) {
1456 return ret;
1457 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001458 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001459 }
1460 return false;
1461}
1462
Dees_Troy38bd7602012-09-14 13:33:53 -04001463int TWPartitionManager::Format_Data(void) {
1464 TWPartition* dat = Find_Partition_By_Path("/data");
1465
1466 if (dat != NULL) {
1467 if (!dat->UnMount(true))
1468 return false;
1469
1470 return dat->Wipe_Encryption();
1471 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001472 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001473 return false;
1474 }
1475 return false;
1476}
1477
1478int TWPartitionManager::Wipe_Media_From_Data(void) {
1479 TWPartition* dat = Find_Partition_By_Path("/data");
1480
1481 if (dat != NULL) {
1482 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001483 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001484 return false;
1485 }
1486 if (!dat->Mount(true))
1487 return false;
1488
Ethan Yonker74db1572015-10-28 12:44:49 -05001489 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001490 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001491 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001492 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001493 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001494 return true;
1495 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001496 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001497 return false;
1498 }
1499 return false;
1500}
1501
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001502int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1503 std::vector<TWPartition*>::iterator iter;
1504 int ret = false;
1505 bool found = false;
1506 string Local_Path = TWFunc::Get_Root_Path(Path);
1507
1508 if (Local_Path == "/tmp" || Local_Path == "/")
1509 return true;
1510
1511 // Iterate through all partitions
1512 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1513 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1514 ret = (*iter)->Repair();
1515 found = true;
1516 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1517 (*iter)->Repair();
1518 }
1519 }
1520 if (found) {
1521 return ret;
1522 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001523 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001524 } else {
1525 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1526 }
1527 return false;
1528}
1529
Ethan Yonkera2719152015-05-28 09:44:41 -05001530int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1531 std::vector<TWPartition*>::iterator iter;
1532 int ret = false;
1533 bool found = false;
1534 string Local_Path = TWFunc::Get_Root_Path(Path);
1535
1536 if (Local_Path == "/tmp" || Local_Path == "/")
1537 return true;
1538
1539 // Iterate through all partitions
1540 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1541 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1542 ret = (*iter)->Resize();
1543 found = true;
1544 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1545 (*iter)->Resize();
1546 }
1547 }
1548 if (found) {
1549 return ret;
1550 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001551 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Local_Path));
Ethan Yonkera2719152015-05-28 09:44:41 -05001552 } else {
1553 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1554 }
1555 return false;
1556}
1557
Dees_Troy51a0e822012-09-05 15:24:24 -04001558void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001559 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001560 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001561
Ethan Yonker74db1572015-10-28 12:44:49 -05001562 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001563 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001564 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001565 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001566 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001567 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1568 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001569 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001570 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1571 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1572 } else if ((*iter)->Mount_Point == "/cache") {
1573 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1574 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1575 } else if ((*iter)->Mount_Point == "/sd-ext") {
1576 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1577 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1578 if ((*iter)->Backup_Size == 0) {
1579 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1580 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1581 } else
1582 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001583 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001584 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001585 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001586 if ((*iter)->Backup_Size == 0) {
1587 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1588 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1589 } else
1590 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001591 } else if ((*iter)->Mount_Point == "/boot") {
1592 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1593 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1594 if ((*iter)->Backup_Size == 0) {
1595 DataManager::SetValue("tw_has_boot_partition", 0);
1596 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1597 } else
1598 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001599 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001600 } else {
1601 // Handle unmountable partitions in case we reset defaults
1602 if ((*iter)->Mount_Point == "/boot") {
1603 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1604 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1605 if ((*iter)->Backup_Size == 0) {
1606 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1607 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1608 } else
1609 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1610 } else if ((*iter)->Mount_Point == "/recovery") {
1611 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1612 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1613 if ((*iter)->Backup_Size == 0) {
1614 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1615 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1616 } else
1617 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001618 } else if ((*iter)->Mount_Point == "/data") {
1619 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001620 }
Dees_Troy51127312012-09-08 13:08:49 -04001621 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001622 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001623 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001624 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1625 string current_storage_path = DataManager::GetCurrentStoragePath();
1626 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001627 if (FreeStorage != NULL) {
1628 // Attempt to mount storage
1629 if (!FreeStorage->Mount(false)) {
Matt Mower2d50cad2015-12-03 22:26:55 -06001630 gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage"));
1631 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
Dees_Troy8170a922012-09-18 15:40:25 -04001632 } else {
1633 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1634 }
1635 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001636 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001637 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001638 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001639 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001640 return;
1641}
1642
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001643void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1644 TWPartition* dat = Find_Partition_By_Path("/data");
1645 if (dat != NULL) {
1646 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1647 dat->Is_Decrypted = true;
1648 if (!Block_Device.empty()) {
1649 dat->Decrypted_Block_Device = Block_Device;
1650 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1651 } else {
1652 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1653 }
1654 dat->Setup_File_System(false);
1655 dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc
1656
1657 // Sleep for a bit so that the device will be ready
1658 sleep(1);
1659 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1660 dat->Storage_Path = "/data/media/0";
1661 dat->Symlink_Path = dat->Storage_Path;
1662 DataManager::SetValue("tw_storage_path", "/data/media/0");
1663 DataManager::SetValue("tw_settings_path", "/data/media/0");
1664 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001665 }
1666 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001667 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001668 UnMount_Main_Partitions();
1669 } else
1670 LOGERR("Unable to locate data partition.\n");
1671}
1672
Dees_Troy51a0e822012-09-05 15:24:24 -04001673int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001674#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001675 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001676 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001677
Ethan Yonker253368a2014-11-25 15:00:52 -06001678 // Mount any partitions that need to be mounted for decrypt
1679 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1680 if ((*iter)->Mount_To_Decrypt) {
1681 (*iter)->Mount(true);
1682 }
a39552696ff55ce2013-01-08 16:14:56 +00001683 }
oshmouna82a7542018-04-10 17:45:55 +02001684 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001685
Ethan Yonkera1de1492015-11-04 11:58:27 -06001686 property_get("ro.crypto.state", crypto_state, "error");
1687 if (strcmp(crypto_state, "error") == 0) {
1688 property_set("ro.crypto.state", "encrypted");
1689 // Sleep for a bit so that services can start if needed
1690 sleep(1);
1691 }
1692
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001693 if (DataManager::GetIntValue(TW_IS_FBE)) {
1694#ifdef TW_INCLUDE_FBE
1695 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1696 return -1;
1697 int retry_count = 10;
1698 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
1699 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1700 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1701 LOGINFO("Decrypting FBE for user %i\n", user_id);
1702 if (Decrypt_User(user_id, Password)) {
1703 Post_Decrypt("");
1704 return 0;
1705 }
1706#else
1707 LOGERR("FBE support is not present\n");
1708#endif
1709 return -1;
1710 }
1711
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001712 int pwret = -1;
1713 pid_t pid = fork();
1714 if (pid < 0) {
1715 LOGERR("fork failed\n");
1716 return -1;
1717 } else if (pid == 0) {
1718 // Child process
1719 char cPassword[255];
1720 strcpy(cPassword, Password.c_str());
1721 int ret = cryptfs_check_passwd(cPassword);
1722 exit(ret);
1723 } else {
1724 // Parent
1725 int status;
1726 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1727 pwret = -1;
1728 else
1729 pwret = WEXITSTATUS(status) ? -1 : 0;
1730 }
a39552696ff55ce2013-01-08 16:14:56 +00001731
nkk7171c6c502017-01-05 23:55:05 +02001732#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1733 if (pwret != 0) {
1734 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001735 switch (pwret) {
1736 case VD_SUCCESS:
1737 break;
1738 case VD_ERR_MISSING_VDC:
1739 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1740 break;
1741 case VD_ERR_MISSING_VOLD:
1742 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1743 break;
1744 }
nkk7171c6c502017-01-05 23:55:05 +02001745 }
1746#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1747
Ethan Yonker253368a2014-11-25 15:00:52 -06001748 // Unmount any partitions that were needed for decrypt
1749 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1750 if ((*iter)->Mount_To_Decrypt) {
1751 (*iter)->UnMount(false);
1752 }
1753 }
oshmouna82a7542018-04-10 17:45:55 +02001754 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001755
a39552696ff55ce2013-01-08 16:14:56 +00001756 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001757 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001758 return -1;
1759 }
a39552696ff55ce2013-01-08 16:14:56 +00001760
Dees_Troy5bf43922012-09-07 16:07:55 -04001761 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1762 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001763 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001764 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001765 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001766 }
1767 return 0;
1768#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001769 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001770 return -1;
1771#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001772 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001773}
1774
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001775int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001776 std::vector<TWPartition*>::iterator iter;
1777 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1778 if ((*iter)->Has_Data_Media) {
1779 if ((*iter)->Mount(true)) {
1780 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1781 return -1;
1782 }
1783 }
1784 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001785 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001786 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001787 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001788}
1789
Ethan Yonker66a19492015-12-10 10:19:45 -06001790TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001791 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1792
1793 if (!Path.empty()) {
1794 string Search_Path = TWFunc::Get_Root_Path(Path);
1795 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001796 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001797 iter++;
1798 break;
1799 }
1800 }
1801 }
1802
1803 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001804 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1805 // do nothing, do not return this type of partition
1806 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001807 return (*iter);
1808 }
1809 }
1810
1811 return NULL;
1812}
1813
Dees_Troyd21618c2012-10-14 18:48:49 -04001814int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001815 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1816
1817 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001818 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1819 gui_msg(Msg(msg::kError, "unable_find_part_path=Unable to find partition for path '{1}'")(Partition_Path));
Dees_Troyd21618c2012-10-14 18:48:49 -04001820 return false;
1821 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001822 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1823 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001824 return false;
1825
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001826 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001827 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001828 return false;
1829 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001830 return true;
1831}
1832
Dees_Troy8170a922012-09-18 15:40:25 -04001833int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001834 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001835 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001836
Ethan Yonker47360be2014-04-01 10:34:34 -05001837 string Lun_File_str = CUSTOM_LUN_FILE;
1838 size_t found = Lun_File_str.find("%");
1839 if (found != string::npos) {
1840 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1841 if (TWFunc::Path_Exists(lun_file))
1842 has_multiple_lun = true;
1843 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001844 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001845 if (!has_multiple_lun) {
1846 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1847 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1848 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001849 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001850 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001851 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1852 goto error_handle;
1853 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001854 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001855 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001856 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001857 }
1858 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001859 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001860 }
Dees_Troy8170a922012-09-18 15:40:25 -04001861 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001862 LOGINFO("Device has multiple lun files\n");
1863 TWPartition* Mount1;
1864 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001865 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001866 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001867 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001868 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1869 goto error_handle;
1870 }
Matt Moweree717062014-04-26 01:46:46 -05001871 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001872 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001873 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001874 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001875 }
1876 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001877 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001878 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001879 }
Dees_Troy8170a922012-09-18 15:40:25 -04001880 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001881 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001882 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001883 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001884error_handle:
1885 if (mtp_was_enabled)
1886 if (!Enable_MTP())
1887 Disable_MTP();
1888 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001889}
1890
1891int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001892 int index, ret;
1893 char lun_file[255], ch[2] = {0, 0};
1894 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001895
1896 for (index=0; index<2; index++) {
1897 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001898 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001899 if (ret < 0) {
1900 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001901 }
Dees_Troy8170a922012-09-18 15:40:25 -04001902 }
Dees_Troye58d5262012-09-21 12:27:57 -04001903 Mount_All_Storage();
1904 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001905 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001906 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001907 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001908 if (mtp_was_enabled)
1909 if (!Enable_MTP())
1910 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001911 if (ret < 0 && index == 0) {
1912 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1913 return false;
1914 } else {
1915 return true;
1916 }
Dees_Troy8170a922012-09-18 15:40:25 -04001917 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04001918}
1919
1920void TWPartitionManager::Mount_All_Storage(void) {
1921 std::vector<TWPartition*>::iterator iter;
1922
1923 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1924 if ((*iter)->Is_Storage)
1925 (*iter)->Mount(false);
1926 }
Dees_Troy2c50e182012-09-26 20:05:28 -04001927}
Dees_Troy9350b8d2012-09-27 12:38:38 -04001928
Dees_Troyd0384ef2012-10-12 12:15:42 -04001929void TWPartitionManager::UnMount_Main_Partitions(void) {
1930 // Unmounts system and data if data is not data/media
1931 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00001932 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04001933
1934 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
1935
Captain Throwback9d6feb52018-07-27 10:05:24 -04001936 UnMount_By_Path(Get_Android_Root_Path(), true);
Ethan Yonker6277c792014-09-15 14:54:30 -05001937 if (!datamedia)
1938 UnMount_By_Path("/data", true);
1939
Dees_Troyd0384ef2012-10-12 12:15:42 -04001940 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
1941 Boot_Partition->UnMount(true);
1942}
1943
Dees_Troy9350b8d2012-09-27 12:38:38 -04001944int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06001945 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06001946 string Storage_Path, Command, Device, fat_str, ext_str, start_loc, end_loc, ext_format, sd_path, tmpdevice;
Dees_Troy9350b8d2012-09-27 12:38:38 -04001947 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04001948
Ethan Yonker74db1572015-10-28 12:44:49 -05001949 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001950
1951 // Locate and validate device to partition
1952 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1953
Ethan Yonker66a19492015-12-10 10:19:45 -06001954 if (SDCard->Is_Adopted_Storage)
1955 SDCard->Revert_Adopted();
1956
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05001957 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001958 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001959 return false;
1960 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001961
1962 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04001963 if (!SDCard->UnMount(true))
1964 return false;
1965 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
1966 if (SDext != NULL) {
1967 if (!SDext->UnMount(true))
1968 return false;
1969 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001970 char* swappath = getenv("SWAPPATH");
1971 if (swappath != NULL) {
1972 LOGINFO("Unmounting swap at '%s'\n", swappath);
1973 umount(swappath);
1974 }
Vojtech Bocek05534202013-09-11 08:11:56 +02001975
Ethan Yonker483e9f42016-01-11 22:21:18 -06001976 // Determine block device
1977 if (SDCard->Alternate_Block_Device.empty()) {
1978 SDCard->Find_Actual_Block_Device();
1979 Device = SDCard->Actual_Block_Device;
1980 // Just use the root block device
1981 Device.resize(strlen("/dev/block/mmcblkX"));
1982 } else {
1983 Device = SDCard->Alternate_Block_Device;
1984 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04001985
1986 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06001987 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001988
1989 DataManager::GetValue("tw_sdext_size", ext);
1990 DataManager::GetValue("tw_swap_size", swap);
1991 DataManager::GetValue("tw_sdpart_file_system", ext_format);
1992 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06001993 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);
1994
1995 // Determine partition sizes
1996 if (swap == 0 && ext == 0) {
1997 fat_str = "-0";
1998 } else {
1999 memset(temp, 0, sizeof(temp));
2000 sprintf(temp, "%i", fat_size);
2001 fat_str = temp;
2002 fat_str += "MB";
2003 }
2004 if (swap == 0) {
2005 ext_str = "-0";
2006 } else {
2007 memset(temp, 0, sizeof(temp));
2008 sprintf(temp, "%i", ext);
2009 ext_str = "+";
2010 ext_str += temp;
2011 ext_str += "MB";
2012 }
2013
Dees_Troy9350b8d2012-09-27 12:38:38 -04002014 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002015 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002016 return false;
2017 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002018
Ethan Yonker74db1572015-10-28 12:44:49 -05002019 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002020 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002021 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002022 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002023 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002024 Update_System_Details();
2025 return false;
2026 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002027 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002028 Command = "sgdisk --new=0:0:" + fat_str + " --change-name=0:\"Microsoft basic data\" --typecode=0:EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002029 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002030 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002031 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002032 return false;
2033 }
2034 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002035 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002036 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002037 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002038 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002039 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002040 Update_System_Details();
2041 return false;
2042 }
2043 }
2044 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002045 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002046 Command = "sgdisk --new=0:0:-0 --change-name=0:\"Linux swap\" --typecode=0:0657FD6D-A4AB-43C4-84E5-0933C84B4F4F " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002047 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002048 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002049 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002050 Update_System_Details();
2051 return false;
2052 }
2053 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002054
2055 // Convert GPT to MBR
2056 Command = "sgdisk --gpttombr " + Device;
2057 if (TWFunc::Exec_Cmd(Command) != 0)
2058 LOGINFO("Failed to covert partition GPT to MBR\n");
2059
2060 // Tell the kernel to rescan the partition table
2061 int fd = open(Device.c_str(), O_RDONLY);
2062 ioctl(fd, BLKRRPART, 0);
2063 close(fd);
2064
2065 string format_device = Device;
2066 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2067 format_device += "p";
2068
2069 // Format new partitions to proper file system
2070 if (fat_size > 0) {
2071 Command = "mkfs.fat " + format_device + "1";
2072 TWFunc::Exec_Cmd(Command);
2073 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002074 if (ext > 0) {
2075 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002076 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2077 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2078 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2079 TWFunc::Exec_Cmd(Command);
2080 } else {
2081 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002082 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002083 }
2084 if (swap > 0) {
2085 Command = "mkswap " + format_device;
2086 if (ext > 0)
2087 Command += "3";
2088 else
2089 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002090 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002091 }
2092
Ethan Yonker483e9f42016-01-11 22:21:18 -06002093 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2094 if (SDCard->Mount(true)) {
2095 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2096 mkdir(TWRP_Folder.c_str(), 0777);
2097 DataManager::Flush();
2098 }
2099
Dees_Troy9350b8d2012-09-27 12:38:38 -04002100 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002101 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002102 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002103}
Dees_Troya13d74f2013-03-24 08:54:55 -05002104
2105void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2106 std::vector<TWPartition*>::iterator iter;
2107 if (ListType == "mount") {
2108 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002109 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002110 struct PartitionList part;
2111 part.Display_Name = (*iter)->Display_Name;
2112 part.Mount_Point = (*iter)->Mount_Point;
2113 part.selected = (*iter)->Is_Mounted();
2114 Partition_List->push_back(part);
2115 }
2116 }
2117 } else if (ListType == "storage") {
2118 char free_space[255];
2119 string Current_Storage = DataManager::GetCurrentStoragePath();
2120 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2121 if ((*iter)->Is_Storage) {
2122 struct PartitionList part;
2123 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2124 part.Display_Name = (*iter)->Storage_Name + " (";
2125 part.Display_Name += free_space;
2126 part.Display_Name += "MB)";
2127 part.Mount_Point = (*iter)->Storage_Path;
2128 if ((*iter)->Storage_Path == Current_Storage)
2129 part.selected = 1;
2130 else
2131 part.selected = 0;
2132 Partition_List->push_back(part);
2133 }
2134 }
2135 } else if (ListType == "backup") {
2136 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002137 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002138 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002139 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002140 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002141 Backup_Size = (*iter)->Backup_Size;
2142 if ((*iter)->Has_SubPartition) {
2143 std::vector<TWPartition*>::iterator subpart;
2144
2145 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2146 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2147 Backup_Size += (*subpart)->Backup_Size;
2148 }
2149 }
2150 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002151 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2152 part.Display_Name += backup_size;
2153 part.Display_Name += "MB)";
2154 part.Mount_Point = (*iter)->Backup_Path;
2155 part.selected = 0;
2156 Partition_List->push_back(part);
2157 }
2158 }
2159 } else if (ListType == "restore") {
2160 string Restore_List, restore_path;
2161 TWPartition* restore_part = NULL;
2162
2163 DataManager::GetValue("tw_restore_list", Restore_List);
2164 if (!Restore_List.empty()) {
2165 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2166 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2167 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002168 struct PartitionList part;
2169 if (restore_path.compare("ADB_Backup") == 0) {
2170 part.Display_Name = "ADB Backup";
2171 part.Mount_Point = "ADB Backup";
2172 part.selected = 1;
2173 Partition_List->push_back(part);
2174 break;
2175 }
Dees_Troy59df9262013-06-19 14:53:57 -05002176 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002177 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002178 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002179 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002180 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002181 part.Display_Name = restore_part->Backup_Display_Name;
2182 part.Mount_Point = restore_part->Backup_Path;
2183 part.selected = 1;
2184 Partition_List->push_back(part);
2185 }
2186 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002187 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002188 }
2189 start_pos = end_pos + 1;
2190 end_pos = Restore_List.find(";", start_pos);
2191 }
2192 }
2193 } else if (ListType == "wipe") {
2194 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002195 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002196 dalvik.Mount_Point = "DALVIK";
2197 dalvik.selected = 0;
2198 Partition_List->push_back(dalvik);
2199 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2200 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2201 struct PartitionList part;
2202 part.Display_Name = (*iter)->Display_Name;
2203 part.Mount_Point = (*iter)->Mount_Point;
2204 part.selected = 0;
2205 Partition_List->push_back(part);
2206 }
2207 if ((*iter)->Has_Android_Secure) {
2208 struct PartitionList part;
2209 part.Display_Name = (*iter)->Backup_Display_Name;
2210 part.Mount_Point = (*iter)->Backup_Path;
2211 part.selected = 0;
2212 Partition_List->push_back(part);
2213 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002214 if ((*iter)->Has_Data_Media) {
2215 struct PartitionList datamedia;
2216 datamedia.Display_Name = (*iter)->Storage_Name;
2217 datamedia.Mount_Point = "INTERNAL";
2218 datamedia.selected = 0;
2219 Partition_List->push_back(datamedia);
2220 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002221 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002222 } else if (ListType == "flashimg") {
2223 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2224 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2225 struct PartitionList part;
2226 part.Display_Name = (*iter)->Backup_Display_Name;
2227 part.Mount_Point = (*iter)->Backup_Path;
2228 part.selected = 0;
2229 Partition_List->push_back(part);
2230 }
2231 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002232 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2233 TWPartition* boot = Find_Partition_By_Path("/boot");
2234 if (boot) {
2235 // Allow flashing kernels and ramdisks
2236 struct PartitionList repack_ramdisk;
2237 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2238 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2239 repack_ramdisk.selected = 0;
2240 Partition_List->push_back(repack_ramdisk);
2241 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2242 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2243 repack_kernel.Mount_Point = "/repack_kernel";
2244 repack_kernel.selected = 0;
2245 Partition_List->push_back(repack_kernel);*/
2246 }
2247 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002248 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002249 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002250 }
2251}
2252
2253int TWPartitionManager::Fstab_Processed(void) {
2254 return Partitions.size();
2255}
Dees_Troyd93bda52013-07-03 19:55:19 +00002256
2257void TWPartitionManager::Output_Storage_Fstab(void) {
2258 std::vector<TWPartition*>::iterator iter;
2259 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002260 std::string Temp;
2261 std::string cacheDir = TWFunc::get_cache_dir();
2262
2263 if (cacheDir.empty()) {
2264 LOGINFO("Unable to find cache directory\n");
2265 return;
2266 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002267
2268 std::string storageFstab = TWFunc::get_cache_dir() + "recovery/storage.fstab";
2269 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002270
2271 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002272 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002273 return;
2274 }
2275
2276 // Iterate through all partitions
2277 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2278 if ((*iter)->Is_Storage) {
2279 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2280 strcpy(storage_partition, Temp.c_str());
2281 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2282 }
2283 }
2284 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002285}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002286
2287TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2288{
2289 TWPartition *res = NULL;
2290 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002291 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002292 continue;
2293
Matt Mowera8a89d12016-12-30 18:10:37 -06002294 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002295 return *iter;
2296
Matt Mowera8a89d12016-12-30 18:10:37 -06002297 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002298 res = *iter;
2299 }
2300 return res;
2301}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002302
2303bool TWPartitionManager::Enable_MTP(void) {
2304#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002305 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002306 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002307 return true;
2308 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002309
2310 int mtppipe[2];
2311
2312 if (pipe(mtppipe) < 0) {
2313 LOGERR("Error creating MTP pipe\n");
2314 return false;
2315 }
2316
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002317 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002318 property_get("sys.usb.config", old_value, "");
2319 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002320 char vendor[PROPERTY_VALUE_MAX];
2321 char product[PROPERTY_VALUE_MAX];
2322 property_set("sys.usb.config", "none");
2323 property_get("usb.vendor", vendor, "18D1");
2324 property_get("usb.product.mtpadb", product, "4EE2");
2325 string vendorstr = vendor;
2326 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002327 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2328 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002329 property_set("sys.usb.config", "mtp,adb");
2330 }
Matt Mower653a1702017-02-16 10:38:52 -06002331 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002332 * twrp set tw_mtp_debug 1
2333 */
2334 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002335 mtppid = mtp->forkserver(mtppipe);
2336 if (mtppid) {
2337 close(mtppipe[0]); // Host closes read side
2338 mtp_write_fd = mtppipe[1];
2339 DataManager::SetValue("tw_mtp_enabled", 1);
2340 Add_All_MTP_Storage();
2341 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002342 } else {
2343 close(mtppipe[0]);
2344 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002345 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002346 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002347 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002348#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002349 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002350#endif
2351 DataManager::SetValue("tw_mtp_enabled", 0);
2352 return false;
2353}
2354
Ethan Yonker1b039202015-01-30 10:08:48 -06002355void TWPartitionManager::Add_All_MTP_Storage(void) {
2356#ifdef TW_HAS_MTP
2357 std::vector<TWPartition*>::iterator iter;
2358
2359 if (!mtppid)
2360 return; // MTP is not enabled
2361
2362 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2363 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2364 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2365 }
2366#else
2367 return;
2368#endif
2369}
2370
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002371bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002372 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002373 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002374 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002375 if (strcmp(old_value, "adb") != 0) {
2376 char vendor[PROPERTY_VALUE_MAX];
2377 char product[PROPERTY_VALUE_MAX];
2378 property_set("sys.usb.config", "none");
2379 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002380 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002381 string vendorstr = vendor;
2382 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002383 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2384 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002385 usleep(2000);
2386 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002387#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002388 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002389 LOGINFO("Disabling MTP\n");
2390 int status;
2391 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002392 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002393 // We don't care about the exit value, but this prevents a zombie process
2394 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002395 close(mtp_write_fd);
2396 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002397 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002398#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002399 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002400#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002401 DataManager::SetValue("tw_mtp_enabled", 0);
2402 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002403#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002404 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002405}
Ethan Yonker726a0202014-12-16 20:01:38 -06002406
2407TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2408 std::vector<TWPartition*>::iterator iter;
2409
2410 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2411 if ((*iter)->MTP_Storage_ID == Storage_ID)
2412 return (*iter);
2413 }
2414 return NULL;
2415}
2416
2417bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2418#ifdef TW_HAS_MTP
2419 struct mtpmsg mtp_message;
2420
2421 if (!mtppid)
2422 return false; // MTP is disabled
2423
2424 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002425 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002426 return false;
2427 }
2428
2429 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002430 if (Part->MTP_Storage_ID == 0)
2431 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002432 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2433 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2434 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2435 mtp_message.storage_id = Part->MTP_Storage_ID;
2436 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002437 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002438 return false;
2439 } else {
2440 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2441 return true;
2442 }
2443 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2444 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2445 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002446 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2447 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2448 return false;
2449 }
2450 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2451 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2452 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2453 return false;
2454 }
2455 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002456 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002457 LOGINFO("sending message to add %i '%s' '%s'\n", mtp_message.storage_id, mtp_message.path, mtp_message.display);
Ethan Yonker726a0202014-12-16 20:01:38 -06002458 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002459 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002460 return false;
2461 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002462 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002463 return true;
2464 }
2465 } else {
2466 LOGERR("Unknown MTP message type: %i\n", message_type);
2467 }
2468 } else {
2469 // This hopefully never happens as the error handling should
2470 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002471 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002472 }
2473 return true;
2474#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002475 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002476 DataManager::SetValue("tw_mtp_enabled", 0);
2477 return false;
2478#endif
2479}
2480
2481bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2482#ifdef TW_HAS_MTP
2483 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2484 if (Part) {
2485 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2486 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002487 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002488 }
2489#endif
2490 return false;
2491}
2492
2493bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2494#ifdef TW_HAS_MTP
2495 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2496 if (Part) {
2497 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2498 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002499 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002500 }
2501#endif
2502 return false;
2503}
2504
2505bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2506#ifdef TW_HAS_MTP
2507 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2508 if (Part) {
2509 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2510 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002511 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002512 }
2513#endif
2514 return false;
2515}
2516
2517bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2518#ifdef TW_HAS_MTP
2519 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2520 if (Part) {
2521 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2522 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002523 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002524 }
2525#endif
2526 return false;
2527}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002528
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002529bool TWPartitionManager::Flash_Image(string& path, string& filename) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002530 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002531 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002532 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002533 size_t start_pos = 0, end_pos = 0;
2534
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002535 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002536
bigbiffce8f83c2015-12-12 18:30:21 -05002537 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2538 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2539
2540 if (!TWFunc::Path_Exists(full_filename)) {
2541 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002542 return false;
2543 }
bigbiffce8f83c2015-12-12 18:30:21 -05002544 if (!TWFunc::Path_Exists(full_filename)) {
2545 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002546 return false;
2547 }
2548 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002549
Ethan Yonker53796e72019-01-11 22:49:52 -06002550 DataManager::GetValue("tw_flash_partition", Flash_List);
2551 Repack_Type repack = REPLACE_NONE;
2552 if (Flash_List == "/repack_ramdisk;") {
2553 repack = REPLACE_RAMDISK;
2554 } else if (Flash_List == "/repack_kernel;") {
2555 repack = REPLACE_KERNEL;
2556 }
2557 if (repack != REPLACE_NONE) {
2558 Repack_Options_struct Repack_Options;
2559 Repack_Options.Type = repack;
2560 Repack_Options.Disable_Verity = false;
2561 Repack_Options.Disable_Force_Encrypt = false;
2562 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
2563 return Repack_Images(full_filename, Repack_Options);
2564 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002565 PartitionSettings part_settings;
2566 part_settings.Backup_Folder = path;
2567 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2568 ProgressTracking progress(total_bytes);
2569 part_settings.progress = &progress;
2570 part_settings.adbbackup = false;
2571 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002572 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002573 if (!Flash_List.empty()) {
2574 end_pos = Flash_List.find(";", start_pos);
2575 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2576 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2577 flash_part = Find_Partition_By_Path(flash_path);
2578 if (flash_part != NULL) {
2579 partition_count++;
2580 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002581 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002582 return false;
2583 }
2584 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002585 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002586 return false;
2587 }
2588 start_pos = end_pos + 1;
2589 end_pos = Flash_List.find(";", start_pos);
2590 }
2591 }
2592
2593 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002594 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002595 return false;
2596 }
2597
2598 DataManager::SetProgress(0.0);
2599 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002600 flash_part->Backup_FileName = filename;
2601 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002602 return false;
2603 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002604 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002605 return false;
2606 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002607 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002608 return true;
2609}
Ethan Yonker74db1572015-10-28 12:44:49 -05002610
2611void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2612 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2613 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002614 if (part->Is_Adopted_Storage) {
2615 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2616 part->Backup_Display_Name = part->Display_Name;
2617 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2618 } else {
2619 part->Display_Name = gui_lookup(resource_name, default_value);
2620 part->Backup_Display_Name = part->Display_Name;
2621 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002622 }
2623}
2624
2625void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2626 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2627 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002628 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002629 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002630 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002631 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2632 } else {
2633 part->Display_Name = gui_lookup(resource_name, default_value);
2634 part->Backup_Display_Name = part->Display_Name;
2635 if (part->Is_Storage)
2636 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2637 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002638 }
2639}
2640
Ethan Yonker01f4e032017-02-03 15:30:52 -06002641void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value, const char* backup_name, const char* backup_default) {
2642 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2643 if (part) {
2644 if (part->Is_Adopted_Storage) {
2645 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2646 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2647 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2648 } else {
2649 part->Display_Name = gui_lookup(resource_name, default_value);
2650 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2651 if (part->Is_Storage)
2652 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2653 }
2654 }
2655}
2656
Ethan Yonker74db1572015-10-28 12:44:49 -05002657void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002658 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002659 Translate_Partition("/system", "system", "System");
2660 Translate_Partition("/system_image", "system_image", "System Image");
2661 Translate_Partition("/vendor", "vendor", "Vendor");
2662 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2663 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002664 Translate_Partition("/boot", "boot", "Boot");
2665 Translate_Partition("/recovery", "recovery", "Recovery");
2666 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002667 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002668 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2669 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2670 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2671 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002672 } else {
2673 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002674 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002675 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2676 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002677 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2678 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2679
2680 // Android secure is a special case
2681 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2682 if (part)
2683 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2684
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002685 std::vector<TWPartition*>::iterator sysfs;
2686 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2687 if (!(*sysfs)->Sysfs_Entry.empty()) {
2688 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2689 }
2690 }
2691
Ethan Yonker74db1572015-10-28 12:44:49 -05002692 // This updates the text on all of the storage selection buttons in the GUI
2693 DataManager::SetBackupFolder();
2694}
Ethan Yonker66a19492015-12-10 10:19:45 -06002695
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002696bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002697#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002698 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002699 if (!Mount_By_Path("/data", false)) {
2700 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002701 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002702 }
2703 LOGINFO("Decrypt adopted storage starting\n");
2704 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2705 xml_document<> *doc = NULL;
2706 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002707 string Primary_Storage_UUID = "";
2708 if (xmlFile != NULL) {
2709 LOGINFO("successfully loaded storage.xml\n");
2710 doc = new xml_document<>();
2711 doc->parse<0>(xmlFile);
2712 volumes = doc->first_node("volumes");
2713 if (volumes) {
2714 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2715 if (psuuid) {
2716 Primary_Storage_UUID = psuuid->value();
2717 }
2718 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002719 } else {
2720 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2721 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002722 }
2723 std::vector<TWPartition*>::iterator adopt;
2724 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2725 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2726 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002727 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002728 if (volumes) {
2729 xml_node<>* volume = volumes->first_node("volume");
2730 while (volume) {
2731 xml_attribute<>* guid = volume->first_attribute("partGuid");
2732 if (guid) {
2733 string GUID = (*adopt)->Adopted_GUID.c_str();
2734 GUID.insert(8, "-");
2735 GUID.insert(13, "-");
2736 GUID.insert(18, "-");
2737 GUID.insert(23, "-");
2738
2739 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2740 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002741 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002742 (*adopt)->Storage_Name = attr->value();
2743 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2744 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2745 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2746 }
2747 attr = volume->first_attribute("fsUuid");
2748 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2749 TWPartition* Dat = Find_Partition_By_Path("/data");
2750 if (Dat) {
2751 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2752 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2753 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2754 Dat->Symlink_Mount_Point = "";
2755 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2756 Dat->UnMount(false);
2757 Dat->Mount(false);
2758 (*adopt)->UnMount(false);
2759 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002760 }
2761 }
2762 break;
2763 }
2764 }
2765 volume = volume->next_sibling("volume");
2766 }
2767 }
nkk71ffb02bd2017-06-04 23:12:16 +03002768 Update_System_Details();
2769 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002770 }
2771 }
2772 }
2773 if (xmlFile) {
2774 doc->clear();
2775 delete doc;
2776 free(xmlFile);
2777 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002778 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002779#else
2780 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002781 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002782#endif
2783}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002784
2785void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2786 std::vector<TWPartition*>::iterator iter;
2787 string Local_Path = TWFunc::Get_Root_Path(Path);
2788
2789 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2790 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2791 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2792 Partitions.erase(iter);
2793 return;
2794 }
2795 }
2796}
Ethan Yonker1b190162016-12-05 15:25:19 -06002797
2798void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2799 if (Slot != "A" && Slot != "B") {
2800 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2801 return;
2802 }
2803 if (Active_Slot_Display == Slot)
2804 return;
2805 LOGINFO("Setting active slot %s\n", Slot.c_str());
2806#ifdef AB_OTA_UPDATER
2807 if (!Active_Slot_Display.empty()) {
2808 const hw_module_t *hw_module;
2809 boot_control_module_t *module;
2810 int ret;
2811 ret = hw_get_module("bootctrl", &hw_module);
2812 if (ret != 0) {
2813 LOGERR("Error getting bootctrl module.\n");
2814 } else {
2815 module = (boot_control_module_t*) hw_module;
2816 module->init(module);
2817 int slot_number = 0;
2818 if (Slot == "B")
2819 slot_number = 1;
2820 if (module->setActiveBootSlot(module, slot_number))
2821 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2822 }
2823 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
2824 }
2825#else
2826 LOGERR("Boot slot feature not present\n");
2827#endif
2828 Active_Slot_Display = Slot;
2829 if (Fstab_Processed())
2830 Update_System_Details();
2831}
2832string TWPartitionManager::Get_Active_Slot_Suffix() {
2833 if (Active_Slot_Display == "A")
2834 return "_a";
2835 return "_b";
2836}
2837string TWPartitionManager::Get_Active_Slot_Display() {
2838 return Active_Slot_Display;
2839}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002840
Captain Throwback9d6feb52018-07-27 10:05:24 -04002841string TWPartitionManager::Get_Android_Root_Path() {
2842 std::string Android_Root = getenv("ANDROID_ROOT");
2843 if (Android_Root == "")
2844 Android_Root = "/system";
2845 return Android_Root;
2846}
2847
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002848void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
2849 std::vector<TWPartition*>::iterator iter;
2850
2851 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
2852 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
2853 TWPartition *part = *iter;
2854 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
2855 (*iter)->UnMount(false);
2856 rmdir((*iter)->Mount_Point.c_str());
2857 iter = Partitions.erase(iter);
2858 delete part;
2859 } else {
2860 iter++;
2861 }
2862 }
2863}
2864
2865void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
2866 std::vector<TWPartition*>::iterator iter;
2867
2868 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2869 if (!(*iter)->Sysfs_Entry.empty()) {
2870 string device;
2871 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
2872 if (wildcard != string::npos) {
2873 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
2874 } else {
2875 device = (*iter)->Sysfs_Entry;
2876 }
2877 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
2878 // Found a match
2879 if (uevent_data.action == "add") {
2880 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
2881 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
2882 (*iter)->Is_Present = true;
2883 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
2884 if (!Decrypt_Adopted()) {
2885 LOGINFO("No adopted storage so finding actual block device\n");
2886 (*iter)->Find_Actual_Block_Device();
2887 }
2888 return;
2889 } else if (uevent_data.action == "remove") {
2890 (*iter)->Is_Present = false;
2891 (*iter)->Primary_Block_Device = "";
2892 (*iter)->Actual_Block_Device = "";
2893 Remove_Uevent_Devices((*iter)->Mount_Point);
2894 return;
2895 }
2896 }
2897 }
2898 }
2899 LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str());
2900}
2901
2902void TWPartitionManager::setup_uevent() {
2903 struct sockaddr_nl nls;
2904
2905 if (uevent_pfd.fd >= 0) {
2906 LOGINFO("uevent already set up\n");
2907 return;
2908 }
2909
2910 // Open hotplug event netlink socket
2911 memset(&nls,0,sizeof(struct sockaddr_nl));
2912 nls.nl_family = AF_NETLINK;
2913 nls.nl_pid = getpid();
2914 nls.nl_groups = -1;
2915 uevent_pfd.events = POLLIN;
2916 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
2917 if (uevent_pfd.fd==-1) {
2918 LOGERR("uevent not root\n");
2919 return;
2920 }
2921
2922 // Listen to netlink socket
2923 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
2924 LOGERR("Bind failed\n");
2925 return;
2926 }
2927 set_select_fd();
2928 Coldboot();
2929}
2930
2931Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
2932 Uevent_Block_Data ret;
2933 ret.subsystem = "";
2934 char *ptr = buf;
2935 const char *end = buf + len;
2936
2937 buf[len - 1] = '\0';
2938 while (ptr < end) {
2939 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
2940 ptr += strlen("ACTION=");
2941 ret.action = ptr;
2942 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
2943 ptr += strlen("SUBSYSTEM=");
2944 ret.subsystem = ptr;
2945 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
2946 ptr += strlen("DEVTYPE=");
2947 ret.type = ptr;
2948 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
2949 ptr += strlen("DEVPATH=");
2950 ret.sysfs_path += ptr;
2951 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
2952 ptr += strlen("DEVNAME=");
2953 ret.block_device += ptr;
2954 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
2955 ptr += strlen("MAJOR=");
2956 ret.major = atoi(ptr);
2957 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
2958 ptr += strlen("MINOR=");
2959 ret.minor = atoi(ptr);
2960 }
2961 ptr += strlen(ptr) + 1;
2962 }
2963 return ret;
2964}
2965
2966void TWPartitionManager::read_uevent() {
2967 char buf[1024];
2968
2969 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
2970 if (len == -1) {
bigbiffd58ba182020-03-23 10:02:29 -04002971 LOGERR("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002972 return;
2973 }
2974 /*int i = 0; // Print all uevent output for test /debug
2975 while (i<len) {
2976 printf("%s\n", buf+i);
2977 i += strlen(buf+i)+1;
2978 }*/
2979 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
2980 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
2981 PartitionManager.Handle_Uevent(uevent_data);
2982 }
2983}
2984
2985void TWPartitionManager::close_uevent() {
2986 if (uevent_pfd.fd > 0)
2987 close(uevent_pfd.fd);
2988 uevent_pfd.fd = -1;
2989}
2990
2991void TWPartitionManager::Add_Partition(TWPartition* Part) {
2992 Partitions.push_back(Part);
2993}
2994
2995void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
2996 string Real_Path = Path;
2997 char real_path[PATH_MAX];
2998 if (realpath(Path.c_str(), &real_path[0])) {
2999 string Real_Path = real_path;
3000 std::vector<string>::iterator iter;
3001 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3002 if (Real_Path.find((*iter)) != string::npos) {
3003 string Write_Path = Real_Path + "/uevent";
3004 if (TWFunc::Path_Exists(Write_Path)) {
3005 const char* write_val = "add\n";
3006 TWFunc::write_to_file(Write_Path, write_val);
3007 break;
3008 }
3009 }
3010 }
3011 }
3012
3013 DIR* d = opendir(Path.c_str());
3014 if (d != NULL) {
3015 struct dirent* de;
3016 while ((de = readdir(d)) != NULL) {
3017 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3018 continue;
3019 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3020 continue;
3021
3022 string item = Path + "/";
3023 item.append(de->d_name);
3024 Coldboot_Scan(sysfs_entries, item, depth + 1);
3025 }
3026 closedir(d);
3027 }
3028}
3029
3030void TWPartitionManager::Coldboot() {
3031 std::vector<TWPartition*>::iterator iter;
3032 std::vector<string> sysfs_entries;
3033
3034 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3035 if (!(*iter)->Sysfs_Entry.empty()) {
3036 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3037 if (wildcard_pos == string::npos)
3038 wildcard_pos = (*iter)->Sysfs_Entry.size();
3039 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3040 }
3041 }
3042
3043 if (sysfs_entries.size() > 0)
3044 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3045}
Ethan Yonker53796e72019-01-11 22:49:52 -06003046
3047bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3048 if (TWFunc::Path_Exists(Folder))
3049 TWFunc::removeDir(Folder, false);
3050 return TWFunc::Recursive_Mkdir(Folder);
3051}
3052
3053bool TWPartitionManager::Prepare_Repack(TWPartition* Part, const std::string& Temp_Folder_Destination, const bool Create_Backup, const std::string& Backup_Name) {
3054 if (!Part) {
3055 LOGERR("Partition was null!\n");
3056 return false;
3057 }
3058 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3059 return false;
3060 std::string target_image = Temp_Folder_Destination + "boot.img";
3061 PartitionSettings part_settings;
3062 part_settings.Part = Part;
3063 if (Create_Backup) {
3064 if (Check_Backup_Name(Backup_Name, true, false) != 0)
3065 return false;
3066 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
3067 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + TWFunc::Get_Current_Date() + " " + Backup_Name + "/";
3068 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder))
3069 return false;
3070 } else
3071 part_settings.Backup_Folder = Temp_Folder_Destination;
3072 part_settings.adbbackup = false;
3073 part_settings.generate_digest = false;
3074 part_settings.generate_md5 = false;
3075 part_settings.PM_Method = PM_BACKUP;
3076 part_settings.progress = NULL;
3077 pid_t not_a_pid = 0;
3078 if (!Part->Backup(&part_settings, &not_a_pid))
3079 return false;
3080 std::string backed_up_image = part_settings.Backup_Folder;
3081 backed_up_image += Part->Backup_FileName;
3082 target_image = Temp_Folder_Destination + "boot.img";
3083 if (Create_Backup) {
3084 std::string source = part_settings.Backup_Folder + Part->Backup_FileName;
3085 if (TWFunc::copy_file(source, target_image, 0644) != 0) {
3086 LOGERR("Failed to copy backup file '%s' to temp folder target '%s'\n", source.c_str(), target_image.c_str());
3087 return false;
3088 }
3089 } else {
3090 if (rename(backed_up_image.c_str(), target_image.c_str()) != 0) {
3091 LOGERR("Failed to rename '%s' to '%s'\n", backed_up_image.c_str(), target_image.c_str());
3092 return false;
3093 }
3094 }
3095 return Prepare_Repack(target_image, Temp_Folder_Destination, false, false);
3096}
3097
3098bool TWPartitionManager::Prepare_Repack(const std::string& Source_Path, const std::string& Temp_Folder_Destination, const bool Copy_Source, const bool Create_Destination) {
3099 if (Create_Destination) {
3100 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3101 return false;
3102 }
3103 if (Copy_Source) {
3104 std::string destination = Temp_Folder_Destination + "/boot.img";
3105 if (TWFunc::copy_file(Source_Path, destination, 0644))
3106 return false;
3107 }
Mauronofrio Matarrese82a2f452019-04-04 22:39:12 +01003108 std::string command = "cd " + Temp_Folder_Destination + " && /sbin/magiskboot --unpack -h '" + Source_Path +"'";
Ethan Yonker53796e72019-01-11 22:49:52 -06003109 if (TWFunc::Exec_Cmd(command) != 0) {
3110 LOGINFO("Error unpacking %s!\n", Source_Path.c_str());
3111 gui_msg(Msg(msg::kError, "unpack_error=Error unpacking image."));
3112 return false;
3113 }
3114 return true;
3115}
3116
3117bool TWPartitionManager::Repack_Images(const std::string& Target_Image, const struct Repack_Options_struct& Repack_Options) {
3118 if (!TWFunc::Path_Exists("/sbin/magiskboot")) {
3119 LOGERR("Image repacking tool not present in this TWRP build!");
3120 return false;
3121 }
3122 DataManager::SetProgress(0);
3123 TWPartition* part = PartitionManager.Find_Partition_By_Path("/boot");
3124 if (part)
3125 gui_msg(Msg("unpacking_image=Unpacking {1}...")(part->Display_Name));
3126 else {
3127 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/boot"));
3128 return false;
3129 }
3130 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3131 return false;
3132 DataManager::SetProgress(.25);
3133 gui_msg(Msg("unpacking_image=Unpacking {1}...")(Target_Image));
3134 if (!PartitionManager.Prepare_Repack(Target_Image, REPACK_NEW_DIR, true))
3135 return false;
3136 DataManager::SetProgress(.5);
3137 gui_msg(Msg("repacking_image=Repacking {1}...")(part->Display_Name));
3138 std::string path = REPACK_NEW_DIR;
3139 if (Repack_Options.Type == REPLACE_KERNEL) {
3140 // When we replace the kernel, what we really do is copy the boot partition ramdisk into the new image's folder
3141 if (TWFunc::copy_file(REPACK_ORIG_DIR "ramdisk.cpio", REPACK_NEW_DIR "ramdisk.cpio", 0644)) {
3142 LOGERR("Failed to copy ramdisk\n");
3143 return false;
3144 }
3145 } else if (Repack_Options.Type == REPLACE_RAMDISK) {
3146 // Repack the ramdisk
3147 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3148 LOGERR("Failed to copy ramdisk\n");
3149 return false;
3150 }
3151 path = REPACK_ORIG_DIR;
3152 } else {
3153 LOGERR("Invalid repacking options specified\n");
3154 return false;
3155 }
3156 if (Repack_Options.Disable_Verity)
3157 LOGERR("Disabling verity is not implemented yet\n");
3158 if (Repack_Options.Disable_Force_Encrypt)
3159 LOGERR("Disabling force encrypt is not implemented yet\n");
3160 std::string command = "cd " + path + " && /sbin/magiskboot --repack " + path + "boot.img";
3161 if (TWFunc::Exec_Cmd(command) != 0) {
3162 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3163 return false;
3164 }
3165 DataManager::SetProgress(.75);
3166 std::string file = "new-boot.img";
3167 DataManager::SetValue("tw_flash_partition", "/boot;");
3168 if (!PartitionManager.Flash_Image(path, file)) {
3169 LOGINFO("Error flashing new image\n");
3170 return false;
3171 }
3172 DataManager::SetProgress(1);
3173 TWFunc::removeDir(REPACK_ORIG_DIR, false);
Ethan Yonker9f5dd312019-05-15 15:17:36 -05003174 if (part->SlotSelect && Repack_Options.Type == REPLACE_RAMDISK) {
3175 LOGINFO("Switching slots to flash ramdisk to both partitions\n");
3176 string Current_Slot = Get_Active_Slot_Display();
3177 if (Current_Slot == "A")
3178 Set_Active_Slot("B");
3179 else
3180 Set_Active_Slot("A");
3181 DataManager::SetProgress(.25);
3182 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3183 return false;
3184 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3185 LOGERR("Failed to copy ramdisk\n");
3186 return false;
3187 }
3188 path = REPACK_ORIG_DIR;
3189 command = "cd " + path + " && /sbin/magiskboot --repack " + path + "boot.img";
3190 if (TWFunc::Exec_Cmd(command) != 0) {
3191 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3192 return false;
3193 }
3194 DataManager::SetProgress(.75);
3195 std::string file = "new-boot.img";
3196 DataManager::SetValue("tw_flash_partition", "/boot;");
3197 if (!PartitionManager.Flash_Image(path, file)) {
3198 LOGINFO("Error flashing new image\n");
3199 return false;
3200 }
3201 DataManager::SetProgress(1);
3202 TWFunc::removeDir(REPACK_ORIG_DIR, false);
3203 Set_Active_Slot(Current_Slot);
3204 }
Ethan Yonker53796e72019-01-11 22:49:52 -06003205 TWFunc::removeDir(REPACK_NEW_DIR, false);
3206 return true;
3207}