blob: bd5b85e293e77caf6ed3bf6aa22bc7d371a2ee11 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffaed1bdf2021-08-03 18:21:39 -04002 Copyright 2014 to 2021 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>
bigbiff25d25b92020-06-19 16:07:38 -040031#include <grp.h>
32#include <pwd.h>
bigbiffce8f83c2015-12-12 18:30:21 -050033#include <zlib.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050034#include <iostream>
35#include <iomanip>
Ethan Yonker8613dc02014-09-11 09:28:20 -050036#include <sys/wait.h>
Ethan Yonker483e9f42016-01-11 22:21:18 -060037#include <linux/fs.h>
38#include <sys/mount.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060039#include <sys/poll.h>
40#include <sys/socket.h>
bigbiffcfa875c2021-06-20 16:20:27 -040041#include <sys/stat.h>
42#include <sys/types.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060043#include <linux/types.h>
44#include <linux/netlink.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040045#include <android-base/chrono_utils.h>
46#include <android-base/file.h>
47#include <android-base/logging.h>
bigbiff7ba75002020-04-11 20:47:09 -040048#include <android-base/properties.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040049#include <android-base/strings.h>
50#include <fstab/fstab.h>
51#include <fs_avb/fs_avb.h>
52#include <fs_mgr.h>
53#include <fs_mgr_dm_linear.h>
54#include <fs_mgr_overlayfs.h>
bigbiffcfa875c2021-06-20 16:20:27 -040055#include <fs_mgr/roots.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040056#include <libgsi/libgsi.h>
57#include <liblp/liblp.h>
bigbiffcfa875c2021-06-20 16:20:27 -040058#include <libgsi/libgsi.h>
59#include <liblp/builder.h>
60#include <libsnapshot/snapshot.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060061
Dees_Troy51a0e822012-09-05 15:24:24 -040062#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000063#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040064#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040065#include "data.hpp"
bigbiffaed1bdf2021-08-03 18:21:39 -040066#include "startupArgs.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040067#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060068#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060069#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060070#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050071#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050072#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060073#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040074#include "twrpDigestDriver.hpp"
bigbiffad58e1b2020-07-06 20:24:34 -040075#include "twrpRepacker.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050076#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040077
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040078#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050079#ifdef TW_HAS_LEGACY_MTP
80#include "mtp/legacy/mtp_MtpServer.hpp"
81#include "mtp/legacy/twrpMtp.hpp"
82#include "mtp/legacy/MtpMessage.hpp"
83#else
84#include "mtp/ffs/mtp_MtpServer.hpp"
85#include "mtp/ffs/twrpMtp.hpp"
86#include "mtp/ffs/MtpMessage.hpp"
87#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040088#endif
89
Dees Troy6f6441d2014-01-23 02:07:03 +000090extern "C" {
91 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050092 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000093}
94
Dees_Troy5bf43922012-09-07 16:07:55 -040095#ifdef TW_INCLUDE_CRYPTO
bigbiff7ba75002020-04-11 20:47:09 -040096#include "crypto/fde/cryptfs.h"
97#include "gui/rapidxml.hpp"
98#include "gui/pages.hpp"
99#ifdef TW_INCLUDE_FBE
bigbiffa957f072021-03-07 18:20:29 -0500100#include "Decrypt.h"
bigbiff7ba75002020-04-11 20:47:09 -0400101#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
102 #ifdef USE_FSCRYPT
bigbiffa957f072021-03-07 18:20:29 -0500103 #include "MetadataCrypt.h"
bigbiffadc599e2020-05-28 19:36:30 +0000104 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400105#endif
106#endif
107#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
108#include "crypto/vold_decrypt/vold_decrypt.h"
109#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400110#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400111
Ethan Yonker1b190162016-12-05 15:25:19 -0600112#ifdef AB_OTA_UPDATER
dianlujitaoa90dc462021-12-16 16:56:26 +0800113#include <android/hardware/boot/1.0/IBootControl.h>
114using android::hardware::boot::V1_0::CommandResult;
115using android::hardware::boot::V1_0::IBootControl;
Ethan Yonker1b190162016-12-05 15:25:19 -0600116#endif
117
bigbiffcfa875c2021-06-20 16:20:27 -0400118using android::fs_mgr::DestroyLogicalPartition;
bigbiffee7b7ff2020-03-23 15:08:27 -0400119using android::fs_mgr::Fstab;
120using android::fs_mgr::FstabEntry;
bigbiffcfa875c2021-06-20 16:20:27 -0400121using android::fs_mgr::MetadataBuilder;
Ethan Yonker6277c792014-09-15 14:54:30 -0500122
bigbiffee7b7ff2020-03-23 15:08:27 -0400123extern bool datamedia;
Noah Jacobson81d638d2019-04-28 00:10:07 -0400124std::vector<users_struct> Users_List;
125
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500126TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400127 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600128 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600129 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500130 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600131#ifdef AB_OTA_UPDATER
132 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500133 property_get("ro.boot.slot_suffix", slot_suffix, "error");
134 if (strcmp(slot_suffix, "error") == 0)
135 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600136 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500137 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600138 Set_Active_Slot("A");
139 else
140 Set_Active_Slot("B");
141#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500142}
143
Captain Throwback37c3aef2021-10-06 11:38:18 -0400144void TWPartitionManager::Set_Crypto_State() {
145 char crypto_state[PROPERTY_VALUE_MAX];
146 property_get("ro.crypto.state", crypto_state, "error");
147 if (strcmp(crypto_state, "error") == 0)
148 property_set("ro.crypto.state", "encrypted");
149}
150
151int TWPartitionManager::Set_Crypto_Type(const char* crypto_type) {
152 char type_prop[PROPERTY_VALUE_MAX];
153 property_get("ro.crypto.type", type_prop, "error");
154 if (strcmp(type_prop, "error") == 0)
155 property_set("ro.crypto.type", crypto_type);
Captain Throwback18aea272020-10-29 12:43:17 -0400156 // Sleep for a bit so that services can start if needed
157 sleep(1);
158 return 0;
159}
160
bigbiff22851b92021-09-01 16:46:57 -0400161int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool recovery_mode) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400162 FILE *fstabFile;
163 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600164 std::map<string, Flags_Map> twrp_flags;
165
166 fstabFile = fopen("/etc/twrp.flags", "rt");
167 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200168 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600169 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600170 size_t line_size = strlen(fstab_line);
171 if (fstab_line[line_size - 1] != '\n')
172 fstab_line[line_size] = '\n';
173 Flags_Map line_flags;
174 line_flags.Primary_Block_Device = "";
175 line_flags.Alternate_Block_Device = "";
176 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
177 if (!line_flags.fstab_line) {
178 LOGERR("malloc error on line_flags.fstab_line\n");
179 return false;
180 }
181 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
182 bool found_separator = false;
183 char *fs_loc = NULL;
184 char *block_loc = NULL;
185 char *flags_loc = NULL;
186 size_t index, item_index = 0;
187 for (index = 0; index < line_size; index++) {
188 if (fstab_line[index] <= 32) {
189 fstab_line[index] = '\0';
190 found_separator = true;
191 } else if (found_separator) {
192 if (item_index == 0) {
193 fs_loc = fstab_line + index;
194 } else if (item_index == 1) {
195 block_loc = fstab_line + index;
196 } else if (item_index > 1) {
197 char *ptr = fstab_line + index;
198 if (*ptr == '/') {
199 line_flags.Alternate_Block_Device = ptr;
200 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
201 flags_loc = ptr;
202 // Once we find the flags=, we're done scanning the line
203 break;
204 }
205 }
206 found_separator = false;
207 item_index++;
208 }
209 }
210 if (block_loc)
211 line_flags.Primary_Block_Device = block_loc;
212 if (fs_loc)
213 line_flags.File_System = fs_loc;
214 if (flags_loc)
215 line_flags.Flags = flags_loc;
216 string Mount_Point = fstab_line;
217 twrp_flags[Mount_Point] = line_flags;
218 memset(fstab_line, 0, sizeof(fstab_line));
219 }
220 fclose(fstabFile);
221 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400222
223 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
224 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000225 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400226 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600227 } else
228 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400229
230 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600231 if (strstr(fstab_line, "swap"))
232 continue; // Skip swap in recovery
233
bigbiff998f8392021-08-06 19:19:33 -0400234 if (fstab_line[0] == '#')
235 continue;
236
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600237 size_t line_size = strlen(fstab_line);
238 if (fstab_line[line_size - 1] != '\n')
239 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400240
Matt Mower2b2dd152016-04-26 11:24:08 -0500241 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400242 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500243 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500244 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400245 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500246
247 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400248 }
249 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500250
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600251 if (twrp_flags.size() > 0) {
252 LOGINFO("Processing remaining twrp.flags\n");
253 // Add any items from twrp.flags that did not exist in the recovery.fstab
254 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
255 if (Find_Partition_By_Path(mapit->first) == NULL) {
256 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400257 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600258 Partitions.push_back(partition);
259 else
260 delete partition;
261 }
262 if (mapit->second.fstab_line)
263 free(mapit->second.fstab_line);
264 mapit->second.fstab_line = NULL;
265 }
266 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000267 if (Get_Super_Status()) {
268 Setup_Super_Devices();
269 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600270 LOGINFO("Done processing fstab files\n");
271
bigbiff22851b92021-09-01 16:46:57 -0400272 if (recovery_mode) {
273 Setup_Fstab_Partitions(Display_Error);
Mohd Faraze3948ec2020-08-14 01:40:59 +0000274 }
bigbiff7ba75002020-04-11 20:47:09 -0400275 return true;
276}
277
bigbiff22851b92021-09-01 16:46:57 -0400278void TWPartitionManager::Setup_Fstab_Partitions(bool Display_Error) {
279 TWPartition* settings_partition = NULL;
280 TWPartition* andsec_partition = NULL;
281 std::vector<TWPartition*>::iterator iter;
282 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
283
284 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
285 (*iter)->Partition_Post_Processing(Display_Error);
286
287 if ((*iter)->Is_Storage) {
288 ++storageid;
289 (*iter)->MTP_Storage_ID = storageid;
290 }
291
292 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
293 settings_partition = (*iter);
294 else
295 (*iter)->Is_Settings_Storage = false;
296
297 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
298 andsec_partition = (*iter);
299 else
300 (*iter)->Has_Android_Secure = false;
301
302 if ((*iter)->Is_Super)
303 Prepare_Super_Volume((*iter));
304 }
305
306 //Setup Apex before decryption
307 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
308 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
309 if (sys) {
310 if (sys->Get_Super_Status()) {
311 sys->Mount(true);
312 if (ven) {
313 ven->Mount(true);
314 }
315 #ifdef TW_EXCLUDE_APEX
316 LOGINFO("Apex is disabled in this build\n");
317 #else
318 twrpApex apex;
319 if (!apex.loadApexImages()) {
320 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
321 property_set("twrp.apex.loaded", "false");
322 } else {
323 property_set("twrp.apex.loaded", "true");
324 }
325 TWFunc::check_and_run_script("/sbin/resyncapex.sh", "apex");
326 #endif
327 }
328 }
329 #ifndef USE_VENDOR_LIBS
330 if (ven)
331 ven->UnMount(true);
332 if (sys)
333 sys->UnMount(true);
334 #endif
335
336 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) {
337 // Attempt to automatically identify /data/media emulated storage devices
338 TWPartition* Dat = Find_Partition_By_Path("/data");
339 if (Dat) {
340 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
341 datamedia = true;
342 Dat->Setup_Data_Media();
343 settings_partition = Dat;
344 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
345 ++storageid;
346 Dat->MTP_Storage_ID = storageid;
347 }
348 }
349 if (!settings_partition) {
350 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
351 if ((*iter)->Is_Storage) {
352 settings_partition = (*iter);
353 break;
354 }
355 }
356 if (!settings_partition)
357 LOGERR("Unable to locate storage partition for storing settings file.\n");
358 }
359 if (!Write_Fstab()) {
360 if (Display_Error)
361 LOGERR("Error creating fstab\n");
362 else
363 LOGINFO("Error creating fstab\n");
364 }
365
366 if (andsec_partition) {
367 Setup_Android_Secure_Location(andsec_partition);
368 } else if (settings_partition) {
369 Setup_Android_Secure_Location(settings_partition);
370 }
371 if (settings_partition) {
372 Setup_Settings_Storage_Partition(settings_partition);
373 }
374
375 #ifdef TW_INCLUDE_CRYPTO
376 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
377 Decrypt_Data();
378 #endif
379
380 Update_System_Details();
381 if (Get_Super_Status())
382 Setup_Super_Partition();
383 UnMount_Main_Partitions();
384 #ifdef AB_OTA_UPDATER
385 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
386 #endif
387 setup_uevent();
388}
389
bigbiff7ba75002020-04-11 20:47:09 -0400390int TWPartitionManager::Write_Fstab(void) {
391 FILE *fp;
392 std::vector<TWPartition*>::iterator iter;
393 string Line;
394
395 fp = fopen("/etc/fstab", "w");
396 if (fp == NULL) {
397 LOGINFO("Can not open /etc/fstab.\n");
398 return false;
399 }
400 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
401 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530402 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
403 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400404 fputs(Line.c_str(), fp);
405 }
406 // Handle subpartition tracking
407 if ((*iter)->Is_SubPartition) {
408 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
409 if (ParentPartition)
410 ParentPartition->Has_SubPartition = true;
411 else
412 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
413 }
414 }
415 fclose(fp);
416 return true;
417}
418
419void TWPartitionManager::Decrypt_Data() {
420 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600421 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
422 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Captain Throwback37c3aef2021-10-06 11:38:18 -0400423 Set_Crypto_State();
bigbiff4fa02b52021-12-30 17:01:44 -0500424 TWPartition* Key_Directory_Partition = Find_Partition_By_Path(Decrypt_Data->Key_Directory);
425 if (Key_Directory_Partition != nullptr)
426 if (!Key_Directory_Partition->Is_Mounted())
427 Mount_By_Path(Decrypt_Data->Key_Directory, false);
428 if (!Decrypt_Data->Key_Directory.empty()) {
429 Set_Crypto_Type("file");
Ethan Yonker93382822018-11-01 15:25:31 -0500430#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400431#ifdef USE_FSCRYPT
432 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
bigbiffa957f072021-03-07 18:20:29 -0500433 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000434 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400435 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400436#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500437 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
438 int retry_count = 10;
439 while (!Decrypt_Data->Mount(false) && --retry_count)
440 usleep(500);
441 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400442 if (!Decrypt_Data->Decrypt_FBE_DE()) {
bigbiff437d86f2021-09-26 16:57:14 -0400443 LOGERR("Unable to decrypt FBE device\n");
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400444 }
445
Ethan Yonker93382822018-11-01 15:25:31 -0500446 } else {
447 LOGINFO("Failed to mount data after metadata decrypt\n");
448 }
449 } else {
450 LOGINFO("Unable to decrypt metadata encryption\n");
451 }
452#else
453 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
454#endif
455 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600456 if (Decrypt_Data->Is_FBE) {
457 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
458 if (Decrypt_Device("!") == 0) {
459 gui_msg("decrypt_success=Successfully decrypted with default password.");
460 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
461 } else {
462 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
463 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600464 }
465 } else {
bigbiffbbbfe172021-05-30 15:52:41 -0400466 LOGINFO("FBE setup failed. Trying FDE...");
Captain Throwback37c3aef2021-10-06 11:38:18 -0400467 Set_Crypto_State();
468 Set_Crypto_Type("block");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600469 int password_type = cryptfs_get_password_type();
470 if (password_type == CRYPT_TYPE_DEFAULT) {
471 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
472 if (Decrypt_Device("default_password") == 0) {
473 gui_msg("decrypt_success=Successfully decrypted with default password.");
474 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
475 } else {
476 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
477 }
478 } else {
479 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400480 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600481 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600482 }
483 }
bigbiff4fa02b52021-12-30 17:01:44 -0500484 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600485 Decrypt_Adopted();
486 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600487#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400488}
489
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500490void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500491 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
492 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
493 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
494}
495
Matt Mowerbf4efa32014-04-14 23:25:26 -0500496void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
497 if (Part->Has_Android_Secure)
498 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500499 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500500 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500501}
502
Dees_Troy8170a922012-09-18 15:40:25 -0400503void TWPartitionManager::Output_Partition_Logging(void) {
504 std::vector<TWPartition*>::iterator iter;
505
506 printf("\n\nPartition Logs:\n");
507 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
508 Output_Partition((*iter));
509}
510
511void TWPartitionManager::Output_Partition(TWPartition* Part) {
512 unsigned long long mb = 1048576;
513
Gary Peck004d48b2012-11-21 16:28:18 -0800514 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 -0400515 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800516 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 -0400517 }
Gary Peck004d48b2012-11-21 16:28:18 -0800518 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500519 if (Part->Can_Be_Mounted)
520 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800521 if (Part->Can_Be_Wiped)
522 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700523 if (Part->Use_Rm_Rf)
524 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500525 if (Part->Can_Be_Backed_Up)
526 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800527 if (Part->Wipe_During_Factory_Reset)
528 printf("Wipe_During_Factory_Reset ");
529 if (Part->Wipe_Available_in_GUI)
530 printf("Wipe_Available_in_GUI ");
531 if (Part->Is_SubPartition)
532 printf("Is_SubPartition ");
533 if (Part->Has_SubPartition)
534 printf("Has_SubPartition ");
535 if (Part->Removable)
536 printf("Removable ");
537 if (Part->Is_Present)
538 printf("IsPresent ");
539 if (Part->Can_Be_Encrypted)
540 printf("Can_Be_Encrypted ");
541 if (Part->Is_Encrypted)
542 printf("Is_Encrypted ");
543 if (Part->Is_Decrypted)
544 printf("Is_Decrypted ");
545 if (Part->Has_Data_Media)
546 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000547 if (Part->Can_Encrypt_Backup)
548 printf("Can_Encrypt_Backup ");
549 if (Part->Use_Userdata_Encryption)
550 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800551 if (Part->Has_Android_Secure)
552 printf("Has_Android_Secure ");
553 if (Part->Is_Storage)
554 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500555 if (Part->Is_Settings_Storage)
556 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000557 if (Part->Ignore_Blkid)
558 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600559 if (Part->Mount_To_Decrypt)
560 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600561 if (Part->Can_Flash_Img)
562 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600563 if (Part->Is_Adopted_Storage)
564 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600565 if (Part->SlotSelect)
566 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600567 if (Part->Mount_Read_Only)
568 printf("Mount_Read_Only ");
bigbiffcfa875c2021-06-20 16:20:27 -0400569 if (Part->Is_Super)
570 printf("Is_Super ");
Gary Peck004d48b2012-11-21 16:28:18 -0800571 printf("\n");
572 if (!Part->SubPartition_Of.empty())
573 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
574 if (!Part->Symlink_Path.empty())
575 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
576 if (!Part->Symlink_Mount_Point.empty())
577 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
578 if (!Part->Primary_Block_Device.empty())
579 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
580 if (!Part->Alternate_Block_Device.empty())
581 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
582 if (!Part->Decrypted_Block_Device.empty())
583 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800584 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600585 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800586 if (Part->Length != 0)
587 printf(" Length: %i\n", Part->Length);
588 if (!Part->Display_Name.empty())
589 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500590 if (!Part->Storage_Name.empty())
591 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800592 if (!Part->Backup_Path.empty())
593 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
594 if (!Part->Backup_Name.empty())
595 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500596 if (!Part->Backup_Display_Name.empty())
597 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800598 if (!Part->Backup_FileName.empty())
599 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
600 if (!Part->Storage_Path.empty())
601 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
602 if (!Part->Current_File_System.empty())
603 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
604 if (!Part->Fstab_File_System.empty())
605 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
606 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500607 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400608 if (!Part->MTD_Name.empty())
609 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600610 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800611 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600612 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600613 if (Part->MTP_Storage_ID)
614 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500615 if (!Part->Key_Directory.empty())
616 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500617 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400618}
619
Dees_Troy51a0e822012-09-05 15:24:24 -0400620int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400621 std::vector<TWPartition*>::iterator iter;
622 int ret = false;
623 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400624 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400625
bigbiffd58ba182020-03-23 10:02:29 -0400626 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400627 return true;
628
Dees_Troy5bf43922012-09-07 16:07:55 -0400629 // Iterate through all partitions
630 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400631 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400632 ret = (*iter)->Mount(Display_Error);
633 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400634 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400635 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400636 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400637 }
638 if (found) {
639 return ret;
640 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500641 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 -0400642 }
643 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400644}
645
Dees_Troy51a0e822012-09-05 15:24:24 -0400646int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400647 std::vector<TWPartition*>::iterator iter;
648 int ret = false;
649 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400650 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400651
652 // Iterate through all partitions
653 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400654 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400655 ret = (*iter)->UnMount(Display_Error);
656 found = true;
657 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
658 (*iter)->UnMount(Display_Error);
659 }
660 }
661 if (found) {
662 return ret;
663 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500664 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 -0400665 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000666 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400667 }
668 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400669}
670
Dees_Troy51a0e822012-09-05 15:24:24 -0400671int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400672 TWPartition* Part = Find_Partition_By_Path(Path);
673
674 if (Part)
675 return Part->Is_Mounted();
676 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000677 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400678 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400679}
680
Dees_Troy5bf43922012-09-07 16:07:55 -0400681int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400682 string current_storage_path = DataManager::GetCurrentStoragePath();
683
684 if (Mount_By_Path(current_storage_path, Display_Error)) {
685 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
686 if (FreeStorage)
687 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
688 return true;
689 }
690 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400691}
692
Dees_Troy5bf43922012-09-07 16:07:55 -0400693int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
694 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
695}
696
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600697TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400698 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400699 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400700
dianlujitaob76a73a2020-04-30 20:33:20 +0800701 if (Local_Path == "/system")
702 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400703 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400704 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400705 return (*iter);
706 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400707 return NULL;
708}
709
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600710TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
711 std::vector<TWPartition*>::iterator iter;
712
713 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
714 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
715 return (*iter);
716 }
717 return NULL;
718}
719
Ethan Yonker53796e72019-01-11 22:49:52 -0600720int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400721 // Check the backup name to ensure that it is the correct size and contains only valid characters
722 // and that a backup with that name doesn't already exist
723 char backup_name[MAX_BACKUP_NAME_LEN];
724 char backup_loc[255], tw_image_dir[255];
725 int copy_size;
726 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600727 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400728
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400729 copy_size = Backup_Name.size();
730 // Check size
731 if (copy_size > MAX_BACKUP_NAME_LEN) {
732 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500733 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400734 return -2;
735 }
736
737 // Check each character
738 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500739 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400740 return 0; // A "0" (zero) means to use the current timestamp for the backup name
741 for (index=0; index<copy_size; index++) {
742 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500743 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 -0400744 // These are valid characters
745 // Numbers
746 // Upper case letters
747 // Lower case letters
748 // Space
749 // and -_.{}[]
750 } else {
751 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600752 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 -0400753 return -3;
754 }
755 }
756
Ethan Yonker53796e72019-01-11 22:49:52 -0600757 if (Must_Be_Unique) {
758 // Check to make sure that a backup with this name doesn't already exist
759 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
760 strcpy(backup_loc, Backup_Loc.c_str());
761 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
762 if (TWFunc::Path_Exists(tw_image_dir)) {
763 if (Display_Error)
764 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500765
Ethan Yonker53796e72019-01-11 22:49:52 -0600766 return -4;
767 }
768 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400769 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600770 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400771 return 0;
772}
773
bigbiffce8f83c2015-12-12 18:30:21 -0500774bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400775 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600776 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500777 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400778
bigbiffce8f83c2015-12-12 18:30:21 -0500779 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400780 return true;
781
Dees_Troy093b7642012-09-21 15:59:38 -0400782 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400783
Tom Hite5a926722014-09-15 01:31:03 +0000784 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400785 time(&start);
786
bigbiffce8f83c2015-12-12 18:30:21 -0500787 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500788 sync();
789 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400790 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500791 if (!part_settings->adbbackup && part_settings->generate_digest) {
792 if (!twrpDigestDriver::Make_Digest(Full_Filename))
793 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400794 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400795
bigbiffce8f83c2015-12-12 18:30:21 -0500796 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400797 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400798 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400799
800 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400801 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500802 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500803 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500804 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000805 }
Dees_Troy2727b992013-08-14 20:09:30 +0000806 sync();
807 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400808 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400809 if (!part_settings->adbbackup && part_settings->generate_digest) {
810 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500811 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500812 }
Tom Hite5a926722014-09-15 01:31:03 +0000813 }
Dees_Troy8170a922012-09-18 15:40:25 -0400814 }
815 }
816 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400817
Dees_Troy43d8b002012-09-17 16:00:01 -0400818 time(&stop);
that203bcc92015-05-09 17:27:33 +0200819 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000820 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400821
bigbiffce8f83c2015-12-12 18:30:21 -0500822 if (part_settings->Part->Backup_Method == BM_FILES) {
823 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400824 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500825 part_settings->img_time += backup_time;
826
Dees_Troy43d8b002012-09-17 16:00:01 -0400827 }
Tom Hite5a926722014-09-15 01:31:03 +0000828
Matt Mower02899552016-12-30 18:13:51 -0600829 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500830 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400831 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500832backup_error:
833 Clean_Backup_Folder(part_settings->Backup_Folder);
834 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
835 tw_set_default_metadata(backup_log.c_str());
836 TWFunc::SetPerformanceMode(false);
837 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500838}
839
bigbiffbf1d6722015-02-14 16:25:59 -0500840void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
841 DIR *d = opendir(Backup_Folder.c_str());
842 struct dirent *p;
843 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400844 vector<string> ext;
845
846 //extensions we should delete when cleaning
847 ext.push_back("win");
848 ext.push_back("md5");
849 ext.push_back("sha2");
850 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500851
Ethan Yonker74db1572015-10-28 12:44:49 -0500852 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500853
854 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500855 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500856 return;
857 }
858
Matt Mower2b18a532015-02-20 16:58:05 -0600859 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500860 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
861 continue;
862
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500863 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500864
865 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400866 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
867 if (path.substr(dot) == *i) {
868 r = unlink(path.c_str());
869 if (r != 0)
870 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500871 }
872 }
873 }
874 closedir(d);
875}
876
Ethan Yonker472f5062016-02-25 13:47:30 -0600877int TWPartitionManager::Check_Backup_Cancel() {
878 return stop_backup.get_value();
879}
880
bigbiff7abc5fe2015-01-17 16:53:12 -0500881int TWPartitionManager::Cancel_Backup() {
882 string Backup_Folder, Backup_Name, Full_Backup_Path;
883
884 stop_backup.set_value(1);
885
886 if (tar_fork_pid != 0) {
887 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
888 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500889 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500890 LOGINFO("Killing pid: %d\n", tar_fork_pid);
891 kill(tar_fork_pid, SIGUSR2);
892 while (kill(tar_fork_pid, 0) == 0) {
893 usleep(1000);
894 }
895 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
896 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
897 TWFunc::removeDir(Full_Backup_Path, false);
898 tar_fork_pid = 0;
899 }
900
901 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400902}
903
bigbiffce8f83c2015-12-12 18:30:21 -0500904int TWPartitionManager::Run_Backup(bool adbbackup) {
905 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400906 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500907 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600908 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400909 TWPartition* storage = NULL;
910 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600911 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500912 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500913 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400914 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500915 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400916
bigbiffce8f83c2015-12-12 18:30:21 -0500917 part_settings.img_bytes_remaining = 0;
918 part_settings.file_bytes_remaining = 0;
919 part_settings.img_time = 0;
920 part_settings.file_time = 0;
921 part_settings.img_bytes = 0;
922 part_settings.file_bytes = 0;
923 part_settings.PM_Method = PM_BACKUP;
924
bigbiffce8f83c2015-12-12 18:30:21 -0500925 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400926 time(&total_start);
927
928 Update_System_Details();
929
930 if (!Mount_Current_Storage(true))
931 return false;
932
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400933 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
934 if (skip_digest == 0)
935 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400936 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400937 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400938
bigbiffce8f83c2015-12-12 18:30:21 -0500939 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500940 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
941 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
942 Backup_Name = TWFunc::Get_Current_Date();
943 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000944 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500945 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400946 }
bigbiffce8f83c2015-12-12 18:30:21 -0500947
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500948 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500949 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500950
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500951 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400952
Dees_Troy2673cec2013-04-02 20:22:16 +0000953 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500954 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400955 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500956 if (!Backup_List.empty()) {
957 end_pos = Backup_List.find(";", start_pos);
958 while (end_pos != string::npos && start_pos < Backup_List.size()) {
959 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400960 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500961 part_settings.Part = Find_Partition_By_Path(backup_path);
962 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500963 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500964 if (part_settings.Part->Backup_Method == BM_FILES)
965 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500966 else
bigbiffce8f83c2015-12-12 18:30:21 -0500967 part_settings.img_bytes += part_settings.Part->Backup_Size;
968 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500969 std::vector<TWPartition*>::iterator subpart;
970
971 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500972 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 -0500973 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500974 if ((*subpart)->Backup_Method == BM_FILES)
975 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500976 else
bigbiffce8f83c2015-12-12 18:30:21 -0500977 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500978 }
979 }
Dees_Troy8170a922012-09-18 15:40:25 -0400980 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500981 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500982 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 -0400983 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500984 start_pos = end_pos + 1;
985 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400986 }
987 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400988
989 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500990 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400991 return false;
992 }
bigbiffce8f83c2015-12-12 18:30:21 -0500993 if (adbbackup) {
994 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
995 return false;
996 }
997 }
998 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600999 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -05001000 part_settings.progress = &progress;
1001
Ethan Yonker74db1572015-10-28 12:44:49 -05001002 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
1003 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001004 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1005 if (storage != NULL) {
1006 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -05001007 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001008 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001009 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -04001010 return false;
1011 }
bigbiffbf1d6722015-02-14 16:25:59 -05001012
Matt Mowerbfccfb82016-04-25 23:22:31 -05001013 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -05001014
1015 if (adbbackup)
1016 disable_free_space_check = true;
1017
bigbiffbf1d6722015-02-14 16:25:59 -05001018 if (!disable_free_space_check) {
1019 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1020 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001021 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001022 return false;
1023 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001024 }
bigbiffce8f83c2015-12-12 18:30:21 -05001025 part_settings.img_bytes_remaining = part_settings.img_bytes;
1026 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001027
Ethan Yonker74db1572015-10-28 12:44:49 -05001028 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001029
1030 int is_decrypted = 0;
1031 int is_encrypted = 0;
1032
1033 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1034 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1035 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1036 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1037 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1038 gui_err("fail_backup_folder=Failed to make backup folder.");
1039 return false;
1040 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001041 }
1042
Dees_Troy2673cec2013-04-02 20:22:16 +00001043 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001044
Dees_Troya13d74f2013-03-24 08:54:55 -05001045 start_pos = 0;
1046 end_pos = Backup_List.find(";", start_pos);
1047 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001048 if (stop_backup.get_value() != 0)
1049 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001050 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001051 part_settings.Part = Find_Partition_By_Path(backup_path);
1052 if (part_settings.Part != NULL) {
1053 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001054 return false;
1055 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001056 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 -05001057 }
1058 start_pos = end_pos + 1;
1059 end_pos = Backup_List.find(";", start_pos);
1060 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001061
1062 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001063 if (part_settings.img_time == 0)
1064 part_settings.img_time = 1;
1065 if (part_settings.file_time == 0)
1066 part_settings.file_time = 1;
1067 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1068 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001069
bigbiffce8f83c2015-12-12 18:30:21 -05001070 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001071 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 -05001072 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001073 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 -04001074
1075 time(&total_stop);
1076 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001077
1078 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001079 if (!adbbackup) {
1080 TWExclude twe;
1081 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1082 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001083 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001084 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001085
bigbiffce8f83c2015-12-12 18:30:21 -05001086 int prev_img_bps = 0, use_compression = 0;
1087 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001088 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001089 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001090 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001091
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001092 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001093 if (use_compression)
1094 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001095 else
Dees_Troy093b7642012-09-21 15:59:38 -04001096 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1097 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001098 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001099
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001100 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001101 if (use_compression)
1102 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1103 else
1104 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1105
Ethan Yonker74db1572015-10-28 12:44:49 -05001106 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001107 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001108 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001109 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001110 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001111 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001112 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001113
1114 if (part_settings.adbbackup) {
1115 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1116 return false;
1117 }
1118 }
1119 part_settings.adbbackup = false;
1120 DataManager::SetValue("tw_enable_adb_backup", 0);
1121
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001122 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001123}
1124
bigbiffce8f83c2015-12-12 18:30:21 -05001125bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001126 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001127
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001128 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001129 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1130 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001131 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1132 }
1133
Tom Hite5a926722014-09-15 01:31:03 +00001134 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001135
Dees_Troy4a2a1262012-09-18 09:33:47 -04001136 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001137
bigbiffce8f83c2015-12-12 18:30:21 -05001138 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001139 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001140 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001141 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001142 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001143 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001144 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001145
1146 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001147 part_settings->Part = *subpart;
1148 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1149 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001150 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001151 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001152 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001153 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001154 }
Dees_Troy8170a922012-09-18 15:40:25 -04001155 }
1156 }
1157 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001158 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001159 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001160 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1161
Dees_Troy4a2a1262012-09-18 09:33:47 -04001162 return true;
1163}
1164
Ethan Yonker472f5062016-02-25 13:47:30 -06001165int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001166 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001167 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001168
Dees_Troy4a2a1262012-09-18 09:33:47 -04001169 time_t rStart, rStop;
1170 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001171 string Restore_List, restore_path;
1172 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001173
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001174 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001175 part_settings.Part = NULL;
1176 part_settings.partition_count = 0;
1177 part_settings.total_restore_size = 0;
1178 part_settings.adbbackup = false;
1179 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001180
Ethan Yonker74db1572015-10-28 12:44:49 -05001181 gui_msg("restore_started=[RESTORE STARTED]");
1182 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001183
Dees_Troy4a2a1262012-09-18 09:33:47 -04001184 if (!Mount_Current_Storage(true))
1185 return false;
1186
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001187 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1188 if (check_digest > 0) {
1189 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1190 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1191 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001192 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001193 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001194 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001195 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001196 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001197
Dees_Troya13d74f2013-03-24 08:54:55 -05001198 if (!Restore_List.empty()) {
1199 end_pos = Restore_List.find(";", start_pos);
1200 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1201 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001202 part_settings.Part = Find_Partition_By_Path(restore_path);
1203 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001204 if (part_settings.Part->Mount_Read_Only) {
1205 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 -05001206 return false;
1207 }
bigbiffce8f83c2015-12-12 18:30:21 -05001208
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001209 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1210
bigbiff4a60bee2021-01-23 14:08:03 -05001211 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1212 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1213 }
1214
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001215 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001216 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001217 part_settings.partition_count++;
1218 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1219 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001220 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001221 std::vector<TWPartition*>::iterator subpart;
1222
1223 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001224 part_settings.Part = *subpart;
1225 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001226 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001227 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001228 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001229 }
1230 }
1231 }
1232 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001233 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001234 }
1235 start_pos = end_pos + 1;
1236 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001237 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001238 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001239
bigbiffce8f83c2015-12-12 18:30:21 -05001240 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001241 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001242 return false;
1243 }
1244
bigbiffce8f83c2015-12-12 18:30:21 -05001245 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1246 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 +00001247 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001248 ProgressTracking progress(part_settings.total_restore_size);
1249 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001250
Dees_Troya13d74f2013-03-24 08:54:55 -05001251 start_pos = 0;
1252 if (!Restore_List.empty()) {
1253 end_pos = Restore_List.find(";", start_pos);
1254 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1255 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001256
1257 part_settings.Part = Find_Partition_By_Path(restore_path);
1258 if (part_settings.Part != NULL) {
1259 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001260 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001261 return false;
1262 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001263 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001264 }
1265 start_pos = end_pos + 1;
1266 end_pos = Restore_List.find(";", start_pos);
1267 }
1268 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001269 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001270 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001271 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001272 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001273 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001274 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001275 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
bigbiff8f5fad32021-11-03 20:39:02 -04001276 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
1277 if (Decrypt_Data && Decrypt_Data->Is_Encrypted)
1278 gui_msg(Msg(msg::kWarning, "reboot_after_restore=It is recommended to reboot Android once after first boot."));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001279 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001280
Dees_Troy63c8df72012-09-10 14:02:05 -04001281 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001282}
1283
1284void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001285 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001286 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001287 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001288 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001289
1290 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001291 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1292 vector<string> adb_files;
1293 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1294 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1295 string adb_restore_file = adb_files.at(i);
1296 std::size_t pos = adb_restore_file.find_first_of(".");
1297 std::string path = "/" + adb_restore_file.substr(0, pos);
1298 Restore_List = path + ";";
1299 TWPartition* Part = Find_Partition_By_Path(path);
1300 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1301 adbbackup = true;
1302 }
1303 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001304 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001305 else {
1306 DIR* d;
1307 d = opendir(Restore_Name.c_str());
1308 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001309 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001310 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1311 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001312 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001313
1314 struct dirent* de;
1315 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001316 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001317 // Strip off three components
1318 char str[256];
1319 char* label;
1320 char* fstype = NULL;
1321 char* extn = NULL;
1322 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001323
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001324 strcpy(str, de->d_name);
1325 if (strlen(str) <= 2)
1326 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001327
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001328 if (get_date) {
1329 char file_path[255];
1330 struct stat st;
1331
1332 strcpy(file_path, Restore_Name.c_str());
1333 strcat(file_path, "/");
1334 strcat(file_path, str);
1335 stat(file_path, &st);
1336 string backup_date = ctime((const time_t*)(&st.st_mtime));
1337 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1338 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001339 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001340
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001341 label = str;
1342 ptr = label;
1343 while (*ptr && *ptr != '.') ptr++;
1344 if (*ptr == '.')
1345 {
1346 *ptr = 0x00;
1347 ptr++;
1348 fstype = ptr;
1349 }
1350 while (*ptr && *ptr != '.') ptr++;
1351 if (*ptr == '.')
1352 {
1353 *ptr = 0x00;
1354 ptr++;
1355 extn = ptr;
1356 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001357
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001358 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1359 int extnlength = strlen(extn);
1360 if (extnlength != 3 && extnlength != 6) continue;
1361 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1362 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001363
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001364 if (check_encryption) {
1365 string filename = Restore_Name + "/";
1366 filename += de->d_name;
1367 if (TWFunc::Get_File_Type(filename) == 2) {
1368 LOGINFO("'%s' is encrypted\n", filename.c_str());
1369 DataManager::SetValue("tw_restore_encrypted", 1);
1370 }
1371 }
1372 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1373
1374 TWPartition* Part = Find_Partition_By_Path(label);
1375 if (Part == NULL)
1376 {
1377 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1378 continue;
1379 }
1380
1381 Part->Backup_FileName = de->d_name;
1382 if (strlen(extn) > 3) {
1383 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1384 }
1385
dianlujitaob76a73a2020-04-30 20:33:20 +08001386 if (!Part->Is_SubPartition) {
1387 if (Part->Backup_Path == Get_Android_Root_Path())
1388 Restore_List += "/system;";
1389 else
1390 Restore_List += Part->Backup_Path + ";";
1391 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001392 }
1393 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001394 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001395
1396 if (adbbackup) {
1397 Restore_List = "ADB_Backup;";
1398 adbbackup = false;
1399 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001400
Dees_Troya13d74f2013-03-24 08:54:55 -05001401 // Set the final value
1402 DataManager::SetValue("tw_restore_list", Restore_List);
1403 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001404 return;
1405}
1406
1407int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001408 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301409 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001410 int ret = false;
1411 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001412 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001413
dianlujitaob76a73a2020-04-30 20:33:20 +08001414 if (Local_Path == "/system")
1415 Local_Path = Get_Android_Root_Path();
bigbiffaed1bdf2021-08-03 18:21:39 -04001416 if (Path == "/cache") {
1417 TWPartition* cache = Find_Partition_By_Path("/cache");
1418 if (cache == nullptr) {
1419 TWPartition* dat = Find_Partition_By_Path("/data");
1420 if (dat) {
1421 dat->Wipe_Data_Cache();
1422 found = true;
1423 }
1424 }
1425 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001426 // Iterate through all partitions
1427 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001428 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301429 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1430 (*iter)->Find_Actual_Block_Device();
1431 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1432 {
1433 (*iter1)->Find_Actual_Block_Device();
1434 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1435 (*iter1)->UnMount(false);
1436 }
Dees_Troye58d5262012-09-21 12:27:57 -04001437 if (Path == "/and-sec")
1438 ret = (*iter)->Wipe_AndSec();
1439 else
1440 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001441 found = true;
1442 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1443 (*iter)->Wipe();
1444 }
1445 }
1446 if (found) {
1447 return ret;
1448 } else
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));
Dees_Troy63c8df72012-09-10 14:02:05 -04001450 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001451}
1452
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001453int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1454 std::vector<TWPartition*>::iterator iter;
1455 int ret = false;
1456 bool found = false;
1457 string Local_Path = TWFunc::Get_Root_Path(Path);
1458
1459 // Iterate through all partitions
1460 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1461 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1462 if (Path == "/and-sec")
1463 ret = (*iter)->Wipe_AndSec();
1464 else
1465 ret = (*iter)->Wipe(New_File_System);
1466 found = true;
1467 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1468 (*iter)->Wipe(New_File_System);
1469 }
1470 }
1471 if (found) {
1472 return ret;
1473 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001474 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 -05001475 return false;
1476}
1477
Dees_Troy51a0e822012-09-05 15:24:24 -04001478int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001479 std::vector<TWPartition*>::iterator iter;
1480 int ret = true;
1481
1482 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001483 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001484#ifdef TW_OEM_BUILD
1485 if ((*iter)->Mount_Point == "/data") {
1486 if (!(*iter)->Wipe_Encryption())
1487 ret = false;
1488 } else {
1489#endif
1490 if (!(*iter)->Wipe())
1491 ret = false;
1492#ifdef TW_OEM_BUILD
1493 }
1494#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001495 } else if ((*iter)->Has_Android_Secure) {
1496 if (!(*iter)->Wipe_AndSec())
1497 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001498 }
1499 }
bigbiffad58e1b2020-07-06 20:24:34 -04001500 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001501 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001502}
1503
Dees_Troy38bd7602012-09-14 13:33:53 -04001504int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1505 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001506 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001507
1508 if (!Mount_By_Path("/data", true))
1509 return false;
1510
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001511 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001512
bigbiff25d25b92020-06-19 16:07:38 -04001513 std::string cacheDir = TWFunc::get_log_dir();
1514 if (cacheDir == CACHE_LOGS_DIR) {
1515 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1516 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001517 }
1518 dir.push_back(cacheDir + "dalvik-cache");
1519 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001520 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001521
Dees_Troy38bd7602012-09-14 13:33:53 -04001522 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001523 if (sdext && sdext->Is_Present && sdext->Mount(false))
1524 {
1525 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1526 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001527 dir.push_back("/sd-ext/dalvik-cache");
1528 }
1529 }
1530
bigbiff25d25b92020-06-19 16:07:38 -04001531 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001532 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1533 } else {
1534 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1535 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001536 for (unsigned i = 0; i < dir.size(); ++i) {
1537 if (stat(dir.at(i).c_str(), &st) == 0) {
1538 TWFunc::removeDir(dir.at(i), false);
1539 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001540 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001541 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001542
bigbiff25d25b92020-06-19 16:07:38 -04001543 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001544 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1545 } else {
1546 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1547 }
1548
Dees_Troy38bd7602012-09-14 13:33:53 -04001549 return true;
1550}
1551
1552int TWPartitionManager::Wipe_Rotate_Data(void) {
1553 if (!Mount_By_Path("/data", true))
1554 return false;
1555
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001556 unlink("/data/misc/akmd*");
1557 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001558 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001559 return true;
1560}
1561
1562int TWPartitionManager::Wipe_Battery_Stats(void) {
1563 struct stat st;
1564
1565 if (!Mount_By_Path("/data", true))
1566 return false;
1567
1568 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001569 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001570 } else {
1571 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001572 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001573 }
1574 return true;
1575}
1576
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001577int TWPartitionManager::Wipe_Android_Secure(void) {
1578 std::vector<TWPartition*>::iterator iter;
1579 int ret = false;
1580 bool found = false;
1581
1582 // Iterate through all partitions
1583 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1584 if ((*iter)->Has_Android_Secure) {
1585 ret = (*iter)->Wipe_AndSec();
1586 found = true;
1587 }
1588 }
1589 if (found) {
1590 return ret;
1591 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001592 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001593 }
1594 return false;
1595}
1596
Dees_Troy38bd7602012-09-14 13:33:53 -04001597int TWPartitionManager::Format_Data(void) {
1598 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffcfa875c2021-06-20 16:20:27 -04001599 TWPartition* metadata = Find_Partition_By_Path("/metadata");
1600 if (metadata != NULL)
1601 metadata->UnMount(false);
Dees_Troy38bd7602012-09-14 13:33:53 -04001602
1603 if (dat != NULL) {
bigbiffab76bd72021-10-11 10:17:48 -04001604 if (android::base::GetBoolProperty("ro.virtual_ab.enabled", false)) {
bigbiffcfa875c2021-06-20 16:20:27 -04001605#ifndef TW_EXCLUDE_APEX
1606 twrpApex apex;
1607 apex.Unmount();
1608#endif
1609 if (metadata != NULL)
1610 metadata->Mount(true);
bigbiffd21252f2021-09-18 15:56:32 -04001611 if (!Check_Pending_Merges())
bigbiffcfa875c2021-06-20 16:20:27 -04001612 return false;
1613 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001614 return dat->Wipe_Encryption();
1615 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001616 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001617 return false;
1618 }
1619 return false;
1620}
1621
1622int TWPartitionManager::Wipe_Media_From_Data(void) {
1623 TWPartition* dat = Find_Partition_By_Path("/data");
1624
1625 if (dat != NULL) {
1626 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001627 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001628 return false;
1629 }
1630 if (!dat->Mount(true))
1631 return false;
1632
Ethan Yonker74db1572015-10-28 12:44:49 -05001633 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001634 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001635 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001636 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001637 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001638 return true;
1639 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001640 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001641 return false;
1642 }
1643 return false;
1644}
1645
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001646int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1647 std::vector<TWPartition*>::iterator iter;
1648 int ret = false;
1649 bool found = false;
1650 string Local_Path = TWFunc::Get_Root_Path(Path);
1651
1652 if (Local_Path == "/tmp" || Local_Path == "/")
1653 return true;
1654
1655 // Iterate through all partitions
1656 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1657 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1658 ret = (*iter)->Repair();
1659 found = true;
1660 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1661 (*iter)->Repair();
1662 }
1663 }
1664 if (found) {
1665 return ret;
1666 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001667 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 -05001668 } else {
1669 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1670 }
1671 return false;
1672}
1673
Ethan Yonkera2719152015-05-28 09:44:41 -05001674int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1675 std::vector<TWPartition*>::iterator iter;
1676 int ret = false;
1677 bool found = false;
1678 string Local_Path = TWFunc::Get_Root_Path(Path);
1679
1680 if (Local_Path == "/tmp" || Local_Path == "/")
1681 return true;
1682
1683 // Iterate through all partitions
1684 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1685 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1686 ret = (*iter)->Resize();
1687 found = true;
1688 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1689 (*iter)->Resize();
1690 }
1691 }
1692 if (found) {
1693 return ret;
1694 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001695 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 -05001696 } else {
1697 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1698 }
1699 return false;
1700}
1701
Dees_Troy51a0e822012-09-05 15:24:24 -04001702void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001703 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001704 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001705
Ethan Yonker74db1572015-10-28 12:44:49 -05001706 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001707 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001708 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001709 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001710 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001711 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1712 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001713 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001714 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1715 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1716 } else if ((*iter)->Mount_Point == "/cache") {
1717 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1718 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1719 } else if ((*iter)->Mount_Point == "/sd-ext") {
1720 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1721 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1722 if ((*iter)->Backup_Size == 0) {
1723 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1724 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1725 } else
1726 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001727 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001728 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001729 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001730 if ((*iter)->Backup_Size == 0) {
1731 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1732 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1733 } else
1734 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001735 } else if ((*iter)->Mount_Point == "/boot") {
1736 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1737 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1738 if ((*iter)->Backup_Size == 0) {
1739 DataManager::SetValue("tw_has_boot_partition", 0);
1740 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1741 } else
1742 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001743 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001744 } else {
1745 // Handle unmountable partitions in case we reset defaults
1746 if ((*iter)->Mount_Point == "/boot") {
1747 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1748 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1749 if ((*iter)->Backup_Size == 0) {
1750 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1751 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1752 } else
1753 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1754 } else if ((*iter)->Mount_Point == "/recovery") {
1755 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1756 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1757 if ((*iter)->Backup_Size == 0) {
1758 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1759 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1760 } else
1761 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001762 } else if ((*iter)->Mount_Point == "/data") {
1763 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001764 }
Dees_Troy51127312012-09-08 13:08:49 -04001765 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001766 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001767 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001768 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1769 string current_storage_path = DataManager::GetCurrentStoragePath();
1770 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001771 if (FreeStorage != NULL) {
1772 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001773 if (!FreeStorage->Mount(false)) {
1774 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1775 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1776 } else {
1777 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001778 }
1779 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001780 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001781 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001782 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001783 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001784 return;
1785}
1786
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001787void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1788 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001789
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001790 if (dat != NULL) {
bigbiffaed1bdf2021-08-03 18:21:39 -04001791 // reparse for /cache/recovery/command
1792 static constexpr const char* COMMAND_FILE = "/data/cache/command";
1793 if (TWFunc::Path_Exists(COMMAND_FILE)) {
1794 startupArgs startup;
1795 std::string content;
1796 TWFunc::read_file(COMMAND_FILE, content);
1797 std::vector<std::string> args = {content};
1798 startup.processRecoveryArgs(args, 0);
1799 }
1800
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001801 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1802 dat->Is_Decrypted = true;
1803 if (!Block_Device.empty()) {
1804 dat->Decrypted_Block_Device = Block_Device;
1805 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1806 } else {
1807 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1808 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001809 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001810 dat->Setup_File_System(false);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001811 dat->Current_File_System = dat->Fstab_File_System; // Needed if we're ignoring blkid because encrypted devices start out as emmc
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001812
Noah Jacobson81d638d2019-04-28 00:10:07 -04001813 sleep(1); // Sleep for a bit so that the device will be ready
me-cafebabe09649612022-06-10 21:53:31 +08001814
1815 // Mount only /data
1816 dat->Symlink_Path = ""; // Not to let it to bind mount /data/media again
1817 if (!dat->Mount(false)) {
1818 LOGERR("Unable to mount /data after decryption");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001819 }
me-cafebabe09649612022-06-10 21:53:31 +08001820
1821 if (dat->Has_Data_Media && TWFunc::Path_Exists("/data/media/0")) {
1822 dat->Storage_Path = "/data/media/0";
1823 } else {
1824 dat->Storage_Path = "/data/media";
1825 }
1826 dat->Symlink_Path = dat->Storage_Path;
1827 DataManager::SetValue("tw_storage_path", dat->Symlink_Path);
1828 DataManager::SetValue("tw_settings_path", dat->Symlink_Path);
1829 LOGINFO("New storage path after decryption: %s\n", dat->Storage_Path.c_str());
1830
epicXa721f952021-01-04 13:01:31 +05301831 DataManager::LoadTWRPFolderInfo();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001832 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001833 Output_Partition(dat);
bigbiff4fa02b52021-12-30 17:01:44 -05001834 if (!android::base::StartsWith(dat->Actual_Block_Device, "/dev/block/mmcblk")) {
1835 if (!dat->Bind_Mount(false))
1836 LOGERR("Unable to bind mount /sdcard to %s\n", dat->Storage_Path.c_str());
1837 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001838 } else
1839 LOGERR("Unable to locate data partition.\n");
1840}
1841
Noah Jacobson81d638d2019-04-28 00:10:07 -04001842void TWPartitionManager::Parse_Users() {
1843#ifdef TW_INCLUDE_FBE
1844 char user_check_result[PROPERTY_VALUE_MAX];
1845 for (int userId = 0; userId <= 9999; userId++) {
1846 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1847 property_get(prop.c_str(), user_check_result, "-1");
1848 if (strcmp(user_check_result, "-1") != 0) {
1849 if (userId < 0 || userId > 9999) {
1850 LOGINFO("Incorrect user id %d\n", userId);
1851 continue;
1852 }
1853 struct users_struct user;
1854 user.userId = to_string(userId);
1855
1856 // Attempt to get name of user. Fallback to user ID if this fails.
zhenyolkaee025852021-11-08 19:05:30 +03001857 std::string path = "/data/system/users/" + to_string(userId) + ".xml";
1858 if ((atoi(TWFunc::System_Property_Get("ro.build.version.sdk").c_str()) > 30) && TWFunc::Path_Exists(path)) {
1859 if(!TWFunc::Check_Xml_Format(path))
1860 user.userName = to_string(userId);
bigbiffa957f072021-03-07 18:20:29 -05001861 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001862 else {
zhenyolkaee025852021-11-08 19:05:30 +03001863 char* userFile = PageManager::LoadFileToBuffer(path, NULL);
1864 if (userFile == NULL) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001865 user.userName = to_string(userId);
zhenyolkaee025852021-11-08 19:05:30 +03001866 }
1867 else {
1868 xml_document<> *userXml = new xml_document<>();
1869 userXml->parse<0>(userFile);
1870 xml_node<>* userNode = userXml->first_node("user");
1871 if (userNode == nullptr) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001872 user.userName = to_string(userId);
zhenyolkaee025852021-11-08 19:05:30 +03001873 } else {
1874 xml_node<>* nameNode = userNode->first_node("name");
1875 if (nameNode == nullptr)
1876 user.userName = to_string(userId);
1877 else {
1878 string userName = nameNode->value();
1879 user.userName = userName + " (" + to_string(userId) + ")";
1880 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001881 }
1882 }
1883 }
1884
1885 string filename;
1886 user.type = Get_Password_Type(userId, filename);
1887
1888 user.isDecrypted = false;
1889 if (strcmp(user_check_result, "1") == 0)
1890 user.isDecrypted = true;
1891 Users_List.push_back(user);
1892 }
1893 }
1894 Check_Users_Decryption_Status();
1895#endif
1896}
1897
1898std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
1899 return &Users_List;
1900}
1901
1902void TWPartitionManager::Mark_User_Decrypted(int userID) {
1903#ifdef TW_INCLUDE_FBE
1904 std::vector<users_struct>::iterator iter;
1905 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1906 if (atoi((*iter).userId.c_str()) == userID) {
1907 (*iter).isDecrypted = true;
1908 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
1909 property_set(user_prop_decrypted.c_str(), "1");
1910 break;
1911 }
1912 }
1913 Check_Users_Decryption_Status();
1914#endif
1915}
1916
1917void TWPartitionManager::Check_Users_Decryption_Status() {
1918#ifdef TW_INCLUDE_FBE
1919 int all_is_decrypted = 1;
1920 std::vector<users_struct>::iterator iter;
1921 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1922 if (!(*iter).isDecrypted) {
1923 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
1924 all_is_decrypted = 0;
1925 break;
1926 }
1927 }
1928 if (all_is_decrypted == 1) {
1929 LOGINFO("All found users are decrypted.\n");
1930 DataManager::SetValue("tw_all_users_decrypted", "1");
1931 property_set("twrp.all.users.decrypted", "true");
1932 } else
1933 DataManager::SetValue("tw_all_users_decrypted", "0");
1934#endif
1935}
1936
1937int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001938#ifdef TW_INCLUDE_CRYPTO
Captain Throwback37c3aef2021-10-06 11:38:18 -04001939 char crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001940 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001941
Ethan Yonker253368a2014-11-25 15:00:52 -06001942 // Mount any partitions that need to be mounted for decrypt
1943 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1944 if ((*iter)->Mount_To_Decrypt) {
1945 (*iter)->Mount(true);
1946 }
a39552696ff55ce2013-01-08 16:14:56 +00001947 }
oshmouna82a7542018-04-10 17:45:55 +02001948 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001949
Captain Throwback37c3aef2021-10-06 11:38:18 -04001950 Set_Crypto_State();
1951 Set_Crypto_Type("block");
Ethan Yonkera1de1492015-11-04 11:58:27 -06001952
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001953 if (DataManager::GetIntValue(TW_IS_FBE)) {
1954#ifdef TW_INCLUDE_FBE
1955 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1956 return -1;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001957
1958 bool user_need_decrypt = false;
1959 std::vector<users_struct>::iterator iter;
1960 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1961 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
1962 user_need_decrypt = true;
1963 }
1964 }
1965 if (!user_need_decrypt) {
1966 LOGINFO("User %d does not require decryption\n", user_id);
1967 return 0;
1968 }
1969
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001970 int retry_count = 10;
1971 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001972 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
1973 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001974 if (Decrypt_User(user_id, Password)) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001975 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
1976 Mark_User_Decrypted(user_id);
1977 if (user_id == 0) {
1978 // When decrypting user 0 also try all other users
1979 std::vector<users_struct>::iterator iter;
1980 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1981 if ((*iter).userId == "0" || (*iter).isDecrypted)
1982 continue;
1983
1984 int tmp_user_id = atoi((*iter).userId.c_str());
1985 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
1986 if (Decrypt_User(tmp_user_id, Password) ||
1987 (Password != "!" && Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
1988 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
1989 Mark_User_Decrypted(tmp_user_id);
1990 } else {
1991 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
1992 }
1993 }
1994 Post_Decrypt("");
1995 }
1996
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001997 return 0;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001998 } else {
1999 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002000 }
2001#else
2002 LOGERR("FBE support is not present\n");
2003#endif
2004 return -1;
2005 }
2006
Noah Jacobson81d638d2019-04-28 00:10:07 -04002007 char isdecrypteddata[PROPERTY_VALUE_MAX];
2008 property_get("twrp.decrypt.done", isdecrypteddata, "");
2009 if (strcmp(isdecrypteddata, "true") == 0) {
2010 LOGINFO("Data has no decryption required\n");
2011 return 0;
2012 }
2013
Ethan Yonkerddb63e22017-01-19 14:01:57 -06002014 int pwret = -1;
2015 pid_t pid = fork();
2016 if (pid < 0) {
2017 LOGERR("fork failed\n");
2018 return -1;
2019 } else if (pid == 0) {
2020 // Child process
2021 char cPassword[255];
2022 strcpy(cPassword, Password.c_str());
2023 int ret = cryptfs_check_passwd(cPassword);
2024 exit(ret);
2025 } else {
2026 // Parent
2027 int status;
2028 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
2029 pwret = -1;
2030 else
2031 pwret = WEXITSTATUS(status) ? -1 : 0;
2032 }
a39552696ff55ce2013-01-08 16:14:56 +00002033
nkk7171c6c502017-01-05 23:55:05 +02002034#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
2035 if (pwret != 0) {
2036 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02002037 switch (pwret) {
2038 case VD_SUCCESS:
2039 break;
2040 case VD_ERR_MISSING_VDC:
2041 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
2042 break;
2043 case VD_ERR_MISSING_VOLD:
2044 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
2045 break;
2046 }
nkk7171c6c502017-01-05 23:55:05 +02002047 }
2048#endif // TW_CRYPTO_USE_SYSTEM_VOLD
2049
Ethan Yonker253368a2014-11-25 15:00:52 -06002050 // Unmount any partitions that were needed for decrypt
2051 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2052 if ((*iter)->Mount_To_Decrypt) {
2053 (*iter)->UnMount(false);
2054 }
2055 }
oshmouna82a7542018-04-10 17:45:55 +02002056 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06002057
a39552696ff55ce2013-01-08 16:14:56 +00002058 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002059 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002060 return -1;
2061 }
a39552696ff55ce2013-01-08 16:14:56 +00002062
Dees_Troy5bf43922012-09-07 16:07:55 -04002063 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
2064 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002065 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04002066 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002067 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04002068 }
2069 return 0;
2070#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002071 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002072 return -1;
2073#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002074 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04002075}
2076
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002077int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002078 std::vector<TWPartition*>::iterator iter;
2079 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2080 if ((*iter)->Has_Data_Media) {
2081 if ((*iter)->Mount(true)) {
2082 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
2083 return -1;
2084 }
2085 }
2086 }
Dees_Troy1a650e62012-10-19 20:54:32 -04002087 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05002088 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002089 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002090}
2091
Ethan Yonker66a19492015-12-10 10:19:45 -06002092TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002093 std::vector<TWPartition*>::iterator iter = Partitions.begin();
2094
2095 if (!Path.empty()) {
2096 string Search_Path = TWFunc::Get_Root_Path(Path);
2097 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06002098 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002099 iter++;
2100 break;
2101 }
2102 }
2103 }
2104
2105 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002106 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
2107 // do nothing, do not return this type of partition
2108 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002109 return (*iter);
2110 }
2111 }
2112
2113 return NULL;
2114}
2115
Dees_Troyd21618c2012-10-14 18:48:49 -04002116int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04002117 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
2118
2119 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002120 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2121 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 -04002122 return false;
2123 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002124 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2125 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002126 return false;
2127
bigbiff22851b92021-09-01 16:46:57 -04002128 if (!TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002129 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002130 return false;
2131 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002132 return true;
2133}
2134
Dees_Troy8170a922012-09-18 15:40:25 -04002135int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002136 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002137 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002138
Ethan Yonker47360be2014-04-01 10:34:34 -05002139 string Lun_File_str = CUSTOM_LUN_FILE;
2140 size_t found = Lun_File_str.find("%");
2141 if (found != string::npos) {
2142 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2143 if (TWFunc::Path_Exists(lun_file))
2144 has_multiple_lun = true;
2145 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002146 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002147 if (!has_multiple_lun) {
2148 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2149 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2150 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002151 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002152 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002153 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2154 goto error_handle;
2155 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002156 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002157 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002158 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002159 }
2160 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002161 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002162 }
Dees_Troy8170a922012-09-18 15:40:25 -04002163 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002164 LOGINFO("Device has multiple lun files\n");
2165 TWPartition* Mount1;
2166 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002167 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002168 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002169 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002170 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2171 goto error_handle;
2172 }
Matt Moweree717062014-04-26 01:46:46 -05002173 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002174 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002175 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002176 Open_Lun_File(Mount2->Mount_Point, lun_file);
nkk717aa6fc62017-03-24 18:28:03 +02002177 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2178 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data") {
2179 Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002180 }
nkk717aa6fc62017-03-24 18:28:03 +02002181 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2182 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data" && !Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002183 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002184 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002185 }
Dees_Troy8170a922012-09-18 15:40:25 -04002186 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002187 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002188 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002189 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002190error_handle:
2191 if (mtp_was_enabled)
2192 if (!Enable_MTP())
2193 Disable_MTP();
2194 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002195}
2196
2197int TWPartitionManager::usb_storage_disable(void) {
bigbiff22851b92021-09-01 16:46:57 -04002198 int index, ret = 0;
Dees_Troy2673cec2013-04-02 20:22:16 +00002199 char lun_file[255], ch[2] = {0, 0};
2200 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002201
2202 for (index=0; index<2; index++) {
2203 sprintf(lun_file, CUSTOM_LUN_FILE, index);
bigbiff22851b92021-09-01 16:46:57 -04002204 if (!TWFunc::write_to_file(lun_file, str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002205 break;
bigbiff22851b92021-09-01 16:46:57 -04002206 ret = -1;
Dees_Troy8170a922012-09-18 15:40:25 -04002207 }
Dees_Troy8170a922012-09-18 15:40:25 -04002208 }
Dees_Troye58d5262012-09-21 12:27:57 -04002209 Mount_All_Storage();
2210 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002211 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002212 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002213 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002214 if (mtp_was_enabled)
2215 if (!Enable_MTP())
2216 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002217 if (ret < 0 && index == 0) {
2218 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2219 return false;
2220 } else {
2221 return true;
2222 }
Dees_Troy8170a922012-09-18 15:40:25 -04002223 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002224}
2225
2226void TWPartitionManager::Mount_All_Storage(void) {
2227 std::vector<TWPartition*>::iterator iter;
2228
2229 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2230 if ((*iter)->Is_Storage)
2231 (*iter)->Mount(false);
2232 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002233}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002234
Dees_Troyd0384ef2012-10-12 12:15:42 -04002235void TWPartitionManager::UnMount_Main_Partitions(void) {
2236 // Unmounts system and data if data is not data/media
2237 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002238 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002239
Mohd Faraze3948ec2020-08-14 01:40:59 +00002240 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002241
Mohd Faraze3948ec2020-08-14 01:40:59 +00002242 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2243 UnMount_By_Path (Get_Android_Root_Path(), true);
2244 Partition = Find_Partition_By_Path ("/product");
2245 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002246 if (!datamedia)
2247 UnMount_By_Path("/data", true);
2248
Mohd Faraze3948ec2020-08-14 01:40:59 +00002249 Partition = Find_Partition_By_Path ("/boot");
2250 if (Partition != NULL && Partition->Can_Be_Mounted)
2251 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002252}
2253
Dees_Troy9350b8d2012-09-27 12:38:38 -04002254int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002255 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002256 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 -04002257 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002258
Ethan Yonker74db1572015-10-28 12:44:49 -05002259 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002260
2261 // Locate and validate device to partition
2262 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2263
Ethan Yonker66a19492015-12-10 10:19:45 -06002264 if (SDCard->Is_Adopted_Storage)
2265 SDCard->Revert_Adopted();
2266
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002267 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002268 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002269 return false;
2270 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002271
2272 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002273 if (!SDCard->UnMount(true))
2274 return false;
2275 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2276 if (SDext != NULL) {
2277 if (!SDext->UnMount(true))
2278 return false;
2279 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002280 char* swappath = getenv("SWAPPATH");
2281 if (swappath != NULL) {
2282 LOGINFO("Unmounting swap at '%s'\n", swappath);
2283 umount(swappath);
2284 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002285
Ethan Yonker483e9f42016-01-11 22:21:18 -06002286 // Determine block device
2287 if (SDCard->Alternate_Block_Device.empty()) {
2288 SDCard->Find_Actual_Block_Device();
2289 Device = SDCard->Actual_Block_Device;
2290 // Just use the root block device
2291 Device.resize(strlen("/dev/block/mmcblkX"));
2292 } else {
2293 Device = SDCard->Alternate_Block_Device;
2294 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002295
2296 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002297 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002298
2299 DataManager::GetValue("tw_sdext_size", ext);
2300 DataManager::GetValue("tw_swap_size", swap);
2301 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2302 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002303 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);
2304
2305 // Determine partition sizes
2306 if (swap == 0 && ext == 0) {
2307 fat_str = "-0";
2308 } else {
2309 memset(temp, 0, sizeof(temp));
2310 sprintf(temp, "%i", fat_size);
2311 fat_str = temp;
2312 fat_str += "MB";
2313 }
2314 if (swap == 0) {
2315 ext_str = "-0";
2316 } else {
2317 memset(temp, 0, sizeof(temp));
2318 sprintf(temp, "%i", ext);
2319 ext_str = "+";
2320 ext_str += temp;
2321 ext_str += "MB";
2322 }
2323
Dees_Troy9350b8d2012-09-27 12:38:38 -04002324 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002325 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002326 return false;
2327 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002328
Ethan Yonker74db1572015-10-28 12:44:49 -05002329 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002330 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002331 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002332 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002333 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002334 Update_System_Details();
2335 return false;
2336 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002337 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002338 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 +00002339 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002340 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002341 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002342 return false;
2343 }
2344 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002345 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002346 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002347 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002348 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002349 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002350 Update_System_Details();
2351 return false;
2352 }
2353 }
2354 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002355 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002356 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 +00002357 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002358 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002359 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002360 Update_System_Details();
2361 return false;
2362 }
2363 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002364
2365 // Convert GPT to MBR
2366 Command = "sgdisk --gpttombr " + Device;
2367 if (TWFunc::Exec_Cmd(Command) != 0)
2368 LOGINFO("Failed to covert partition GPT to MBR\n");
2369
2370 // Tell the kernel to rescan the partition table
2371 int fd = open(Device.c_str(), O_RDONLY);
2372 ioctl(fd, BLKRRPART, 0);
2373 close(fd);
2374
2375 string format_device = Device;
2376 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2377 format_device += "p";
2378
2379 // Format new partitions to proper file system
2380 if (fat_size > 0) {
2381 Command = "mkfs.fat " + format_device + "1";
2382 TWFunc::Exec_Cmd(Command);
2383 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002384 if (ext > 0) {
2385 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002386 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2387 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2388 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2389 TWFunc::Exec_Cmd(Command);
2390 } else {
2391 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002392 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002393 }
2394 if (swap > 0) {
2395 Command = "mkswap " + format_device;
2396 if (ext > 0)
2397 Command += "3";
2398 else
2399 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002400 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002401 }
2402
Ethan Yonker483e9f42016-01-11 22:21:18 -06002403 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2404 if (SDCard->Mount(true)) {
2405 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2406 mkdir(TWRP_Folder.c_str(), 0777);
2407 DataManager::Flush();
2408 }
2409
Dees_Troy9350b8d2012-09-27 12:38:38 -04002410 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002411 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002412 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002413}
Dees_Troya13d74f2013-03-24 08:54:55 -05002414
2415void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2416 std::vector<TWPartition*>::iterator iter;
2417 if (ListType == "mount") {
2418 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002419 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002420 struct PartitionList part;
2421 part.Display_Name = (*iter)->Display_Name;
2422 part.Mount_Point = (*iter)->Mount_Point;
2423 part.selected = (*iter)->Is_Mounted();
2424 Partition_List->push_back(part);
2425 }
2426 }
2427 } else if (ListType == "storage") {
2428 char free_space[255];
2429 string Current_Storage = DataManager::GetCurrentStoragePath();
2430 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2431 if ((*iter)->Is_Storage) {
2432 struct PartitionList part;
2433 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2434 part.Display_Name = (*iter)->Storage_Name + " (";
2435 part.Display_Name += free_space;
2436 part.Display_Name += "MB)";
2437 part.Mount_Point = (*iter)->Storage_Path;
2438 if ((*iter)->Storage_Path == Current_Storage)
2439 part.selected = 1;
2440 else
2441 part.selected = 0;
2442 Partition_List->push_back(part);
2443 }
2444 }
2445 } else if (ListType == "backup") {
2446 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002447 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002448 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002449 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002450 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002451 Backup_Size = (*iter)->Backup_Size;
2452 if ((*iter)->Has_SubPartition) {
2453 std::vector<TWPartition*>::iterator subpart;
2454
2455 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2456 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2457 Backup_Size += (*subpart)->Backup_Size;
2458 }
2459 }
2460 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002461 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2462 part.Display_Name += backup_size;
2463 part.Display_Name += "MB)";
2464 part.Mount_Point = (*iter)->Backup_Path;
2465 part.selected = 0;
2466 Partition_List->push_back(part);
2467 }
2468 }
2469 } else if (ListType == "restore") {
2470 string Restore_List, restore_path;
2471 TWPartition* restore_part = NULL;
2472
2473 DataManager::GetValue("tw_restore_list", Restore_List);
2474 if (!Restore_List.empty()) {
2475 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2476 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2477 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002478 struct PartitionList part;
2479 if (restore_path.compare("ADB_Backup") == 0) {
2480 part.Display_Name = "ADB Backup";
2481 part.Mount_Point = "ADB Backup";
2482 part.selected = 1;
2483 Partition_List->push_back(part);
2484 break;
2485 }
Dees_Troy59df9262013-06-19 14:53:57 -05002486 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002487 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002488 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002489 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002490 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002491 part.Display_Name = restore_part->Backup_Display_Name;
2492 part.Mount_Point = restore_part->Backup_Path;
2493 part.selected = 1;
2494 Partition_List->push_back(part);
2495 }
2496 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002497 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002498 }
2499 start_pos = end_pos + 1;
2500 end_pos = Restore_List.find(";", start_pos);
2501 }
2502 }
2503 } else if (ListType == "wipe") {
2504 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002505 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002506 dalvik.Mount_Point = "DALVIK";
2507 dalvik.selected = 0;
2508 Partition_List->push_back(dalvik);
2509 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2510 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2511 struct PartitionList part;
2512 part.Display_Name = (*iter)->Display_Name;
2513 part.Mount_Point = (*iter)->Mount_Point;
2514 part.selected = 0;
2515 Partition_List->push_back(part);
2516 }
2517 if ((*iter)->Has_Android_Secure) {
2518 struct PartitionList part;
2519 part.Display_Name = (*iter)->Backup_Display_Name;
2520 part.Mount_Point = (*iter)->Backup_Path;
2521 part.selected = 0;
2522 Partition_List->push_back(part);
2523 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002524 if ((*iter)->Has_Data_Media) {
2525 struct PartitionList datamedia;
2526 datamedia.Display_Name = (*iter)->Storage_Name;
2527 datamedia.Mount_Point = "INTERNAL";
2528 datamedia.selected = 0;
2529 Partition_List->push_back(datamedia);
2530 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002531 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002532 } else if (ListType == "flashimg") {
2533 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2534 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2535 struct PartitionList part;
2536 part.Display_Name = (*iter)->Backup_Display_Name;
2537 part.Mount_Point = (*iter)->Backup_Path;
2538 part.selected = 0;
2539 Partition_List->push_back(part);
2540 }
2541 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002542 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2543 TWPartition* boot = Find_Partition_By_Path("/boot");
2544 if (boot) {
2545 // Allow flashing kernels and ramdisks
2546 struct PartitionList repack_ramdisk;
2547 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2548 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2549 repack_ramdisk.selected = 0;
2550 Partition_List->push_back(repack_ramdisk);
2551 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2552 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2553 repack_kernel.Mount_Point = "/repack_kernel";
2554 repack_kernel.selected = 0;
2555 Partition_List->push_back(repack_kernel);*/
2556 }
2557 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002558 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002559 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002560 }
2561}
2562
2563int TWPartitionManager::Fstab_Processed(void) {
2564 return Partitions.size();
2565}
Dees_Troyd93bda52013-07-03 19:55:19 +00002566
2567void TWPartitionManager::Output_Storage_Fstab(void) {
2568 std::vector<TWPartition*>::iterator iter;
2569 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002570 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002571 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002572
2573 if (cacheDir.empty()) {
2574 LOGINFO("Unable to find cache directory\n");
2575 return;
2576 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002577
bigbiff25d25b92020-06-19 16:07:38 -04002578 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002579 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002580
2581 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002582 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002583 return;
2584 }
2585
2586 // Iterate through all partitions
2587 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2588 if ((*iter)->Is_Storage) {
2589 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2590 strcpy(storage_partition, Temp.c_str());
2591 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2592 }
2593 }
2594 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002595}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002596
2597TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2598{
2599 TWPartition *res = NULL;
2600 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002601 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002602 continue;
2603
Matt Mowera8a89d12016-12-30 18:10:37 -06002604 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002605 return *iter;
2606
Matt Mowera8a89d12016-12-30 18:10:37 -06002607 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002608 res = *iter;
2609 }
2610 return res;
2611}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002612
2613bool TWPartitionManager::Enable_MTP(void) {
2614#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002615 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002616 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002617 return true;
2618 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002619
2620 int mtppipe[2];
2621
2622 if (pipe(mtppipe) < 0) {
2623 LOGERR("Error creating MTP pipe\n");
2624 return false;
2625 }
2626
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002627 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002628 property_get("sys.usb.config", old_value, "");
2629 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002630 char vendor[PROPERTY_VALUE_MAX];
2631 char product[PROPERTY_VALUE_MAX];
2632 property_set("sys.usb.config", "none");
2633 property_get("usb.vendor", vendor, "18D1");
2634 property_get("usb.product.mtpadb", product, "4EE2");
2635 string vendorstr = vendor;
2636 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002637 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2638 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002639 property_set("sys.usb.config", "mtp,adb");
2640 }
Matt Mower653a1702017-02-16 10:38:52 -06002641 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002642 * twrp set tw_mtp_debug 1
2643 */
2644 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002645 mtppid = mtp->forkserver(mtppipe);
2646 if (mtppid) {
2647 close(mtppipe[0]); // Host closes read side
2648 mtp_write_fd = mtppipe[1];
2649 DataManager::SetValue("tw_mtp_enabled", 1);
2650 Add_All_MTP_Storage();
2651 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002652 } else {
2653 close(mtppipe[0]);
2654 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002655 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002656 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002657 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002658#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002659 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002660#endif
2661 DataManager::SetValue("tw_mtp_enabled", 0);
2662 return false;
2663}
2664
Ethan Yonker1b039202015-01-30 10:08:48 -06002665void TWPartitionManager::Add_All_MTP_Storage(void) {
2666#ifdef TW_HAS_MTP
2667 std::vector<TWPartition*>::iterator iter;
2668
2669 if (!mtppid)
2670 return; // MTP is not enabled
2671
2672 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2673 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2674 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2675 }
2676#else
2677 return;
2678#endif
2679}
2680
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002681bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002682 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002683 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002684 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002685 if (strcmp(old_value, "adb") != 0) {
2686 char vendor[PROPERTY_VALUE_MAX];
2687 char product[PROPERTY_VALUE_MAX];
2688 property_set("sys.usb.config", "none");
2689 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002690 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002691 string vendorstr = vendor;
2692 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002693 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2694 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002695 usleep(2000);
2696 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002697#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002698 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002699 LOGINFO("Disabling MTP\n");
2700 int status;
2701 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002702 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002703 // We don't care about the exit value, but this prevents a zombie process
2704 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002705 close(mtp_write_fd);
2706 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002707 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002708#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002709 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002710#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002711 DataManager::SetValue("tw_mtp_enabled", 0);
2712 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002713#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002714 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002715}
Ethan Yonker726a0202014-12-16 20:01:38 -06002716
2717TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2718 std::vector<TWPartition*>::iterator iter;
2719
2720 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2721 if ((*iter)->MTP_Storage_ID == Storage_ID)
2722 return (*iter);
2723 }
2724 return NULL;
2725}
2726
2727bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2728#ifdef TW_HAS_MTP
2729 struct mtpmsg mtp_message;
2730
2731 if (!mtppid)
2732 return false; // MTP is disabled
2733
2734 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002735 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002736 return false;
2737 }
2738
2739 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002740 if (Part->MTP_Storage_ID == 0)
2741 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002742 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2743 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2744 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2745 mtp_message.storage_id = Part->MTP_Storage_ID;
2746 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002747 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002748 return false;
2749 } else {
2750 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2751 return true;
2752 }
2753 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2754 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2755 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002756 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2757 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2758 return false;
2759 }
2760 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2761 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2762 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2763 return false;
2764 }
2765 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002766 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002767 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 -06002768 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002769 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002770 return false;
2771 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002772 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002773 return true;
2774 }
2775 } else {
2776 LOGERR("Unknown MTP message type: %i\n", message_type);
2777 }
2778 } else {
2779 // This hopefully never happens as the error handling should
2780 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002781 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002782 }
2783 return true;
2784#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002785 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002786 DataManager::SetValue("tw_mtp_enabled", 0);
2787 return false;
2788#endif
2789}
2790
2791bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2792#ifdef TW_HAS_MTP
2793 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2794 if (Part) {
2795 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2796 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002797 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002798 }
2799#endif
2800 return false;
2801}
2802
2803bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2804#ifdef TW_HAS_MTP
2805 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2806 if (Part) {
2807 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2808 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002809 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002810 }
2811#endif
2812 return false;
2813}
2814
2815bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2816#ifdef TW_HAS_MTP
2817 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2818 if (Part) {
2819 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2820 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002821 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002822 }
2823#endif
2824 return false;
2825}
2826
2827bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2828#ifdef TW_HAS_MTP
2829 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2830 if (Part) {
2831 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2832 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002833 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002834 }
2835#endif
2836 return false;
2837}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002838
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002839bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002840 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002841 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002842 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002843 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002844 size_t start_pos = 0, end_pos = 0;
2845
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002846 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002847
bigbiff1f9e4842020-10-31 11:33:15 -04002848 Unlock_Block_Partitions();
2849
bigbiffce8f83c2015-12-12 18:30:21 -05002850 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2851 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2852
2853 if (!TWFunc::Path_Exists(full_filename)) {
2854 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002855 return false;
2856 }
bigbiffce8f83c2015-12-12 18:30:21 -05002857 if (!TWFunc::Path_Exists(full_filename)) {
2858 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002859 return false;
2860 }
2861 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002862
Ethan Yonker53796e72019-01-11 22:49:52 -06002863 DataManager::GetValue("tw_flash_partition", Flash_List);
2864 Repack_Type repack = REPLACE_NONE;
2865 if (Flash_List == "/repack_ramdisk;") {
2866 repack = REPLACE_RAMDISK;
2867 } else if (Flash_List == "/repack_kernel;") {
2868 repack = REPLACE_KERNEL;
2869 }
2870 if (repack != REPLACE_NONE) {
2871 Repack_Options_struct Repack_Options;
2872 Repack_Options.Type = repack;
2873 Repack_Options.Disable_Verity = false;
2874 Repack_Options.Disable_Force_Encrypt = false;
2875 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002876 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002877 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002878 PartitionSettings part_settings;
2879 part_settings.Backup_Folder = path;
2880 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2881 ProgressTracking progress(total_bytes);
2882 part_settings.progress = &progress;
2883 part_settings.adbbackup = false;
2884 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002885 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002886 if (!Flash_List.empty()) {
2887 end_pos = Flash_List.find(";", start_pos);
2888 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2889 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2890 flash_part = Find_Partition_By_Path(flash_path);
2891 if (flash_part != NULL) {
2892 partition_count++;
2893 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002894 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002895 return false;
2896 }
2897 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002898 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002899 return false;
2900 }
2901 start_pos = end_pos + 1;
2902 end_pos = Flash_List.find(";", start_pos);
2903 }
2904 }
2905
2906 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002907 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002908 return false;
2909 }
2910
2911 DataManager::SetProgress(0.0);
2912 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002913 flash_part->Backup_FileName = filename;
2914 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002915 return false;
2916 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002917 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002918 return false;
2919 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002920 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002921 return true;
2922}
Ethan Yonker74db1572015-10-28 12:44:49 -05002923
2924void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2925 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2926 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002927 if (part->Is_Adopted_Storage) {
2928 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2929 part->Backup_Display_Name = part->Display_Name;
2930 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2931 } else {
2932 part->Display_Name = gui_lookup(resource_name, default_value);
2933 part->Backup_Display_Name = part->Display_Name;
2934 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002935 }
2936}
2937
2938void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2939 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2940 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002941 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002942 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002943 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002944 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2945 } else {
2946 part->Display_Name = gui_lookup(resource_name, default_value);
2947 part->Backup_Display_Name = part->Display_Name;
2948 if (part->Is_Storage)
2949 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2950 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002951 }
2952}
2953
Ethan Yonker01f4e032017-02-03 15:30:52 -06002954void 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) {
2955 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2956 if (part) {
2957 if (part->Is_Adopted_Storage) {
2958 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2959 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2960 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2961 } else {
2962 part->Display_Name = gui_lookup(resource_name, default_value);
2963 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2964 if (part->Is_Storage)
2965 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2966 }
2967 }
2968}
2969
Ethan Yonker74db1572015-10-28 12:44:49 -05002970void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002971 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002972 Translate_Partition("/system", "system", "System");
2973 Translate_Partition("/system_image", "system_image", "System Image");
2974 Translate_Partition("/vendor", "vendor", "Vendor");
2975 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2976 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002977 Translate_Partition("/boot", "boot", "Boot");
2978 Translate_Partition("/recovery", "recovery", "Recovery");
2979 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002980 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002981 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2982 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2983 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2984 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002985 } else {
2986 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002987 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002988 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2989 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002990 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2991 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2992
2993 // Android secure is a special case
2994 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2995 if (part)
2996 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2997
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002998 std::vector<TWPartition*>::iterator sysfs;
2999 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
3000 if (!(*sysfs)->Sysfs_Entry.empty()) {
3001 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
3002 }
3003 }
3004
Ethan Yonker74db1572015-10-28 12:44:49 -05003005 // This updates the text on all of the storage selection buttons in the GUI
3006 DataManager::SetBackupFolder();
3007}
Ethan Yonker66a19492015-12-10 10:19:45 -06003008
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003009bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06003010#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003011 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003012 if (!Mount_By_Path("/data", false)) {
3013 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003014 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003015 }
zhenyolkaee025852021-11-08 19:05:30 +03003016
3017 // In Android 12 xml format changed. Previously it was human-readable format with xml tags
3018 // now it's ABX (Android Binary Xml). Sadly, rapidxml can't parse it, so check xml format firstly
3019 std::string path = "/data/system/storage.xml";
3020 if ((atoi(TWFunc::System_Property_Get("ro.build.version.sdk").c_str()) > 30) && TWFunc::Path_Exists(path))
3021 if(!TWFunc::Check_Xml_Format(path)) {
3022 LOGINFO("Android 12+: storage.xml is in ABX format. Skipping adopted storage decryption\n");
3023 return false;
3024 }
3025
Ethan Yonker66a19492015-12-10 10:19:45 -06003026 LOGINFO("Decrypt adopted storage starting\n");
3027 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
3028 xml_document<> *doc = NULL;
3029 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06003030 string Primary_Storage_UUID = "";
3031 if (xmlFile != NULL) {
3032 LOGINFO("successfully loaded storage.xml\n");
3033 doc = new xml_document<>();
3034 doc->parse<0>(xmlFile);
3035 volumes = doc->first_node("volumes");
3036 if (volumes) {
3037 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
3038 if (psuuid) {
3039 Primary_Storage_UUID = psuuid->value();
3040 }
3041 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003042 } else {
3043 LOGINFO("No /data/system/storage.xml for adopted storage\n");
3044 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003045 }
3046 std::vector<TWPartition*>::iterator adopt;
3047 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
Peter Cai439d60c2019-10-17 08:49:10 +08003048 if ((*adopt)->Removable && !(*adopt)->Is_Present && (*adopt)->Adopted_Mount_Delay > 0) {
3049 // On some devices, the external mmc driver takes some time
3050 // to recognize the card, in which case the "actual block device"
3051 // would not have been found yet. We wait the specified delay
3052 // and then try again.
3053 LOGINFO("Sleeping %d seconds for adopted storage.\n", (*adopt)->Adopted_Mount_Delay);
3054 sleep((*adopt)->Adopted_Mount_Delay);
3055 (*adopt)->Find_Actual_Block_Device();
3056 }
3057
Ethan Yonker66a19492015-12-10 10:19:45 -06003058 if ((*adopt)->Removable && (*adopt)->Is_Present) {
3059 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003060 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06003061 if (volumes) {
3062 xml_node<>* volume = volumes->first_node("volume");
3063 while (volume) {
3064 xml_attribute<>* guid = volume->first_attribute("partGuid");
3065 if (guid) {
3066 string GUID = (*adopt)->Adopted_GUID.c_str();
3067 GUID.insert(8, "-");
3068 GUID.insert(13, "-");
3069 GUID.insert(18, "-");
3070 GUID.insert(23, "-");
3071
3072 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
3073 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03003074 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003075 (*adopt)->Storage_Name = attr->value();
3076 (*adopt)->Display_Name = (*adopt)->Storage_Name;
3077 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
3078 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
3079 }
3080 attr = volume->first_attribute("fsUuid");
3081 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
3082 TWPartition* Dat = Find_Partition_By_Path("/data");
3083 if (Dat) {
3084 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
3085 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
3086 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
3087 Dat->Symlink_Mount_Point = "";
3088 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
3089 Dat->UnMount(false);
3090 Dat->Mount(false);
3091 (*adopt)->UnMount(false);
3092 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06003093 }
3094 }
3095 break;
3096 }
3097 }
3098 volume = volume->next_sibling("volume");
3099 }
3100 }
nkk71ffb02bd2017-06-04 23:12:16 +03003101 Update_System_Details();
3102 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06003103 }
3104 }
3105 }
3106 if (xmlFile) {
3107 doc->clear();
3108 delete doc;
3109 free(xmlFile);
3110 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003111 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06003112#else
3113 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003114 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003115#endif
3116}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003117
3118void TWPartitionManager::Remove_Partition_By_Path(string Path) {
3119 std::vector<TWPartition*>::iterator iter;
3120 string Local_Path = TWFunc::Get_Root_Path(Path);
3121
3122 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3123 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
3124 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3125 Partitions.erase(iter);
3126 return;
3127 }
3128 }
3129}
Ethan Yonker1b190162016-12-05 15:25:19 -06003130
bigbiff74a46272021-07-31 19:02:26 -04003131void TWPartitionManager::Override_Active_Slot(const string& Slot) {
3132 LOGINFO("Overriding slot to '%s'\n", Slot.c_str());
3133 Active_Slot_Display = Slot;
3134 DataManager::SetValue("tw_active_slot", Slot);
nebrassy07c4b902021-11-21 03:32:47 +01003135 PartitionManager.Update_System_Details();
bigbiff74a46272021-07-31 19:02:26 -04003136}
3137
Ethan Yonker1b190162016-12-05 15:25:19 -06003138void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3139 if (Slot != "A" && Slot != "B") {
3140 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3141 return;
3142 }
3143 if (Active_Slot_Display == Slot)
3144 return;
3145 LOGINFO("Setting active slot %s\n", Slot.c_str());
3146#ifdef AB_OTA_UPDATER
3147 if (!Active_Slot_Display.empty()) {
dianlujitaoa90dc462021-12-16 16:56:26 +08003148 android::sp<IBootControl> module = IBootControl::getService();
3149 if (module == nullptr) {
Ethan Yonker1b190162016-12-05 15:25:19 -06003150 LOGERR("Error getting bootctrl module.\n");
3151 } else {
dianlujitaoa90dc462021-12-16 16:56:26 +08003152 uint32_t slot_number = 0;
Ethan Yonker1b190162016-12-05 15:25:19 -06003153 if (Slot == "B")
3154 slot_number = 1;
dianlujitaoa90dc462021-12-16 16:56:26 +08003155 CommandResult result;
3156 auto ret = module->setActiveBootSlot(slot_number, [&result]
3157 (const CommandResult &cb_result) { result = cb_result; });
3158 if (!ret.isOk() || !result.success)
Ethan Yonker1b190162016-12-05 15:25:19 -06003159 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3160 }
3161 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
3162 }
3163#else
3164 LOGERR("Boot slot feature not present\n");
3165#endif
3166 Active_Slot_Display = Slot;
3167 if (Fstab_Processed())
3168 Update_System_Details();
3169}
3170string TWPartitionManager::Get_Active_Slot_Suffix() {
3171 if (Active_Slot_Display == "A")
3172 return "_a";
3173 return "_b";
3174}
3175string TWPartitionManager::Get_Active_Slot_Display() {
3176 return Active_Slot_Display;
3177}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003178
Captain Throwback9d6feb52018-07-27 10:05:24 -04003179string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04003180 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003181}
3182
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003183void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3184 std::vector<TWPartition*>::iterator iter;
3185
3186 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3187 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3188 TWPartition *part = *iter;
3189 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3190 (*iter)->UnMount(false);
3191 rmdir((*iter)->Mount_Point.c_str());
3192 iter = Partitions.erase(iter);
3193 delete part;
3194 } else {
3195 iter++;
3196 }
3197 }
3198}
3199
3200void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3201 std::vector<TWPartition*>::iterator iter;
3202
3203 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3204 if (!(*iter)->Sysfs_Entry.empty()) {
3205 string device;
3206 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3207 if (wildcard != string::npos) {
3208 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3209 } else {
3210 device = (*iter)->Sysfs_Entry;
3211 }
3212 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3213 // Found a match
3214 if (uevent_data.action == "add") {
3215 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3216 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3217 (*iter)->Is_Present = true;
3218 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3219 if (!Decrypt_Adopted()) {
3220 LOGINFO("No adopted storage so finding actual block device\n");
3221 (*iter)->Find_Actual_Block_Device();
3222 }
3223 return;
3224 } else if (uevent_data.action == "remove") {
3225 (*iter)->Is_Present = false;
3226 (*iter)->Primary_Block_Device = "";
3227 (*iter)->Actual_Block_Device = "";
3228 Remove_Uevent_Devices((*iter)->Mount_Point);
3229 return;
3230 }
3231 }
3232 }
3233 }
bigbiffee7b7ff2020-03-23 15:08:27 -04003234
3235 if (!PartitionManager.Get_Super_Status())
3236 LOGINFO("Found no matching fstab entry for uevent device '%s' - %s\n", uevent_data.sysfs_path.c_str(), uevent_data.action.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003237}
3238
3239void TWPartitionManager::setup_uevent() {
3240 struct sockaddr_nl nls;
3241
3242 if (uevent_pfd.fd >= 0) {
3243 LOGINFO("uevent already set up\n");
3244 return;
3245 }
3246
3247 // Open hotplug event netlink socket
3248 memset(&nls,0,sizeof(struct sockaddr_nl));
3249 nls.nl_family = AF_NETLINK;
3250 nls.nl_pid = getpid();
3251 nls.nl_groups = -1;
3252 uevent_pfd.events = POLLIN;
3253 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3254 if (uevent_pfd.fd==-1) {
3255 LOGERR("uevent not root\n");
3256 return;
3257 }
3258
3259 // Listen to netlink socket
3260 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3261 LOGERR("Bind failed\n");
3262 return;
3263 }
3264 set_select_fd();
3265 Coldboot();
3266}
3267
3268Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3269 Uevent_Block_Data ret;
3270 ret.subsystem = "";
3271 char *ptr = buf;
3272 const char *end = buf + len;
3273
3274 buf[len - 1] = '\0';
3275 while (ptr < end) {
3276 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3277 ptr += strlen("ACTION=");
3278 ret.action = ptr;
3279 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3280 ptr += strlen("SUBSYSTEM=");
3281 ret.subsystem = ptr;
3282 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3283 ptr += strlen("DEVTYPE=");
3284 ret.type = ptr;
3285 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3286 ptr += strlen("DEVPATH=");
3287 ret.sysfs_path += ptr;
3288 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3289 ptr += strlen("DEVNAME=");
3290 ret.block_device += ptr;
3291 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3292 ptr += strlen("MAJOR=");
3293 ret.major = atoi(ptr);
3294 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3295 ptr += strlen("MINOR=");
3296 ret.minor = atoi(ptr);
3297 }
3298 ptr += strlen(ptr) + 1;
3299 }
3300 return ret;
3301}
3302
3303void TWPartitionManager::read_uevent() {
3304 char buf[1024];
3305
3306 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3307 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003308 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003309 return;
3310 }
3311 /*int i = 0; // Print all uevent output for test /debug
3312 while (i<len) {
3313 printf("%s\n", buf+i);
3314 i += strlen(buf+i)+1;
3315 }*/
3316 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3317 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3318 PartitionManager.Handle_Uevent(uevent_data);
3319 }
3320}
3321
3322void TWPartitionManager::close_uevent() {
3323 if (uevent_pfd.fd > 0)
3324 close(uevent_pfd.fd);
3325 uevent_pfd.fd = -1;
3326}
3327
3328void TWPartitionManager::Add_Partition(TWPartition* Part) {
3329 Partitions.push_back(Part);
3330}
3331
3332void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3333 string Real_Path = Path;
3334 char real_path[PATH_MAX];
3335 if (realpath(Path.c_str(), &real_path[0])) {
3336 string Real_Path = real_path;
3337 std::vector<string>::iterator iter;
3338 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3339 if (Real_Path.find((*iter)) != string::npos) {
3340 string Write_Path = Real_Path + "/uevent";
3341 if (TWFunc::Path_Exists(Write_Path)) {
3342 const char* write_val = "add\n";
3343 TWFunc::write_to_file(Write_Path, write_val);
3344 break;
3345 }
3346 }
3347 }
3348 }
3349
3350 DIR* d = opendir(Path.c_str());
3351 if (d != NULL) {
3352 struct dirent* de;
3353 while ((de = readdir(d)) != NULL) {
3354 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3355 continue;
3356 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3357 continue;
3358
3359 string item = Path + "/";
3360 item.append(de->d_name);
3361 Coldboot_Scan(sysfs_entries, item, depth + 1);
3362 }
3363 closedir(d);
3364 }
3365}
3366
3367void TWPartitionManager::Coldboot() {
3368 std::vector<TWPartition*>::iterator iter;
3369 std::vector<string> sysfs_entries;
3370
3371 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3372 if (!(*iter)->Sysfs_Entry.empty()) {
3373 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3374 if (wildcard_pos == string::npos)
3375 wildcard_pos = (*iter)->Sysfs_Entry.size();
3376 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3377 }
3378 }
3379
3380 if (sysfs_entries.size() > 0)
3381 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3382}
Ethan Yonker53796e72019-01-11 22:49:52 -06003383
3384bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3385 if (TWFunc::Path_Exists(Folder))
3386 TWFunc::removeDir(Folder, false);
3387 return TWFunc::Recursive_Mkdir(Folder);
3388}
3389
bigbiffcfa875c2021-06-20 16:20:27 -04003390std::string TWPartitionManager::Get_Bare_Partition_Name(std::string Mount_Point) {
3391 if (Mount_Point == "/system_root")
3392 return "system";
3393 else
3394 return TWFunc::Remove_Beginning_Slash(Mount_Point);
3395}
3396
bigbiffee7b7ff2020-03-23 15:08:27 -04003397bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3398 Fstab fstab;
bigbiffcfa875c2021-06-20 16:20:27 -04003399 std::string bare_partition_name = Get_Bare_Partition_Name(twrpPart->Get_Mount_Point());
bigbiffee7b7ff2020-03-23 15:08:27 -04003400
bigbiff998f8392021-08-06 19:19:33 -04003401 Super_Partition_List.push_back(bare_partition_name);
bigbiffee7b7ff2020-03-23 15:08:27 -04003402 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3403
3404 std::string blk_device_partition;
3405#ifdef AB_OTA_UPDATER
3406 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3407#else
3408 blk_device_partition = bare_partition_name;
3409#endif
3410
3411 FstabEntry fstabEntry = {
3412 .blk_device = blk_device_partition,
3413 .mount_point = twrpPart->Get_Mount_Point(),
3414 .fs_type = twrpPart->Current_File_System,
3415 .fs_mgr_flags.logical = twrpPart->Is_Super,
3416 };
3417
3418 fstab.emplace_back(fstabEntry);
3419 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
Captain Throwbackc6939102021-04-06 12:57:30 -04003420 LOGINFO("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
bigbiffee7b7ff2020-03-23 15:08:27 -04003421 return false;
3422 }
3423
bigbiff32cbabe2020-04-12 19:16:19 -04003424 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3425 usleep(100);
3426 }
3427
bigbiffee7b7ff2020-03-23 15:08:27 -04003428 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3429 twrpPart->Update_Size(true);
3430 twrpPart->Change_Mount_Read_Only(true);
3431 twrpPart->Set_Can_Be_Backed_Up(false);
3432 twrpPart->Set_Can_Be_Wiped(false);
Mohd Faraz7fc70502021-04-22 20:44:11 +02003433 LOGINFO("Symlinking %s => /dev/block/bootdevice/by-name/%s \n", fstabEntry.blk_device.c_str(), bare_partition_name.c_str());
3434 symlink(fstabEntry.blk_device.c_str(), ("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str());
3435
bigbiffee7b7ff2020-03-23 15:08:27 -04003436 return true;
3437}
3438
3439bool TWPartitionManager::Prepare_All_Super_Volumes() {
3440 bool status = true;
3441 std::vector<TWPartition*>::iterator iter;
3442
3443 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3444 if ((*iter)->Is_Super) {
3445 if (!Prepare_Super_Volume(*iter)) {
3446 status = false;
3447 }
3448 PartitionManager.Output_Partition(*iter);
3449 }
3450 }
3451 Update_System_Details();
3452 return status;
3453}
3454
bigbiffee7b7ff2020-03-23 15:08:27 -04003455std::string TWPartitionManager::Get_Super_Partition() {
3456 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
bigbiff998f8392021-08-06 19:19:33 -04003457 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
bigbiffee7b7ff2020-03-23 15:08:27 -04003458 return "/dev/block/by-name/" + super_device;
3459}
3460
3461void TWPartitionManager::Setup_Super_Devices() {
3462 std::string superPart = Get_Super_Partition();
3463 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003464}
3465
3466void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003467 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003468 std::string superPart = Get_Super_Partition();
3469
3470 superPartition->Backup_Path = "/super";
3471 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003472 superPartition->Actual_Block_Device = superPart;
3473 superPartition->Alternate_Block_Device = superPart;
bigbiff998f8392021-08-06 19:19:33 -04003474 superPartition->Backup_Display_Name = "Super (";
3475 // Add first 4 items to fstab as logical that you would like to display in Backup_Display_Name
3476 // for the Super partition
3477 int list_size = Super_Partition_List.size();
3478 int orig_list_size = list_size;
3479 int max_display_size = 3; // total of 4 items since we start at 0
3480
3481 for (auto partition: Super_Partition_List) {
3482 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + partition;
3483 if ((orig_list_size - list_size) == max_display_size) {
3484 break;
3485 }
3486 if (list_size != 1)
3487 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + " ";
3488 list_size--;
3489 }
3490 superPartition->Backup_Display_Name += ")";
bigbiffee7b7ff2020-03-23 15:08:27 -04003491 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003492 superPartition->Current_File_System = "emmc";
3493 superPartition->Can_Be_Backed_Up = true;
3494 superPartition->Is_Present = true;
3495 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003496 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003497 Add_Partition(superPartition);
3498 PartitionManager.Output_Partition(superPartition);
bigbiffee7b7ff2020-03-23 15:08:27 -04003499}
3500
3501bool TWPartitionManager::Get_Super_Status() {
bigbiffdf8436b2020-08-30 16:22:34 -04003502 std::string fastboot_mode = android::base::GetProperty("sys.usb.config", "");
3503 if (fastboot_mode == "fastboot") {
3504 return false;
3505 }
3506 else
3507 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003508}
bigbiff25d25b92020-06-19 16:07:38 -04003509
3510bool TWPartitionManager::Recreate_Logs_Dir() {
3511#ifdef TW_INCLUDE_FBE
3512 struct passwd pd;
3513 struct passwd *pwdptr = &pd;
3514 struct passwd *tempPd;
3515 char pwdBuf[512];
3516 int uid = 0, gid = 0;
3517
3518 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3519 LOGERR("unable to get system user id\n");
3520 return false;
3521 } else {
3522 struct group grp;
3523 struct group *grpptr = &grp;
3524 struct group *tempGrp;
3525 char grpBuf[512];
3526
3527 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3528 LOGERR("unable to get cache group id\n");
3529 return false;
3530 } else {
3531 uid = pd.pw_uid;
3532 gid = grp.gr_gid;
3533 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3534 abLogsRecoveryDir += "/recovery/";
3535
3536 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3537 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3538 return false;
3539 }
3540 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3541 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3542 return false;
3543 }
3544 }
3545 }
3546#endif
3547 return true;
3548}
bigbiff1f9e4842020-10-31 11:33:15 -04003549
3550void TWPartitionManager::Unlock_Block_Partitions() {
3551 int fd, OFF = 0;
3552
3553 const std::string block_path = "/dev/block/";
3554 DIR* d = opendir(block_path.c_str());
3555 if (d != NULL) {
3556 struct dirent* de;
3557 while ((de = readdir(d)) != NULL) {
3558 if (de->d_type == DT_BLK) {
3559 std::string block_device = block_path + de->d_name;
bigbiff1f9e4842020-10-31 11:33:15 -04003560 if ((fd = open(block_device.c_str(), O_RDONLY | O_CLOEXEC)) < 0) {
3561 LOGERR("unable to open block device %s: %s\n", block_device.c_str(), strerror(errno));
3562 continue;
3563 }
3564 if (ioctl(fd, BLKROSET, &OFF) == -1) {
3565 LOGERR("Unable to unlock %s for flashing: %s\n", block_device.c_str());
3566 continue;
3567 }
3568 close(fd);
3569 }
3570 }
3571 closedir(d);
3572 }
bigbiffaf253cd2020-12-06 16:50:55 -05003573}
bigbiffcfa875c2021-06-20 16:20:27 -04003574
3575bool TWPartitionManager::Unmap_Super_Devices() {
3576 bool destroyed = false;
3577#ifndef TW_EXCLUDE_APEX
3578 twrpApex apex;
3579 apex.Unmount();
3580#endif
3581 for (auto iter = Partitions.begin(); iter != Partitions.end();) {
3582 LOGINFO("Checking partition: %s\n", (*iter)->Get_Mount_Point().c_str());
3583 if ((*iter)->Is_Super) {
3584 TWPartition *part = *iter;
3585 std::string bare_partition_name = Get_Bare_Partition_Name((*iter)->Get_Mount_Point());
3586 std::string blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3587 (*iter)->UnMount(false);
3588 LOGINFO("removing dynamic partition: %s\n", blk_device_partition.c_str());
3589 destroyed = DestroyLogicalPartition(blk_device_partition);
3590 std::string cow_partition = blk_device_partition + "-cow";
3591 std::string cow_partition_path = "/dev/block/mapper/" + cow_partition;
3592 struct stat st;
3593 if (lstat(cow_partition_path.c_str(), &st) == 0) {
3594 LOGINFO("removing cow partition: %s\n", cow_partition.c_str());
3595 destroyed = DestroyLogicalPartition(cow_partition);
3596 }
bigbiffcfa875c2021-06-20 16:20:27 -04003597 iter = Partitions.erase(iter);
3598 delete part;
3599 if (!destroyed) {
3600 return false;
3601 }
3602 } else {
3603 ++iter;
3604 }
3605 }
3606 return true;
3607}
bigbiffd21252f2021-09-18 15:56:32 -04003608
3609
3610bool TWPartitionManager::Check_Pending_Merges() {
3611 auto sm = android::snapshot::SnapshotManager::NewForFirstStageMount();
3612 if (!sm) {
3613 LOGERR("Unable to call snapshot manager\n");
3614 return false;
3615 }
3616
3617 if (!Unmap_Super_Devices()) {
3618 LOGERR("Unable to unmap dynamic partitions.\n");
3619 return false;
3620 }
3621
3622 auto callback = [&]() -> void {
3623 double progress;
3624 sm->GetUpdateState(&progress);
3625 LOGINFO("waiting for merge to complete: %.2f\n", progress);
3626 };
3627
3628 LOGINFO("checking for merges\n");
3629 if (!sm->HandleImminentDataWipe(callback)) {
3630 LOGERR("Unable to check merge status\n");
3631 return false;
3632 }
3633 return true;
zhenyolkaee025852021-11-08 19:05:30 +03003634}