blob: 34ba6aea60222f8ef99797e2c7b172003693bcb9 [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
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400605int TWPartitionManager::Check_Backup_Name(bool Display_Error) {
606 // 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;
612 string Backup_Name, Backup_Loc;
613
614 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
615 copy_size = Backup_Name.size();
616 // Check size
617 if (copy_size > MAX_BACKUP_NAME_LEN) {
618 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500619 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400620 return -2;
621 }
622
623 // Check each character
624 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500625 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400626 return 0; // A "0" (zero) means to use the current timestamp for the backup name
627 for (index=0; index<copy_size; index++) {
628 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500629 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 -0400630 // These are valid characters
631 // Numbers
632 // Upper case letters
633 // Lower case letters
634 // Space
635 // and -_.{}[]
636 } else {
637 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600638 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 -0400639 return -3;
640 }
641 }
642
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());
Dees_Troya13d74f2013-03-24 08:54:55 -0500646 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500647 if (TWFunc::Path_Exists(tw_image_dir)) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400648 if (Display_Error)
Matt Mower3c366972015-12-25 19:28:31 -0600649 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500650
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400651 return -4;
652 }
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400653 // No problems found, return 0
654 return 0;
655}
656
bigbiffce8f83c2015-12-12 18:30:21 -0500657bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400658 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600659 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500660 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400661
bigbiffce8f83c2015-12-12 18:30:21 -0500662 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400663 return true;
664
Dees_Troy093b7642012-09-21 15:59:38 -0400665 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400666
Tom Hite5a926722014-09-15 01:31:03 +0000667 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400668 time(&start);
669
bigbiffce8f83c2015-12-12 18:30:21 -0500670 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500671 sync();
672 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400673 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500674 if (!part_settings->adbbackup && part_settings->generate_digest) {
675 if (!twrpDigestDriver::Make_Digest(Full_Filename))
676 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400677 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400678
bigbiffce8f83c2015-12-12 18:30:21 -0500679 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400680 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400681 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400682
683 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400684 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500685 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500686 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500687 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000688 }
Dees_Troy2727b992013-08-14 20:09:30 +0000689 sync();
690 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400691 if (!part_settings->adbbackup && part_settings->generate_digest) {
692 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500693 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500694 }
Tom Hite5a926722014-09-15 01:31:03 +0000695 }
Dees_Troy8170a922012-09-18 15:40:25 -0400696 }
697 }
698 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400699
Dees_Troy43d8b002012-09-17 16:00:01 -0400700 time(&stop);
that203bcc92015-05-09 17:27:33 +0200701 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000702 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400703
bigbiffce8f83c2015-12-12 18:30:21 -0500704 if (part_settings->Part->Backup_Method == BM_FILES) {
705 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400706 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500707 part_settings->img_time += backup_time;
708
Dees_Troy43d8b002012-09-17 16:00:01 -0400709 }
Tom Hite5a926722014-09-15 01:31:03 +0000710
Matt Mower02899552016-12-30 18:13:51 -0600711 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500712 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400713 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500714backup_error:
715 Clean_Backup_Folder(part_settings->Backup_Folder);
716 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
717 tw_set_default_metadata(backup_log.c_str());
718 TWFunc::SetPerformanceMode(false);
719 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500720}
721
bigbiffbf1d6722015-02-14 16:25:59 -0500722void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
723 DIR *d = opendir(Backup_Folder.c_str());
724 struct dirent *p;
725 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400726 vector<string> ext;
727
728 //extensions we should delete when cleaning
729 ext.push_back("win");
730 ext.push_back("md5");
731 ext.push_back("sha2");
732 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500733
Ethan Yonker74db1572015-10-28 12:44:49 -0500734 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500735
736 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500737 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500738 return;
739 }
740
Matt Mower2b18a532015-02-20 16:58:05 -0600741 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500742 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
743 continue;
744
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500745 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500746
747 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400748 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
749 if (path.substr(dot) == *i) {
750 r = unlink(path.c_str());
751 if (r != 0)
752 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500753 }
754 }
755 }
756 closedir(d);
757}
758
Ethan Yonker472f5062016-02-25 13:47:30 -0600759int TWPartitionManager::Check_Backup_Cancel() {
760 return stop_backup.get_value();
761}
762
bigbiff7abc5fe2015-01-17 16:53:12 -0500763int TWPartitionManager::Cancel_Backup() {
764 string Backup_Folder, Backup_Name, Full_Backup_Path;
765
766 stop_backup.set_value(1);
767
768 if (tar_fork_pid != 0) {
769 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
770 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500771 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500772 LOGINFO("Killing pid: %d\n", tar_fork_pid);
773 kill(tar_fork_pid, SIGUSR2);
774 while (kill(tar_fork_pid, 0) == 0) {
775 usleep(1000);
776 }
777 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
778 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
779 TWFunc::removeDir(Full_Backup_Path, false);
780 tar_fork_pid = 0;
781 }
782
783 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400784}
785
bigbiffce8f83c2015-12-12 18:30:21 -0500786int TWPartitionManager::Run_Backup(bool adbbackup) {
787 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400788 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500789 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600790 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400791 TWPartition* storage = NULL;
Dees_Troy8170a922012-09-18 15:40:25 -0400792 std::vector<TWPartition*>::iterator subpart;
Dees_Troy43d8b002012-09-17 16:00:01 -0400793 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600794 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500795 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500796 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400797 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500798 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400799
bigbiffce8f83c2015-12-12 18:30:21 -0500800 part_settings.img_bytes_remaining = 0;
801 part_settings.file_bytes_remaining = 0;
802 part_settings.img_time = 0;
803 part_settings.file_time = 0;
804 part_settings.img_bytes = 0;
805 part_settings.file_bytes = 0;
806 part_settings.PM_Method = PM_BACKUP;
807
bigbiffce8f83c2015-12-12 18:30:21 -0500808 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400809 time(&total_start);
810
811 Update_System_Details();
812
813 if (!Mount_Current_Storage(true))
814 return false;
815
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400816 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
817 if (skip_digest == 0)
818 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400819 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400820 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400821
bigbiffce8f83c2015-12-12 18:30:21 -0500822 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500823 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
824 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
825 Backup_Name = TWFunc::Get_Current_Date();
826 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000827 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500828 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400829 }
bigbiffce8f83c2015-12-12 18:30:21 -0500830
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500831 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500832 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500833
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500834 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400835
Dees_Troy2673cec2013-04-02 20:22:16 +0000836 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500837 DataManager::GetValue("tw_backup_list", Backup_List);
838 if (!Backup_List.empty()) {
839 end_pos = Backup_List.find(";", start_pos);
840 while (end_pos != string::npos && start_pos < Backup_List.size()) {
841 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500842 part_settings.Part = Find_Partition_By_Path(backup_path);
843 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500844 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500845 if (part_settings.Part->Backup_Method == BM_FILES)
846 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500847 else
bigbiffce8f83c2015-12-12 18:30:21 -0500848 part_settings.img_bytes += part_settings.Part->Backup_Size;
849 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500850 std::vector<TWPartition*>::iterator subpart;
851
852 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500853 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 -0500854 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500855 if ((*subpart)->Backup_Method == BM_FILES)
856 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500857 else
bigbiffce8f83c2015-12-12 18:30:21 -0500858 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500859 }
860 }
Dees_Troy8170a922012-09-18 15:40:25 -0400861 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500862 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500863 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 -0400864 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500865 start_pos = end_pos + 1;
866 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400867 }
868 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400869
870 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500871 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400872 return false;
873 }
bigbiffce8f83c2015-12-12 18:30:21 -0500874 if (adbbackup) {
875 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
876 return false;
877 }
878 }
879 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600880 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500881 part_settings.progress = &progress;
882
Ethan Yonker74db1572015-10-28 12:44:49 -0500883 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
884 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400885 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
886 if (storage != NULL) {
887 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500888 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400889 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500890 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400891 return false;
892 }
bigbiffbf1d6722015-02-14 16:25:59 -0500893
Matt Mowerbfccfb82016-04-25 23:22:31 -0500894 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500895
896 if (adbbackup)
897 disable_free_space_check = true;
898
bigbiffbf1d6722015-02-14 16:25:59 -0500899 if (!disable_free_space_check) {
900 if (free_space - (32 * 1024 * 1024) < total_bytes) {
901 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500902 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500903 return false;
904 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400905 }
bigbiffce8f83c2015-12-12 18:30:21 -0500906 part_settings.img_bytes_remaining = part_settings.img_bytes;
907 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400908
Ethan Yonker74db1572015-10-28 12:44:49 -0500909 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -0400910
911 int is_decrypted = 0;
912 int is_encrypted = 0;
913
914 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
915 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
916 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
917 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
918 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
919 gui_err("fail_backup_folder=Failed to make backup folder.");
920 return false;
921 }
Dees_Troyd4b22b02013-01-18 17:17:58 +0000922 }
923
Dees_Troy2673cec2013-04-02 20:22:16 +0000924 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400925
Dees_Troya13d74f2013-03-24 08:54:55 -0500926 start_pos = 0;
927 end_pos = Backup_List.find(";", start_pos);
928 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500929 if (stop_backup.get_value() != 0)
930 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500931 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500932 part_settings.Part = Find_Partition_By_Path(backup_path);
933 if (part_settings.Part != NULL) {
934 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500935 return false;
936 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500937 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 -0500938 }
939 start_pos = end_pos + 1;
940 end_pos = Backup_List.find(";", start_pos);
941 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400942
943 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500944 if (part_settings.img_time == 0)
945 part_settings.img_time = 1;
946 if (part_settings.file_time == 0)
947 part_settings.file_time = 1;
948 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
949 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400950
bigbiffce8f83c2015-12-12 18:30:21 -0500951 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600952 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 -0500953 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600954 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 -0400955
956 time(&total_stop);
957 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -0500958
959 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600960 if (!adbbackup) {
961 TWExclude twe;
962 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
963 } else
bigbiffce8f83c2015-12-12 18:30:21 -0500964 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500965 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -0400966
bigbiffce8f83c2015-12-12 18:30:21 -0500967 int prev_img_bps = 0, use_compression = 0;
968 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -0600969 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400970 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500971 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400972
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500973 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400974 if (use_compression)
975 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500976 else
Dees_Troy093b7642012-09-21 15:59:38 -0400977 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
978 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500979 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400980
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500981 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400982 if (use_compression)
983 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
984 else
985 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
986
Ethan Yonker74db1572015-10-28 12:44:49 -0500987 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -0400988 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400989 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -0600990 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500991 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000992 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600993 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500994
995 if (part_settings.adbbackup) {
996 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
997 return false;
998 }
999 }
1000 part_settings.adbbackup = false;
1001 DataManager::SetValue("tw_enable_adb_backup", 0);
1002
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001003 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001004}
1005
bigbiffce8f83c2015-12-12 18:30:21 -05001006bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001007 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001008
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001009 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001010 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1011 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001012 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1013 }
1014
Tom Hite5a926722014-09-15 01:31:03 +00001015 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001016
Dees_Troy4a2a1262012-09-18 09:33:47 -04001017 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001018
bigbiffce8f83c2015-12-12 18:30:21 -05001019 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001020 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001021 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001022 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001023 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001024 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001025 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001026
1027 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001028 part_settings->Part = *subpart;
1029 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1030 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001031 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001032 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001033 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001034 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001035 }
Dees_Troy8170a922012-09-18 15:40:25 -04001036 }
1037 }
1038 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001039 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001040 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001041 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1042
Dees_Troy4a2a1262012-09-18 09:33:47 -04001043 return true;
1044}
1045
Ethan Yonker472f5062016-02-25 13:47:30 -06001046int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001047 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001048 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001049
Dees_Troy4a2a1262012-09-18 09:33:47 -04001050 time_t rStart, rStop;
1051 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001052 string Restore_List, restore_path;
1053 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001054
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001055 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001056 part_settings.Part = NULL;
1057 part_settings.partition_count = 0;
1058 part_settings.total_restore_size = 0;
1059 part_settings.adbbackup = false;
1060 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001061
Ethan Yonker74db1572015-10-28 12:44:49 -05001062 gui_msg("restore_started=[RESTORE STARTED]");
1063 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001064
Dees_Troy4a2a1262012-09-18 09:33:47 -04001065 if (!Mount_Current_Storage(true))
1066 return false;
1067
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001068 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1069 if (check_digest > 0) {
1070 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1071 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1072 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001073 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001074 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001075 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001076 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001077 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001078
Dees_Troya13d74f2013-03-24 08:54:55 -05001079 if (!Restore_List.empty()) {
1080 end_pos = Restore_List.find(";", start_pos);
1081 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1082 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001083 part_settings.Part = Find_Partition_By_Path(restore_path);
1084 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001085 if (part_settings.Part->Mount_Read_Only) {
1086 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 -05001087 return false;
1088 }
bigbiffce8f83c2015-12-12 18:30:21 -05001089
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001090 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1091
1092 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001093 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001094 part_settings.partition_count++;
1095 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1096 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001097 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001098 std::vector<TWPartition*>::iterator subpart;
1099
1100 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001101 part_settings.Part = *subpart;
1102 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001103 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001104 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001105 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001106 }
1107 }
1108 }
1109 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001110 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001111 }
1112 start_pos = end_pos + 1;
1113 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001114 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001115 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001116
bigbiffce8f83c2015-12-12 18:30:21 -05001117 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001118 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001119 return false;
1120 }
1121
bigbiffce8f83c2015-12-12 18:30:21 -05001122 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1123 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 +00001124 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001125 ProgressTracking progress(part_settings.total_restore_size);
1126 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001127
Dees_Troya13d74f2013-03-24 08:54:55 -05001128 start_pos = 0;
1129 if (!Restore_List.empty()) {
1130 end_pos = Restore_List.find(";", start_pos);
1131 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1132 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001133
1134 part_settings.Part = Find_Partition_By_Path(restore_path);
1135 if (part_settings.Part != NULL) {
1136 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001137 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001138 return false;
1139 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001140 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001141 }
1142 start_pos = end_pos + 1;
1143 end_pos = Restore_List.find(";", start_pos);
1144 }
1145 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001146 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001147 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001148 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001149 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001150 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001151 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001152 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001153
Dees_Troy63c8df72012-09-10 14:02:05 -04001154 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001155}
1156
1157void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001158 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001159 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001160 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001161 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001162
1163 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001164 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1165 vector<string> adb_files;
1166 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1167 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1168 string adb_restore_file = adb_files.at(i);
1169 std::size_t pos = adb_restore_file.find_first_of(".");
1170 std::string path = "/" + adb_restore_file.substr(0, pos);
1171 Restore_List = path + ";";
1172 TWPartition* Part = Find_Partition_By_Path(path);
1173 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1174 adbbackup = true;
1175 }
1176 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001177 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001178 else {
1179 DIR* d;
1180 d = opendir(Restore_Name.c_str());
1181 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001182 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001183 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1184 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001185 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001186
1187 struct dirent* de;
1188 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001189 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001190 // Strip off three components
1191 char str[256];
1192 char* label;
1193 char* fstype = NULL;
1194 char* extn = NULL;
1195 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001196
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001197 strcpy(str, de->d_name);
1198 if (strlen(str) <= 2)
1199 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001200
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001201 if (get_date) {
1202 char file_path[255];
1203 struct stat st;
1204
1205 strcpy(file_path, Restore_Name.c_str());
1206 strcat(file_path, "/");
1207 strcat(file_path, str);
1208 stat(file_path, &st);
1209 string backup_date = ctime((const time_t*)(&st.st_mtime));
1210 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1211 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001212 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001213
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001214 label = str;
1215 ptr = label;
1216 while (*ptr && *ptr != '.') ptr++;
1217 if (*ptr == '.')
1218 {
1219 *ptr = 0x00;
1220 ptr++;
1221 fstype = ptr;
1222 }
1223 while (*ptr && *ptr != '.') ptr++;
1224 if (*ptr == '.')
1225 {
1226 *ptr = 0x00;
1227 ptr++;
1228 extn = ptr;
1229 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001230
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001231 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1232 int extnlength = strlen(extn);
1233 if (extnlength != 3 && extnlength != 6) continue;
1234 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1235 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001236
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001237 if (check_encryption) {
1238 string filename = Restore_Name + "/";
1239 filename += de->d_name;
1240 if (TWFunc::Get_File_Type(filename) == 2) {
1241 LOGINFO("'%s' is encrypted\n", filename.c_str());
1242 DataManager::SetValue("tw_restore_encrypted", 1);
1243 }
1244 }
1245 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1246
1247 TWPartition* Part = Find_Partition_By_Path(label);
1248 if (Part == NULL)
1249 {
1250 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1251 continue;
1252 }
1253
1254 Part->Backup_FileName = de->d_name;
1255 if (strlen(extn) > 3) {
1256 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1257 }
1258
1259 if (!Part->Is_SubPartition)
1260 Restore_List += Part->Backup_Path + ";";
1261 }
1262 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001263 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001264
1265 if (adbbackup) {
1266 Restore_List = "ADB_Backup;";
1267 adbbackup = false;
1268 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001269
Dees_Troya13d74f2013-03-24 08:54:55 -05001270 // Set the final value
1271 DataManager::SetValue("tw_restore_list", Restore_List);
1272 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001273 return;
1274}
1275
1276int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001277 std::vector<TWPartition*>::iterator iter;
1278 int ret = false;
1279 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001280 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001281
1282 // Iterate through all partitions
1283 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001284 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troye58d5262012-09-21 12:27:57 -04001285 if (Path == "/and-sec")
1286 ret = (*iter)->Wipe_AndSec();
1287 else
1288 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001289 found = true;
1290 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1291 (*iter)->Wipe();
1292 }
1293 }
1294 if (found) {
1295 return ret;
1296 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001297 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 -04001298 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001299}
1300
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001301int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1302 std::vector<TWPartition*>::iterator iter;
1303 int ret = false;
1304 bool found = false;
1305 string Local_Path = TWFunc::Get_Root_Path(Path);
1306
1307 // Iterate through all partitions
1308 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1309 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1310 if (Path == "/and-sec")
1311 ret = (*iter)->Wipe_AndSec();
1312 else
1313 ret = (*iter)->Wipe(New_File_System);
1314 found = true;
1315 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1316 (*iter)->Wipe(New_File_System);
1317 }
1318 }
1319 if (found) {
1320 return ret;
1321 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001322 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 -05001323 return false;
1324}
1325
Dees_Troy51a0e822012-09-05 15:24:24 -04001326int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001327 std::vector<TWPartition*>::iterator iter;
1328 int ret = true;
1329
1330 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001331 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001332#ifdef TW_OEM_BUILD
1333 if ((*iter)->Mount_Point == "/data") {
1334 if (!(*iter)->Wipe_Encryption())
1335 ret = false;
1336 } else {
1337#endif
1338 if (!(*iter)->Wipe())
1339 ret = false;
1340#ifdef TW_OEM_BUILD
1341 }
1342#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001343 } else if ((*iter)->Has_Android_Secure) {
1344 if (!(*iter)->Wipe_AndSec())
1345 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001346 }
1347 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001348 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001349 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001350}
1351
Dees_Troy38bd7602012-09-14 13:33:53 -04001352int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1353 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001354 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001355
1356 if (!Mount_By_Path("/data", true))
1357 return false;
1358
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001359 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001360
1361 std::string cacheDir = TWFunc::get_cache_dir();
1362 if (cacheDir == NON_AB_CACHE_DIR) {
1363 if (!PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false)) {
1364 LOGINFO("Unable to mount %s for wiping cache.\n", NON_AB_CACHE_DIR);
1365 }
1366 dir.push_back(cacheDir + "dalvik-cache");
1367 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001368 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001369
Dees_Troy38bd7602012-09-14 13:33:53 -04001370 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001371 if (sdext && sdext->Is_Present && sdext->Mount(false))
1372 {
1373 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1374 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001375 dir.push_back("/sd-ext/dalvik-cache");
1376 }
1377 }
1378
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001379 if (cacheDir == NON_AB_CACHE_DIR) {
1380 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1381 } else {
1382 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1383 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001384 for (unsigned i = 0; i < dir.size(); ++i) {
1385 if (stat(dir.at(i).c_str(), &st) == 0) {
1386 TWFunc::removeDir(dir.at(i), false);
1387 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001388 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001389 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001390
1391 if (cacheDir == NON_AB_CACHE_DIR) {
1392 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1393 } else {
1394 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1395 }
1396
Dees_Troy38bd7602012-09-14 13:33:53 -04001397 return true;
1398}
1399
1400int TWPartitionManager::Wipe_Rotate_Data(void) {
1401 if (!Mount_By_Path("/data", true))
1402 return false;
1403
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001404 unlink("/data/misc/akmd*");
1405 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001406 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001407 return true;
1408}
1409
1410int TWPartitionManager::Wipe_Battery_Stats(void) {
1411 struct stat st;
1412
1413 if (!Mount_By_Path("/data", true))
1414 return false;
1415
1416 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001417 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001418 } else {
1419 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001420 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001421 }
1422 return true;
1423}
1424
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001425int TWPartitionManager::Wipe_Android_Secure(void) {
1426 std::vector<TWPartition*>::iterator iter;
1427 int ret = false;
1428 bool found = false;
1429
1430 // Iterate through all partitions
1431 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1432 if ((*iter)->Has_Android_Secure) {
1433 ret = (*iter)->Wipe_AndSec();
1434 found = true;
1435 }
1436 }
1437 if (found) {
1438 return ret;
1439 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001440 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001441 }
1442 return false;
1443}
1444
Dees_Troy38bd7602012-09-14 13:33:53 -04001445int TWPartitionManager::Format_Data(void) {
1446 TWPartition* dat = Find_Partition_By_Path("/data");
1447
1448 if (dat != NULL) {
1449 if (!dat->UnMount(true))
1450 return false;
1451
1452 return dat->Wipe_Encryption();
1453 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001454 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001455 return false;
1456 }
1457 return false;
1458}
1459
1460int TWPartitionManager::Wipe_Media_From_Data(void) {
1461 TWPartition* dat = Find_Partition_By_Path("/data");
1462
1463 if (dat != NULL) {
1464 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001465 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001466 return false;
1467 }
1468 if (!dat->Mount(true))
1469 return false;
1470
Ethan Yonker74db1572015-10-28 12:44:49 -05001471 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001472 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001473 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001474 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001475 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001476 return true;
1477 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001478 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001479 return false;
1480 }
1481 return false;
1482}
1483
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001484int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1485 std::vector<TWPartition*>::iterator iter;
1486 int ret = false;
1487 bool found = false;
1488 string Local_Path = TWFunc::Get_Root_Path(Path);
1489
1490 if (Local_Path == "/tmp" || Local_Path == "/")
1491 return true;
1492
1493 // Iterate through all partitions
1494 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1495 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1496 ret = (*iter)->Repair();
1497 found = true;
1498 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1499 (*iter)->Repair();
1500 }
1501 }
1502 if (found) {
1503 return ret;
1504 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001505 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 -05001506 } else {
1507 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1508 }
1509 return false;
1510}
1511
Ethan Yonkera2719152015-05-28 09:44:41 -05001512int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1513 std::vector<TWPartition*>::iterator iter;
1514 int ret = false;
1515 bool found = false;
1516 string Local_Path = TWFunc::Get_Root_Path(Path);
1517
1518 if (Local_Path == "/tmp" || Local_Path == "/")
1519 return true;
1520
1521 // Iterate through all partitions
1522 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1523 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1524 ret = (*iter)->Resize();
1525 found = true;
1526 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1527 (*iter)->Resize();
1528 }
1529 }
1530 if (found) {
1531 return ret;
1532 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001533 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 -05001534 } else {
1535 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1536 }
1537 return false;
1538}
1539
Dees_Troy51a0e822012-09-05 15:24:24 -04001540void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001541 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001542 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001543
Ethan Yonker74db1572015-10-28 12:44:49 -05001544 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001545 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001546 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001547 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001548 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001549 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1550 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
1551 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1552 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1553 } else if ((*iter)->Mount_Point == "/cache") {
1554 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1555 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1556 } else if ((*iter)->Mount_Point == "/sd-ext") {
1557 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1558 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1559 if ((*iter)->Backup_Size == 0) {
1560 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1561 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1562 } else
1563 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001564 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001565 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001566 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001567 if ((*iter)->Backup_Size == 0) {
1568 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1569 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1570 } else
1571 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001572 } else if ((*iter)->Mount_Point == "/boot") {
1573 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1574 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1575 if ((*iter)->Backup_Size == 0) {
1576 DataManager::SetValue("tw_has_boot_partition", 0);
1577 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1578 } else
1579 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001580 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001581 } else {
1582 // Handle unmountable partitions in case we reset defaults
1583 if ((*iter)->Mount_Point == "/boot") {
1584 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1585 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1586 if ((*iter)->Backup_Size == 0) {
1587 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1588 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1589 } else
1590 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1591 } else if ((*iter)->Mount_Point == "/recovery") {
1592 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1593 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1594 if ((*iter)->Backup_Size == 0) {
1595 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1596 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1597 } else
1598 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001599 } else if ((*iter)->Mount_Point == "/data") {
1600 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001601 }
Dees_Troy51127312012-09-08 13:08:49 -04001602 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001603 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001604 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001605 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1606 string current_storage_path = DataManager::GetCurrentStoragePath();
1607 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001608 if (FreeStorage != NULL) {
1609 // Attempt to mount storage
1610 if (!FreeStorage->Mount(false)) {
Matt Mower2d50cad2015-12-03 22:26:55 -06001611 gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage"));
1612 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
Dees_Troy8170a922012-09-18 15:40:25 -04001613 } else {
1614 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1615 }
1616 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001617 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001618 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001619 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001620 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001621 return;
1622}
1623
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001624void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1625 TWPartition* dat = Find_Partition_By_Path("/data");
1626 if (dat != NULL) {
1627 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1628 dat->Is_Decrypted = true;
1629 if (!Block_Device.empty()) {
1630 dat->Decrypted_Block_Device = Block_Device;
1631 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1632 } else {
1633 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1634 }
1635 dat->Setup_File_System(false);
1636 dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc
1637
1638 // Sleep for a bit so that the device will be ready
1639 sleep(1);
1640 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1641 dat->Storage_Path = "/data/media/0";
1642 dat->Symlink_Path = dat->Storage_Path;
1643 DataManager::SetValue("tw_storage_path", "/data/media/0");
1644 DataManager::SetValue("tw_settings_path", "/data/media/0");
1645 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001646 }
1647 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001648 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001649 UnMount_Main_Partitions();
1650 } else
1651 LOGERR("Unable to locate data partition.\n");
1652}
1653
Dees_Troy51a0e822012-09-05 15:24:24 -04001654int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001655#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001656 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001657 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001658
Ethan Yonker253368a2014-11-25 15:00:52 -06001659 // Mount any partitions that need to be mounted for decrypt
1660 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1661 if ((*iter)->Mount_To_Decrypt) {
1662 (*iter)->Mount(true);
1663 }
a39552696ff55ce2013-01-08 16:14:56 +00001664 }
oshmouna82a7542018-04-10 17:45:55 +02001665 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001666
Ethan Yonkera1de1492015-11-04 11:58:27 -06001667 property_get("ro.crypto.state", crypto_state, "error");
1668 if (strcmp(crypto_state, "error") == 0) {
1669 property_set("ro.crypto.state", "encrypted");
1670 // Sleep for a bit so that services can start if needed
1671 sleep(1);
1672 }
1673
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001674 if (DataManager::GetIntValue(TW_IS_FBE)) {
1675#ifdef TW_INCLUDE_FBE
1676 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1677 return -1;
1678 int retry_count = 10;
1679 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
1680 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1681 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1682 LOGINFO("Decrypting FBE for user %i\n", user_id);
1683 if (Decrypt_User(user_id, Password)) {
1684 Post_Decrypt("");
1685 return 0;
1686 }
1687#else
1688 LOGERR("FBE support is not present\n");
1689#endif
1690 return -1;
1691 }
1692
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001693 int pwret = -1;
1694 pid_t pid = fork();
1695 if (pid < 0) {
1696 LOGERR("fork failed\n");
1697 return -1;
1698 } else if (pid == 0) {
1699 // Child process
1700 char cPassword[255];
1701 strcpy(cPassword, Password.c_str());
1702 int ret = cryptfs_check_passwd(cPassword);
1703 exit(ret);
1704 } else {
1705 // Parent
1706 int status;
1707 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1708 pwret = -1;
1709 else
1710 pwret = WEXITSTATUS(status) ? -1 : 0;
1711 }
a39552696ff55ce2013-01-08 16:14:56 +00001712
nkk7171c6c502017-01-05 23:55:05 +02001713#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1714 if (pwret != 0) {
1715 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001716 switch (pwret) {
1717 case VD_SUCCESS:
1718 break;
1719 case VD_ERR_MISSING_VDC:
1720 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1721 break;
1722 case VD_ERR_MISSING_VOLD:
1723 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1724 break;
1725 }
nkk7171c6c502017-01-05 23:55:05 +02001726 }
1727#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1728
Ethan Yonker253368a2014-11-25 15:00:52 -06001729 // Unmount any partitions that were needed for decrypt
1730 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1731 if ((*iter)->Mount_To_Decrypt) {
1732 (*iter)->UnMount(false);
1733 }
1734 }
oshmouna82a7542018-04-10 17:45:55 +02001735 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001736
a39552696ff55ce2013-01-08 16:14:56 +00001737 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001738 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001739 return -1;
1740 }
a39552696ff55ce2013-01-08 16:14:56 +00001741
Dees_Troy5bf43922012-09-07 16:07:55 -04001742 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1743 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001744 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001745 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001746 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001747 }
1748 return 0;
1749#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001750 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001751 return -1;
1752#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001753 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001754}
1755
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001756int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001757 std::vector<TWPartition*>::iterator iter;
1758 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1759 if ((*iter)->Has_Data_Media) {
1760 if ((*iter)->Mount(true)) {
1761 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1762 return -1;
1763 }
1764 }
1765 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001766 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001767 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001768 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001769}
1770
Ethan Yonker66a19492015-12-10 10:19:45 -06001771TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001772 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1773
1774 if (!Path.empty()) {
1775 string Search_Path = TWFunc::Get_Root_Path(Path);
1776 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001777 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001778 iter++;
1779 break;
1780 }
1781 }
1782 }
1783
1784 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001785 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1786 // do nothing, do not return this type of partition
1787 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001788 return (*iter);
1789 }
1790 }
1791
1792 return NULL;
1793}
1794
Dees_Troyd21618c2012-10-14 18:48:49 -04001795int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001796 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1797
1798 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001799 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1800 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 -04001801 return false;
1802 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001803 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1804 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001805 return false;
1806
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001807 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001808 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001809 return false;
1810 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001811 return true;
1812}
1813
Dees_Troy8170a922012-09-18 15:40:25 -04001814int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001815 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001816 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001817
Ethan Yonker47360be2014-04-01 10:34:34 -05001818 string Lun_File_str = CUSTOM_LUN_FILE;
1819 size_t found = Lun_File_str.find("%");
1820 if (found != string::npos) {
1821 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1822 if (TWFunc::Path_Exists(lun_file))
1823 has_multiple_lun = true;
1824 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001825 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001826 if (!has_multiple_lun) {
1827 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1828 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1829 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001830 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001831 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001832 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1833 goto error_handle;
1834 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001835 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001836 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001837 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001838 }
1839 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001840 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001841 }
Dees_Troy8170a922012-09-18 15:40:25 -04001842 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001843 LOGINFO("Device has multiple lun files\n");
1844 TWPartition* Mount1;
1845 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001846 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001847 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001848 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001849 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1850 goto error_handle;
1851 }
Matt Moweree717062014-04-26 01:46:46 -05001852 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001853 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001854 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001855 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001856 }
1857 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001858 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001859 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001860 }
Dees_Troy8170a922012-09-18 15:40:25 -04001861 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001862 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001863 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001864 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001865error_handle:
1866 if (mtp_was_enabled)
1867 if (!Enable_MTP())
1868 Disable_MTP();
1869 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001870}
1871
1872int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001873 int index, ret;
1874 char lun_file[255], ch[2] = {0, 0};
1875 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001876
1877 for (index=0; index<2; index++) {
1878 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001879 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001880 if (ret < 0) {
1881 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001882 }
Dees_Troy8170a922012-09-18 15:40:25 -04001883 }
Dees_Troye58d5262012-09-21 12:27:57 -04001884 Mount_All_Storage();
1885 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001886 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001887 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001888 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001889 if (mtp_was_enabled)
1890 if (!Enable_MTP())
1891 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001892 if (ret < 0 && index == 0) {
1893 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1894 return false;
1895 } else {
1896 return true;
1897 }
Dees_Troy8170a922012-09-18 15:40:25 -04001898 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04001899}
1900
1901void TWPartitionManager::Mount_All_Storage(void) {
1902 std::vector<TWPartition*>::iterator iter;
1903
1904 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1905 if ((*iter)->Is_Storage)
1906 (*iter)->Mount(false);
1907 }
Dees_Troy2c50e182012-09-26 20:05:28 -04001908}
Dees_Troy9350b8d2012-09-27 12:38:38 -04001909
Dees_Troyd0384ef2012-10-12 12:15:42 -04001910void TWPartitionManager::UnMount_Main_Partitions(void) {
1911 // Unmounts system and data if data is not data/media
1912 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00001913 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04001914
1915 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
1916
Captain Throwback9d6feb52018-07-27 10:05:24 -04001917 UnMount_By_Path(Get_Android_Root_Path(), true);
Ethan Yonker6277c792014-09-15 14:54:30 -05001918 if (!datamedia)
1919 UnMount_By_Path("/data", true);
1920
Dees_Troyd0384ef2012-10-12 12:15:42 -04001921 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
1922 Boot_Partition->UnMount(true);
1923}
1924
Dees_Troy9350b8d2012-09-27 12:38:38 -04001925int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06001926 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06001927 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 -04001928 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04001929
Ethan Yonker74db1572015-10-28 12:44:49 -05001930 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001931
1932 // Locate and validate device to partition
1933 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1934
Ethan Yonker66a19492015-12-10 10:19:45 -06001935 if (SDCard->Is_Adopted_Storage)
1936 SDCard->Revert_Adopted();
1937
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05001938 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001939 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001940 return false;
1941 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001942
1943 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04001944 if (!SDCard->UnMount(true))
1945 return false;
1946 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
1947 if (SDext != NULL) {
1948 if (!SDext->UnMount(true))
1949 return false;
1950 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001951 char* swappath = getenv("SWAPPATH");
1952 if (swappath != NULL) {
1953 LOGINFO("Unmounting swap at '%s'\n", swappath);
1954 umount(swappath);
1955 }
Vojtech Bocek05534202013-09-11 08:11:56 +02001956
Ethan Yonker483e9f42016-01-11 22:21:18 -06001957 // Determine block device
1958 if (SDCard->Alternate_Block_Device.empty()) {
1959 SDCard->Find_Actual_Block_Device();
1960 Device = SDCard->Actual_Block_Device;
1961 // Just use the root block device
1962 Device.resize(strlen("/dev/block/mmcblkX"));
1963 } else {
1964 Device = SDCard->Alternate_Block_Device;
1965 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04001966
1967 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06001968 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001969
1970 DataManager::GetValue("tw_sdext_size", ext);
1971 DataManager::GetValue("tw_swap_size", swap);
1972 DataManager::GetValue("tw_sdpart_file_system", ext_format);
1973 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06001974 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);
1975
1976 // Determine partition sizes
1977 if (swap == 0 && ext == 0) {
1978 fat_str = "-0";
1979 } else {
1980 memset(temp, 0, sizeof(temp));
1981 sprintf(temp, "%i", fat_size);
1982 fat_str = temp;
1983 fat_str += "MB";
1984 }
1985 if (swap == 0) {
1986 ext_str = "-0";
1987 } else {
1988 memset(temp, 0, sizeof(temp));
1989 sprintf(temp, "%i", ext);
1990 ext_str = "+";
1991 ext_str += temp;
1992 ext_str += "MB";
1993 }
1994
Dees_Troy9350b8d2012-09-27 12:38:38 -04001995 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001996 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001997 return false;
1998 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001999
Ethan Yonker74db1572015-10-28 12:44:49 -05002000 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002001 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002002 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002003 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002004 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002005 Update_System_Details();
2006 return false;
2007 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002008 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002009 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 +00002010 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002011 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002012 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002013 return false;
2014 }
2015 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002016 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002017 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002018 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002019 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002020 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002021 Update_System_Details();
2022 return false;
2023 }
2024 }
2025 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002026 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002027 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 +00002028 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002029 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002030 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002031 Update_System_Details();
2032 return false;
2033 }
2034 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002035
2036 // Convert GPT to MBR
2037 Command = "sgdisk --gpttombr " + Device;
2038 if (TWFunc::Exec_Cmd(Command) != 0)
2039 LOGINFO("Failed to covert partition GPT to MBR\n");
2040
2041 // Tell the kernel to rescan the partition table
2042 int fd = open(Device.c_str(), O_RDONLY);
2043 ioctl(fd, BLKRRPART, 0);
2044 close(fd);
2045
2046 string format_device = Device;
2047 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2048 format_device += "p";
2049
2050 // Format new partitions to proper file system
2051 if (fat_size > 0) {
2052 Command = "mkfs.fat " + format_device + "1";
2053 TWFunc::Exec_Cmd(Command);
2054 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002055 if (ext > 0) {
2056 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002057 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2058 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2059 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2060 TWFunc::Exec_Cmd(Command);
2061 } else {
2062 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002063 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002064 }
2065 if (swap > 0) {
2066 Command = "mkswap " + format_device;
2067 if (ext > 0)
2068 Command += "3";
2069 else
2070 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002071 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002072 }
2073
Ethan Yonker483e9f42016-01-11 22:21:18 -06002074 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2075 if (SDCard->Mount(true)) {
2076 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2077 mkdir(TWRP_Folder.c_str(), 0777);
2078 DataManager::Flush();
2079 }
2080
Dees_Troy9350b8d2012-09-27 12:38:38 -04002081 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002082 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002083 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002084}
Dees_Troya13d74f2013-03-24 08:54:55 -05002085
2086void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2087 std::vector<TWPartition*>::iterator iter;
2088 if (ListType == "mount") {
2089 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002090 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002091 struct PartitionList part;
2092 part.Display_Name = (*iter)->Display_Name;
2093 part.Mount_Point = (*iter)->Mount_Point;
2094 part.selected = (*iter)->Is_Mounted();
2095 Partition_List->push_back(part);
2096 }
2097 }
2098 } else if (ListType == "storage") {
2099 char free_space[255];
2100 string Current_Storage = DataManager::GetCurrentStoragePath();
2101 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2102 if ((*iter)->Is_Storage) {
2103 struct PartitionList part;
2104 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2105 part.Display_Name = (*iter)->Storage_Name + " (";
2106 part.Display_Name += free_space;
2107 part.Display_Name += "MB)";
2108 part.Mount_Point = (*iter)->Storage_Path;
2109 if ((*iter)->Storage_Path == Current_Storage)
2110 part.selected = 1;
2111 else
2112 part.selected = 0;
2113 Partition_List->push_back(part);
2114 }
2115 }
2116 } else if (ListType == "backup") {
2117 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002118 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002119 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002120 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002121 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002122 Backup_Size = (*iter)->Backup_Size;
2123 if ((*iter)->Has_SubPartition) {
2124 std::vector<TWPartition*>::iterator subpart;
2125
2126 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2127 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2128 Backup_Size += (*subpart)->Backup_Size;
2129 }
2130 }
2131 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002132 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2133 part.Display_Name += backup_size;
2134 part.Display_Name += "MB)";
2135 part.Mount_Point = (*iter)->Backup_Path;
2136 part.selected = 0;
2137 Partition_List->push_back(part);
2138 }
2139 }
2140 } else if (ListType == "restore") {
2141 string Restore_List, restore_path;
2142 TWPartition* restore_part = NULL;
2143
2144 DataManager::GetValue("tw_restore_list", Restore_List);
2145 if (!Restore_List.empty()) {
2146 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2147 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2148 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002149 struct PartitionList part;
2150 if (restore_path.compare("ADB_Backup") == 0) {
2151 part.Display_Name = "ADB Backup";
2152 part.Mount_Point = "ADB Backup";
2153 part.selected = 1;
2154 Partition_List->push_back(part);
2155 break;
2156 }
Dees_Troy59df9262013-06-19 14:53:57 -05002157 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002158 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002159 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002160 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002161 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002162 part.Display_Name = restore_part->Backup_Display_Name;
2163 part.Mount_Point = restore_part->Backup_Path;
2164 part.selected = 1;
2165 Partition_List->push_back(part);
2166 }
2167 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002168 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002169 }
2170 start_pos = end_pos + 1;
2171 end_pos = Restore_List.find(";", start_pos);
2172 }
2173 }
2174 } else if (ListType == "wipe") {
2175 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002176 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002177 dalvik.Mount_Point = "DALVIK";
2178 dalvik.selected = 0;
2179 Partition_List->push_back(dalvik);
2180 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2181 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2182 struct PartitionList part;
2183 part.Display_Name = (*iter)->Display_Name;
2184 part.Mount_Point = (*iter)->Mount_Point;
2185 part.selected = 0;
2186 Partition_List->push_back(part);
2187 }
2188 if ((*iter)->Has_Android_Secure) {
2189 struct PartitionList part;
2190 part.Display_Name = (*iter)->Backup_Display_Name;
2191 part.Mount_Point = (*iter)->Backup_Path;
2192 part.selected = 0;
2193 Partition_List->push_back(part);
2194 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002195 if ((*iter)->Has_Data_Media) {
2196 struct PartitionList datamedia;
2197 datamedia.Display_Name = (*iter)->Storage_Name;
2198 datamedia.Mount_Point = "INTERNAL";
2199 datamedia.selected = 0;
2200 Partition_List->push_back(datamedia);
2201 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002202 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002203 } else if (ListType == "flashimg") {
2204 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2205 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2206 struct PartitionList part;
2207 part.Display_Name = (*iter)->Backup_Display_Name;
2208 part.Mount_Point = (*iter)->Backup_Path;
2209 part.selected = 0;
2210 Partition_List->push_back(part);
2211 }
2212 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002213 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002214 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002215 }
2216}
2217
2218int TWPartitionManager::Fstab_Processed(void) {
2219 return Partitions.size();
2220}
Dees_Troyd93bda52013-07-03 19:55:19 +00002221
2222void TWPartitionManager::Output_Storage_Fstab(void) {
2223 std::vector<TWPartition*>::iterator iter;
2224 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002225 std::string Temp;
2226 std::string cacheDir = TWFunc::get_cache_dir();
2227
2228 if (cacheDir.empty()) {
2229 LOGINFO("Unable to find cache directory\n");
2230 return;
2231 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002232
2233 std::string storageFstab = TWFunc::get_cache_dir() + "recovery/storage.fstab";
2234 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002235
2236 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002237 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002238 return;
2239 }
2240
2241 // Iterate through all partitions
2242 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2243 if ((*iter)->Is_Storage) {
2244 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2245 strcpy(storage_partition, Temp.c_str());
2246 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2247 }
2248 }
2249 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002250}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002251
2252TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2253{
2254 TWPartition *res = NULL;
2255 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002256 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002257 continue;
2258
Matt Mowera8a89d12016-12-30 18:10:37 -06002259 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002260 return *iter;
2261
Matt Mowera8a89d12016-12-30 18:10:37 -06002262 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002263 res = *iter;
2264 }
2265 return res;
2266}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002267
2268bool TWPartitionManager::Enable_MTP(void) {
2269#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002270 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002271 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002272 return true;
2273 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002274
2275 int mtppipe[2];
2276
2277 if (pipe(mtppipe) < 0) {
2278 LOGERR("Error creating MTP pipe\n");
2279 return false;
2280 }
2281
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002282 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002283 property_get("sys.usb.config", old_value, "");
2284 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002285 char vendor[PROPERTY_VALUE_MAX];
2286 char product[PROPERTY_VALUE_MAX];
2287 property_set("sys.usb.config", "none");
2288 property_get("usb.vendor", vendor, "18D1");
2289 property_get("usb.product.mtpadb", product, "4EE2");
2290 string vendorstr = vendor;
2291 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002292 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2293 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002294 property_set("sys.usb.config", "mtp,adb");
2295 }
Matt Mower653a1702017-02-16 10:38:52 -06002296 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002297 * twrp set tw_mtp_debug 1
2298 */
2299 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002300 mtppid = mtp->forkserver(mtppipe);
2301 if (mtppid) {
2302 close(mtppipe[0]); // Host closes read side
2303 mtp_write_fd = mtppipe[1];
2304 DataManager::SetValue("tw_mtp_enabled", 1);
2305 Add_All_MTP_Storage();
2306 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002307 } else {
2308 close(mtppipe[0]);
2309 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002310 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002311 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002312 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002313#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002314 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002315#endif
2316 DataManager::SetValue("tw_mtp_enabled", 0);
2317 return false;
2318}
2319
Ethan Yonker1b039202015-01-30 10:08:48 -06002320void TWPartitionManager::Add_All_MTP_Storage(void) {
2321#ifdef TW_HAS_MTP
2322 std::vector<TWPartition*>::iterator iter;
2323
2324 if (!mtppid)
2325 return; // MTP is not enabled
2326
2327 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2328 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2329 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2330 }
2331#else
2332 return;
2333#endif
2334}
2335
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002336bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002337 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002338 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002339 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002340 if (strcmp(old_value, "adb") != 0) {
2341 char vendor[PROPERTY_VALUE_MAX];
2342 char product[PROPERTY_VALUE_MAX];
2343 property_set("sys.usb.config", "none");
2344 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002345 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002346 string vendorstr = vendor;
2347 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002348 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2349 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002350 usleep(2000);
2351 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002352#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002353 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002354 LOGINFO("Disabling MTP\n");
2355 int status;
2356 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002357 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002358 // We don't care about the exit value, but this prevents a zombie process
2359 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002360 close(mtp_write_fd);
2361 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002362 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002363#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002364 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002365#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002366 DataManager::SetValue("tw_mtp_enabled", 0);
2367 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002368#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002369 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002370}
Ethan Yonker726a0202014-12-16 20:01:38 -06002371
2372TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2373 std::vector<TWPartition*>::iterator iter;
2374
2375 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2376 if ((*iter)->MTP_Storage_ID == Storage_ID)
2377 return (*iter);
2378 }
2379 return NULL;
2380}
2381
2382bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2383#ifdef TW_HAS_MTP
2384 struct mtpmsg mtp_message;
2385
2386 if (!mtppid)
2387 return false; // MTP is disabled
2388
2389 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002390 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002391 return false;
2392 }
2393
2394 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002395 if (Part->MTP_Storage_ID == 0)
2396 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002397 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2398 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2399 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2400 mtp_message.storage_id = Part->MTP_Storage_ID;
2401 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002402 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002403 return false;
2404 } else {
2405 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2406 return true;
2407 }
2408 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2409 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2410 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002411 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2412 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2413 return false;
2414 }
2415 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2416 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2417 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2418 return false;
2419 }
2420 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002421 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002422 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 -06002423 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002424 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002425 return false;
2426 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002427 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002428 return true;
2429 }
2430 } else {
2431 LOGERR("Unknown MTP message type: %i\n", message_type);
2432 }
2433 } else {
2434 // This hopefully never happens as the error handling should
2435 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002436 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002437 }
2438 return true;
2439#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002440 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002441 DataManager::SetValue("tw_mtp_enabled", 0);
2442 return false;
2443#endif
2444}
2445
2446bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2447#ifdef TW_HAS_MTP
2448 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2449 if (Part) {
2450 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2451 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002452 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002453 }
2454#endif
2455 return false;
2456}
2457
2458bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2459#ifdef TW_HAS_MTP
2460 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2461 if (Part) {
2462 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2463 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002464 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002465 }
2466#endif
2467 return false;
2468}
2469
2470bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2471#ifdef TW_HAS_MTP
2472 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2473 if (Part) {
2474 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2475 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002476 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002477 }
2478#endif
2479 return false;
2480}
2481
2482bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2483#ifdef TW_HAS_MTP
2484 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2485 if (Part) {
2486 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2487 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002488 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002489 }
2490#endif
2491 return false;
2492}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002493
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002494bool TWPartitionManager::Flash_Image(string& path, string& filename) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002495 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002496 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002497 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002498 size_t start_pos = 0, end_pos = 0;
2499
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002500 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002501
bigbiffce8f83c2015-12-12 18:30:21 -05002502 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2503 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2504
2505 if (!TWFunc::Path_Exists(full_filename)) {
2506 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002507 return false;
2508 }
bigbiffce8f83c2015-12-12 18:30:21 -05002509 if (!TWFunc::Path_Exists(full_filename)) {
2510 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002511 return false;
2512 }
2513 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002514
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002515 PartitionSettings part_settings;
2516 part_settings.Backup_Folder = path;
2517 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2518 ProgressTracking progress(total_bytes);
2519 part_settings.progress = &progress;
2520 part_settings.adbbackup = false;
2521 part_settings.PM_Method = PM_RESTORE;
2522
Ethan Yonker74db1572015-10-28 12:44:49 -05002523 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002524 DataManager::GetValue("tw_flash_partition", Flash_List);
2525 if (!Flash_List.empty()) {
2526 end_pos = Flash_List.find(";", start_pos);
2527 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2528 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2529 flash_part = Find_Partition_By_Path(flash_path);
2530 if (flash_part != NULL) {
2531 partition_count++;
2532 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002533 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002534 return false;
2535 }
2536 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002537 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002538 return false;
2539 }
2540 start_pos = end_pos + 1;
2541 end_pos = Flash_List.find(";", start_pos);
2542 }
2543 }
2544
2545 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002546 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002547 return false;
2548 }
2549
2550 DataManager::SetProgress(0.0);
2551 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002552 flash_part->Backup_FileName = filename;
2553 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002554 return false;
2555 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002556 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002557 return false;
2558 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002559 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002560 return true;
2561}
Ethan Yonker74db1572015-10-28 12:44:49 -05002562
2563void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2564 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2565 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002566 if (part->Is_Adopted_Storage) {
2567 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2568 part->Backup_Display_Name = part->Display_Name;
2569 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2570 } else {
2571 part->Display_Name = gui_lookup(resource_name, default_value);
2572 part->Backup_Display_Name = part->Display_Name;
2573 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002574 }
2575}
2576
2577void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2578 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2579 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002580 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002581 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002582 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002583 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2584 } else {
2585 part->Display_Name = gui_lookup(resource_name, default_value);
2586 part->Backup_Display_Name = part->Display_Name;
2587 if (part->Is_Storage)
2588 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2589 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002590 }
2591}
2592
Ethan Yonker01f4e032017-02-03 15:30:52 -06002593void 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) {
2594 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2595 if (part) {
2596 if (part->Is_Adopted_Storage) {
2597 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2598 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2599 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2600 } else {
2601 part->Display_Name = gui_lookup(resource_name, default_value);
2602 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2603 if (part->Is_Storage)
2604 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2605 }
2606 }
2607}
2608
Ethan Yonker74db1572015-10-28 12:44:49 -05002609void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002610 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002611 Translate_Partition("/system", "system", "System");
2612 Translate_Partition("/system_image", "system_image", "System Image");
2613 Translate_Partition("/vendor", "vendor", "Vendor");
2614 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2615 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002616 Translate_Partition("/boot", "boot", "Boot");
2617 Translate_Partition("/recovery", "recovery", "Recovery");
2618 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002619 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002620 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2621 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2622 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2623 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002624 } else {
2625 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002626 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002627 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2628 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002629 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2630 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2631
2632 // Android secure is a special case
2633 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2634 if (part)
2635 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2636
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002637 std::vector<TWPartition*>::iterator sysfs;
2638 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2639 if (!(*sysfs)->Sysfs_Entry.empty()) {
2640 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2641 }
2642 }
2643
Ethan Yonker74db1572015-10-28 12:44:49 -05002644 // This updates the text on all of the storage selection buttons in the GUI
2645 DataManager::SetBackupFolder();
2646}
Ethan Yonker66a19492015-12-10 10:19:45 -06002647
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002648bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002649#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002650 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002651 if (!Mount_By_Path("/data", false)) {
2652 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002653 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002654 }
2655 LOGINFO("Decrypt adopted storage starting\n");
2656 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2657 xml_document<> *doc = NULL;
2658 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002659 string Primary_Storage_UUID = "";
2660 if (xmlFile != NULL) {
2661 LOGINFO("successfully loaded storage.xml\n");
2662 doc = new xml_document<>();
2663 doc->parse<0>(xmlFile);
2664 volumes = doc->first_node("volumes");
2665 if (volumes) {
2666 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2667 if (psuuid) {
2668 Primary_Storage_UUID = psuuid->value();
2669 }
2670 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002671 } else {
2672 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2673 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002674 }
2675 std::vector<TWPartition*>::iterator adopt;
2676 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2677 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2678 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002679 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002680 if (volumes) {
2681 xml_node<>* volume = volumes->first_node("volume");
2682 while (volume) {
2683 xml_attribute<>* guid = volume->first_attribute("partGuid");
2684 if (guid) {
2685 string GUID = (*adopt)->Adopted_GUID.c_str();
2686 GUID.insert(8, "-");
2687 GUID.insert(13, "-");
2688 GUID.insert(18, "-");
2689 GUID.insert(23, "-");
2690
2691 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2692 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002693 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002694 (*adopt)->Storage_Name = attr->value();
2695 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2696 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2697 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2698 }
2699 attr = volume->first_attribute("fsUuid");
2700 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2701 TWPartition* Dat = Find_Partition_By_Path("/data");
2702 if (Dat) {
2703 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2704 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2705 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2706 Dat->Symlink_Mount_Point = "";
2707 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2708 Dat->UnMount(false);
2709 Dat->Mount(false);
2710 (*adopt)->UnMount(false);
2711 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002712 }
2713 }
2714 break;
2715 }
2716 }
2717 volume = volume->next_sibling("volume");
2718 }
2719 }
nkk71ffb02bd2017-06-04 23:12:16 +03002720 Update_System_Details();
2721 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002722 }
2723 }
2724 }
2725 if (xmlFile) {
2726 doc->clear();
2727 delete doc;
2728 free(xmlFile);
2729 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002730 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002731#else
2732 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002733 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002734#endif
2735}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002736
2737void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2738 std::vector<TWPartition*>::iterator iter;
2739 string Local_Path = TWFunc::Get_Root_Path(Path);
2740
2741 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2742 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2743 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2744 Partitions.erase(iter);
2745 return;
2746 }
2747 }
2748}
Ethan Yonker1b190162016-12-05 15:25:19 -06002749
2750void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2751 if (Slot != "A" && Slot != "B") {
2752 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2753 return;
2754 }
2755 if (Active_Slot_Display == Slot)
2756 return;
2757 LOGINFO("Setting active slot %s\n", Slot.c_str());
2758#ifdef AB_OTA_UPDATER
2759 if (!Active_Slot_Display.empty()) {
2760 const hw_module_t *hw_module;
2761 boot_control_module_t *module;
2762 int ret;
2763 ret = hw_get_module("bootctrl", &hw_module);
2764 if (ret != 0) {
2765 LOGERR("Error getting bootctrl module.\n");
2766 } else {
2767 module = (boot_control_module_t*) hw_module;
2768 module->init(module);
2769 int slot_number = 0;
2770 if (Slot == "B")
2771 slot_number = 1;
2772 if (module->setActiveBootSlot(module, slot_number))
2773 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2774 }
2775 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
2776 }
2777#else
2778 LOGERR("Boot slot feature not present\n");
2779#endif
2780 Active_Slot_Display = Slot;
2781 if (Fstab_Processed())
2782 Update_System_Details();
2783}
2784string TWPartitionManager::Get_Active_Slot_Suffix() {
2785 if (Active_Slot_Display == "A")
2786 return "_a";
2787 return "_b";
2788}
2789string TWPartitionManager::Get_Active_Slot_Display() {
2790 return Active_Slot_Display;
2791}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002792
Captain Throwback9d6feb52018-07-27 10:05:24 -04002793string TWPartitionManager::Get_Android_Root_Path() {
2794 std::string Android_Root = getenv("ANDROID_ROOT");
2795 if (Android_Root == "")
2796 Android_Root = "/system";
2797 return Android_Root;
2798}
2799
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002800void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
2801 std::vector<TWPartition*>::iterator iter;
2802
2803 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
2804 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
2805 TWPartition *part = *iter;
2806 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
2807 (*iter)->UnMount(false);
2808 rmdir((*iter)->Mount_Point.c_str());
2809 iter = Partitions.erase(iter);
2810 delete part;
2811 } else {
2812 iter++;
2813 }
2814 }
2815}
2816
2817void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
2818 std::vector<TWPartition*>::iterator iter;
2819
2820 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2821 if (!(*iter)->Sysfs_Entry.empty()) {
2822 string device;
2823 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
2824 if (wildcard != string::npos) {
2825 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
2826 } else {
2827 device = (*iter)->Sysfs_Entry;
2828 }
2829 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
2830 // Found a match
2831 if (uevent_data.action == "add") {
2832 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
2833 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
2834 (*iter)->Is_Present = true;
2835 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
2836 if (!Decrypt_Adopted()) {
2837 LOGINFO("No adopted storage so finding actual block device\n");
2838 (*iter)->Find_Actual_Block_Device();
2839 }
2840 return;
2841 } else if (uevent_data.action == "remove") {
2842 (*iter)->Is_Present = false;
2843 (*iter)->Primary_Block_Device = "";
2844 (*iter)->Actual_Block_Device = "";
2845 Remove_Uevent_Devices((*iter)->Mount_Point);
2846 return;
2847 }
2848 }
2849 }
2850 }
2851 LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str());
2852}
2853
2854void TWPartitionManager::setup_uevent() {
2855 struct sockaddr_nl nls;
2856
2857 if (uevent_pfd.fd >= 0) {
2858 LOGINFO("uevent already set up\n");
2859 return;
2860 }
2861
2862 // Open hotplug event netlink socket
2863 memset(&nls,0,sizeof(struct sockaddr_nl));
2864 nls.nl_family = AF_NETLINK;
2865 nls.nl_pid = getpid();
2866 nls.nl_groups = -1;
2867 uevent_pfd.events = POLLIN;
2868 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
2869 if (uevent_pfd.fd==-1) {
2870 LOGERR("uevent not root\n");
2871 return;
2872 }
2873
2874 // Listen to netlink socket
2875 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
2876 LOGERR("Bind failed\n");
2877 return;
2878 }
2879 set_select_fd();
2880 Coldboot();
2881}
2882
2883Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
2884 Uevent_Block_Data ret;
2885 ret.subsystem = "";
2886 char *ptr = buf;
2887 const char *end = buf + len;
2888
2889 buf[len - 1] = '\0';
2890 while (ptr < end) {
2891 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
2892 ptr += strlen("ACTION=");
2893 ret.action = ptr;
2894 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
2895 ptr += strlen("SUBSYSTEM=");
2896 ret.subsystem = ptr;
2897 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
2898 ptr += strlen("DEVTYPE=");
2899 ret.type = ptr;
2900 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
2901 ptr += strlen("DEVPATH=");
2902 ret.sysfs_path += ptr;
2903 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
2904 ptr += strlen("DEVNAME=");
2905 ret.block_device += ptr;
2906 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
2907 ptr += strlen("MAJOR=");
2908 ret.major = atoi(ptr);
2909 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
2910 ptr += strlen("MINOR=");
2911 ret.minor = atoi(ptr);
2912 }
2913 ptr += strlen(ptr) + 1;
2914 }
2915 return ret;
2916}
2917
2918void TWPartitionManager::read_uevent() {
2919 char buf[1024];
2920
2921 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
2922 if (len == -1) {
2923 LOGERR("recv error on uevent\n");
2924 return;
2925 }
2926 /*int i = 0; // Print all uevent output for test /debug
2927 while (i<len) {
2928 printf("%s\n", buf+i);
2929 i += strlen(buf+i)+1;
2930 }*/
2931 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
2932 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
2933 PartitionManager.Handle_Uevent(uevent_data);
2934 }
2935}
2936
2937void TWPartitionManager::close_uevent() {
2938 if (uevent_pfd.fd > 0)
2939 close(uevent_pfd.fd);
2940 uevent_pfd.fd = -1;
2941}
2942
2943void TWPartitionManager::Add_Partition(TWPartition* Part) {
2944 Partitions.push_back(Part);
2945}
2946
2947void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
2948 string Real_Path = Path;
2949 char real_path[PATH_MAX];
2950 if (realpath(Path.c_str(), &real_path[0])) {
2951 string Real_Path = real_path;
2952 std::vector<string>::iterator iter;
2953 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
2954 if (Real_Path.find((*iter)) != string::npos) {
2955 string Write_Path = Real_Path + "/uevent";
2956 if (TWFunc::Path_Exists(Write_Path)) {
2957 const char* write_val = "add\n";
2958 TWFunc::write_to_file(Write_Path, write_val);
2959 break;
2960 }
2961 }
2962 }
2963 }
2964
2965 DIR* d = opendir(Path.c_str());
2966 if (d != NULL) {
2967 struct dirent* de;
2968 while ((de = readdir(d)) != NULL) {
2969 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
2970 continue;
2971 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
2972 continue;
2973
2974 string item = Path + "/";
2975 item.append(de->d_name);
2976 Coldboot_Scan(sysfs_entries, item, depth + 1);
2977 }
2978 closedir(d);
2979 }
2980}
2981
2982void TWPartitionManager::Coldboot() {
2983 std::vector<TWPartition*>::iterator iter;
2984 std::vector<string> sysfs_entries;
2985
2986 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2987 if (!(*iter)->Sysfs_Entry.empty()) {
2988 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
2989 if (wildcard_pos == string::npos)
2990 wildcard_pos = (*iter)->Sysfs_Entry.size();
2991 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
2992 }
2993 }
2994
2995 if (sysfs_entries.size() > 0)
2996 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
2997}