blob: 873b29262f9260d1f6387831f2e35f160a4d8528 [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
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100114int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool Sar_Detect) {
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();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100201 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags, Sar_Detect))
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();
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100216 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL, Sar_Detect))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600217 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++) {
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100230 if (Sar_Detect) {
231 if ((*iter)->Mount_Point == "/s")
232 return true;
233 else
234 continue;
235 }
236
Matt Mower72c87ce2016-04-26 14:34:56 -0500237 (*iter)->Partition_Post_Processing(Display_Error);
238
239 if ((*iter)->Is_Storage) {
240 ++storageid;
241 (*iter)->MTP_Storage_ID = storageid;
242 }
243
244 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
245 settings_partition = (*iter);
246 else
247 (*iter)->Is_Settings_Storage = false;
248
249 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
250 andsec_partition = (*iter);
251 else
252 (*iter)->Has_Android_Secure = false;
253 }
254
Ethan Yonker6277c792014-09-15 14:54:30 -0500255 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) {
256 // Attempt to automatically identify /data/media emulated storage devices
257 TWPartition* Dat = Find_Partition_By_Path("/data");
258 if (Dat) {
259 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
260 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200261 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500262 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600263 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
264 ++storageid;
265 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500266 }
267 }
Dees Troy02a64532014-03-19 15:23:32 +0000268 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500269 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
270 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000271 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500272 break;
273 }
274 }
Dees Troy02a64532014-03-19 15:23:32 +0000275 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000276 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500277 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400278 if (!Write_Fstab()) {
279 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000280 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400281 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000282 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400283 }
Matt Mowered71fa32014-04-16 13:21:47 -0500284
Matt Mowerbf4efa32014-04-14 23:25:26 -0500285 if (andsec_partition) {
286 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500287 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500288 Setup_Android_Secure_Location(settings_partition);
289 }
Matt Mowered71fa32014-04-16 13:21:47 -0500290 if (settings_partition) {
291 Setup_Settings_Storage_Partition(settings_partition);
292 }
Ethan Yonker253368a2014-11-25 15:00:52 -0600293#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600294 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
295 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500296 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
297#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
298 if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) {
299 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", Decrypt_Data->Decrypted_Block_Device.c_str());
300 property_set("ro.crypto.state", "encrypted");
301 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
302 int retry_count = 10;
303 while (!Decrypt_Data->Mount(false) && --retry_count)
304 usleep(500);
305 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400306 if (!Decrypt_Data->Decrypt_FBE_DE()) {
307 LOGINFO("Trying wrapped key.\n");
308 property_set("fbe.data.wrappedkey", "true");
309 if (!Decrypt_Data->Decrypt_FBE_DE()) {
310 LOGERR("Unable to decrypt FBE device\n");
311 }
312 }
313
Ethan Yonker93382822018-11-01 15:25:31 -0500314 } else {
315 LOGINFO("Failed to mount data after metadata decrypt\n");
316 }
317 } else {
318 LOGINFO("Unable to decrypt metadata encryption\n");
319 }
320#else
321 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
322#endif
323 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600324 if (Decrypt_Data->Is_FBE) {
325 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
326 if (Decrypt_Device("!") == 0) {
327 gui_msg("decrypt_success=Successfully decrypted with default password.");
328 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
329 } else {
330 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
331 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600332 }
333 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600334 int password_type = cryptfs_get_password_type();
335 if (password_type == CRYPT_TYPE_DEFAULT) {
336 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
337 if (Decrypt_Device("default_password") == 0) {
338 gui_msg("decrypt_success=Successfully decrypted with default password.");
339 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
340 } else {
341 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
342 }
343 } else {
344 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
345 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600346 }
347 }
Ethan Yonker66a19492015-12-10 10:19:45 -0600348 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
349 Decrypt_Adopted();
350 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600351#endif
Dees_Troy51127312012-09-08 13:08:49 -0400352 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400353 UnMount_Main_Partitions();
Ethan Yonker1b190162016-12-05 15:25:19 -0600354#ifdef AB_OTA_UPDATER
355 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
356#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600357 setup_uevent();
Dees_Troy5bf43922012-09-07 16:07:55 -0400358 return true;
359}
360
361int TWPartitionManager::Write_Fstab(void) {
362 FILE *fp;
363 std::vector<TWPartition*>::iterator iter;
364 string Line;
365
366 fp = fopen("/etc/fstab", "w");
367 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000368 LOGINFO("Can not open /etc/fstab.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400369 return false;
370 }
Dees_Troy63c8df72012-09-10 14:02:05 -0400371 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -0400372 if ((*iter)->Can_Be_Mounted) {
dianlujitao7d304c72016-01-02 12:15:50 +0800373 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
Dees_Troy5bf43922012-09-07 16:07:55 -0400374 fputs(Line.c_str(), fp);
Dees_Troy91862e62013-04-04 23:48:21 +0000375 }
376 // Handle subpartition tracking
377 if ((*iter)->Is_SubPartition) {
378 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
379 if (ParentPartition)
380 ParentPartition->Has_SubPartition = true;
381 else
382 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 -0400383 }
384 }
385 fclose(fp);
386 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400387}
388
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500389void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500390 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
391 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
392 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
393}
394
Matt Mowerbf4efa32014-04-14 23:25:26 -0500395void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
396 if (Part->Has_Android_Secure)
397 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500398 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500399 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500400}
401
Dees_Troy8170a922012-09-18 15:40:25 -0400402void TWPartitionManager::Output_Partition_Logging(void) {
403 std::vector<TWPartition*>::iterator iter;
404
405 printf("\n\nPartition Logs:\n");
406 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
407 Output_Partition((*iter));
408}
409
410void TWPartitionManager::Output_Partition(TWPartition* Part) {
411 unsigned long long mb = 1048576;
412
Gary Peck004d48b2012-11-21 16:28:18 -0800413 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 -0400414 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800415 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 -0400416 }
Gary Peck004d48b2012-11-21 16:28:18 -0800417 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500418 if (Part->Can_Be_Mounted)
419 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800420 if (Part->Can_Be_Wiped)
421 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700422 if (Part->Use_Rm_Rf)
423 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500424 if (Part->Can_Be_Backed_Up)
425 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800426 if (Part->Wipe_During_Factory_Reset)
427 printf("Wipe_During_Factory_Reset ");
428 if (Part->Wipe_Available_in_GUI)
429 printf("Wipe_Available_in_GUI ");
430 if (Part->Is_SubPartition)
431 printf("Is_SubPartition ");
432 if (Part->Has_SubPartition)
433 printf("Has_SubPartition ");
434 if (Part->Removable)
435 printf("Removable ");
436 if (Part->Is_Present)
437 printf("IsPresent ");
438 if (Part->Can_Be_Encrypted)
439 printf("Can_Be_Encrypted ");
440 if (Part->Is_Encrypted)
441 printf("Is_Encrypted ");
442 if (Part->Is_Decrypted)
443 printf("Is_Decrypted ");
444 if (Part->Has_Data_Media)
445 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000446 if (Part->Can_Encrypt_Backup)
447 printf("Can_Encrypt_Backup ");
448 if (Part->Use_Userdata_Encryption)
449 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800450 if (Part->Has_Android_Secure)
451 printf("Has_Android_Secure ");
452 if (Part->Is_Storage)
453 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500454 if (Part->Is_Settings_Storage)
455 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000456 if (Part->Ignore_Blkid)
457 printf("Ignore_Blkid ");
Dees_Troy16c2b312013-01-15 16:51:18 +0000458 if (Part->Retain_Layout_Version)
459 printf("Retain_Layout_Version ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600460 if (Part->Mount_To_Decrypt)
461 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600462 if (Part->Can_Flash_Img)
463 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600464 if (Part->Is_Adopted_Storage)
465 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600466 if (Part->SlotSelect)
467 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600468 if (Part->Mount_Read_Only)
469 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800470 printf("\n");
471 if (!Part->SubPartition_Of.empty())
472 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
473 if (!Part->Symlink_Path.empty())
474 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
475 if (!Part->Symlink_Mount_Point.empty())
476 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
477 if (!Part->Primary_Block_Device.empty())
478 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
479 if (!Part->Alternate_Block_Device.empty())
480 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
481 if (!Part->Decrypted_Block_Device.empty())
482 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800483 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600484 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800485 if (Part->Length != 0)
486 printf(" Length: %i\n", Part->Length);
487 if (!Part->Display_Name.empty())
488 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500489 if (!Part->Storage_Name.empty())
490 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800491 if (!Part->Backup_Path.empty())
492 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
493 if (!Part->Backup_Name.empty())
494 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500495 if (!Part->Backup_Display_Name.empty())
496 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800497 if (!Part->Backup_FileName.empty())
498 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
499 if (!Part->Storage_Path.empty())
500 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
501 if (!Part->Current_File_System.empty())
502 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
503 if (!Part->Fstab_File_System.empty())
504 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
505 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500506 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400507 if (!Part->MTD_Name.empty())
508 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600509 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800510 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600511 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600512 if (Part->MTP_Storage_ID)
513 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500514 if (!Part->Key_Directory.empty())
515 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500516 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400517}
518
Dees_Troy51a0e822012-09-05 15:24:24 -0400519int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400520 std::vector<TWPartition*>::iterator iter;
521 int ret = false;
522 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400523 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400524
Captain Throwbackd54e1da2020-03-04 16:49:51 -0500525 if (Local_Path == "/tmp" || Local_Path == "/" || Local_Path == "/etc")
Dees_Troy43d8b002012-09-17 16:00:01 -0400526 return true;
527
Dees_Troy5bf43922012-09-07 16:07:55 -0400528 // Iterate through all partitions
529 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400530 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400531 ret = (*iter)->Mount(Display_Error);
532 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400533 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400534 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400535 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400536 }
537 if (found) {
538 return ret;
539 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500540 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 -0400541 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000542 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400543 }
544 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400545}
546
Dees_Troy51a0e822012-09-05 15:24:24 -0400547int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400548 std::vector<TWPartition*>::iterator iter;
549 int ret = false;
550 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400551 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400552
553 // Iterate through all partitions
554 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400555 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400556 ret = (*iter)->UnMount(Display_Error);
557 found = true;
558 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
559 (*iter)->UnMount(Display_Error);
560 }
561 }
562 if (found) {
563 return ret;
564 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500565 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 -0400566 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000567 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400568 }
569 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400570}
571
Dees_Troy51a0e822012-09-05 15:24:24 -0400572int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400573 TWPartition* Part = Find_Partition_By_Path(Path);
574
575 if (Part)
576 return Part->Is_Mounted();
577 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000578 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400579 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400580}
581
Dees_Troy5bf43922012-09-07 16:07:55 -0400582int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400583 string current_storage_path = DataManager::GetCurrentStoragePath();
584
585 if (Mount_By_Path(current_storage_path, Display_Error)) {
586 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
587 if (FreeStorage)
588 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
589 return true;
590 }
591 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400592}
593
Dees_Troy5bf43922012-09-07 16:07:55 -0400594int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
595 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
596}
597
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600598TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400599 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400600 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400601
dianlujitaob76a73a2020-04-30 20:33:20 +0800602 if (Local_Path == "/system")
603 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400604 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400605 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400606 return (*iter);
607 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400608 return NULL;
609}
610
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600611TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
612 std::vector<TWPartition*>::iterator iter;
613
614 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
615 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
616 return (*iter);
617 }
618 return NULL;
619}
620
Ethan Yonker53796e72019-01-11 22:49:52 -0600621int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400622 // Check the backup name to ensure that it is the correct size and contains only valid characters
623 // and that a backup with that name doesn't already exist
624 char backup_name[MAX_BACKUP_NAME_LEN];
625 char backup_loc[255], tw_image_dir[255];
626 int copy_size;
627 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600628 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400629
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400630 copy_size = Backup_Name.size();
631 // Check size
632 if (copy_size > MAX_BACKUP_NAME_LEN) {
633 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500634 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400635 return -2;
636 }
637
638 // Check each character
639 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500640 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400641 return 0; // A "0" (zero) means to use the current timestamp for the backup name
642 for (index=0; index<copy_size; index++) {
643 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500644 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 -0400645 // These are valid characters
646 // Numbers
647 // Upper case letters
648 // Lower case letters
649 // Space
650 // and -_.{}[]
651 } else {
652 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600653 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 -0400654 return -3;
655 }
656 }
657
Ethan Yonker53796e72019-01-11 22:49:52 -0600658 if (Must_Be_Unique) {
659 // Check to make sure that a backup with this name doesn't already exist
660 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
661 strcpy(backup_loc, Backup_Loc.c_str());
662 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
663 if (TWFunc::Path_Exists(tw_image_dir)) {
664 if (Display_Error)
665 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500666
Ethan Yonker53796e72019-01-11 22:49:52 -0600667 return -4;
668 }
669 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400670 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600671 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400672 return 0;
673}
674
bigbiffce8f83c2015-12-12 18:30:21 -0500675bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400676 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600677 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500678 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400679
bigbiffce8f83c2015-12-12 18:30:21 -0500680 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400681 return true;
682
Dees_Troy093b7642012-09-21 15:59:38 -0400683 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400684
Tom Hite5a926722014-09-15 01:31:03 +0000685 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400686 time(&start);
687
bigbiffce8f83c2015-12-12 18:30:21 -0500688 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500689 sync();
690 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400691 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500692 if (!part_settings->adbbackup && part_settings->generate_digest) {
693 if (!twrpDigestDriver::Make_Digest(Full_Filename))
694 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400695 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400696
bigbiffce8f83c2015-12-12 18:30:21 -0500697 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400698 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400699 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400700
701 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400702 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500703 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500704 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500705 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000706 }
Dees_Troy2727b992013-08-14 20:09:30 +0000707 sync();
708 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400709 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400710 if (!part_settings->adbbackup && part_settings->generate_digest) {
711 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500712 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500713 }
Tom Hite5a926722014-09-15 01:31:03 +0000714 }
Dees_Troy8170a922012-09-18 15:40:25 -0400715 }
716 }
717 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400718
Dees_Troy43d8b002012-09-17 16:00:01 -0400719 time(&stop);
that203bcc92015-05-09 17:27:33 +0200720 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000721 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400722
bigbiffce8f83c2015-12-12 18:30:21 -0500723 if (part_settings->Part->Backup_Method == BM_FILES) {
724 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400725 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500726 part_settings->img_time += backup_time;
727
Dees_Troy43d8b002012-09-17 16:00:01 -0400728 }
Tom Hite5a926722014-09-15 01:31:03 +0000729
Matt Mower02899552016-12-30 18:13:51 -0600730 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500731 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400732 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500733backup_error:
734 Clean_Backup_Folder(part_settings->Backup_Folder);
735 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
736 tw_set_default_metadata(backup_log.c_str());
737 TWFunc::SetPerformanceMode(false);
738 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500739}
740
bigbiffbf1d6722015-02-14 16:25:59 -0500741void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
742 DIR *d = opendir(Backup_Folder.c_str());
743 struct dirent *p;
744 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400745 vector<string> ext;
746
747 //extensions we should delete when cleaning
748 ext.push_back("win");
749 ext.push_back("md5");
750 ext.push_back("sha2");
751 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500752
Ethan Yonker74db1572015-10-28 12:44:49 -0500753 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500754
755 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500756 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500757 return;
758 }
759
Matt Mower2b18a532015-02-20 16:58:05 -0600760 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500761 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
762 continue;
763
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500764 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500765
766 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400767 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
768 if (path.substr(dot) == *i) {
769 r = unlink(path.c_str());
770 if (r != 0)
771 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500772 }
773 }
774 }
775 closedir(d);
776}
777
Ethan Yonker472f5062016-02-25 13:47:30 -0600778int TWPartitionManager::Check_Backup_Cancel() {
779 return stop_backup.get_value();
780}
781
bigbiff7abc5fe2015-01-17 16:53:12 -0500782int TWPartitionManager::Cancel_Backup() {
783 string Backup_Folder, Backup_Name, Full_Backup_Path;
784
785 stop_backup.set_value(1);
786
787 if (tar_fork_pid != 0) {
788 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
789 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500790 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500791 LOGINFO("Killing pid: %d\n", tar_fork_pid);
792 kill(tar_fork_pid, SIGUSR2);
793 while (kill(tar_fork_pid, 0) == 0) {
794 usleep(1000);
795 }
796 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
797 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
798 TWFunc::removeDir(Full_Backup_Path, false);
799 tar_fork_pid = 0;
800 }
801
802 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400803}
804
bigbiffce8f83c2015-12-12 18:30:21 -0500805int TWPartitionManager::Run_Backup(bool adbbackup) {
806 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400807 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500808 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600809 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400810 TWPartition* storage = NULL;
Dees_Troy8170a922012-09-18 15:40:25 -0400811 std::vector<TWPartition*>::iterator subpart;
Dees_Troy43d8b002012-09-17 16:00:01 -0400812 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600813 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500814 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500815 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400816 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500817 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400818
bigbiffce8f83c2015-12-12 18:30:21 -0500819 part_settings.img_bytes_remaining = 0;
820 part_settings.file_bytes_remaining = 0;
821 part_settings.img_time = 0;
822 part_settings.file_time = 0;
823 part_settings.img_bytes = 0;
824 part_settings.file_bytes = 0;
825 part_settings.PM_Method = PM_BACKUP;
826
bigbiffce8f83c2015-12-12 18:30:21 -0500827 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400828 time(&total_start);
829
830 Update_System_Details();
831
832 if (!Mount_Current_Storage(true))
833 return false;
834
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400835 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
836 if (skip_digest == 0)
837 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400838 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400839 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400840
bigbiffce8f83c2015-12-12 18:30:21 -0500841 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500842 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
843 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
844 Backup_Name = TWFunc::Get_Current_Date();
845 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000846 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500847 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400848 }
bigbiffce8f83c2015-12-12 18:30:21 -0500849
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500850 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500851 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500852
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500853 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400854
Dees_Troy2673cec2013-04-02 20:22:16 +0000855 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500856 DataManager::GetValue("tw_backup_list", Backup_List);
857 if (!Backup_List.empty()) {
858 end_pos = Backup_List.find(";", start_pos);
859 while (end_pos != string::npos && start_pos < Backup_List.size()) {
860 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500861 part_settings.Part = Find_Partition_By_Path(backup_path);
862 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500863 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500864 if (part_settings.Part->Backup_Method == BM_FILES)
865 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500866 else
bigbiffce8f83c2015-12-12 18:30:21 -0500867 part_settings.img_bytes += part_settings.Part->Backup_Size;
868 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500869 std::vector<TWPartition*>::iterator subpart;
870
871 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500872 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 -0500873 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500874 if ((*subpart)->Backup_Method == BM_FILES)
875 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500876 else
bigbiffce8f83c2015-12-12 18:30:21 -0500877 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500878 }
879 }
Dees_Troy8170a922012-09-18 15:40:25 -0400880 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500881 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500882 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 -0400883 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500884 start_pos = end_pos + 1;
885 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400886 }
887 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400888
889 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500890 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400891 return false;
892 }
bigbiffce8f83c2015-12-12 18:30:21 -0500893 if (adbbackup) {
894 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
895 return false;
896 }
897 }
898 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600899 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500900 part_settings.progress = &progress;
901
Ethan Yonker74db1572015-10-28 12:44:49 -0500902 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
903 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400904 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
905 if (storage != NULL) {
906 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500907 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400908 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500909 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400910 return false;
911 }
bigbiffbf1d6722015-02-14 16:25:59 -0500912
Matt Mowerbfccfb82016-04-25 23:22:31 -0500913 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500914
915 if (adbbackup)
916 disable_free_space_check = true;
917
bigbiffbf1d6722015-02-14 16:25:59 -0500918 if (!disable_free_space_check) {
919 if (free_space - (32 * 1024 * 1024) < total_bytes) {
920 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500921 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500922 return false;
923 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400924 }
bigbiffce8f83c2015-12-12 18:30:21 -0500925 part_settings.img_bytes_remaining = part_settings.img_bytes;
926 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400927
Ethan Yonker74db1572015-10-28 12:44:49 -0500928 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -0400929
930 int is_decrypted = 0;
931 int is_encrypted = 0;
932
933 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
934 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
935 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
936 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
937 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
938 gui_err("fail_backup_folder=Failed to make backup folder.");
939 return false;
940 }
Dees_Troyd4b22b02013-01-18 17:17:58 +0000941 }
942
Dees_Troy2673cec2013-04-02 20:22:16 +0000943 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400944
Dees_Troya13d74f2013-03-24 08:54:55 -0500945 start_pos = 0;
946 end_pos = Backup_List.find(";", start_pos);
947 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500948 if (stop_backup.get_value() != 0)
949 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500950 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500951 part_settings.Part = Find_Partition_By_Path(backup_path);
952 if (part_settings.Part != NULL) {
953 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500954 return false;
955 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500956 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 -0500957 }
958 start_pos = end_pos + 1;
959 end_pos = Backup_List.find(";", start_pos);
960 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400961
962 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500963 if (part_settings.img_time == 0)
964 part_settings.img_time = 1;
965 if (part_settings.file_time == 0)
966 part_settings.file_time = 1;
967 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
968 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400969
bigbiffce8f83c2015-12-12 18:30:21 -0500970 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600971 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 -0500972 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600973 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 -0400974
975 time(&total_stop);
976 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -0500977
978 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600979 if (!adbbackup) {
980 TWExclude twe;
981 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
982 } else
bigbiffce8f83c2015-12-12 18:30:21 -0500983 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500984 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -0400985
bigbiffce8f83c2015-12-12 18:30:21 -0500986 int prev_img_bps = 0, use_compression = 0;
987 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -0600988 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400989 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500990 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400991
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500992 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400993 if (use_compression)
994 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500995 else
Dees_Troy093b7642012-09-21 15:59:38 -0400996 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
997 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500998 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400999
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001000 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001001 if (use_compression)
1002 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1003 else
1004 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1005
Ethan Yonker74db1572015-10-28 12:44:49 -05001006 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001007 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001008 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001009 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001010 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001011 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001012 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001013
1014 if (part_settings.adbbackup) {
1015 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1016 return false;
1017 }
1018 }
1019 part_settings.adbbackup = false;
1020 DataManager::SetValue("tw_enable_adb_backup", 0);
1021
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001022 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001023}
1024
bigbiffce8f83c2015-12-12 18:30:21 -05001025bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001026 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001027
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001028 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001029 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1030 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001031 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1032 }
1033
Tom Hite5a926722014-09-15 01:31:03 +00001034 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001035
Dees_Troy4a2a1262012-09-18 09:33:47 -04001036 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001037
bigbiffce8f83c2015-12-12 18:30:21 -05001038 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001039 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001040 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001041 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001042 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001043 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001044 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001045
1046 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001047 part_settings->Part = *subpart;
1048 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1049 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001050 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001051 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001052 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001053 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001054 }
Dees_Troy8170a922012-09-18 15:40:25 -04001055 }
1056 }
1057 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001058 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001059 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001060 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1061
Dees_Troy4a2a1262012-09-18 09:33:47 -04001062 return true;
1063}
1064
Ethan Yonker472f5062016-02-25 13:47:30 -06001065int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001066 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001067 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001068
Dees_Troy4a2a1262012-09-18 09:33:47 -04001069 time_t rStart, rStop;
1070 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001071 string Restore_List, restore_path;
1072 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001073
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001074 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001075 part_settings.Part = NULL;
1076 part_settings.partition_count = 0;
1077 part_settings.total_restore_size = 0;
1078 part_settings.adbbackup = false;
1079 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001080
Ethan Yonker74db1572015-10-28 12:44:49 -05001081 gui_msg("restore_started=[RESTORE STARTED]");
1082 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001083
Dees_Troy4a2a1262012-09-18 09:33:47 -04001084 if (!Mount_Current_Storage(true))
1085 return false;
1086
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001087 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1088 if (check_digest > 0) {
1089 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1090 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1091 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001092 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001093 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001094 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001095 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001096 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001097
Dees_Troya13d74f2013-03-24 08:54:55 -05001098 if (!Restore_List.empty()) {
1099 end_pos = Restore_List.find(";", start_pos);
1100 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1101 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001102 part_settings.Part = Find_Partition_By_Path(restore_path);
1103 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001104 if (part_settings.Part->Mount_Read_Only) {
1105 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 -05001106 return false;
1107 }
bigbiffce8f83c2015-12-12 18:30:21 -05001108
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001109 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1110
1111 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001112 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001113 part_settings.partition_count++;
1114 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1115 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001116 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001117 std::vector<TWPartition*>::iterator subpart;
1118
1119 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001120 part_settings.Part = *subpart;
1121 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001122 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001123 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001124 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001125 }
1126 }
1127 }
1128 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001129 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001130 }
1131 start_pos = end_pos + 1;
1132 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001133 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001134 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001135
bigbiffce8f83c2015-12-12 18:30:21 -05001136 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001137 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001138 return false;
1139 }
1140
bigbiffce8f83c2015-12-12 18:30:21 -05001141 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1142 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 +00001143 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001144 ProgressTracking progress(part_settings.total_restore_size);
1145 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001146
Dees_Troya13d74f2013-03-24 08:54:55 -05001147 start_pos = 0;
1148 if (!Restore_List.empty()) {
1149 end_pos = Restore_List.find(";", start_pos);
1150 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1151 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001152
1153 part_settings.Part = Find_Partition_By_Path(restore_path);
1154 if (part_settings.Part != NULL) {
1155 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001156 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001157 return false;
1158 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001159 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001160 }
1161 start_pos = end_pos + 1;
1162 end_pos = Restore_List.find(";", start_pos);
1163 }
1164 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001165 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001166 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001167 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001168 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001169 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001170 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001171 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001172
Dees_Troy63c8df72012-09-10 14:02:05 -04001173 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001174}
1175
1176void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001177 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001178 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001179 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001180 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001181
1182 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001183 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1184 vector<string> adb_files;
1185 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1186 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1187 string adb_restore_file = adb_files.at(i);
1188 std::size_t pos = adb_restore_file.find_first_of(".");
1189 std::string path = "/" + adb_restore_file.substr(0, pos);
1190 Restore_List = path + ";";
1191 TWPartition* Part = Find_Partition_By_Path(path);
1192 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1193 adbbackup = true;
1194 }
1195 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001196 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001197 else {
1198 DIR* d;
1199 d = opendir(Restore_Name.c_str());
1200 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001201 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001202 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1203 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001204 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001205
1206 struct dirent* de;
1207 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001208 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001209 // Strip off three components
1210 char str[256];
1211 char* label;
1212 char* fstype = NULL;
1213 char* extn = NULL;
1214 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001215
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001216 strcpy(str, de->d_name);
1217 if (strlen(str) <= 2)
1218 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001219
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001220 if (get_date) {
1221 char file_path[255];
1222 struct stat st;
1223
1224 strcpy(file_path, Restore_Name.c_str());
1225 strcat(file_path, "/");
1226 strcat(file_path, str);
1227 stat(file_path, &st);
1228 string backup_date = ctime((const time_t*)(&st.st_mtime));
1229 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1230 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001231 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001232
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001233 label = str;
1234 ptr = label;
1235 while (*ptr && *ptr != '.') ptr++;
1236 if (*ptr == '.')
1237 {
1238 *ptr = 0x00;
1239 ptr++;
1240 fstype = ptr;
1241 }
1242 while (*ptr && *ptr != '.') ptr++;
1243 if (*ptr == '.')
1244 {
1245 *ptr = 0x00;
1246 ptr++;
1247 extn = ptr;
1248 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001249
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001250 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1251 int extnlength = strlen(extn);
1252 if (extnlength != 3 && extnlength != 6) continue;
1253 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1254 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001255
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001256 if (check_encryption) {
1257 string filename = Restore_Name + "/";
1258 filename += de->d_name;
1259 if (TWFunc::Get_File_Type(filename) == 2) {
1260 LOGINFO("'%s' is encrypted\n", filename.c_str());
1261 DataManager::SetValue("tw_restore_encrypted", 1);
1262 }
1263 }
1264 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1265
1266 TWPartition* Part = Find_Partition_By_Path(label);
1267 if (Part == NULL)
1268 {
1269 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1270 continue;
1271 }
1272
1273 Part->Backup_FileName = de->d_name;
1274 if (strlen(extn) > 3) {
1275 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1276 }
1277
dianlujitaob76a73a2020-04-30 20:33:20 +08001278 if (!Part->Is_SubPartition) {
1279 if (Part->Backup_Path == Get_Android_Root_Path())
1280 Restore_List += "/system;";
1281 else
1282 Restore_List += Part->Backup_Path + ";";
1283 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001284 }
1285 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001286 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001287
1288 if (adbbackup) {
1289 Restore_List = "ADB_Backup;";
1290 adbbackup = false;
1291 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001292
Dees_Troya13d74f2013-03-24 08:54:55 -05001293 // Set the final value
1294 DataManager::SetValue("tw_restore_list", Restore_List);
1295 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001296 return;
1297}
1298
1299int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001300 std::vector<TWPartition*>::iterator iter;
Mohd Faraz77a31912020-04-21 18:56:44 +05301301 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001302 int ret = false;
1303 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001304 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001305
dianlujitaob76a73a2020-04-30 20:33:20 +08001306 if (Local_Path == "/system")
1307 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001308 // Iterate through all partitions
1309 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001310 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Faraz77a31912020-04-21 18:56:44 +05301311 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1312 (*iter)->Find_Actual_Block_Device();
1313 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1314 {
1315 (*iter1)->Find_Actual_Block_Device();
1316 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1317 (*iter1)->UnMount(false);
1318 }
Dees_Troye58d5262012-09-21 12:27:57 -04001319 if (Path == "/and-sec")
1320 ret = (*iter)->Wipe_AndSec();
1321 else
1322 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001323 found = true;
1324 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1325 (*iter)->Wipe();
1326 }
1327 }
1328 if (found) {
1329 return ret;
1330 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001331 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 -04001332 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001333}
1334
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001335int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1336 std::vector<TWPartition*>::iterator iter;
1337 int ret = false;
1338 bool found = false;
1339 string Local_Path = TWFunc::Get_Root_Path(Path);
1340
1341 // Iterate through all partitions
1342 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1343 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1344 if (Path == "/and-sec")
1345 ret = (*iter)->Wipe_AndSec();
1346 else
1347 ret = (*iter)->Wipe(New_File_System);
1348 found = true;
1349 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1350 (*iter)->Wipe(New_File_System);
1351 }
1352 }
1353 if (found) {
1354 return ret;
1355 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001356 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 -05001357 return false;
1358}
1359
Dees_Troy51a0e822012-09-05 15:24:24 -04001360int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001361 std::vector<TWPartition*>::iterator iter;
1362 int ret = true;
1363
1364 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001365 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001366#ifdef TW_OEM_BUILD
1367 if ((*iter)->Mount_Point == "/data") {
1368 if (!(*iter)->Wipe_Encryption())
1369 ret = false;
1370 } else {
1371#endif
1372 if (!(*iter)->Wipe())
1373 ret = false;
1374#ifdef TW_OEM_BUILD
1375 }
1376#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001377 } else if ((*iter)->Has_Android_Secure) {
1378 if (!(*iter)->Wipe_AndSec())
1379 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001380 }
1381 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001382 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001383 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001384}
1385
Dees_Troy38bd7602012-09-14 13:33:53 -04001386int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1387 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001388 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001389
1390 if (!Mount_By_Path("/data", true))
1391 return false;
1392
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001393 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001394
1395 std::string cacheDir = TWFunc::get_cache_dir();
1396 if (cacheDir == NON_AB_CACHE_DIR) {
1397 if (!PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false)) {
1398 LOGINFO("Unable to mount %s for wiping cache.\n", NON_AB_CACHE_DIR);
1399 }
1400 dir.push_back(cacheDir + "dalvik-cache");
1401 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001402 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001403
Dees_Troy38bd7602012-09-14 13:33:53 -04001404 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001405 if (sdext && sdext->Is_Present && sdext->Mount(false))
1406 {
1407 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1408 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001409 dir.push_back("/sd-ext/dalvik-cache");
1410 }
1411 }
1412
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001413 if (cacheDir == NON_AB_CACHE_DIR) {
1414 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1415 } else {
1416 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1417 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001418 for (unsigned i = 0; i < dir.size(); ++i) {
1419 if (stat(dir.at(i).c_str(), &st) == 0) {
1420 TWFunc::removeDir(dir.at(i), false);
1421 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001422 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001423 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001424
1425 if (cacheDir == NON_AB_CACHE_DIR) {
1426 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1427 } else {
1428 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1429 }
1430
Dees_Troy38bd7602012-09-14 13:33:53 -04001431 return true;
1432}
1433
1434int TWPartitionManager::Wipe_Rotate_Data(void) {
1435 if (!Mount_By_Path("/data", true))
1436 return false;
1437
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001438 unlink("/data/misc/akmd*");
1439 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001440 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001441 return true;
1442}
1443
1444int TWPartitionManager::Wipe_Battery_Stats(void) {
1445 struct stat st;
1446
1447 if (!Mount_By_Path("/data", true))
1448 return false;
1449
1450 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001451 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001452 } else {
1453 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001454 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001455 }
1456 return true;
1457}
1458
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001459int TWPartitionManager::Wipe_Android_Secure(void) {
1460 std::vector<TWPartition*>::iterator iter;
1461 int ret = false;
1462 bool found = false;
1463
1464 // Iterate through all partitions
1465 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1466 if ((*iter)->Has_Android_Secure) {
1467 ret = (*iter)->Wipe_AndSec();
1468 found = true;
1469 }
1470 }
1471 if (found) {
1472 return ret;
1473 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001474 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001475 }
1476 return false;
1477}
1478
Dees_Troy38bd7602012-09-14 13:33:53 -04001479int TWPartitionManager::Format_Data(void) {
1480 TWPartition* dat = Find_Partition_By_Path("/data");
1481
1482 if (dat != NULL) {
1483 if (!dat->UnMount(true))
1484 return false;
1485
1486 return dat->Wipe_Encryption();
1487 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001488 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001489 return false;
1490 }
1491 return false;
1492}
1493
1494int TWPartitionManager::Wipe_Media_From_Data(void) {
1495 TWPartition* dat = Find_Partition_By_Path("/data");
1496
1497 if (dat != NULL) {
1498 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001499 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001500 return false;
1501 }
1502 if (!dat->Mount(true))
1503 return false;
1504
Ethan Yonker74db1572015-10-28 12:44:49 -05001505 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001506 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001507 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001508 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001509 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001510 return true;
1511 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001512 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001513 return false;
1514 }
1515 return false;
1516}
1517
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001518int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1519 std::vector<TWPartition*>::iterator iter;
1520 int ret = false;
1521 bool found = false;
1522 string Local_Path = TWFunc::Get_Root_Path(Path);
1523
1524 if (Local_Path == "/tmp" || Local_Path == "/")
1525 return true;
1526
1527 // Iterate through all partitions
1528 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1529 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1530 ret = (*iter)->Repair();
1531 found = true;
1532 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1533 (*iter)->Repair();
1534 }
1535 }
1536 if (found) {
1537 return ret;
1538 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001539 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 -05001540 } else {
1541 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1542 }
1543 return false;
1544}
1545
Ethan Yonkera2719152015-05-28 09:44:41 -05001546int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1547 std::vector<TWPartition*>::iterator iter;
1548 int ret = false;
1549 bool found = false;
1550 string Local_Path = TWFunc::Get_Root_Path(Path);
1551
1552 if (Local_Path == "/tmp" || Local_Path == "/")
1553 return true;
1554
1555 // Iterate through all partitions
1556 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1557 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1558 ret = (*iter)->Resize();
1559 found = true;
1560 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1561 (*iter)->Resize();
1562 }
1563 }
1564 if (found) {
1565 return ret;
1566 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001567 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 -05001568 } else {
1569 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1570 }
1571 return false;
1572}
1573
Dees_Troy51a0e822012-09-05 15:24:24 -04001574void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001575 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001576 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001577
Ethan Yonker74db1572015-10-28 12:44:49 -05001578 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001579 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001580 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001581 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001582 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001583 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1584 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001585 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001586 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1587 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1588 } else if ((*iter)->Mount_Point == "/cache") {
1589 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1590 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1591 } else if ((*iter)->Mount_Point == "/sd-ext") {
1592 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1593 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1594 if ((*iter)->Backup_Size == 0) {
1595 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1596 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1597 } else
1598 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001599 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001600 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001601 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001602 if ((*iter)->Backup_Size == 0) {
1603 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1604 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1605 } else
1606 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001607 } else if ((*iter)->Mount_Point == "/boot") {
1608 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1609 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1610 if ((*iter)->Backup_Size == 0) {
1611 DataManager::SetValue("tw_has_boot_partition", 0);
1612 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1613 } else
1614 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001615 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001616 } else {
1617 // Handle unmountable partitions in case we reset defaults
1618 if ((*iter)->Mount_Point == "/boot") {
1619 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1620 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1621 if ((*iter)->Backup_Size == 0) {
1622 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1623 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1624 } else
1625 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1626 } else if ((*iter)->Mount_Point == "/recovery") {
1627 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1628 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1629 if ((*iter)->Backup_Size == 0) {
1630 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1631 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1632 } else
1633 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001634 } else if ((*iter)->Mount_Point == "/data") {
1635 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001636 }
Dees_Troy51127312012-09-08 13:08:49 -04001637 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001638 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001639 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001640 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1641 string current_storage_path = DataManager::GetCurrentStoragePath();
1642 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001643 if (FreeStorage != NULL) {
1644 // Attempt to mount storage
1645 if (!FreeStorage->Mount(false)) {
Matt Mower2d50cad2015-12-03 22:26:55 -06001646 gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage"));
1647 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
Dees_Troy8170a922012-09-18 15:40:25 -04001648 } else {
1649 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1650 }
1651 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001652 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001653 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001654 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001655 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001656 return;
1657}
1658
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001659void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1660 TWPartition* dat = Find_Partition_By_Path("/data");
1661 if (dat != NULL) {
1662 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1663 dat->Is_Decrypted = true;
1664 if (!Block_Device.empty()) {
1665 dat->Decrypted_Block_Device = Block_Device;
1666 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1667 } else {
1668 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1669 }
1670 dat->Setup_File_System(false);
1671 dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc
1672
1673 // Sleep for a bit so that the device will be ready
1674 sleep(1);
1675 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1676 dat->Storage_Path = "/data/media/0";
1677 dat->Symlink_Path = dat->Storage_Path;
1678 DataManager::SetValue("tw_storage_path", "/data/media/0");
1679 DataManager::SetValue("tw_settings_path", "/data/media/0");
1680 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001681 }
1682 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001683 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001684 UnMount_Main_Partitions();
1685 } else
1686 LOGERR("Unable to locate data partition.\n");
1687}
1688
Dees_Troy51a0e822012-09-05 15:24:24 -04001689int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001690#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001691 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001692 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001693
Ethan Yonker253368a2014-11-25 15:00:52 -06001694 // Mount any partitions that need to be mounted for decrypt
1695 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1696 if ((*iter)->Mount_To_Decrypt) {
1697 (*iter)->Mount(true);
1698 }
a39552696ff55ce2013-01-08 16:14:56 +00001699 }
oshmouna82a7542018-04-10 17:45:55 +02001700 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001701
Ethan Yonkera1de1492015-11-04 11:58:27 -06001702 property_get("ro.crypto.state", crypto_state, "error");
1703 if (strcmp(crypto_state, "error") == 0) {
1704 property_set("ro.crypto.state", "encrypted");
1705 // Sleep for a bit so that services can start if needed
1706 sleep(1);
1707 }
1708
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001709 if (DataManager::GetIntValue(TW_IS_FBE)) {
1710#ifdef TW_INCLUDE_FBE
1711 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1712 return -1;
1713 int retry_count = 10;
1714 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
1715 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1716 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1717 LOGINFO("Decrypting FBE for user %i\n", user_id);
1718 if (Decrypt_User(user_id, Password)) {
1719 Post_Decrypt("");
1720 return 0;
1721 }
1722#else
1723 LOGERR("FBE support is not present\n");
1724#endif
1725 return -1;
1726 }
1727
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001728 int pwret = -1;
1729 pid_t pid = fork();
1730 if (pid < 0) {
1731 LOGERR("fork failed\n");
1732 return -1;
1733 } else if (pid == 0) {
1734 // Child process
1735 char cPassword[255];
1736 strcpy(cPassword, Password.c_str());
1737 int ret = cryptfs_check_passwd(cPassword);
1738 exit(ret);
1739 } else {
1740 // Parent
1741 int status;
1742 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1743 pwret = -1;
1744 else
1745 pwret = WEXITSTATUS(status) ? -1 : 0;
1746 }
a39552696ff55ce2013-01-08 16:14:56 +00001747
nkk7171c6c502017-01-05 23:55:05 +02001748#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1749 if (pwret != 0) {
1750 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001751 switch (pwret) {
1752 case VD_SUCCESS:
1753 break;
1754 case VD_ERR_MISSING_VDC:
1755 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1756 break;
1757 case VD_ERR_MISSING_VOLD:
1758 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1759 break;
1760 }
nkk7171c6c502017-01-05 23:55:05 +02001761 }
1762#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1763
Ethan Yonker253368a2014-11-25 15:00:52 -06001764 // Unmount any partitions that were needed for decrypt
1765 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1766 if ((*iter)->Mount_To_Decrypt) {
1767 (*iter)->UnMount(false);
1768 }
1769 }
oshmouna82a7542018-04-10 17:45:55 +02001770 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001771
a39552696ff55ce2013-01-08 16:14:56 +00001772 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001773 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001774 return -1;
1775 }
a39552696ff55ce2013-01-08 16:14:56 +00001776
Dees_Troy5bf43922012-09-07 16:07:55 -04001777 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1778 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001779 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001780 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001781 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001782 }
1783 return 0;
1784#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001785 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001786 return -1;
1787#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001788 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001789}
1790
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001791int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001792 std::vector<TWPartition*>::iterator iter;
1793 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1794 if ((*iter)->Has_Data_Media) {
1795 if ((*iter)->Mount(true)) {
1796 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1797 return -1;
1798 }
1799 }
1800 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001801 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001802 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001803 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001804}
1805
Ethan Yonker66a19492015-12-10 10:19:45 -06001806TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001807 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1808
1809 if (!Path.empty()) {
1810 string Search_Path = TWFunc::Get_Root_Path(Path);
1811 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001812 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001813 iter++;
1814 break;
1815 }
1816 }
1817 }
1818
1819 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001820 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1821 // do nothing, do not return this type of partition
1822 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001823 return (*iter);
1824 }
1825 }
1826
1827 return NULL;
1828}
1829
Dees_Troyd21618c2012-10-14 18:48:49 -04001830int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001831 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1832
1833 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001834 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1835 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 -04001836 return false;
1837 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001838 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1839 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001840 return false;
1841
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001842 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001843 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001844 return false;
1845 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001846 return true;
1847}
1848
Dees_Troy8170a922012-09-18 15:40:25 -04001849int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001850 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001851 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001852
Ethan Yonker47360be2014-04-01 10:34:34 -05001853 string Lun_File_str = CUSTOM_LUN_FILE;
1854 size_t found = Lun_File_str.find("%");
1855 if (found != string::npos) {
1856 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1857 if (TWFunc::Path_Exists(lun_file))
1858 has_multiple_lun = true;
1859 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001860 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001861 if (!has_multiple_lun) {
1862 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1863 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1864 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001865 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001866 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001867 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1868 goto error_handle;
1869 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001870 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001871 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001872 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001873 }
1874 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001875 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001876 }
Dees_Troy8170a922012-09-18 15:40:25 -04001877 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001878 LOGINFO("Device has multiple lun files\n");
1879 TWPartition* Mount1;
1880 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001881 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001882 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001883 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001884 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1885 goto error_handle;
1886 }
Matt Moweree717062014-04-26 01:46:46 -05001887 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001888 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001889 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001890 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001891 }
1892 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001893 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001894 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001895 }
Dees_Troy8170a922012-09-18 15:40:25 -04001896 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001897 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001898 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001899 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001900error_handle:
1901 if (mtp_was_enabled)
1902 if (!Enable_MTP())
1903 Disable_MTP();
1904 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001905}
1906
1907int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001908 int index, ret;
1909 char lun_file[255], ch[2] = {0, 0};
1910 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001911
1912 for (index=0; index<2; index++) {
1913 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001914 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001915 if (ret < 0) {
1916 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001917 }
Dees_Troy8170a922012-09-18 15:40:25 -04001918 }
Dees_Troye58d5262012-09-21 12:27:57 -04001919 Mount_All_Storage();
1920 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001921 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001922 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001923 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001924 if (mtp_was_enabled)
1925 if (!Enable_MTP())
1926 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001927 if (ret < 0 && index == 0) {
1928 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1929 return false;
1930 } else {
1931 return true;
1932 }
Dees_Troy8170a922012-09-18 15:40:25 -04001933 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04001934}
1935
1936void TWPartitionManager::Mount_All_Storage(void) {
1937 std::vector<TWPartition*>::iterator iter;
1938
1939 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1940 if ((*iter)->Is_Storage)
1941 (*iter)->Mount(false);
1942 }
Dees_Troy2c50e182012-09-26 20:05:28 -04001943}
Dees_Troy9350b8d2012-09-27 12:38:38 -04001944
Dees_Troyd0384ef2012-10-12 12:15:42 -04001945void TWPartitionManager::UnMount_Main_Partitions(void) {
1946 // Unmounts system and data if data is not data/media
1947 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00001948 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04001949
1950 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
1951
Captain Throwback9d6feb52018-07-27 10:05:24 -04001952 UnMount_By_Path(Get_Android_Root_Path(), true);
Ethan Yonker6277c792014-09-15 14:54:30 -05001953 if (!datamedia)
1954 UnMount_By_Path("/data", true);
1955
Dees_Troyd0384ef2012-10-12 12:15:42 -04001956 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
1957 Boot_Partition->UnMount(true);
1958}
1959
Dees_Troy9350b8d2012-09-27 12:38:38 -04001960int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06001961 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06001962 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 -04001963 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04001964
Ethan Yonker74db1572015-10-28 12:44:49 -05001965 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001966
1967 // Locate and validate device to partition
1968 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1969
Ethan Yonker66a19492015-12-10 10:19:45 -06001970 if (SDCard->Is_Adopted_Storage)
1971 SDCard->Revert_Adopted();
1972
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05001973 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001974 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001975 return false;
1976 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001977
1978 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04001979 if (!SDCard->UnMount(true))
1980 return false;
1981 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
1982 if (SDext != NULL) {
1983 if (!SDext->UnMount(true))
1984 return false;
1985 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001986 char* swappath = getenv("SWAPPATH");
1987 if (swappath != NULL) {
1988 LOGINFO("Unmounting swap at '%s'\n", swappath);
1989 umount(swappath);
1990 }
Vojtech Bocek05534202013-09-11 08:11:56 +02001991
Ethan Yonker483e9f42016-01-11 22:21:18 -06001992 // Determine block device
1993 if (SDCard->Alternate_Block_Device.empty()) {
1994 SDCard->Find_Actual_Block_Device();
1995 Device = SDCard->Actual_Block_Device;
1996 // Just use the root block device
1997 Device.resize(strlen("/dev/block/mmcblkX"));
1998 } else {
1999 Device = SDCard->Alternate_Block_Device;
2000 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002001
2002 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002003 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002004
2005 DataManager::GetValue("tw_sdext_size", ext);
2006 DataManager::GetValue("tw_swap_size", swap);
2007 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2008 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002009 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);
2010
2011 // Determine partition sizes
2012 if (swap == 0 && ext == 0) {
2013 fat_str = "-0";
2014 } else {
2015 memset(temp, 0, sizeof(temp));
2016 sprintf(temp, "%i", fat_size);
2017 fat_str = temp;
2018 fat_str += "MB";
2019 }
2020 if (swap == 0) {
2021 ext_str = "-0";
2022 } else {
2023 memset(temp, 0, sizeof(temp));
2024 sprintf(temp, "%i", ext);
2025 ext_str = "+";
2026 ext_str += temp;
2027 ext_str += "MB";
2028 }
2029
Dees_Troy9350b8d2012-09-27 12:38:38 -04002030 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002031 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002032 return false;
2033 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002034
Ethan Yonker74db1572015-10-28 12:44:49 -05002035 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002036 Command = "sgdisk --zap-all " + 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_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002040 Update_System_Details();
2041 return false;
2042 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002043 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002044 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 +00002045 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002046 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002047 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002048 return false;
2049 }
2050 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002051 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002052 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002053 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002054 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002055 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002056 Update_System_Details();
2057 return false;
2058 }
2059 }
2060 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002061 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002062 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 +00002063 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002064 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002065 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002066 Update_System_Details();
2067 return false;
2068 }
2069 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002070
2071 // Convert GPT to MBR
2072 Command = "sgdisk --gpttombr " + Device;
2073 if (TWFunc::Exec_Cmd(Command) != 0)
2074 LOGINFO("Failed to covert partition GPT to MBR\n");
2075
2076 // Tell the kernel to rescan the partition table
2077 int fd = open(Device.c_str(), O_RDONLY);
2078 ioctl(fd, BLKRRPART, 0);
2079 close(fd);
2080
2081 string format_device = Device;
2082 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2083 format_device += "p";
2084
2085 // Format new partitions to proper file system
2086 if (fat_size > 0) {
2087 Command = "mkfs.fat " + format_device + "1";
2088 TWFunc::Exec_Cmd(Command);
2089 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002090 if (ext > 0) {
2091 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002092 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2093 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2094 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2095 TWFunc::Exec_Cmd(Command);
2096 } else {
2097 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002098 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002099 }
2100 if (swap > 0) {
2101 Command = "mkswap " + format_device;
2102 if (ext > 0)
2103 Command += "3";
2104 else
2105 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002106 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002107 }
2108
Ethan Yonker483e9f42016-01-11 22:21:18 -06002109 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2110 if (SDCard->Mount(true)) {
2111 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2112 mkdir(TWRP_Folder.c_str(), 0777);
2113 DataManager::Flush();
2114 }
2115
Dees_Troy9350b8d2012-09-27 12:38:38 -04002116 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002117 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002118 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002119}
Dees_Troya13d74f2013-03-24 08:54:55 -05002120
2121void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2122 std::vector<TWPartition*>::iterator iter;
2123 if (ListType == "mount") {
2124 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002125 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002126 struct PartitionList part;
2127 part.Display_Name = (*iter)->Display_Name;
2128 part.Mount_Point = (*iter)->Mount_Point;
2129 part.selected = (*iter)->Is_Mounted();
2130 Partition_List->push_back(part);
2131 }
2132 }
2133 } else if (ListType == "storage") {
2134 char free_space[255];
2135 string Current_Storage = DataManager::GetCurrentStoragePath();
2136 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2137 if ((*iter)->Is_Storage) {
2138 struct PartitionList part;
2139 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2140 part.Display_Name = (*iter)->Storage_Name + " (";
2141 part.Display_Name += free_space;
2142 part.Display_Name += "MB)";
2143 part.Mount_Point = (*iter)->Storage_Path;
2144 if ((*iter)->Storage_Path == Current_Storage)
2145 part.selected = 1;
2146 else
2147 part.selected = 0;
2148 Partition_List->push_back(part);
2149 }
2150 }
2151 } else if (ListType == "backup") {
2152 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002153 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002154 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002155 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002156 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002157 Backup_Size = (*iter)->Backup_Size;
2158 if ((*iter)->Has_SubPartition) {
2159 std::vector<TWPartition*>::iterator subpart;
2160
2161 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2162 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2163 Backup_Size += (*subpart)->Backup_Size;
2164 }
2165 }
2166 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002167 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2168 part.Display_Name += backup_size;
2169 part.Display_Name += "MB)";
2170 part.Mount_Point = (*iter)->Backup_Path;
2171 part.selected = 0;
2172 Partition_List->push_back(part);
2173 }
2174 }
2175 } else if (ListType == "restore") {
2176 string Restore_List, restore_path;
2177 TWPartition* restore_part = NULL;
2178
2179 DataManager::GetValue("tw_restore_list", Restore_List);
2180 if (!Restore_List.empty()) {
2181 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2182 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2183 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002184 struct PartitionList part;
2185 if (restore_path.compare("ADB_Backup") == 0) {
2186 part.Display_Name = "ADB Backup";
2187 part.Mount_Point = "ADB Backup";
2188 part.selected = 1;
2189 Partition_List->push_back(part);
2190 break;
2191 }
Dees_Troy59df9262013-06-19 14:53:57 -05002192 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002193 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002194 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002195 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002196 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002197 part.Display_Name = restore_part->Backup_Display_Name;
2198 part.Mount_Point = restore_part->Backup_Path;
2199 part.selected = 1;
2200 Partition_List->push_back(part);
2201 }
2202 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002203 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002204 }
2205 start_pos = end_pos + 1;
2206 end_pos = Restore_List.find(";", start_pos);
2207 }
2208 }
2209 } else if (ListType == "wipe") {
2210 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002211 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002212 dalvik.Mount_Point = "DALVIK";
2213 dalvik.selected = 0;
2214 Partition_List->push_back(dalvik);
2215 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2216 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2217 struct PartitionList part;
2218 part.Display_Name = (*iter)->Display_Name;
2219 part.Mount_Point = (*iter)->Mount_Point;
2220 part.selected = 0;
2221 Partition_List->push_back(part);
2222 }
2223 if ((*iter)->Has_Android_Secure) {
2224 struct PartitionList part;
2225 part.Display_Name = (*iter)->Backup_Display_Name;
2226 part.Mount_Point = (*iter)->Backup_Path;
2227 part.selected = 0;
2228 Partition_List->push_back(part);
2229 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002230 if ((*iter)->Has_Data_Media) {
2231 struct PartitionList datamedia;
2232 datamedia.Display_Name = (*iter)->Storage_Name;
2233 datamedia.Mount_Point = "INTERNAL";
2234 datamedia.selected = 0;
2235 Partition_List->push_back(datamedia);
2236 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002237 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002238 } else if (ListType == "flashimg") {
2239 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2240 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2241 struct PartitionList part;
2242 part.Display_Name = (*iter)->Backup_Display_Name;
2243 part.Mount_Point = (*iter)->Backup_Path;
2244 part.selected = 0;
2245 Partition_List->push_back(part);
2246 }
2247 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002248 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2249 TWPartition* boot = Find_Partition_By_Path("/boot");
2250 if (boot) {
2251 // Allow flashing kernels and ramdisks
2252 struct PartitionList repack_ramdisk;
2253 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2254 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2255 repack_ramdisk.selected = 0;
2256 Partition_List->push_back(repack_ramdisk);
2257 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2258 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2259 repack_kernel.Mount_Point = "/repack_kernel";
2260 repack_kernel.selected = 0;
2261 Partition_List->push_back(repack_kernel);*/
2262 }
2263 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002264 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002265 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002266 }
2267}
2268
2269int TWPartitionManager::Fstab_Processed(void) {
2270 return Partitions.size();
2271}
Dees_Troyd93bda52013-07-03 19:55:19 +00002272
2273void TWPartitionManager::Output_Storage_Fstab(void) {
2274 std::vector<TWPartition*>::iterator iter;
2275 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002276 std::string Temp;
2277 std::string cacheDir = TWFunc::get_cache_dir();
2278
2279 if (cacheDir.empty()) {
2280 LOGINFO("Unable to find cache directory\n");
2281 return;
2282 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002283
2284 std::string storageFstab = TWFunc::get_cache_dir() + "recovery/storage.fstab";
2285 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002286
2287 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002288 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002289 return;
2290 }
2291
2292 // Iterate through all partitions
2293 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2294 if ((*iter)->Is_Storage) {
2295 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2296 strcpy(storage_partition, Temp.c_str());
2297 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2298 }
2299 }
2300 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002301}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002302
2303TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2304{
2305 TWPartition *res = NULL;
2306 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002307 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002308 continue;
2309
Matt Mowera8a89d12016-12-30 18:10:37 -06002310 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002311 return *iter;
2312
Matt Mowera8a89d12016-12-30 18:10:37 -06002313 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002314 res = *iter;
2315 }
2316 return res;
2317}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002318
2319bool TWPartitionManager::Enable_MTP(void) {
2320#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002321 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002322 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002323 return true;
2324 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002325
2326 int mtppipe[2];
2327
2328 if (pipe(mtppipe) < 0) {
2329 LOGERR("Error creating MTP pipe\n");
2330 return false;
2331 }
2332
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002333 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002334 property_get("sys.usb.config", old_value, "");
2335 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002336 char vendor[PROPERTY_VALUE_MAX];
2337 char product[PROPERTY_VALUE_MAX];
2338 property_set("sys.usb.config", "none");
2339 property_get("usb.vendor", vendor, "18D1");
2340 property_get("usb.product.mtpadb", product, "4EE2");
2341 string vendorstr = vendor;
2342 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002343 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2344 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002345 property_set("sys.usb.config", "mtp,adb");
2346 }
Matt Mower653a1702017-02-16 10:38:52 -06002347 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002348 * twrp set tw_mtp_debug 1
2349 */
2350 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002351 mtppid = mtp->forkserver(mtppipe);
2352 if (mtppid) {
2353 close(mtppipe[0]); // Host closes read side
2354 mtp_write_fd = mtppipe[1];
2355 DataManager::SetValue("tw_mtp_enabled", 1);
2356 Add_All_MTP_Storage();
2357 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002358 } else {
2359 close(mtppipe[0]);
2360 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002361 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002362 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002363 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002364#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002365 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002366#endif
2367 DataManager::SetValue("tw_mtp_enabled", 0);
2368 return false;
2369}
2370
Ethan Yonker1b039202015-01-30 10:08:48 -06002371void TWPartitionManager::Add_All_MTP_Storage(void) {
2372#ifdef TW_HAS_MTP
2373 std::vector<TWPartition*>::iterator iter;
2374
2375 if (!mtppid)
2376 return; // MTP is not enabled
2377
2378 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2379 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2380 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2381 }
2382#else
2383 return;
2384#endif
2385}
2386
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002387bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002388 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002389 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002390 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002391 if (strcmp(old_value, "adb") != 0) {
2392 char vendor[PROPERTY_VALUE_MAX];
2393 char product[PROPERTY_VALUE_MAX];
2394 property_set("sys.usb.config", "none");
2395 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002396 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002397 string vendorstr = vendor;
2398 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002399 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2400 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002401 usleep(2000);
2402 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002403#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002404 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002405 LOGINFO("Disabling MTP\n");
2406 int status;
2407 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002408 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002409 // We don't care about the exit value, but this prevents a zombie process
2410 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002411 close(mtp_write_fd);
2412 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002413 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002414#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002415 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002416#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002417 DataManager::SetValue("tw_mtp_enabled", 0);
2418 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002419#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002420 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002421}
Ethan Yonker726a0202014-12-16 20:01:38 -06002422
2423TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2424 std::vector<TWPartition*>::iterator iter;
2425
2426 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2427 if ((*iter)->MTP_Storage_ID == Storage_ID)
2428 return (*iter);
2429 }
2430 return NULL;
2431}
2432
2433bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2434#ifdef TW_HAS_MTP
2435 struct mtpmsg mtp_message;
2436
2437 if (!mtppid)
2438 return false; // MTP is disabled
2439
2440 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002441 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002442 return false;
2443 }
2444
2445 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002446 if (Part->MTP_Storage_ID == 0)
2447 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002448 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2449 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2450 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2451 mtp_message.storage_id = Part->MTP_Storage_ID;
2452 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002453 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002454 return false;
2455 } else {
2456 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2457 return true;
2458 }
2459 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2460 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2461 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002462 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2463 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2464 return false;
2465 }
2466 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2467 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2468 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2469 return false;
2470 }
2471 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002472 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002473 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 -06002474 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002475 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002476 return false;
2477 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002478 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002479 return true;
2480 }
2481 } else {
2482 LOGERR("Unknown MTP message type: %i\n", message_type);
2483 }
2484 } else {
2485 // This hopefully never happens as the error handling should
2486 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002487 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002488 }
2489 return true;
2490#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002491 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002492 DataManager::SetValue("tw_mtp_enabled", 0);
2493 return false;
2494#endif
2495}
2496
2497bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2498#ifdef TW_HAS_MTP
2499 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2500 if (Part) {
2501 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2502 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002503 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002504 }
2505#endif
2506 return false;
2507}
2508
2509bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2510#ifdef TW_HAS_MTP
2511 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2512 if (Part) {
2513 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2514 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002515 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002516 }
2517#endif
2518 return false;
2519}
2520
2521bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2522#ifdef TW_HAS_MTP
2523 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2524 if (Part) {
2525 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2526 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002527 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002528 }
2529#endif
2530 return false;
2531}
2532
2533bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2534#ifdef TW_HAS_MTP
2535 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2536 if (Part) {
2537 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2538 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002539 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002540 }
2541#endif
2542 return false;
2543}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002544
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002545bool TWPartitionManager::Flash_Image(string& path, string& filename) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002546 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002547 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002548 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002549 size_t start_pos = 0, end_pos = 0;
2550
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002551 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002552
bigbiffce8f83c2015-12-12 18:30:21 -05002553 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2554 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2555
2556 if (!TWFunc::Path_Exists(full_filename)) {
2557 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002558 return false;
2559 }
bigbiffce8f83c2015-12-12 18:30:21 -05002560 if (!TWFunc::Path_Exists(full_filename)) {
2561 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002562 return false;
2563 }
2564 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002565
Ethan Yonker53796e72019-01-11 22:49:52 -06002566 DataManager::GetValue("tw_flash_partition", Flash_List);
2567 Repack_Type repack = REPLACE_NONE;
2568 if (Flash_List == "/repack_ramdisk;") {
2569 repack = REPLACE_RAMDISK;
2570 } else if (Flash_List == "/repack_kernel;") {
2571 repack = REPLACE_KERNEL;
2572 }
2573 if (repack != REPLACE_NONE) {
2574 Repack_Options_struct Repack_Options;
2575 Repack_Options.Type = repack;
2576 Repack_Options.Disable_Verity = false;
2577 Repack_Options.Disable_Force_Encrypt = false;
2578 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
2579 return Repack_Images(full_filename, Repack_Options);
2580 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002581 PartitionSettings part_settings;
2582 part_settings.Backup_Folder = path;
2583 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2584 ProgressTracking progress(total_bytes);
2585 part_settings.progress = &progress;
2586 part_settings.adbbackup = false;
2587 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002588 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002589 if (!Flash_List.empty()) {
2590 end_pos = Flash_List.find(";", start_pos);
2591 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2592 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2593 flash_part = Find_Partition_By_Path(flash_path);
2594 if (flash_part != NULL) {
2595 partition_count++;
2596 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002597 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002598 return false;
2599 }
2600 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002601 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002602 return false;
2603 }
2604 start_pos = end_pos + 1;
2605 end_pos = Flash_List.find(";", start_pos);
2606 }
2607 }
2608
2609 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002610 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002611 return false;
2612 }
2613
2614 DataManager::SetProgress(0.0);
2615 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002616 flash_part->Backup_FileName = filename;
2617 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002618 return false;
2619 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002620 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002621 return false;
2622 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002623 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002624 return true;
2625}
Ethan Yonker74db1572015-10-28 12:44:49 -05002626
2627void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2628 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2629 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002630 if (part->Is_Adopted_Storage) {
2631 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2632 part->Backup_Display_Name = part->Display_Name;
2633 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2634 } else {
2635 part->Display_Name = gui_lookup(resource_name, default_value);
2636 part->Backup_Display_Name = part->Display_Name;
2637 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002638 }
2639}
2640
2641void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2642 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2643 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002644 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002645 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002646 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002647 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 = part->Display_Name;
2651 if (part->Is_Storage)
2652 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2653 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002654 }
2655}
2656
Ethan Yonker01f4e032017-02-03 15:30:52 -06002657void 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) {
2658 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2659 if (part) {
2660 if (part->Is_Adopted_Storage) {
2661 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2662 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2663 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2664 } else {
2665 part->Display_Name = gui_lookup(resource_name, default_value);
2666 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2667 if (part->Is_Storage)
2668 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2669 }
2670 }
2671}
2672
Ethan Yonker74db1572015-10-28 12:44:49 -05002673void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002674 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002675 Translate_Partition("/system", "system", "System");
2676 Translate_Partition("/system_image", "system_image", "System Image");
2677 Translate_Partition("/vendor", "vendor", "Vendor");
2678 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2679 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002680 Translate_Partition("/boot", "boot", "Boot");
2681 Translate_Partition("/recovery", "recovery", "Recovery");
2682 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002683 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002684 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2685 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2686 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2687 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002688 } else {
2689 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002690 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002691 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2692 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002693 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2694 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2695
2696 // Android secure is a special case
2697 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2698 if (part)
2699 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2700
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002701 std::vector<TWPartition*>::iterator sysfs;
2702 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2703 if (!(*sysfs)->Sysfs_Entry.empty()) {
2704 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2705 }
2706 }
2707
Ethan Yonker74db1572015-10-28 12:44:49 -05002708 // This updates the text on all of the storage selection buttons in the GUI
2709 DataManager::SetBackupFolder();
2710}
Ethan Yonker66a19492015-12-10 10:19:45 -06002711
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002712bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002713#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002714 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002715 if (!Mount_By_Path("/data", false)) {
2716 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002717 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002718 }
2719 LOGINFO("Decrypt adopted storage starting\n");
2720 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2721 xml_document<> *doc = NULL;
2722 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002723 string Primary_Storage_UUID = "";
2724 if (xmlFile != NULL) {
2725 LOGINFO("successfully loaded storage.xml\n");
2726 doc = new xml_document<>();
2727 doc->parse<0>(xmlFile);
2728 volumes = doc->first_node("volumes");
2729 if (volumes) {
2730 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2731 if (psuuid) {
2732 Primary_Storage_UUID = psuuid->value();
2733 }
2734 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002735 } else {
2736 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2737 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002738 }
2739 std::vector<TWPartition*>::iterator adopt;
2740 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2741 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2742 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002743 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002744 if (volumes) {
2745 xml_node<>* volume = volumes->first_node("volume");
2746 while (volume) {
2747 xml_attribute<>* guid = volume->first_attribute("partGuid");
2748 if (guid) {
2749 string GUID = (*adopt)->Adopted_GUID.c_str();
2750 GUID.insert(8, "-");
2751 GUID.insert(13, "-");
2752 GUID.insert(18, "-");
2753 GUID.insert(23, "-");
2754
2755 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2756 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002757 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002758 (*adopt)->Storage_Name = attr->value();
2759 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2760 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2761 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2762 }
2763 attr = volume->first_attribute("fsUuid");
2764 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2765 TWPartition* Dat = Find_Partition_By_Path("/data");
2766 if (Dat) {
2767 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2768 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2769 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2770 Dat->Symlink_Mount_Point = "";
2771 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2772 Dat->UnMount(false);
2773 Dat->Mount(false);
2774 (*adopt)->UnMount(false);
2775 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002776 }
2777 }
2778 break;
2779 }
2780 }
2781 volume = volume->next_sibling("volume");
2782 }
2783 }
nkk71ffb02bd2017-06-04 23:12:16 +03002784 Update_System_Details();
2785 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002786 }
2787 }
2788 }
2789 if (xmlFile) {
2790 doc->clear();
2791 delete doc;
2792 free(xmlFile);
2793 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002794 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002795#else
2796 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002797 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002798#endif
2799}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002800
2801void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2802 std::vector<TWPartition*>::iterator iter;
2803 string Local_Path = TWFunc::Get_Root_Path(Path);
2804
2805 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2806 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2807 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2808 Partitions.erase(iter);
2809 return;
2810 }
2811 }
2812}
Ethan Yonker1b190162016-12-05 15:25:19 -06002813
2814void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2815 if (Slot != "A" && Slot != "B") {
2816 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2817 return;
2818 }
2819 if (Active_Slot_Display == Slot)
2820 return;
2821 LOGINFO("Setting active slot %s\n", Slot.c_str());
2822#ifdef AB_OTA_UPDATER
2823 if (!Active_Slot_Display.empty()) {
2824 const hw_module_t *hw_module;
2825 boot_control_module_t *module;
2826 int ret;
2827 ret = hw_get_module("bootctrl", &hw_module);
2828 if (ret != 0) {
2829 LOGERR("Error getting bootctrl module.\n");
2830 } else {
2831 module = (boot_control_module_t*) hw_module;
2832 module->init(module);
2833 int slot_number = 0;
2834 if (Slot == "B")
2835 slot_number = 1;
2836 if (module->setActiveBootSlot(module, slot_number))
2837 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2838 }
2839 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
2840 }
2841#else
2842 LOGERR("Boot slot feature not present\n");
2843#endif
2844 Active_Slot_Display = Slot;
2845 if (Fstab_Processed())
2846 Update_System_Details();
2847}
2848string TWPartitionManager::Get_Active_Slot_Suffix() {
2849 if (Active_Slot_Display == "A")
2850 return "_a";
2851 return "_b";
2852}
2853string TWPartitionManager::Get_Active_Slot_Display() {
2854 return Active_Slot_Display;
2855}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002856
Captain Throwback9d6feb52018-07-27 10:05:24 -04002857string TWPartitionManager::Get_Android_Root_Path() {
Chaosmasterf6e42ce2020-01-27 00:17:04 +01002858 if (property_get_bool("ro.twrp.sar", false))
dianlujitao58f1a632020-01-16 23:03:56 +08002859 return "/system_root";
2860 return "/system";
Captain Throwback9d6feb52018-07-27 10:05:24 -04002861}
2862
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002863void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
2864 std::vector<TWPartition*>::iterator iter;
2865
2866 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
2867 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
2868 TWPartition *part = *iter;
2869 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
2870 (*iter)->UnMount(false);
2871 rmdir((*iter)->Mount_Point.c_str());
2872 iter = Partitions.erase(iter);
2873 delete part;
2874 } else {
2875 iter++;
2876 }
2877 }
2878}
2879
2880void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
2881 std::vector<TWPartition*>::iterator iter;
2882
2883 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2884 if (!(*iter)->Sysfs_Entry.empty()) {
2885 string device;
2886 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
2887 if (wildcard != string::npos) {
2888 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
2889 } else {
2890 device = (*iter)->Sysfs_Entry;
2891 }
2892 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
2893 // Found a match
2894 if (uevent_data.action == "add") {
2895 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
2896 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
2897 (*iter)->Is_Present = true;
2898 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
2899 if (!Decrypt_Adopted()) {
2900 LOGINFO("No adopted storage so finding actual block device\n");
2901 (*iter)->Find_Actual_Block_Device();
2902 }
2903 return;
2904 } else if (uevent_data.action == "remove") {
2905 (*iter)->Is_Present = false;
2906 (*iter)->Primary_Block_Device = "";
2907 (*iter)->Actual_Block_Device = "";
2908 Remove_Uevent_Devices((*iter)->Mount_Point);
2909 return;
2910 }
2911 }
2912 }
2913 }
2914 LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str());
2915}
2916
2917void TWPartitionManager::setup_uevent() {
2918 struct sockaddr_nl nls;
2919
2920 if (uevent_pfd.fd >= 0) {
2921 LOGINFO("uevent already set up\n");
2922 return;
2923 }
2924
2925 // Open hotplug event netlink socket
2926 memset(&nls,0,sizeof(struct sockaddr_nl));
2927 nls.nl_family = AF_NETLINK;
2928 nls.nl_pid = getpid();
2929 nls.nl_groups = -1;
2930 uevent_pfd.events = POLLIN;
2931 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
2932 if (uevent_pfd.fd==-1) {
2933 LOGERR("uevent not root\n");
2934 return;
2935 }
2936
2937 // Listen to netlink socket
2938 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
2939 LOGERR("Bind failed\n");
2940 return;
2941 }
2942 set_select_fd();
2943 Coldboot();
2944}
2945
2946Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
2947 Uevent_Block_Data ret;
2948 ret.subsystem = "";
2949 char *ptr = buf;
2950 const char *end = buf + len;
2951
2952 buf[len - 1] = '\0';
2953 while (ptr < end) {
2954 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
2955 ptr += strlen("ACTION=");
2956 ret.action = ptr;
2957 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
2958 ptr += strlen("SUBSYSTEM=");
2959 ret.subsystem = ptr;
2960 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
2961 ptr += strlen("DEVTYPE=");
2962 ret.type = ptr;
2963 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
2964 ptr += strlen("DEVPATH=");
2965 ret.sysfs_path += ptr;
2966 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
2967 ptr += strlen("DEVNAME=");
2968 ret.block_device += ptr;
2969 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
2970 ptr += strlen("MAJOR=");
2971 ret.major = atoi(ptr);
2972 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
2973 ptr += strlen("MINOR=");
2974 ret.minor = atoi(ptr);
2975 }
2976 ptr += strlen(ptr) + 1;
2977 }
2978 return ret;
2979}
2980
2981void TWPartitionManager::read_uevent() {
2982 char buf[1024];
2983
2984 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
2985 if (len == -1) {
Mauronofrio Matarrese9632f302019-08-04 17:02:41 +01002986 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002987 return;
2988 }
2989 /*int i = 0; // Print all uevent output for test /debug
2990 while (i<len) {
2991 printf("%s\n", buf+i);
2992 i += strlen(buf+i)+1;
2993 }*/
2994 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
2995 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
2996 PartitionManager.Handle_Uevent(uevent_data);
2997 }
2998}
2999
3000void TWPartitionManager::close_uevent() {
3001 if (uevent_pfd.fd > 0)
3002 close(uevent_pfd.fd);
3003 uevent_pfd.fd = -1;
3004}
3005
3006void TWPartitionManager::Add_Partition(TWPartition* Part) {
3007 Partitions.push_back(Part);
3008}
3009
3010void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3011 string Real_Path = Path;
3012 char real_path[PATH_MAX];
3013 if (realpath(Path.c_str(), &real_path[0])) {
3014 string Real_Path = real_path;
3015 std::vector<string>::iterator iter;
3016 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3017 if (Real_Path.find((*iter)) != string::npos) {
3018 string Write_Path = Real_Path + "/uevent";
3019 if (TWFunc::Path_Exists(Write_Path)) {
3020 const char* write_val = "add\n";
3021 TWFunc::write_to_file(Write_Path, write_val);
3022 break;
3023 }
3024 }
3025 }
3026 }
3027
3028 DIR* d = opendir(Path.c_str());
3029 if (d != NULL) {
3030 struct dirent* de;
3031 while ((de = readdir(d)) != NULL) {
3032 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3033 continue;
3034 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3035 continue;
3036
3037 string item = Path + "/";
3038 item.append(de->d_name);
3039 Coldboot_Scan(sysfs_entries, item, depth + 1);
3040 }
3041 closedir(d);
3042 }
3043}
3044
3045void TWPartitionManager::Coldboot() {
3046 std::vector<TWPartition*>::iterator iter;
3047 std::vector<string> sysfs_entries;
3048
3049 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3050 if (!(*iter)->Sysfs_Entry.empty()) {
3051 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3052 if (wildcard_pos == string::npos)
3053 wildcard_pos = (*iter)->Sysfs_Entry.size();
3054 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3055 }
3056 }
3057
3058 if (sysfs_entries.size() > 0)
3059 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3060}
Ethan Yonker53796e72019-01-11 22:49:52 -06003061
3062bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3063 if (TWFunc::Path_Exists(Folder))
3064 TWFunc::removeDir(Folder, false);
3065 return TWFunc::Recursive_Mkdir(Folder);
3066}
3067
3068bool TWPartitionManager::Prepare_Repack(TWPartition* Part, const std::string& Temp_Folder_Destination, const bool Create_Backup, const std::string& Backup_Name) {
3069 if (!Part) {
3070 LOGERR("Partition was null!\n");
3071 return false;
3072 }
3073 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3074 return false;
3075 std::string target_image = Temp_Folder_Destination + "boot.img";
3076 PartitionSettings part_settings;
3077 part_settings.Part = Part;
3078 if (Create_Backup) {
3079 if (Check_Backup_Name(Backup_Name, true, false) != 0)
3080 return false;
3081 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
3082 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + TWFunc::Get_Current_Date() + " " + Backup_Name + "/";
3083 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder))
3084 return false;
3085 } else
3086 part_settings.Backup_Folder = Temp_Folder_Destination;
3087 part_settings.adbbackup = false;
3088 part_settings.generate_digest = false;
3089 part_settings.generate_md5 = false;
3090 part_settings.PM_Method = PM_BACKUP;
3091 part_settings.progress = NULL;
3092 pid_t not_a_pid = 0;
3093 if (!Part->Backup(&part_settings, &not_a_pid))
3094 return false;
3095 std::string backed_up_image = part_settings.Backup_Folder;
3096 backed_up_image += Part->Backup_FileName;
3097 target_image = Temp_Folder_Destination + "boot.img";
3098 if (Create_Backup) {
3099 std::string source = part_settings.Backup_Folder + Part->Backup_FileName;
3100 if (TWFunc::copy_file(source, target_image, 0644) != 0) {
3101 LOGERR("Failed to copy backup file '%s' to temp folder target '%s'\n", source.c_str(), target_image.c_str());
3102 return false;
3103 }
3104 } else {
3105 if (rename(backed_up_image.c_str(), target_image.c_str()) != 0) {
3106 LOGERR("Failed to rename '%s' to '%s'\n", backed_up_image.c_str(), target_image.c_str());
3107 return false;
3108 }
3109 }
3110 return Prepare_Repack(target_image, Temp_Folder_Destination, false, false);
3111}
3112
3113bool TWPartitionManager::Prepare_Repack(const std::string& Source_Path, const std::string& Temp_Folder_Destination, const bool Copy_Source, const bool Create_Destination) {
3114 if (Create_Destination) {
3115 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3116 return false;
3117 }
3118 if (Copy_Source) {
3119 std::string destination = Temp_Folder_Destination + "/boot.img";
3120 if (TWFunc::copy_file(Source_Path, destination, 0644))
3121 return false;
3122 }
Mauronofrio Matarrese82a2f452019-04-04 22:39:12 +01003123 std::string command = "cd " + Temp_Folder_Destination + " && /sbin/magiskboot --unpack -h '" + Source_Path +"'";
Ethan Yonker53796e72019-01-11 22:49:52 -06003124 if (TWFunc::Exec_Cmd(command) != 0) {
3125 LOGINFO("Error unpacking %s!\n", Source_Path.c_str());
3126 gui_msg(Msg(msg::kError, "unpack_error=Error unpacking image."));
3127 return false;
3128 }
3129 return true;
3130}
3131
3132bool TWPartitionManager::Repack_Images(const std::string& Target_Image, const struct Repack_Options_struct& Repack_Options) {
3133 if (!TWFunc::Path_Exists("/sbin/magiskboot")) {
3134 LOGERR("Image repacking tool not present in this TWRP build!");
3135 return false;
3136 }
3137 DataManager::SetProgress(0);
3138 TWPartition* part = PartitionManager.Find_Partition_By_Path("/boot");
3139 if (part)
3140 gui_msg(Msg("unpacking_image=Unpacking {1}...")(part->Display_Name));
3141 else {
3142 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/boot"));
3143 return false;
3144 }
3145 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3146 return false;
3147 DataManager::SetProgress(.25);
3148 gui_msg(Msg("unpacking_image=Unpacking {1}...")(Target_Image));
3149 if (!PartitionManager.Prepare_Repack(Target_Image, REPACK_NEW_DIR, true))
3150 return false;
3151 DataManager::SetProgress(.5);
3152 gui_msg(Msg("repacking_image=Repacking {1}...")(part->Display_Name));
3153 std::string path = REPACK_NEW_DIR;
3154 if (Repack_Options.Type == REPLACE_KERNEL) {
3155 // When we replace the kernel, what we really do is copy the boot partition ramdisk into the new image's folder
3156 if (TWFunc::copy_file(REPACK_ORIG_DIR "ramdisk.cpio", REPACK_NEW_DIR "ramdisk.cpio", 0644)) {
3157 LOGERR("Failed to copy ramdisk\n");
3158 return false;
3159 }
3160 } else if (Repack_Options.Type == REPLACE_RAMDISK) {
3161 // Repack the ramdisk
3162 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3163 LOGERR("Failed to copy ramdisk\n");
3164 return false;
3165 }
3166 path = REPACK_ORIG_DIR;
3167 } else {
3168 LOGERR("Invalid repacking options specified\n");
3169 return false;
3170 }
3171 if (Repack_Options.Disable_Verity)
3172 LOGERR("Disabling verity is not implemented yet\n");
3173 if (Repack_Options.Disable_Force_Encrypt)
3174 LOGERR("Disabling force encrypt is not implemented yet\n");
3175 std::string command = "cd " + path + " && /sbin/magiskboot --repack " + path + "boot.img";
3176 if (TWFunc::Exec_Cmd(command) != 0) {
3177 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3178 return false;
3179 }
3180 DataManager::SetProgress(.75);
3181 std::string file = "new-boot.img";
3182 DataManager::SetValue("tw_flash_partition", "/boot;");
3183 if (!PartitionManager.Flash_Image(path, file)) {
3184 LOGINFO("Error flashing new image\n");
3185 return false;
3186 }
3187 DataManager::SetProgress(1);
3188 TWFunc::removeDir(REPACK_ORIG_DIR, false);
Ethan Yonker9f5dd312019-05-15 15:17:36 -05003189 if (part->SlotSelect && Repack_Options.Type == REPLACE_RAMDISK) {
3190 LOGINFO("Switching slots to flash ramdisk to both partitions\n");
3191 string Current_Slot = Get_Active_Slot_Display();
3192 if (Current_Slot == "A")
3193 Set_Active_Slot("B");
3194 else
3195 Set_Active_Slot("A");
3196 DataManager::SetProgress(.25);
3197 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3198 return false;
3199 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3200 LOGERR("Failed to copy ramdisk\n");
3201 return false;
3202 }
3203 path = REPACK_ORIG_DIR;
3204 command = "cd " + path + " && /sbin/magiskboot --repack " + path + "boot.img";
3205 if (TWFunc::Exec_Cmd(command) != 0) {
3206 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3207 return false;
3208 }
3209 DataManager::SetProgress(.75);
3210 std::string file = "new-boot.img";
3211 DataManager::SetValue("tw_flash_partition", "/boot;");
3212 if (!PartitionManager.Flash_Image(path, file)) {
3213 LOGINFO("Error flashing new image\n");
3214 return false;
3215 }
3216 DataManager::SetProgress(1);
3217 TWFunc::removeDir(REPACK_ORIG_DIR, false);
3218 Set_Active_Slot(Current_Slot);
3219 }
Ethan Yonker53796e72019-01-11 22:49:52 -06003220 TWFunc::removeDir(REPACK_NEW_DIR, false);
3221 return true;
3222}