blob: 0486c7a66d2bd9b3360c6b7053233738d0065271 [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"
74 #endif
nkk7171c6c502017-01-05 23:55:05 +020075 #ifdef TW_CRYPTO_USE_SYSTEM_VOLD
76 #include "crypto/vold_decrypt/vold_decrypt.h"
77 #endif
Dees_Troy5bf43922012-09-07 16:07:55 -040078#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040079
Ethan Yonker1b190162016-12-05 15:25:19 -060080#ifdef AB_OTA_UPDATER
81#include <hardware/hardware.h>
82#include <hardware/boot_control.h>
83#endif
84
Ethan Yonker6277c792014-09-15 14:54:30 -050085extern bool datamedia;
86
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050087TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040088 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -060089 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060090 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -050091 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -060092#ifdef AB_OTA_UPDATER
93 char slot_suffix[PROPERTY_VALUE_MAX];
94 property_get("ro.boot.slot_suffix", slot_suffix, "_a");
95 Active_Slot_Display = "";
96 if (strcmp(slot_suffix, "_a") == 0)
97 Set_Active_Slot("A");
98 else
99 Set_Active_Slot("B");
100#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500101}
102
Dees_Troy51a0e822012-09-05 15:24:24 -0400103int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400104 FILE *fstabFile;
105 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000106 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500107 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600108 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 -0600109 std::map<string, Flags_Map> twrp_flags;
110
111 fstabFile = fopen("/etc/twrp.flags", "rt");
112 if (fstabFile != NULL) {
113 LOGINFO("reading /etc/twrp.flags\n");
114 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
115 if (fstab_line[0] != '/')
116 continue;
117
118 size_t line_size = strlen(fstab_line);
119 if (fstab_line[line_size - 1] != '\n')
120 fstab_line[line_size] = '\n';
121 Flags_Map line_flags;
122 line_flags.Primary_Block_Device = "";
123 line_flags.Alternate_Block_Device = "";
124 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
125 if (!line_flags.fstab_line) {
126 LOGERR("malloc error on line_flags.fstab_line\n");
127 return false;
128 }
129 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
130 bool found_separator = false;
131 char *fs_loc = NULL;
132 char *block_loc = NULL;
133 char *flags_loc = NULL;
134 size_t index, item_index = 0;
135 for (index = 0; index < line_size; index++) {
136 if (fstab_line[index] <= 32) {
137 fstab_line[index] = '\0';
138 found_separator = true;
139 } else if (found_separator) {
140 if (item_index == 0) {
141 fs_loc = fstab_line + index;
142 } else if (item_index == 1) {
143 block_loc = fstab_line + index;
144 } else if (item_index > 1) {
145 char *ptr = fstab_line + index;
146 if (*ptr == '/') {
147 line_flags.Alternate_Block_Device = ptr;
148 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
149 flags_loc = ptr;
150 // Once we find the flags=, we're done scanning the line
151 break;
152 }
153 }
154 found_separator = false;
155 item_index++;
156 }
157 }
158 if (block_loc)
159 line_flags.Primary_Block_Device = block_loc;
160 if (fs_loc)
161 line_flags.File_System = fs_loc;
162 if (flags_loc)
163 line_flags.Flags = flags_loc;
164 string Mount_Point = fstab_line;
165 twrp_flags[Mount_Point] = line_flags;
166 memset(fstab_line, 0, sizeof(fstab_line));
167 }
168 fclose(fstabFile);
169 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400170
171 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
172 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000173 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400174 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600175 } else
176 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400177
178 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
179 if (fstab_line[0] != '/')
180 continue;
181
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600182 if (strstr(fstab_line, "swap"))
183 continue; // Skip swap in recovery
184
185 size_t line_size = strlen(fstab_line);
186 if (fstab_line[line_size - 1] != '\n')
187 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400188
Matt Mower2b2dd152016-04-26 11:24:08 -0500189 TWPartition* partition = new TWPartition();
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600190 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500191 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500192 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400193 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500194
195 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400196 }
197 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500198
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600199 if (twrp_flags.size() > 0) {
200 LOGINFO("Processing remaining twrp.flags\n");
201 // Add any items from twrp.flags that did not exist in the recovery.fstab
202 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
203 if (Find_Partition_By_Path(mapit->first) == NULL) {
204 TWPartition* partition = new TWPartition();
205 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
206 Partitions.push_back(partition);
207 else
208 delete partition;
209 }
210 if (mapit->second.fstab_line)
211 free(mapit->second.fstab_line);
212 mapit->second.fstab_line = NULL;
213 }
214 }
215 LOGINFO("Done processing fstab files\n");
216
Matt Mower72c87ce2016-04-26 14:34:56 -0500217 std::vector<TWPartition*>::iterator iter;
218 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
219 (*iter)->Partition_Post_Processing(Display_Error);
220
221 if ((*iter)->Is_Storage) {
222 ++storageid;
223 (*iter)->MTP_Storage_ID = storageid;
224 }
225
226 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
227 settings_partition = (*iter);
228 else
229 (*iter)->Is_Settings_Storage = false;
230
231 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
232 andsec_partition = (*iter);
233 else
234 (*iter)->Has_Android_Secure = false;
235 }
236
Ethan Yonker6277c792014-09-15 14:54:30 -0500237 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) {
238 // Attempt to automatically identify /data/media emulated storage devices
239 TWPartition* Dat = Find_Partition_By_Path("/data");
240 if (Dat) {
241 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
242 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200243 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500244 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600245 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
246 ++storageid;
247 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500248 }
249 }
Dees Troy02a64532014-03-19 15:23:32 +0000250 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500251 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
252 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000253 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500254 break;
255 }
256 }
Dees Troy02a64532014-03-19 15:23:32 +0000257 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000258 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500259 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400260 if (!Write_Fstab()) {
261 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000262 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400263 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000264 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400265 }
Matt Mowered71fa32014-04-16 13:21:47 -0500266
Matt Mowerbf4efa32014-04-14 23:25:26 -0500267 if (andsec_partition) {
268 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500269 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500270 Setup_Android_Secure_Location(settings_partition);
271 }
Matt Mowered71fa32014-04-16 13:21:47 -0500272 if (settings_partition) {
273 Setup_Settings_Storage_Partition(settings_partition);
274 }
Ethan Yonker253368a2014-11-25 15:00:52 -0600275#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600276 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
277 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600278 if (Decrypt_Data->Is_FBE) {
279 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
280 if (Decrypt_Device("!") == 0) {
281 gui_msg("decrypt_success=Successfully decrypted with default password.");
282 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
283 } else {
284 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
285 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600286 }
287 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600288 int password_type = cryptfs_get_password_type();
289 if (password_type == CRYPT_TYPE_DEFAULT) {
290 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
291 if (Decrypt_Device("default_password") == 0) {
292 gui_msg("decrypt_success=Successfully decrypted with default password.");
293 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
294 } else {
295 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
296 }
297 } else {
298 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
299 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600300 }
301 }
Ethan Yonker66a19492015-12-10 10:19:45 -0600302 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) && Decrypt_Data->Mount(false)) {
303 Decrypt_Adopted();
304 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600305#endif
Dees_Troy51127312012-09-08 13:08:49 -0400306 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400307 UnMount_Main_Partitions();
Ethan Yonker1b190162016-12-05 15:25:19 -0600308#ifdef AB_OTA_UPDATER
309 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
310#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600311 setup_uevent();
Dees_Troy5bf43922012-09-07 16:07:55 -0400312 return true;
313}
314
315int TWPartitionManager::Write_Fstab(void) {
316 FILE *fp;
317 std::vector<TWPartition*>::iterator iter;
318 string Line;
319
320 fp = fopen("/etc/fstab", "w");
321 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000322 LOGINFO("Can not open /etc/fstab.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400323 return false;
324 }
Dees_Troy63c8df72012-09-10 14:02:05 -0400325 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy51127312012-09-08 13:08:49 -0400326 if ((*iter)->Can_Be_Mounted) {
dianlujitao7d304c72016-01-02 12:15:50 +0800327 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System + " rw 0 0\n";
Dees_Troy5bf43922012-09-07 16:07:55 -0400328 fputs(Line.c_str(), fp);
Dees_Troy91862e62013-04-04 23:48:21 +0000329 }
330 // Handle subpartition tracking
331 if ((*iter)->Is_SubPartition) {
332 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
333 if (ParentPartition)
334 ParentPartition->Has_SubPartition = true;
335 else
336 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 -0400337 }
338 }
339 fclose(fp);
340 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400341}
342
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500343void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500344 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
345 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
346 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
347}
348
Matt Mowerbf4efa32014-04-14 23:25:26 -0500349void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
350 if (Part->Has_Android_Secure)
351 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500352 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500353 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500354}
355
Dees_Troy8170a922012-09-18 15:40:25 -0400356void TWPartitionManager::Output_Partition_Logging(void) {
357 std::vector<TWPartition*>::iterator iter;
358
359 printf("\n\nPartition Logs:\n");
360 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
361 Output_Partition((*iter));
362}
363
364void TWPartitionManager::Output_Partition(TWPartition* Part) {
365 unsigned long long mb = 1048576;
366
Gary Peck004d48b2012-11-21 16:28:18 -0800367 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 -0400368 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800369 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 -0400370 }
Gary Peck004d48b2012-11-21 16:28:18 -0800371 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500372 if (Part->Can_Be_Mounted)
373 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800374 if (Part->Can_Be_Wiped)
375 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700376 if (Part->Use_Rm_Rf)
377 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500378 if (Part->Can_Be_Backed_Up)
379 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800380 if (Part->Wipe_During_Factory_Reset)
381 printf("Wipe_During_Factory_Reset ");
382 if (Part->Wipe_Available_in_GUI)
383 printf("Wipe_Available_in_GUI ");
384 if (Part->Is_SubPartition)
385 printf("Is_SubPartition ");
386 if (Part->Has_SubPartition)
387 printf("Has_SubPartition ");
388 if (Part->Removable)
389 printf("Removable ");
390 if (Part->Is_Present)
391 printf("IsPresent ");
392 if (Part->Can_Be_Encrypted)
393 printf("Can_Be_Encrypted ");
394 if (Part->Is_Encrypted)
395 printf("Is_Encrypted ");
396 if (Part->Is_Decrypted)
397 printf("Is_Decrypted ");
398 if (Part->Has_Data_Media)
399 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000400 if (Part->Can_Encrypt_Backup)
401 printf("Can_Encrypt_Backup ");
402 if (Part->Use_Userdata_Encryption)
403 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800404 if (Part->Has_Android_Secure)
405 printf("Has_Android_Secure ");
406 if (Part->Is_Storage)
407 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500408 if (Part->Is_Settings_Storage)
409 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000410 if (Part->Ignore_Blkid)
411 printf("Ignore_Blkid ");
Dees_Troy16c2b312013-01-15 16:51:18 +0000412 if (Part->Retain_Layout_Version)
413 printf("Retain_Layout_Version ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600414 if (Part->Mount_To_Decrypt)
415 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600416 if (Part->Can_Flash_Img)
417 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600418 if (Part->Is_Adopted_Storage)
419 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600420 if (Part->SlotSelect)
421 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600422 if (Part->Mount_Read_Only)
423 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800424 printf("\n");
425 if (!Part->SubPartition_Of.empty())
426 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
427 if (!Part->Symlink_Path.empty())
428 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
429 if (!Part->Symlink_Mount_Point.empty())
430 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
431 if (!Part->Primary_Block_Device.empty())
432 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
433 if (!Part->Alternate_Block_Device.empty())
434 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
435 if (!Part->Decrypted_Block_Device.empty())
436 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
Ethan Yonker253368a2014-11-25 15:00:52 -0600437 if (!Part->Crypto_Key_Location.empty() && Part->Crypto_Key_Location != "footer")
438 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800439 if (Part->Length != 0)
440 printf(" Length: %i\n", Part->Length);
441 if (!Part->Display_Name.empty())
442 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500443 if (!Part->Storage_Name.empty())
444 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800445 if (!Part->Backup_Path.empty())
446 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
447 if (!Part->Backup_Name.empty())
448 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500449 if (!Part->Backup_Display_Name.empty())
450 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800451 if (!Part->Backup_FileName.empty())
452 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
453 if (!Part->Storage_Path.empty())
454 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
455 if (!Part->Current_File_System.empty())
456 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
457 if (!Part->Fstab_File_System.empty())
458 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
459 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500460 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400461 if (!Part->MTD_Name.empty())
462 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600463 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800464 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600465 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600466 if (Part->MTP_Storage_ID)
467 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker6277c792014-09-15 14:54:30 -0500468 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400469}
470
Dees_Troy51a0e822012-09-05 15:24:24 -0400471int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400472 std::vector<TWPartition*>::iterator iter;
473 int ret = false;
474 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400475 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400476
Dees_Troyd93bda52013-07-03 19:55:19 +0000477 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400478 return true;
479
Dees_Troy5bf43922012-09-07 16:07:55 -0400480 // Iterate through all partitions
481 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400482 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400483 ret = (*iter)->Mount(Display_Error);
484 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400485 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400486 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400487 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400488 }
489 if (found) {
490 return ret;
491 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500492 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 -0400493 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000494 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400495 }
496 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400497}
498
Dees_Troy51a0e822012-09-05 15:24:24 -0400499int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -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_Troy51127312012-09-08 13:08:49 -0400504
505 // Iterate through all partitions
506 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400507 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400508 ret = (*iter)->UnMount(Display_Error);
509 found = true;
510 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
511 (*iter)->UnMount(Display_Error);
512 }
513 }
514 if (found) {
515 return ret;
516 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500517 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 -0400518 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000519 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400520 }
521 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400522}
523
Dees_Troy51a0e822012-09-05 15:24:24 -0400524int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400525 TWPartition* Part = Find_Partition_By_Path(Path);
526
527 if (Part)
528 return Part->Is_Mounted();
529 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000530 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400531 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400532}
533
Dees_Troy5bf43922012-09-07 16:07:55 -0400534int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400535 string current_storage_path = DataManager::GetCurrentStoragePath();
536
537 if (Mount_By_Path(current_storage_path, Display_Error)) {
538 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
539 if (FreeStorage)
540 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
541 return true;
542 }
543 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400544}
545
Dees_Troy5bf43922012-09-07 16:07:55 -0400546int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
547 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
548}
549
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600550TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400551 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400552 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400553
554 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400555 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400556 return (*iter);
557 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400558 return NULL;
559}
560
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600561TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
562 std::vector<TWPartition*>::iterator iter;
563
564 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
565 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
566 return (*iter);
567 }
568 return NULL;
569}
570
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400571int TWPartitionManager::Check_Backup_Name(bool Display_Error) {
572 // Check the backup name to ensure that it is the correct size and contains only valid characters
573 // and that a backup with that name doesn't already exist
574 char backup_name[MAX_BACKUP_NAME_LEN];
575 char backup_loc[255], tw_image_dir[255];
576 int copy_size;
577 int index, cur_char;
578 string Backup_Name, Backup_Loc;
579
580 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
581 copy_size = Backup_Name.size();
582 // Check size
583 if (copy_size > MAX_BACKUP_NAME_LEN) {
584 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500585 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400586 return -2;
587 }
588
589 // Check each character
590 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500591 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400592 return 0; // A "0" (zero) means to use the current timestamp for the backup name
593 for (index=0; index<copy_size; index++) {
594 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500595 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 -0400596 // These are valid characters
597 // Numbers
598 // Upper case letters
599 // Lower case letters
600 // Space
601 // and -_.{}[]
602 } else {
603 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600604 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 -0400605 return -3;
606 }
607 }
608
609 // Check to make sure that a backup with this name doesn't already exist
610 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
611 strcpy(backup_loc, Backup_Loc.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500612 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500613 if (TWFunc::Path_Exists(tw_image_dir)) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400614 if (Display_Error)
Matt Mower3c366972015-12-25 19:28:31 -0600615 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500616
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400617 return -4;
618 }
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400619 // No problems found, return 0
620 return 0;
621}
622
bigbiffce8f83c2015-12-12 18:30:21 -0500623bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400624 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600625 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500626 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400627
bigbiffce8f83c2015-12-12 18:30:21 -0500628 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400629 return true;
630
Dees_Troy093b7642012-09-21 15:59:38 -0400631 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400632
Tom Hite5a926722014-09-15 01:31:03 +0000633 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400634 time(&start);
635
bigbiffce8f83c2015-12-12 18:30:21 -0500636 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500637 sync();
638 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400639 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500640 if (!part_settings->adbbackup && part_settings->generate_digest) {
641 if (!twrpDigestDriver::Make_Digest(Full_Filename))
642 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400643 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400644
bigbiffce8f83c2015-12-12 18:30:21 -0500645 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400646 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400647 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400648
649 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400650 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500651 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500652 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500653 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000654 }
Dees_Troy2727b992013-08-14 20:09:30 +0000655 sync();
656 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400657 if (!part_settings->adbbackup && part_settings->generate_digest) {
658 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500659 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500660 }
Tom Hite5a926722014-09-15 01:31:03 +0000661 }
Dees_Troy8170a922012-09-18 15:40:25 -0400662 }
663 }
664 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400665
Dees_Troy43d8b002012-09-17 16:00:01 -0400666 time(&stop);
that203bcc92015-05-09 17:27:33 +0200667 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000668 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400669
bigbiffce8f83c2015-12-12 18:30:21 -0500670 if (part_settings->Part->Backup_Method == BM_FILES) {
671 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400672 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500673 part_settings->img_time += backup_time;
674
Dees_Troy43d8b002012-09-17 16:00:01 -0400675 }
Tom Hite5a926722014-09-15 01:31:03 +0000676
Matt Mower02899552016-12-30 18:13:51 -0600677 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500678 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400679 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500680backup_error:
681 Clean_Backup_Folder(part_settings->Backup_Folder);
682 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
683 tw_set_default_metadata(backup_log.c_str());
684 TWFunc::SetPerformanceMode(false);
685 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500686}
687
bigbiffbf1d6722015-02-14 16:25:59 -0500688void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
689 DIR *d = opendir(Backup_Folder.c_str());
690 struct dirent *p;
691 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400692 vector<string> ext;
693
694 //extensions we should delete when cleaning
695 ext.push_back("win");
696 ext.push_back("md5");
697 ext.push_back("sha2");
698 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500699
Ethan Yonker74db1572015-10-28 12:44:49 -0500700 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500701
702 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500703 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500704 return;
705 }
706
Matt Mower2b18a532015-02-20 16:58:05 -0600707 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500708 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
709 continue;
710
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500711 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500712
713 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400714 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
715 if (path.substr(dot) == *i) {
716 r = unlink(path.c_str());
717 if (r != 0)
718 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500719 }
720 }
721 }
722 closedir(d);
723}
724
Ethan Yonker472f5062016-02-25 13:47:30 -0600725int TWPartitionManager::Check_Backup_Cancel() {
726 return stop_backup.get_value();
727}
728
bigbiff7abc5fe2015-01-17 16:53:12 -0500729int TWPartitionManager::Cancel_Backup() {
730 string Backup_Folder, Backup_Name, Full_Backup_Path;
731
732 stop_backup.set_value(1);
733
734 if (tar_fork_pid != 0) {
735 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
736 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500737 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500738 LOGINFO("Killing pid: %d\n", tar_fork_pid);
739 kill(tar_fork_pid, SIGUSR2);
740 while (kill(tar_fork_pid, 0) == 0) {
741 usleep(1000);
742 }
743 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
744 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
745 TWFunc::removeDir(Full_Backup_Path, false);
746 tar_fork_pid = 0;
747 }
748
749 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400750}
751
bigbiffce8f83c2015-12-12 18:30:21 -0500752int TWPartitionManager::Run_Backup(bool adbbackup) {
753 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400754 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500755 int gui_adb_backup;
756 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600757 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400758 TWPartition* storage = NULL;
Dees_Troy8170a922012-09-18 15:40:25 -0400759 std::vector<TWPartition*>::iterator subpart;
Dees_Troy43d8b002012-09-17 16:00:01 -0400760 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600761 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500762 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500763 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400764 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500765 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400766
bigbiffce8f83c2015-12-12 18:30:21 -0500767 part_settings.img_bytes_remaining = 0;
768 part_settings.file_bytes_remaining = 0;
769 part_settings.img_time = 0;
770 part_settings.file_time = 0;
771 part_settings.img_bytes = 0;
772 part_settings.file_bytes = 0;
773 part_settings.PM_Method = PM_BACKUP;
774
bigbiffce8f83c2015-12-12 18:30:21 -0500775 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400776 time(&total_start);
777
778 Update_System_Details();
779
780 if (!Mount_Current_Storage(true))
781 return false;
782
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400783 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
784 if (skip_digest == 0)
785 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400786 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400787 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400788
bigbiffce8f83c2015-12-12 18:30:21 -0500789 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500790 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
791 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
792 Backup_Name = TWFunc::Get_Current_Date();
793 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000794 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500795 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400796 }
bigbiffce8f83c2015-12-12 18:30:21 -0500797
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500798 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500799 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500800
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500801 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400802
Dees_Troy2673cec2013-04-02 20:22:16 +0000803 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500804 DataManager::GetValue("tw_backup_list", Backup_List);
805 if (!Backup_List.empty()) {
806 end_pos = Backup_List.find(";", start_pos);
807 while (end_pos != string::npos && start_pos < Backup_List.size()) {
808 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500809 part_settings.Part = Find_Partition_By_Path(backup_path);
810 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500811 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500812 if (part_settings.Part->Backup_Method == BM_FILES)
813 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500814 else
bigbiffce8f83c2015-12-12 18:30:21 -0500815 part_settings.img_bytes += part_settings.Part->Backup_Size;
816 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500817 std::vector<TWPartition*>::iterator subpart;
818
819 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500820 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 -0500821 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500822 if ((*subpart)->Backup_Method == BM_FILES)
823 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500824 else
bigbiffce8f83c2015-12-12 18:30:21 -0500825 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500826 }
827 }
Dees_Troy8170a922012-09-18 15:40:25 -0400828 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500829 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500830 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 -0400831 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500832 start_pos = end_pos + 1;
833 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400834 }
835 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400836
837 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500838 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400839 return false;
840 }
bigbiffce8f83c2015-12-12 18:30:21 -0500841 if (adbbackup) {
842 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
843 return false;
844 }
845 }
846 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600847 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500848 part_settings.progress = &progress;
849
Ethan Yonker74db1572015-10-28 12:44:49 -0500850 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
851 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400852 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
853 if (storage != NULL) {
854 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500855 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400856 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500857 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400858 return false;
859 }
bigbiffbf1d6722015-02-14 16:25:59 -0500860
Matt Mowerbfccfb82016-04-25 23:22:31 -0500861 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500862
863 if (adbbackup)
864 disable_free_space_check = true;
865
bigbiffbf1d6722015-02-14 16:25:59 -0500866 if (!disable_free_space_check) {
867 if (free_space - (32 * 1024 * 1024) < total_bytes) {
868 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -0500869 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -0500870 return false;
871 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400872 }
bigbiffce8f83c2015-12-12 18:30:21 -0500873 part_settings.img_bytes_remaining = part_settings.img_bytes;
874 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -0400875
Ethan Yonker74db1572015-10-28 12:44:49 -0500876 gui_msg("backup_started=[BACKUP STARTED]");
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500877 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
878 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500879 gui_err("fail_backup_folder=Failed to make backup folder.");
Dees_Troyd4b22b02013-01-18 17:17:58 +0000880 return false;
881 }
882
Dees_Troy2673cec2013-04-02 20:22:16 +0000883 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -0400884
Dees_Troya13d74f2013-03-24 08:54:55 -0500885 start_pos = 0;
886 end_pos = Backup_List.find(";", start_pos);
887 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -0500888 if (stop_backup.get_value() != 0)
889 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -0500890 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -0500891 part_settings.Part = Find_Partition_By_Path(backup_path);
892 if (part_settings.Part != NULL) {
893 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -0500894 return false;
895 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500896 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 -0500897 }
898 start_pos = end_pos + 1;
899 end_pos = Backup_List.find(";", start_pos);
900 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400901
902 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -0500903 if (part_settings.img_time == 0)
904 part_settings.img_time = 1;
905 if (part_settings.file_time == 0)
906 part_settings.file_time = 1;
907 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
908 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400909
bigbiffce8f83c2015-12-12 18:30:21 -0500910 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600911 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 -0500912 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -0600913 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 -0400914
915 time(&total_stop);
916 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -0500917
918 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600919 if (!adbbackup) {
920 TWExclude twe;
921 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
922 } else
bigbiffce8f83c2015-12-12 18:30:21 -0500923 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500924 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -0400925
bigbiffce8f83c2015-12-12 18:30:21 -0500926 int prev_img_bps = 0, use_compression = 0;
927 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -0600928 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400929 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500930 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400931
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500932 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400933 if (use_compression)
934 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500935 else
Dees_Troy093b7642012-09-21 15:59:38 -0400936 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
937 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500938 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -0400939
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500940 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -0400941 if (use_compression)
942 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
943 else
944 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
945
Ethan Yonker74db1572015-10-28 12:44:49 -0500946 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -0400947 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -0400948 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -0600949 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500950 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000951 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600952 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500953
954 if (part_settings.adbbackup) {
955 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
956 return false;
957 }
958 }
959 part_settings.adbbackup = false;
960 DataManager::SetValue("tw_enable_adb_backup", 0);
961
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000962 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400963}
964
bigbiffce8f83c2015-12-12 18:30:21 -0500965bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -0400966 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -0500967
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -0400968 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400969 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
970 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -0400971 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
972 }
973
Tom Hite5a926722014-09-15 01:31:03 +0000974 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -0500975
Dees_Troy4a2a1262012-09-18 09:33:47 -0400976 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -0600977
bigbiffce8f83c2015-12-12 18:30:21 -0500978 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +0000979 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -0400980 return false;
Tom Hite5a926722014-09-15 01:31:03 +0000981 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400982 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -0400983 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400984 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400985
986 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400987 part_settings->Part = *subpart;
988 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
989 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400990 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -0500991 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +0000992 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -0400993 return false;
Tom Hite5a926722014-09-15 01:31:03 +0000994 }
Dees_Troy8170a922012-09-18 15:40:25 -0400995 }
996 }
997 }
Dees_Troy4a2a1262012-09-18 09:33:47 -0400998 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +0000999 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001000 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1001
Dees_Troy4a2a1262012-09-18 09:33:47 -04001002 return true;
1003}
1004
Ethan Yonker472f5062016-02-25 13:47:30 -06001005int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001006 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001007 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001008
Dees_Troy4a2a1262012-09-18 09:33:47 -04001009 time_t rStart, rStop;
1010 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001011 string Restore_List, restore_path;
1012 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001013
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001014 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001015 part_settings.Part = NULL;
1016 part_settings.partition_count = 0;
1017 part_settings.total_restore_size = 0;
1018 part_settings.adbbackup = false;
1019 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001020
Ethan Yonker74db1572015-10-28 12:44:49 -05001021 gui_msg("restore_started=[RESTORE STARTED]");
1022 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001023
Dees_Troy4a2a1262012-09-18 09:33:47 -04001024 if (!Mount_Current_Storage(true))
1025 return false;
1026
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001027 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1028 if (check_digest > 0) {
1029 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1030 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1031 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001032 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001033 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001034 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001035 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001036 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001037
Dees_Troya13d74f2013-03-24 08:54:55 -05001038 if (!Restore_List.empty()) {
1039 end_pos = Restore_List.find(";", start_pos);
1040 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1041 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001042 part_settings.Part = Find_Partition_By_Path(restore_path);
1043 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001044 if (part_settings.Part->Mount_Read_Only) {
1045 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 -05001046 return false;
1047 }
bigbiffce8f83c2015-12-12 18:30:21 -05001048
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001049 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1050
1051 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001052 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001053 part_settings.partition_count++;
1054 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1055 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001056 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001057 std::vector<TWPartition*>::iterator subpart;
1058
1059 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001060 part_settings.Part = *subpart;
1061 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001062 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001063 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001064 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001065 }
1066 }
1067 }
1068 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001069 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001070 }
1071 start_pos = end_pos + 1;
1072 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001073 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001074 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001075
bigbiffce8f83c2015-12-12 18:30:21 -05001076 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001077 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001078 return false;
1079 }
1080
bigbiffce8f83c2015-12-12 18:30:21 -05001081 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1082 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 +00001083 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001084 ProgressTracking progress(part_settings.total_restore_size);
1085 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001086
Dees_Troya13d74f2013-03-24 08:54:55 -05001087 start_pos = 0;
1088 if (!Restore_List.empty()) {
1089 end_pos = Restore_List.find(";", start_pos);
1090 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1091 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001092
1093 part_settings.Part = Find_Partition_By_Path(restore_path);
1094 if (part_settings.Part != NULL) {
1095 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001096 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001097 return false;
1098 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001099 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001100 }
1101 start_pos = end_pos + 1;
1102 end_pos = Restore_List.find(";", start_pos);
1103 }
1104 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001105 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
nkk71884bb2b2017-09-03 22:23:19 +03001106 UnMount_By_Path("/system", false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001107 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001108 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001109 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001110 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001111 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001112
Dees_Troy63c8df72012-09-10 14:02:05 -04001113 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001114}
1115
1116void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001117 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001118 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001119 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001120 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001121
1122 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001123 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1124 vector<string> adb_files;
1125 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1126 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1127 string adb_restore_file = adb_files.at(i);
1128 std::size_t pos = adb_restore_file.find_first_of(".");
1129 std::string path = "/" + adb_restore_file.substr(0, pos);
1130 Restore_List = path + ";";
1131 TWPartition* Part = Find_Partition_By_Path(path);
1132 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1133 adbbackup = true;
1134 }
1135 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001136 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001137 else {
1138 DIR* d;
1139 d = opendir(Restore_Name.c_str());
1140 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001141 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001142 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1143 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001144 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001145
1146 struct dirent* de;
1147 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001148 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001149 // Strip off three components
1150 char str[256];
1151 char* label;
1152 char* fstype = NULL;
1153 char* extn = NULL;
1154 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001155
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001156 strcpy(str, de->d_name);
1157 if (strlen(str) <= 2)
1158 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001159
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001160 if (get_date) {
1161 char file_path[255];
1162 struct stat st;
1163
1164 strcpy(file_path, Restore_Name.c_str());
1165 strcat(file_path, "/");
1166 strcat(file_path, str);
1167 stat(file_path, &st);
1168 string backup_date = ctime((const time_t*)(&st.st_mtime));
1169 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1170 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001171 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001172
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001173 label = str;
1174 ptr = label;
1175 while (*ptr && *ptr != '.') ptr++;
1176 if (*ptr == '.')
1177 {
1178 *ptr = 0x00;
1179 ptr++;
1180 fstype = ptr;
1181 }
1182 while (*ptr && *ptr != '.') ptr++;
1183 if (*ptr == '.')
1184 {
1185 *ptr = 0x00;
1186 ptr++;
1187 extn = ptr;
1188 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001189
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001190 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1191 int extnlength = strlen(extn);
1192 if (extnlength != 3 && extnlength != 6) continue;
1193 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1194 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001195
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001196 if (check_encryption) {
1197 string filename = Restore_Name + "/";
1198 filename += de->d_name;
1199 if (TWFunc::Get_File_Type(filename) == 2) {
1200 LOGINFO("'%s' is encrypted\n", filename.c_str());
1201 DataManager::SetValue("tw_restore_encrypted", 1);
1202 }
1203 }
1204 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1205
1206 TWPartition* Part = Find_Partition_By_Path(label);
1207 if (Part == NULL)
1208 {
1209 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1210 continue;
1211 }
1212
1213 Part->Backup_FileName = de->d_name;
1214 if (strlen(extn) > 3) {
1215 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1216 }
1217
1218 if (!Part->Is_SubPartition)
1219 Restore_List += Part->Backup_Path + ";";
1220 }
1221 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001222 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001223
1224 if (adbbackup) {
1225 Restore_List = "ADB_Backup;";
1226 adbbackup = false;
1227 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001228
Dees_Troya13d74f2013-03-24 08:54:55 -05001229 // Set the final value
1230 DataManager::SetValue("tw_restore_list", Restore_List);
1231 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001232 return;
1233}
1234
1235int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001236 std::vector<TWPartition*>::iterator iter;
1237 int ret = false;
1238 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001239 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001240
1241 // Iterate through all partitions
1242 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001243 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troye58d5262012-09-21 12:27:57 -04001244 if (Path == "/and-sec")
1245 ret = (*iter)->Wipe_AndSec();
1246 else
1247 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001248 found = true;
1249 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1250 (*iter)->Wipe();
1251 }
1252 }
1253 if (found) {
1254 return ret;
1255 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001256 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 -04001257 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001258}
1259
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001260int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1261 std::vector<TWPartition*>::iterator iter;
1262 int ret = false;
1263 bool found = false;
1264 string Local_Path = TWFunc::Get_Root_Path(Path);
1265
1266 // Iterate through all partitions
1267 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1268 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1269 if (Path == "/and-sec")
1270 ret = (*iter)->Wipe_AndSec();
1271 else
1272 ret = (*iter)->Wipe(New_File_System);
1273 found = true;
1274 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1275 (*iter)->Wipe(New_File_System);
1276 }
1277 }
1278 if (found) {
1279 return ret;
1280 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001281 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 -05001282 return false;
1283}
1284
Dees_Troy51a0e822012-09-05 15:24:24 -04001285int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001286 std::vector<TWPartition*>::iterator iter;
1287 int ret = true;
1288
1289 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001290 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001291#ifdef TW_OEM_BUILD
1292 if ((*iter)->Mount_Point == "/data") {
1293 if (!(*iter)->Wipe_Encryption())
1294 ret = false;
1295 } else {
1296#endif
1297 if (!(*iter)->Wipe())
1298 ret = false;
1299#ifdef TW_OEM_BUILD
1300 }
1301#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001302 } else if ((*iter)->Has_Android_Secure) {
1303 if (!(*iter)->Wipe_AndSec())
1304 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001305 }
1306 }
Ethan Yonker9fa76ba2016-06-30 14:05:43 -05001307 TWFunc::check_and_run_script("/sbin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001308 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001309}
1310
Dees_Troy38bd7602012-09-14 13:33:53 -04001311int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1312 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001313 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001314
1315 if (!Mount_By_Path("/data", true))
1316 return false;
1317
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001318 dir.push_back("/data/dalvik-cache");
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001319 if (Mount_By_Path("/cache", false)) {
1320 dir.push_back("/cache/dalvik-cache");
1321 dir.push_back("/cache/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001322 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001323
Dees_Troy38bd7602012-09-14 13:33:53 -04001324 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001325 if (sdext && sdext->Is_Present && sdext->Mount(false))
1326 {
1327 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1328 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001329 dir.push_back("/sd-ext/dalvik-cache");
1330 }
1331 }
1332
1333 gui_msg("wiping_dalvik=Wiping Dalvik Cache Directories...");
1334 for (unsigned i = 0; i < dir.size(); ++i) {
1335 if (stat(dir.at(i).c_str(), &st) == 0) {
1336 TWFunc::removeDir(dir.at(i), false);
1337 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001338 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001339 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001340 gui_msg("dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
Dees_Troy38bd7602012-09-14 13:33:53 -04001341 return true;
1342}
1343
1344int TWPartitionManager::Wipe_Rotate_Data(void) {
1345 if (!Mount_By_Path("/data", true))
1346 return false;
1347
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001348 unlink("/data/misc/akmd*");
1349 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001350 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001351 return true;
1352}
1353
1354int TWPartitionManager::Wipe_Battery_Stats(void) {
1355 struct stat st;
1356
1357 if (!Mount_By_Path("/data", true))
1358 return false;
1359
1360 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001361 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001362 } else {
1363 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001364 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001365 }
1366 return true;
1367}
1368
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001369int TWPartitionManager::Wipe_Android_Secure(void) {
1370 std::vector<TWPartition*>::iterator iter;
1371 int ret = false;
1372 bool found = false;
1373
1374 // Iterate through all partitions
1375 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1376 if ((*iter)->Has_Android_Secure) {
1377 ret = (*iter)->Wipe_AndSec();
1378 found = true;
1379 }
1380 }
1381 if (found) {
1382 return ret;
1383 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001384 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001385 }
1386 return false;
1387}
1388
Dees_Troy38bd7602012-09-14 13:33:53 -04001389int TWPartitionManager::Format_Data(void) {
1390 TWPartition* dat = Find_Partition_By_Path("/data");
1391
1392 if (dat != NULL) {
1393 if (!dat->UnMount(true))
1394 return false;
1395
1396 return dat->Wipe_Encryption();
1397 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001398 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001399 return false;
1400 }
1401 return false;
1402}
1403
1404int TWPartitionManager::Wipe_Media_From_Data(void) {
1405 TWPartition* dat = Find_Partition_By_Path("/data");
1406
1407 if (dat != NULL) {
1408 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001409 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001410 return false;
1411 }
1412 if (!dat->Mount(true))
1413 return false;
1414
Ethan Yonker74db1572015-10-28 12:44:49 -05001415 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001416 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001417 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001418 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001419 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001420 return true;
1421 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001422 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001423 return false;
1424 }
1425 return false;
1426}
1427
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001428int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1429 std::vector<TWPartition*>::iterator iter;
1430 int ret = false;
1431 bool found = false;
1432 string Local_Path = TWFunc::Get_Root_Path(Path);
1433
1434 if (Local_Path == "/tmp" || Local_Path == "/")
1435 return true;
1436
1437 // Iterate through all partitions
1438 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1439 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1440 ret = (*iter)->Repair();
1441 found = true;
1442 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1443 (*iter)->Repair();
1444 }
1445 }
1446 if (found) {
1447 return ret;
1448 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001449 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 -05001450 } else {
1451 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1452 }
1453 return false;
1454}
1455
Ethan Yonkera2719152015-05-28 09:44:41 -05001456int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1457 std::vector<TWPartition*>::iterator iter;
1458 int ret = false;
1459 bool found = false;
1460 string Local_Path = TWFunc::Get_Root_Path(Path);
1461
1462 if (Local_Path == "/tmp" || Local_Path == "/")
1463 return true;
1464
1465 // Iterate through all partitions
1466 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1467 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1468 ret = (*iter)->Resize();
1469 found = true;
1470 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1471 (*iter)->Resize();
1472 }
1473 }
1474 if (found) {
1475 return ret;
1476 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001477 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 -05001478 } else {
1479 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1480 }
1481 return false;
1482}
1483
Dees_Troy51a0e822012-09-05 15:24:24 -04001484void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001485 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001486 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001487
Ethan Yonker74db1572015-10-28 12:44:49 -05001488 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001489 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001490 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001491 if ((*iter)->Can_Be_Mounted) {
Dees_Troy51127312012-09-08 13:08:49 -04001492 if ((*iter)->Mount_Point == "/system") {
1493 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1494 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
1495 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1496 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1497 } else if ((*iter)->Mount_Point == "/cache") {
1498 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1499 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1500 } else if ((*iter)->Mount_Point == "/sd-ext") {
1501 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1502 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1503 if ((*iter)->Backup_Size == 0) {
1504 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1505 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1506 } else
1507 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001508 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001509 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001510 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001511 if ((*iter)->Backup_Size == 0) {
1512 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1513 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1514 } else
1515 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001516 } else if ((*iter)->Mount_Point == "/boot") {
1517 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1518 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1519 if ((*iter)->Backup_Size == 0) {
1520 DataManager::SetValue("tw_has_boot_partition", 0);
1521 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1522 } else
1523 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001524 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001525 } else {
1526 // Handle unmountable partitions in case we reset defaults
1527 if ((*iter)->Mount_Point == "/boot") {
1528 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1529 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1530 if ((*iter)->Backup_Size == 0) {
1531 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1532 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1533 } else
1534 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1535 } else if ((*iter)->Mount_Point == "/recovery") {
1536 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1537 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1538 if ((*iter)->Backup_Size == 0) {
1539 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1540 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1541 } else
1542 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001543 } else if ((*iter)->Mount_Point == "/data") {
1544 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001545 }
Dees_Troy51127312012-09-08 13:08:49 -04001546 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001547 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001548 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001549 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1550 string current_storage_path = DataManager::GetCurrentStoragePath();
1551 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001552 if (FreeStorage != NULL) {
1553 // Attempt to mount storage
1554 if (!FreeStorage->Mount(false)) {
Matt Mower2d50cad2015-12-03 22:26:55 -06001555 gui_msg(Msg(msg::kError, "unable_to_mount_storage=Unable to mount storage"));
1556 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
Dees_Troy8170a922012-09-18 15:40:25 -04001557 } else {
1558 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
1559 }
1560 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001561 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001562 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001563 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001564 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001565 return;
1566}
1567
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001568void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1569 TWPartition* dat = Find_Partition_By_Path("/data");
1570 if (dat != NULL) {
1571 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1572 dat->Is_Decrypted = true;
1573 if (!Block_Device.empty()) {
1574 dat->Decrypted_Block_Device = Block_Device;
1575 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1576 } else {
1577 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1578 }
1579 dat->Setup_File_System(false);
1580 dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc
1581
1582 // Sleep for a bit so that the device will be ready
1583 sleep(1);
1584 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1585 dat->Storage_Path = "/data/media/0";
1586 dat->Symlink_Path = dat->Storage_Path;
1587 DataManager::SetValue("tw_storage_path", "/data/media/0");
1588 DataManager::SetValue("tw_settings_path", "/data/media/0");
1589 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001590 }
1591 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001592 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001593 UnMount_Main_Partitions();
1594 } else
1595 LOGERR("Unable to locate data partition.\n");
1596}
1597
Dees_Troy51a0e822012-09-05 15:24:24 -04001598int TWPartitionManager::Decrypt_Device(string Password) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001599#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001600 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001601 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001602
Ethan Yonker253368a2014-11-25 15:00:52 -06001603 // Mount any partitions that need to be mounted for decrypt
1604 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1605 if ((*iter)->Mount_To_Decrypt) {
1606 (*iter)->Mount(true);
1607 }
a39552696ff55ce2013-01-08 16:14:56 +00001608 }
a39552696ff55ce2013-01-08 16:14:56 +00001609
Ethan Yonkera1de1492015-11-04 11:58:27 -06001610 property_get("ro.crypto.state", crypto_state, "error");
1611 if (strcmp(crypto_state, "error") == 0) {
1612 property_set("ro.crypto.state", "encrypted");
1613 // Sleep for a bit so that services can start if needed
1614 sleep(1);
1615 }
1616
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001617 if (DataManager::GetIntValue(TW_IS_FBE)) {
1618#ifdef TW_INCLUDE_FBE
1619 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1620 return -1;
1621 int retry_count = 10;
1622 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
1623 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt... maybe because of DE?
1624 int user_id = DataManager::GetIntValue("tw_decrypt_user_id");
1625 LOGINFO("Decrypting FBE for user %i\n", user_id);
1626 if (Decrypt_User(user_id, Password)) {
1627 Post_Decrypt("");
1628 return 0;
1629 }
1630#else
1631 LOGERR("FBE support is not present\n");
1632#endif
1633 return -1;
1634 }
1635
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001636 int pwret = -1;
1637 pid_t pid = fork();
1638 if (pid < 0) {
1639 LOGERR("fork failed\n");
1640 return -1;
1641 } else if (pid == 0) {
1642 // Child process
1643 char cPassword[255];
1644 strcpy(cPassword, Password.c_str());
1645 int ret = cryptfs_check_passwd(cPassword);
1646 exit(ret);
1647 } else {
1648 // Parent
1649 int status;
1650 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1651 pwret = -1;
1652 else
1653 pwret = WEXITSTATUS(status) ? -1 : 0;
1654 }
a39552696ff55ce2013-01-08 16:14:56 +00001655
nkk7171c6c502017-01-05 23:55:05 +02001656#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1657 if (pwret != 0) {
1658 pwret = vold_decrypt(Password);
1659 }
1660#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1661
Ethan Yonker253368a2014-11-25 15:00:52 -06001662 // Unmount any partitions that were needed for decrypt
1663 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1664 if ((*iter)->Mount_To_Decrypt) {
1665 (*iter)->UnMount(false);
1666 }
1667 }
1668
a39552696ff55ce2013-01-08 16:14:56 +00001669 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001670 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001671 return -1;
1672 }
a39552696ff55ce2013-01-08 16:14:56 +00001673
Dees_Troy5bf43922012-09-07 16:07:55 -04001674 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1675 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001676 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001677 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001678 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001679 }
1680 return 0;
1681#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001682 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001683 return -1;
1684#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04001685 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04001686}
1687
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001688int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001689 std::vector<TWPartition*>::iterator iter;
1690 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1691 if ((*iter)->Has_Data_Media) {
1692 if ((*iter)->Mount(true)) {
1693 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
1694 return -1;
1695 }
1696 }
1697 }
Dees_Troy1a650e62012-10-19 20:54:32 -04001698 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05001699 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001700 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04001701}
1702
Ethan Yonker66a19492015-12-10 10:19:45 -06001703TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001704 std::vector<TWPartition*>::iterator iter = Partitions.begin();
1705
1706 if (!Path.empty()) {
1707 string Search_Path = TWFunc::Get_Root_Path(Path);
1708 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06001709 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001710 iter++;
1711 break;
1712 }
1713 }
1714 }
1715
1716 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06001717 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
1718 // do nothing, do not return this type of partition
1719 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05001720 return (*iter);
1721 }
1722 }
1723
1724 return NULL;
1725}
1726
Dees_Troyd21618c2012-10-14 18:48:49 -04001727int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04001728 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
1729
1730 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001731 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
1732 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 -04001733 return false;
1734 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001735 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
1736 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04001737 return false;
1738
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001739 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001740 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04001741 return false;
1742 }
Dees_Troyd21618c2012-10-14 18:48:49 -04001743 return true;
1744}
1745
Dees_Troy8170a922012-09-18 15:40:25 -04001746int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04001747 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04001748 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04001749
Ethan Yonker47360be2014-04-01 10:34:34 -05001750 string Lun_File_str = CUSTOM_LUN_FILE;
1751 size_t found = Lun_File_str.find("%");
1752 if (found != string::npos) {
1753 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
1754 if (TWFunc::Path_Exists(lun_file))
1755 has_multiple_lun = true;
1756 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001757 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05001758 if (!has_multiple_lun) {
1759 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
1760 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
1761 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06001762 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001763 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001764 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
1765 goto error_handle;
1766 }
Ethan Yonker47360be2014-04-01 10:34:34 -05001767 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001768 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001769 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001770 }
1771 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001772 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04001773 }
Dees_Troy8170a922012-09-18 15:40:25 -04001774 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05001775 LOGINFO("Device has multiple lun files\n");
1776 TWPartition* Mount1;
1777 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04001778 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06001779 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05001780 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001781 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
1782 goto error_handle;
1783 }
Matt Moweree717062014-04-26 01:46:46 -05001784 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06001785 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06001786 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05001787 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05001788 }
1789 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001790 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001791 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05001792 }
Dees_Troy8170a922012-09-18 15:40:25 -04001793 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06001794 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01001795 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04001796 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001797error_handle:
1798 if (mtp_was_enabled)
1799 if (!Enable_MTP())
1800 Disable_MTP();
1801 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04001802}
1803
1804int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001805 int index, ret;
1806 char lun_file[255], ch[2] = {0, 0};
1807 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04001808
1809 for (index=0; index<2; index++) {
1810 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001811 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00001812 if (ret < 0) {
1813 break;
Dees_Troy8170a922012-09-18 15:40:25 -04001814 }
Dees_Troy8170a922012-09-18 15:40:25 -04001815 }
Dees_Troye58d5262012-09-21 12:27:57 -04001816 Mount_All_Storage();
1817 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04001818 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06001819 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01001820 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001821 if (mtp_was_enabled)
1822 if (!Enable_MTP())
1823 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00001824 if (ret < 0 && index == 0) {
1825 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
1826 return false;
1827 } else {
1828 return true;
1829 }
Dees_Troy8170a922012-09-18 15:40:25 -04001830 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04001831}
1832
1833void TWPartitionManager::Mount_All_Storage(void) {
1834 std::vector<TWPartition*>::iterator iter;
1835
1836 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1837 if ((*iter)->Is_Storage)
1838 (*iter)->Mount(false);
1839 }
Dees_Troy2c50e182012-09-26 20:05:28 -04001840}
Dees_Troy9350b8d2012-09-27 12:38:38 -04001841
Dees_Troyd0384ef2012-10-12 12:15:42 -04001842void TWPartitionManager::UnMount_Main_Partitions(void) {
1843 // Unmounts system and data if data is not data/media
1844 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00001845 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04001846
1847 TWPartition* Boot_Partition = Find_Partition_By_Path("/boot");
1848
1849 UnMount_By_Path("/system", true);
Ethan Yonker6277c792014-09-15 14:54:30 -05001850 if (!datamedia)
1851 UnMount_By_Path("/data", true);
1852
Dees_Troyd0384ef2012-10-12 12:15:42 -04001853 if (Boot_Partition != NULL && Boot_Partition->Can_Be_Mounted)
1854 Boot_Partition->UnMount(true);
1855}
1856
Dees_Troy9350b8d2012-09-27 12:38:38 -04001857int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06001858 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06001859 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 -04001860 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04001861
Ethan Yonker74db1572015-10-28 12:44:49 -05001862 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001863
1864 // Locate and validate device to partition
1865 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1866
Ethan Yonker66a19492015-12-10 10:19:45 -06001867 if (SDCard->Is_Adopted_Storage)
1868 SDCard->Revert_Adopted();
1869
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05001870 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001871 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001872 return false;
1873 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001874
1875 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04001876 if (!SDCard->UnMount(true))
1877 return false;
1878 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
1879 if (SDext != NULL) {
1880 if (!SDext->UnMount(true))
1881 return false;
1882 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001883 char* swappath = getenv("SWAPPATH");
1884 if (swappath != NULL) {
1885 LOGINFO("Unmounting swap at '%s'\n", swappath);
1886 umount(swappath);
1887 }
Vojtech Bocek05534202013-09-11 08:11:56 +02001888
Ethan Yonker483e9f42016-01-11 22:21:18 -06001889 // Determine block device
1890 if (SDCard->Alternate_Block_Device.empty()) {
1891 SDCard->Find_Actual_Block_Device();
1892 Device = SDCard->Actual_Block_Device;
1893 // Just use the root block device
1894 Device.resize(strlen("/dev/block/mmcblkX"));
1895 } else {
1896 Device = SDCard->Alternate_Block_Device;
1897 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04001898
1899 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06001900 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001901
1902 DataManager::GetValue("tw_sdext_size", ext);
1903 DataManager::GetValue("tw_swap_size", swap);
1904 DataManager::GetValue("tw_sdpart_file_system", ext_format);
1905 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06001906 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);
1907
1908 // Determine partition sizes
1909 if (swap == 0 && ext == 0) {
1910 fat_str = "-0";
1911 } else {
1912 memset(temp, 0, sizeof(temp));
1913 sprintf(temp, "%i", fat_size);
1914 fat_str = temp;
1915 fat_str += "MB";
1916 }
1917 if (swap == 0) {
1918 ext_str = "-0";
1919 } else {
1920 memset(temp, 0, sizeof(temp));
1921 sprintf(temp, "%i", ext);
1922 ext_str = "+";
1923 ext_str += temp;
1924 ext_str += "MB";
1925 }
1926
Dees_Troy9350b8d2012-09-27 12:38:38 -04001927 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001928 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001929 return false;
1930 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001931
Ethan Yonker74db1572015-10-28 12:44:49 -05001932 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06001933 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00001934 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001935 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001936 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04001937 Update_System_Details();
1938 return false;
1939 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001940 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04001941 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 +00001942 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001943 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001944 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001945 return false;
1946 }
1947 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001948 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06001949 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00001950 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001951 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001952 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001953 Update_System_Details();
1954 return false;
1955 }
1956 }
1957 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001958 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06001959 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 +00001960 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001961 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001962 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04001963 Update_System_Details();
1964 return false;
1965 }
1966 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001967
1968 // Convert GPT to MBR
1969 Command = "sgdisk --gpttombr " + Device;
1970 if (TWFunc::Exec_Cmd(Command) != 0)
1971 LOGINFO("Failed to covert partition GPT to MBR\n");
1972
1973 // Tell the kernel to rescan the partition table
1974 int fd = open(Device.c_str(), O_RDONLY);
1975 ioctl(fd, BLKRRPART, 0);
1976 close(fd);
1977
1978 string format_device = Device;
1979 if (Device.substr(0, 17) == "/dev/block/mmcblk")
1980 format_device += "p";
1981
1982 // Format new partitions to proper file system
1983 if (fat_size > 0) {
1984 Command = "mkfs.fat " + format_device + "1";
1985 TWFunc::Exec_Cmd(Command);
1986 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04001987 if (ext > 0) {
1988 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06001989 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
1990 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
1991 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
1992 TWFunc::Exec_Cmd(Command);
1993 } else {
1994 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04001995 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06001996 }
1997 if (swap > 0) {
1998 Command = "mkswap " + format_device;
1999 if (ext > 0)
2000 Command += "3";
2001 else
2002 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002003 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002004 }
2005
Ethan Yonker483e9f42016-01-11 22:21:18 -06002006 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2007 if (SDCard->Mount(true)) {
2008 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2009 mkdir(TWRP_Folder.c_str(), 0777);
2010 DataManager::Flush();
2011 }
2012
Dees_Troy9350b8d2012-09-27 12:38:38 -04002013 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002014 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002015 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002016}
Dees_Troya13d74f2013-03-24 08:54:55 -05002017
2018void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2019 std::vector<TWPartition*>::iterator iter;
2020 if (ListType == "mount") {
2021 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002022 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002023 struct PartitionList part;
2024 part.Display_Name = (*iter)->Display_Name;
2025 part.Mount_Point = (*iter)->Mount_Point;
2026 part.selected = (*iter)->Is_Mounted();
2027 Partition_List->push_back(part);
2028 }
2029 }
2030 } else if (ListType == "storage") {
2031 char free_space[255];
2032 string Current_Storage = DataManager::GetCurrentStoragePath();
2033 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2034 if ((*iter)->Is_Storage) {
2035 struct PartitionList part;
2036 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2037 part.Display_Name = (*iter)->Storage_Name + " (";
2038 part.Display_Name += free_space;
2039 part.Display_Name += "MB)";
2040 part.Mount_Point = (*iter)->Storage_Path;
2041 if ((*iter)->Storage_Path == Current_Storage)
2042 part.selected = 1;
2043 else
2044 part.selected = 0;
2045 Partition_List->push_back(part);
2046 }
2047 }
2048 } else if (ListType == "backup") {
2049 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002050 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002051 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002052 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002053 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002054 Backup_Size = (*iter)->Backup_Size;
2055 if ((*iter)->Has_SubPartition) {
2056 std::vector<TWPartition*>::iterator subpart;
2057
2058 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2059 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2060 Backup_Size += (*subpart)->Backup_Size;
2061 }
2062 }
2063 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002064 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2065 part.Display_Name += backup_size;
2066 part.Display_Name += "MB)";
2067 part.Mount_Point = (*iter)->Backup_Path;
2068 part.selected = 0;
2069 Partition_List->push_back(part);
2070 }
2071 }
2072 } else if (ListType == "restore") {
2073 string Restore_List, restore_path;
2074 TWPartition* restore_part = NULL;
2075
2076 DataManager::GetValue("tw_restore_list", Restore_List);
2077 if (!Restore_List.empty()) {
2078 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2079 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2080 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002081 struct PartitionList part;
2082 if (restore_path.compare("ADB_Backup") == 0) {
2083 part.Display_Name = "ADB Backup";
2084 part.Mount_Point = "ADB Backup";
2085 part.selected = 1;
2086 Partition_List->push_back(part);
2087 break;
2088 }
Dees_Troy59df9262013-06-19 14:53:57 -05002089 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002090 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002091 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002092 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002093 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002094 part.Display_Name = restore_part->Backup_Display_Name;
2095 part.Mount_Point = restore_part->Backup_Path;
2096 part.selected = 1;
2097 Partition_List->push_back(part);
2098 }
2099 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002100 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002101 }
2102 start_pos = end_pos + 1;
2103 end_pos = Restore_List.find(";", start_pos);
2104 }
2105 }
2106 } else if (ListType == "wipe") {
2107 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002108 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002109 dalvik.Mount_Point = "DALVIK";
2110 dalvik.selected = 0;
2111 Partition_List->push_back(dalvik);
2112 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2113 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2114 struct PartitionList part;
2115 part.Display_Name = (*iter)->Display_Name;
2116 part.Mount_Point = (*iter)->Mount_Point;
2117 part.selected = 0;
2118 Partition_List->push_back(part);
2119 }
2120 if ((*iter)->Has_Android_Secure) {
2121 struct PartitionList part;
2122 part.Display_Name = (*iter)->Backup_Display_Name;
2123 part.Mount_Point = (*iter)->Backup_Path;
2124 part.selected = 0;
2125 Partition_List->push_back(part);
2126 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002127 if ((*iter)->Has_Data_Media) {
2128 struct PartitionList datamedia;
2129 datamedia.Display_Name = (*iter)->Storage_Name;
2130 datamedia.Mount_Point = "INTERNAL";
2131 datamedia.selected = 0;
2132 Partition_List->push_back(datamedia);
2133 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002134 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002135 } else if (ListType == "flashimg") {
2136 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2137 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2138 struct PartitionList part;
2139 part.Display_Name = (*iter)->Backup_Display_Name;
2140 part.Mount_Point = (*iter)->Backup_Path;
2141 part.selected = 0;
2142 Partition_List->push_back(part);
2143 }
2144 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002145 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002146 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002147 }
2148}
2149
2150int TWPartitionManager::Fstab_Processed(void) {
2151 return Partitions.size();
2152}
Dees_Troyd93bda52013-07-03 19:55:19 +00002153
2154void TWPartitionManager::Output_Storage_Fstab(void) {
2155 std::vector<TWPartition*>::iterator iter;
2156 char storage_partition[255];
2157 string Temp;
2158 FILE *fp = fopen("/cache/recovery/storage.fstab", "w");
2159
2160 if (fp == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002161 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")("/cache/recovery/storage.fstab"));
Dees_Troyd93bda52013-07-03 19:55:19 +00002162 return;
2163 }
2164
2165 // Iterate through all partitions
2166 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2167 if ((*iter)->Is_Storage) {
2168 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2169 strcpy(storage_partition, Temp.c_str());
2170 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2171 }
2172 }
2173 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002174}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002175
2176TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2177{
2178 TWPartition *res = NULL;
2179 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002180 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002181 continue;
2182
Matt Mowera8a89d12016-12-30 18:10:37 -06002183 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002184 return *iter;
2185
Matt Mowera8a89d12016-12-30 18:10:37 -06002186 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002187 res = *iter;
2188 }
2189 return res;
2190}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002191
2192bool TWPartitionManager::Enable_MTP(void) {
2193#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002194 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002195 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002196 return true;
2197 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002198
2199 int mtppipe[2];
2200
2201 if (pipe(mtppipe) < 0) {
2202 LOGERR("Error creating MTP pipe\n");
2203 return false;
2204 }
2205
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002206 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002207 property_get("sys.usb.config", old_value, "");
2208 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002209 char vendor[PROPERTY_VALUE_MAX];
2210 char product[PROPERTY_VALUE_MAX];
2211 property_set("sys.usb.config", "none");
2212 property_get("usb.vendor", vendor, "18D1");
2213 property_get("usb.product.mtpadb", product, "4EE2");
2214 string vendorstr = vendor;
2215 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002216 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2217 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002218 property_set("sys.usb.config", "mtp,adb");
2219 }
Matt Mower653a1702017-02-16 10:38:52 -06002220 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002221 * twrp set tw_mtp_debug 1
2222 */
2223 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002224 mtppid = mtp->forkserver(mtppipe);
2225 if (mtppid) {
2226 close(mtppipe[0]); // Host closes read side
2227 mtp_write_fd = mtppipe[1];
2228 DataManager::SetValue("tw_mtp_enabled", 1);
2229 Add_All_MTP_Storage();
2230 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002231 } else {
2232 close(mtppipe[0]);
2233 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002234 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002235 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002236 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002237#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002238 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002239#endif
2240 DataManager::SetValue("tw_mtp_enabled", 0);
2241 return false;
2242}
2243
Ethan Yonker1b039202015-01-30 10:08:48 -06002244void TWPartitionManager::Add_All_MTP_Storage(void) {
2245#ifdef TW_HAS_MTP
2246 std::vector<TWPartition*>::iterator iter;
2247
2248 if (!mtppid)
2249 return; // MTP is not enabled
2250
2251 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2252 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2253 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2254 }
2255#else
2256 return;
2257#endif
2258}
2259
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002260bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002261 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002262 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002263 if (strcmp(old_value, "adb") != 0) {
2264 char vendor[PROPERTY_VALUE_MAX];
2265 char product[PROPERTY_VALUE_MAX];
2266 property_set("sys.usb.config", "none");
2267 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002268 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002269 string vendorstr = vendor;
2270 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002271 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2272 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002273 usleep(2000);
2274 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002275#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002276 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002277 LOGINFO("Disabling MTP\n");
2278 int status;
2279 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002280 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002281 // We don't care about the exit value, but this prevents a zombie process
2282 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002283 close(mtp_write_fd);
2284 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002285 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002286#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002287 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002288#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002289 DataManager::SetValue("tw_mtp_enabled", 0);
2290 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002291#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002292 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002293}
Ethan Yonker726a0202014-12-16 20:01:38 -06002294
2295TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2296 std::vector<TWPartition*>::iterator iter;
2297
2298 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2299 if ((*iter)->MTP_Storage_ID == Storage_ID)
2300 return (*iter);
2301 }
2302 return NULL;
2303}
2304
2305bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2306#ifdef TW_HAS_MTP
2307 struct mtpmsg mtp_message;
2308
2309 if (!mtppid)
2310 return false; // MTP is disabled
2311
2312 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002313 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002314 return false;
2315 }
2316
2317 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002318 if (Part->MTP_Storage_ID == 0)
2319 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002320 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2321 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2322 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2323 mtp_message.storage_id = Part->MTP_Storage_ID;
2324 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002325 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002326 return false;
2327 } else {
2328 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2329 return true;
2330 }
2331 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2332 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2333 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002334 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2335 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2336 return false;
2337 }
2338 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2339 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2340 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2341 return false;
2342 }
2343 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002344 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002345 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 -06002346 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002347 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002348 return false;
2349 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002350 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002351 return true;
2352 }
2353 } else {
2354 LOGERR("Unknown MTP message type: %i\n", message_type);
2355 }
2356 } else {
2357 // This hopefully never happens as the error handling should
2358 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002359 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002360 }
2361 return true;
2362#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002363 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002364 DataManager::SetValue("tw_mtp_enabled", 0);
2365 return false;
2366#endif
2367}
2368
2369bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2370#ifdef TW_HAS_MTP
2371 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2372 if (Part) {
2373 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2374 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002375 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002376 }
2377#endif
2378 return false;
2379}
2380
2381bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2382#ifdef TW_HAS_MTP
2383 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2384 if (Part) {
2385 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2386 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002387 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002388 }
2389#endif
2390 return false;
2391}
2392
2393bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2394#ifdef TW_HAS_MTP
2395 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2396 if (Part) {
2397 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2398 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002399 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002400 }
2401#endif
2402 return false;
2403}
2404
2405bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2406#ifdef TW_HAS_MTP
2407 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2408 if (Part) {
2409 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2410 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002411 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002412 }
2413#endif
2414 return false;
2415}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002416
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002417bool TWPartitionManager::Flash_Image(string& path, string& filename) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002418 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002419 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002420 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002421 size_t start_pos = 0, end_pos = 0;
2422
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002423 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002424
bigbiffce8f83c2015-12-12 18:30:21 -05002425 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2426 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2427
2428 if (!TWFunc::Path_Exists(full_filename)) {
2429 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002430 return false;
2431 }
bigbiffce8f83c2015-12-12 18:30:21 -05002432 if (!TWFunc::Path_Exists(full_filename)) {
2433 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002434 return false;
2435 }
2436 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002437
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002438 PartitionSettings part_settings;
2439 part_settings.Backup_Folder = path;
2440 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2441 ProgressTracking progress(total_bytes);
2442 part_settings.progress = &progress;
2443 part_settings.adbbackup = false;
2444 part_settings.PM_Method = PM_RESTORE;
2445
Ethan Yonker74db1572015-10-28 12:44:49 -05002446 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002447 DataManager::GetValue("tw_flash_partition", Flash_List);
2448 if (!Flash_List.empty()) {
2449 end_pos = Flash_List.find(";", start_pos);
2450 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2451 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2452 flash_part = Find_Partition_By_Path(flash_path);
2453 if (flash_part != NULL) {
2454 partition_count++;
2455 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002456 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002457 return false;
2458 }
2459 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002460 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002461 return false;
2462 }
2463 start_pos = end_pos + 1;
2464 end_pos = Flash_List.find(";", start_pos);
2465 }
2466 }
2467
2468 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002469 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002470 return false;
2471 }
2472
2473 DataManager::SetProgress(0.0);
2474 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002475 flash_part->Backup_FileName = filename;
2476 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002477 return false;
2478 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002479 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002480 return false;
2481 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002482 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002483 return true;
2484}
Ethan Yonker74db1572015-10-28 12:44:49 -05002485
2486void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2487 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2488 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002489 if (part->Is_Adopted_Storage) {
2490 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2491 part->Backup_Display_Name = part->Display_Name;
2492 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2493 } else {
2494 part->Display_Name = gui_lookup(resource_name, default_value);
2495 part->Backup_Display_Name = part->Display_Name;
2496 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002497 }
2498}
2499
2500void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2501 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2502 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002503 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002504 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002505 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002506 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2507 } else {
2508 part->Display_Name = gui_lookup(resource_name, default_value);
2509 part->Backup_Display_Name = part->Display_Name;
2510 if (part->Is_Storage)
2511 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2512 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002513 }
2514}
2515
Ethan Yonker01f4e032017-02-03 15:30:52 -06002516void 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) {
2517 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2518 if (part) {
2519 if (part->Is_Adopted_Storage) {
2520 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2521 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2522 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2523 } else {
2524 part->Display_Name = gui_lookup(resource_name, default_value);
2525 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2526 if (part->Is_Storage)
2527 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2528 }
2529 }
2530}
2531
Ethan Yonker74db1572015-10-28 12:44:49 -05002532void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002533 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002534 Translate_Partition("/system", "system", "System");
2535 Translate_Partition("/system_image", "system_image", "System Image");
2536 Translate_Partition("/vendor", "vendor", "Vendor");
2537 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2538 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002539 Translate_Partition("/boot", "boot", "Boot");
2540 Translate_Partition("/recovery", "recovery", "Recovery");
2541 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002542 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002543 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2544 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2545 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2546 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002547 } else {
2548 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002549 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002550 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2551 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002552 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2553 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2554
2555 // Android secure is a special case
2556 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2557 if (part)
2558 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2559
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002560 std::vector<TWPartition*>::iterator sysfs;
2561 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2562 if (!(*sysfs)->Sysfs_Entry.empty()) {
2563 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2564 }
2565 }
2566
Ethan Yonker74db1572015-10-28 12:44:49 -05002567 // This updates the text on all of the storage selection buttons in the GUI
2568 DataManager::SetBackupFolder();
2569}
Ethan Yonker66a19492015-12-10 10:19:45 -06002570
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002571bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002572#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002573 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002574 if (!Mount_By_Path("/data", false)) {
2575 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002576 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002577 }
2578 LOGINFO("Decrypt adopted storage starting\n");
2579 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2580 xml_document<> *doc = NULL;
2581 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002582 string Primary_Storage_UUID = "";
2583 if (xmlFile != NULL) {
2584 LOGINFO("successfully loaded storage.xml\n");
2585 doc = new xml_document<>();
2586 doc->parse<0>(xmlFile);
2587 volumes = doc->first_node("volumes");
2588 if (volumes) {
2589 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2590 if (psuuid) {
2591 Primary_Storage_UUID = psuuid->value();
2592 }
2593 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002594 } else {
2595 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2596 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002597 }
2598 std::vector<TWPartition*>::iterator adopt;
2599 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2600 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2601 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002602 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002603 if (volumes) {
2604 xml_node<>* volume = volumes->first_node("volume");
2605 while (volume) {
2606 xml_attribute<>* guid = volume->first_attribute("partGuid");
2607 if (guid) {
2608 string GUID = (*adopt)->Adopted_GUID.c_str();
2609 GUID.insert(8, "-");
2610 GUID.insert(13, "-");
2611 GUID.insert(18, "-");
2612 GUID.insert(23, "-");
2613
2614 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2615 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002616 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002617 (*adopt)->Storage_Name = attr->value();
2618 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2619 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2620 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2621 }
2622 attr = volume->first_attribute("fsUuid");
2623 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2624 TWPartition* Dat = Find_Partition_By_Path("/data");
2625 if (Dat) {
2626 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2627 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2628 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2629 Dat->Symlink_Mount_Point = "";
2630 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2631 Dat->UnMount(false);
2632 Dat->Mount(false);
2633 (*adopt)->UnMount(false);
2634 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002635 }
2636 }
2637 break;
2638 }
2639 }
2640 volume = volume->next_sibling("volume");
2641 }
2642 }
nkk71ffb02bd2017-06-04 23:12:16 +03002643 Update_System_Details();
2644 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06002645 }
2646 }
2647 }
2648 if (xmlFile) {
2649 doc->clear();
2650 delete doc;
2651 free(xmlFile);
2652 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002653 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06002654#else
2655 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002656 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002657#endif
2658}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06002659
2660void TWPartitionManager::Remove_Partition_By_Path(string Path) {
2661 std::vector<TWPartition*>::iterator iter;
2662 string Local_Path = TWFunc::Get_Root_Path(Path);
2663
2664 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2665 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
2666 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
2667 Partitions.erase(iter);
2668 return;
2669 }
2670 }
2671}
Ethan Yonker1b190162016-12-05 15:25:19 -06002672
2673void TWPartitionManager::Set_Active_Slot(const string& Slot) {
2674 if (Slot != "A" && Slot != "B") {
2675 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
2676 return;
2677 }
2678 if (Active_Slot_Display == Slot)
2679 return;
2680 LOGINFO("Setting active slot %s\n", Slot.c_str());
2681#ifdef AB_OTA_UPDATER
2682 if (!Active_Slot_Display.empty()) {
2683 const hw_module_t *hw_module;
2684 boot_control_module_t *module;
2685 int ret;
2686 ret = hw_get_module("bootctrl", &hw_module);
2687 if (ret != 0) {
2688 LOGERR("Error getting bootctrl module.\n");
2689 } else {
2690 module = (boot_control_module_t*) hw_module;
2691 module->init(module);
2692 int slot_number = 0;
2693 if (Slot == "B")
2694 slot_number = 1;
2695 if (module->setActiveBootSlot(module, slot_number))
2696 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
2697 }
2698 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
2699 }
2700#else
2701 LOGERR("Boot slot feature not present\n");
2702#endif
2703 Active_Slot_Display = Slot;
2704 if (Fstab_Processed())
2705 Update_System_Details();
2706}
2707string TWPartitionManager::Get_Active_Slot_Suffix() {
2708 if (Active_Slot_Display == "A")
2709 return "_a";
2710 return "_b";
2711}
2712string TWPartitionManager::Get_Active_Slot_Display() {
2713 return Active_Slot_Display;
2714}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002715
2716void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
2717 std::vector<TWPartition*>::iterator iter;
2718
2719 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
2720 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
2721 TWPartition *part = *iter;
2722 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
2723 (*iter)->UnMount(false);
2724 rmdir((*iter)->Mount_Point.c_str());
2725 iter = Partitions.erase(iter);
2726 delete part;
2727 } else {
2728 iter++;
2729 }
2730 }
2731}
2732
2733void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
2734 std::vector<TWPartition*>::iterator iter;
2735
2736 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2737 if (!(*iter)->Sysfs_Entry.empty()) {
2738 string device;
2739 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
2740 if (wildcard != string::npos) {
2741 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
2742 } else {
2743 device = (*iter)->Sysfs_Entry;
2744 }
2745 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
2746 // Found a match
2747 if (uevent_data.action == "add") {
2748 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
2749 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
2750 (*iter)->Is_Present = true;
2751 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
2752 if (!Decrypt_Adopted()) {
2753 LOGINFO("No adopted storage so finding actual block device\n");
2754 (*iter)->Find_Actual_Block_Device();
2755 }
2756 return;
2757 } else if (uevent_data.action == "remove") {
2758 (*iter)->Is_Present = false;
2759 (*iter)->Primary_Block_Device = "";
2760 (*iter)->Actual_Block_Device = "";
2761 Remove_Uevent_Devices((*iter)->Mount_Point);
2762 return;
2763 }
2764 }
2765 }
2766 }
2767 LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str());
2768}
2769
2770void TWPartitionManager::setup_uevent() {
2771 struct sockaddr_nl nls;
2772
2773 if (uevent_pfd.fd >= 0) {
2774 LOGINFO("uevent already set up\n");
2775 return;
2776 }
2777
2778 // Open hotplug event netlink socket
2779 memset(&nls,0,sizeof(struct sockaddr_nl));
2780 nls.nl_family = AF_NETLINK;
2781 nls.nl_pid = getpid();
2782 nls.nl_groups = -1;
2783 uevent_pfd.events = POLLIN;
2784 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
2785 if (uevent_pfd.fd==-1) {
2786 LOGERR("uevent not root\n");
2787 return;
2788 }
2789
2790 // Listen to netlink socket
2791 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
2792 LOGERR("Bind failed\n");
2793 return;
2794 }
2795 set_select_fd();
2796 Coldboot();
2797}
2798
2799Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
2800 Uevent_Block_Data ret;
2801 ret.subsystem = "";
2802 char *ptr = buf;
2803 const char *end = buf + len;
2804
2805 buf[len - 1] = '\0';
2806 while (ptr < end) {
2807 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
2808 ptr += strlen("ACTION=");
2809 ret.action = ptr;
2810 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
2811 ptr += strlen("SUBSYSTEM=");
2812 ret.subsystem = ptr;
2813 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
2814 ptr += strlen("DEVTYPE=");
2815 ret.type = ptr;
2816 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
2817 ptr += strlen("DEVPATH=");
2818 ret.sysfs_path += ptr;
2819 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
2820 ptr += strlen("DEVNAME=");
2821 ret.block_device += ptr;
2822 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
2823 ptr += strlen("MAJOR=");
2824 ret.major = atoi(ptr);
2825 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
2826 ptr += strlen("MINOR=");
2827 ret.minor = atoi(ptr);
2828 }
2829 ptr += strlen(ptr) + 1;
2830 }
2831 return ret;
2832}
2833
2834void TWPartitionManager::read_uevent() {
2835 char buf[1024];
2836
2837 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
2838 if (len == -1) {
2839 LOGERR("recv error on uevent\n");
2840 return;
2841 }
2842 /*int i = 0; // Print all uevent output for test /debug
2843 while (i<len) {
2844 printf("%s\n", buf+i);
2845 i += strlen(buf+i)+1;
2846 }*/
2847 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
2848 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
2849 PartitionManager.Handle_Uevent(uevent_data);
2850 }
2851}
2852
2853void TWPartitionManager::close_uevent() {
2854 if (uevent_pfd.fd > 0)
2855 close(uevent_pfd.fd);
2856 uevent_pfd.fd = -1;
2857}
2858
2859void TWPartitionManager::Add_Partition(TWPartition* Part) {
2860 Partitions.push_back(Part);
2861}
2862
2863void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
2864 string Real_Path = Path;
2865 char real_path[PATH_MAX];
2866 if (realpath(Path.c_str(), &real_path[0])) {
2867 string Real_Path = real_path;
2868 std::vector<string>::iterator iter;
2869 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
2870 if (Real_Path.find((*iter)) != string::npos) {
2871 string Write_Path = Real_Path + "/uevent";
2872 if (TWFunc::Path_Exists(Write_Path)) {
2873 const char* write_val = "add\n";
2874 TWFunc::write_to_file(Write_Path, write_val);
2875 break;
2876 }
2877 }
2878 }
2879 }
2880
2881 DIR* d = opendir(Path.c_str());
2882 if (d != NULL) {
2883 struct dirent* de;
2884 while ((de = readdir(d)) != NULL) {
2885 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
2886 continue;
2887 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
2888 continue;
2889
2890 string item = Path + "/";
2891 item.append(de->d_name);
2892 Coldboot_Scan(sysfs_entries, item, depth + 1);
2893 }
2894 closedir(d);
2895 }
2896}
2897
2898void TWPartitionManager::Coldboot() {
2899 std::vector<TWPartition*>::iterator iter;
2900 std::vector<string> sysfs_entries;
2901
2902 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2903 if (!(*iter)->Sysfs_Entry.empty()) {
2904 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
2905 if (wildcard_pos == string::npos)
2906 wildcard_pos = (*iter)->Sysfs_Entry.size();
2907 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
2908 }
2909 }
2910
2911 if (sysfs_entries.size() > 0)
2912 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
2913}