blob: 45460d1dcb274a6f9bb5a8dddd1cc63cab35ccb2 [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
58#include "mtp/mtp_MtpServer.hpp"
59#include "mtp/twrpMtp.hpp"
Ethan Yonker726a0202014-12-16 20:01:38 -060060#include "mtp/MtpMessage.hpp"
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040061#endif
62
Dees Troy6f6441d2014-01-23 02:07:03 +000063extern "C" {
64 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050065 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000066}
67
Dees_Troy5bf43922012-09-07 16:07:55 -040068#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker253368a2014-11-25 15:00:52 -060069 #include "crypto/lollipop/cryptfs.h"
Ethan Yonker66a19492015-12-10 10:19:45 -060070 #include "gui/rapidxml.hpp"
71 #include "gui/pages.hpp"
Ethan Yonkerbd7492d2016-12-07 13:55:01 -060072 #ifdef TW_INCLUDE_FBE
73 #include "crypto/ext4crypt/Decrypt.h"
Ethan Yonker93382822018-11-01 15:25:31 -050074 #ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
75 #include "crypto/ext4crypt/MetadataCrypt.h"
76 #endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -060077 #endif
nkk7171c6c502017-01-05 23:55:05 +020078 #ifdef TW_CRYPTO_USE_SYSTEM_VOLD
79 #include "crypto/vold_decrypt/vold_decrypt.h"
80 #endif
Dees_Troy5bf43922012-09-07 16:07:55 -040081#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040082
Ethan Yonker1b190162016-12-05 15:25:19 -060083#ifdef AB_OTA_UPDATER
84#include <hardware/hardware.h>
85#include <hardware/boot_control.h>
86#endif
87
Ethan Yonker6277c792014-09-15 14:54:30 -050088extern bool datamedia;
89
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050090TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040091 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -060092 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060093 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -050094 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -060095#ifdef AB_OTA_UPDATER
96 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -050097 property_get("ro.boot.slot_suffix", slot_suffix, "error");
98 if (strcmp(slot_suffix, "error") == 0)
99 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600100 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500101 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600102 Set_Active_Slot("A");
103 else
104 Set_Active_Slot("B");
105#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500106}
107
Dees_Troy51a0e822012-09-05 15:24:24 -0400108int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400109 FILE *fstabFile;
110 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000111 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500112 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600113 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 -0600114 std::map<string, Flags_Map> twrp_flags;
115
116 fstabFile = fopen("/etc/twrp.flags", "rt");
117 if (fstabFile != NULL) {
118 LOGINFO("reading /etc/twrp.flags\n");
119 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
120 if (fstab_line[0] != '/')
121 continue;
122
123 size_t line_size = strlen(fstab_line);
124 if (fstab_line[line_size - 1] != '\n')
125 fstab_line[line_size] = '\n';
126 Flags_Map line_flags;
127 line_flags.Primary_Block_Device = "";
128 line_flags.Alternate_Block_Device = "";
129 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
130 if (!line_flags.fstab_line) {
131 LOGERR("malloc error on line_flags.fstab_line\n");
132 return false;
133 }
134 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
135 bool found_separator = false;
136 char *fs_loc = NULL;
137 char *block_loc = NULL;
138 char *flags_loc = NULL;
139 size_t index, item_index = 0;
140 for (index = 0; index < line_size; index++) {
141 if (fstab_line[index] <= 32) {
142 fstab_line[index] = '\0';
143 found_separator = true;
144 } else if (found_separator) {
145 if (item_index == 0) {
146 fs_loc = fstab_line + index;
147 } else if (item_index == 1) {
148 block_loc = fstab_line + index;
149 } else if (item_index > 1) {
150 char *ptr = fstab_line + index;
151 if (*ptr == '/') {
152 line_flags.Alternate_Block_Device = ptr;
153 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
154 flags_loc = ptr;
155 // Once we find the flags=, we're done scanning the line
156 break;
157 }
158 }
159 found_separator = false;
160 item_index++;
161 }
162 }
163 if (block_loc)
164 line_flags.Primary_Block_Device = block_loc;
165 if (fs_loc)
166 line_flags.File_System = fs_loc;
167 if (flags_loc)
168 line_flags.Flags = flags_loc;
169 string Mount_Point = fstab_line;
170 twrp_flags[Mount_Point] = line_flags;
171 memset(fstab_line, 0, sizeof(fstab_line));
172 }
173 fclose(fstabFile);
174 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400175
176 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
177 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000178 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400179 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600180 } else
181 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400182
183 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
184 if (fstab_line[0] != '/')
185 continue;
186
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600187 if (strstr(fstab_line, "swap"))
188 continue; // Skip swap in recovery
189
190 size_t line_size = strlen(fstab_line);
191 if (fstab_line[line_size - 1] != '\n')
192 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400193
Matt Mower2b2dd152016-04-26 11:24:08 -0500194 TWPartition* partition = new TWPartition();
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600195 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500196 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500197 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400198 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500199
200 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400201 }
202 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500203
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600204 if (twrp_flags.size() > 0) {
205 LOGINFO("Processing remaining twrp.flags\n");
206 // Add any items from twrp.flags that did not exist in the recovery.fstab
207 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
208 if (Find_Partition_By_Path(mapit->first) == NULL) {
209 TWPartition* partition = new TWPartition();
210 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
211 Partitions.push_back(partition);
212 else
213 delete partition;
214 }
215 if (mapit->second.fstab_line)
216 free(mapit->second.fstab_line);
217 mapit->second.fstab_line = NULL;
218 }
219 }
220 LOGINFO("Done processing fstab files\n");
221
Matt Mower72c87ce2016-04-26 14:34:56 -0500222 std::vector<TWPartition*>::iterator iter;
223 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
224 (*iter)->Partition_Post_Processing(Display_Error);
225
226 if ((*iter)->Is_Storage) {
227 ++storageid;
228 (*iter)->MTP_Storage_ID = storageid;
229 }
230
231 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
232 settings_partition = (*iter);
233 else
234 (*iter)->Is_Settings_Storage = false;
235
236 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
237 andsec_partition = (*iter);
238 else
239 (*iter)->Has_Android_Secure = false;
240 }
241
Ethan Yonker6277c792014-09-15 14:54:30 -0500242 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) {
243 // Attempt to automatically identify /data/media emulated storage devices
244 TWPartition* Dat = Find_Partition_By_Path("/data");
245 if (Dat) {
246 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
247 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200248 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500249 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600250 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
251 ++storageid;
252 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500253 }
254 }
Dees Troy02a64532014-03-19 15:23:32 +0000255 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500256 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
257 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000258 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500259 break;
260 }
261 }
Dees Troy02a64532014-03-19 15:23:32 +0000262 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000263 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500264 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400265 if (!Write_Fstab()) {
266 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000267 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400268 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000269 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400270 }
Matt Mowered71fa32014-04-16 13:21:47 -0500271
Matt Mowerbf4efa32014-04-14 23:25:26 -0500272 if (andsec_partition) {
273 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500274 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500275 Setup_Android_Secure_Location(settings_partition);
276 }
Matt Mowered71fa32014-04-16 13:21:47 -0500277 if (settings_partition) {
278 Setup_Settings_Storage_Partition(settings_partition);
279 }
Ethan Yonker253368a2014-11-25 15:00:52 -0600280#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600281 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
282 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500283 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
284#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
285 if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) {
286 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", Decrypt_Data->Decrypted_Block_Device.c_str());
287 property_set("ro.crypto.state", "encrypted");
288 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
289 int retry_count = 10;
290 while (!Decrypt_Data->Mount(false) && --retry_count)
291 usleep(500);
292 if (Decrypt_Data->Mount(false)) {
293 Decrypt_Data->Decrypt_FBE_DE();
294 } else {
295 LOGINFO("Failed to mount data after metadata decrypt\n");
296 }
297 } else {
298 LOGINFO("Unable to decrypt metadata encryption\n");
299 }
300#else
301 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
302#endif
303 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600304 if (Decrypt_Data->Is_FBE) {
305 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
306 if (Decrypt_Device("!") == 0) {
307 gui_msg("decrypt_success=Successfully decrypted with default password.");
308 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
309 } else {
310 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
311 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600312 }
313 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600314 int password_type = cryptfs_get_password_type();
315 if (password_type == CRYPT_TYPE_DEFAULT) {
316 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
317 if (Decrypt_Device("default_password") == 0) {
318 gui_msg("decrypt_success=Successfully decrypted with default password.");
319 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
320 } else {
321 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
322 }
323 } else {
324 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
325 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600326 }
327 }
Ethan Yonker66a19492015-12-10 10:19:45 -0600328 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
329 Decrypt_Adopted();
330 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600331#endif
Dees_Troy51127312012-09-08 13:08:49 -0400332 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400333 UnMount_Main_Partitions();
Ethan Yonker1b190162016-12-05 15:25:19 -0600334#ifdef AB_OTA_UPDATER
335 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
336#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600337 setup_uevent();
Dees_Troy5bf43922012-09-07 16:07:55 -0400338 return true;
339}
340
341int TWPartitionManager::Write_Fstab(void) {
342 FILE *fp;
343 std::vector<TWPartition*>::iterator iter;
344 string Line;
345
346 fp = fopen("/etc/fstab", "w");
347 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000348 LOGINFO("Can not open /etc/fstab.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400349 return false;
350 }
Dees_Troy63c8df72012-09-10 14:02:05 -0400351 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -0400352 if ((*iter)->Can_Be_Mounted) {
dianlujitao7d304c72016-01-02 12:15:50 +0800353 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
Dees_Troy5bf43922012-09-07 16:07:55 -0400354 fputs(Line.c_str(), fp);
Dees_Troy91862e62013-04-04 23:48:21 +0000355 }
356 // Handle subpartition tracking
357 if ((*iter)->Is_SubPartition) {
358 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
359 if (ParentPartition)
360 ParentPartition->Has_SubPartition = true;
361 else
362 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 -0400363 }
364 }
365 fclose(fp);
366 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400367}
368
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500369void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500370 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
371 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
372 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
373}
374
Matt Mowerbf4efa32014-04-14 23:25:26 -0500375void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
376 if (Part->Has_Android_Secure)
377 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500378 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500379 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500380}
381
Dees_Troy8170a922012-09-18 15:40:25 -0400382void TWPartitionManager::Output_Partition_Logging(void) {
383 std::vector<TWPartition*>::iterator iter;
384
385 printf("\n\nPartition Logs:\n");
386 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
387 Output_Partition((*iter));
388}
389
390void TWPartitionManager::Output_Partition(TWPartition* Part) {
391 unsigned long long mb = 1048576;
392
Gary Peck004d48b2012-11-21 16:28:18 -0800393 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 -0400394 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800395 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 -0400396 }
Gary Peck004d48b2012-11-21 16:28:18 -0800397 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500398 if (Part->Can_Be_Mounted)
399 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800400 if (Part->Can_Be_Wiped)
401 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700402 if (Part->Use_Rm_Rf)
403 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500404 if (Part->Can_Be_Backed_Up)
405 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800406 if (Part->Wipe_During_Factory_Reset)
407 printf("Wipe_During_Factory_Reset ");
408 if (Part->Wipe_Available_in_GUI)
409 printf("Wipe_Available_in_GUI ");
410 if (Part->Is_SubPartition)
411 printf("Is_SubPartition ");
412 if (Part->Has_SubPartition)
413 printf("Has_SubPartition ");
414 if (Part->Removable)
415 printf("Removable ");
416 if (Part->Is_Present)
417 printf("IsPresent ");
418 if (Part->Can_Be_Encrypted)
419 printf("Can_Be_Encrypted ");
420 if (Part->Is_Encrypted)
421 printf("Is_Encrypted ");
422 if (Part->Is_Decrypted)
423 printf("Is_Decrypted ");
424 if (Part->Has_Data_Media)
425 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000426 if (Part->Can_Encrypt_Backup)
427 printf("Can_Encrypt_Backup ");
428 if (Part->Use_Userdata_Encryption)
429 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800430 if (Part->Has_Android_Secure)
431 printf("Has_Android_Secure ");
432 if (Part->Is_Storage)
433 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500434 if (Part->Is_Settings_Storage)
435 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000436 if (Part->Ignore_Blkid)
437 printf("Ignore_Blkid ");
Dees_Troy16c2b312013-01-15 16:51:18 +0000438 if (Part->Retain_Layout_Version)
439 printf("Retain_Layout_Version ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600440 if (Part->Mount_To_Decrypt)
441 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600442 if (Part->Can_Flash_Img)
443 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600444 if (Part->Is_Adopted_Storage)
445 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600446 if (Part->SlotSelect)
447 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600448 if (Part->Mount_Read_Only)
449 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800450 printf("\n");
451 if (!Part->SubPartition_Of.empty())
452 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
453 if (!Part->Symlink_Path.empty())
454 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
455 if (!Part->Symlink_Mount_Point.empty())
456 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
457 if (!Part->Primary_Block_Device.empty())
458 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
459 if (!Part->Alternate_Block_Device.empty())
460 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
461 if (!Part->Decrypted_Block_Device.empty())
462 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
Ethan Yonker253368a2014-11-25 15:00:52 -0600463 if (!Part->Crypto_Key_Location.empty() && Part->Crypto_Key_Location != "footer")
464 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800465 if (Part->Length != 0)
466 printf(" Length: %i\n", Part->Length);
467 if (!Part->Display_Name.empty())
468 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500469 if (!Part->Storage_Name.empty())
470 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800471 if (!Part->Backup_Path.empty())
472 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
473 if (!Part->Backup_Name.empty())
474 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500475 if (!Part->Backup_Display_Name.empty())
476 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800477 if (!Part->Backup_FileName.empty())
478 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
479 if (!Part->Storage_Path.empty())
480 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
481 if (!Part->Current_File_System.empty())
482 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
483 if (!Part->Fstab_File_System.empty())
484 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
485 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500486 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400487 if (!Part->MTD_Name.empty())
488 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600489 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800490 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600491 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600492 if (Part->MTP_Storage_ID)
493 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500494 if (!Part->Key_Directory.empty())
495 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500496 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400497}
498
Dees_Troy51a0e822012-09-05 15:24:24 -0400499int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400500 std::vector<TWPartition*>::iterator iter;
501 int ret = false;
502 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400503 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400504
Dees_Troyd93bda52013-07-03 19:55:19 +0000505 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400506 return true;
507
Dees_Troy5bf43922012-09-07 16:07:55 -0400508 // Iterate through all partitions
509 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400510 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400511 ret = (*iter)->Mount(Display_Error);
512 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400513 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400514 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400515 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400516 }
517 if (found) {
518 return ret;
519 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500520 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 -0400521 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000522 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400523 }
524 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400525}
526
Dees_Troy51a0e822012-09-05 15:24:24 -0400527int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400528 std::vector<TWPartition*>::iterator iter;
529 int ret = false;
530 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400531 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400532
533 // Iterate through all partitions
534 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400535 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400536 ret = (*iter)->UnMount(Display_Error);
537 found = true;
538 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
539 (*iter)->UnMount(Display_Error);
540 }
541 }
542 if (found) {
543 return ret;
544 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500545 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 -0400546 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000547 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400548 }
549 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400550}
551
Dees_Troy51a0e822012-09-05 15:24:24 -0400552int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400553 TWPartition* Part = Find_Partition_By_Path(Path);
554
555 if (Part)
556 return Part->Is_Mounted();
557 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000558 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400559 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400560}
561
Dees_Troy5bf43922012-09-07 16:07:55 -0400562int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400563 string current_storage_path = DataManager::GetCurrentStoragePath();
564
565 if (Mount_By_Path(current_storage_path, Display_Error)) {
566 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
567 if (FreeStorage)
568 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
569 return true;
570 }
571 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400572}
573
Dees_Troy5bf43922012-09-07 16:07:55 -0400574int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
575 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
576}
577
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600578TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400579 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400580 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400581
582 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400583 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400584 return (*iter);
585 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400586 return NULL;
587}
588
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600589TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
590 std::vector<TWPartition*>::iterator iter;
591
592 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
593 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
594 return (*iter);
595 }
596 return NULL;
597}
598
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400599int TWPartitionManager::Check_Backup_Name(bool Display_Error) {
600 // Check the backup name to ensure that it is the correct size and contains only valid characters
601 // and that a backup with that name doesn't already exist
602 char backup_name[MAX_BACKUP_NAME_LEN];
603 char backup_loc[255], tw_image_dir[255];
604 int copy_size;
605 int index, cur_char;
606 string Backup_Name, Backup_Loc;
607
608 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
609 copy_size = Backup_Name.size();
610 // Check size
611 if (copy_size > MAX_BACKUP_NAME_LEN) {
612 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500613 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400614 return -2;
615 }
616
617 // Check each character
618 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500619 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400620 return 0; // A "0" (zero) means to use the current timestamp for the backup name
621 for (index=0; index<copy_size; index++) {
622 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500623 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 -0400624 // These are valid characters
625 // Numbers
626 // Upper case letters
627 // Lower case letters
628 // Space
629 // and -_.{}[]
630 } else {
631 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600632 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 -0400633 return -3;
634 }
635 }
636
637 // Check to make sure that a backup with this name doesn't already exist
638 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
639 strcpy(backup_loc, Backup_Loc.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500640 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500641 if (TWFunc::Path_Exists(tw_image_dir)) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400642 if (Display_Error)
Matt Mower3c366972015-12-25 19:28:31 -0600643 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500644
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400645 return -4;
646 }
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400647 // No problems found, return 0
648 return 0;
649}
650
bigbiffce8f83c2015-12-12 18:30:21 -0500651bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400652 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600653 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500654 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400655
bigbiffce8f83c2015-12-12 18:30:21 -0500656 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400657 return true;
658
Dees_Troy093b7642012-09-21 15:59:38 -0400659 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400660
Tom Hite5a926722014-09-15 01:31:03 +0000661 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400662 time(&start);
663
bigbiffce8f83c2015-12-12 18:30:21 -0500664 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500665 sync();
666 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400667 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500668 if (!part_settings->adbbackup && part_settings->generate_digest) {
669 if (!twrpDigestDriver::Make_Digest(Full_Filename))
670 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400671 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400672
bigbiffce8f83c2015-12-12 18:30:21 -0500673 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400674 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400675 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400676
677 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400678 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500679 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500680 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500681 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000682 }
Dees_Troy2727b992013-08-14 20:09:30 +0000683 sync();
684 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400685 if (!part_settings->adbbackup && part_settings->generate_digest) {
686 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500687 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500688 }
Tom Hite5a926722014-09-15 01:31:03 +0000689 }
Dees_Troy8170a922012-09-18 15:40:25 -0400690 }
691 }
692 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400693
Dees_Troy43d8b002012-09-17 16:00:01 -0400694 time(&stop);
that203bcc92015-05-09 17:27:33 +0200695 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000696 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400697
bigbiffce8f83c2015-12-12 18:30:21 -0500698 if (part_settings->Part->Backup_Method == BM_FILES) {
699 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400700 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500701 part_settings->img_time += backup_time;
702
Dees_Troy43d8b002012-09-17 16:00:01 -0400703 }
Tom Hite5a926722014-09-15 01:31:03 +0000704
Matt Mower02899552016-12-30 18:13:51 -0600705 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500706 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400707 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500708backup_error:
709 Clean_Backup_Folder(part_settings->Backup_Folder);
710 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
711 tw_set_default_metadata(backup_log.c_str());
712 TWFunc::SetPerformanceMode(false);
713 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500714}
715
bigbiffbf1d6722015-02-14 16:25:59 -0500716void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
717 DIR *d = opendir(Backup_Folder.c_str());
718 struct dirent *p;
719 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400720 vector<string> ext;
721
722 //extensions we should delete when cleaning
723 ext.push_back("win");
724 ext.push_back("md5");
725 ext.push_back("sha2");
726 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500727
Ethan Yonker74db1572015-10-28 12:44:49 -0500728 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500729
730 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500731 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500732 return;
733 }
734
Matt Mower2b18a532015-02-20 16:58:05 -0600735 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500736 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
737 continue;
738
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500739 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500740
741 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400742 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
743 if (path.substr(dot) == *i) {
744 r = unlink(path.c_str());
745 if (r != 0)
746 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500747 }
748 }
749 }
750 closedir(d);
751}
752
Ethan Yonker472f5062016-02-25 13:47:30 -0600753int TWPartitionManager::Check_Backup_Cancel() {
754 return stop_backup.get_value();
755}
756
bigbiff7abc5fe2015-01-17 16:53:12 -0500757int TWPartitionManager::Cancel_Backup() {
758 string Backup_Folder, Backup_Name, Full_Backup_Path;
759
760 stop_backup.set_value(1);
761
762 if (tar_fork_pid != 0) {
763 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
764 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500765 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500766 LOGINFO("Killing pid: %d\n", tar_fork_pid);
767 kill(tar_fork_pid, SIGUSR2);
768 while (kill(tar_fork_pid, 0) == 0) {
769 usleep(1000);
770 }
771 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
772 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
773 TWFunc::removeDir(Full_Backup_Path, false);
774 tar_fork_pid = 0;
775 }
776
777 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400778}
779
bigbiffce8f83c2015-12-12 18:30:21 -0500780int TWPartitionManager::Run_Backup(bool adbbackup) {
781 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400782 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500783 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600784 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400785 TWPartition* storage = NULL;
Dees_Troy8170a922012-09-18 15:40:25 -0400786 std::vector<TWPartition*>::iterator subpart;
Dees_Troy43d8b002012-09-17 16:00:01 -0400787 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600788 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500789 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500790 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400791 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500792 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400793
bigbiffce8f83c2015-12-12 18:30:21 -0500794 part_settings.img_bytes_remaining = 0;
795 part_settings.file_bytes_remaining = 0;
796 part_settings.img_time = 0;
797 part_settings.file_time = 0;
798 part_settings.img_bytes = 0;
799 part_settings.file_bytes = 0;
800 part_settings.PM_Method = PM_BACKUP;
801
bigbiffce8f83c2015-12-12 18:30:21 -0500802 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400803 time(&total_start);
804
805 Update_System_Details();
806
807 if (!Mount_Current_Storage(true))
808 return false;
809
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400810 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
811 if (skip_digest == 0)
812 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400813 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400814 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400815
bigbiffce8f83c2015-12-12 18:30:21 -0500816 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500817 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
818 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
819 Backup_Name = TWFunc::Get_Current_Date();
820 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000821 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500822 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400823 }
bigbiffce8f83c2015-12-12 18:30:21 -0500824
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500825 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500826 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500827
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500828 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400829
Dees_Troy2673cec2013-04-02 20:22:16 +0000830 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500831 DataManager::GetValue("tw_backup_list", Backup_List);
832 if (!Backup_List.empty()) {
833 end_pos = Backup_List.find(";", start_pos);
834 while (end_pos != string::npos && start_pos < Backup_List.size()) {
835 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500836 part_settings.Part = Find_Partition_By_Path(backup_path);
837 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500838 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500839 if (part_settings.Part->Backup_Method == BM_FILES)
840 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500841 else
bigbiffce8f83c2015-12-12 18:30:21 -0500842 part_settings.img_bytes += part_settings.Part->Backup_Size;
843 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500844 std::vector<TWPartition*>::iterator subpart;
845
846 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500847 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 -0500848 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500849 if ((*subpart)->Backup_Method == BM_FILES)
850 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500851 else
bigbiffce8f83c2015-12-12 18:30:21 -0500852 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500853 }
854 }
Dees_Troy8170a922012-09-18 15:40:25 -0400855 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500856 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500857 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 -0400858 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500859 start_pos = end_pos + 1;
860 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400861 }
862 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400863
864 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500865 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400866 return false;
867 }
bigbiffce8f83c2015-12-12 18:30:21 -0500868 if (adbbackup) {
869 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
870 return false;
871 }
872 }
873 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600874 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500875 part_settings.progress = &progress;
876
Ethan Yonker74db1572015-10-28 12:44:49 -0500877 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
878 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400879 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
880 if (storage != NULL) {
881 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500882 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400883 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500884 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400885 return false;
886 }
bigbiffbf1d6722015-02-14 16:25:59 -0500887
Matt Mowerbfccfb82016-04-25 23:22:31 -0500888 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500889
890 if (adbbackup)
891 disable_free_space_check = true;
892
bigbiffbf1d6722015-02-14 16:25:59 -0500893 if (!disable_free_space_check) {
894 if (free_space - (32 * 1024 * 1024) < total_bytes) {
895 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500896 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500897 return false;
898 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400899 }
bigbiffce8f83c2015-12-12 18:30:21 -0500900 part_settings.img_bytes_remaining = part_settings.img_bytes;
901 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400902
Ethan Yonker74db1572015-10-28 12:44:49 -0500903 gui_msg("backup_started=[BACKUP STARTED]");
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500904 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
905 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500906 gui_err("fail_backup_folder=Failed to make backup folder.");
Dees_Troyd4b22b02013-01-18 17:17:58 +0000907 return false;
908 }
909
Dees_Troy2673cec2013-04-02 20:22:16 +0000910 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400911
Dees_Troya13d74f2013-03-24 08:54:55 -0500912 start_pos = 0;
913 end_pos = Backup_List.find(";", start_pos);
914 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500915 if (stop_backup.get_value() != 0)
916 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500917 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500918 part_settings.Part = Find_Partition_By_Path(backup_path);
919 if (part_settings.Part != NULL) {
920 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500921 return false;
922 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500923 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 -0500924 }
925 start_pos = end_pos + 1;
926 end_pos = Backup_List.find(";", start_pos);
927 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400928
929 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500930 if (part_settings.img_time == 0)
931 part_settings.img_time = 1;
932 if (part_settings.file_time == 0)
933 part_settings.file_time = 1;
934 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
935 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400936
bigbiffce8f83c2015-12-12 18:30:21 -0500937 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600938 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 -0500939 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600940 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 -0400941
942 time(&total_stop);
943 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -0500944
945 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600946 if (!adbbackup) {
947 TWExclude twe;
948 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
949 } else
bigbiffce8f83c2015-12-12 18:30:21 -0500950 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500951 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -0400952
bigbiffce8f83c2015-12-12 18:30:21 -0500953 int prev_img_bps = 0, use_compression = 0;
954 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -0600955 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400956 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500957 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400958
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500959 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400960 if (use_compression)
961 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500962 else
Dees_Troy093b7642012-09-21 15:59:38 -0400963 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
964 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500965 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400966
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500967 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400968 if (use_compression)
969 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
970 else
971 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
972
Ethan Yonker74db1572015-10-28 12:44:49 -0500973 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -0400974 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400975 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -0600976 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500977 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000978 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600979 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500980
981 if (part_settings.adbbackup) {
982 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
983 return false;
984 }
985 }
986 part_settings.adbbackup = false;
987 DataManager::SetValue("tw_enable_adb_backup", 0);
988
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000989 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400990}
991
bigbiffce8f83c2015-12-12 18:30:21 -0500992bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -0400993 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -0500994
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -0400995 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400996 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
997 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -0400998 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
999 }
1000
Tom Hite5a926722014-09-15 01:31:03 +00001001 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001002
Dees_Troy4a2a1262012-09-18 09:33:47 -04001003 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001004
bigbiffce8f83c2015-12-12 18:30:21 -05001005 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001006 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001007 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001008 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001009 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001010 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001011 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001012
1013 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001014 part_settings->Part = *subpart;
1015 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1016 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001017 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001018 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001019 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001020 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001021 }
Dees_Troy8170a922012-09-18 15:40:25 -04001022 }
1023 }
1024 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001025 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001026 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001027 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1028
Dees_Troy4a2a1262012-09-18 09:33:47 -04001029 return true;
1030}
1031
Ethan Yonker472f5062016-02-25 13:47:30 -06001032int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001033 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001034 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001035
Dees_Troy4a2a1262012-09-18 09:33:47 -04001036 time_t rStart, rStop;
1037 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001038 string Restore_List, restore_path;
1039 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001040
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001041 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001042 part_settings.Part = NULL;
1043 part_settings.partition_count = 0;
1044 part_settings.total_restore_size = 0;
1045 part_settings.adbbackup = false;
1046 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001047
Ethan Yonker74db1572015-10-28 12:44:49 -05001048 gui_msg("restore_started=[RESTORE STARTED]");
1049 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001050
Dees_Troy4a2a1262012-09-18 09:33:47 -04001051 if (!Mount_Current_Storage(true))
1052 return false;
1053
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001054 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1055 if (check_digest > 0) {
1056 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1057 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1058 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001059 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001060 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001061 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001062 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001063 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001064
Dees_Troya13d74f2013-03-24 08:54:55 -05001065 if (!Restore_List.empty()) {
1066 end_pos = Restore_List.find(";", start_pos);
1067 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1068 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001069 part_settings.Part = Find_Partition_By_Path(restore_path);
1070 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001071 if (part_settings.Part->Mount_Read_Only) {
1072 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 -05001073 return false;
1074 }
bigbiffce8f83c2015-12-12 18:30:21 -05001075
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001076 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1077
1078 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001079 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001080 part_settings.partition_count++;
1081 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1082 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001083 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001084 std::vector<TWPartition*>::iterator subpart;
1085
1086 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001087 part_settings.Part = *subpart;
1088 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001089 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001090 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001091 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001092 }
1093 }
1094 }
1095 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001096 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001097 }
1098 start_pos = end_pos + 1;
1099 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001100 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001101 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001102
bigbiffce8f83c2015-12-12 18:30:21 -05001103 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001104 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001105 return false;
1106 }
1107
bigbiffce8f83c2015-12-12 18:30:21 -05001108 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1109 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 +00001110 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001111 ProgressTracking progress(part_settings.total_restore_size);
1112 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001113
Dees_Troya13d74f2013-03-24 08:54:55 -05001114 start_pos = 0;
1115 if (!Restore_List.empty()) {
1116 end_pos = Restore_List.find(";", start_pos);
1117 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1118 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001119
1120 part_settings.Part = Find_Partition_By_Path(restore_path);
1121 if (part_settings.Part != NULL) {
1122 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001123 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001124 return false;
1125 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001126 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001127 }
1128 start_pos = end_pos + 1;
1129 end_pos = Restore_List.find(";", start_pos);
1130 }
1131 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001132 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001133 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001134 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001135 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001136 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001137 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001138 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001139
Dees_Troy63c8df72012-09-10 14:02:05 -04001140 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001141}
1142
1143void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001144 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001145 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001146 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001147 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001148
1149 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001150 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1151 vector<string> adb_files;
1152 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1153 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1154 string adb_restore_file = adb_files.at(i);
1155 std::size_t pos = adb_restore_file.find_first_of(".");
1156 std::string path = "/" + adb_restore_file.substr(0, pos);
1157 Restore_List = path + ";";
1158 TWPartition* Part = Find_Partition_By_Path(path);
1159 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1160 adbbackup = true;
1161 }
1162 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001163 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001164 else {
1165 DIR* d;
1166 d = opendir(Restore_Name.c_str());
1167 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001168 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001169 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1170 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001171 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001172
1173 struct dirent* de;
1174 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001175 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001176 // Strip off three components
1177 char str[256];
1178 char* label;
1179 char* fstype = NULL;
1180 char* extn = NULL;
1181 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001182
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001183 strcpy(str, de->d_name);
1184 if (strlen(str) <= 2)
1185 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001186
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001187 if (get_date) {
1188 char file_path[255];
1189 struct stat st;
1190
1191 strcpy(file_path, Restore_Name.c_str());
1192 strcat(file_path, "/");
1193 strcat(file_path, str);
1194 stat(file_path, &st);
1195 string backup_date = ctime((const time_t*)(&st.st_mtime));
1196 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1197 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001198 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001199
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001200 label = str;
1201 ptr = label;
1202 while (*ptr && *ptr != '.') ptr++;
1203 if (*ptr == '.')
1204 {
1205 *ptr = 0x00;
1206 ptr++;
1207 fstype = ptr;
1208 }
1209 while (*ptr && *ptr != '.') ptr++;
1210 if (*ptr == '.')
1211 {
1212 *ptr = 0x00;
1213 ptr++;
1214 extn = ptr;
1215 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001216
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001217 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1218 int extnlength = strlen(extn);
1219 if (extnlength != 3 && extnlength != 6) continue;
1220 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1221 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001222
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001223 if (check_encryption) {
1224 string filename = Restore_Name + "/";
1225 filename += de->d_name;
1226 if (TWFunc::Get_File_Type(filename) == 2) {
1227 LOGINFO("'%s' is encrypted\n", filename.c_str());
1228 DataManager::SetValue("tw_restore_encrypted", 1);
1229 }
1230 }
1231 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1232
1233 TWPartition* Part = Find_Partition_By_Path(label);
1234 if (Part == NULL)
1235 {
1236 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1237 continue;
1238 }
1239
1240 Part->Backup_FileName = de->d_name;
1241 if (strlen(extn) > 3) {
1242 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1243 }
1244
1245 if (!Part->Is_SubPartition)
1246 Restore_List += Part->Backup_Path + ";";
1247 }
1248 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001249 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001250
1251 if (adbbackup) {
1252 Restore_List = "ADB_Backup;";
1253 adbbackup = false;
1254 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001255
Dees_Troya13d74f2013-03-24 08:54:55 -05001256 // Set the final value
1257 DataManager::SetValue("tw_restore_list", Restore_List);
1258 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001259 return;
1260}
1261
1262int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001263 std::vector<TWPartition*>::iterator iter;
1264 int ret = false;
1265 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001266 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001267
1268 // Iterate through all partitions
1269 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001270 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troye58d5262012-09-21 12:27:57 -04001271 if (Path == "/and-sec")
1272 ret = (*iter)->Wipe_AndSec();
1273 else
1274 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001275 found = true;
1276 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1277 (*iter)->Wipe();
1278 }
1279 }
1280 if (found) {
1281 return ret;
1282 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001283 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 -04001284 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001285}
1286
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001287int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1288 std::vector<TWPartition*>::iterator iter;
1289 int ret = false;
1290 bool found = false;
1291 string Local_Path = TWFunc::Get_Root_Path(Path);
1292
1293 // Iterate through all partitions
1294 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1295 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1296 if (Path == "/and-sec")
1297 ret = (*iter)->Wipe_AndSec();
1298 else
1299 ret = (*iter)->Wipe(New_File_System);
1300 found = true;
1301 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1302 (*iter)->Wipe(New_File_System);
1303 }
1304 }
1305 if (found) {
1306 return ret;
1307 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001308 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 -05001309 return false;
1310}
1311
Dees_Troy51a0e822012-09-05 15:24:24 -04001312int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001313 std::vector<TWPartition*>::iterator iter;
1314 int ret = true;
1315
1316 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001317 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001318#ifdef TW_OEM_BUILD
1319 if ((*iter)->Mount_Point == "/data") {
1320 if (!(*iter)->Wipe_Encryption())
1321 ret = false;
1322 } else {
1323#endif
1324 if (!(*iter)->Wipe())
1325 ret = false;
1326#ifdef TW_OEM_BUILD
1327 }
1328#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001329 } else if ((*iter)->Has_Android_Secure) {
1330 if (!(*iter)->Wipe_AndSec())
1331 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001332 }
1333 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001334 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001335 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001336}
1337
Dees_Troy38bd7602012-09-14 13:33:53 -04001338int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1339 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001340 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001341
1342 if (!Mount_By_Path("/data", true))
1343 return false;
1344
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001345 dir.push_back("/data/dalvik-cache");
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001346 if (Mount_By_Path("/cache", false)) {
1347 dir.push_back("/cache/dalvik-cache");
1348 dir.push_back("/cache/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001349 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001350
Dees_Troy38bd7602012-09-14 13:33:53 -04001351 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001352 if (sdext && sdext->Is_Present && sdext->Mount(false))
1353 {
1354 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1355 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001356 dir.push_back("/sd-ext/dalvik-cache");
1357 }
1358 }
1359
1360 gui_msg("wiping_dalvik=Wiping Dalvik Cache Directories...");
1361 for (unsigned i = 0; i < dir.size(); ++i) {
1362 if (stat(dir.at(i).c_str(), &st) == 0) {
1363 TWFunc::removeDir(dir.at(i), false);
1364 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001365 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001366 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001367 gui_msg("dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
Dees_Troy38bd7602012-09-14 13:33:53 -04001368 return true;
1369}
1370
1371int TWPartitionManager::Wipe_Rotate_Data(void) {
1372 if (!Mount_By_Path("/data", true))
1373 return false;
1374
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001375 unlink("/data/misc/akmd*");
1376 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001377 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001378 return true;
1379}
1380
1381int TWPartitionManager::Wipe_Battery_Stats(void) {
1382 struct stat st;
1383
1384 if (!Mount_By_Path("/data", true))
1385 return false;
1386
1387 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001388 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001389 } else {
1390 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001391 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001392 }
1393 return true;
1394}
1395
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001396int TWPartitionManager::Wipe_Android_Secure(void) {
1397 std::vector<TWPartition*>::iterator iter;
1398 int ret = false;
1399 bool found = false;
1400
1401 // Iterate through all partitions
1402 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1403 if ((*iter)->Has_Android_Secure) {
1404 ret = (*iter)->Wipe_AndSec();
1405 found = true;
1406 }
1407 }
1408 if (found) {
1409 return ret;
1410 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001411 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001412 }
1413 return false;
1414}
1415
Dees_Troy38bd7602012-09-14 13:33:53 -04001416int TWPartitionManager::Format_Data(void) {
1417 TWPartition* dat = Find_Partition_By_Path("/data");
1418
1419 if (dat != NULL) {
1420 if (!dat->UnMount(true))
1421 return false;
1422
1423 return dat->Wipe_Encryption();
1424 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001425 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001426 return false;
1427 }
1428 return false;
1429}
1430
1431int TWPartitionManager::Wipe_Media_From_Data(void) {
1432 TWPartition* dat = Find_Partition_By_Path("/data");
1433
1434 if (dat != NULL) {
1435 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001436 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001437 return false;
1438 }
1439 if (!dat->Mount(true))
1440 return false;
1441
Ethan Yonker74db1572015-10-28 12:44:49 -05001442 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001443 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001444 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001445 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001446 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001447 return true;
1448 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001449 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001450 return false;
1451 }
1452 return false;
1453}
1454
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001455int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1456 std::vector<TWPartition*>::iterator iter;
1457 int ret = false;
1458 bool found = false;
1459 string Local_Path = TWFunc::Get_Root_Path(Path);
1460
1461 if (Local_Path == "/tmp" || Local_Path == "/")
1462 return true;
1463
1464 // Iterate through all partitions
1465 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1466 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1467 ret = (*iter)->Repair();
1468 found = true;
1469 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1470 (*iter)->Repair();
1471 }
1472 }
1473 if (found) {
1474 return ret;
1475 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001476 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 -05001477 } else {
1478 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1479 }
1480 return false;
1481}
1482
Ethan Yonkera2719152015-05-28 09:44:41 -05001483int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1484 std::vector<TWPartition*>::iterator iter;
1485 int ret = false;
1486 bool found = false;
1487 string Local_Path = TWFunc::Get_Root_Path(Path);
1488
1489 if (Local_Path == "/tmp" || Local_Path == "/")
1490 return true;
1491
1492 // Iterate through all partitions
1493 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1494 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1495 ret = (*iter)->Resize();
1496 found = true;
1497 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1498 (*iter)->Resize();
1499 }
1500 }
1501 if (found) {
1502 return ret;
1503 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001504 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 -05001505 } else {
1506 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1507 }
1508 return false;
1509}
1510
Dees_Troy51a0e822012-09-05 15:24:24 -04001511void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001512 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001513 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001514
Ethan Yonker74db1572015-10-28 12:44:49 -05001515 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001516 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001517 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001518 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001519 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001520 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1521 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
1522 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1523 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1524 } else if ((*iter)->Mount_Point == "/cache") {
1525 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1526 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1527 } else if ((*iter)->Mount_Point == "/sd-ext") {
1528 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1529 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1530 if ((*iter)->Backup_Size == 0) {
1531 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1532 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1533 } else
1534 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001535 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001536 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001537 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001538 if ((*iter)->Backup_Size == 0) {
1539 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1540 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1541 } else
1542 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001543 } else if ((*iter)->Mount_Point == "/boot") {
1544 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1545 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1546 if ((*iter)->Backup_Size == 0) {
1547 DataManager::SetValue("tw_has_boot_partition", 0);
1548 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1549 } else
1550 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001551 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001552 } else {
1553 // Handle unmountable partitions in case we reset defaults
1554 if ((*iter)->Mount_Point == "/boot") {
1555 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1556 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1557 if ((*iter)->Backup_Size == 0) {
1558 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1559 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1560 } else
1561 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1562 } else if ((*iter)->Mount_Point == "/recovery") {
1563 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1564 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1565 if ((*iter)->Backup_Size == 0) {
1566 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1567 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1568 } else
1569 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001570 } else if ((*iter)->Mount_Point == "/data") {
1571 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001572 }
Dees_Troy51127312012-09-08 13:08:49 -04001573 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001574 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001575 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001576 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1577 string current_storage_path = DataManager::GetCurrentStoragePath();
1578 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001579 if (FreeStorage != NULL) {
1580 // Attempt to mount storage
1581 if (!FreeStorage->Mount(false)) {
Matt Mower2d50cad2015-12-03 22:26:55 -06001582 gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage"));
1583 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
Dees_Troy8170a922012-09-18 15:40:25 -04001584 } else {
1585 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1586 }
1587 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001588 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001589 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001590 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001591 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001592 return;
1593}
1594
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001595void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1596 TWPartition* dat = Find_Partition_By_Path("/data");
1597 if (dat != NULL) {
1598 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1599 dat->Is_Decrypted = true;
1600 if (!Block_Device.empty()) {
1601 dat->Decrypted_Block_Device = Block_Device;
1602 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1603 } else {
1604 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1605 }
1606 dat->Setup_File_System(false);
1607 dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc
1608
1609 // Sleep for a bit so that the device will be ready
1610 sleep(1);
1611 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1612 dat->Storage_Path = "/data/media/0";
1613 dat->Symlink_Path = dat->Storage_Path;
1614 DataManager::SetValue("tw_storage_path", "/data/media/0");
1615 DataManager::SetValue("tw_settings_path", "/data/media/0");
1616 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001617 }
1618 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001619 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001620 UnMount_Main_Partitions();
1621 } else
1622 LOGERR("Unable to locate data partition.\n");
1623}
1624
Dees_Troy51a0e822012-09-05 15:24:24 -04001625int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001626#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001627 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001628 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001629
Ethan Yonker253368a2014-11-25 15:00:52 -06001630 // Mount any partitions that need to be mounted for decrypt
1631 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1632 if ((*iter)->Mount_To_Decrypt) {
1633 (*iter)->Mount(true);
1634 }
a39552696ff55ce2013-01-08 16:14:56 +00001635 }
oshmouna82a7542018-04-10 17:45:55 +02001636 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001637
Ethan Yonkera1de1492015-11-04 11:58:27 -06001638 property_get("ro.crypto.state", crypto_state, "error");
1639 if (strcmp(crypto_state, "error") == 0) {
1640 property_set("ro.crypto.state", "encrypted");
1641 // Sleep for a bit so that services can start if needed
1642 sleep(1);
1643 }
1644
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001645 if (DataManager::GetIntValue(TW_IS_FBE)) {
1646#ifdef TW_INCLUDE_FBE
1647 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1648 return -1;
1649 int retry_count = 10;
1650 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
1651 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1652 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1653 LOGINFO("Decrypting FBE for user %i\n", user_id);
1654 if (Decrypt_User(user_id, Password)) {
1655 Post_Decrypt("");
1656 return 0;
1657 }
1658#else
1659 LOGERR("FBE support is not present\n");
1660#endif
1661 return -1;
1662 }
1663
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001664 int pwret = -1;
1665 pid_t pid = fork();
1666 if (pid < 0) {
1667 LOGERR("fork failed\n");
1668 return -1;
1669 } else if (pid == 0) {
1670 // Child process
1671 char cPassword[255];
1672 strcpy(cPassword, Password.c_str());
1673 int ret = cryptfs_check_passwd(cPassword);
1674 exit(ret);
1675 } else {
1676 // Parent
1677 int status;
1678 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1679 pwret = -1;
1680 else
1681 pwret = WEXITSTATUS(status) ? -1 : 0;
1682 }
a39552696ff55ce2013-01-08 16:14:56 +00001683
nkk7171c6c502017-01-05 23:55:05 +02001684#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1685 if (pwret != 0) {
1686 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001687 switch (pwret) {
1688 case VD_SUCCESS:
1689 break;
1690 case VD_ERR_MISSING_VDC:
1691 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1692 break;
1693 case VD_ERR_MISSING_VOLD:
1694 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1695 break;
1696 }
nkk7171c6c502017-01-05 23:55:05 +02001697 }
1698#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1699
Ethan Yonker253368a2014-11-25 15:00:52 -06001700 // Unmount any partitions that were needed for decrypt
1701 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1702 if ((*iter)->Mount_To_Decrypt) {
1703 (*iter)->UnMount(false);
1704 }
1705 }
oshmouna82a7542018-04-10 17:45:55 +02001706 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001707
a39552696ff55ce2013-01-08 16:14:56 +00001708 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001709 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001710 return -1;
1711 }
a39552696ff55ce2013-01-08 16:14:56 +00001712
Dees_Troy5bf43922012-09-07 16:07:55 -04001713 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1714 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001715 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001716 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001717 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001718 }
1719 return 0;
1720#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001721 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001722 return -1;
1723#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001724 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001725}
1726
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001727int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001728 std::vector<TWPartition*>::iterator iter;
1729 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1730 if ((*iter)->Has_Data_Media) {
1731 if ((*iter)->Mount(true)) {
1732 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1733 return -1;
1734 }
1735 }
1736 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001737 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001738 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001739 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001740}
1741
Ethan Yonker66a19492015-12-10 10:19:45 -06001742TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001743 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1744
1745 if (!Path.empty()) {
1746 string Search_Path = TWFunc::Get_Root_Path(Path);
1747 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001748 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001749 iter++;
1750 break;
1751 }
1752 }
1753 }
1754
1755 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001756 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1757 // do nothing, do not return this type of partition
1758 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001759 return (*iter);
1760 }
1761 }
1762
1763 return NULL;
1764}
1765
Dees_Troyd21618c2012-10-14 18:48:49 -04001766int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001767 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1768
1769 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001770 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1771 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 -04001772 return false;
1773 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001774 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1775 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001776 return false;
1777
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001778 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001779 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001780 return false;
1781 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001782 return true;
1783}
1784
Dees_Troy8170a922012-09-18 15:40:25 -04001785int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001786 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001787 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001788
Ethan Yonker47360be2014-04-01 10:34:34 -05001789 string Lun_File_str = CUSTOM_LUN_FILE;
1790 size_t found = Lun_File_str.find("%");
1791 if (found != string::npos) {
1792 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1793 if (TWFunc::Path_Exists(lun_file))
1794 has_multiple_lun = true;
1795 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001796 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001797 if (!has_multiple_lun) {
1798 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1799 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1800 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001801 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001802 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001803 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1804 goto error_handle;
1805 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001806 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001807 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001808 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001809 }
1810 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001811 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001812 }
Dees_Troy8170a922012-09-18 15:40:25 -04001813 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001814 LOGINFO("Device has multiple lun files\n");
1815 TWPartition* Mount1;
1816 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001817 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001818 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001819 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001820 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1821 goto error_handle;
1822 }
Matt Moweree717062014-04-26 01:46:46 -05001823 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001824 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001825 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001826 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001827 }
1828 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001829 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001830 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001831 }
Dees_Troy8170a922012-09-18 15:40:25 -04001832 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001833 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001834 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001835 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001836error_handle:
1837 if (mtp_was_enabled)
1838 if (!Enable_MTP())
1839 Disable_MTP();
1840 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001841}
1842
1843int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001844 int index, ret;
1845 char lun_file[255], ch[2] = {0, 0};
1846 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001847
1848 for (index=0; index<2; index++) {
1849 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001850 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001851 if (ret < 0) {
1852 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001853 }
Dees_Troy8170a922012-09-18 15:40:25 -04001854 }
Dees_Troye58d5262012-09-21 12:27:57 -04001855 Mount_All_Storage();
1856 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001857 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001858 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001859 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001860 if (mtp_was_enabled)
1861 if (!Enable_MTP())
1862 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001863 if (ret < 0 && index == 0) {
1864 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1865 return false;
1866 } else {
1867 return true;
1868 }
Dees_Troy8170a922012-09-18 15:40:25 -04001869 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04001870}
1871
1872void TWPartitionManager::Mount_All_Storage(void) {
1873 std::vector<TWPartition*>::iterator iter;
1874
1875 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1876 if ((*iter)->Is_Storage)
1877 (*iter)->Mount(false);
1878 }
Dees_Troy2c50e182012-09-26 20:05:28 -04001879}
Dees_Troy9350b8d2012-09-27 12:38:38 -04001880
Dees_Troyd0384ef2012-10-12 12:15:42 -04001881void TWPartitionManager::UnMount_Main_Partitions(void) {
1882 // Unmounts system and data if data is not data/media
1883 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00001884 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04001885
1886 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
1887
Captain Throwback9d6feb52018-07-27 10:05:24 -04001888 UnMount_By_Path(Get_Android_Root_Path(), true);
Ethan Yonker6277c792014-09-15 14:54:30 -05001889 if (!datamedia)
1890 UnMount_By_Path("/data", true);
1891
Dees_Troyd0384ef2012-10-12 12:15:42 -04001892 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
1893 Boot_Partition->UnMount(true);
1894}
1895
Dees_Troy9350b8d2012-09-27 12:38:38 -04001896int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06001897 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06001898 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 -04001899 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04001900
Ethan Yonker74db1572015-10-28 12:44:49 -05001901 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001902
1903 // Locate and validate device to partition
1904 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1905
Ethan Yonker66a19492015-12-10 10:19:45 -06001906 if (SDCard->Is_Adopted_Storage)
1907 SDCard->Revert_Adopted();
1908
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05001909 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001910 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001911 return false;
1912 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001913
1914 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04001915 if (!SDCard->UnMount(true))
1916 return false;
1917 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
1918 if (SDext != NULL) {
1919 if (!SDext->UnMount(true))
1920 return false;
1921 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001922 char* swappath = getenv("SWAPPATH");
1923 if (swappath != NULL) {
1924 LOGINFO("Unmounting swap at '%s'\n", swappath);
1925 umount(swappath);
1926 }
Vojtech Bocek05534202013-09-11 08:11:56 +02001927
Ethan Yonker483e9f42016-01-11 22:21:18 -06001928 // Determine block device
1929 if (SDCard->Alternate_Block_Device.empty()) {
1930 SDCard->Find_Actual_Block_Device();
1931 Device = SDCard->Actual_Block_Device;
1932 // Just use the root block device
1933 Device.resize(strlen("/dev/block/mmcblkX"));
1934 } else {
1935 Device = SDCard->Alternate_Block_Device;
1936 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04001937
1938 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06001939 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001940
1941 DataManager::GetValue("tw_sdext_size", ext);
1942 DataManager::GetValue("tw_swap_size", swap);
1943 DataManager::GetValue("tw_sdpart_file_system", ext_format);
1944 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06001945 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);
1946
1947 // Determine partition sizes
1948 if (swap == 0 && ext == 0) {
1949 fat_str = "-0";
1950 } else {
1951 memset(temp, 0, sizeof(temp));
1952 sprintf(temp, "%i", fat_size);
1953 fat_str = temp;
1954 fat_str += "MB";
1955 }
1956 if (swap == 0) {
1957 ext_str = "-0";
1958 } else {
1959 memset(temp, 0, sizeof(temp));
1960 sprintf(temp, "%i", ext);
1961 ext_str = "+";
1962 ext_str += temp;
1963 ext_str += "MB";
1964 }
1965
Dees_Troy9350b8d2012-09-27 12:38:38 -04001966 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001967 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001968 return false;
1969 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001970
Ethan Yonker74db1572015-10-28 12:44:49 -05001971 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001972 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00001973 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001974 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001975 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001976 Update_System_Details();
1977 return false;
1978 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001979 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04001980 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 +00001981 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001982 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001983 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001984 return false;
1985 }
1986 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001987 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06001988 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00001989 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001990 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001991 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001992 Update_System_Details();
1993 return false;
1994 }
1995 }
1996 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001997 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06001998 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 +00001999 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002000 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002001 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002002 Update_System_Details();
2003 return false;
2004 }
2005 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002006
2007 // Convert GPT to MBR
2008 Command = "sgdisk --gpttombr " + Device;
2009 if (TWFunc::Exec_Cmd(Command) != 0)
2010 LOGINFO("Failed to covert partition GPT to MBR\n");
2011
2012 // Tell the kernel to rescan the partition table
2013 int fd = open(Device.c_str(), O_RDONLY);
2014 ioctl(fd, BLKRRPART, 0);
2015 close(fd);
2016
2017 string format_device = Device;
2018 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2019 format_device += "p";
2020
2021 // Format new partitions to proper file system
2022 if (fat_size > 0) {
2023 Command = "mkfs.fat " + format_device + "1";
2024 TWFunc::Exec_Cmd(Command);
2025 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002026 if (ext > 0) {
2027 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002028 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2029 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2030 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2031 TWFunc::Exec_Cmd(Command);
2032 } else {
2033 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002034 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002035 }
2036 if (swap > 0) {
2037 Command = "mkswap " + format_device;
2038 if (ext > 0)
2039 Command += "3";
2040 else
2041 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002042 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002043 }
2044
Ethan Yonker483e9f42016-01-11 22:21:18 -06002045 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2046 if (SDCard->Mount(true)) {
2047 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2048 mkdir(TWRP_Folder.c_str(), 0777);
2049 DataManager::Flush();
2050 }
2051
Dees_Troy9350b8d2012-09-27 12:38:38 -04002052 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002053 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002054 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002055}
Dees_Troya13d74f2013-03-24 08:54:55 -05002056
2057void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2058 std::vector<TWPartition*>::iterator iter;
2059 if (ListType == "mount") {
2060 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002061 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002062 struct PartitionList part;
2063 part.Display_Name = (*iter)->Display_Name;
2064 part.Mount_Point = (*iter)->Mount_Point;
2065 part.selected = (*iter)->Is_Mounted();
2066 Partition_List->push_back(part);
2067 }
2068 }
2069 } else if (ListType == "storage") {
2070 char free_space[255];
2071 string Current_Storage = DataManager::GetCurrentStoragePath();
2072 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2073 if ((*iter)->Is_Storage) {
2074 struct PartitionList part;
2075 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2076 part.Display_Name = (*iter)->Storage_Name + " (";
2077 part.Display_Name += free_space;
2078 part.Display_Name += "MB)";
2079 part.Mount_Point = (*iter)->Storage_Path;
2080 if ((*iter)->Storage_Path == Current_Storage)
2081 part.selected = 1;
2082 else
2083 part.selected = 0;
2084 Partition_List->push_back(part);
2085 }
2086 }
2087 } else if (ListType == "backup") {
2088 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002089 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002090 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002091 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002092 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002093 Backup_Size = (*iter)->Backup_Size;
2094 if ((*iter)->Has_SubPartition) {
2095 std::vector<TWPartition*>::iterator subpart;
2096
2097 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2098 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2099 Backup_Size += (*subpart)->Backup_Size;
2100 }
2101 }
2102 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002103 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2104 part.Display_Name += backup_size;
2105 part.Display_Name += "MB)";
2106 part.Mount_Point = (*iter)->Backup_Path;
2107 part.selected = 0;
2108 Partition_List->push_back(part);
2109 }
2110 }
2111 } else if (ListType == "restore") {
2112 string Restore_List, restore_path;
2113 TWPartition* restore_part = NULL;
2114
2115 DataManager::GetValue("tw_restore_list", Restore_List);
2116 if (!Restore_List.empty()) {
2117 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2118 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2119 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002120 struct PartitionList part;
2121 if (restore_path.compare("ADB_Backup") == 0) {
2122 part.Display_Name = "ADB Backup";
2123 part.Mount_Point = "ADB Backup";
2124 part.selected = 1;
2125 Partition_List->push_back(part);
2126 break;
2127 }
Dees_Troy59df9262013-06-19 14:53:57 -05002128 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002129 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002130 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002131 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002132 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002133 part.Display_Name = restore_part->Backup_Display_Name;
2134 part.Mount_Point = restore_part->Backup_Path;
2135 part.selected = 1;
2136 Partition_List->push_back(part);
2137 }
2138 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002139 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002140 }
2141 start_pos = end_pos + 1;
2142 end_pos = Restore_List.find(";", start_pos);
2143 }
2144 }
2145 } else if (ListType == "wipe") {
2146 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002147 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002148 dalvik.Mount_Point = "DALVIK";
2149 dalvik.selected = 0;
2150 Partition_List->push_back(dalvik);
2151 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2152 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2153 struct PartitionList part;
2154 part.Display_Name = (*iter)->Display_Name;
2155 part.Mount_Point = (*iter)->Mount_Point;
2156 part.selected = 0;
2157 Partition_List->push_back(part);
2158 }
2159 if ((*iter)->Has_Android_Secure) {
2160 struct PartitionList part;
2161 part.Display_Name = (*iter)->Backup_Display_Name;
2162 part.Mount_Point = (*iter)->Backup_Path;
2163 part.selected = 0;
2164 Partition_List->push_back(part);
2165 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002166 if ((*iter)->Has_Data_Media) {
2167 struct PartitionList datamedia;
2168 datamedia.Display_Name = (*iter)->Storage_Name;
2169 datamedia.Mount_Point = "INTERNAL";
2170 datamedia.selected = 0;
2171 Partition_List->push_back(datamedia);
2172 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002173 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002174 } else if (ListType == "flashimg") {
2175 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2176 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2177 struct PartitionList part;
2178 part.Display_Name = (*iter)->Backup_Display_Name;
2179 part.Mount_Point = (*iter)->Backup_Path;
2180 part.selected = 0;
2181 Partition_List->push_back(part);
2182 }
2183 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002184 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002185 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002186 }
2187}
2188
2189int TWPartitionManager::Fstab_Processed(void) {
2190 return Partitions.size();
2191}
Dees_Troyd93bda52013-07-03 19:55:19 +00002192
2193void TWPartitionManager::Output_Storage_Fstab(void) {
2194 std::vector<TWPartition*>::iterator iter;
2195 char storage_partition[255];
2196 string Temp;
2197 FILE *fp = fopen("/cache/recovery/storage.fstab", "w");
2198
2199 if (fp == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002200 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")("/cache/recovery/storage.fstab"));
Dees_Troyd93bda52013-07-03 19:55:19 +00002201 return;
2202 }
2203
2204 // Iterate through all partitions
2205 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2206 if ((*iter)->Is_Storage) {
2207 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2208 strcpy(storage_partition, Temp.c_str());
2209 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2210 }
2211 }
2212 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002213}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002214
2215TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2216{
2217 TWPartition *res = NULL;
2218 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002219 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002220 continue;
2221
Matt Mowera8a89d12016-12-30 18:10:37 -06002222 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002223 return *iter;
2224
Matt Mowera8a89d12016-12-30 18:10:37 -06002225 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002226 res = *iter;
2227 }
2228 return res;
2229}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002230
2231bool TWPartitionManager::Enable_MTP(void) {
2232#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002233 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002234 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002235 return true;
2236 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002237
2238 int mtppipe[2];
2239
2240 if (pipe(mtppipe) < 0) {
2241 LOGERR("Error creating MTP pipe\n");
2242 return false;
2243 }
2244
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002245 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002246 property_get("sys.usb.config", old_value, "");
2247 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002248 char vendor[PROPERTY_VALUE_MAX];
2249 char product[PROPERTY_VALUE_MAX];
2250 property_set("sys.usb.config", "none");
2251 property_get("usb.vendor", vendor, "18D1");
2252 property_get("usb.product.mtpadb", product, "4EE2");
2253 string vendorstr = vendor;
2254 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002255 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2256 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002257 property_set("sys.usb.config", "mtp,adb");
2258 }
Matt Mower653a1702017-02-16 10:38:52 -06002259 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002260 * twrp set tw_mtp_debug 1
2261 */
2262 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002263 mtppid = mtp->forkserver(mtppipe);
2264 if (mtppid) {
2265 close(mtppipe[0]); // Host closes read side
2266 mtp_write_fd = mtppipe[1];
2267 DataManager::SetValue("tw_mtp_enabled", 1);
2268 Add_All_MTP_Storage();
2269 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002270 } else {
2271 close(mtppipe[0]);
2272 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002273 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002274 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002275 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002276#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002277 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002278#endif
2279 DataManager::SetValue("tw_mtp_enabled", 0);
2280 return false;
2281}
2282
Ethan Yonker1b039202015-01-30 10:08:48 -06002283void TWPartitionManager::Add_All_MTP_Storage(void) {
2284#ifdef TW_HAS_MTP
2285 std::vector<TWPartition*>::iterator iter;
2286
2287 if (!mtppid)
2288 return; // MTP is not enabled
2289
2290 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2291 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2292 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2293 }
2294#else
2295 return;
2296#endif
2297}
2298
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002299bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002300 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002301 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002302 if (strcmp(old_value, "adb") != 0) {
2303 char vendor[PROPERTY_VALUE_MAX];
2304 char product[PROPERTY_VALUE_MAX];
2305 property_set("sys.usb.config", "none");
2306 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002307 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002308 string vendorstr = vendor;
2309 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002310 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2311 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002312 usleep(2000);
2313 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002314#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002315 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002316 LOGINFO("Disabling MTP\n");
2317 int status;
2318 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002319 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002320 // We don't care about the exit value, but this prevents a zombie process
2321 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002322 close(mtp_write_fd);
2323 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002324 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002325#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002326 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002327#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002328 DataManager::SetValue("tw_mtp_enabled", 0);
2329 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002330#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002331 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002332}
Ethan Yonker726a0202014-12-16 20:01:38 -06002333
2334TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2335 std::vector<TWPartition*>::iterator iter;
2336
2337 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2338 if ((*iter)->MTP_Storage_ID == Storage_ID)
2339 return (*iter);
2340 }
2341 return NULL;
2342}
2343
2344bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2345#ifdef TW_HAS_MTP
2346 struct mtpmsg mtp_message;
2347
2348 if (!mtppid)
2349 return false; // MTP is disabled
2350
2351 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002352 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002353 return false;
2354 }
2355
2356 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002357 if (Part->MTP_Storage_ID == 0)
2358 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002359 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2360 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2361 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2362 mtp_message.storage_id = Part->MTP_Storage_ID;
2363 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002364 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002365 return false;
2366 } else {
2367 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2368 return true;
2369 }
2370 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2371 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2372 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002373 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2374 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2375 return false;
2376 }
2377 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2378 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2379 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2380 return false;
2381 }
2382 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002383 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002384 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 -06002385 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002386 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002387 return false;
2388 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002389 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002390 return true;
2391 }
2392 } else {
2393 LOGERR("Unknown MTP message type: %i\n", message_type);
2394 }
2395 } else {
2396 // This hopefully never happens as the error handling should
2397 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002398 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002399 }
2400 return true;
2401#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002402 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002403 DataManager::SetValue("tw_mtp_enabled", 0);
2404 return false;
2405#endif
2406}
2407
2408bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2409#ifdef TW_HAS_MTP
2410 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2411 if (Part) {
2412 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2413 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002414 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002415 }
2416#endif
2417 return false;
2418}
2419
2420bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2421#ifdef TW_HAS_MTP
2422 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2423 if (Part) {
2424 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2425 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002426 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002427 }
2428#endif
2429 return false;
2430}
2431
2432bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2433#ifdef TW_HAS_MTP
2434 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2435 if (Part) {
2436 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2437 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002438 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002439 }
2440#endif
2441 return false;
2442}
2443
2444bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2445#ifdef TW_HAS_MTP
2446 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2447 if (Part) {
2448 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2449 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002450 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002451 }
2452#endif
2453 return false;
2454}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002455
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002456bool TWPartitionManager::Flash_Image(string& path, string& filename) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002457 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002458 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002459 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002460 size_t start_pos = 0, end_pos = 0;
2461
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002462 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002463
bigbiffce8f83c2015-12-12 18:30:21 -05002464 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2465 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2466
2467 if (!TWFunc::Path_Exists(full_filename)) {
2468 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002469 return false;
2470 }
bigbiffce8f83c2015-12-12 18:30:21 -05002471 if (!TWFunc::Path_Exists(full_filename)) {
2472 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002473 return false;
2474 }
2475 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002476
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002477 PartitionSettings part_settings;
2478 part_settings.Backup_Folder = path;
2479 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2480 ProgressTracking progress(total_bytes);
2481 part_settings.progress = &progress;
2482 part_settings.adbbackup = false;
2483 part_settings.PM_Method = PM_RESTORE;
2484
Ethan Yonker74db1572015-10-28 12:44:49 -05002485 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002486 DataManager::GetValue("tw_flash_partition", Flash_List);
2487 if (!Flash_List.empty()) {
2488 end_pos = Flash_List.find(";", start_pos);
2489 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2490 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2491 flash_part = Find_Partition_By_Path(flash_path);
2492 if (flash_part != NULL) {
2493 partition_count++;
2494 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002495 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002496 return false;
2497 }
2498 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002499 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002500 return false;
2501 }
2502 start_pos = end_pos + 1;
2503 end_pos = Flash_List.find(";", start_pos);
2504 }
2505 }
2506
2507 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002508 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002509 return false;
2510 }
2511
2512 DataManager::SetProgress(0.0);
2513 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002514 flash_part->Backup_FileName = filename;
2515 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002516 return false;
2517 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002518 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002519 return false;
2520 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002521 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002522 return true;
2523}
Ethan Yonker74db1572015-10-28 12:44:49 -05002524
2525void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2526 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2527 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002528 if (part->Is_Adopted_Storage) {
2529 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2530 part->Backup_Display_Name = part->Display_Name;
2531 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2532 } else {
2533 part->Display_Name = gui_lookup(resource_name, default_value);
2534 part->Backup_Display_Name = part->Display_Name;
2535 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002536 }
2537}
2538
2539void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2540 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2541 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002542 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002543 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002544 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002545 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2546 } else {
2547 part->Display_Name = gui_lookup(resource_name, default_value);
2548 part->Backup_Display_Name = part->Display_Name;
2549 if (part->Is_Storage)
2550 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2551 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002552 }
2553}
2554
Ethan Yonker01f4e032017-02-03 15:30:52 -06002555void 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) {
2556 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2557 if (part) {
2558 if (part->Is_Adopted_Storage) {
2559 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2560 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2561 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2562 } else {
2563 part->Display_Name = gui_lookup(resource_name, default_value);
2564 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2565 if (part->Is_Storage)
2566 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2567 }
2568 }
2569}
2570
Ethan Yonker74db1572015-10-28 12:44:49 -05002571void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002572 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002573 Translate_Partition("/system", "system", "System");
2574 Translate_Partition("/system_image", "system_image", "System Image");
2575 Translate_Partition("/vendor", "vendor", "Vendor");
2576 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2577 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002578 Translate_Partition("/boot", "boot", "Boot");
2579 Translate_Partition("/recovery", "recovery", "Recovery");
2580 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002581 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002582 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2583 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2584 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2585 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002586 } else {
2587 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002588 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002589 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2590 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002591 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2592 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2593
2594 // Android secure is a special case
2595 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2596 if (part)
2597 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2598
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002599 std::vector<TWPartition*>::iterator sysfs;
2600 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2601 if (!(*sysfs)->Sysfs_Entry.empty()) {
2602 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2603 }
2604 }
2605
Ethan Yonker74db1572015-10-28 12:44:49 -05002606 // This updates the text on all of the storage selection buttons in the GUI
2607 DataManager::SetBackupFolder();
2608}
Ethan Yonker66a19492015-12-10 10:19:45 -06002609
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002610bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002611#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002612 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002613 if (!Mount_By_Path("/data", false)) {
2614 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002615 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002616 }
2617 LOGINFO("Decrypt adopted storage starting\n");
2618 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2619 xml_document<> *doc = NULL;
2620 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002621 string Primary_Storage_UUID = "";
2622 if (xmlFile != NULL) {
2623 LOGINFO("successfully loaded storage.xml\n");
2624 doc = new xml_document<>();
2625 doc->parse<0>(xmlFile);
2626 volumes = doc->first_node("volumes");
2627 if (volumes) {
2628 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2629 if (psuuid) {
2630 Primary_Storage_UUID = psuuid->value();
2631 }
2632 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002633 } else {
2634 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2635 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002636 }
2637 std::vector<TWPartition*>::iterator adopt;
2638 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2639 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2640 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002641 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002642 if (volumes) {
2643 xml_node<>* volume = volumes->first_node("volume");
2644 while (volume) {
2645 xml_attribute<>* guid = volume->first_attribute("partGuid");
2646 if (guid) {
2647 string GUID = (*adopt)->Adopted_GUID.c_str();
2648 GUID.insert(8, "-");
2649 GUID.insert(13, "-");
2650 GUID.insert(18, "-");
2651 GUID.insert(23, "-");
2652
2653 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2654 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002655 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002656 (*adopt)->Storage_Name = attr->value();
2657 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2658 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2659 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2660 }
2661 attr = volume->first_attribute("fsUuid");
2662 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2663 TWPartition* Dat = Find_Partition_By_Path("/data");
2664 if (Dat) {
2665 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2666 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2667 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2668 Dat->Symlink_Mount_Point = "";
2669 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2670 Dat->UnMount(false);
2671 Dat->Mount(false);
2672 (*adopt)->UnMount(false);
2673 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002674 }
2675 }
2676 break;
2677 }
2678 }
2679 volume = volume->next_sibling("volume");
2680 }
2681 }
nkk71ffb02bd2017-06-04 23:12:16 +03002682 Update_System_Details();
2683 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002684 }
2685 }
2686 }
2687 if (xmlFile) {
2688 doc->clear();
2689 delete doc;
2690 free(xmlFile);
2691 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002692 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002693#else
2694 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002695 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002696#endif
2697}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002698
2699void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2700 std::vector<TWPartition*>::iterator iter;
2701 string Local_Path = TWFunc::Get_Root_Path(Path);
2702
2703 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2704 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2705 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2706 Partitions.erase(iter);
2707 return;
2708 }
2709 }
2710}
Ethan Yonker1b190162016-12-05 15:25:19 -06002711
2712void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2713 if (Slot != "A" && Slot != "B") {
2714 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2715 return;
2716 }
2717 if (Active_Slot_Display == Slot)
2718 return;
2719 LOGINFO("Setting active slot %s\n", Slot.c_str());
2720#ifdef AB_OTA_UPDATER
2721 if (!Active_Slot_Display.empty()) {
2722 const hw_module_t *hw_module;
2723 boot_control_module_t *module;
2724 int ret;
2725 ret = hw_get_module("bootctrl", &hw_module);
2726 if (ret != 0) {
2727 LOGERR("Error getting bootctrl module.\n");
2728 } else {
2729 module = (boot_control_module_t*) hw_module;
2730 module->init(module);
2731 int slot_number = 0;
2732 if (Slot == "B")
2733 slot_number = 1;
2734 if (module->setActiveBootSlot(module, slot_number))
2735 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2736 }
2737 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
2738 }
2739#else
2740 LOGERR("Boot slot feature not present\n");
2741#endif
2742 Active_Slot_Display = Slot;
2743 if (Fstab_Processed())
2744 Update_System_Details();
2745}
2746string TWPartitionManager::Get_Active_Slot_Suffix() {
2747 if (Active_Slot_Display == "A")
2748 return "_a";
2749 return "_b";
2750}
2751string TWPartitionManager::Get_Active_Slot_Display() {
2752 return Active_Slot_Display;
2753}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002754
Captain Throwback9d6feb52018-07-27 10:05:24 -04002755string TWPartitionManager::Get_Android_Root_Path() {
2756 std::string Android_Root = getenv("ANDROID_ROOT");
2757 if (Android_Root == "")
2758 Android_Root = "/system";
2759 return Android_Root;
2760}
2761
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002762void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
2763 std::vector<TWPartition*>::iterator iter;
2764
2765 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
2766 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
2767 TWPartition *part = *iter;
2768 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
2769 (*iter)->UnMount(false);
2770 rmdir((*iter)->Mount_Point.c_str());
2771 iter = Partitions.erase(iter);
2772 delete part;
2773 } else {
2774 iter++;
2775 }
2776 }
2777}
2778
2779void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
2780 std::vector<TWPartition*>::iterator iter;
2781
2782 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2783 if (!(*iter)->Sysfs_Entry.empty()) {
2784 string device;
2785 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
2786 if (wildcard != string::npos) {
2787 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
2788 } else {
2789 device = (*iter)->Sysfs_Entry;
2790 }
2791 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
2792 // Found a match
2793 if (uevent_data.action == "add") {
2794 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
2795 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
2796 (*iter)->Is_Present = true;
2797 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
2798 if (!Decrypt_Adopted()) {
2799 LOGINFO("No adopted storage so finding actual block device\n");
2800 (*iter)->Find_Actual_Block_Device();
2801 }
2802 return;
2803 } else if (uevent_data.action == "remove") {
2804 (*iter)->Is_Present = false;
2805 (*iter)->Primary_Block_Device = "";
2806 (*iter)->Actual_Block_Device = "";
2807 Remove_Uevent_Devices((*iter)->Mount_Point);
2808 return;
2809 }
2810 }
2811 }
2812 }
2813 LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str());
2814}
2815
2816void TWPartitionManager::setup_uevent() {
2817 struct sockaddr_nl nls;
2818
2819 if (uevent_pfd.fd >= 0) {
2820 LOGINFO("uevent already set up\n");
2821 return;
2822 }
2823
2824 // Open hotplug event netlink socket
2825 memset(&nls,0,sizeof(struct sockaddr_nl));
2826 nls.nl_family = AF_NETLINK;
2827 nls.nl_pid = getpid();
2828 nls.nl_groups = -1;
2829 uevent_pfd.events = POLLIN;
2830 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
2831 if (uevent_pfd.fd==-1) {
2832 LOGERR("uevent not root\n");
2833 return;
2834 }
2835
2836 // Listen to netlink socket
2837 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
2838 LOGERR("Bind failed\n");
2839 return;
2840 }
2841 set_select_fd();
2842 Coldboot();
2843}
2844
2845Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
2846 Uevent_Block_Data ret;
2847 ret.subsystem = "";
2848 char *ptr = buf;
2849 const char *end = buf + len;
2850
2851 buf[len - 1] = '\0';
2852 while (ptr < end) {
2853 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
2854 ptr += strlen("ACTION=");
2855 ret.action = ptr;
2856 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
2857 ptr += strlen("SUBSYSTEM=");
2858 ret.subsystem = ptr;
2859 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
2860 ptr += strlen("DEVTYPE=");
2861 ret.type = ptr;
2862 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
2863 ptr += strlen("DEVPATH=");
2864 ret.sysfs_path += ptr;
2865 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
2866 ptr += strlen("DEVNAME=");
2867 ret.block_device += ptr;
2868 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
2869 ptr += strlen("MAJOR=");
2870 ret.major = atoi(ptr);
2871 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
2872 ptr += strlen("MINOR=");
2873 ret.minor = atoi(ptr);
2874 }
2875 ptr += strlen(ptr) + 1;
2876 }
2877 return ret;
2878}
2879
2880void TWPartitionManager::read_uevent() {
2881 char buf[1024];
2882
2883 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
2884 if (len == -1) {
2885 LOGERR("recv error on uevent\n");
2886 return;
2887 }
2888 /*int i = 0; // Print all uevent output for test /debug
2889 while (i<len) {
2890 printf("%s\n", buf+i);
2891 i += strlen(buf+i)+1;
2892 }*/
2893 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
2894 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
2895 PartitionManager.Handle_Uevent(uevent_data);
2896 }
2897}
2898
2899void TWPartitionManager::close_uevent() {
2900 if (uevent_pfd.fd > 0)
2901 close(uevent_pfd.fd);
2902 uevent_pfd.fd = -1;
2903}
2904
2905void TWPartitionManager::Add_Partition(TWPartition* Part) {
2906 Partitions.push_back(Part);
2907}
2908
2909void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
2910 string Real_Path = Path;
2911 char real_path[PATH_MAX];
2912 if (realpath(Path.c_str(), &real_path[0])) {
2913 string Real_Path = real_path;
2914 std::vector<string>::iterator iter;
2915 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
2916 if (Real_Path.find((*iter)) != string::npos) {
2917 string Write_Path = Real_Path + "/uevent";
2918 if (TWFunc::Path_Exists(Write_Path)) {
2919 const char* write_val = "add\n";
2920 TWFunc::write_to_file(Write_Path, write_val);
2921 break;
2922 }
2923 }
2924 }
2925 }
2926
2927 DIR* d = opendir(Path.c_str());
2928 if (d != NULL) {
2929 struct dirent* de;
2930 while ((de = readdir(d)) != NULL) {
2931 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
2932 continue;
2933 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
2934 continue;
2935
2936 string item = Path + "/";
2937 item.append(de->d_name);
2938 Coldboot_Scan(sysfs_entries, item, depth + 1);
2939 }
2940 closedir(d);
2941 }
2942}
2943
2944void TWPartitionManager::Coldboot() {
2945 std::vector<TWPartition*>::iterator iter;
2946 std::vector<string> sysfs_entries;
2947
2948 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2949 if (!(*iter)->Sysfs_Entry.empty()) {
2950 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
2951 if (wildcard_pos == string::npos)
2952 wildcard_pos = (*iter)->Sysfs_Entry.size();
2953 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
2954 }
2955 }
2956
2957 if (sysfs_entries.size() > 0)
2958 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
2959}