blob: b6918f3bc3da26f0b26a6642b6afa29ed0bb6569 [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
bigbiffadc599e2020-05-28 19:36:30 +000075 #include "crypto/fde/cryptfs.h"
76 #include "gui/rapidxml.hpp"
77 #include "gui/pages.hpp"
78 #ifdef TW_INCLUDE_FBE
79 #include "crypto/ext4crypt/Decrypt.h"
80 #ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
81 #include "crypto/ext4crypt/MetadataCrypt.h"
82 #endif
83 #endif
84 #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()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100307 char wrappedvalue[PROPERTY_VALUE_MAX];
308 property_get("fbe.data.wrappedkey", wrappedvalue, "");
309 std::string wrappedkeyvalue(wrappedvalue);
310 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400311 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100312 } else {
313 LOGINFO("Trying wrapped key.\n");
314 property_set("fbe.data.wrappedkey", "true");
315 if (!Decrypt_Data->Decrypt_FBE_DE()) {
316 LOGERR("Unable to decrypt FBE device\n");
317 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400318 }
319 }
320
Ethan Yonker93382822018-11-01 15:25:31 -0500321 } else {
322 LOGINFO("Failed to mount data after metadata decrypt\n");
323 }
324 } else {
325 LOGINFO("Unable to decrypt metadata encryption\n");
326 }
327#else
328 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
329#endif
330 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600331 if (Decrypt_Data->Is_FBE) {
332 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
333 if (Decrypt_Device("!") == 0) {
334 gui_msg("decrypt_success=Successfully decrypted with default password.");
335 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
336 } else {
337 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
338 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600339 }
340 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600341 int password_type = cryptfs_get_password_type();
342 if (password_type == CRYPT_TYPE_DEFAULT) {
343 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
344 if (Decrypt_Device("default_password") == 0) {
345 gui_msg("decrypt_success=Successfully decrypted with default password.");
346 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
347 } else {
348 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
349 }
350 } else {
351 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
352 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600353 }
354 }
bigbiffadc599e2020-05-28 19:36:30 +0000355 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600356 Decrypt_Adopted();
357 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600358#endif
Dees_Troy51127312012-09-08 13:08:49 -0400359 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400360 UnMount_Main_Partitions();
Ethan Yonker1b190162016-12-05 15:25:19 -0600361#ifdef AB_OTA_UPDATER
362 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
363#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600364 setup_uevent();
Dees_Troy5bf43922012-09-07 16:07:55 -0400365 return true;
366}
367
368int TWPartitionManager::Write_Fstab(void) {
369 FILE *fp;
370 std::vector<TWPartition*>::iterator iter;
371 string Line;
372
373 fp = fopen("/etc/fstab", "w");
374 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000375 LOGINFO("Can not open /etc/fstab.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400376 return false;
377 }
Dees_Troy63c8df72012-09-10 14:02:05 -0400378 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -0400379 if ((*iter)->Can_Be_Mounted) {
dianlujitao7d304c72016-01-02 12:15:50 +0800380 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
Dees_Troy5bf43922012-09-07 16:07:55 -0400381 fputs(Line.c_str(), fp);
Dees_Troy91862e62013-04-04 23:48:21 +0000382 }
383 // Handle subpartition tracking
384 if ((*iter)->Is_SubPartition) {
385 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
386 if (ParentPartition)
387 ParentPartition->Has_SubPartition = true;
388 else
389 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 -0400390 }
391 }
392 fclose(fp);
393 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400394}
395
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500396void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500397 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
398 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
399 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
400}
401
Matt Mowerbf4efa32014-04-14 23:25:26 -0500402void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
403 if (Part->Has_Android_Secure)
404 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500405 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500406 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500407}
408
Dees_Troy8170a922012-09-18 15:40:25 -0400409void TWPartitionManager::Output_Partition_Logging(void) {
410 std::vector<TWPartition*>::iterator iter;
411
412 printf("\n\nPartition Logs:\n");
413 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
414 Output_Partition((*iter));
415}
416
417void TWPartitionManager::Output_Partition(TWPartition* Part) {
418 unsigned long long mb = 1048576;
419
Gary Peck004d48b2012-11-21 16:28:18 -0800420 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 -0400421 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800422 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 -0400423 }
Gary Peck004d48b2012-11-21 16:28:18 -0800424 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500425 if (Part->Can_Be_Mounted)
426 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800427 if (Part->Can_Be_Wiped)
428 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700429 if (Part->Use_Rm_Rf)
430 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500431 if (Part->Can_Be_Backed_Up)
432 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800433 if (Part->Wipe_During_Factory_Reset)
434 printf("Wipe_During_Factory_Reset ");
435 if (Part->Wipe_Available_in_GUI)
436 printf("Wipe_Available_in_GUI ");
437 if (Part->Is_SubPartition)
438 printf("Is_SubPartition ");
439 if (Part->Has_SubPartition)
440 printf("Has_SubPartition ");
441 if (Part->Removable)
442 printf("Removable ");
443 if (Part->Is_Present)
444 printf("IsPresent ");
445 if (Part->Can_Be_Encrypted)
446 printf("Can_Be_Encrypted ");
447 if (Part->Is_Encrypted)
448 printf("Is_Encrypted ");
449 if (Part->Is_Decrypted)
450 printf("Is_Decrypted ");
451 if (Part->Has_Data_Media)
452 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000453 if (Part->Can_Encrypt_Backup)
454 printf("Can_Encrypt_Backup ");
455 if (Part->Use_Userdata_Encryption)
456 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800457 if (Part->Has_Android_Secure)
458 printf("Has_Android_Secure ");
459 if (Part->Is_Storage)
460 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500461 if (Part->Is_Settings_Storage)
462 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000463 if (Part->Ignore_Blkid)
464 printf("Ignore_Blkid ");
Dees_Troy16c2b312013-01-15 16:51:18 +0000465 if (Part->Retain_Layout_Version)
466 printf("Retain_Layout_Version ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600467 if (Part->Mount_To_Decrypt)
468 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600469 if (Part->Can_Flash_Img)
470 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600471 if (Part->Is_Adopted_Storage)
472 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600473 if (Part->SlotSelect)
474 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600475 if (Part->Mount_Read_Only)
476 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800477 printf("\n");
478 if (!Part->SubPartition_Of.empty())
479 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
480 if (!Part->Symlink_Path.empty())
481 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
482 if (!Part->Symlink_Mount_Point.empty())
483 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
484 if (!Part->Primary_Block_Device.empty())
485 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
486 if (!Part->Alternate_Block_Device.empty())
487 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
488 if (!Part->Decrypted_Block_Device.empty())
489 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800490 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600491 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800492 if (Part->Length != 0)
493 printf(" Length: %i\n", Part->Length);
494 if (!Part->Display_Name.empty())
495 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500496 if (!Part->Storage_Name.empty())
497 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800498 if (!Part->Backup_Path.empty())
499 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
500 if (!Part->Backup_Name.empty())
501 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500502 if (!Part->Backup_Display_Name.empty())
503 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800504 if (!Part->Backup_FileName.empty())
505 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
506 if (!Part->Storage_Path.empty())
507 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
508 if (!Part->Current_File_System.empty())
509 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
510 if (!Part->Fstab_File_System.empty())
511 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
512 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500513 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400514 if (!Part->MTD_Name.empty())
515 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600516 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800517 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600518 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600519 if (Part->MTP_Storage_ID)
520 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500521 if (!Part->Key_Directory.empty())
522 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500523 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400524}
525
Dees_Troy51a0e822012-09-05 15:24:24 -0400526int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400527 std::vector<TWPartition*>::iterator iter;
528 int ret = false;
529 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400530 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400531
bigbiffd58ba182020-03-23 10:02:29 -0400532 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400533 return true;
534
Dees_Troy5bf43922012-09-07 16:07:55 -0400535 // Iterate through all partitions
536 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400537 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400538 ret = (*iter)->Mount(Display_Error);
539 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400540 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400541 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400542 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400543 }
544 if (found) {
545 return ret;
546 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500547 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 -0400548 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000549 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400550 }
551 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400552}
553
Dees_Troy51a0e822012-09-05 15:24:24 -0400554int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400555 std::vector<TWPartition*>::iterator iter;
556 int ret = false;
557 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400558 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400559
560 // Iterate through all partitions
561 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400562 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400563 ret = (*iter)->UnMount(Display_Error);
564 found = true;
565 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
566 (*iter)->UnMount(Display_Error);
567 }
568 }
569 if (found) {
570 return ret;
571 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500572 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 -0400573 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000574 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400575 }
576 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400577}
578
Dees_Troy51a0e822012-09-05 15:24:24 -0400579int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400580 TWPartition* Part = Find_Partition_By_Path(Path);
581
582 if (Part)
583 return Part->Is_Mounted();
584 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000585 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400586 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400587}
588
Dees_Troy5bf43922012-09-07 16:07:55 -0400589int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400590 string current_storage_path = DataManager::GetCurrentStoragePath();
591
592 if (Mount_By_Path(current_storage_path, Display_Error)) {
593 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
594 if (FreeStorage)
595 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
596 return true;
597 }
598 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400599}
600
Dees_Troy5bf43922012-09-07 16:07:55 -0400601int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
602 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
603}
604
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600605TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400606 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400607 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400608
dianlujitaob76a73a2020-04-30 20:33:20 +0800609 if (Local_Path == "/system")
610 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400611 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400612 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400613 return (*iter);
614 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400615 return NULL;
616}
617
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600618TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
619 std::vector<TWPartition*>::iterator iter;
620
621 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
622 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
623 return (*iter);
624 }
625 return NULL;
626}
627
Ethan Yonker53796e72019-01-11 22:49:52 -0600628int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400629 // Check the backup name to ensure that it is the correct size and contains only valid characters
630 // and that a backup with that name doesn't already exist
631 char backup_name[MAX_BACKUP_NAME_LEN];
632 char backup_loc[255], tw_image_dir[255];
633 int copy_size;
634 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600635 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400636
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400637 copy_size = Backup_Name.size();
638 // Check size
639 if (copy_size > MAX_BACKUP_NAME_LEN) {
640 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500641 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400642 return -2;
643 }
644
645 // Check each character
646 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500647 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400648 return 0; // A "0" (zero) means to use the current timestamp for the backup name
649 for (index=0; index<copy_size; index++) {
650 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500651 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 -0400652 // These are valid characters
653 // Numbers
654 // Upper case letters
655 // Lower case letters
656 // Space
657 // and -_.{}[]
658 } else {
659 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600660 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 -0400661 return -3;
662 }
663 }
664
Ethan Yonker53796e72019-01-11 22:49:52 -0600665 if (Must_Be_Unique) {
666 // Check to make sure that a backup with this name doesn't already exist
667 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
668 strcpy(backup_loc, Backup_Loc.c_str());
669 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
670 if (TWFunc::Path_Exists(tw_image_dir)) {
671 if (Display_Error)
672 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500673
Ethan Yonker53796e72019-01-11 22:49:52 -0600674 return -4;
675 }
676 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400677 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600678 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400679 return 0;
680}
681
bigbiffce8f83c2015-12-12 18:30:21 -0500682bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400683 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600684 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500685 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400686
bigbiffce8f83c2015-12-12 18:30:21 -0500687 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400688 return true;
689
Dees_Troy093b7642012-09-21 15:59:38 -0400690 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400691
Tom Hite5a926722014-09-15 01:31:03 +0000692 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400693 time(&start);
694
bigbiffce8f83c2015-12-12 18:30:21 -0500695 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500696 sync();
697 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400698 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500699 if (!part_settings->adbbackup && part_settings->generate_digest) {
700 if (!twrpDigestDriver::Make_Digest(Full_Filename))
701 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400702 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400703
bigbiffce8f83c2015-12-12 18:30:21 -0500704 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400705 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400706 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400707
708 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400709 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500710 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500711 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500712 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000713 }
Dees_Troy2727b992013-08-14 20:09:30 +0000714 sync();
715 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400716 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400717 if (!part_settings->adbbackup && part_settings->generate_digest) {
718 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500719 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500720 }
Tom Hite5a926722014-09-15 01:31:03 +0000721 }
Dees_Troy8170a922012-09-18 15:40:25 -0400722 }
723 }
724 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400725
Dees_Troy43d8b002012-09-17 16:00:01 -0400726 time(&stop);
that203bcc92015-05-09 17:27:33 +0200727 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000728 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400729
bigbiffce8f83c2015-12-12 18:30:21 -0500730 if (part_settings->Part->Backup_Method == BM_FILES) {
731 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400732 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500733 part_settings->img_time += backup_time;
734
Dees_Troy43d8b002012-09-17 16:00:01 -0400735 }
Tom Hite5a926722014-09-15 01:31:03 +0000736
Matt Mower02899552016-12-30 18:13:51 -0600737 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500738 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400739 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500740backup_error:
741 Clean_Backup_Folder(part_settings->Backup_Folder);
742 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
743 tw_set_default_metadata(backup_log.c_str());
744 TWFunc::SetPerformanceMode(false);
745 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500746}
747
bigbiffbf1d6722015-02-14 16:25:59 -0500748void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
749 DIR *d = opendir(Backup_Folder.c_str());
750 struct dirent *p;
751 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400752 vector<string> ext;
753
754 //extensions we should delete when cleaning
755 ext.push_back("win");
756 ext.push_back("md5");
757 ext.push_back("sha2");
758 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500759
Ethan Yonker74db1572015-10-28 12:44:49 -0500760 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500761
762 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500763 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500764 return;
765 }
766
Matt Mower2b18a532015-02-20 16:58:05 -0600767 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500768 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
769 continue;
770
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500771 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500772
773 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400774 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
775 if (path.substr(dot) == *i) {
776 r = unlink(path.c_str());
777 if (r != 0)
778 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500779 }
780 }
781 }
782 closedir(d);
783}
784
Ethan Yonker472f5062016-02-25 13:47:30 -0600785int TWPartitionManager::Check_Backup_Cancel() {
786 return stop_backup.get_value();
787}
788
bigbiff7abc5fe2015-01-17 16:53:12 -0500789int TWPartitionManager::Cancel_Backup() {
790 string Backup_Folder, Backup_Name, Full_Backup_Path;
791
792 stop_backup.set_value(1);
793
794 if (tar_fork_pid != 0) {
795 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
796 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500797 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500798 LOGINFO("Killing pid: %d\n", tar_fork_pid);
799 kill(tar_fork_pid, SIGUSR2);
800 while (kill(tar_fork_pid, 0) == 0) {
801 usleep(1000);
802 }
803 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
804 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
805 TWFunc::removeDir(Full_Backup_Path, false);
806 tar_fork_pid = 0;
807 }
808
809 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400810}
811
bigbiffce8f83c2015-12-12 18:30:21 -0500812int TWPartitionManager::Run_Backup(bool adbbackup) {
813 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400814 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500815 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600816 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400817 TWPartition* storage = NULL;
818 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600819 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500820 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500821 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400822 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500823 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400824
bigbiffce8f83c2015-12-12 18:30:21 -0500825 part_settings.img_bytes_remaining = 0;
826 part_settings.file_bytes_remaining = 0;
827 part_settings.img_time = 0;
828 part_settings.file_time = 0;
829 part_settings.img_bytes = 0;
830 part_settings.file_bytes = 0;
831 part_settings.PM_Method = PM_BACKUP;
832
bigbiffce8f83c2015-12-12 18:30:21 -0500833 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400834 time(&total_start);
835
836 Update_System_Details();
837
838 if (!Mount_Current_Storage(true))
839 return false;
840
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400841 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
842 if (skip_digest == 0)
843 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400844 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400845 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400846
bigbiffce8f83c2015-12-12 18:30:21 -0500847 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500848 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
849 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
850 Backup_Name = TWFunc::Get_Current_Date();
851 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000852 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500853 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400854 }
bigbiffce8f83c2015-12-12 18:30:21 -0500855
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500856 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500857 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500858
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500859 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400860
Dees_Troy2673cec2013-04-02 20:22:16 +0000861 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500862 DataManager::GetValue("tw_backup_list", Backup_List);
863 if (!Backup_List.empty()) {
864 end_pos = Backup_List.find(";", start_pos);
865 while (end_pos != string::npos && start_pos < Backup_List.size()) {
866 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500867 part_settings.Part = Find_Partition_By_Path(backup_path);
868 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500869 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500870 if (part_settings.Part->Backup_Method == BM_FILES)
871 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500872 else
bigbiffce8f83c2015-12-12 18:30:21 -0500873 part_settings.img_bytes += part_settings.Part->Backup_Size;
874 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500875 std::vector<TWPartition*>::iterator subpart;
876
877 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500878 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 -0500879 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500880 if ((*subpart)->Backup_Method == BM_FILES)
881 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500882 else
bigbiffce8f83c2015-12-12 18:30:21 -0500883 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500884 }
885 }
Dees_Troy8170a922012-09-18 15:40:25 -0400886 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500887 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500888 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 -0400889 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500890 start_pos = end_pos + 1;
891 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400892 }
893 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400894
895 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500896 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400897 return false;
898 }
bigbiffce8f83c2015-12-12 18:30:21 -0500899 if (adbbackup) {
900 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
901 return false;
902 }
903 }
904 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600905 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500906 part_settings.progress = &progress;
907
Ethan Yonker74db1572015-10-28 12:44:49 -0500908 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
909 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400910 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
911 if (storage != NULL) {
912 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500913 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400914 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500915 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400916 return false;
917 }
bigbiffbf1d6722015-02-14 16:25:59 -0500918
Matt Mowerbfccfb82016-04-25 23:22:31 -0500919 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500920
921 if (adbbackup)
922 disable_free_space_check = true;
923
bigbiffbf1d6722015-02-14 16:25:59 -0500924 if (!disable_free_space_check) {
925 if (free_space - (32 * 1024 * 1024) < total_bytes) {
926 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500927 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500928 return false;
929 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400930 }
bigbiffce8f83c2015-12-12 18:30:21 -0500931 part_settings.img_bytes_remaining = part_settings.img_bytes;
932 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400933
Ethan Yonker74db1572015-10-28 12:44:49 -0500934 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -0400935
936 int is_decrypted = 0;
937 int is_encrypted = 0;
938
939 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
940 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
941 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
942 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
943 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
944 gui_err("fail_backup_folder=Failed to make backup folder.");
945 return false;
946 }
Dees_Troyd4b22b02013-01-18 17:17:58 +0000947 }
948
Dees_Troy2673cec2013-04-02 20:22:16 +0000949 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400950
Dees_Troya13d74f2013-03-24 08:54:55 -0500951 start_pos = 0;
952 end_pos = Backup_List.find(";", start_pos);
953 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500954 if (stop_backup.get_value() != 0)
955 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500956 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500957 part_settings.Part = Find_Partition_By_Path(backup_path);
958 if (part_settings.Part != NULL) {
959 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500960 return false;
961 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500962 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 -0500963 }
964 start_pos = end_pos + 1;
965 end_pos = Backup_List.find(";", start_pos);
966 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400967
968 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500969 if (part_settings.img_time == 0)
970 part_settings.img_time = 1;
971 if (part_settings.file_time == 0)
972 part_settings.file_time = 1;
973 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
974 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400975
bigbiffce8f83c2015-12-12 18:30:21 -0500976 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600977 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 -0500978 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600979 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 -0400980
981 time(&total_stop);
982 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -0500983
984 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600985 if (!adbbackup) {
986 TWExclude twe;
987 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
988 } else
bigbiffce8f83c2015-12-12 18:30:21 -0500989 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500990 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -0400991
bigbiffce8f83c2015-12-12 18:30:21 -0500992 int prev_img_bps = 0, use_compression = 0;
993 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -0600994 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400995 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500996 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400997
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500998 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400999 if (use_compression)
1000 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001001 else
Dees_Troy093b7642012-09-21 15:59:38 -04001002 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1003 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001004 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001005
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001006 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001007 if (use_compression)
1008 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1009 else
1010 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1011
Ethan Yonker74db1572015-10-28 12:44:49 -05001012 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001013 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001014 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001015 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001016 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001017 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001018 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001019
1020 if (part_settings.adbbackup) {
1021 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1022 return false;
1023 }
1024 }
1025 part_settings.adbbackup = false;
1026 DataManager::SetValue("tw_enable_adb_backup", 0);
1027
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001028 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001029}
1030
bigbiffce8f83c2015-12-12 18:30:21 -05001031bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001032 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001033
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001034 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001035 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1036 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001037 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1038 }
1039
Tom Hite5a926722014-09-15 01:31:03 +00001040 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001041
Dees_Troy4a2a1262012-09-18 09:33:47 -04001042 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001043
bigbiffce8f83c2015-12-12 18:30:21 -05001044 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001045 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001046 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001047 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001048 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001049 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001050 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001051
1052 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001053 part_settings->Part = *subpart;
1054 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1055 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001056 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001057 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001058 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001059 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001060 }
Dees_Troy8170a922012-09-18 15:40:25 -04001061 }
1062 }
1063 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001064 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001065 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001066 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1067
Dees_Troy4a2a1262012-09-18 09:33:47 -04001068 return true;
1069}
1070
Ethan Yonker472f5062016-02-25 13:47:30 -06001071int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001072 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001073 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001074
Dees_Troy4a2a1262012-09-18 09:33:47 -04001075 time_t rStart, rStop;
1076 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001077 string Restore_List, restore_path;
1078 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001079
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001080 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001081 part_settings.Part = NULL;
1082 part_settings.partition_count = 0;
1083 part_settings.total_restore_size = 0;
1084 part_settings.adbbackup = false;
1085 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001086
Ethan Yonker74db1572015-10-28 12:44:49 -05001087 gui_msg("restore_started=[RESTORE STARTED]");
1088 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001089
Dees_Troy4a2a1262012-09-18 09:33:47 -04001090 if (!Mount_Current_Storage(true))
1091 return false;
1092
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001093 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1094 if (check_digest > 0) {
1095 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1096 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1097 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001098 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001099 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001100 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001101 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001102 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001103
Dees_Troya13d74f2013-03-24 08:54:55 -05001104 if (!Restore_List.empty()) {
1105 end_pos = Restore_List.find(";", start_pos);
1106 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1107 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001108 part_settings.Part = Find_Partition_By_Path(restore_path);
1109 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001110 if (part_settings.Part->Mount_Read_Only) {
1111 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 -05001112 return false;
1113 }
bigbiffce8f83c2015-12-12 18:30:21 -05001114
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001115 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1116
1117 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001118 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001119 part_settings.partition_count++;
1120 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1121 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001122 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001123 std::vector<TWPartition*>::iterator subpart;
1124
1125 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001126 part_settings.Part = *subpart;
1127 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001128 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001129 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001130 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001131 }
1132 }
1133 }
1134 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001135 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001136 }
1137 start_pos = end_pos + 1;
1138 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001139 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001140 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001141
bigbiffce8f83c2015-12-12 18:30:21 -05001142 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001143 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001144 return false;
1145 }
1146
bigbiffce8f83c2015-12-12 18:30:21 -05001147 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1148 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 +00001149 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001150 ProgressTracking progress(part_settings.total_restore_size);
1151 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001152
Dees_Troya13d74f2013-03-24 08:54:55 -05001153 start_pos = 0;
1154 if (!Restore_List.empty()) {
1155 end_pos = Restore_List.find(";", start_pos);
1156 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1157 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001158
1159 part_settings.Part = Find_Partition_By_Path(restore_path);
1160 if (part_settings.Part != NULL) {
1161 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001162 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001163 return false;
1164 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001165 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001166 }
1167 start_pos = end_pos + 1;
1168 end_pos = Restore_List.find(";", start_pos);
1169 }
1170 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001171 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001172 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001173 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001174 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001175 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001176 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001177 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001178
Dees_Troy63c8df72012-09-10 14:02:05 -04001179 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001180}
1181
1182void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001183 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001184 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001185 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001186 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001187
1188 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001189 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1190 vector<string> adb_files;
1191 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1192 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1193 string adb_restore_file = adb_files.at(i);
1194 std::size_t pos = adb_restore_file.find_first_of(".");
1195 std::string path = "/" + adb_restore_file.substr(0, pos);
1196 Restore_List = path + ";";
1197 TWPartition* Part = Find_Partition_By_Path(path);
1198 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1199 adbbackup = true;
1200 }
1201 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001202 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001203 else {
1204 DIR* d;
1205 d = opendir(Restore_Name.c_str());
1206 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001207 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001208 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1209 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001210 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001211
1212 struct dirent* de;
1213 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001214 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001215 // Strip off three components
1216 char str[256];
1217 char* label;
1218 char* fstype = NULL;
1219 char* extn = NULL;
1220 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001221
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001222 strcpy(str, de->d_name);
1223 if (strlen(str) <= 2)
1224 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001225
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001226 if (get_date) {
1227 char file_path[255];
1228 struct stat st;
1229
1230 strcpy(file_path, Restore_Name.c_str());
1231 strcat(file_path, "/");
1232 strcat(file_path, str);
1233 stat(file_path, &st);
1234 string backup_date = ctime((const time_t*)(&st.st_mtime));
1235 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1236 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001237 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001238
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001239 label = str;
1240 ptr = label;
1241 while (*ptr && *ptr != '.') ptr++;
1242 if (*ptr == '.')
1243 {
1244 *ptr = 0x00;
1245 ptr++;
1246 fstype = ptr;
1247 }
1248 while (*ptr && *ptr != '.') ptr++;
1249 if (*ptr == '.')
1250 {
1251 *ptr = 0x00;
1252 ptr++;
1253 extn = ptr;
1254 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001255
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001256 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1257 int extnlength = strlen(extn);
1258 if (extnlength != 3 && extnlength != 6) continue;
1259 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1260 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001261
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001262 if (check_encryption) {
1263 string filename = Restore_Name + "/";
1264 filename += de->d_name;
1265 if (TWFunc::Get_File_Type(filename) == 2) {
1266 LOGINFO("'%s' is encrypted\n", filename.c_str());
1267 DataManager::SetValue("tw_restore_encrypted", 1);
1268 }
1269 }
1270 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1271
1272 TWPartition* Part = Find_Partition_By_Path(label);
1273 if (Part == NULL)
1274 {
1275 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1276 continue;
1277 }
1278
1279 Part->Backup_FileName = de->d_name;
1280 if (strlen(extn) > 3) {
1281 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1282 }
1283
dianlujitaob76a73a2020-04-30 20:33:20 +08001284 if (!Part->Is_SubPartition) {
1285 if (Part->Backup_Path == Get_Android_Root_Path())
1286 Restore_List += "/system;";
1287 else
1288 Restore_List += Part->Backup_Path + ";";
1289 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001290 }
1291 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001292 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001293
1294 if (adbbackup) {
1295 Restore_List = "ADB_Backup;";
1296 adbbackup = false;
1297 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001298
Dees_Troya13d74f2013-03-24 08:54:55 -05001299 // Set the final value
1300 DataManager::SetValue("tw_restore_list", Restore_List);
1301 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001302 return;
1303}
1304
1305int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001306 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301307 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001308 int ret = false;
1309 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001310 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001311
dianlujitaob76a73a2020-04-30 20:33:20 +08001312 if (Local_Path == "/system")
1313 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001314 // Iterate through all partitions
1315 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001316 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301317 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1318 (*iter)->Find_Actual_Block_Device();
1319 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1320 {
1321 (*iter1)->Find_Actual_Block_Device();
1322 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1323 (*iter1)->UnMount(false);
1324 }
Dees_Troye58d5262012-09-21 12:27:57 -04001325 if (Path == "/and-sec")
1326 ret = (*iter)->Wipe_AndSec();
1327 else
1328 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001329 found = true;
1330 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1331 (*iter)->Wipe();
1332 }
1333 }
1334 if (found) {
1335 return ret;
1336 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001337 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 -04001338 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001339}
1340
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001341int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1342 std::vector<TWPartition*>::iterator iter;
1343 int ret = false;
1344 bool found = false;
1345 string Local_Path = TWFunc::Get_Root_Path(Path);
1346
1347 // Iterate through all partitions
1348 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1349 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1350 if (Path == "/and-sec")
1351 ret = (*iter)->Wipe_AndSec();
1352 else
1353 ret = (*iter)->Wipe(New_File_System);
1354 found = true;
1355 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1356 (*iter)->Wipe(New_File_System);
1357 }
1358 }
1359 if (found) {
1360 return ret;
1361 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001362 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 -05001363 return false;
1364}
1365
Dees_Troy51a0e822012-09-05 15:24:24 -04001366int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001367 std::vector<TWPartition*>::iterator iter;
1368 int ret = true;
1369
1370 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001371 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001372#ifdef TW_OEM_BUILD
1373 if ((*iter)->Mount_Point == "/data") {
1374 if (!(*iter)->Wipe_Encryption())
1375 ret = false;
1376 } else {
1377#endif
1378 if (!(*iter)->Wipe())
1379 ret = false;
1380#ifdef TW_OEM_BUILD
1381 }
1382#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001383 } else if ((*iter)->Has_Android_Secure) {
1384 if (!(*iter)->Wipe_AndSec())
1385 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001386 }
1387 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001388 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001389 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001390}
1391
Dees_Troy38bd7602012-09-14 13:33:53 -04001392int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1393 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001394 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001395
1396 if (!Mount_By_Path("/data", true))
1397 return false;
1398
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001399 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001400
1401 std::string cacheDir = TWFunc::get_cache_dir();
1402 if (cacheDir == NON_AB_CACHE_DIR) {
1403 if (!PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false)) {
1404 LOGINFO("Unable to mount %s for wiping cache.\n", NON_AB_CACHE_DIR);
1405 }
1406 dir.push_back(cacheDir + "dalvik-cache");
1407 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001408 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001409
Dees_Troy38bd7602012-09-14 13:33:53 -04001410 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001411 if (sdext && sdext->Is_Present && sdext->Mount(false))
1412 {
1413 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1414 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001415 dir.push_back("/sd-ext/dalvik-cache");
1416 }
1417 }
1418
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001419 if (cacheDir == NON_AB_CACHE_DIR) {
1420 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1421 } else {
1422 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1423 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001424 for (unsigned i = 0; i < dir.size(); ++i) {
1425 if (stat(dir.at(i).c_str(), &st) == 0) {
1426 TWFunc::removeDir(dir.at(i), false);
1427 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001428 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001429 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001430
1431 if (cacheDir == NON_AB_CACHE_DIR) {
1432 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1433 } else {
1434 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1435 }
1436
Dees_Troy38bd7602012-09-14 13:33:53 -04001437 return true;
1438}
1439
1440int TWPartitionManager::Wipe_Rotate_Data(void) {
1441 if (!Mount_By_Path("/data", true))
1442 return false;
1443
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001444 unlink("/data/misc/akmd*");
1445 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001446 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001447 return true;
1448}
1449
1450int TWPartitionManager::Wipe_Battery_Stats(void) {
1451 struct stat st;
1452
1453 if (!Mount_By_Path("/data", true))
1454 return false;
1455
1456 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001457 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001458 } else {
1459 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001460 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001461 }
1462 return true;
1463}
1464
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001465int TWPartitionManager::Wipe_Android_Secure(void) {
1466 std::vector<TWPartition*>::iterator iter;
1467 int ret = false;
1468 bool found = false;
1469
1470 // Iterate through all partitions
1471 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1472 if ((*iter)->Has_Android_Secure) {
1473 ret = (*iter)->Wipe_AndSec();
1474 found = true;
1475 }
1476 }
1477 if (found) {
1478 return ret;
1479 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001480 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001481 }
1482 return false;
1483}
1484
Dees_Troy38bd7602012-09-14 13:33:53 -04001485int TWPartitionManager::Format_Data(void) {
1486 TWPartition* dat = Find_Partition_By_Path("/data");
1487
1488 if (dat != NULL) {
1489 if (!dat->UnMount(true))
1490 return false;
1491
1492 return dat->Wipe_Encryption();
1493 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001494 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001495 return false;
1496 }
1497 return false;
1498}
1499
1500int TWPartitionManager::Wipe_Media_From_Data(void) {
1501 TWPartition* dat = Find_Partition_By_Path("/data");
1502
1503 if (dat != NULL) {
1504 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001505 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001506 return false;
1507 }
1508 if (!dat->Mount(true))
1509 return false;
1510
Ethan Yonker74db1572015-10-28 12:44:49 -05001511 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001512 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001513 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001514 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001515 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001516 return true;
1517 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001518 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001519 return false;
1520 }
1521 return false;
1522}
1523
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001524int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1525 std::vector<TWPartition*>::iterator iter;
1526 int ret = false;
1527 bool found = false;
1528 string Local_Path = TWFunc::Get_Root_Path(Path);
1529
1530 if (Local_Path == "/tmp" || Local_Path == "/")
1531 return true;
1532
1533 // Iterate through all partitions
1534 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1535 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1536 ret = (*iter)->Repair();
1537 found = true;
1538 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1539 (*iter)->Repair();
1540 }
1541 }
1542 if (found) {
1543 return ret;
1544 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001545 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 -05001546 } else {
1547 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1548 }
1549 return false;
1550}
1551
Ethan Yonkera2719152015-05-28 09:44:41 -05001552int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1553 std::vector<TWPartition*>::iterator iter;
1554 int ret = false;
1555 bool found = false;
1556 string Local_Path = TWFunc::Get_Root_Path(Path);
1557
1558 if (Local_Path == "/tmp" || Local_Path == "/")
1559 return true;
1560
1561 // Iterate through all partitions
1562 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1563 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1564 ret = (*iter)->Resize();
1565 found = true;
1566 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1567 (*iter)->Resize();
1568 }
1569 }
1570 if (found) {
1571 return ret;
1572 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001573 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 -05001574 } else {
1575 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1576 }
1577 return false;
1578}
1579
Dees_Troy51a0e822012-09-05 15:24:24 -04001580void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001581 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001582 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001583
Ethan Yonker74db1572015-10-28 12:44:49 -05001584 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001585 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001586 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001587 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001588 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001589 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1590 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001591 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001592 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1593 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1594 } else if ((*iter)->Mount_Point == "/cache") {
1595 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1596 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1597 } else if ((*iter)->Mount_Point == "/sd-ext") {
1598 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1599 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1600 if ((*iter)->Backup_Size == 0) {
1601 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1602 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1603 } else
1604 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001605 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001606 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001607 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001608 if ((*iter)->Backup_Size == 0) {
1609 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1610 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1611 } else
1612 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001613 } else if ((*iter)->Mount_Point == "/boot") {
1614 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1615 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1616 if ((*iter)->Backup_Size == 0) {
1617 DataManager::SetValue("tw_has_boot_partition", 0);
1618 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1619 } else
1620 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001621 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001622 } else {
1623 // Handle unmountable partitions in case we reset defaults
1624 if ((*iter)->Mount_Point == "/boot") {
1625 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1626 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1627 if ((*iter)->Backup_Size == 0) {
1628 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1629 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1630 } else
1631 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1632 } else if ((*iter)->Mount_Point == "/recovery") {
1633 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1634 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1635 if ((*iter)->Backup_Size == 0) {
1636 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1637 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1638 } else
1639 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001640 } else if ((*iter)->Mount_Point == "/data") {
1641 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001642 }
Dees_Troy51127312012-09-08 13:08:49 -04001643 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001644 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001645 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001646 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1647 string current_storage_path = DataManager::GetCurrentStoragePath();
1648 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001649 if (FreeStorage != NULL) {
1650 // Attempt to mount storage
1651 if (!FreeStorage->Mount(false)) {
Matt Mower2d50cad2015-12-03 22:26:55 -06001652 gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage"));
1653 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
Dees_Troy8170a922012-09-18 15:40:25 -04001654 } else {
1655 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1656 }
1657 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001658 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001659 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001660 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001661 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001662 return;
1663}
1664
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001665void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1666 TWPartition* dat = Find_Partition_By_Path("/data");
1667 if (dat != NULL) {
1668 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1669 dat->Is_Decrypted = true;
1670 if (!Block_Device.empty()) {
1671 dat->Decrypted_Block_Device = Block_Device;
1672 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1673 } else {
1674 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1675 }
1676 dat->Setup_File_System(false);
bigbiffadc599e2020-05-28 19:36:30 +00001677 dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001678
bigbiffadc599e2020-05-28 19:36:30 +00001679 // Sleep for a bit so that the device will be ready
1680 sleep(1);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001681 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1682 dat->Storage_Path = "/data/media/0";
1683 dat->Symlink_Path = dat->Storage_Path;
1684 DataManager::SetValue("tw_storage_path", "/data/media/0");
1685 DataManager::SetValue("tw_settings_path", "/data/media/0");
1686 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001687 }
1688 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001689 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001690 UnMount_Main_Partitions();
1691 } else
1692 LOGERR("Unable to locate data partition.\n");
1693}
1694
bigbiffadc599e2020-05-28 19:36:30 +00001695int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001696#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001697 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001698 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001699
Ethan Yonker253368a2014-11-25 15:00:52 -06001700 // Mount any partitions that need to be mounted for decrypt
1701 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1702 if ((*iter)->Mount_To_Decrypt) {
1703 (*iter)->Mount(true);
1704 }
a39552696ff55ce2013-01-08 16:14:56 +00001705 }
oshmouna82a7542018-04-10 17:45:55 +02001706 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001707
Ethan Yonkera1de1492015-11-04 11:58:27 -06001708 property_get("ro.crypto.state", crypto_state, "error");
1709 if (strcmp(crypto_state, "error") == 0) {
1710 property_set("ro.crypto.state", "encrypted");
1711 // Sleep for a bit so that services can start if needed
1712 sleep(1);
1713 }
1714
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001715 if (DataManager::GetIntValue(TW_IS_FBE)) {
1716#ifdef TW_INCLUDE_FBE
1717 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1718 return -1;
1719 int retry_count = 10;
1720 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
bigbiffadc599e2020-05-28 19:36:30 +00001721 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1722 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1723 LOGINFO("Decrypting FBE for user %i\n", user_id);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001724 if (Decrypt_User(user_id, Password)) {
bigbiffadc599e2020-05-28 19:36:30 +00001725 Post_Decrypt("");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001726 return 0;
1727 }
1728#else
1729 LOGERR("FBE support is not present\n");
1730#endif
1731 return -1;
1732 }
1733
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001734 int pwret = -1;
1735 pid_t pid = fork();
1736 if (pid < 0) {
1737 LOGERR("fork failed\n");
1738 return -1;
1739 } else if (pid == 0) {
1740 // Child process
1741 char cPassword[255];
1742 strcpy(cPassword, Password.c_str());
1743 int ret = cryptfs_check_passwd(cPassword);
1744 exit(ret);
1745 } else {
1746 // Parent
1747 int status;
1748 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1749 pwret = -1;
1750 else
1751 pwret = WEXITSTATUS(status) ? -1 : 0;
1752 }
a39552696ff55ce2013-01-08 16:14:56 +00001753
nkk7171c6c502017-01-05 23:55:05 +02001754#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1755 if (pwret != 0) {
1756 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001757 switch (pwret) {
1758 case VD_SUCCESS:
1759 break;
1760 case VD_ERR_MISSING_VDC:
1761 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1762 break;
1763 case VD_ERR_MISSING_VOLD:
1764 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1765 break;
1766 }
nkk7171c6c502017-01-05 23:55:05 +02001767 }
1768#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1769
Ethan Yonker253368a2014-11-25 15:00:52 -06001770 // Unmount any partitions that were needed for decrypt
1771 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1772 if ((*iter)->Mount_To_Decrypt) {
1773 (*iter)->UnMount(false);
1774 }
1775 }
oshmouna82a7542018-04-10 17:45:55 +02001776 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001777
a39552696ff55ce2013-01-08 16:14:56 +00001778 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001779 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001780 return -1;
1781 }
a39552696ff55ce2013-01-08 16:14:56 +00001782
Dees_Troy5bf43922012-09-07 16:07:55 -04001783 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1784 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001785 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001786 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001787 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001788 }
1789 return 0;
1790#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001791 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001792 return -1;
1793#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001794 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001795}
1796
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001797int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001798 std::vector<TWPartition*>::iterator iter;
1799 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1800 if ((*iter)->Has_Data_Media) {
1801 if ((*iter)->Mount(true)) {
1802 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1803 return -1;
1804 }
1805 }
1806 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001807 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001808 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001809 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001810}
1811
Ethan Yonker66a19492015-12-10 10:19:45 -06001812TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001813 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1814
1815 if (!Path.empty()) {
1816 string Search_Path = TWFunc::Get_Root_Path(Path);
1817 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001818 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001819 iter++;
1820 break;
1821 }
1822 }
1823 }
1824
1825 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001826 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1827 // do nothing, do not return this type of partition
1828 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001829 return (*iter);
1830 }
1831 }
1832
1833 return NULL;
1834}
1835
Dees_Troyd21618c2012-10-14 18:48:49 -04001836int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001837 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1838
1839 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001840 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1841 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 -04001842 return false;
1843 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001844 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1845 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001846 return false;
1847
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001848 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001849 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001850 return false;
1851 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001852 return true;
1853}
1854
Dees_Troy8170a922012-09-18 15:40:25 -04001855int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001856 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001857 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001858
Ethan Yonker47360be2014-04-01 10:34:34 -05001859 string Lun_File_str = CUSTOM_LUN_FILE;
1860 size_t found = Lun_File_str.find("%");
1861 if (found != string::npos) {
1862 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1863 if (TWFunc::Path_Exists(lun_file))
1864 has_multiple_lun = true;
1865 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001866 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001867 if (!has_multiple_lun) {
1868 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1869 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1870 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001871 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001872 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001873 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1874 goto error_handle;
1875 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001876 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001877 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001878 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001879 }
1880 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001881 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001882 }
Dees_Troy8170a922012-09-18 15:40:25 -04001883 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001884 LOGINFO("Device has multiple lun files\n");
1885 TWPartition* Mount1;
1886 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001887 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001888 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001889 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001890 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1891 goto error_handle;
1892 }
Matt Moweree717062014-04-26 01:46:46 -05001893 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001894 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001895 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001896 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001897 }
1898 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001899 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001900 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001901 }
Dees_Troy8170a922012-09-18 15:40:25 -04001902 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001903 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001904 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001905 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001906error_handle:
1907 if (mtp_was_enabled)
1908 if (!Enable_MTP())
1909 Disable_MTP();
1910 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001911}
1912
1913int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001914 int index, ret;
1915 char lun_file[255], ch[2] = {0, 0};
1916 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001917
1918 for (index=0; index<2; index++) {
1919 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001920 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001921 if (ret < 0) {
1922 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001923 }
Dees_Troy8170a922012-09-18 15:40:25 -04001924 }
Dees_Troye58d5262012-09-21 12:27:57 -04001925 Mount_All_Storage();
1926 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001927 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001928 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001929 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001930 if (mtp_was_enabled)
1931 if (!Enable_MTP())
1932 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001933 if (ret < 0 && index == 0) {
1934 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1935 return false;
1936 } else {
1937 return true;
1938 }
Dees_Troy8170a922012-09-18 15:40:25 -04001939 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04001940}
1941
1942void TWPartitionManager::Mount_All_Storage(void) {
1943 std::vector<TWPartition*>::iterator iter;
1944
1945 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1946 if ((*iter)->Is_Storage)
1947 (*iter)->Mount(false);
1948 }
Dees_Troy2c50e182012-09-26 20:05:28 -04001949}
Dees_Troy9350b8d2012-09-27 12:38:38 -04001950
Dees_Troyd0384ef2012-10-12 12:15:42 -04001951void TWPartitionManager::UnMount_Main_Partitions(void) {
1952 // Unmounts system and data if data is not data/media
1953 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00001954 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04001955
1956 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
1957
Captain Throwback9d6feb52018-07-27 10:05:24 -04001958 UnMount_By_Path(Get_Android_Root_Path(), true);
Ethan Yonker6277c792014-09-15 14:54:30 -05001959 if (!datamedia)
1960 UnMount_By_Path("/data", true);
1961
Dees_Troyd0384ef2012-10-12 12:15:42 -04001962 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
1963 Boot_Partition->UnMount(true);
1964}
1965
Dees_Troy9350b8d2012-09-27 12:38:38 -04001966int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06001967 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06001968 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 -04001969 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04001970
Ethan Yonker74db1572015-10-28 12:44:49 -05001971 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001972
1973 // Locate and validate device to partition
1974 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1975
Ethan Yonker66a19492015-12-10 10:19:45 -06001976 if (SDCard->Is_Adopted_Storage)
1977 SDCard->Revert_Adopted();
1978
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05001979 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001980 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001981 return false;
1982 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001983
1984 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04001985 if (!SDCard->UnMount(true))
1986 return false;
1987 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
1988 if (SDext != NULL) {
1989 if (!SDext->UnMount(true))
1990 return false;
1991 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001992 char* swappath = getenv("SWAPPATH");
1993 if (swappath != NULL) {
1994 LOGINFO("Unmounting swap at '%s'\n", swappath);
1995 umount(swappath);
1996 }
Vojtech Bocek05534202013-09-11 08:11:56 +02001997
Ethan Yonker483e9f42016-01-11 22:21:18 -06001998 // Determine block device
1999 if (SDCard->Alternate_Block_Device.empty()) {
2000 SDCard->Find_Actual_Block_Device();
2001 Device = SDCard->Actual_Block_Device;
2002 // Just use the root block device
2003 Device.resize(strlen("/dev/block/mmcblkX"));
2004 } else {
2005 Device = SDCard->Alternate_Block_Device;
2006 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002007
2008 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002009 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002010
2011 DataManager::GetValue("tw_sdext_size", ext);
2012 DataManager::GetValue("tw_swap_size", swap);
2013 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2014 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002015 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);
2016
2017 // Determine partition sizes
2018 if (swap == 0 && ext == 0) {
2019 fat_str = "-0";
2020 } else {
2021 memset(temp, 0, sizeof(temp));
2022 sprintf(temp, "%i", fat_size);
2023 fat_str = temp;
2024 fat_str += "MB";
2025 }
2026 if (swap == 0) {
2027 ext_str = "-0";
2028 } else {
2029 memset(temp, 0, sizeof(temp));
2030 sprintf(temp, "%i", ext);
2031 ext_str = "+";
2032 ext_str += temp;
2033 ext_str += "MB";
2034 }
2035
Dees_Troy9350b8d2012-09-27 12:38:38 -04002036 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002037 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002038 return false;
2039 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002040
Ethan Yonker74db1572015-10-28 12:44:49 -05002041 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002042 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002043 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002044 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002045 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002046 Update_System_Details();
2047 return false;
2048 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002049 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002050 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 +00002051 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002052 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002053 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002054 return false;
2055 }
2056 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002057 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002058 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002059 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002060 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002061 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002062 Update_System_Details();
2063 return false;
2064 }
2065 }
2066 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002067 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002068 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 +00002069 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002070 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002071 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002072 Update_System_Details();
2073 return false;
2074 }
2075 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002076
2077 // Convert GPT to MBR
2078 Command = "sgdisk --gpttombr " + Device;
2079 if (TWFunc::Exec_Cmd(Command) != 0)
2080 LOGINFO("Failed to covert partition GPT to MBR\n");
2081
2082 // Tell the kernel to rescan the partition table
2083 int fd = open(Device.c_str(), O_RDONLY);
2084 ioctl(fd, BLKRRPART, 0);
2085 close(fd);
2086
2087 string format_device = Device;
2088 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2089 format_device += "p";
2090
2091 // Format new partitions to proper file system
2092 if (fat_size > 0) {
2093 Command = "mkfs.fat " + format_device + "1";
2094 TWFunc::Exec_Cmd(Command);
2095 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002096 if (ext > 0) {
2097 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002098 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2099 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2100 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2101 TWFunc::Exec_Cmd(Command);
2102 } else {
2103 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002104 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002105 }
2106 if (swap > 0) {
2107 Command = "mkswap " + format_device;
2108 if (ext > 0)
2109 Command += "3";
2110 else
2111 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002112 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002113 }
2114
Ethan Yonker483e9f42016-01-11 22:21:18 -06002115 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2116 if (SDCard->Mount(true)) {
2117 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2118 mkdir(TWRP_Folder.c_str(), 0777);
2119 DataManager::Flush();
2120 }
2121
Dees_Troy9350b8d2012-09-27 12:38:38 -04002122 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002123 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002124 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002125}
Dees_Troya13d74f2013-03-24 08:54:55 -05002126
2127void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2128 std::vector<TWPartition*>::iterator iter;
2129 if (ListType == "mount") {
2130 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002131 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002132 struct PartitionList part;
2133 part.Display_Name = (*iter)->Display_Name;
2134 part.Mount_Point = (*iter)->Mount_Point;
2135 part.selected = (*iter)->Is_Mounted();
2136 Partition_List->push_back(part);
2137 }
2138 }
2139 } else if (ListType == "storage") {
2140 char free_space[255];
2141 string Current_Storage = DataManager::GetCurrentStoragePath();
2142 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2143 if ((*iter)->Is_Storage) {
2144 struct PartitionList part;
2145 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2146 part.Display_Name = (*iter)->Storage_Name + " (";
2147 part.Display_Name += free_space;
2148 part.Display_Name += "MB)";
2149 part.Mount_Point = (*iter)->Storage_Path;
2150 if ((*iter)->Storage_Path == Current_Storage)
2151 part.selected = 1;
2152 else
2153 part.selected = 0;
2154 Partition_List->push_back(part);
2155 }
2156 }
2157 } else if (ListType == "backup") {
2158 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002159 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002160 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002161 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002162 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002163 Backup_Size = (*iter)->Backup_Size;
2164 if ((*iter)->Has_SubPartition) {
2165 std::vector<TWPartition*>::iterator subpart;
2166
2167 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2168 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2169 Backup_Size += (*subpart)->Backup_Size;
2170 }
2171 }
2172 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002173 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2174 part.Display_Name += backup_size;
2175 part.Display_Name += "MB)";
2176 part.Mount_Point = (*iter)->Backup_Path;
2177 part.selected = 0;
2178 Partition_List->push_back(part);
2179 }
2180 }
2181 } else if (ListType == "restore") {
2182 string Restore_List, restore_path;
2183 TWPartition* restore_part = NULL;
2184
2185 DataManager::GetValue("tw_restore_list", Restore_List);
2186 if (!Restore_List.empty()) {
2187 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2188 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2189 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002190 struct PartitionList part;
2191 if (restore_path.compare("ADB_Backup") == 0) {
2192 part.Display_Name = "ADB Backup";
2193 part.Mount_Point = "ADB Backup";
2194 part.selected = 1;
2195 Partition_List->push_back(part);
2196 break;
2197 }
Dees_Troy59df9262013-06-19 14:53:57 -05002198 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002199 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002200 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002201 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002202 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002203 part.Display_Name = restore_part->Backup_Display_Name;
2204 part.Mount_Point = restore_part->Backup_Path;
2205 part.selected = 1;
2206 Partition_List->push_back(part);
2207 }
2208 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002209 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002210 }
2211 start_pos = end_pos + 1;
2212 end_pos = Restore_List.find(";", start_pos);
2213 }
2214 }
2215 } else if (ListType == "wipe") {
2216 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002217 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002218 dalvik.Mount_Point = "DALVIK";
2219 dalvik.selected = 0;
2220 Partition_List->push_back(dalvik);
2221 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2222 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2223 struct PartitionList part;
2224 part.Display_Name = (*iter)->Display_Name;
2225 part.Mount_Point = (*iter)->Mount_Point;
2226 part.selected = 0;
2227 Partition_List->push_back(part);
2228 }
2229 if ((*iter)->Has_Android_Secure) {
2230 struct PartitionList part;
2231 part.Display_Name = (*iter)->Backup_Display_Name;
2232 part.Mount_Point = (*iter)->Backup_Path;
2233 part.selected = 0;
2234 Partition_List->push_back(part);
2235 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002236 if ((*iter)->Has_Data_Media) {
2237 struct PartitionList datamedia;
2238 datamedia.Display_Name = (*iter)->Storage_Name;
2239 datamedia.Mount_Point = "INTERNAL";
2240 datamedia.selected = 0;
2241 Partition_List->push_back(datamedia);
2242 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002243 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002244 } else if (ListType == "flashimg") {
2245 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2246 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2247 struct PartitionList part;
2248 part.Display_Name = (*iter)->Backup_Display_Name;
2249 part.Mount_Point = (*iter)->Backup_Path;
2250 part.selected = 0;
2251 Partition_List->push_back(part);
2252 }
2253 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002254 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2255 TWPartition* boot = Find_Partition_By_Path("/boot");
2256 if (boot) {
2257 // Allow flashing kernels and ramdisks
2258 struct PartitionList repack_ramdisk;
2259 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2260 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2261 repack_ramdisk.selected = 0;
2262 Partition_List->push_back(repack_ramdisk);
2263 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2264 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2265 repack_kernel.Mount_Point = "/repack_kernel";
2266 repack_kernel.selected = 0;
2267 Partition_List->push_back(repack_kernel);*/
2268 }
2269 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002270 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002271 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002272 }
2273}
2274
2275int TWPartitionManager::Fstab_Processed(void) {
2276 return Partitions.size();
2277}
Dees_Troyd93bda52013-07-03 19:55:19 +00002278
2279void TWPartitionManager::Output_Storage_Fstab(void) {
2280 std::vector<TWPartition*>::iterator iter;
2281 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002282 std::string Temp;
2283 std::string cacheDir = TWFunc::get_cache_dir();
2284
2285 if (cacheDir.empty()) {
2286 LOGINFO("Unable to find cache directory\n");
2287 return;
2288 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002289
2290 std::string storageFstab = TWFunc::get_cache_dir() + "recovery/storage.fstab";
2291 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002292
2293 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002294 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002295 return;
2296 }
2297
2298 // Iterate through all partitions
2299 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2300 if ((*iter)->Is_Storage) {
2301 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2302 strcpy(storage_partition, Temp.c_str());
2303 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2304 }
2305 }
2306 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002307}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002308
2309TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2310{
2311 TWPartition *res = NULL;
2312 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002313 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002314 continue;
2315
Matt Mowera8a89d12016-12-30 18:10:37 -06002316 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002317 return *iter;
2318
Matt Mowera8a89d12016-12-30 18:10:37 -06002319 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002320 res = *iter;
2321 }
2322 return res;
2323}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002324
2325bool TWPartitionManager::Enable_MTP(void) {
2326#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002327 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002328 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002329 return true;
2330 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002331
2332 int mtppipe[2];
2333
2334 if (pipe(mtppipe) < 0) {
2335 LOGERR("Error creating MTP pipe\n");
2336 return false;
2337 }
2338
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002339 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002340 property_get("sys.usb.config", old_value, "");
2341 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002342 char vendor[PROPERTY_VALUE_MAX];
2343 char product[PROPERTY_VALUE_MAX];
2344 property_set("sys.usb.config", "none");
2345 property_get("usb.vendor", vendor, "18D1");
2346 property_get("usb.product.mtpadb", product, "4EE2");
2347 string vendorstr = vendor;
2348 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002349 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2350 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002351 property_set("sys.usb.config", "mtp,adb");
2352 }
Matt Mower653a1702017-02-16 10:38:52 -06002353 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002354 * twrp set tw_mtp_debug 1
2355 */
2356 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002357 mtppid = mtp->forkserver(mtppipe);
2358 if (mtppid) {
2359 close(mtppipe[0]); // Host closes read side
2360 mtp_write_fd = mtppipe[1];
2361 DataManager::SetValue("tw_mtp_enabled", 1);
2362 Add_All_MTP_Storage();
2363 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002364 } else {
2365 close(mtppipe[0]);
2366 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002367 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002368 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002369 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002370#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002371 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002372#endif
2373 DataManager::SetValue("tw_mtp_enabled", 0);
2374 return false;
2375}
2376
Ethan Yonker1b039202015-01-30 10:08:48 -06002377void TWPartitionManager::Add_All_MTP_Storage(void) {
2378#ifdef TW_HAS_MTP
2379 std::vector<TWPartition*>::iterator iter;
2380
2381 if (!mtppid)
2382 return; // MTP is not enabled
2383
2384 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2385 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2386 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2387 }
2388#else
2389 return;
2390#endif
2391}
2392
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002393bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002394 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002395 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002396 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002397 if (strcmp(old_value, "adb") != 0) {
2398 char vendor[PROPERTY_VALUE_MAX];
2399 char product[PROPERTY_VALUE_MAX];
2400 property_set("sys.usb.config", "none");
2401 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002402 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002403 string vendorstr = vendor;
2404 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002405 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2406 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002407 usleep(2000);
2408 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002409#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002410 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002411 LOGINFO("Disabling MTP\n");
2412 int status;
2413 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002414 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002415 // We don't care about the exit value, but this prevents a zombie process
2416 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002417 close(mtp_write_fd);
2418 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002419 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002420#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002421 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002422#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002423 DataManager::SetValue("tw_mtp_enabled", 0);
2424 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002425#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002426 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002427}
Ethan Yonker726a0202014-12-16 20:01:38 -06002428
2429TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2430 std::vector<TWPartition*>::iterator iter;
2431
2432 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2433 if ((*iter)->MTP_Storage_ID == Storage_ID)
2434 return (*iter);
2435 }
2436 return NULL;
2437}
2438
2439bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2440#ifdef TW_HAS_MTP
2441 struct mtpmsg mtp_message;
2442
2443 if (!mtppid)
2444 return false; // MTP is disabled
2445
2446 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002447 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002448 return false;
2449 }
2450
2451 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002452 if (Part->MTP_Storage_ID == 0)
2453 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002454 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2455 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2456 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2457 mtp_message.storage_id = Part->MTP_Storage_ID;
2458 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002459 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002460 return false;
2461 } else {
2462 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2463 return true;
2464 }
2465 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2466 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2467 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002468 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2469 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2470 return false;
2471 }
2472 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2473 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2474 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2475 return false;
2476 }
2477 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002478 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002479 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 -06002480 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002481 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002482 return false;
2483 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002484 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002485 return true;
2486 }
2487 } else {
2488 LOGERR("Unknown MTP message type: %i\n", message_type);
2489 }
2490 } else {
2491 // This hopefully never happens as the error handling should
2492 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002493 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002494 }
2495 return true;
2496#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002497 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002498 DataManager::SetValue("tw_mtp_enabled", 0);
2499 return false;
2500#endif
2501}
2502
2503bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2504#ifdef TW_HAS_MTP
2505 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2506 if (Part) {
2507 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2508 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002509 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002510 }
2511#endif
2512 return false;
2513}
2514
2515bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2516#ifdef TW_HAS_MTP
2517 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2518 if (Part) {
2519 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2520 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002521 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002522 }
2523#endif
2524 return false;
2525}
2526
2527bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2528#ifdef TW_HAS_MTP
2529 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2530 if (Part) {
2531 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2532 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002533 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002534 }
2535#endif
2536 return false;
2537}
2538
2539bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2540#ifdef TW_HAS_MTP
2541 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2542 if (Part) {
2543 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2544 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002545 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002546 }
2547#endif
2548 return false;
2549}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002550
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002551bool TWPartitionManager::Flash_Image(string& path, string& filename) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002552 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002553 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002554 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002555 size_t start_pos = 0, end_pos = 0;
2556
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002557 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002558
bigbiffce8f83c2015-12-12 18:30:21 -05002559 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2560 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2561
2562 if (!TWFunc::Path_Exists(full_filename)) {
2563 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002564 return false;
2565 }
bigbiffce8f83c2015-12-12 18:30:21 -05002566 if (!TWFunc::Path_Exists(full_filename)) {
2567 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002568 return false;
2569 }
2570 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002571
Ethan Yonker53796e72019-01-11 22:49:52 -06002572 DataManager::GetValue("tw_flash_partition", Flash_List);
2573 Repack_Type repack = REPLACE_NONE;
2574 if (Flash_List == "/repack_ramdisk;") {
2575 repack = REPLACE_RAMDISK;
2576 } else if (Flash_List == "/repack_kernel;") {
2577 repack = REPLACE_KERNEL;
2578 }
2579 if (repack != REPLACE_NONE) {
2580 Repack_Options_struct Repack_Options;
2581 Repack_Options.Type = repack;
2582 Repack_Options.Disable_Verity = false;
2583 Repack_Options.Disable_Force_Encrypt = false;
2584 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
2585 return Repack_Images(full_filename, Repack_Options);
2586 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002587 PartitionSettings part_settings;
2588 part_settings.Backup_Folder = path;
2589 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2590 ProgressTracking progress(total_bytes);
2591 part_settings.progress = &progress;
2592 part_settings.adbbackup = false;
2593 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002594 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002595 if (!Flash_List.empty()) {
2596 end_pos = Flash_List.find(";", start_pos);
2597 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2598 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2599 flash_part = Find_Partition_By_Path(flash_path);
2600 if (flash_part != NULL) {
2601 partition_count++;
2602 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002603 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002604 return false;
2605 }
2606 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002607 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002608 return false;
2609 }
2610 start_pos = end_pos + 1;
2611 end_pos = Flash_List.find(";", start_pos);
2612 }
2613 }
2614
2615 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002616 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002617 return false;
2618 }
2619
2620 DataManager::SetProgress(0.0);
2621 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002622 flash_part->Backup_FileName = filename;
2623 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002624 return false;
2625 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002626 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002627 return false;
2628 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002629 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002630 return true;
2631}
Ethan Yonker74db1572015-10-28 12:44:49 -05002632
2633void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2634 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2635 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002636 if (part->Is_Adopted_Storage) {
2637 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2638 part->Backup_Display_Name = part->Display_Name;
2639 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2640 } else {
2641 part->Display_Name = gui_lookup(resource_name, default_value);
2642 part->Backup_Display_Name = part->Display_Name;
2643 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002644 }
2645}
2646
2647void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2648 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2649 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002650 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002651 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002652 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002653 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2654 } else {
2655 part->Display_Name = gui_lookup(resource_name, default_value);
2656 part->Backup_Display_Name = part->Display_Name;
2657 if (part->Is_Storage)
2658 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2659 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002660 }
2661}
2662
Ethan Yonker01f4e032017-02-03 15:30:52 -06002663void 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) {
2664 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2665 if (part) {
2666 if (part->Is_Adopted_Storage) {
2667 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2668 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2669 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2670 } else {
2671 part->Display_Name = gui_lookup(resource_name, default_value);
2672 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2673 if (part->Is_Storage)
2674 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2675 }
2676 }
2677}
2678
Ethan Yonker74db1572015-10-28 12:44:49 -05002679void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002680 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002681 Translate_Partition("/system", "system", "System");
2682 Translate_Partition("/system_image", "system_image", "System Image");
2683 Translate_Partition("/vendor", "vendor", "Vendor");
2684 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2685 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002686 Translate_Partition("/boot", "boot", "Boot");
2687 Translate_Partition("/recovery", "recovery", "Recovery");
2688 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002689 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002690 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2691 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2692 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2693 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002694 } else {
2695 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002696 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002697 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2698 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002699 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2700 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2701
2702 // Android secure is a special case
2703 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2704 if (part)
2705 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2706
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002707 std::vector<TWPartition*>::iterator sysfs;
2708 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2709 if (!(*sysfs)->Sysfs_Entry.empty()) {
2710 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2711 }
2712 }
2713
Ethan Yonker74db1572015-10-28 12:44:49 -05002714 // This updates the text on all of the storage selection buttons in the GUI
2715 DataManager::SetBackupFolder();
2716}
Ethan Yonker66a19492015-12-10 10:19:45 -06002717
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002718bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002719#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002720 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002721 if (!Mount_By_Path("/data", false)) {
2722 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002723 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002724 }
2725 LOGINFO("Decrypt adopted storage starting\n");
2726 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2727 xml_document<> *doc = NULL;
2728 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002729 string Primary_Storage_UUID = "";
2730 if (xmlFile != NULL) {
2731 LOGINFO("successfully loaded storage.xml\n");
2732 doc = new xml_document<>();
2733 doc->parse<0>(xmlFile);
2734 volumes = doc->first_node("volumes");
2735 if (volumes) {
2736 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2737 if (psuuid) {
2738 Primary_Storage_UUID = psuuid->value();
2739 }
2740 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002741 } else {
2742 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2743 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002744 }
2745 std::vector<TWPartition*>::iterator adopt;
2746 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2747 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2748 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002749 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002750 if (volumes) {
2751 xml_node<>* volume = volumes->first_node("volume");
2752 while (volume) {
2753 xml_attribute<>* guid = volume->first_attribute("partGuid");
2754 if (guid) {
2755 string GUID = (*adopt)->Adopted_GUID.c_str();
2756 GUID.insert(8, "-");
2757 GUID.insert(13, "-");
2758 GUID.insert(18, "-");
2759 GUID.insert(23, "-");
2760
2761 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2762 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002763 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002764 (*adopt)->Storage_Name = attr->value();
2765 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2766 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2767 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2768 }
2769 attr = volume->first_attribute("fsUuid");
2770 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2771 TWPartition* Dat = Find_Partition_By_Path("/data");
2772 if (Dat) {
2773 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2774 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2775 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2776 Dat->Symlink_Mount_Point = "";
2777 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2778 Dat->UnMount(false);
2779 Dat->Mount(false);
2780 (*adopt)->UnMount(false);
2781 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002782 }
2783 }
2784 break;
2785 }
2786 }
2787 volume = volume->next_sibling("volume");
2788 }
2789 }
nkk71ffb02bd2017-06-04 23:12:16 +03002790 Update_System_Details();
2791 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002792 }
2793 }
2794 }
2795 if (xmlFile) {
2796 doc->clear();
2797 delete doc;
2798 free(xmlFile);
2799 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002800 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002801#else
2802 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002803 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002804#endif
2805}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002806
2807void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2808 std::vector<TWPartition*>::iterator iter;
2809 string Local_Path = TWFunc::Get_Root_Path(Path);
2810
2811 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2812 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2813 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2814 Partitions.erase(iter);
2815 return;
2816 }
2817 }
2818}
Ethan Yonker1b190162016-12-05 15:25:19 -06002819
2820void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2821 if (Slot != "A" && Slot != "B") {
2822 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2823 return;
2824 }
2825 if (Active_Slot_Display == Slot)
2826 return;
2827 LOGINFO("Setting active slot %s\n", Slot.c_str());
2828#ifdef AB_OTA_UPDATER
2829 if (!Active_Slot_Display.empty()) {
2830 const hw_module_t *hw_module;
2831 boot_control_module_t *module;
2832 int ret;
2833 ret = hw_get_module("bootctrl", &hw_module);
2834 if (ret != 0) {
2835 LOGERR("Error getting bootctrl module.\n");
2836 } else {
2837 module = (boot_control_module_t*) hw_module;
2838 module->init(module);
2839 int slot_number = 0;
2840 if (Slot == "B")
2841 slot_number = 1;
2842 if (module->setActiveBootSlot(module, slot_number))
2843 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2844 }
2845 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
2846 }
2847#else
2848 LOGERR("Boot slot feature not present\n");
2849#endif
2850 Active_Slot_Display = Slot;
2851 if (Fstab_Processed())
2852 Update_System_Details();
2853}
2854string TWPartitionManager::Get_Active_Slot_Suffix() {
2855 if (Active_Slot_Display == "A")
2856 return "_a";
2857 return "_b";
2858}
2859string TWPartitionManager::Get_Active_Slot_Display() {
2860 return Active_Slot_Display;
2861}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002862
Captain Throwback9d6feb52018-07-27 10:05:24 -04002863string TWPartitionManager::Get_Android_Root_Path() {
Chaosmasterf6e42ce2020-01-27 00:17:04 +01002864 if (property_get_bool("ro.twrp.sar", false))
dianlujitao58f1a632020-01-16 23:03:56 +08002865 return "/system_root";
2866 return "/system";
Captain Throwback9d6feb52018-07-27 10:05:24 -04002867}
2868
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002869void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
2870 std::vector<TWPartition*>::iterator iter;
2871
2872 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
2873 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
2874 TWPartition *part = *iter;
2875 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
2876 (*iter)->UnMount(false);
2877 rmdir((*iter)->Mount_Point.c_str());
2878 iter = Partitions.erase(iter);
2879 delete part;
2880 } else {
2881 iter++;
2882 }
2883 }
2884}
2885
2886void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
2887 std::vector<TWPartition*>::iterator iter;
2888
2889 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2890 if (!(*iter)->Sysfs_Entry.empty()) {
2891 string device;
2892 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
2893 if (wildcard != string::npos) {
2894 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
2895 } else {
2896 device = (*iter)->Sysfs_Entry;
2897 }
2898 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
2899 // Found a match
2900 if (uevent_data.action == "add") {
2901 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
2902 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
2903 (*iter)->Is_Present = true;
2904 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
2905 if (!Decrypt_Adopted()) {
2906 LOGINFO("No adopted storage so finding actual block device\n");
2907 (*iter)->Find_Actual_Block_Device();
2908 }
2909 return;
2910 } else if (uevent_data.action == "remove") {
2911 (*iter)->Is_Present = false;
2912 (*iter)->Primary_Block_Device = "";
2913 (*iter)->Actual_Block_Device = "";
2914 Remove_Uevent_Devices((*iter)->Mount_Point);
2915 return;
2916 }
2917 }
2918 }
2919 }
2920 LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str());
2921}
2922
2923void TWPartitionManager::setup_uevent() {
2924 struct sockaddr_nl nls;
2925
2926 if (uevent_pfd.fd >= 0) {
2927 LOGINFO("uevent already set up\n");
2928 return;
2929 }
2930
2931 // Open hotplug event netlink socket
2932 memset(&nls,0,sizeof(struct sockaddr_nl));
2933 nls.nl_family = AF_NETLINK;
2934 nls.nl_pid = getpid();
2935 nls.nl_groups = -1;
2936 uevent_pfd.events = POLLIN;
2937 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
2938 if (uevent_pfd.fd==-1) {
2939 LOGERR("uevent not root\n");
2940 return;
2941 }
2942
2943 // Listen to netlink socket
2944 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
2945 LOGERR("Bind failed\n");
2946 return;
2947 }
2948 set_select_fd();
2949 Coldboot();
2950}
2951
2952Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
2953 Uevent_Block_Data ret;
2954 ret.subsystem = "";
2955 char *ptr = buf;
2956 const char *end = buf + len;
2957
2958 buf[len - 1] = '\0';
2959 while (ptr < end) {
2960 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
2961 ptr += strlen("ACTION=");
2962 ret.action = ptr;
2963 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
2964 ptr += strlen("SUBSYSTEM=");
2965 ret.subsystem = ptr;
2966 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
2967 ptr += strlen("DEVTYPE=");
2968 ret.type = ptr;
2969 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
2970 ptr += strlen("DEVPATH=");
2971 ret.sysfs_path += ptr;
2972 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
2973 ptr += strlen("DEVNAME=");
2974 ret.block_device += ptr;
2975 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
2976 ptr += strlen("MAJOR=");
2977 ret.major = atoi(ptr);
2978 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
2979 ptr += strlen("MINOR=");
2980 ret.minor = atoi(ptr);
2981 }
2982 ptr += strlen(ptr) + 1;
2983 }
2984 return ret;
2985}
2986
2987void TWPartitionManager::read_uevent() {
2988 char buf[1024];
2989
2990 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
2991 if (len == -1) {
bigbiffd58ba182020-03-23 10:02:29 -04002992 LOGERR("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002993 return;
2994 }
2995 /*int i = 0; // Print all uevent output for test /debug
2996 while (i<len) {
2997 printf("%s\n", buf+i);
2998 i += strlen(buf+i)+1;
2999 }*/
3000 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3001 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3002 PartitionManager.Handle_Uevent(uevent_data);
3003 }
3004}
3005
3006void TWPartitionManager::close_uevent() {
3007 if (uevent_pfd.fd > 0)
3008 close(uevent_pfd.fd);
3009 uevent_pfd.fd = -1;
3010}
3011
3012void TWPartitionManager::Add_Partition(TWPartition* Part) {
3013 Partitions.push_back(Part);
3014}
3015
3016void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3017 string Real_Path = Path;
3018 char real_path[PATH_MAX];
3019 if (realpath(Path.c_str(), &real_path[0])) {
3020 string Real_Path = real_path;
3021 std::vector<string>::iterator iter;
3022 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3023 if (Real_Path.find((*iter)) != string::npos) {
3024 string Write_Path = Real_Path + "/uevent";
3025 if (TWFunc::Path_Exists(Write_Path)) {
3026 const char* write_val = "add\n";
3027 TWFunc::write_to_file(Write_Path, write_val);
3028 break;
3029 }
3030 }
3031 }
3032 }
3033
3034 DIR* d = opendir(Path.c_str());
3035 if (d != NULL) {
3036 struct dirent* de;
3037 while ((de = readdir(d)) != NULL) {
3038 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3039 continue;
3040 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3041 continue;
3042
3043 string item = Path + "/";
3044 item.append(de->d_name);
3045 Coldboot_Scan(sysfs_entries, item, depth + 1);
3046 }
3047 closedir(d);
3048 }
3049}
3050
3051void TWPartitionManager::Coldboot() {
3052 std::vector<TWPartition*>::iterator iter;
3053 std::vector<string> sysfs_entries;
3054
3055 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3056 if (!(*iter)->Sysfs_Entry.empty()) {
3057 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3058 if (wildcard_pos == string::npos)
3059 wildcard_pos = (*iter)->Sysfs_Entry.size();
3060 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3061 }
3062 }
3063
3064 if (sysfs_entries.size() > 0)
3065 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3066}
Ethan Yonker53796e72019-01-11 22:49:52 -06003067
3068bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3069 if (TWFunc::Path_Exists(Folder))
3070 TWFunc::removeDir(Folder, false);
3071 return TWFunc::Recursive_Mkdir(Folder);
3072}
3073
3074bool TWPartitionManager::Prepare_Repack(TWPartition* Part, const std::string& Temp_Folder_Destination, const bool Create_Backup, const std::string& Backup_Name) {
3075 if (!Part) {
3076 LOGERR("Partition was null!\n");
3077 return false;
3078 }
3079 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3080 return false;
3081 std::string target_image = Temp_Folder_Destination + "boot.img";
3082 PartitionSettings part_settings;
3083 part_settings.Part = Part;
3084 if (Create_Backup) {
3085 if (Check_Backup_Name(Backup_Name, true, false) != 0)
3086 return false;
3087 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
3088 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + TWFunc::Get_Current_Date() + " " + Backup_Name + "/";
3089 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder))
3090 return false;
3091 } else
3092 part_settings.Backup_Folder = Temp_Folder_Destination;
3093 part_settings.adbbackup = false;
3094 part_settings.generate_digest = false;
3095 part_settings.generate_md5 = false;
3096 part_settings.PM_Method = PM_BACKUP;
3097 part_settings.progress = NULL;
3098 pid_t not_a_pid = 0;
3099 if (!Part->Backup(&part_settings, &not_a_pid))
3100 return false;
3101 std::string backed_up_image = part_settings.Backup_Folder;
3102 backed_up_image += Part->Backup_FileName;
3103 target_image = Temp_Folder_Destination + "boot.img";
3104 if (Create_Backup) {
3105 std::string source = part_settings.Backup_Folder + Part->Backup_FileName;
3106 if (TWFunc::copy_file(source, target_image, 0644) != 0) {
3107 LOGERR("Failed to copy backup file '%s' to temp folder target '%s'\n", source.c_str(), target_image.c_str());
3108 return false;
3109 }
3110 } else {
3111 if (rename(backed_up_image.c_str(), target_image.c_str()) != 0) {
3112 LOGERR("Failed to rename '%s' to '%s'\n", backed_up_image.c_str(), target_image.c_str());
3113 return false;
3114 }
3115 }
3116 return Prepare_Repack(target_image, Temp_Folder_Destination, false, false);
3117}
3118
3119bool TWPartitionManager::Prepare_Repack(const std::string& Source_Path, const std::string& Temp_Folder_Destination, const bool Copy_Source, const bool Create_Destination) {
3120 if (Create_Destination) {
3121 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3122 return false;
3123 }
3124 if (Copy_Source) {
3125 std::string destination = Temp_Folder_Destination + "/boot.img";
3126 if (TWFunc::copy_file(Source_Path, destination, 0644))
3127 return false;
3128 }
Mauronofrio Matarrese82a2f452019-04-04 22:39:12 +01003129 std::string command = "cd " + Temp_Folder_Destination + " && /sbin/magiskboot --unpack -h '" + Source_Path +"'";
Ethan Yonker53796e72019-01-11 22:49:52 -06003130 if (TWFunc::Exec_Cmd(command) != 0) {
3131 LOGINFO("Error unpacking %s!\n", Source_Path.c_str());
3132 gui_msg(Msg(msg::kError, "unpack_error=Error unpacking image."));
3133 return false;
3134 }
3135 return true;
3136}
3137
3138bool TWPartitionManager::Repack_Images(const std::string& Target_Image, const struct Repack_Options_struct& Repack_Options) {
3139 if (!TWFunc::Path_Exists("/sbin/magiskboot")) {
3140 LOGERR("Image repacking tool not present in this TWRP build!");
3141 return false;
3142 }
3143 DataManager::SetProgress(0);
3144 TWPartition* part = PartitionManager.Find_Partition_By_Path("/boot");
3145 if (part)
3146 gui_msg(Msg("unpacking_image=Unpacking {1}...")(part->Display_Name));
3147 else {
3148 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/boot"));
3149 return false;
3150 }
3151 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3152 return false;
3153 DataManager::SetProgress(.25);
3154 gui_msg(Msg("unpacking_image=Unpacking {1}...")(Target_Image));
3155 if (!PartitionManager.Prepare_Repack(Target_Image, REPACK_NEW_DIR, true))
3156 return false;
3157 DataManager::SetProgress(.5);
3158 gui_msg(Msg("repacking_image=Repacking {1}...")(part->Display_Name));
3159 std::string path = REPACK_NEW_DIR;
3160 if (Repack_Options.Type == REPLACE_KERNEL) {
3161 // When we replace the kernel, what we really do is copy the boot partition ramdisk into the new image's folder
3162 if (TWFunc::copy_file(REPACK_ORIG_DIR "ramdisk.cpio", REPACK_NEW_DIR "ramdisk.cpio", 0644)) {
3163 LOGERR("Failed to copy ramdisk\n");
3164 return false;
3165 }
3166 } else if (Repack_Options.Type == REPLACE_RAMDISK) {
3167 // Repack the ramdisk
3168 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3169 LOGERR("Failed to copy ramdisk\n");
3170 return false;
3171 }
3172 path = REPACK_ORIG_DIR;
3173 } else {
3174 LOGERR("Invalid repacking options specified\n");
3175 return false;
3176 }
3177 if (Repack_Options.Disable_Verity)
3178 LOGERR("Disabling verity is not implemented yet\n");
3179 if (Repack_Options.Disable_Force_Encrypt)
3180 LOGERR("Disabling force encrypt is not implemented yet\n");
3181 std::string command = "cd " + path + " && /sbin/magiskboot --repack " + path + "boot.img";
3182 if (TWFunc::Exec_Cmd(command) != 0) {
3183 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3184 return false;
3185 }
3186 DataManager::SetProgress(.75);
3187 std::string file = "new-boot.img";
3188 DataManager::SetValue("tw_flash_partition", "/boot;");
3189 if (!PartitionManager.Flash_Image(path, file)) {
3190 LOGINFO("Error flashing new image\n");
3191 return false;
3192 }
3193 DataManager::SetProgress(1);
3194 TWFunc::removeDir(REPACK_ORIG_DIR, false);
Ethan Yonker9f5dd312019-05-15 15:17:36 -05003195 if (part->SlotSelect && Repack_Options.Type == REPLACE_RAMDISK) {
3196 LOGINFO("Switching slots to flash ramdisk to both partitions\n");
3197 string Current_Slot = Get_Active_Slot_Display();
3198 if (Current_Slot == "A")
3199 Set_Active_Slot("B");
3200 else
3201 Set_Active_Slot("A");
3202 DataManager::SetProgress(.25);
3203 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3204 return false;
3205 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3206 LOGERR("Failed to copy ramdisk\n");
3207 return false;
3208 }
3209 path = REPACK_ORIG_DIR;
3210 command = "cd " + path + " && /sbin/magiskboot --repack " + path + "boot.img";
3211 if (TWFunc::Exec_Cmd(command) != 0) {
3212 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3213 return false;
3214 }
3215 DataManager::SetProgress(.75);
3216 std::string file = "new-boot.img";
3217 DataManager::SetValue("tw_flash_partition", "/boot;");
3218 if (!PartitionManager.Flash_Image(path, file)) {
3219 LOGINFO("Error flashing new image\n");
3220 return false;
3221 }
3222 DataManager::SetProgress(1);
3223 TWFunc::removeDir(REPACK_ORIG_DIR, false);
3224 Set_Active_Slot(Current_Slot);
3225 }
Ethan Yonker53796e72019-01-11 22:49:52 -06003226 TWFunc::removeDir(REPACK_NEW_DIR, false);
3227 return true;
3228}