blob: 85dc79d36aff22a8bb182dc8bb42497a66e66510 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002 Copyright 2014 to 2017 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/stat.h>
23#include <sys/vfs.h>
24#include <unistd.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060025#include <map>
Dees_Troy5bf43922012-09-07 16:07:55 -040026#include <vector>
Dees_Troy63c8df72012-09-10 14:02:05 -040027#include <dirent.h>
28#include <time.h>
Dees_Troy8170a922012-09-18 15:40:25 -040029#include <errno.h>
30#include <fcntl.h>
bigbiffce8f83c2015-12-12 18:30:21 -050031#include <zlib.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050032#include <iostream>
33#include <iomanip>
Ethan Yonker8613dc02014-09-11 09:28:20 -050034#include <sys/wait.h>
Ethan Yonker483e9f42016-01-11 22:21:18 -060035#include <linux/fs.h>
36#include <sys/mount.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060037
38#include <sys/poll.h>
39#include <sys/socket.h>
40#include <linux/types.h>
41#include <linux/netlink.h>
42
Dees_Troy51a0e822012-09-05 15:24:24 -040043#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000044#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040045#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040046#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040047#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060048#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060049#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060050#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050051#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050052#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060053#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040054#include "twrpDigestDriver.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050055#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040056
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040057#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050058#ifdef TW_HAS_LEGACY_MTP
59#include "mtp/legacy/mtp_MtpServer.hpp"
60#include "mtp/legacy/twrpMtp.hpp"
61#include "mtp/legacy/MtpMessage.hpp"
62#else
63#include "mtp/ffs/mtp_MtpServer.hpp"
64#include "mtp/ffs/twrpMtp.hpp"
65#include "mtp/ffs/MtpMessage.hpp"
66#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040067#endif
68
Dees Troy6f6441d2014-01-23 02:07:03 +000069extern "C" {
70 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050071 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000072}
73
Dees_Troy5bf43922012-09-07 16:07:55 -040074#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker98661c12018-10-17 08:39:28 -050075 #include "crypto/fde/cryptfs.h"
Ethan Yonker66a19492015-12-10 10:19:45 -060076 #include "gui/rapidxml.hpp"
77 #include "gui/pages.hpp"
Ethan Yonkerbd7492d2016-12-07 13:55:01 -060078 #ifdef TW_INCLUDE_FBE
79 #include "crypto/ext4crypt/Decrypt.h"
Ethan Yonker93382822018-11-01 15:25:31 -050080 #ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
81 #include "crypto/ext4crypt/MetadataCrypt.h"
82 #endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -060083 #endif
nkk7171c6c502017-01-05 23:55:05 +020084 #ifdef TW_CRYPTO_USE_SYSTEM_VOLD
85 #include "crypto/vold_decrypt/vold_decrypt.h"
86 #endif
Dees_Troy5bf43922012-09-07 16:07:55 -040087#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040088
Ethan Yonker1b190162016-12-05 15:25:19 -060089#ifdef AB_OTA_UPDATER
90#include <hardware/hardware.h>
91#include <hardware/boot_control.h>
92#endif
93
Ethan Yonker6277c792014-09-15 14:54:30 -050094extern bool datamedia;
95
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050096TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040097 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -060098 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060099 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500100 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600101#ifdef AB_OTA_UPDATER
102 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500103 property_get("ro.boot.slot_suffix", slot_suffix, "error");
104 if (strcmp(slot_suffix, "error") == 0)
105 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600106 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500107 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600108 Set_Active_Slot("A");
109 else
110 Set_Active_Slot("B");
111#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500112}
113
Dees_Troy51a0e822012-09-05 15:24:24 -0400114int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400115 FILE *fstabFile;
116 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000117 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500118 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600119 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600120 std::map<string, Flags_Map> twrp_flags;
121
122 fstabFile = fopen("/etc/twrp.flags", "rt");
123 if (fstabFile != NULL) {
124 LOGINFO("reading /etc/twrp.flags\n");
125 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
126 if (fstab_line[0] != '/')
127 continue;
128
129 size_t line_size = strlen(fstab_line);
130 if (fstab_line[line_size - 1] != '\n')
131 fstab_line[line_size] = '\n';
132 Flags_Map line_flags;
133 line_flags.Primary_Block_Device = "";
134 line_flags.Alternate_Block_Device = "";
135 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
136 if (!line_flags.fstab_line) {
137 LOGERR("malloc error on line_flags.fstab_line\n");
138 return false;
139 }
140 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
141 bool found_separator = false;
142 char *fs_loc = NULL;
143 char *block_loc = NULL;
144 char *flags_loc = NULL;
145 size_t index, item_index = 0;
146 for (index = 0; index < line_size; index++) {
147 if (fstab_line[index] <= 32) {
148 fstab_line[index] = '\0';
149 found_separator = true;
150 } else if (found_separator) {
151 if (item_index == 0) {
152 fs_loc = fstab_line + index;
153 } else if (item_index == 1) {
154 block_loc = fstab_line + index;
155 } else if (item_index > 1) {
156 char *ptr = fstab_line + index;
157 if (*ptr == '/') {
158 line_flags.Alternate_Block_Device = ptr;
159 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
160 flags_loc = ptr;
161 // Once we find the flags=, we're done scanning the line
162 break;
163 }
164 }
165 found_separator = false;
166 item_index++;
167 }
168 }
169 if (block_loc)
170 line_flags.Primary_Block_Device = block_loc;
171 if (fs_loc)
172 line_flags.File_System = fs_loc;
173 if (flags_loc)
174 line_flags.Flags = flags_loc;
175 string Mount_Point = fstab_line;
176 twrp_flags[Mount_Point] = line_flags;
177 memset(fstab_line, 0, sizeof(fstab_line));
178 }
179 fclose(fstabFile);
180 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400181
182 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
183 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000184 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400185 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600186 } else
187 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400188
189 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
190 if (fstab_line[0] != '/')
191 continue;
192
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600193 if (strstr(fstab_line, "swap"))
194 continue; // Skip swap in recovery
195
196 size_t line_size = strlen(fstab_line);
197 if (fstab_line[line_size - 1] != '\n')
198 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400199
Matt Mower2b2dd152016-04-26 11:24:08 -0500200 TWPartition* partition = new TWPartition();
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600201 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500202 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500203 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400204 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500205
206 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400207 }
208 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500209
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600210 if (twrp_flags.size() > 0) {
211 LOGINFO("Processing remaining twrp.flags\n");
212 // Add any items from twrp.flags that did not exist in the recovery.fstab
213 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
214 if (Find_Partition_By_Path(mapit->first) == NULL) {
215 TWPartition* partition = new TWPartition();
216 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
217 Partitions.push_back(partition);
218 else
219 delete partition;
220 }
221 if (mapit->second.fstab_line)
222 free(mapit->second.fstab_line);
223 mapit->second.fstab_line = NULL;
224 }
225 }
226 LOGINFO("Done processing fstab files\n");
227
Matt Mower72c87ce2016-04-26 14:34:56 -0500228 std::vector<TWPartition*>::iterator iter;
229 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
230 (*iter)->Partition_Post_Processing(Display_Error);
231
232 if ((*iter)->Is_Storage) {
233 ++storageid;
234 (*iter)->MTP_Storage_ID = storageid;
235 }
236
237 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
238 settings_partition = (*iter);
239 else
240 (*iter)->Is_Settings_Storage = false;
241
242 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
243 andsec_partition = (*iter);
244 else
245 (*iter)->Has_Android_Secure = false;
246 }
247
Ethan Yonker6277c792014-09-15 14:54:30 -0500248 if (!datamedia && !settings_partition && Find_Partition_By_Path("/sdcard") == NULL && Find_Partition_By_Path("/internal_sd") == NULL && Find_Partition_By_Path("/internal_sdcard") == NULL && Find_Partition_By_Path("/emmc") == NULL) {
249 // Attempt to automatically identify /data/media emulated storage devices
250 TWPartition* Dat = Find_Partition_By_Path("/data");
251 if (Dat) {
252 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
253 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200254 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500255 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600256 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
257 ++storageid;
258 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500259 }
260 }
Dees Troy02a64532014-03-19 15:23:32 +0000261 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500262 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
263 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000264 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500265 break;
266 }
267 }
Dees Troy02a64532014-03-19 15:23:32 +0000268 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000269 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500270 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400271 if (!Write_Fstab()) {
272 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000273 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400274 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000275 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400276 }
Matt Mowered71fa32014-04-16 13:21:47 -0500277
Matt Mowerbf4efa32014-04-14 23:25:26 -0500278 if (andsec_partition) {
279 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500280 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500281 Setup_Android_Secure_Location(settings_partition);
282 }
Matt Mowered71fa32014-04-16 13:21:47 -0500283 if (settings_partition) {
284 Setup_Settings_Storage_Partition(settings_partition);
285 }
Ethan Yonker253368a2014-11-25 15:00:52 -0600286#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600287 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
288 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500289 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
290#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
291 if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) {
292 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", Decrypt_Data->Decrypted_Block_Device.c_str());
293 property_set("ro.crypto.state", "encrypted");
294 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
295 int retry_count = 10;
296 while (!Decrypt_Data->Mount(false) && --retry_count)
297 usleep(500);
298 if (Decrypt_Data->Mount(false)) {
299 Decrypt_Data->Decrypt_FBE_DE();
300 } else {
301 LOGINFO("Failed to mount data after metadata decrypt\n");
302 }
303 } else {
304 LOGINFO("Unable to decrypt metadata encryption\n");
305 }
306#else
307 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
308#endif
309 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600310 if (Decrypt_Data->Is_FBE) {
311 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
312 if (Decrypt_Device("!") == 0) {
313 gui_msg("decrypt_success=Successfully decrypted with default password.");
314 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
315 } else {
316 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
317 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600318 }
319 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600320 int password_type = cryptfs_get_password_type();
321 if (password_type == CRYPT_TYPE_DEFAULT) {
322 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
323 if (Decrypt_Device("default_password") == 0) {
324 gui_msg("decrypt_success=Successfully decrypted with default password.");
325 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
326 } else {
327 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
328 }
329 } else {
330 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
331 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600332 }
333 }
Ethan Yonker66a19492015-12-10 10:19:45 -0600334 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
335 Decrypt_Adopted();
336 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600337#endif
Dees_Troy51127312012-09-08 13:08:49 -0400338 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400339 UnMount_Main_Partitions();
Ethan Yonker1b190162016-12-05 15:25:19 -0600340#ifdef AB_OTA_UPDATER
341 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
342#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600343 setup_uevent();
Dees_Troy5bf43922012-09-07 16:07:55 -0400344 return true;
345}
346
347int TWPartitionManager::Write_Fstab(void) {
348 FILE *fp;
349 std::vector<TWPartition*>::iterator iter;
350 string Line;
351
352 fp = fopen("/etc/fstab", "w");
353 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000354 LOGINFO("Can not open /etc/fstab.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400355 return false;
356 }
Dees_Troy63c8df72012-09-10 14:02:05 -0400357 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -0400358 if ((*iter)->Can_Be_Mounted) {
dianlujitao7d304c72016-01-02 12:15:50 +0800359 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
Dees_Troy5bf43922012-09-07 16:07:55 -0400360 fputs(Line.c_str(), fp);
Dees_Troy91862e62013-04-04 23:48:21 +0000361 }
362 // Handle subpartition tracking
363 if ((*iter)->Is_SubPartition) {
364 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
365 if (ParentPartition)
366 ParentPartition->Has_SubPartition = true;
367 else
368 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 -0400369 }
370 }
371 fclose(fp);
372 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400373}
374
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500375void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500376 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
377 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
378 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
379}
380
Matt Mowerbf4efa32014-04-14 23:25:26 -0500381void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
382 if (Part->Has_Android_Secure)
383 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500384 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500385 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500386}
387
Dees_Troy8170a922012-09-18 15:40:25 -0400388void TWPartitionManager::Output_Partition_Logging(void) {
389 std::vector<TWPartition*>::iterator iter;
390
391 printf("\n\nPartition Logs:\n");
392 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
393 Output_Partition((*iter));
394}
395
396void TWPartitionManager::Output_Partition(TWPartition* Part) {
397 unsigned long long mb = 1048576;
398
Gary Peck004d48b2012-11-21 16:28:18 -0800399 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 -0400400 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800401 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 -0400402 }
Gary Peck004d48b2012-11-21 16:28:18 -0800403 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500404 if (Part->Can_Be_Mounted)
405 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800406 if (Part->Can_Be_Wiped)
407 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700408 if (Part->Use_Rm_Rf)
409 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500410 if (Part->Can_Be_Backed_Up)
411 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800412 if (Part->Wipe_During_Factory_Reset)
413 printf("Wipe_During_Factory_Reset ");
414 if (Part->Wipe_Available_in_GUI)
415 printf("Wipe_Available_in_GUI ");
416 if (Part->Is_SubPartition)
417 printf("Is_SubPartition ");
418 if (Part->Has_SubPartition)
419 printf("Has_SubPartition ");
420 if (Part->Removable)
421 printf("Removable ");
422 if (Part->Is_Present)
423 printf("IsPresent ");
424 if (Part->Can_Be_Encrypted)
425 printf("Can_Be_Encrypted ");
426 if (Part->Is_Encrypted)
427 printf("Is_Encrypted ");
428 if (Part->Is_Decrypted)
429 printf("Is_Decrypted ");
430 if (Part->Has_Data_Media)
431 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000432 if (Part->Can_Encrypt_Backup)
433 printf("Can_Encrypt_Backup ");
434 if (Part->Use_Userdata_Encryption)
435 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800436 if (Part->Has_Android_Secure)
437 printf("Has_Android_Secure ");
438 if (Part->Is_Storage)
439 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500440 if (Part->Is_Settings_Storage)
441 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000442 if (Part->Ignore_Blkid)
443 printf("Ignore_Blkid ");
Dees_Troy16c2b312013-01-15 16:51:18 +0000444 if (Part->Retain_Layout_Version)
445 printf("Retain_Layout_Version ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600446 if (Part->Mount_To_Decrypt)
447 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600448 if (Part->Can_Flash_Img)
449 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600450 if (Part->Is_Adopted_Storage)
451 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600452 if (Part->SlotSelect)
453 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600454 if (Part->Mount_Read_Only)
455 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800456 printf("\n");
457 if (!Part->SubPartition_Of.empty())
458 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
459 if (!Part->Symlink_Path.empty())
460 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
461 if (!Part->Symlink_Mount_Point.empty())
462 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
463 if (!Part->Primary_Block_Device.empty())
464 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
465 if (!Part->Alternate_Block_Device.empty())
466 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
467 if (!Part->Decrypted_Block_Device.empty())
468 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800469 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600470 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800471 if (Part->Length != 0)
472 printf(" Length: %i\n", Part->Length);
473 if (!Part->Display_Name.empty())
474 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500475 if (!Part->Storage_Name.empty())
476 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800477 if (!Part->Backup_Path.empty())
478 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
479 if (!Part->Backup_Name.empty())
480 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500481 if (!Part->Backup_Display_Name.empty())
482 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800483 if (!Part->Backup_FileName.empty())
484 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
485 if (!Part->Storage_Path.empty())
486 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
487 if (!Part->Current_File_System.empty())
488 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
489 if (!Part->Fstab_File_System.empty())
490 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
491 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500492 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400493 if (!Part->MTD_Name.empty())
494 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600495 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800496 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600497 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600498 if (Part->MTP_Storage_ID)
499 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500500 if (!Part->Key_Directory.empty())
501 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500502 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400503}
504
Dees_Troy51a0e822012-09-05 15:24:24 -0400505int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400506 std::vector<TWPartition*>::iterator iter;
507 int ret = false;
508 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400509 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400510
Dees_Troyd93bda52013-07-03 19:55:19 +0000511 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400512 return true;
513
Dees_Troy5bf43922012-09-07 16:07:55 -0400514 // Iterate through all partitions
515 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400516 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400517 ret = (*iter)->Mount(Display_Error);
518 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400519 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400520 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400521 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400522 }
523 if (found) {
524 return ret;
525 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500526 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 -0400527 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000528 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400529 }
530 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400531}
532
Dees_Troy51a0e822012-09-05 15:24:24 -0400533int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400534 std::vector<TWPartition*>::iterator iter;
535 int ret = false;
536 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400537 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400538
539 // Iterate through all partitions
540 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400541 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400542 ret = (*iter)->UnMount(Display_Error);
543 found = true;
544 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
545 (*iter)->UnMount(Display_Error);
546 }
547 }
548 if (found) {
549 return ret;
550 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500551 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 -0400552 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000553 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400554 }
555 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400556}
557
Dees_Troy51a0e822012-09-05 15:24:24 -0400558int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400559 TWPartition* Part = Find_Partition_By_Path(Path);
560
561 if (Part)
562 return Part->Is_Mounted();
563 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000564 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400565 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400566}
567
Dees_Troy5bf43922012-09-07 16:07:55 -0400568int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400569 string current_storage_path = DataManager::GetCurrentStoragePath();
570
571 if (Mount_By_Path(current_storage_path, Display_Error)) {
572 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
573 if (FreeStorage)
574 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
575 return true;
576 }
577 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400578}
579
Dees_Troy5bf43922012-09-07 16:07:55 -0400580int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
581 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
582}
583
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600584TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400585 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400586 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400587
588 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400589 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400590 return (*iter);
591 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400592 return NULL;
593}
594
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600595TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
596 std::vector<TWPartition*>::iterator iter;
597
598 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
599 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
600 return (*iter);
601 }
602 return NULL;
603}
604
Ethan Yonker53796e72019-01-11 22:49:52 -0600605int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400606 // Check the backup name to ensure that it is the correct size and contains only valid characters
607 // and that a backup with that name doesn't already exist
608 char backup_name[MAX_BACKUP_NAME_LEN];
609 char backup_loc[255], tw_image_dir[255];
610 int copy_size;
611 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600612 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400613
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400614 copy_size = Backup_Name.size();
615 // Check size
616 if (copy_size > MAX_BACKUP_NAME_LEN) {
617 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500618 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400619 return -2;
620 }
621
622 // Check each character
623 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500624 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400625 return 0; // A "0" (zero) means to use the current timestamp for the backup name
626 for (index=0; index<copy_size; index++) {
627 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500628 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 -0400629 // These are valid characters
630 // Numbers
631 // Upper case letters
632 // Lower case letters
633 // Space
634 // and -_.{}[]
635 } else {
636 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600637 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 -0400638 return -3;
639 }
640 }
641
Ethan Yonker53796e72019-01-11 22:49:52 -0600642 if (Must_Be_Unique) {
643 // Check to make sure that a backup with this name doesn't already exist
644 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
645 strcpy(backup_loc, Backup_Loc.c_str());
646 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
647 if (TWFunc::Path_Exists(tw_image_dir)) {
648 if (Display_Error)
649 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500650
Ethan Yonker53796e72019-01-11 22:49:52 -0600651 return -4;
652 }
653 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400654 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600655 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400656 return 0;
657}
658
bigbiffce8f83c2015-12-12 18:30:21 -0500659bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400660 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600661 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500662 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400663
bigbiffce8f83c2015-12-12 18:30:21 -0500664 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400665 return true;
666
Dees_Troy093b7642012-09-21 15:59:38 -0400667 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400668
Tom Hite5a926722014-09-15 01:31:03 +0000669 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400670 time(&start);
671
bigbiffce8f83c2015-12-12 18:30:21 -0500672 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500673 sync();
674 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400675 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500676 if (!part_settings->adbbackup && part_settings->generate_digest) {
677 if (!twrpDigestDriver::Make_Digest(Full_Filename))
678 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400679 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400680
bigbiffce8f83c2015-12-12 18:30:21 -0500681 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400682 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400683 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400684
685 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400686 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500687 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500688 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500689 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000690 }
Dees_Troy2727b992013-08-14 20:09:30 +0000691 sync();
692 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400693 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400694 if (!part_settings->adbbackup && part_settings->generate_digest) {
695 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500696 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500697 }
Tom Hite5a926722014-09-15 01:31:03 +0000698 }
Dees_Troy8170a922012-09-18 15:40:25 -0400699 }
700 }
701 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400702
Dees_Troy43d8b002012-09-17 16:00:01 -0400703 time(&stop);
that203bcc92015-05-09 17:27:33 +0200704 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000705 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400706
bigbiffce8f83c2015-12-12 18:30:21 -0500707 if (part_settings->Part->Backup_Method == BM_FILES) {
708 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400709 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500710 part_settings->img_time += backup_time;
711
Dees_Troy43d8b002012-09-17 16:00:01 -0400712 }
Tom Hite5a926722014-09-15 01:31:03 +0000713
Matt Mower02899552016-12-30 18:13:51 -0600714 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500715 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400716 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500717backup_error:
718 Clean_Backup_Folder(part_settings->Backup_Folder);
719 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
720 tw_set_default_metadata(backup_log.c_str());
721 TWFunc::SetPerformanceMode(false);
722 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500723}
724
bigbiffbf1d6722015-02-14 16:25:59 -0500725void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
726 DIR *d = opendir(Backup_Folder.c_str());
727 struct dirent *p;
728 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400729 vector<string> ext;
730
731 //extensions we should delete when cleaning
732 ext.push_back("win");
733 ext.push_back("md5");
734 ext.push_back("sha2");
735 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500736
Ethan Yonker74db1572015-10-28 12:44:49 -0500737 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500738
739 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500740 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500741 return;
742 }
743
Matt Mower2b18a532015-02-20 16:58:05 -0600744 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500745 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
746 continue;
747
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500748 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500749
750 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400751 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
752 if (path.substr(dot) == *i) {
753 r = unlink(path.c_str());
754 if (r != 0)
755 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500756 }
757 }
758 }
759 closedir(d);
760}
761
Ethan Yonker472f5062016-02-25 13:47:30 -0600762int TWPartitionManager::Check_Backup_Cancel() {
763 return stop_backup.get_value();
764}
765
bigbiff7abc5fe2015-01-17 16:53:12 -0500766int TWPartitionManager::Cancel_Backup() {
767 string Backup_Folder, Backup_Name, Full_Backup_Path;
768
769 stop_backup.set_value(1);
770
771 if (tar_fork_pid != 0) {
772 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
773 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500774 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500775 LOGINFO("Killing pid: %d\n", tar_fork_pid);
776 kill(tar_fork_pid, SIGUSR2);
777 while (kill(tar_fork_pid, 0) == 0) {
778 usleep(1000);
779 }
780 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
781 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
782 TWFunc::removeDir(Full_Backup_Path, false);
783 tar_fork_pid = 0;
784 }
785
786 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400787}
788
bigbiffce8f83c2015-12-12 18:30:21 -0500789int TWPartitionManager::Run_Backup(bool adbbackup) {
790 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400791 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500792 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600793 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400794 TWPartition* storage = NULL;
Dees_Troy8170a922012-09-18 15:40:25 -0400795 std::vector<TWPartition*>::iterator subpart;
Dees_Troy43d8b002012-09-17 16:00:01 -0400796 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600797 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500798 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500799 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400800 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500801 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400802
bigbiffce8f83c2015-12-12 18:30:21 -0500803 part_settings.img_bytes_remaining = 0;
804 part_settings.file_bytes_remaining = 0;
805 part_settings.img_time = 0;
806 part_settings.file_time = 0;
807 part_settings.img_bytes = 0;
808 part_settings.file_bytes = 0;
809 part_settings.PM_Method = PM_BACKUP;
810
bigbiffce8f83c2015-12-12 18:30:21 -0500811 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400812 time(&total_start);
813
814 Update_System_Details();
815
816 if (!Mount_Current_Storage(true))
817 return false;
818
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400819 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
820 if (skip_digest == 0)
821 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400822 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400823 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400824
bigbiffce8f83c2015-12-12 18:30:21 -0500825 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500826 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
827 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
828 Backup_Name = TWFunc::Get_Current_Date();
829 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000830 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500831 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400832 }
bigbiffce8f83c2015-12-12 18:30:21 -0500833
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500834 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500835 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500836
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500837 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400838
Dees_Troy2673cec2013-04-02 20:22:16 +0000839 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500840 DataManager::GetValue("tw_backup_list", Backup_List);
841 if (!Backup_List.empty()) {
842 end_pos = Backup_List.find(";", start_pos);
843 while (end_pos != string::npos && start_pos < Backup_List.size()) {
844 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500845 part_settings.Part = Find_Partition_By_Path(backup_path);
846 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500847 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500848 if (part_settings.Part->Backup_Method == BM_FILES)
849 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500850 else
bigbiffce8f83c2015-12-12 18:30:21 -0500851 part_settings.img_bytes += part_settings.Part->Backup_Size;
852 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500853 std::vector<TWPartition*>::iterator subpart;
854
855 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500856 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 -0500857 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500858 if ((*subpart)->Backup_Method == BM_FILES)
859 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500860 else
bigbiffce8f83c2015-12-12 18:30:21 -0500861 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500862 }
863 }
Dees_Troy8170a922012-09-18 15:40:25 -0400864 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500865 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500866 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 -0400867 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500868 start_pos = end_pos + 1;
869 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400870 }
871 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400872
873 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500874 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400875 return false;
876 }
bigbiffce8f83c2015-12-12 18:30:21 -0500877 if (adbbackup) {
878 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
879 return false;
880 }
881 }
882 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600883 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500884 part_settings.progress = &progress;
885
Ethan Yonker74db1572015-10-28 12:44:49 -0500886 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
887 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400888 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
889 if (storage != NULL) {
890 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500891 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400892 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500893 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400894 return false;
895 }
bigbiffbf1d6722015-02-14 16:25:59 -0500896
Matt Mowerbfccfb82016-04-25 23:22:31 -0500897 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500898
899 if (adbbackup)
900 disable_free_space_check = true;
901
bigbiffbf1d6722015-02-14 16:25:59 -0500902 if (!disable_free_space_check) {
903 if (free_space - (32 * 1024 * 1024) < total_bytes) {
904 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500905 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500906 return false;
907 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400908 }
bigbiffce8f83c2015-12-12 18:30:21 -0500909 part_settings.img_bytes_remaining = part_settings.img_bytes;
910 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400911
Ethan Yonker74db1572015-10-28 12:44:49 -0500912 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -0400913
914 int is_decrypted = 0;
915 int is_encrypted = 0;
916
917 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
918 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
919 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
920 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
921 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
922 gui_err("fail_backup_folder=Failed to make backup folder.");
923 return false;
924 }
Dees_Troyd4b22b02013-01-18 17:17:58 +0000925 }
926
Dees_Troy2673cec2013-04-02 20:22:16 +0000927 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400928
Dees_Troya13d74f2013-03-24 08:54:55 -0500929 start_pos = 0;
930 end_pos = Backup_List.find(";", start_pos);
931 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500932 if (stop_backup.get_value() != 0)
933 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500934 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500935 part_settings.Part = Find_Partition_By_Path(backup_path);
936 if (part_settings.Part != NULL) {
937 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500938 return false;
939 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500940 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 -0500941 }
942 start_pos = end_pos + 1;
943 end_pos = Backup_List.find(";", start_pos);
944 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400945
946 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500947 if (part_settings.img_time == 0)
948 part_settings.img_time = 1;
949 if (part_settings.file_time == 0)
950 part_settings.file_time = 1;
951 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
952 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400953
bigbiffce8f83c2015-12-12 18:30:21 -0500954 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600955 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 -0500956 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600957 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 -0400958
959 time(&total_stop);
960 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -0500961
962 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600963 if (!adbbackup) {
964 TWExclude twe;
965 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
966 } else
bigbiffce8f83c2015-12-12 18:30:21 -0500967 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500968 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -0400969
bigbiffce8f83c2015-12-12 18:30:21 -0500970 int prev_img_bps = 0, use_compression = 0;
971 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -0600972 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400973 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500974 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400975
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500976 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400977 if (use_compression)
978 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500979 else
Dees_Troy093b7642012-09-21 15:59:38 -0400980 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
981 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500982 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400983
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500984 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400985 if (use_compression)
986 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
987 else
988 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
989
Ethan Yonker74db1572015-10-28 12:44:49 -0500990 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -0400991 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400992 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -0600993 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500994 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000995 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600996 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500997
998 if (part_settings.adbbackup) {
999 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1000 return false;
1001 }
1002 }
1003 part_settings.adbbackup = false;
1004 DataManager::SetValue("tw_enable_adb_backup", 0);
1005
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001006 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001007}
1008
bigbiffce8f83c2015-12-12 18:30:21 -05001009bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001010 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001011
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001012 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001013 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1014 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001015 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1016 }
1017
Tom Hite5a926722014-09-15 01:31:03 +00001018 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001019
Dees_Troy4a2a1262012-09-18 09:33:47 -04001020 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001021
bigbiffce8f83c2015-12-12 18:30:21 -05001022 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001023 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001024 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001025 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001026 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001027 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001028 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001029
1030 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001031 part_settings->Part = *subpart;
1032 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1033 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001034 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001035 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001036 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001037 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001038 }
Dees_Troy8170a922012-09-18 15:40:25 -04001039 }
1040 }
1041 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001042 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001043 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001044 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1045
Dees_Troy4a2a1262012-09-18 09:33:47 -04001046 return true;
1047}
1048
Ethan Yonker472f5062016-02-25 13:47:30 -06001049int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001050 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001051 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001052
Dees_Troy4a2a1262012-09-18 09:33:47 -04001053 time_t rStart, rStop;
1054 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001055 string Restore_List, restore_path;
1056 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001057
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001058 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001059 part_settings.Part = NULL;
1060 part_settings.partition_count = 0;
1061 part_settings.total_restore_size = 0;
1062 part_settings.adbbackup = false;
1063 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001064
Ethan Yonker74db1572015-10-28 12:44:49 -05001065 gui_msg("restore_started=[RESTORE STARTED]");
1066 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001067
Dees_Troy4a2a1262012-09-18 09:33:47 -04001068 if (!Mount_Current_Storage(true))
1069 return false;
1070
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001071 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1072 if (check_digest > 0) {
1073 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1074 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1075 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001076 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001077 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001078 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001079 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001080 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001081
Dees_Troya13d74f2013-03-24 08:54:55 -05001082 if (!Restore_List.empty()) {
1083 end_pos = Restore_List.find(";", start_pos);
1084 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1085 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001086 part_settings.Part = Find_Partition_By_Path(restore_path);
1087 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001088 if (part_settings.Part->Mount_Read_Only) {
1089 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 -05001090 return false;
1091 }
bigbiffce8f83c2015-12-12 18:30:21 -05001092
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001093 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1094
1095 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001096 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001097 part_settings.partition_count++;
1098 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1099 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001100 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001101 std::vector<TWPartition*>::iterator subpart;
1102
1103 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001104 part_settings.Part = *subpart;
1105 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001106 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001107 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001108 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001109 }
1110 }
1111 }
1112 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001113 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001114 }
1115 start_pos = end_pos + 1;
1116 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001117 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001118 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001119
bigbiffce8f83c2015-12-12 18:30:21 -05001120 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001121 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001122 return false;
1123 }
1124
bigbiffce8f83c2015-12-12 18:30:21 -05001125 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1126 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 +00001127 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001128 ProgressTracking progress(part_settings.total_restore_size);
1129 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001130
Dees_Troya13d74f2013-03-24 08:54:55 -05001131 start_pos = 0;
1132 if (!Restore_List.empty()) {
1133 end_pos = Restore_List.find(";", start_pos);
1134 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1135 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001136
1137 part_settings.Part = Find_Partition_By_Path(restore_path);
1138 if (part_settings.Part != NULL) {
1139 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001140 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001141 return false;
1142 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001143 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001144 }
1145 start_pos = end_pos + 1;
1146 end_pos = Restore_List.find(";", start_pos);
1147 }
1148 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001149 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001150 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001151 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001152 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001153 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001154 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001155 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001156
Dees_Troy63c8df72012-09-10 14:02:05 -04001157 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001158}
1159
1160void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001161 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001162 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001163 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001164 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001165
1166 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001167 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1168 vector<string> adb_files;
1169 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1170 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1171 string adb_restore_file = adb_files.at(i);
1172 std::size_t pos = adb_restore_file.find_first_of(".");
1173 std::string path = "/" + adb_restore_file.substr(0, pos);
1174 Restore_List = path + ";";
1175 TWPartition* Part = Find_Partition_By_Path(path);
1176 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1177 adbbackup = true;
1178 }
1179 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001180 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001181 else {
1182 DIR* d;
1183 d = opendir(Restore_Name.c_str());
1184 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001185 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001186 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1187 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001188 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001189
1190 struct dirent* de;
1191 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001192 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001193 // Strip off three components
1194 char str[256];
1195 char* label;
1196 char* fstype = NULL;
1197 char* extn = NULL;
1198 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001199
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001200 strcpy(str, de->d_name);
1201 if (strlen(str) <= 2)
1202 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001203
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001204 if (get_date) {
1205 char file_path[255];
1206 struct stat st;
1207
1208 strcpy(file_path, Restore_Name.c_str());
1209 strcat(file_path, "/");
1210 strcat(file_path, str);
1211 stat(file_path, &st);
1212 string backup_date = ctime((const time_t*)(&st.st_mtime));
1213 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1214 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001215 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001216
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001217 label = str;
1218 ptr = label;
1219 while (*ptr && *ptr != '.') ptr++;
1220 if (*ptr == '.')
1221 {
1222 *ptr = 0x00;
1223 ptr++;
1224 fstype = ptr;
1225 }
1226 while (*ptr && *ptr != '.') ptr++;
1227 if (*ptr == '.')
1228 {
1229 *ptr = 0x00;
1230 ptr++;
1231 extn = ptr;
1232 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001233
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001234 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1235 int extnlength = strlen(extn);
1236 if (extnlength != 3 && extnlength != 6) continue;
1237 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1238 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001239
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001240 if (check_encryption) {
1241 string filename = Restore_Name + "/";
1242 filename += de->d_name;
1243 if (TWFunc::Get_File_Type(filename) == 2) {
1244 LOGINFO("'%s' is encrypted\n", filename.c_str());
1245 DataManager::SetValue("tw_restore_encrypted", 1);
1246 }
1247 }
1248 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1249
1250 TWPartition* Part = Find_Partition_By_Path(label);
1251 if (Part == NULL)
1252 {
1253 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1254 continue;
1255 }
1256
1257 Part->Backup_FileName = de->d_name;
1258 if (strlen(extn) > 3) {
1259 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1260 }
1261
1262 if (!Part->Is_SubPartition)
1263 Restore_List += Part->Backup_Path + ";";
1264 }
1265 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001266 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001267
1268 if (adbbackup) {
1269 Restore_List = "ADB_Backup;";
1270 adbbackup = false;
1271 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001272
Dees_Troya13d74f2013-03-24 08:54:55 -05001273 // Set the final value
1274 DataManager::SetValue("tw_restore_list", Restore_List);
1275 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001276 return;
1277}
1278
1279int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001280 std::vector<TWPartition*>::iterator iter;
1281 int ret = false;
1282 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001283 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001284
1285 // Iterate through all partitions
1286 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001287 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troye58d5262012-09-21 12:27:57 -04001288 if (Path == "/and-sec")
1289 ret = (*iter)->Wipe_AndSec();
1290 else
1291 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001292 found = true;
1293 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1294 (*iter)->Wipe();
1295 }
1296 }
1297 if (found) {
1298 return ret;
1299 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001300 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 -04001301 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001302}
1303
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001304int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1305 std::vector<TWPartition*>::iterator iter;
1306 int ret = false;
1307 bool found = false;
1308 string Local_Path = TWFunc::Get_Root_Path(Path);
1309
1310 // Iterate through all partitions
1311 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1312 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1313 if (Path == "/and-sec")
1314 ret = (*iter)->Wipe_AndSec();
1315 else
1316 ret = (*iter)->Wipe(New_File_System);
1317 found = true;
1318 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1319 (*iter)->Wipe(New_File_System);
1320 }
1321 }
1322 if (found) {
1323 return ret;
1324 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001325 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 -05001326 return false;
1327}
1328
Dees_Troy51a0e822012-09-05 15:24:24 -04001329int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001330 std::vector<TWPartition*>::iterator iter;
1331 int ret = true;
1332
1333 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001334 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001335#ifdef TW_OEM_BUILD
1336 if ((*iter)->Mount_Point == "/data") {
1337 if (!(*iter)->Wipe_Encryption())
1338 ret = false;
1339 } else {
1340#endif
1341 if (!(*iter)->Wipe())
1342 ret = false;
1343#ifdef TW_OEM_BUILD
1344 }
1345#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001346 } else if ((*iter)->Has_Android_Secure) {
1347 if (!(*iter)->Wipe_AndSec())
1348 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001349 }
1350 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001351 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001352 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001353}
1354
Dees_Troy38bd7602012-09-14 13:33:53 -04001355int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1356 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001357 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001358
1359 if (!Mount_By_Path("/data", true))
1360 return false;
1361
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001362 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001363
1364 std::string cacheDir = TWFunc::get_cache_dir();
1365 if (cacheDir == NON_AB_CACHE_DIR) {
1366 if (!PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false)) {
1367 LOGINFO("Unable to mount %s for wiping cache.\n", NON_AB_CACHE_DIR);
1368 }
1369 dir.push_back(cacheDir + "dalvik-cache");
1370 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001371 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001372
Dees_Troy38bd7602012-09-14 13:33:53 -04001373 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001374 if (sdext && sdext->Is_Present && sdext->Mount(false))
1375 {
1376 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1377 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001378 dir.push_back("/sd-ext/dalvik-cache");
1379 }
1380 }
1381
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001382 if (cacheDir == NON_AB_CACHE_DIR) {
1383 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1384 } else {
1385 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1386 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001387 for (unsigned i = 0; i < dir.size(); ++i) {
1388 if (stat(dir.at(i).c_str(), &st) == 0) {
1389 TWFunc::removeDir(dir.at(i), false);
1390 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001391 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001392 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001393
1394 if (cacheDir == NON_AB_CACHE_DIR) {
1395 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1396 } else {
1397 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1398 }
1399
Dees_Troy38bd7602012-09-14 13:33:53 -04001400 return true;
1401}
1402
1403int TWPartitionManager::Wipe_Rotate_Data(void) {
1404 if (!Mount_By_Path("/data", true))
1405 return false;
1406
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001407 unlink("/data/misc/akmd*");
1408 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001409 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001410 return true;
1411}
1412
1413int TWPartitionManager::Wipe_Battery_Stats(void) {
1414 struct stat st;
1415
1416 if (!Mount_By_Path("/data", true))
1417 return false;
1418
1419 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001420 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001421 } else {
1422 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001423 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001424 }
1425 return true;
1426}
1427
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001428int TWPartitionManager::Wipe_Android_Secure(void) {
1429 std::vector<TWPartition*>::iterator iter;
1430 int ret = false;
1431 bool found = false;
1432
1433 // Iterate through all partitions
1434 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1435 if ((*iter)->Has_Android_Secure) {
1436 ret = (*iter)->Wipe_AndSec();
1437 found = true;
1438 }
1439 }
1440 if (found) {
1441 return ret;
1442 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001443 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001444 }
1445 return false;
1446}
1447
Dees_Troy38bd7602012-09-14 13:33:53 -04001448int TWPartitionManager::Format_Data(void) {
1449 TWPartition* dat = Find_Partition_By_Path("/data");
1450
1451 if (dat != NULL) {
1452 if (!dat->UnMount(true))
1453 return false;
1454
1455 return dat->Wipe_Encryption();
1456 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001457 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001458 return false;
1459 }
1460 return false;
1461}
1462
1463int TWPartitionManager::Wipe_Media_From_Data(void) {
1464 TWPartition* dat = Find_Partition_By_Path("/data");
1465
1466 if (dat != NULL) {
1467 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001468 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001469 return false;
1470 }
1471 if (!dat->Mount(true))
1472 return false;
1473
Ethan Yonker74db1572015-10-28 12:44:49 -05001474 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001475 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001476 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001477 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001478 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001479 return true;
1480 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001481 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001482 return false;
1483 }
1484 return false;
1485}
1486
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001487int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1488 std::vector<TWPartition*>::iterator iter;
1489 int ret = false;
1490 bool found = false;
1491 string Local_Path = TWFunc::Get_Root_Path(Path);
1492
1493 if (Local_Path == "/tmp" || Local_Path == "/")
1494 return true;
1495
1496 // Iterate through all partitions
1497 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1498 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1499 ret = (*iter)->Repair();
1500 found = true;
1501 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1502 (*iter)->Repair();
1503 }
1504 }
1505 if (found) {
1506 return ret;
1507 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001508 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 -05001509 } else {
1510 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1511 }
1512 return false;
1513}
1514
Ethan Yonkera2719152015-05-28 09:44:41 -05001515int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1516 std::vector<TWPartition*>::iterator iter;
1517 int ret = false;
1518 bool found = false;
1519 string Local_Path = TWFunc::Get_Root_Path(Path);
1520
1521 if (Local_Path == "/tmp" || Local_Path == "/")
1522 return true;
1523
1524 // Iterate through all partitions
1525 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1526 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1527 ret = (*iter)->Resize();
1528 found = true;
1529 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1530 (*iter)->Resize();
1531 }
1532 }
1533 if (found) {
1534 return ret;
1535 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001536 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 -05001537 } else {
1538 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1539 }
1540 return false;
1541}
1542
Dees_Troy51a0e822012-09-05 15:24:24 -04001543void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001544 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001545 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001546
Ethan Yonker74db1572015-10-28 12:44:49 -05001547 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001548 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001549 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001550 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001551 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001552 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1553 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001554 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001555 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1556 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1557 } else if ((*iter)->Mount_Point == "/cache") {
1558 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1559 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1560 } else if ((*iter)->Mount_Point == "/sd-ext") {
1561 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1562 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1563 if ((*iter)->Backup_Size == 0) {
1564 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1565 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1566 } else
1567 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001568 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001569 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001570 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001571 if ((*iter)->Backup_Size == 0) {
1572 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1573 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1574 } else
1575 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001576 } else if ((*iter)->Mount_Point == "/boot") {
1577 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1578 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1579 if ((*iter)->Backup_Size == 0) {
1580 DataManager::SetValue("tw_has_boot_partition", 0);
1581 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1582 } else
1583 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001584 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001585 } else {
1586 // Handle unmountable partitions in case we reset defaults
1587 if ((*iter)->Mount_Point == "/boot") {
1588 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1589 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1590 if ((*iter)->Backup_Size == 0) {
1591 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1592 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1593 } else
1594 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1595 } else if ((*iter)->Mount_Point == "/recovery") {
1596 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1597 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1598 if ((*iter)->Backup_Size == 0) {
1599 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1600 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1601 } else
1602 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001603 } else if ((*iter)->Mount_Point == "/data") {
1604 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001605 }
Dees_Troy51127312012-09-08 13:08:49 -04001606 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001607 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001608 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001609 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1610 string current_storage_path = DataManager::GetCurrentStoragePath();
1611 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001612 if (FreeStorage != NULL) {
1613 // Attempt to mount storage
1614 if (!FreeStorage->Mount(false)) {
Matt Mower2d50cad2015-12-03 22:26:55 -06001615 gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage"));
1616 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
Dees_Troy8170a922012-09-18 15:40:25 -04001617 } else {
1618 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1619 }
1620 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001621 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001622 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001623 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001624 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001625 return;
1626}
1627
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001628void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1629 TWPartition* dat = Find_Partition_By_Path("/data");
1630 if (dat != NULL) {
1631 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1632 dat->Is_Decrypted = true;
1633 if (!Block_Device.empty()) {
1634 dat->Decrypted_Block_Device = Block_Device;
1635 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1636 } else {
1637 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1638 }
1639 dat->Setup_File_System(false);
1640 dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc
1641
1642 // Sleep for a bit so that the device will be ready
1643 sleep(1);
1644 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1645 dat->Storage_Path = "/data/media/0";
1646 dat->Symlink_Path = dat->Storage_Path;
1647 DataManager::SetValue("tw_storage_path", "/data/media/0");
1648 DataManager::SetValue("tw_settings_path", "/data/media/0");
1649 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001650 }
1651 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001652 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001653 UnMount_Main_Partitions();
1654 } else
1655 LOGERR("Unable to locate data partition.\n");
1656}
1657
Dees_Troy51a0e822012-09-05 15:24:24 -04001658int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001659#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001660 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001661 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001662
Ethan Yonker253368a2014-11-25 15:00:52 -06001663 // Mount any partitions that need to be mounted for decrypt
1664 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1665 if ((*iter)->Mount_To_Decrypt) {
1666 (*iter)->Mount(true);
1667 }
a39552696ff55ce2013-01-08 16:14:56 +00001668 }
oshmouna82a7542018-04-10 17:45:55 +02001669 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001670
Ethan Yonkera1de1492015-11-04 11:58:27 -06001671 property_get("ro.crypto.state", crypto_state, "error");
1672 if (strcmp(crypto_state, "error") == 0) {
1673 property_set("ro.crypto.state", "encrypted");
1674 // Sleep for a bit so that services can start if needed
1675 sleep(1);
1676 }
1677
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001678 if (DataManager::GetIntValue(TW_IS_FBE)) {
1679#ifdef TW_INCLUDE_FBE
1680 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1681 return -1;
1682 int retry_count = 10;
1683 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
1684 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1685 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1686 LOGINFO("Decrypting FBE for user %i\n", user_id);
1687 if (Decrypt_User(user_id, Password)) {
1688 Post_Decrypt("");
1689 return 0;
1690 }
1691#else
1692 LOGERR("FBE support is not present\n");
1693#endif
1694 return -1;
1695 }
1696
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001697 int pwret = -1;
1698 pid_t pid = fork();
1699 if (pid < 0) {
1700 LOGERR("fork failed\n");
1701 return -1;
1702 } else if (pid == 0) {
1703 // Child process
1704 char cPassword[255];
1705 strcpy(cPassword, Password.c_str());
1706 int ret = cryptfs_check_passwd(cPassword);
1707 exit(ret);
1708 } else {
1709 // Parent
1710 int status;
1711 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1712 pwret = -1;
1713 else
1714 pwret = WEXITSTATUS(status) ? -1 : 0;
1715 }
a39552696ff55ce2013-01-08 16:14:56 +00001716
nkk7171c6c502017-01-05 23:55:05 +02001717#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1718 if (pwret != 0) {
1719 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001720 switch (pwret) {
1721 case VD_SUCCESS:
1722 break;
1723 case VD_ERR_MISSING_VDC:
1724 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1725 break;
1726 case VD_ERR_MISSING_VOLD:
1727 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1728 break;
1729 }
nkk7171c6c502017-01-05 23:55:05 +02001730 }
1731#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1732
Ethan Yonker253368a2014-11-25 15:00:52 -06001733 // Unmount any partitions that were needed for decrypt
1734 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1735 if ((*iter)->Mount_To_Decrypt) {
1736 (*iter)->UnMount(false);
1737 }
1738 }
oshmouna82a7542018-04-10 17:45:55 +02001739 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001740
a39552696ff55ce2013-01-08 16:14:56 +00001741 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001742 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001743 return -1;
1744 }
a39552696ff55ce2013-01-08 16:14:56 +00001745
Dees_Troy5bf43922012-09-07 16:07:55 -04001746 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1747 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001748 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001749 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001750 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001751 }
1752 return 0;
1753#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001754 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001755 return -1;
1756#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001757 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001758}
1759
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001760int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001761 std::vector<TWPartition*>::iterator iter;
1762 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1763 if ((*iter)->Has_Data_Media) {
1764 if ((*iter)->Mount(true)) {
1765 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1766 return -1;
1767 }
1768 }
1769 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001770 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001771 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001772 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001773}
1774
Ethan Yonker66a19492015-12-10 10:19:45 -06001775TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001776 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1777
1778 if (!Path.empty()) {
1779 string Search_Path = TWFunc::Get_Root_Path(Path);
1780 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001781 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001782 iter++;
1783 break;
1784 }
1785 }
1786 }
1787
1788 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001789 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1790 // do nothing, do not return this type of partition
1791 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001792 return (*iter);
1793 }
1794 }
1795
1796 return NULL;
1797}
1798
Dees_Troyd21618c2012-10-14 18:48:49 -04001799int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001800 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1801
1802 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001803 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1804 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 -04001805 return false;
1806 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001807 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1808 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001809 return false;
1810
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001811 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001812 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001813 return false;
1814 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001815 return true;
1816}
1817
Dees_Troy8170a922012-09-18 15:40:25 -04001818int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001819 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001820 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001821
Ethan Yonker47360be2014-04-01 10:34:34 -05001822 string Lun_File_str = CUSTOM_LUN_FILE;
1823 size_t found = Lun_File_str.find("%");
1824 if (found != string::npos) {
1825 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1826 if (TWFunc::Path_Exists(lun_file))
1827 has_multiple_lun = true;
1828 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001829 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001830 if (!has_multiple_lun) {
1831 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1832 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1833 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001834 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001835 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001836 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1837 goto error_handle;
1838 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001839 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001840 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001841 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001842 }
1843 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001844 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001845 }
Dees_Troy8170a922012-09-18 15:40:25 -04001846 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001847 LOGINFO("Device has multiple lun files\n");
1848 TWPartition* Mount1;
1849 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001850 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001851 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001852 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001853 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1854 goto error_handle;
1855 }
Matt Moweree717062014-04-26 01:46:46 -05001856 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001857 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001858 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001859 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001860 }
1861 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001862 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001863 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001864 }
Dees_Troy8170a922012-09-18 15:40:25 -04001865 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001866 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001867 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001868 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001869error_handle:
1870 if (mtp_was_enabled)
1871 if (!Enable_MTP())
1872 Disable_MTP();
1873 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001874}
1875
1876int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001877 int index, ret;
1878 char lun_file[255], ch[2] = {0, 0};
1879 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001880
1881 for (index=0; index<2; index++) {
1882 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001883 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001884 if (ret < 0) {
1885 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001886 }
Dees_Troy8170a922012-09-18 15:40:25 -04001887 }
Dees_Troye58d5262012-09-21 12:27:57 -04001888 Mount_All_Storage();
1889 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001890 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001891 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001892 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001893 if (mtp_was_enabled)
1894 if (!Enable_MTP())
1895 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001896 if (ret < 0 && index == 0) {
1897 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1898 return false;
1899 } else {
1900 return true;
1901 }
Dees_Troy8170a922012-09-18 15:40:25 -04001902 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04001903}
1904
1905void TWPartitionManager::Mount_All_Storage(void) {
1906 std::vector<TWPartition*>::iterator iter;
1907
1908 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1909 if ((*iter)->Is_Storage)
1910 (*iter)->Mount(false);
1911 }
Dees_Troy2c50e182012-09-26 20:05:28 -04001912}
Dees_Troy9350b8d2012-09-27 12:38:38 -04001913
Dees_Troyd0384ef2012-10-12 12:15:42 -04001914void TWPartitionManager::UnMount_Main_Partitions(void) {
1915 // Unmounts system and data if data is not data/media
1916 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00001917 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04001918
1919 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
1920
Captain Throwback9d6feb52018-07-27 10:05:24 -04001921 UnMount_By_Path(Get_Android_Root_Path(), true);
Ethan Yonker6277c792014-09-15 14:54:30 -05001922 if (!datamedia)
1923 UnMount_By_Path("/data", true);
1924
Dees_Troyd0384ef2012-10-12 12:15:42 -04001925 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
1926 Boot_Partition->UnMount(true);
1927}
1928
Dees_Troy9350b8d2012-09-27 12:38:38 -04001929int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06001930 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06001931 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 -04001932 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04001933
Ethan Yonker74db1572015-10-28 12:44:49 -05001934 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001935
1936 // Locate and validate device to partition
1937 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1938
Ethan Yonker66a19492015-12-10 10:19:45 -06001939 if (SDCard->Is_Adopted_Storage)
1940 SDCard->Revert_Adopted();
1941
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05001942 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001943 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001944 return false;
1945 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001946
1947 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04001948 if (!SDCard->UnMount(true))
1949 return false;
1950 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
1951 if (SDext != NULL) {
1952 if (!SDext->UnMount(true))
1953 return false;
1954 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001955 char* swappath = getenv("SWAPPATH");
1956 if (swappath != NULL) {
1957 LOGINFO("Unmounting swap at '%s'\n", swappath);
1958 umount(swappath);
1959 }
Vojtech Bocek05534202013-09-11 08:11:56 +02001960
Ethan Yonker483e9f42016-01-11 22:21:18 -06001961 // Determine block device
1962 if (SDCard->Alternate_Block_Device.empty()) {
1963 SDCard->Find_Actual_Block_Device();
1964 Device = SDCard->Actual_Block_Device;
1965 // Just use the root block device
1966 Device.resize(strlen("/dev/block/mmcblkX"));
1967 } else {
1968 Device = SDCard->Alternate_Block_Device;
1969 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04001970
1971 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06001972 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001973
1974 DataManager::GetValue("tw_sdext_size", ext);
1975 DataManager::GetValue("tw_swap_size", swap);
1976 DataManager::GetValue("tw_sdpart_file_system", ext_format);
1977 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06001978 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);
1979
1980 // Determine partition sizes
1981 if (swap == 0 && ext == 0) {
1982 fat_str = "-0";
1983 } else {
1984 memset(temp, 0, sizeof(temp));
1985 sprintf(temp, "%i", fat_size);
1986 fat_str = temp;
1987 fat_str += "MB";
1988 }
1989 if (swap == 0) {
1990 ext_str = "-0";
1991 } else {
1992 memset(temp, 0, sizeof(temp));
1993 sprintf(temp, "%i", ext);
1994 ext_str = "+";
1995 ext_str += temp;
1996 ext_str += "MB";
1997 }
1998
Dees_Troy9350b8d2012-09-27 12:38:38 -04001999 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002000 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002001 return false;
2002 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002003
Ethan Yonker74db1572015-10-28 12:44:49 -05002004 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002005 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002006 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002007 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002008 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002009 Update_System_Details();
2010 return false;
2011 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002012 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002013 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 +00002014 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002015 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002016 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002017 return false;
2018 }
2019 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002020 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002021 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002022 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002023 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002024 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002025 Update_System_Details();
2026 return false;
2027 }
2028 }
2029 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002030 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002031 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 +00002032 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002033 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002034 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002035 Update_System_Details();
2036 return false;
2037 }
2038 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002039
2040 // Convert GPT to MBR
2041 Command = "sgdisk --gpttombr " + Device;
2042 if (TWFunc::Exec_Cmd(Command) != 0)
2043 LOGINFO("Failed to covert partition GPT to MBR\n");
2044
2045 // Tell the kernel to rescan the partition table
2046 int fd = open(Device.c_str(), O_RDONLY);
2047 ioctl(fd, BLKRRPART, 0);
2048 close(fd);
2049
2050 string format_device = Device;
2051 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2052 format_device += "p";
2053
2054 // Format new partitions to proper file system
2055 if (fat_size > 0) {
2056 Command = "mkfs.fat " + format_device + "1";
2057 TWFunc::Exec_Cmd(Command);
2058 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002059 if (ext > 0) {
2060 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002061 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2062 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2063 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2064 TWFunc::Exec_Cmd(Command);
2065 } else {
2066 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002067 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002068 }
2069 if (swap > 0) {
2070 Command = "mkswap " + format_device;
2071 if (ext > 0)
2072 Command += "3";
2073 else
2074 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002075 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002076 }
2077
Ethan Yonker483e9f42016-01-11 22:21:18 -06002078 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2079 if (SDCard->Mount(true)) {
2080 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2081 mkdir(TWRP_Folder.c_str(), 0777);
2082 DataManager::Flush();
2083 }
2084
Dees_Troy9350b8d2012-09-27 12:38:38 -04002085 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002086 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002087 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002088}
Dees_Troya13d74f2013-03-24 08:54:55 -05002089
2090void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2091 std::vector<TWPartition*>::iterator iter;
2092 if (ListType == "mount") {
2093 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002094 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002095 struct PartitionList part;
2096 part.Display_Name = (*iter)->Display_Name;
2097 part.Mount_Point = (*iter)->Mount_Point;
2098 part.selected = (*iter)->Is_Mounted();
2099 Partition_List->push_back(part);
2100 }
2101 }
2102 } else if (ListType == "storage") {
2103 char free_space[255];
2104 string Current_Storage = DataManager::GetCurrentStoragePath();
2105 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2106 if ((*iter)->Is_Storage) {
2107 struct PartitionList part;
2108 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2109 part.Display_Name = (*iter)->Storage_Name + " (";
2110 part.Display_Name += free_space;
2111 part.Display_Name += "MB)";
2112 part.Mount_Point = (*iter)->Storage_Path;
2113 if ((*iter)->Storage_Path == Current_Storage)
2114 part.selected = 1;
2115 else
2116 part.selected = 0;
2117 Partition_List->push_back(part);
2118 }
2119 }
2120 } else if (ListType == "backup") {
2121 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002122 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002123 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002124 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002125 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002126 Backup_Size = (*iter)->Backup_Size;
2127 if ((*iter)->Has_SubPartition) {
2128 std::vector<TWPartition*>::iterator subpart;
2129
2130 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2131 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2132 Backup_Size += (*subpart)->Backup_Size;
2133 }
2134 }
2135 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002136 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2137 part.Display_Name += backup_size;
2138 part.Display_Name += "MB)";
2139 part.Mount_Point = (*iter)->Backup_Path;
2140 part.selected = 0;
2141 Partition_List->push_back(part);
2142 }
2143 }
2144 } else if (ListType == "restore") {
2145 string Restore_List, restore_path;
2146 TWPartition* restore_part = NULL;
2147
2148 DataManager::GetValue("tw_restore_list", Restore_List);
2149 if (!Restore_List.empty()) {
2150 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2151 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2152 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002153 struct PartitionList part;
2154 if (restore_path.compare("ADB_Backup") == 0) {
2155 part.Display_Name = "ADB Backup";
2156 part.Mount_Point = "ADB Backup";
2157 part.selected = 1;
2158 Partition_List->push_back(part);
2159 break;
2160 }
Dees_Troy59df9262013-06-19 14:53:57 -05002161 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002162 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002163 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002164 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002165 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002166 part.Display_Name = restore_part->Backup_Display_Name;
2167 part.Mount_Point = restore_part->Backup_Path;
2168 part.selected = 1;
2169 Partition_List->push_back(part);
2170 }
2171 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002172 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002173 }
2174 start_pos = end_pos + 1;
2175 end_pos = Restore_List.find(";", start_pos);
2176 }
2177 }
2178 } else if (ListType == "wipe") {
2179 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002180 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002181 dalvik.Mount_Point = "DALVIK";
2182 dalvik.selected = 0;
2183 Partition_List->push_back(dalvik);
2184 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2185 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2186 struct PartitionList part;
2187 part.Display_Name = (*iter)->Display_Name;
2188 part.Mount_Point = (*iter)->Mount_Point;
2189 part.selected = 0;
2190 Partition_List->push_back(part);
2191 }
2192 if ((*iter)->Has_Android_Secure) {
2193 struct PartitionList part;
2194 part.Display_Name = (*iter)->Backup_Display_Name;
2195 part.Mount_Point = (*iter)->Backup_Path;
2196 part.selected = 0;
2197 Partition_List->push_back(part);
2198 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002199 if ((*iter)->Has_Data_Media) {
2200 struct PartitionList datamedia;
2201 datamedia.Display_Name = (*iter)->Storage_Name;
2202 datamedia.Mount_Point = "INTERNAL";
2203 datamedia.selected = 0;
2204 Partition_List->push_back(datamedia);
2205 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002206 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002207 } else if (ListType == "flashimg") {
2208 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2209 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2210 struct PartitionList part;
2211 part.Display_Name = (*iter)->Backup_Display_Name;
2212 part.Mount_Point = (*iter)->Backup_Path;
2213 part.selected = 0;
2214 Partition_List->push_back(part);
2215 }
2216 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002217 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2218 TWPartition* boot = Find_Partition_By_Path("/boot");
2219 if (boot) {
2220 // Allow flashing kernels and ramdisks
2221 struct PartitionList repack_ramdisk;
2222 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2223 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2224 repack_ramdisk.selected = 0;
2225 Partition_List->push_back(repack_ramdisk);
2226 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2227 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2228 repack_kernel.Mount_Point = "/repack_kernel";
2229 repack_kernel.selected = 0;
2230 Partition_List->push_back(repack_kernel);*/
2231 }
2232 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002233 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002234 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002235 }
2236}
2237
2238int TWPartitionManager::Fstab_Processed(void) {
2239 return Partitions.size();
2240}
Dees_Troyd93bda52013-07-03 19:55:19 +00002241
2242void TWPartitionManager::Output_Storage_Fstab(void) {
2243 std::vector<TWPartition*>::iterator iter;
2244 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002245 std::string Temp;
2246 std::string cacheDir = TWFunc::get_cache_dir();
2247
2248 if (cacheDir.empty()) {
2249 LOGINFO("Unable to find cache directory\n");
2250 return;
2251 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002252
2253 std::string storageFstab = TWFunc::get_cache_dir() + "recovery/storage.fstab";
2254 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002255
2256 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002257 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002258 return;
2259 }
2260
2261 // Iterate through all partitions
2262 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2263 if ((*iter)->Is_Storage) {
2264 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2265 strcpy(storage_partition, Temp.c_str());
2266 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2267 }
2268 }
2269 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002270}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002271
2272TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2273{
2274 TWPartition *res = NULL;
2275 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002276 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002277 continue;
2278
Matt Mowera8a89d12016-12-30 18:10:37 -06002279 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002280 return *iter;
2281
Matt Mowera8a89d12016-12-30 18:10:37 -06002282 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002283 res = *iter;
2284 }
2285 return res;
2286}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002287
2288bool TWPartitionManager::Enable_MTP(void) {
2289#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002290 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002291 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002292 return true;
2293 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002294
2295 int mtppipe[2];
2296
2297 if (pipe(mtppipe) < 0) {
2298 LOGERR("Error creating MTP pipe\n");
2299 return false;
2300 }
2301
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002302 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002303 property_get("sys.usb.config", old_value, "");
2304 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002305 char vendor[PROPERTY_VALUE_MAX];
2306 char product[PROPERTY_VALUE_MAX];
2307 property_set("sys.usb.config", "none");
2308 property_get("usb.vendor", vendor, "18D1");
2309 property_get("usb.product.mtpadb", product, "4EE2");
2310 string vendorstr = vendor;
2311 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002312 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2313 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002314 property_set("sys.usb.config", "mtp,adb");
2315 }
Matt Mower653a1702017-02-16 10:38:52 -06002316 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002317 * twrp set tw_mtp_debug 1
2318 */
2319 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002320 mtppid = mtp->forkserver(mtppipe);
2321 if (mtppid) {
2322 close(mtppipe[0]); // Host closes read side
2323 mtp_write_fd = mtppipe[1];
2324 DataManager::SetValue("tw_mtp_enabled", 1);
2325 Add_All_MTP_Storage();
2326 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002327 } else {
2328 close(mtppipe[0]);
2329 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002330 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002331 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002332 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002333#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002334 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002335#endif
2336 DataManager::SetValue("tw_mtp_enabled", 0);
2337 return false;
2338}
2339
Ethan Yonker1b039202015-01-30 10:08:48 -06002340void TWPartitionManager::Add_All_MTP_Storage(void) {
2341#ifdef TW_HAS_MTP
2342 std::vector<TWPartition*>::iterator iter;
2343
2344 if (!mtppid)
2345 return; // MTP is not enabled
2346
2347 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2348 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2349 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2350 }
2351#else
2352 return;
2353#endif
2354}
2355
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002356bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002357 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002358 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002359 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002360 if (strcmp(old_value, "adb") != 0) {
2361 char vendor[PROPERTY_VALUE_MAX];
2362 char product[PROPERTY_VALUE_MAX];
2363 property_set("sys.usb.config", "none");
2364 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002365 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002366 string vendorstr = vendor;
2367 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002368 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2369 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002370 usleep(2000);
2371 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002372#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002373 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002374 LOGINFO("Disabling MTP\n");
2375 int status;
2376 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002377 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002378 // We don't care about the exit value, but this prevents a zombie process
2379 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002380 close(mtp_write_fd);
2381 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002382 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002383#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002384 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002385#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002386 DataManager::SetValue("tw_mtp_enabled", 0);
2387 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002388#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002389 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002390}
Ethan Yonker726a0202014-12-16 20:01:38 -06002391
2392TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2393 std::vector<TWPartition*>::iterator iter;
2394
2395 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2396 if ((*iter)->MTP_Storage_ID == Storage_ID)
2397 return (*iter);
2398 }
2399 return NULL;
2400}
2401
2402bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2403#ifdef TW_HAS_MTP
2404 struct mtpmsg mtp_message;
2405
2406 if (!mtppid)
2407 return false; // MTP is disabled
2408
2409 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002410 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002411 return false;
2412 }
2413
2414 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002415 if (Part->MTP_Storage_ID == 0)
2416 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002417 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2418 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2419 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2420 mtp_message.storage_id = Part->MTP_Storage_ID;
2421 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002422 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002423 return false;
2424 } else {
2425 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2426 return true;
2427 }
2428 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2429 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2430 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002431 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2432 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2433 return false;
2434 }
2435 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2436 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2437 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2438 return false;
2439 }
2440 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002441 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002442 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 -06002443 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002444 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002445 return false;
2446 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002447 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002448 return true;
2449 }
2450 } else {
2451 LOGERR("Unknown MTP message type: %i\n", message_type);
2452 }
2453 } else {
2454 // This hopefully never happens as the error handling should
2455 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002456 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002457 }
2458 return true;
2459#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002460 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002461 DataManager::SetValue("tw_mtp_enabled", 0);
2462 return false;
2463#endif
2464}
2465
2466bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2467#ifdef TW_HAS_MTP
2468 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2469 if (Part) {
2470 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2471 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002472 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002473 }
2474#endif
2475 return false;
2476}
2477
2478bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2479#ifdef TW_HAS_MTP
2480 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2481 if (Part) {
2482 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2483 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002484 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002485 }
2486#endif
2487 return false;
2488}
2489
2490bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2491#ifdef TW_HAS_MTP
2492 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2493 if (Part) {
2494 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2495 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002496 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002497 }
2498#endif
2499 return false;
2500}
2501
2502bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2503#ifdef TW_HAS_MTP
2504 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2505 if (Part) {
2506 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2507 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002508 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002509 }
2510#endif
2511 return false;
2512}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002513
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002514bool TWPartitionManager::Flash_Image(string& path, string& filename) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002515 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002516 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002517 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002518 size_t start_pos = 0, end_pos = 0;
2519
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002520 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002521
bigbiffce8f83c2015-12-12 18:30:21 -05002522 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2523 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2524
2525 if (!TWFunc::Path_Exists(full_filename)) {
2526 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002527 return false;
2528 }
bigbiffce8f83c2015-12-12 18:30:21 -05002529 if (!TWFunc::Path_Exists(full_filename)) {
2530 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002531 return false;
2532 }
2533 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002534
Ethan Yonker53796e72019-01-11 22:49:52 -06002535 DataManager::GetValue("tw_flash_partition", Flash_List);
2536 Repack_Type repack = REPLACE_NONE;
2537 if (Flash_List == "/repack_ramdisk;") {
2538 repack = REPLACE_RAMDISK;
2539 } else if (Flash_List == "/repack_kernel;") {
2540 repack = REPLACE_KERNEL;
2541 }
2542 if (repack != REPLACE_NONE) {
2543 Repack_Options_struct Repack_Options;
2544 Repack_Options.Type = repack;
2545 Repack_Options.Disable_Verity = false;
2546 Repack_Options.Disable_Force_Encrypt = false;
2547 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
2548 return Repack_Images(full_filename, Repack_Options);
2549 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002550 PartitionSettings part_settings;
2551 part_settings.Backup_Folder = path;
2552 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2553 ProgressTracking progress(total_bytes);
2554 part_settings.progress = &progress;
2555 part_settings.adbbackup = false;
2556 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002557 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002558 if (!Flash_List.empty()) {
2559 end_pos = Flash_List.find(";", start_pos);
2560 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2561 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2562 flash_part = Find_Partition_By_Path(flash_path);
2563 if (flash_part != NULL) {
2564 partition_count++;
2565 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002566 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002567 return false;
2568 }
2569 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002570 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002571 return false;
2572 }
2573 start_pos = end_pos + 1;
2574 end_pos = Flash_List.find(";", start_pos);
2575 }
2576 }
2577
2578 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002579 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002580 return false;
2581 }
2582
2583 DataManager::SetProgress(0.0);
2584 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002585 flash_part->Backup_FileName = filename;
2586 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002587 return false;
2588 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002589 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002590 return false;
2591 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002592 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002593 return true;
2594}
Ethan Yonker74db1572015-10-28 12:44:49 -05002595
2596void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2597 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2598 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002599 if (part->Is_Adopted_Storage) {
2600 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2601 part->Backup_Display_Name = part->Display_Name;
2602 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2603 } else {
2604 part->Display_Name = gui_lookup(resource_name, default_value);
2605 part->Backup_Display_Name = part->Display_Name;
2606 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002607 }
2608}
2609
2610void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2611 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2612 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002613 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002614 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002615 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002616 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2617 } else {
2618 part->Display_Name = gui_lookup(resource_name, default_value);
2619 part->Backup_Display_Name = part->Display_Name;
2620 if (part->Is_Storage)
2621 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2622 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002623 }
2624}
2625
Ethan Yonker01f4e032017-02-03 15:30:52 -06002626void 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) {
2627 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2628 if (part) {
2629 if (part->Is_Adopted_Storage) {
2630 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2631 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2632 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2633 } else {
2634 part->Display_Name = gui_lookup(resource_name, default_value);
2635 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2636 if (part->Is_Storage)
2637 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2638 }
2639 }
2640}
2641
Ethan Yonker74db1572015-10-28 12:44:49 -05002642void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002643 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002644 Translate_Partition("/system", "system", "System");
2645 Translate_Partition("/system_image", "system_image", "System Image");
2646 Translate_Partition("/vendor", "vendor", "Vendor");
2647 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2648 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002649 Translate_Partition("/boot", "boot", "Boot");
2650 Translate_Partition("/recovery", "recovery", "Recovery");
2651 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002652 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002653 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2654 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2655 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2656 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002657 } else {
2658 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002659 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002660 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2661 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002662 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2663 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2664
2665 // Android secure is a special case
2666 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2667 if (part)
2668 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2669
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002670 std::vector<TWPartition*>::iterator sysfs;
2671 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2672 if (!(*sysfs)->Sysfs_Entry.empty()) {
2673 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2674 }
2675 }
2676
Ethan Yonker74db1572015-10-28 12:44:49 -05002677 // This updates the text on all of the storage selection buttons in the GUI
2678 DataManager::SetBackupFolder();
2679}
Ethan Yonker66a19492015-12-10 10:19:45 -06002680
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002681bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002682#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002683 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002684 if (!Mount_By_Path("/data", false)) {
2685 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002686 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002687 }
2688 LOGINFO("Decrypt adopted storage starting\n");
2689 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2690 xml_document<> *doc = NULL;
2691 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002692 string Primary_Storage_UUID = "";
2693 if (xmlFile != NULL) {
2694 LOGINFO("successfully loaded storage.xml\n");
2695 doc = new xml_document<>();
2696 doc->parse<0>(xmlFile);
2697 volumes = doc->first_node("volumes");
2698 if (volumes) {
2699 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2700 if (psuuid) {
2701 Primary_Storage_UUID = psuuid->value();
2702 }
2703 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002704 } else {
2705 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2706 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002707 }
2708 std::vector<TWPartition*>::iterator adopt;
2709 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2710 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2711 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002712 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002713 if (volumes) {
2714 xml_node<>* volume = volumes->first_node("volume");
2715 while (volume) {
2716 xml_attribute<>* guid = volume->first_attribute("partGuid");
2717 if (guid) {
2718 string GUID = (*adopt)->Adopted_GUID.c_str();
2719 GUID.insert(8, "-");
2720 GUID.insert(13, "-");
2721 GUID.insert(18, "-");
2722 GUID.insert(23, "-");
2723
2724 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2725 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002726 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002727 (*adopt)->Storage_Name = attr->value();
2728 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2729 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2730 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2731 }
2732 attr = volume->first_attribute("fsUuid");
2733 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2734 TWPartition* Dat = Find_Partition_By_Path("/data");
2735 if (Dat) {
2736 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2737 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2738 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2739 Dat->Symlink_Mount_Point = "";
2740 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2741 Dat->UnMount(false);
2742 Dat->Mount(false);
2743 (*adopt)->UnMount(false);
2744 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002745 }
2746 }
2747 break;
2748 }
2749 }
2750 volume = volume->next_sibling("volume");
2751 }
2752 }
nkk71ffb02bd2017-06-04 23:12:16 +03002753 Update_System_Details();
2754 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002755 }
2756 }
2757 }
2758 if (xmlFile) {
2759 doc->clear();
2760 delete doc;
2761 free(xmlFile);
2762 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002763 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002764#else
2765 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002766 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002767#endif
2768}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002769
2770void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2771 std::vector<TWPartition*>::iterator iter;
2772 string Local_Path = TWFunc::Get_Root_Path(Path);
2773
2774 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2775 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2776 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2777 Partitions.erase(iter);
2778 return;
2779 }
2780 }
2781}
Ethan Yonker1b190162016-12-05 15:25:19 -06002782
2783void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2784 if (Slot != "A" && Slot != "B") {
2785 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2786 return;
2787 }
2788 if (Active_Slot_Display == Slot)
2789 return;
2790 LOGINFO("Setting active slot %s\n", Slot.c_str());
2791#ifdef AB_OTA_UPDATER
2792 if (!Active_Slot_Display.empty()) {
2793 const hw_module_t *hw_module;
2794 boot_control_module_t *module;
2795 int ret;
2796 ret = hw_get_module("bootctrl", &hw_module);
2797 if (ret != 0) {
2798 LOGERR("Error getting bootctrl module.\n");
2799 } else {
2800 module = (boot_control_module_t*) hw_module;
2801 module->init(module);
2802 int slot_number = 0;
2803 if (Slot == "B")
2804 slot_number = 1;
2805 if (module->setActiveBootSlot(module, slot_number))
2806 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2807 }
2808 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
2809 }
2810#else
2811 LOGERR("Boot slot feature not present\n");
2812#endif
2813 Active_Slot_Display = Slot;
2814 if (Fstab_Processed())
2815 Update_System_Details();
2816}
2817string TWPartitionManager::Get_Active_Slot_Suffix() {
2818 if (Active_Slot_Display == "A")
2819 return "_a";
2820 return "_b";
2821}
2822string TWPartitionManager::Get_Active_Slot_Display() {
2823 return Active_Slot_Display;
2824}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002825
Captain Throwback9d6feb52018-07-27 10:05:24 -04002826string TWPartitionManager::Get_Android_Root_Path() {
2827 std::string Android_Root = getenv("ANDROID_ROOT");
2828 if (Android_Root == "")
2829 Android_Root = "/system";
2830 return Android_Root;
2831}
2832
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002833void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
2834 std::vector<TWPartition*>::iterator iter;
2835
2836 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
2837 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
2838 TWPartition *part = *iter;
2839 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
2840 (*iter)->UnMount(false);
2841 rmdir((*iter)->Mount_Point.c_str());
2842 iter = Partitions.erase(iter);
2843 delete part;
2844 } else {
2845 iter++;
2846 }
2847 }
2848}
2849
2850void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
2851 std::vector<TWPartition*>::iterator iter;
2852
2853 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2854 if (!(*iter)->Sysfs_Entry.empty()) {
2855 string device;
2856 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
2857 if (wildcard != string::npos) {
2858 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
2859 } else {
2860 device = (*iter)->Sysfs_Entry;
2861 }
2862 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
2863 // Found a match
2864 if (uevent_data.action == "add") {
2865 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
2866 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
2867 (*iter)->Is_Present = true;
2868 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
2869 if (!Decrypt_Adopted()) {
2870 LOGINFO("No adopted storage so finding actual block device\n");
2871 (*iter)->Find_Actual_Block_Device();
2872 }
2873 return;
2874 } else if (uevent_data.action == "remove") {
2875 (*iter)->Is_Present = false;
2876 (*iter)->Primary_Block_Device = "";
2877 (*iter)->Actual_Block_Device = "";
2878 Remove_Uevent_Devices((*iter)->Mount_Point);
2879 return;
2880 }
2881 }
2882 }
2883 }
2884 LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str());
2885}
2886
2887void TWPartitionManager::setup_uevent() {
2888 struct sockaddr_nl nls;
2889
2890 if (uevent_pfd.fd >= 0) {
2891 LOGINFO("uevent already set up\n");
2892 return;
2893 }
2894
2895 // Open hotplug event netlink socket
2896 memset(&nls,0,sizeof(struct sockaddr_nl));
2897 nls.nl_family = AF_NETLINK;
2898 nls.nl_pid = getpid();
2899 nls.nl_groups = -1;
2900 uevent_pfd.events = POLLIN;
2901 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
2902 if (uevent_pfd.fd==-1) {
2903 LOGERR("uevent not root\n");
2904 return;
2905 }
2906
2907 // Listen to netlink socket
2908 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
2909 LOGERR("Bind failed\n");
2910 return;
2911 }
2912 set_select_fd();
2913 Coldboot();
2914}
2915
2916Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
2917 Uevent_Block_Data ret;
2918 ret.subsystem = "";
2919 char *ptr = buf;
2920 const char *end = buf + len;
2921
2922 buf[len - 1] = '\0';
2923 while (ptr < end) {
2924 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
2925 ptr += strlen("ACTION=");
2926 ret.action = ptr;
2927 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
2928 ptr += strlen("SUBSYSTEM=");
2929 ret.subsystem = ptr;
2930 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
2931 ptr += strlen("DEVTYPE=");
2932 ret.type = ptr;
2933 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
2934 ptr += strlen("DEVPATH=");
2935 ret.sysfs_path += ptr;
2936 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
2937 ptr += strlen("DEVNAME=");
2938 ret.block_device += ptr;
2939 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
2940 ptr += strlen("MAJOR=");
2941 ret.major = atoi(ptr);
2942 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
2943 ptr += strlen("MINOR=");
2944 ret.minor = atoi(ptr);
2945 }
2946 ptr += strlen(ptr) + 1;
2947 }
2948 return ret;
2949}
2950
2951void TWPartitionManager::read_uevent() {
2952 char buf[1024];
2953
2954 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
2955 if (len == -1) {
2956 LOGERR("recv error on uevent\n");
2957 return;
2958 }
2959 /*int i = 0; // Print all uevent output for test /debug
2960 while (i<len) {
2961 printf("%s\n", buf+i);
2962 i += strlen(buf+i)+1;
2963 }*/
2964 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
2965 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
2966 PartitionManager.Handle_Uevent(uevent_data);
2967 }
2968}
2969
2970void TWPartitionManager::close_uevent() {
2971 if (uevent_pfd.fd > 0)
2972 close(uevent_pfd.fd);
2973 uevent_pfd.fd = -1;
2974}
2975
2976void TWPartitionManager::Add_Partition(TWPartition* Part) {
2977 Partitions.push_back(Part);
2978}
2979
2980void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
2981 string Real_Path = Path;
2982 char real_path[PATH_MAX];
2983 if (realpath(Path.c_str(), &real_path[0])) {
2984 string Real_Path = real_path;
2985 std::vector<string>::iterator iter;
2986 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
2987 if (Real_Path.find((*iter)) != string::npos) {
2988 string Write_Path = Real_Path + "/uevent";
2989 if (TWFunc::Path_Exists(Write_Path)) {
2990 const char* write_val = "add\n";
2991 TWFunc::write_to_file(Write_Path, write_val);
2992 break;
2993 }
2994 }
2995 }
2996 }
2997
2998 DIR* d = opendir(Path.c_str());
2999 if (d != NULL) {
3000 struct dirent* de;
3001 while ((de = readdir(d)) != NULL) {
3002 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3003 continue;
3004 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3005 continue;
3006
3007 string item = Path + "/";
3008 item.append(de->d_name);
3009 Coldboot_Scan(sysfs_entries, item, depth + 1);
3010 }
3011 closedir(d);
3012 }
3013}
3014
3015void TWPartitionManager::Coldboot() {
3016 std::vector<TWPartition*>::iterator iter;
3017 std::vector<string> sysfs_entries;
3018
3019 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3020 if (!(*iter)->Sysfs_Entry.empty()) {
3021 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3022 if (wildcard_pos == string::npos)
3023 wildcard_pos = (*iter)->Sysfs_Entry.size();
3024 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3025 }
3026 }
3027
3028 if (sysfs_entries.size() > 0)
3029 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3030}
Ethan Yonker53796e72019-01-11 22:49:52 -06003031
3032bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3033 if (TWFunc::Path_Exists(Folder))
3034 TWFunc::removeDir(Folder, false);
3035 return TWFunc::Recursive_Mkdir(Folder);
3036}
3037
3038bool TWPartitionManager::Prepare_Repack(TWPartition* Part, const std::string& Temp_Folder_Destination, const bool Create_Backup, const std::string& Backup_Name) {
3039 if (!Part) {
3040 LOGERR("Partition was null!\n");
3041 return false;
3042 }
3043 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3044 return false;
3045 std::string target_image = Temp_Folder_Destination + "boot.img";
3046 PartitionSettings part_settings;
3047 part_settings.Part = Part;
3048 if (Create_Backup) {
3049 if (Check_Backup_Name(Backup_Name, true, false) != 0)
3050 return false;
3051 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
3052 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + TWFunc::Get_Current_Date() + " " + Backup_Name + "/";
3053 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder))
3054 return false;
3055 } else
3056 part_settings.Backup_Folder = Temp_Folder_Destination;
3057 part_settings.adbbackup = false;
3058 part_settings.generate_digest = false;
3059 part_settings.generate_md5 = false;
3060 part_settings.PM_Method = PM_BACKUP;
3061 part_settings.progress = NULL;
3062 pid_t not_a_pid = 0;
3063 if (!Part->Backup(&part_settings, &not_a_pid))
3064 return false;
3065 std::string backed_up_image = part_settings.Backup_Folder;
3066 backed_up_image += Part->Backup_FileName;
3067 target_image = Temp_Folder_Destination + "boot.img";
3068 if (Create_Backup) {
3069 std::string source = part_settings.Backup_Folder + Part->Backup_FileName;
3070 if (TWFunc::copy_file(source, target_image, 0644) != 0) {
3071 LOGERR("Failed to copy backup file '%s' to temp folder target '%s'\n", source.c_str(), target_image.c_str());
3072 return false;
3073 }
3074 } else {
3075 if (rename(backed_up_image.c_str(), target_image.c_str()) != 0) {
3076 LOGERR("Failed to rename '%s' to '%s'\n", backed_up_image.c_str(), target_image.c_str());
3077 return false;
3078 }
3079 }
3080 return Prepare_Repack(target_image, Temp_Folder_Destination, false, false);
3081}
3082
3083bool TWPartitionManager::Prepare_Repack(const std::string& Source_Path, const std::string& Temp_Folder_Destination, const bool Copy_Source, const bool Create_Destination) {
3084 if (Create_Destination) {
3085 if (!Prepare_Empty_Folder(Temp_Folder_Destination))
3086 return false;
3087 }
3088 if (Copy_Source) {
3089 std::string destination = Temp_Folder_Destination + "/boot.img";
3090 if (TWFunc::copy_file(Source_Path, destination, 0644))
3091 return false;
3092 }
Mauronofrio Matarrese82a2f452019-04-04 22:39:12 +01003093 std::string command = "cd " + Temp_Folder_Destination + " && /sbin/magiskboot --unpack -h '" + Source_Path +"'";
Ethan Yonker53796e72019-01-11 22:49:52 -06003094 if (TWFunc::Exec_Cmd(command) != 0) {
3095 LOGINFO("Error unpacking %s!\n", Source_Path.c_str());
3096 gui_msg(Msg(msg::kError, "unpack_error=Error unpacking image."));
3097 return false;
3098 }
3099 return true;
3100}
3101
3102bool TWPartitionManager::Repack_Images(const std::string& Target_Image, const struct Repack_Options_struct& Repack_Options) {
3103 if (!TWFunc::Path_Exists("/sbin/magiskboot")) {
3104 LOGERR("Image repacking tool not present in this TWRP build!");
3105 return false;
3106 }
3107 DataManager::SetProgress(0);
3108 TWPartition* part = PartitionManager.Find_Partition_By_Path("/boot");
3109 if (part)
3110 gui_msg(Msg("unpacking_image=Unpacking {1}...")(part->Display_Name));
3111 else {
3112 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/boot"));
3113 return false;
3114 }
3115 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3116 return false;
3117 DataManager::SetProgress(.25);
3118 gui_msg(Msg("unpacking_image=Unpacking {1}...")(Target_Image));
3119 if (!PartitionManager.Prepare_Repack(Target_Image, REPACK_NEW_DIR, true))
3120 return false;
3121 DataManager::SetProgress(.5);
3122 gui_msg(Msg("repacking_image=Repacking {1}...")(part->Display_Name));
3123 std::string path = REPACK_NEW_DIR;
3124 if (Repack_Options.Type == REPLACE_KERNEL) {
3125 // When we replace the kernel, what we really do is copy the boot partition ramdisk into the new image's folder
3126 if (TWFunc::copy_file(REPACK_ORIG_DIR "ramdisk.cpio", REPACK_NEW_DIR "ramdisk.cpio", 0644)) {
3127 LOGERR("Failed to copy ramdisk\n");
3128 return false;
3129 }
3130 } else if (Repack_Options.Type == REPLACE_RAMDISK) {
3131 // Repack the ramdisk
3132 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3133 LOGERR("Failed to copy ramdisk\n");
3134 return false;
3135 }
3136 path = REPACK_ORIG_DIR;
3137 } else {
3138 LOGERR("Invalid repacking options specified\n");
3139 return false;
3140 }
3141 if (Repack_Options.Disable_Verity)
3142 LOGERR("Disabling verity is not implemented yet\n");
3143 if (Repack_Options.Disable_Force_Encrypt)
3144 LOGERR("Disabling force encrypt is not implemented yet\n");
3145 std::string command = "cd " + path + " && /sbin/magiskboot --repack " + path + "boot.img";
3146 if (TWFunc::Exec_Cmd(command) != 0) {
3147 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3148 return false;
3149 }
3150 DataManager::SetProgress(.75);
3151 std::string file = "new-boot.img";
3152 DataManager::SetValue("tw_flash_partition", "/boot;");
3153 if (!PartitionManager.Flash_Image(path, file)) {
3154 LOGINFO("Error flashing new image\n");
3155 return false;
3156 }
3157 DataManager::SetProgress(1);
3158 TWFunc::removeDir(REPACK_ORIG_DIR, false);
Ethan Yonker9f5dd312019-05-15 15:17:36 -05003159 if (part->SlotSelect && Repack_Options.Type == REPLACE_RAMDISK) {
3160 LOGINFO("Switching slots to flash ramdisk to both partitions\n");
3161 string Current_Slot = Get_Active_Slot_Display();
3162 if (Current_Slot == "A")
3163 Set_Active_Slot("B");
3164 else
3165 Set_Active_Slot("A");
3166 DataManager::SetProgress(.25);
3167 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, Repack_Options.Backup_First, gui_lookup("repack", "Repack")))
3168 return false;
3169 if (TWFunc::copy_file(REPACK_NEW_DIR "ramdisk.cpio", REPACK_ORIG_DIR "ramdisk.cpio", 0644)) {
3170 LOGERR("Failed to copy ramdisk\n");
3171 return false;
3172 }
3173 path = REPACK_ORIG_DIR;
3174 command = "cd " + path + " && /sbin/magiskboot --repack " + path + "boot.img";
3175 if (TWFunc::Exec_Cmd(command) != 0) {
3176 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
3177 return false;
3178 }
3179 DataManager::SetProgress(.75);
3180 std::string file = "new-boot.img";
3181 DataManager::SetValue("tw_flash_partition", "/boot;");
3182 if (!PartitionManager.Flash_Image(path, file)) {
3183 LOGINFO("Error flashing new image\n");
3184 return false;
3185 }
3186 DataManager::SetProgress(1);
3187 TWFunc::removeDir(REPACK_ORIG_DIR, false);
3188 Set_Active_Slot(Current_Slot);
3189 }
Ethan Yonker53796e72019-01-11 22:49:52 -06003190 TWFunc::removeDir(REPACK_NEW_DIR, false);
3191 return true;
3192}