blob: ebdada470aa216640583f4c241e87a3ade4f506a [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
bigbiffdf53b6c2022-01-17 19:31:52 -050096// #include "crypto/fde/cryptfs.h"
bigbiff7ba75002020-04-11 20:47:09 -040097#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
bigbiffdf53b6c2022-01-17 19:31:52 -0500103 #include "cryptfs.h"
104 #include "fscrypt-common.h"
bigbiffa957f072021-03-07 18:20:29 -0500105 #include "MetadataCrypt.h"
bigbiffadc599e2020-05-28 19:36:30 +0000106 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400107#endif
108#endif
109#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
110#include "crypto/vold_decrypt/vold_decrypt.h"
111#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400112#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400113
Ethan Yonker1b190162016-12-05 15:25:19 -0600114#ifdef AB_OTA_UPDATER
dianlujitaoa90dc462021-12-16 16:56:26 +0800115#include <android/hardware/boot/1.0/IBootControl.h>
116using android::hardware::boot::V1_0::CommandResult;
117using android::hardware::boot::V1_0::IBootControl;
Ethan Yonker1b190162016-12-05 15:25:19 -0600118#endif
119
bigbiffcfa875c2021-06-20 16:20:27 -0400120using android::fs_mgr::DestroyLogicalPartition;
bigbiffee7b7ff2020-03-23 15:08:27 -0400121using android::fs_mgr::Fstab;
122using android::fs_mgr::FstabEntry;
bigbiffcfa875c2021-06-20 16:20:27 -0400123using android::fs_mgr::MetadataBuilder;
Ethan Yonker6277c792014-09-15 14:54:30 -0500124
bigbiffee7b7ff2020-03-23 15:08:27 -0400125extern bool datamedia;
Noah Jacobson81d638d2019-04-28 00:10:07 -0400126std::vector<users_struct> Users_List;
127
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500128TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400129 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600130 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600131 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500132 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600133#ifdef AB_OTA_UPDATER
134 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500135 property_get("ro.boot.slot_suffix", slot_suffix, "error");
136 if (strcmp(slot_suffix, "error") == 0)
137 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600138 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500139 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600140 Set_Active_Slot("A");
141 else
142 Set_Active_Slot("B");
143#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500144}
145
Captain Throwback37c3aef2021-10-06 11:38:18 -0400146void TWPartitionManager::Set_Crypto_State() {
147 char crypto_state[PROPERTY_VALUE_MAX];
148 property_get("ro.crypto.state", crypto_state, "error");
149 if (strcmp(crypto_state, "error") == 0)
150 property_set("ro.crypto.state", "encrypted");
151}
152
153int TWPartitionManager::Set_Crypto_Type(const char* crypto_type) {
154 char type_prop[PROPERTY_VALUE_MAX];
155 property_get("ro.crypto.type", type_prop, "error");
156 if (strcmp(type_prop, "error") == 0)
157 property_set("ro.crypto.type", crypto_type);
Captain Throwback18aea272020-10-29 12:43:17 -0400158 // Sleep for a bit so that services can start if needed
159 sleep(1);
160 return 0;
161}
162
bigbiff22851b92021-09-01 16:46:57 -0400163int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool recovery_mode) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400164 FILE *fstabFile;
165 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600166 std::map<string, Flags_Map> twrp_flags;
167
168 fstabFile = fopen("/etc/twrp.flags", "rt");
169 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200170 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600171 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600172 size_t line_size = strlen(fstab_line);
173 if (fstab_line[line_size - 1] != '\n')
174 fstab_line[line_size] = '\n';
175 Flags_Map line_flags;
176 line_flags.Primary_Block_Device = "";
177 line_flags.Alternate_Block_Device = "";
178 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
179 if (!line_flags.fstab_line) {
180 LOGERR("malloc error on line_flags.fstab_line\n");
181 return false;
182 }
183 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
184 bool found_separator = false;
185 char *fs_loc = NULL;
186 char *block_loc = NULL;
187 char *flags_loc = NULL;
188 size_t index, item_index = 0;
189 for (index = 0; index < line_size; index++) {
190 if (fstab_line[index] <= 32) {
191 fstab_line[index] = '\0';
192 found_separator = true;
193 } else if (found_separator) {
194 if (item_index == 0) {
195 fs_loc = fstab_line + index;
196 } else if (item_index == 1) {
197 block_loc = fstab_line + index;
198 } else if (item_index > 1) {
199 char *ptr = fstab_line + index;
200 if (*ptr == '/') {
201 line_flags.Alternate_Block_Device = ptr;
202 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
203 flags_loc = ptr;
204 // Once we find the flags=, we're done scanning the line
205 break;
206 }
207 }
208 found_separator = false;
209 item_index++;
210 }
211 }
212 if (block_loc)
213 line_flags.Primary_Block_Device = block_loc;
214 if (fs_loc)
215 line_flags.File_System = fs_loc;
216 if (flags_loc)
217 line_flags.Flags = flags_loc;
218 string Mount_Point = fstab_line;
219 twrp_flags[Mount_Point] = line_flags;
220 memset(fstab_line, 0, sizeof(fstab_line));
221 }
222 fclose(fstabFile);
223 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400224
225 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
226 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000227 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400228 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600229 } else
230 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400231
232 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600233 if (strstr(fstab_line, "swap"))
234 continue; // Skip swap in recovery
235
bigbiff998f8392021-08-06 19:19:33 -0400236 if (fstab_line[0] == '#')
237 continue;
238
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600239 size_t line_size = strlen(fstab_line);
240 if (fstab_line[line_size - 1] != '\n')
241 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400242
Matt Mower2b2dd152016-04-26 11:24:08 -0500243 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400244 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500245 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500246 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400247 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500248
249 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400250 }
251 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500252
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600253 if (twrp_flags.size() > 0) {
254 LOGINFO("Processing remaining twrp.flags\n");
255 // Add any items from twrp.flags that did not exist in the recovery.fstab
256 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
257 if (Find_Partition_By_Path(mapit->first) == NULL) {
258 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400259 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600260 Partitions.push_back(partition);
261 else
262 delete partition;
263 }
264 if (mapit->second.fstab_line)
265 free(mapit->second.fstab_line);
266 mapit->second.fstab_line = NULL;
267 }
268 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000269 if (Get_Super_Status()) {
270 Setup_Super_Devices();
271 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600272 LOGINFO("Done processing fstab files\n");
273
bigbiff22851b92021-09-01 16:46:57 -0400274 if (recovery_mode) {
275 Setup_Fstab_Partitions(Display_Error);
Mohd Faraze3948ec2020-08-14 01:40:59 +0000276 }
bigbiff7ba75002020-04-11 20:47:09 -0400277 return true;
278}
279
bigbiff22851b92021-09-01 16:46:57 -0400280void TWPartitionManager::Setup_Fstab_Partitions(bool Display_Error) {
281 TWPartition* settings_partition = NULL;
282 TWPartition* andsec_partition = NULL;
283 std::vector<TWPartition*>::iterator iter;
284 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
285
286 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
287 (*iter)->Partition_Post_Processing(Display_Error);
288
289 if ((*iter)->Is_Storage) {
290 ++storageid;
291 (*iter)->MTP_Storage_ID = storageid;
292 }
293
294 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
295 settings_partition = (*iter);
296 else
297 (*iter)->Is_Settings_Storage = false;
298
299 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
300 andsec_partition = (*iter);
301 else
302 (*iter)->Has_Android_Secure = false;
303
304 if ((*iter)->Is_Super)
305 Prepare_Super_Volume((*iter));
306 }
307
me-cafebabed63fcaa2022-07-28 03:19:20 +0800308 Unlock_Block_Partitions();
309
bigbiff22851b92021-09-01 16:46:57 -0400310 //Setup Apex before decryption
311 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
312 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
313 if (sys) {
314 if (sys->Get_Super_Status()) {
315 sys->Mount(true);
316 if (ven) {
317 ven->Mount(true);
318 }
319 #ifdef TW_EXCLUDE_APEX
320 LOGINFO("Apex is disabled in this build\n");
321 #else
322 twrpApex apex;
323 if (!apex.loadApexImages()) {
324 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
325 property_set("twrp.apex.loaded", "false");
326 } else {
327 property_set("twrp.apex.loaded", "true");
328 }
329 TWFunc::check_and_run_script("/sbin/resyncapex.sh", "apex");
330 #endif
331 }
332 }
333 #ifndef USE_VENDOR_LIBS
334 if (ven)
335 ven->UnMount(true);
336 if (sys)
337 sys->UnMount(true);
338 #endif
339
340 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) {
341 // Attempt to automatically identify /data/media emulated storage devices
342 TWPartition* Dat = Find_Partition_By_Path("/data");
343 if (Dat) {
344 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
345 datamedia = true;
346 Dat->Setup_Data_Media();
347 settings_partition = Dat;
348 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
349 ++storageid;
350 Dat->MTP_Storage_ID = storageid;
351 }
352 }
353 if (!settings_partition) {
354 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
355 if ((*iter)->Is_Storage) {
356 settings_partition = (*iter);
357 break;
358 }
359 }
360 if (!settings_partition)
361 LOGERR("Unable to locate storage partition for storing settings file.\n");
362 }
363 if (!Write_Fstab()) {
364 if (Display_Error)
365 LOGERR("Error creating fstab\n");
366 else
367 LOGINFO("Error creating fstab\n");
368 }
369
370 if (andsec_partition) {
371 Setup_Android_Secure_Location(andsec_partition);
372 } else if (settings_partition) {
373 Setup_Android_Secure_Location(settings_partition);
374 }
375 if (settings_partition) {
376 Setup_Settings_Storage_Partition(settings_partition);
377 }
378
379 #ifdef TW_INCLUDE_CRYPTO
380 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
381 Decrypt_Data();
382 #endif
383
384 Update_System_Details();
385 if (Get_Super_Status())
386 Setup_Super_Partition();
387 UnMount_Main_Partitions();
388 #ifdef AB_OTA_UPDATER
389 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
390 #endif
391 setup_uevent();
392}
393
bigbiff7ba75002020-04-11 20:47:09 -0400394int TWPartitionManager::Write_Fstab(void) {
395 FILE *fp;
396 std::vector<TWPartition*>::iterator iter;
397 string Line;
398
399 fp = fopen("/etc/fstab", "w");
400 if (fp == NULL) {
401 LOGINFO("Can not open /etc/fstab.\n");
402 return false;
403 }
404 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
405 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530406 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
407 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400408 fputs(Line.c_str(), fp);
409 }
410 // Handle subpartition tracking
411 if ((*iter)->Is_SubPartition) {
412 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
413 if (ParentPartition)
414 ParentPartition->Has_SubPartition = true;
415 else
416 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
417 }
418 }
419 fclose(fp);
420 return true;
421}
422
423void TWPartitionManager::Decrypt_Data() {
424 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600425 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
426 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Captain Throwback37c3aef2021-10-06 11:38:18 -0400427 Set_Crypto_State();
bigbiff4fa02b52021-12-30 17:01:44 -0500428 TWPartition* Key_Directory_Partition = Find_Partition_By_Path(Decrypt_Data->Key_Directory);
429 if (Key_Directory_Partition != nullptr)
430 if (!Key_Directory_Partition->Is_Mounted())
431 Mount_By_Path(Decrypt_Data->Key_Directory, false);
432 if (!Decrypt_Data->Key_Directory.empty()) {
433 Set_Crypto_Type("file");
Ethan Yonker93382822018-11-01 15:25:31 -0500434#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400435#ifdef USE_FSCRYPT
bigbiffdf53b6c2022-01-17 19:31:52 -0500436 if (android::vold::fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false, false, Decrypt_Data->Current_File_System)) {
bigbiffa957f072021-03-07 18:20:29 -0500437 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000438 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400439 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400440#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500441 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
442 int retry_count = 10;
443 while (!Decrypt_Data->Mount(false) && --retry_count)
444 usleep(500);
445 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400446 if (!Decrypt_Data->Decrypt_FBE_DE()) {
bigbiff437d86f2021-09-26 16:57:14 -0400447 LOGERR("Unable to decrypt FBE device\n");
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400448 }
449
Ethan Yonker93382822018-11-01 15:25:31 -0500450 } else {
451 LOGINFO("Failed to mount data after metadata decrypt\n");
452 }
453 } else {
454 LOGINFO("Unable to decrypt metadata encryption\n");
455 }
456#else
457 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
458#endif
459 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600460 if (Decrypt_Data->Is_FBE) {
461 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
462 if (Decrypt_Device("!") == 0) {
463 gui_msg("decrypt_success=Successfully decrypted with default password.");
464 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
465 } else {
466 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
467 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600468 }
469 } else {
bigbiffbbbfe172021-05-30 15:52:41 -0400470 LOGINFO("FBE setup failed. Trying FDE...");
Captain Throwback37c3aef2021-10-06 11:38:18 -0400471 Set_Crypto_State();
472 Set_Crypto_Type("block");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600473 int password_type = cryptfs_get_password_type();
474 if (password_type == CRYPT_TYPE_DEFAULT) {
475 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
476 if (Decrypt_Device("default_password") == 0) {
477 gui_msg("decrypt_success=Successfully decrypted with default password.");
478 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
479 } else {
480 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
481 }
482 } else {
483 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400484 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600485 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600486 }
487 }
bigbiff4fa02b52021-12-30 17:01:44 -0500488 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600489 Decrypt_Adopted();
490 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600491#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400492}
493
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500494void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500495 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
496 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
497 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
498}
499
Matt Mowerbf4efa32014-04-14 23:25:26 -0500500void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
501 if (Part->Has_Android_Secure)
502 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500503 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500504 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500505}
506
Dees_Troy8170a922012-09-18 15:40:25 -0400507void TWPartitionManager::Output_Partition_Logging(void) {
508 std::vector<TWPartition*>::iterator iter;
509
510 printf("\n\nPartition Logs:\n");
511 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
512 Output_Partition((*iter));
513}
514
515void TWPartitionManager::Output_Partition(TWPartition* Part) {
516 unsigned long long mb = 1048576;
517
Gary Peck004d48b2012-11-21 16:28:18 -0800518 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 -0400519 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800520 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 -0400521 }
Gary Peck004d48b2012-11-21 16:28:18 -0800522 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500523 if (Part->Can_Be_Mounted)
524 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800525 if (Part->Can_Be_Wiped)
526 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700527 if (Part->Use_Rm_Rf)
528 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500529 if (Part->Can_Be_Backed_Up)
530 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800531 if (Part->Wipe_During_Factory_Reset)
532 printf("Wipe_During_Factory_Reset ");
533 if (Part->Wipe_Available_in_GUI)
534 printf("Wipe_Available_in_GUI ");
535 if (Part->Is_SubPartition)
536 printf("Is_SubPartition ");
537 if (Part->Has_SubPartition)
538 printf("Has_SubPartition ");
539 if (Part->Removable)
540 printf("Removable ");
541 if (Part->Is_Present)
542 printf("IsPresent ");
543 if (Part->Can_Be_Encrypted)
544 printf("Can_Be_Encrypted ");
545 if (Part->Is_Encrypted)
546 printf("Is_Encrypted ");
547 if (Part->Is_Decrypted)
548 printf("Is_Decrypted ");
549 if (Part->Has_Data_Media)
550 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000551 if (Part->Can_Encrypt_Backup)
552 printf("Can_Encrypt_Backup ");
553 if (Part->Use_Userdata_Encryption)
554 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800555 if (Part->Has_Android_Secure)
556 printf("Has_Android_Secure ");
557 if (Part->Is_Storage)
558 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500559 if (Part->Is_Settings_Storage)
560 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000561 if (Part->Ignore_Blkid)
562 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600563 if (Part->Mount_To_Decrypt)
564 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600565 if (Part->Can_Flash_Img)
566 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600567 if (Part->Is_Adopted_Storage)
568 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600569 if (Part->SlotSelect)
570 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600571 if (Part->Mount_Read_Only)
572 printf("Mount_Read_Only ");
bigbiffcfa875c2021-06-20 16:20:27 -0400573 if (Part->Is_Super)
574 printf("Is_Super ");
Gary Peck004d48b2012-11-21 16:28:18 -0800575 printf("\n");
576 if (!Part->SubPartition_Of.empty())
577 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
578 if (!Part->Symlink_Path.empty())
579 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
580 if (!Part->Symlink_Mount_Point.empty())
581 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
582 if (!Part->Primary_Block_Device.empty())
583 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
584 if (!Part->Alternate_Block_Device.empty())
585 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
586 if (!Part->Decrypted_Block_Device.empty())
587 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800588 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600589 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800590 if (Part->Length != 0)
591 printf(" Length: %i\n", Part->Length);
592 if (!Part->Display_Name.empty())
593 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500594 if (!Part->Storage_Name.empty())
595 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800596 if (!Part->Backup_Path.empty())
597 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
598 if (!Part->Backup_Name.empty())
599 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500600 if (!Part->Backup_Display_Name.empty())
601 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800602 if (!Part->Backup_FileName.empty())
603 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
604 if (!Part->Storage_Path.empty())
605 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
606 if (!Part->Current_File_System.empty())
607 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
608 if (!Part->Fstab_File_System.empty())
609 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
610 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500611 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400612 if (!Part->MTD_Name.empty())
613 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600614 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800615 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600616 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600617 if (Part->MTP_Storage_ID)
618 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500619 if (!Part->Key_Directory.empty())
620 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500621 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400622}
623
Dees_Troy51a0e822012-09-05 15:24:24 -0400624int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400625 std::vector<TWPartition*>::iterator iter;
626 int ret = false;
627 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400628 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400629
bigbiffd58ba182020-03-23 10:02:29 -0400630 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400631 return true;
632
Dees_Troy5bf43922012-09-07 16:07:55 -0400633 // Iterate through all partitions
634 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400635 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400636 ret = (*iter)->Mount(Display_Error);
637 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400638 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400639 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400640 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400641 }
642 if (found) {
643 return ret;
644 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500645 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 -0400646 }
647 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400648}
649
Dees_Troy51a0e822012-09-05 15:24:24 -0400650int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400651 std::vector<TWPartition*>::iterator iter;
652 int ret = false;
653 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400654 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400655
656 // Iterate through all partitions
657 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400658 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400659 ret = (*iter)->UnMount(Display_Error);
660 found = true;
661 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
662 (*iter)->UnMount(Display_Error);
663 }
664 }
665 if (found) {
666 return ret;
667 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500668 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 -0400669 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000670 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400671 }
672 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400673}
674
Dees_Troy51a0e822012-09-05 15:24:24 -0400675int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400676 TWPartition* Part = Find_Partition_By_Path(Path);
677
678 if (Part)
679 return Part->Is_Mounted();
680 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000681 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400682 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400683}
684
Dees_Troy5bf43922012-09-07 16:07:55 -0400685int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400686 string current_storage_path = DataManager::GetCurrentStoragePath();
687
688 if (Mount_By_Path(current_storage_path, Display_Error)) {
689 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
690 if (FreeStorage)
691 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
692 return true;
693 }
694 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400695}
696
Dees_Troy5bf43922012-09-07 16:07:55 -0400697int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
698 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
699}
700
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600701TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400702 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400703 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400704
dianlujitaob76a73a2020-04-30 20:33:20 +0800705 if (Local_Path == "/system")
706 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400707 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400708 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400709 return (*iter);
710 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400711 return NULL;
712}
713
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600714TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
715 std::vector<TWPartition*>::iterator iter;
716
717 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
718 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
719 return (*iter);
720 }
721 return NULL;
722}
723
Ethan Yonker53796e72019-01-11 22:49:52 -0600724int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400725 // Check the backup name to ensure that it is the correct size and contains only valid characters
726 // and that a backup with that name doesn't already exist
727 char backup_name[MAX_BACKUP_NAME_LEN];
728 char backup_loc[255], tw_image_dir[255];
729 int copy_size;
730 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600731 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400732
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400733 copy_size = Backup_Name.size();
734 // Check size
735 if (copy_size > MAX_BACKUP_NAME_LEN) {
736 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500737 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400738 return -2;
739 }
740
741 // Check each character
742 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500743 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400744 return 0; // A "0" (zero) means to use the current timestamp for the backup name
745 for (index=0; index<copy_size; index++) {
746 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500747 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 -0400748 // These are valid characters
749 // Numbers
750 // Upper case letters
751 // Lower case letters
752 // Space
753 // and -_.{}[]
754 } else {
755 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600756 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 -0400757 return -3;
758 }
759 }
760
Ethan Yonker53796e72019-01-11 22:49:52 -0600761 if (Must_Be_Unique) {
762 // Check to make sure that a backup with this name doesn't already exist
763 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
764 strcpy(backup_loc, Backup_Loc.c_str());
765 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
766 if (TWFunc::Path_Exists(tw_image_dir)) {
767 if (Display_Error)
768 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500769
Ethan Yonker53796e72019-01-11 22:49:52 -0600770 return -4;
771 }
772 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400773 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600774 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400775 return 0;
776}
777
bigbiffce8f83c2015-12-12 18:30:21 -0500778bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400779 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600780 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500781 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400782
bigbiffce8f83c2015-12-12 18:30:21 -0500783 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400784 return true;
785
Dees_Troy093b7642012-09-21 15:59:38 -0400786 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400787
Tom Hite5a926722014-09-15 01:31:03 +0000788 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400789 time(&start);
790
bigbiffce8f83c2015-12-12 18:30:21 -0500791 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500792 sync();
793 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400794 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500795 if (!part_settings->adbbackup && part_settings->generate_digest) {
796 if (!twrpDigestDriver::Make_Digest(Full_Filename))
797 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400798 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400799
bigbiffce8f83c2015-12-12 18:30:21 -0500800 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400801 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400802 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400803
804 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400805 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500806 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500807 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500808 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000809 }
Dees_Troy2727b992013-08-14 20:09:30 +0000810 sync();
811 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400812 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400813 if (!part_settings->adbbackup && part_settings->generate_digest) {
814 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500815 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500816 }
Tom Hite5a926722014-09-15 01:31:03 +0000817 }
Dees_Troy8170a922012-09-18 15:40:25 -0400818 }
819 }
820 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400821
Dees_Troy43d8b002012-09-17 16:00:01 -0400822 time(&stop);
that203bcc92015-05-09 17:27:33 +0200823 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000824 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400825
bigbiffce8f83c2015-12-12 18:30:21 -0500826 if (part_settings->Part->Backup_Method == BM_FILES) {
827 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400828 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500829 part_settings->img_time += backup_time;
830
Dees_Troy43d8b002012-09-17 16:00:01 -0400831 }
Tom Hite5a926722014-09-15 01:31:03 +0000832
Matt Mower02899552016-12-30 18:13:51 -0600833 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500834 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400835 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500836backup_error:
837 Clean_Backup_Folder(part_settings->Backup_Folder);
838 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
839 tw_set_default_metadata(backup_log.c_str());
840 TWFunc::SetPerformanceMode(false);
841 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500842}
843
bigbiffbf1d6722015-02-14 16:25:59 -0500844void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
845 DIR *d = opendir(Backup_Folder.c_str());
846 struct dirent *p;
847 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400848 vector<string> ext;
849
850 //extensions we should delete when cleaning
851 ext.push_back("win");
852 ext.push_back("md5");
853 ext.push_back("sha2");
854 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500855
Ethan Yonker74db1572015-10-28 12:44:49 -0500856 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500857
858 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500859 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500860 return;
861 }
862
Matt Mower2b18a532015-02-20 16:58:05 -0600863 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500864 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
865 continue;
866
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500867 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500868
869 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400870 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
871 if (path.substr(dot) == *i) {
872 r = unlink(path.c_str());
873 if (r != 0)
874 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500875 }
876 }
877 }
878 closedir(d);
879}
880
Ethan Yonker472f5062016-02-25 13:47:30 -0600881int TWPartitionManager::Check_Backup_Cancel() {
882 return stop_backup.get_value();
883}
884
bigbiff7abc5fe2015-01-17 16:53:12 -0500885int TWPartitionManager::Cancel_Backup() {
886 string Backup_Folder, Backup_Name, Full_Backup_Path;
887
888 stop_backup.set_value(1);
889
890 if (tar_fork_pid != 0) {
891 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
892 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500893 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500894 LOGINFO("Killing pid: %d\n", tar_fork_pid);
895 kill(tar_fork_pid, SIGUSR2);
896 while (kill(tar_fork_pid, 0) == 0) {
897 usleep(1000);
898 }
899 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
900 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
901 TWFunc::removeDir(Full_Backup_Path, false);
902 tar_fork_pid = 0;
903 }
904
905 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400906}
907
bigbiffce8f83c2015-12-12 18:30:21 -0500908int TWPartitionManager::Run_Backup(bool adbbackup) {
909 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400910 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500911 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600912 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400913 TWPartition* storage = NULL;
914 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600915 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500916 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500917 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400918 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500919 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400920
bigbiffce8f83c2015-12-12 18:30:21 -0500921 part_settings.img_bytes_remaining = 0;
922 part_settings.file_bytes_remaining = 0;
923 part_settings.img_time = 0;
924 part_settings.file_time = 0;
925 part_settings.img_bytes = 0;
926 part_settings.file_bytes = 0;
927 part_settings.PM_Method = PM_BACKUP;
928
bigbiffce8f83c2015-12-12 18:30:21 -0500929 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400930 time(&total_start);
931
932 Update_System_Details();
933
934 if (!Mount_Current_Storage(true))
935 return false;
936
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400937 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
938 if (skip_digest == 0)
939 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400940 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400941 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400942
bigbiffce8f83c2015-12-12 18:30:21 -0500943 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500944 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
945 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
946 Backup_Name = TWFunc::Get_Current_Date();
947 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000948 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500949 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400950 }
bigbiffce8f83c2015-12-12 18:30:21 -0500951
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500952 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500953 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500954
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500955 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400956
Dees_Troy2673cec2013-04-02 20:22:16 +0000957 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500958 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400959 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500960 if (!Backup_List.empty()) {
961 end_pos = Backup_List.find(";", start_pos);
962 while (end_pos != string::npos && start_pos < Backup_List.size()) {
963 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400964 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500965 part_settings.Part = Find_Partition_By_Path(backup_path);
966 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500967 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500968 if (part_settings.Part->Backup_Method == BM_FILES)
969 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500970 else
bigbiffce8f83c2015-12-12 18:30:21 -0500971 part_settings.img_bytes += part_settings.Part->Backup_Size;
972 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500973 std::vector<TWPartition*>::iterator subpart;
974
975 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500976 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 -0500977 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500978 if ((*subpart)->Backup_Method == BM_FILES)
979 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500980 else
bigbiffce8f83c2015-12-12 18:30:21 -0500981 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500982 }
983 }
Dees_Troy8170a922012-09-18 15:40:25 -0400984 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500985 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500986 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 -0400987 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500988 start_pos = end_pos + 1;
989 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400990 }
991 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400992
993 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500994 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400995 return false;
996 }
bigbiffce8f83c2015-12-12 18:30:21 -0500997 if (adbbackup) {
998 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
999 return false;
1000 }
1001 }
1002 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -06001003 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -05001004 part_settings.progress = &progress;
1005
Ethan Yonker74db1572015-10-28 12:44:49 -05001006 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
1007 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001008 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1009 if (storage != NULL) {
1010 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -05001011 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001012 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001013 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -04001014 return false;
1015 }
bigbiffbf1d6722015-02-14 16:25:59 -05001016
Matt Mowerbfccfb82016-04-25 23:22:31 -05001017 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -05001018
1019 if (adbbackup)
1020 disable_free_space_check = true;
1021
bigbiffbf1d6722015-02-14 16:25:59 -05001022 if (!disable_free_space_check) {
1023 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1024 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001025 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001026 return false;
1027 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001028 }
bigbiffce8f83c2015-12-12 18:30:21 -05001029 part_settings.img_bytes_remaining = part_settings.img_bytes;
1030 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001031
Ethan Yonker74db1572015-10-28 12:44:49 -05001032 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001033
1034 int is_decrypted = 0;
1035 int is_encrypted = 0;
1036
1037 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1038 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1039 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1040 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1041 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1042 gui_err("fail_backup_folder=Failed to make backup folder.");
1043 return false;
1044 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001045 }
1046
Dees_Troy2673cec2013-04-02 20:22:16 +00001047 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001048
Dees_Troya13d74f2013-03-24 08:54:55 -05001049 start_pos = 0;
1050 end_pos = Backup_List.find(";", start_pos);
1051 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001052 if (stop_backup.get_value() != 0)
1053 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001054 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001055 part_settings.Part = Find_Partition_By_Path(backup_path);
1056 if (part_settings.Part != NULL) {
1057 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001058 return false;
1059 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001060 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 -05001061 }
1062 start_pos = end_pos + 1;
1063 end_pos = Backup_List.find(";", start_pos);
1064 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001065
1066 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001067 if (part_settings.img_time == 0)
1068 part_settings.img_time = 1;
1069 if (part_settings.file_time == 0)
1070 part_settings.file_time = 1;
1071 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1072 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001073
bigbiffce8f83c2015-12-12 18:30:21 -05001074 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001075 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 -05001076 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001077 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 -04001078
1079 time(&total_stop);
1080 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001081
1082 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001083 if (!adbbackup) {
1084 TWExclude twe;
1085 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1086 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001087 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001088 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001089
bigbiffce8f83c2015-12-12 18:30:21 -05001090 int prev_img_bps = 0, use_compression = 0;
1091 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001092 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001093 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001094 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001095
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001096 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001097 if (use_compression)
1098 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001099 else
Dees_Troy093b7642012-09-21 15:59:38 -04001100 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1101 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001102 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001103
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001104 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001105 if (use_compression)
1106 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1107 else
1108 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1109
Ethan Yonker74db1572015-10-28 12:44:49 -05001110 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001111 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001112 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001113 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001114 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001115 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001116 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001117
1118 if (part_settings.adbbackup) {
1119 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1120 return false;
1121 }
1122 }
1123 part_settings.adbbackup = false;
1124 DataManager::SetValue("tw_enable_adb_backup", 0);
1125
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001126 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001127}
1128
bigbiffce8f83c2015-12-12 18:30:21 -05001129bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001130 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001131
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001132 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001133 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1134 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001135 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1136 }
1137
Tom Hite5a926722014-09-15 01:31:03 +00001138 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001139
Dees_Troy4a2a1262012-09-18 09:33:47 -04001140 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001141
bigbiffce8f83c2015-12-12 18:30:21 -05001142 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001143 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001144 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001145 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001146 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001147 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001148 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001149
1150 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001151 part_settings->Part = *subpart;
1152 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1153 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001154 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001155 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001156 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001157 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001158 }
Dees_Troy8170a922012-09-18 15:40:25 -04001159 }
1160 }
1161 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001162 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001163 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001164 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1165
Dees_Troy4a2a1262012-09-18 09:33:47 -04001166 return true;
1167}
1168
Ethan Yonker472f5062016-02-25 13:47:30 -06001169int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001170 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001171 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001172
Dees_Troy4a2a1262012-09-18 09:33:47 -04001173 time_t rStart, rStop;
1174 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001175 string Restore_List, restore_path;
1176 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001177
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001178 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001179 part_settings.Part = NULL;
1180 part_settings.partition_count = 0;
1181 part_settings.total_restore_size = 0;
1182 part_settings.adbbackup = false;
1183 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001184
Ethan Yonker74db1572015-10-28 12:44:49 -05001185 gui_msg("restore_started=[RESTORE STARTED]");
1186 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001187
Dees_Troy4a2a1262012-09-18 09:33:47 -04001188 if (!Mount_Current_Storage(true))
1189 return false;
1190
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001191 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1192 if (check_digest > 0) {
1193 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1194 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1195 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001196 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001197 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001198 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001199 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001200 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001201
Dees_Troya13d74f2013-03-24 08:54:55 -05001202 if (!Restore_List.empty()) {
1203 end_pos = Restore_List.find(";", start_pos);
1204 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1205 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001206 part_settings.Part = Find_Partition_By_Path(restore_path);
1207 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001208 if (part_settings.Part->Mount_Read_Only) {
1209 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 -05001210 return false;
1211 }
bigbiffce8f83c2015-12-12 18:30:21 -05001212
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001213 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1214
bigbiff4a60bee2021-01-23 14:08:03 -05001215 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1216 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1217 }
1218
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001219 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001220 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001221 part_settings.partition_count++;
1222 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1223 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001224 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001225 std::vector<TWPartition*>::iterator subpart;
1226
1227 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001228 part_settings.Part = *subpart;
1229 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001230 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001231 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001232 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001233 }
1234 }
1235 }
1236 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001237 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001238 }
1239 start_pos = end_pos + 1;
1240 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001241 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001242 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001243
bigbiffce8f83c2015-12-12 18:30:21 -05001244 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001245 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001246 return false;
1247 }
1248
bigbiffce8f83c2015-12-12 18:30:21 -05001249 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1250 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 +00001251 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001252 ProgressTracking progress(part_settings.total_restore_size);
1253 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001254
Dees_Troya13d74f2013-03-24 08:54:55 -05001255 start_pos = 0;
1256 if (!Restore_List.empty()) {
1257 end_pos = Restore_List.find(";", start_pos);
1258 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1259 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001260
1261 part_settings.Part = Find_Partition_By_Path(restore_path);
1262 if (part_settings.Part != NULL) {
1263 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001264 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001265 return false;
1266 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001267 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001268 }
1269 start_pos = end_pos + 1;
1270 end_pos = Restore_List.find(";", start_pos);
1271 }
1272 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001273 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001274 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001275 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001276 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001277 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001278 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001279 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
bigbiff8f5fad32021-11-03 20:39:02 -04001280 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
1281 if (Decrypt_Data && Decrypt_Data->Is_Encrypted)
1282 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 -05001283 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001284
Dees_Troy63c8df72012-09-10 14:02:05 -04001285 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001286}
1287
1288void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001289 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001290 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001291 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001292 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001293
1294 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001295 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1296 vector<string> adb_files;
1297 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1298 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1299 string adb_restore_file = adb_files.at(i);
1300 std::size_t pos = adb_restore_file.find_first_of(".");
1301 std::string path = "/" + adb_restore_file.substr(0, pos);
1302 Restore_List = path + ";";
1303 TWPartition* Part = Find_Partition_By_Path(path);
1304 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1305 adbbackup = true;
1306 }
1307 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001308 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001309 else {
1310 DIR* d;
1311 d = opendir(Restore_Name.c_str());
1312 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001313 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001314 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1315 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001316 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001317
1318 struct dirent* de;
1319 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001320 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001321 // Strip off three components
1322 char str[256];
1323 char* label;
1324 char* fstype = NULL;
1325 char* extn = NULL;
1326 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001327
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001328 strcpy(str, de->d_name);
1329 if (strlen(str) <= 2)
1330 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001331
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001332 if (get_date) {
1333 char file_path[255];
1334 struct stat st;
1335
1336 strcpy(file_path, Restore_Name.c_str());
1337 strcat(file_path, "/");
1338 strcat(file_path, str);
1339 stat(file_path, &st);
1340 string backup_date = ctime((const time_t*)(&st.st_mtime));
1341 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1342 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001343 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001344
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001345 label = str;
1346 ptr = label;
1347 while (*ptr && *ptr != '.') ptr++;
1348 if (*ptr == '.')
1349 {
1350 *ptr = 0x00;
1351 ptr++;
1352 fstype = ptr;
1353 }
1354 while (*ptr && *ptr != '.') ptr++;
1355 if (*ptr == '.')
1356 {
1357 *ptr = 0x00;
1358 ptr++;
1359 extn = ptr;
1360 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001361
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001362 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1363 int extnlength = strlen(extn);
1364 if (extnlength != 3 && extnlength != 6) continue;
1365 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1366 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001367
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001368 if (check_encryption) {
1369 string filename = Restore_Name + "/";
1370 filename += de->d_name;
1371 if (TWFunc::Get_File_Type(filename) == 2) {
1372 LOGINFO("'%s' is encrypted\n", filename.c_str());
1373 DataManager::SetValue("tw_restore_encrypted", 1);
1374 }
1375 }
1376 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1377
1378 TWPartition* Part = Find_Partition_By_Path(label);
1379 if (Part == NULL)
1380 {
1381 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1382 continue;
1383 }
1384
1385 Part->Backup_FileName = de->d_name;
1386 if (strlen(extn) > 3) {
1387 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1388 }
1389
dianlujitaob76a73a2020-04-30 20:33:20 +08001390 if (!Part->Is_SubPartition) {
1391 if (Part->Backup_Path == Get_Android_Root_Path())
1392 Restore_List += "/system;";
1393 else
1394 Restore_List += Part->Backup_Path + ";";
1395 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001396 }
1397 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001398 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001399
1400 if (adbbackup) {
1401 Restore_List = "ADB_Backup;";
1402 adbbackup = false;
1403 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001404
Dees_Troya13d74f2013-03-24 08:54:55 -05001405 // Set the final value
1406 DataManager::SetValue("tw_restore_list", Restore_List);
1407 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001408 return;
1409}
1410
1411int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001412 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301413 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001414 int ret = false;
1415 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001416 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001417
dianlujitaob76a73a2020-04-30 20:33:20 +08001418 if (Local_Path == "/system")
1419 Local_Path = Get_Android_Root_Path();
bigbiffaed1bdf2021-08-03 18:21:39 -04001420 if (Path == "/cache") {
1421 TWPartition* cache = Find_Partition_By_Path("/cache");
1422 if (cache == nullptr) {
1423 TWPartition* dat = Find_Partition_By_Path("/data");
1424 if (dat) {
1425 dat->Wipe_Data_Cache();
1426 found = true;
1427 }
1428 }
1429 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001430 // Iterate through all partitions
1431 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001432 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301433 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1434 (*iter)->Find_Actual_Block_Device();
1435 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1436 {
1437 (*iter1)->Find_Actual_Block_Device();
1438 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1439 (*iter1)->UnMount(false);
1440 }
Dees_Troye58d5262012-09-21 12:27:57 -04001441 if (Path == "/and-sec")
1442 ret = (*iter)->Wipe_AndSec();
1443 else
1444 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001445 found = true;
1446 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1447 (*iter)->Wipe();
1448 }
1449 }
1450 if (found) {
1451 return ret;
1452 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001453 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 -04001454 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001455}
1456
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001457int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1458 std::vector<TWPartition*>::iterator iter;
1459 int ret = false;
1460 bool found = false;
1461 string Local_Path = TWFunc::Get_Root_Path(Path);
1462
1463 // Iterate through all partitions
1464 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1465 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1466 if (Path == "/and-sec")
1467 ret = (*iter)->Wipe_AndSec();
1468 else
1469 ret = (*iter)->Wipe(New_File_System);
1470 found = true;
1471 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1472 (*iter)->Wipe(New_File_System);
1473 }
1474 }
1475 if (found) {
1476 return ret;
1477 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001478 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 -05001479 return false;
1480}
1481
Dees_Troy51a0e822012-09-05 15:24:24 -04001482int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001483 std::vector<TWPartition*>::iterator iter;
1484 int ret = true;
1485
1486 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001487 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001488#ifdef TW_OEM_BUILD
1489 if ((*iter)->Mount_Point == "/data") {
1490 if (!(*iter)->Wipe_Encryption())
1491 ret = false;
1492 } else {
1493#endif
1494 if (!(*iter)->Wipe())
1495 ret = false;
1496#ifdef TW_OEM_BUILD
1497 }
1498#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001499 } else if ((*iter)->Has_Android_Secure) {
1500 if (!(*iter)->Wipe_AndSec())
1501 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001502 }
1503 }
bigbiffad58e1b2020-07-06 20:24:34 -04001504 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001505 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001506}
1507
Dees_Troy38bd7602012-09-14 13:33:53 -04001508int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1509 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001510 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001511
1512 if (!Mount_By_Path("/data", true))
1513 return false;
1514
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001515 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001516
bigbiff25d25b92020-06-19 16:07:38 -04001517 std::string cacheDir = TWFunc::get_log_dir();
1518 if (cacheDir == CACHE_LOGS_DIR) {
1519 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1520 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001521 }
1522 dir.push_back(cacheDir + "dalvik-cache");
1523 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001524 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001525
Dees_Troy38bd7602012-09-14 13:33:53 -04001526 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001527 if (sdext && sdext->Is_Present && sdext->Mount(false))
1528 {
1529 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1530 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001531 dir.push_back("/sd-ext/dalvik-cache");
1532 }
1533 }
1534
bigbiff25d25b92020-06-19 16:07:38 -04001535 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001536 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1537 } else {
1538 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1539 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001540 for (unsigned i = 0; i < dir.size(); ++i) {
1541 if (stat(dir.at(i).c_str(), &st) == 0) {
1542 TWFunc::removeDir(dir.at(i), false);
1543 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001544 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001545 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001546
bigbiff25d25b92020-06-19 16:07:38 -04001547 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001548 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1549 } else {
1550 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1551 }
1552
Dees_Troy38bd7602012-09-14 13:33:53 -04001553 return true;
1554}
1555
1556int TWPartitionManager::Wipe_Rotate_Data(void) {
1557 if (!Mount_By_Path("/data", true))
1558 return false;
1559
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001560 unlink("/data/misc/akmd*");
1561 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001562 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001563 return true;
1564}
1565
1566int TWPartitionManager::Wipe_Battery_Stats(void) {
1567 struct stat st;
1568
1569 if (!Mount_By_Path("/data", true))
1570 return false;
1571
1572 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001573 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001574 } else {
1575 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001576 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001577 }
1578 return true;
1579}
1580
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001581int TWPartitionManager::Wipe_Android_Secure(void) {
1582 std::vector<TWPartition*>::iterator iter;
1583 int ret = false;
1584 bool found = false;
1585
1586 // Iterate through all partitions
1587 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1588 if ((*iter)->Has_Android_Secure) {
1589 ret = (*iter)->Wipe_AndSec();
1590 found = true;
1591 }
1592 }
1593 if (found) {
1594 return ret;
1595 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001596 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001597 }
1598 return false;
1599}
1600
Dees_Troy38bd7602012-09-14 13:33:53 -04001601int TWPartitionManager::Format_Data(void) {
1602 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffcfa875c2021-06-20 16:20:27 -04001603 TWPartition* metadata = Find_Partition_By_Path("/metadata");
1604 if (metadata != NULL)
1605 metadata->UnMount(false);
Dees_Troy38bd7602012-09-14 13:33:53 -04001606
1607 if (dat != NULL) {
bigbiffab76bd72021-10-11 10:17:48 -04001608 if (android::base::GetBoolProperty("ro.virtual_ab.enabled", false)) {
bigbiffcfa875c2021-06-20 16:20:27 -04001609#ifndef TW_EXCLUDE_APEX
1610 twrpApex apex;
1611 apex.Unmount();
1612#endif
1613 if (metadata != NULL)
1614 metadata->Mount(true);
bigbiffd21252f2021-09-18 15:56:32 -04001615 if (!Check_Pending_Merges())
bigbiffcfa875c2021-06-20 16:20:27 -04001616 return false;
1617 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001618 return dat->Wipe_Encryption();
1619 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001620 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001621 return false;
1622 }
1623 return false;
1624}
1625
1626int TWPartitionManager::Wipe_Media_From_Data(void) {
1627 TWPartition* dat = Find_Partition_By_Path("/data");
1628
1629 if (dat != NULL) {
1630 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001631 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001632 return false;
1633 }
1634 if (!dat->Mount(true))
1635 return false;
1636
Ethan Yonker74db1572015-10-28 12:44:49 -05001637 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001638 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001639 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001640 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001641 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001642 return true;
1643 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001644 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001645 return false;
1646 }
1647 return false;
1648}
1649
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001650int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1651 std::vector<TWPartition*>::iterator iter;
1652 int ret = false;
1653 bool found = false;
1654 string Local_Path = TWFunc::Get_Root_Path(Path);
1655
1656 if (Local_Path == "/tmp" || Local_Path == "/")
1657 return true;
1658
1659 // Iterate through all partitions
1660 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1661 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1662 ret = (*iter)->Repair();
1663 found = true;
1664 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1665 (*iter)->Repair();
1666 }
1667 }
1668 if (found) {
1669 return ret;
1670 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001671 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 -05001672 } else {
1673 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1674 }
1675 return false;
1676}
1677
Ethan Yonkera2719152015-05-28 09:44:41 -05001678int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1679 std::vector<TWPartition*>::iterator iter;
1680 int ret = false;
1681 bool found = false;
1682 string Local_Path = TWFunc::Get_Root_Path(Path);
1683
1684 if (Local_Path == "/tmp" || Local_Path == "/")
1685 return true;
1686
1687 // Iterate through all partitions
1688 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1689 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1690 ret = (*iter)->Resize();
1691 found = true;
1692 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1693 (*iter)->Resize();
1694 }
1695 }
1696 if (found) {
1697 return ret;
1698 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001699 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 -05001700 } else {
1701 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1702 }
1703 return false;
1704}
1705
Dees_Troy51a0e822012-09-05 15:24:24 -04001706void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001707 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001708 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001709
Ethan Yonker74db1572015-10-28 12:44:49 -05001710 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001711 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001712 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001713 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001714 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001715 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1716 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001717 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001718 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1719 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1720 } else if ((*iter)->Mount_Point == "/cache") {
1721 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1722 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1723 } else if ((*iter)->Mount_Point == "/sd-ext") {
1724 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1725 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1726 if ((*iter)->Backup_Size == 0) {
1727 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1728 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1729 } else
1730 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001731 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001732 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001733 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001734 if ((*iter)->Backup_Size == 0) {
1735 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1736 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1737 } else
1738 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001739 } else if ((*iter)->Mount_Point == "/boot") {
1740 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1741 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1742 if ((*iter)->Backup_Size == 0) {
1743 DataManager::SetValue("tw_has_boot_partition", 0);
1744 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1745 } else
1746 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001747 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001748 } else {
1749 // Handle unmountable partitions in case we reset defaults
1750 if ((*iter)->Mount_Point == "/boot") {
1751 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1752 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1753 if ((*iter)->Backup_Size == 0) {
1754 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1755 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1756 } else
1757 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1758 } else if ((*iter)->Mount_Point == "/recovery") {
1759 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1760 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1761 if ((*iter)->Backup_Size == 0) {
1762 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1763 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1764 } else
1765 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001766 } else if ((*iter)->Mount_Point == "/data") {
1767 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001768 }
Dees_Troy51127312012-09-08 13:08:49 -04001769 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001770 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001771 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001772 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1773 string current_storage_path = DataManager::GetCurrentStoragePath();
1774 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001775 if (FreeStorage != NULL) {
1776 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001777 if (!FreeStorage->Mount(false)) {
1778 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1779 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1780 } else {
1781 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001782 }
1783 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001784 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001785 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001786 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001787 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001788 return;
1789}
1790
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001791void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1792 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001793
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001794 if (dat != NULL) {
bigbiffaed1bdf2021-08-03 18:21:39 -04001795 // reparse for /cache/recovery/command
1796 static constexpr const char* COMMAND_FILE = "/data/cache/command";
1797 if (TWFunc::Path_Exists(COMMAND_FILE)) {
1798 startupArgs startup;
1799 std::string content;
1800 TWFunc::read_file(COMMAND_FILE, content);
1801 std::vector<std::string> args = {content};
1802 startup.processRecoveryArgs(args, 0);
1803 }
1804
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001805 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1806 dat->Is_Decrypted = true;
1807 if (!Block_Device.empty()) {
1808 dat->Decrypted_Block_Device = Block_Device;
1809 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1810 } else {
1811 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1812 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001813 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001814 dat->Setup_File_System(false);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001815 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 -06001816
Noah Jacobson81d638d2019-04-28 00:10:07 -04001817 sleep(1); // Sleep for a bit so that the device will be ready
me-cafebabe09649612022-06-10 21:53:31 +08001818
1819 // Mount only /data
1820 dat->Symlink_Path = ""; // Not to let it to bind mount /data/media again
1821 if (!dat->Mount(false)) {
1822 LOGERR("Unable to mount /data after decryption");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001823 }
me-cafebabe09649612022-06-10 21:53:31 +08001824
1825 if (dat->Has_Data_Media && TWFunc::Path_Exists("/data/media/0")) {
1826 dat->Storage_Path = "/data/media/0";
1827 } else {
1828 dat->Storage_Path = "/data/media";
1829 }
1830 dat->Symlink_Path = dat->Storage_Path;
1831 DataManager::SetValue("tw_storage_path", dat->Symlink_Path);
1832 DataManager::SetValue("tw_settings_path", dat->Symlink_Path);
1833 LOGINFO("New storage path after decryption: %s\n", dat->Storage_Path.c_str());
1834
epicXa721f952021-01-04 13:01:31 +05301835 DataManager::LoadTWRPFolderInfo();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001836 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001837 Output_Partition(dat);
bigbiff4fa02b52021-12-30 17:01:44 -05001838 if (!android::base::StartsWith(dat->Actual_Block_Device, "/dev/block/mmcblk")) {
1839 if (!dat->Bind_Mount(false))
1840 LOGERR("Unable to bind mount /sdcard to %s\n", dat->Storage_Path.c_str());
1841 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001842 } else
1843 LOGERR("Unable to locate data partition.\n");
1844}
1845
Noah Jacobson81d638d2019-04-28 00:10:07 -04001846void TWPartitionManager::Parse_Users() {
1847#ifdef TW_INCLUDE_FBE
1848 char user_check_result[PROPERTY_VALUE_MAX];
1849 for (int userId = 0; userId <= 9999; userId++) {
1850 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1851 property_get(prop.c_str(), user_check_result, "-1");
1852 if (strcmp(user_check_result, "-1") != 0) {
1853 if (userId < 0 || userId > 9999) {
1854 LOGINFO("Incorrect user id %d\n", userId);
1855 continue;
1856 }
1857 struct users_struct user;
1858 user.userId = to_string(userId);
1859
1860 // Attempt to get name of user. Fallback to user ID if this fails.
Darth98f775972022-08-05 09:39:03 +01001861 std::string path = "/data/system/users/" + to_string(userId) + ".xml";
1862 if (!TWFunc::Check_Xml_Format(path)) {
1863 string oldpath = path;
1864 if (TWFunc::abx_to_xml(oldpath, path)) {
1865 LOGINFO("Android 12+: '%s' has been converted into plain text xml (for user %s).\n", oldpath.c_str(), user.userId.c_str());
1866 }
1867 }
1868 char* userFile = PageManager::LoadFileToBuffer(path, NULL);
me-cafebabec46981d2022-07-29 01:54:43 +08001869 if (userFile == NULL) {
1870 user.userName = to_string(userId);
bigbiffa957f072021-03-07 18:20:29 -05001871 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001872 else {
me-cafebabec46981d2022-07-29 01:54:43 +08001873 xml_document<> *userXml = new xml_document<>();
1874 userXml->parse<0>(userFile);
1875 xml_node<>* userNode = userXml->first_node("user");
1876 if (userNode == nullptr) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001877 user.userName = to_string(userId);
me-cafebabec46981d2022-07-29 01:54:43 +08001878 } else {
1879 xml_node<>* nameNode = userNode->first_node("name");
1880 if (nameNode == nullptr)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001881 user.userName = to_string(userId);
me-cafebabec46981d2022-07-29 01:54:43 +08001882 else {
1883 string userName = nameNode->value();
1884 user.userName = userName + " (" + to_string(userId) + ")";
Noah Jacobson81d638d2019-04-28 00:10:07 -04001885 }
1886 }
1887 }
1888
1889 string filename;
bigbiffdf53b6c2022-01-17 19:31:52 -05001890 user.type = android::keystore::Get_Password_Type(userId, filename);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001891
1892 user.isDecrypted = false;
1893 if (strcmp(user_check_result, "1") == 0)
1894 user.isDecrypted = true;
1895 Users_List.push_back(user);
1896 }
1897 }
1898 Check_Users_Decryption_Status();
1899#endif
1900}
1901
1902std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
1903 return &Users_List;
1904}
1905
1906void TWPartitionManager::Mark_User_Decrypted(int userID) {
1907#ifdef TW_INCLUDE_FBE
1908 std::vector<users_struct>::iterator iter;
1909 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1910 if (atoi((*iter).userId.c_str()) == userID) {
1911 (*iter).isDecrypted = true;
1912 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
1913 property_set(user_prop_decrypted.c_str(), "1");
1914 break;
1915 }
1916 }
1917 Check_Users_Decryption_Status();
1918#endif
1919}
1920
1921void TWPartitionManager::Check_Users_Decryption_Status() {
1922#ifdef TW_INCLUDE_FBE
1923 int all_is_decrypted = 1;
1924 std::vector<users_struct>::iterator iter;
1925 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1926 if (!(*iter).isDecrypted) {
1927 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
1928 all_is_decrypted = 0;
1929 break;
1930 }
1931 }
1932 if (all_is_decrypted == 1) {
1933 LOGINFO("All found users are decrypted.\n");
1934 DataManager::SetValue("tw_all_users_decrypted", "1");
1935 property_set("twrp.all.users.decrypted", "true");
1936 } else
1937 DataManager::SetValue("tw_all_users_decrypted", "0");
1938#endif
1939}
1940
1941int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001942#ifdef TW_INCLUDE_CRYPTO
Captain Throwback37c3aef2021-10-06 11:38:18 -04001943 char crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001944 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001945
Ethan Yonker253368a2014-11-25 15:00:52 -06001946 // Mount any partitions that need to be mounted for decrypt
1947 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1948 if ((*iter)->Mount_To_Decrypt) {
1949 (*iter)->Mount(true);
1950 }
a39552696ff55ce2013-01-08 16:14:56 +00001951 }
oshmouna82a7542018-04-10 17:45:55 +02001952 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001953
Captain Throwback37c3aef2021-10-06 11:38:18 -04001954 Set_Crypto_State();
1955 Set_Crypto_Type("block");
Ethan Yonkera1de1492015-11-04 11:58:27 -06001956
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001957 if (DataManager::GetIntValue(TW_IS_FBE)) {
1958#ifdef TW_INCLUDE_FBE
1959 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1960 return -1;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001961
1962 bool user_need_decrypt = false;
1963 std::vector<users_struct>::iterator iter;
1964 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1965 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
1966 user_need_decrypt = true;
1967 }
1968 }
1969 if (!user_need_decrypt) {
1970 LOGINFO("User %d does not require decryption\n", user_id);
1971 return 0;
1972 }
1973
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001974 int retry_count = 10;
1975 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001976 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
1977 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
bigbiffdf53b6c2022-01-17 19:31:52 -05001978 if (android::keystore::Decrypt_User(user_id, Password)) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001979 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
1980 Mark_User_Decrypted(user_id);
1981 if (user_id == 0) {
1982 // When decrypting user 0 also try all other users
1983 std::vector<users_struct>::iterator iter;
1984 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1985 if ((*iter).userId == "0" || (*iter).isDecrypted)
1986 continue;
1987
1988 int tmp_user_id = atoi((*iter).userId.c_str());
1989 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
bigbiffdf53b6c2022-01-17 19:31:52 -05001990 if (android::keystore::Decrypt_User(tmp_user_id, Password) ||
1991 (Password != "!" && android::keystore::Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
Noah Jacobson81d638d2019-04-28 00:10:07 -04001992 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
1993 Mark_User_Decrypted(tmp_user_id);
1994 } else {
1995 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
1996 }
1997 }
1998 Post_Decrypt("");
1999 }
2000
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002001 return 0;
Noah Jacobson81d638d2019-04-28 00:10:07 -04002002 } else {
2003 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002004 }
2005#else
2006 LOGERR("FBE support is not present\n");
2007#endif
2008 return -1;
2009 }
2010
Noah Jacobson81d638d2019-04-28 00:10:07 -04002011 char isdecrypteddata[PROPERTY_VALUE_MAX];
2012 property_get("twrp.decrypt.done", isdecrypteddata, "");
2013 if (strcmp(isdecrypteddata, "true") == 0) {
2014 LOGINFO("Data has no decryption required\n");
2015 return 0;
2016 }
2017
Ethan Yonkerddb63e22017-01-19 14:01:57 -06002018 int pwret = -1;
2019 pid_t pid = fork();
2020 if (pid < 0) {
2021 LOGERR("fork failed\n");
2022 return -1;
2023 } else if (pid == 0) {
2024 // Child process
2025 char cPassword[255];
2026 strcpy(cPassword, Password.c_str());
2027 int ret = cryptfs_check_passwd(cPassword);
2028 exit(ret);
2029 } else {
2030 // Parent
2031 int status;
2032 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
2033 pwret = -1;
2034 else
2035 pwret = WEXITSTATUS(status) ? -1 : 0;
2036 }
a39552696ff55ce2013-01-08 16:14:56 +00002037
nkk7171c6c502017-01-05 23:55:05 +02002038#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
2039 if (pwret != 0) {
2040 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02002041 switch (pwret) {
2042 case VD_SUCCESS:
2043 break;
2044 case VD_ERR_MISSING_VDC:
2045 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
2046 break;
2047 case VD_ERR_MISSING_VOLD:
2048 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
2049 break;
2050 }
nkk7171c6c502017-01-05 23:55:05 +02002051 }
2052#endif // TW_CRYPTO_USE_SYSTEM_VOLD
2053
Ethan Yonker253368a2014-11-25 15:00:52 -06002054 // Unmount any partitions that were needed for decrypt
2055 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2056 if ((*iter)->Mount_To_Decrypt) {
2057 (*iter)->UnMount(false);
2058 }
2059 }
oshmouna82a7542018-04-10 17:45:55 +02002060 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06002061
a39552696ff55ce2013-01-08 16:14:56 +00002062 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002063 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002064 return -1;
2065 }
a39552696ff55ce2013-01-08 16:14:56 +00002066
Dees_Troy5bf43922012-09-07 16:07:55 -04002067 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
2068 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002069 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04002070 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002071 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04002072 }
2073 return 0;
2074#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002075 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002076 return -1;
2077#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002078 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04002079}
2080
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002081int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002082 std::vector<TWPartition*>::iterator iter;
2083 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2084 if ((*iter)->Has_Data_Media) {
2085 if ((*iter)->Mount(true)) {
2086 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
2087 return -1;
2088 }
2089 }
2090 }
Dees_Troy1a650e62012-10-19 20:54:32 -04002091 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05002092 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002093 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002094}
2095
Ethan Yonker66a19492015-12-10 10:19:45 -06002096TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002097 std::vector<TWPartition*>::iterator iter = Partitions.begin();
2098
2099 if (!Path.empty()) {
2100 string Search_Path = TWFunc::Get_Root_Path(Path);
2101 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06002102 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002103 iter++;
2104 break;
2105 }
2106 }
2107 }
2108
2109 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002110 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
2111 // do nothing, do not return this type of partition
2112 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002113 return (*iter);
2114 }
2115 }
2116
2117 return NULL;
2118}
2119
Dees_Troyd21618c2012-10-14 18:48:49 -04002120int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04002121 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
2122
2123 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002124 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2125 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 -04002126 return false;
2127 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002128 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2129 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002130 return false;
2131
bigbiff22851b92021-09-01 16:46:57 -04002132 if (!TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002133 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002134 return false;
2135 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002136 return true;
2137}
2138
Dees_Troy8170a922012-09-18 15:40:25 -04002139int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002140 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002141 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002142
Ethan Yonker47360be2014-04-01 10:34:34 -05002143 string Lun_File_str = CUSTOM_LUN_FILE;
2144 size_t found = Lun_File_str.find("%");
2145 if (found != string::npos) {
2146 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2147 if (TWFunc::Path_Exists(lun_file))
2148 has_multiple_lun = true;
2149 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002150 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002151 if (!has_multiple_lun) {
2152 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2153 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2154 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002155 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002156 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002157 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2158 goto error_handle;
2159 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002160 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002161 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002162 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002163 }
2164 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002165 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002166 }
Dees_Troy8170a922012-09-18 15:40:25 -04002167 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002168 LOGINFO("Device has multiple lun files\n");
2169 TWPartition* Mount1;
2170 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002171 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002172 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002173 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002174 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2175 goto error_handle;
2176 }
Matt Moweree717062014-04-26 01:46:46 -05002177 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002178 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002179 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002180 Open_Lun_File(Mount2->Mount_Point, lun_file);
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") {
2183 Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002184 }
nkk717aa6fc62017-03-24 18:28:03 +02002185 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2186 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data" && !Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002187 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002188 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002189 }
Dees_Troy8170a922012-09-18 15:40:25 -04002190 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002191 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002192 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002193 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002194error_handle:
2195 if (mtp_was_enabled)
2196 if (!Enable_MTP())
2197 Disable_MTP();
2198 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002199}
2200
2201int TWPartitionManager::usb_storage_disable(void) {
bigbiff22851b92021-09-01 16:46:57 -04002202 int index, ret = 0;
Dees_Troy2673cec2013-04-02 20:22:16 +00002203 char lun_file[255], ch[2] = {0, 0};
2204 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002205
2206 for (index=0; index<2; index++) {
2207 sprintf(lun_file, CUSTOM_LUN_FILE, index);
bigbiff22851b92021-09-01 16:46:57 -04002208 if (!TWFunc::write_to_file(lun_file, str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002209 break;
bigbiff22851b92021-09-01 16:46:57 -04002210 ret = -1;
Dees_Troy8170a922012-09-18 15:40:25 -04002211 }
Dees_Troy8170a922012-09-18 15:40:25 -04002212 }
Dees_Troye58d5262012-09-21 12:27:57 -04002213 Mount_All_Storage();
2214 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002215 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002216 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002217 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002218 if (mtp_was_enabled)
2219 if (!Enable_MTP())
2220 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002221 if (ret < 0 && index == 0) {
2222 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2223 return false;
2224 } else {
2225 return true;
2226 }
Dees_Troy8170a922012-09-18 15:40:25 -04002227 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002228}
2229
2230void TWPartitionManager::Mount_All_Storage(void) {
2231 std::vector<TWPartition*>::iterator iter;
2232
2233 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2234 if ((*iter)->Is_Storage)
2235 (*iter)->Mount(false);
2236 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002237}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002238
Dees_Troyd0384ef2012-10-12 12:15:42 -04002239void TWPartitionManager::UnMount_Main_Partitions(void) {
2240 // Unmounts system and data if data is not data/media
2241 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002242 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002243
Mohd Faraze3948ec2020-08-14 01:40:59 +00002244 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002245
Mohd Faraze3948ec2020-08-14 01:40:59 +00002246 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2247 UnMount_By_Path (Get_Android_Root_Path(), true);
2248 Partition = Find_Partition_By_Path ("/product");
2249 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002250 if (!datamedia)
2251 UnMount_By_Path("/data", true);
2252
Mohd Faraze3948ec2020-08-14 01:40:59 +00002253 Partition = Find_Partition_By_Path ("/boot");
2254 if (Partition != NULL && Partition->Can_Be_Mounted)
2255 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002256}
2257
Dees_Troy9350b8d2012-09-27 12:38:38 -04002258int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002259 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002260 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 -04002261 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002262
Ethan Yonker74db1572015-10-28 12:44:49 -05002263 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002264
2265 // Locate and validate device to partition
2266 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2267
Ethan Yonker66a19492015-12-10 10:19:45 -06002268 if (SDCard->Is_Adopted_Storage)
2269 SDCard->Revert_Adopted();
2270
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002271 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002272 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002273 return false;
2274 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002275
2276 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002277 if (!SDCard->UnMount(true))
2278 return false;
2279 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2280 if (SDext != NULL) {
2281 if (!SDext->UnMount(true))
2282 return false;
2283 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002284 char* swappath = getenv("SWAPPATH");
2285 if (swappath != NULL) {
2286 LOGINFO("Unmounting swap at '%s'\n", swappath);
2287 umount(swappath);
2288 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002289
Ethan Yonker483e9f42016-01-11 22:21:18 -06002290 // Determine block device
2291 if (SDCard->Alternate_Block_Device.empty()) {
2292 SDCard->Find_Actual_Block_Device();
2293 Device = SDCard->Actual_Block_Device;
2294 // Just use the root block device
2295 Device.resize(strlen("/dev/block/mmcblkX"));
2296 } else {
2297 Device = SDCard->Alternate_Block_Device;
2298 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002299
2300 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002301 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002302
2303 DataManager::GetValue("tw_sdext_size", ext);
2304 DataManager::GetValue("tw_swap_size", swap);
2305 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2306 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002307 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);
2308
2309 // Determine partition sizes
2310 if (swap == 0 && ext == 0) {
2311 fat_str = "-0";
2312 } else {
2313 memset(temp, 0, sizeof(temp));
2314 sprintf(temp, "%i", fat_size);
2315 fat_str = temp;
2316 fat_str += "MB";
2317 }
2318 if (swap == 0) {
2319 ext_str = "-0";
2320 } else {
2321 memset(temp, 0, sizeof(temp));
2322 sprintf(temp, "%i", ext);
2323 ext_str = "+";
2324 ext_str += temp;
2325 ext_str += "MB";
2326 }
2327
Dees_Troy9350b8d2012-09-27 12:38:38 -04002328 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002329 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002330 return false;
2331 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002332
Ethan Yonker74db1572015-10-28 12:44:49 -05002333 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002334 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002335 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002336 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002337 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002338 Update_System_Details();
2339 return false;
2340 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002341 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002342 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 +00002343 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002344 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002345 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002346 return false;
2347 }
2348 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002349 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002350 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002351 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002352 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002353 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002354 Update_System_Details();
2355 return false;
2356 }
2357 }
2358 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002359 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002360 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 +00002361 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002362 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002363 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002364 Update_System_Details();
2365 return false;
2366 }
2367 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002368
2369 // Convert GPT to MBR
2370 Command = "sgdisk --gpttombr " + Device;
2371 if (TWFunc::Exec_Cmd(Command) != 0)
2372 LOGINFO("Failed to covert partition GPT to MBR\n");
2373
2374 // Tell the kernel to rescan the partition table
2375 int fd = open(Device.c_str(), O_RDONLY);
2376 ioctl(fd, BLKRRPART, 0);
2377 close(fd);
2378
2379 string format_device = Device;
2380 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2381 format_device += "p";
2382
2383 // Format new partitions to proper file system
2384 if (fat_size > 0) {
2385 Command = "mkfs.fat " + format_device + "1";
2386 TWFunc::Exec_Cmd(Command);
2387 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002388 if (ext > 0) {
2389 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002390 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2391 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2392 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2393 TWFunc::Exec_Cmd(Command);
2394 } else {
2395 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002396 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002397 }
2398 if (swap > 0) {
2399 Command = "mkswap " + format_device;
2400 if (ext > 0)
2401 Command += "3";
2402 else
2403 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002404 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002405 }
2406
Ethan Yonker483e9f42016-01-11 22:21:18 -06002407 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2408 if (SDCard->Mount(true)) {
2409 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2410 mkdir(TWRP_Folder.c_str(), 0777);
2411 DataManager::Flush();
2412 }
2413
Dees_Troy9350b8d2012-09-27 12:38:38 -04002414 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002415 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002416 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002417}
Dees_Troya13d74f2013-03-24 08:54:55 -05002418
2419void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2420 std::vector<TWPartition*>::iterator iter;
2421 if (ListType == "mount") {
2422 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002423 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002424 struct PartitionList part;
2425 part.Display_Name = (*iter)->Display_Name;
2426 part.Mount_Point = (*iter)->Mount_Point;
2427 part.selected = (*iter)->Is_Mounted();
2428 Partition_List->push_back(part);
2429 }
2430 }
2431 } else if (ListType == "storage") {
2432 char free_space[255];
2433 string Current_Storage = DataManager::GetCurrentStoragePath();
2434 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2435 if ((*iter)->Is_Storage) {
2436 struct PartitionList part;
2437 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2438 part.Display_Name = (*iter)->Storage_Name + " (";
2439 part.Display_Name += free_space;
2440 part.Display_Name += "MB)";
2441 part.Mount_Point = (*iter)->Storage_Path;
2442 if ((*iter)->Storage_Path == Current_Storage)
2443 part.selected = 1;
2444 else
2445 part.selected = 0;
2446 Partition_List->push_back(part);
2447 }
2448 }
2449 } else if (ListType == "backup") {
2450 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002451 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002452 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002453 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002454 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002455 Backup_Size = (*iter)->Backup_Size;
2456 if ((*iter)->Has_SubPartition) {
2457 std::vector<TWPartition*>::iterator subpart;
2458
2459 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2460 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2461 Backup_Size += (*subpart)->Backup_Size;
2462 }
2463 }
2464 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002465 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2466 part.Display_Name += backup_size;
2467 part.Display_Name += "MB)";
2468 part.Mount_Point = (*iter)->Backup_Path;
2469 part.selected = 0;
2470 Partition_List->push_back(part);
2471 }
2472 }
2473 } else if (ListType == "restore") {
2474 string Restore_List, restore_path;
2475 TWPartition* restore_part = NULL;
2476
2477 DataManager::GetValue("tw_restore_list", Restore_List);
2478 if (!Restore_List.empty()) {
2479 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2480 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2481 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002482 struct PartitionList part;
2483 if (restore_path.compare("ADB_Backup") == 0) {
2484 part.Display_Name = "ADB Backup";
2485 part.Mount_Point = "ADB Backup";
2486 part.selected = 1;
2487 Partition_List->push_back(part);
2488 break;
2489 }
Dees_Troy59df9262013-06-19 14:53:57 -05002490 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002491 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002492 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002493 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002494 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002495 part.Display_Name = restore_part->Backup_Display_Name;
2496 part.Mount_Point = restore_part->Backup_Path;
2497 part.selected = 1;
2498 Partition_List->push_back(part);
2499 }
2500 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002501 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002502 }
2503 start_pos = end_pos + 1;
2504 end_pos = Restore_List.find(";", start_pos);
2505 }
2506 }
2507 } else if (ListType == "wipe") {
2508 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002509 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002510 dalvik.Mount_Point = "DALVIK";
2511 dalvik.selected = 0;
2512 Partition_List->push_back(dalvik);
2513 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2514 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2515 struct PartitionList part;
2516 part.Display_Name = (*iter)->Display_Name;
2517 part.Mount_Point = (*iter)->Mount_Point;
2518 part.selected = 0;
2519 Partition_List->push_back(part);
2520 }
2521 if ((*iter)->Has_Android_Secure) {
2522 struct PartitionList part;
2523 part.Display_Name = (*iter)->Backup_Display_Name;
2524 part.Mount_Point = (*iter)->Backup_Path;
2525 part.selected = 0;
2526 Partition_List->push_back(part);
2527 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002528 if ((*iter)->Has_Data_Media) {
2529 struct PartitionList datamedia;
2530 datamedia.Display_Name = (*iter)->Storage_Name;
2531 datamedia.Mount_Point = "INTERNAL";
2532 datamedia.selected = 0;
2533 Partition_List->push_back(datamedia);
2534 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002535 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002536 } else if (ListType == "flashimg") {
2537 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2538 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2539 struct PartitionList part;
2540 part.Display_Name = (*iter)->Backup_Display_Name;
2541 part.Mount_Point = (*iter)->Backup_Path;
2542 part.selected = 0;
2543 Partition_List->push_back(part);
2544 }
2545 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002546 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2547 TWPartition* boot = Find_Partition_By_Path("/boot");
2548 if (boot) {
2549 // Allow flashing kernels and ramdisks
2550 struct PartitionList repack_ramdisk;
2551 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2552 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2553 repack_ramdisk.selected = 0;
2554 Partition_List->push_back(repack_ramdisk);
2555 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2556 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2557 repack_kernel.Mount_Point = "/repack_kernel";
2558 repack_kernel.selected = 0;
2559 Partition_List->push_back(repack_kernel);*/
2560 }
2561 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002562 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002563 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002564 }
2565}
2566
2567int TWPartitionManager::Fstab_Processed(void) {
2568 return Partitions.size();
2569}
Dees_Troyd93bda52013-07-03 19:55:19 +00002570
2571void TWPartitionManager::Output_Storage_Fstab(void) {
2572 std::vector<TWPartition*>::iterator iter;
2573 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002574 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002575 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002576
2577 if (cacheDir.empty()) {
2578 LOGINFO("Unable to find cache directory\n");
2579 return;
2580 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002581
bigbiff25d25b92020-06-19 16:07:38 -04002582 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002583 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002584
2585 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002586 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002587 return;
2588 }
2589
2590 // Iterate through all partitions
2591 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2592 if ((*iter)->Is_Storage) {
2593 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2594 strcpy(storage_partition, Temp.c_str());
2595 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2596 }
2597 }
2598 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002599}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002600
2601TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2602{
2603 TWPartition *res = NULL;
2604 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002605 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002606 continue;
2607
Matt Mowera8a89d12016-12-30 18:10:37 -06002608 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002609 return *iter;
2610
Matt Mowera8a89d12016-12-30 18:10:37 -06002611 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002612 res = *iter;
2613 }
2614 return res;
2615}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002616
2617bool TWPartitionManager::Enable_MTP(void) {
2618#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002619 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002620 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002621 return true;
2622 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002623
2624 int mtppipe[2];
2625
2626 if (pipe(mtppipe) < 0) {
2627 LOGERR("Error creating MTP pipe\n");
2628 return false;
2629 }
2630
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002631 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002632 property_get("sys.usb.config", old_value, "");
2633 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002634 char vendor[PROPERTY_VALUE_MAX];
2635 char product[PROPERTY_VALUE_MAX];
2636 property_set("sys.usb.config", "none");
2637 property_get("usb.vendor", vendor, "18D1");
2638 property_get("usb.product.mtpadb", product, "4EE2");
2639 string vendorstr = vendor;
2640 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002641 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2642 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002643 property_set("sys.usb.config", "mtp,adb");
2644 }
Matt Mower653a1702017-02-16 10:38:52 -06002645 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002646 * twrp set tw_mtp_debug 1
2647 */
2648 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002649 mtppid = mtp->forkserver(mtppipe);
2650 if (mtppid) {
2651 close(mtppipe[0]); // Host closes read side
2652 mtp_write_fd = mtppipe[1];
2653 DataManager::SetValue("tw_mtp_enabled", 1);
2654 Add_All_MTP_Storage();
2655 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002656 } else {
2657 close(mtppipe[0]);
2658 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002659 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002660 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002661 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002662#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002663 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002664#endif
2665 DataManager::SetValue("tw_mtp_enabled", 0);
2666 return false;
2667}
2668
Ethan Yonker1b039202015-01-30 10:08:48 -06002669void TWPartitionManager::Add_All_MTP_Storage(void) {
2670#ifdef TW_HAS_MTP
2671 std::vector<TWPartition*>::iterator iter;
2672
2673 if (!mtppid)
2674 return; // MTP is not enabled
2675
2676 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2677 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2678 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2679 }
2680#else
2681 return;
2682#endif
2683}
2684
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002685bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002686 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002687 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002688 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002689 if (strcmp(old_value, "adb") != 0) {
2690 char vendor[PROPERTY_VALUE_MAX];
2691 char product[PROPERTY_VALUE_MAX];
2692 property_set("sys.usb.config", "none");
2693 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002694 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002695 string vendorstr = vendor;
2696 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002697 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2698 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002699 usleep(2000);
2700 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002701#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002702 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002703 LOGINFO("Disabling MTP\n");
2704 int status;
2705 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002706 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002707 // We don't care about the exit value, but this prevents a zombie process
2708 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002709 close(mtp_write_fd);
2710 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002711 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002712#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002713 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002714#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002715 DataManager::SetValue("tw_mtp_enabled", 0);
2716 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002717#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002718 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002719}
Ethan Yonker726a0202014-12-16 20:01:38 -06002720
2721TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2722 std::vector<TWPartition*>::iterator iter;
2723
2724 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2725 if ((*iter)->MTP_Storage_ID == Storage_ID)
2726 return (*iter);
2727 }
2728 return NULL;
2729}
2730
2731bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2732#ifdef TW_HAS_MTP
2733 struct mtpmsg mtp_message;
2734
2735 if (!mtppid)
2736 return false; // MTP is disabled
2737
2738 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002739 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002740 return false;
2741 }
2742
2743 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002744 if (Part->MTP_Storage_ID == 0)
2745 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002746 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2747 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2748 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2749 mtp_message.storage_id = Part->MTP_Storage_ID;
2750 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002751 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002752 return false;
2753 } else {
2754 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2755 return true;
2756 }
2757 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2758 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2759 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002760 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2761 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2762 return false;
2763 }
2764 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2765 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2766 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2767 return false;
2768 }
2769 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002770 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002771 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 -06002772 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002773 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002774 return false;
2775 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002776 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002777 return true;
2778 }
2779 } else {
2780 LOGERR("Unknown MTP message type: %i\n", message_type);
2781 }
2782 } else {
2783 // This hopefully never happens as the error handling should
2784 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002785 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002786 }
2787 return true;
2788#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002789 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002790 DataManager::SetValue("tw_mtp_enabled", 0);
2791 return false;
2792#endif
2793}
2794
2795bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2796#ifdef TW_HAS_MTP
2797 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2798 if (Part) {
2799 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2800 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002801 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002802 }
2803#endif
2804 return false;
2805}
2806
2807bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2808#ifdef TW_HAS_MTP
2809 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2810 if (Part) {
2811 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2812 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002813 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002814 }
2815#endif
2816 return false;
2817}
2818
2819bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2820#ifdef TW_HAS_MTP
2821 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2822 if (Part) {
2823 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2824 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002825 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002826 }
2827#endif
2828 return false;
2829}
2830
2831bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2832#ifdef TW_HAS_MTP
2833 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2834 if (Part) {
2835 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2836 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002837 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002838 }
2839#endif
2840 return false;
2841}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002842
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002843bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002844 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002845 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002846 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002847 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002848 size_t start_pos = 0, end_pos = 0;
2849
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002850 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002851
bigbiffce8f83c2015-12-12 18:30:21 -05002852 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2853 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2854
2855 if (!TWFunc::Path_Exists(full_filename)) {
2856 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002857 return false;
2858 }
bigbiffce8f83c2015-12-12 18:30:21 -05002859 if (!TWFunc::Path_Exists(full_filename)) {
2860 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002861 return false;
2862 }
2863 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002864
Ethan Yonker53796e72019-01-11 22:49:52 -06002865 DataManager::GetValue("tw_flash_partition", Flash_List);
2866 Repack_Type repack = REPLACE_NONE;
2867 if (Flash_List == "/repack_ramdisk;") {
2868 repack = REPLACE_RAMDISK;
2869 } else if (Flash_List == "/repack_kernel;") {
2870 repack = REPLACE_KERNEL;
2871 }
2872 if (repack != REPLACE_NONE) {
2873 Repack_Options_struct Repack_Options;
2874 Repack_Options.Type = repack;
2875 Repack_Options.Disable_Verity = false;
2876 Repack_Options.Disable_Force_Encrypt = false;
2877 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002878 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002879 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002880 PartitionSettings part_settings;
2881 part_settings.Backup_Folder = path;
2882 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2883 ProgressTracking progress(total_bytes);
2884 part_settings.progress = &progress;
2885 part_settings.adbbackup = false;
2886 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002887 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002888 if (!Flash_List.empty()) {
2889 end_pos = Flash_List.find(";", start_pos);
2890 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2891 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2892 flash_part = Find_Partition_By_Path(flash_path);
2893 if (flash_part != NULL) {
2894 partition_count++;
2895 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002896 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002897 return false;
2898 }
2899 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002900 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002901 return false;
2902 }
2903 start_pos = end_pos + 1;
2904 end_pos = Flash_List.find(";", start_pos);
2905 }
2906 }
2907
2908 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002909 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002910 return false;
2911 }
2912
2913 DataManager::SetProgress(0.0);
2914 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002915 flash_part->Backup_FileName = filename;
2916 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002917 return false;
2918 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002919 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002920 return false;
2921 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002922 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002923 return true;
2924}
Ethan Yonker74db1572015-10-28 12:44:49 -05002925
2926void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2927 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2928 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002929 if (part->Is_Adopted_Storage) {
2930 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2931 part->Backup_Display_Name = part->Display_Name;
2932 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2933 } else {
2934 part->Display_Name = gui_lookup(resource_name, default_value);
2935 part->Backup_Display_Name = part->Display_Name;
2936 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002937 }
2938}
2939
2940void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2941 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2942 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002943 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002944 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002945 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002946 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2947 } else {
2948 part->Display_Name = gui_lookup(resource_name, default_value);
2949 part->Backup_Display_Name = part->Display_Name;
2950 if (part->Is_Storage)
2951 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2952 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002953 }
2954}
2955
Ethan Yonker01f4e032017-02-03 15:30:52 -06002956void 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) {
2957 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2958 if (part) {
2959 if (part->Is_Adopted_Storage) {
2960 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2961 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2962 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2963 } else {
2964 part->Display_Name = gui_lookup(resource_name, default_value);
2965 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2966 if (part->Is_Storage)
2967 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2968 }
2969 }
2970}
2971
Ethan Yonker74db1572015-10-28 12:44:49 -05002972void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002973 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002974 Translate_Partition("/system", "system", "System");
2975 Translate_Partition("/system_image", "system_image", "System Image");
2976 Translate_Partition("/vendor", "vendor", "Vendor");
2977 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2978 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002979 Translate_Partition("/boot", "boot", "Boot");
2980 Translate_Partition("/recovery", "recovery", "Recovery");
2981 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002982 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002983 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2984 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2985 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2986 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002987 } else {
2988 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002989 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002990 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2991 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002992 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2993 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2994
2995 // Android secure is a special case
2996 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2997 if (part)
2998 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2999
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003000 std::vector<TWPartition*>::iterator sysfs;
3001 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
3002 if (!(*sysfs)->Sysfs_Entry.empty()) {
3003 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
3004 }
3005 }
3006
Ethan Yonker74db1572015-10-28 12:44:49 -05003007 // This updates the text on all of the storage selection buttons in the GUI
3008 DataManager::SetBackupFolder();
3009}
Ethan Yonker66a19492015-12-10 10:19:45 -06003010
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003011bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06003012#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003013 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003014 if (!Mount_By_Path("/data", false)) {
3015 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003016 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003017 }
Darth98f775972022-08-05 09:39:03 +01003018
3019 std::string path = "/data/system/storage.xml";
3020 if (!TWFunc::Check_Xml_Format(path)) {
3021 std::string oldpath = path;
3022 if (TWFunc::abx_to_xml(oldpath, path)) {
3023 LOGINFO("Android 12+: '%s' has been converted into plain text xml (%s).\n", oldpath.c_str(), path.c_str());
3024 }
3025 }
3026
Ethan Yonker66a19492015-12-10 10:19:45 -06003027 LOGINFO("Decrypt adopted storage starting\n");
Darth98f775972022-08-05 09:39:03 +01003028 char* xmlFile = PageManager::LoadFileToBuffer(path, NULL);
Ethan Yonker66a19492015-12-10 10:19:45 -06003029 xml_document<> *doc = NULL;
3030 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06003031 string Primary_Storage_UUID = "";
3032 if (xmlFile != NULL) {
3033 LOGINFO("successfully loaded storage.xml\n");
3034 doc = new xml_document<>();
3035 doc->parse<0>(xmlFile);
3036 volumes = doc->first_node("volumes");
3037 if (volumes) {
3038 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
3039 if (psuuid) {
3040 Primary_Storage_UUID = psuuid->value();
3041 }
3042 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003043 } else {
3044 LOGINFO("No /data/system/storage.xml for adopted storage\n");
3045 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003046 }
3047 std::vector<TWPartition*>::iterator adopt;
3048 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
Peter Cai439d60c2019-10-17 08:49:10 +08003049 if ((*adopt)->Removable && !(*adopt)->Is_Present && (*adopt)->Adopted_Mount_Delay > 0) {
3050 // On some devices, the external mmc driver takes some time
3051 // to recognize the card, in which case the "actual block device"
3052 // would not have been found yet. We wait the specified delay
3053 // and then try again.
3054 LOGINFO("Sleeping %d seconds for adopted storage.\n", (*adopt)->Adopted_Mount_Delay);
3055 sleep((*adopt)->Adopted_Mount_Delay);
3056 (*adopt)->Find_Actual_Block_Device();
3057 }
3058
Ethan Yonker66a19492015-12-10 10:19:45 -06003059 if ((*adopt)->Removable && (*adopt)->Is_Present) {
3060 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003061 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06003062 if (volumes) {
3063 xml_node<>* volume = volumes->first_node("volume");
3064 while (volume) {
3065 xml_attribute<>* guid = volume->first_attribute("partGuid");
3066 if (guid) {
3067 string GUID = (*adopt)->Adopted_GUID.c_str();
3068 GUID.insert(8, "-");
3069 GUID.insert(13, "-");
3070 GUID.insert(18, "-");
3071 GUID.insert(23, "-");
3072
3073 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
3074 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03003075 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003076 (*adopt)->Storage_Name = attr->value();
3077 (*adopt)->Display_Name = (*adopt)->Storage_Name;
3078 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
3079 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
3080 }
3081 attr = volume->first_attribute("fsUuid");
3082 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
3083 TWPartition* Dat = Find_Partition_By_Path("/data");
3084 if (Dat) {
3085 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
3086 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
3087 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
3088 Dat->Symlink_Mount_Point = "";
3089 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
3090 Dat->UnMount(false);
3091 Dat->Mount(false);
3092 (*adopt)->UnMount(false);
3093 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06003094 }
3095 }
3096 break;
3097 }
3098 }
3099 volume = volume->next_sibling("volume");
3100 }
3101 }
nkk71ffb02bd2017-06-04 23:12:16 +03003102 Update_System_Details();
3103 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06003104 }
3105 }
3106 }
3107 if (xmlFile) {
3108 doc->clear();
3109 delete doc;
3110 free(xmlFile);
3111 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003112 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06003113#else
3114 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003115 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003116#endif
3117}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003118
3119void TWPartitionManager::Remove_Partition_By_Path(string Path) {
3120 std::vector<TWPartition*>::iterator iter;
3121 string Local_Path = TWFunc::Get_Root_Path(Path);
3122
3123 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3124 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
3125 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3126 Partitions.erase(iter);
3127 return;
3128 }
3129 }
3130}
Ethan Yonker1b190162016-12-05 15:25:19 -06003131
bigbiff74a46272021-07-31 19:02:26 -04003132void TWPartitionManager::Override_Active_Slot(const string& Slot) {
3133 LOGINFO("Overriding slot to '%s'\n", Slot.c_str());
3134 Active_Slot_Display = Slot;
3135 DataManager::SetValue("tw_active_slot", Slot);
nebrassy07c4b902021-11-21 03:32:47 +01003136 PartitionManager.Update_System_Details();
bigbiff74a46272021-07-31 19:02:26 -04003137}
3138
Ethan Yonker1b190162016-12-05 15:25:19 -06003139void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3140 if (Slot != "A" && Slot != "B") {
3141 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3142 return;
3143 }
3144 if (Active_Slot_Display == Slot)
3145 return;
3146 LOGINFO("Setting active slot %s\n", Slot.c_str());
3147#ifdef AB_OTA_UPDATER
3148 if (!Active_Slot_Display.empty()) {
dianlujitaoa90dc462021-12-16 16:56:26 +08003149 android::sp<IBootControl> module = IBootControl::getService();
3150 if (module == nullptr) {
Ethan Yonker1b190162016-12-05 15:25:19 -06003151 LOGERR("Error getting bootctrl module.\n");
3152 } else {
dianlujitaoa90dc462021-12-16 16:56:26 +08003153 uint32_t slot_number = 0;
Ethan Yonker1b190162016-12-05 15:25:19 -06003154 if (Slot == "B")
3155 slot_number = 1;
dianlujitaoa90dc462021-12-16 16:56:26 +08003156 CommandResult result;
3157 auto ret = module->setActiveBootSlot(slot_number, [&result]
3158 (const CommandResult &cb_result) { result = cb_result; });
3159 if (!ret.isOk() || !result.success)
Ethan Yonker1b190162016-12-05 15:25:19 -06003160 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3161 }
3162 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
3163 }
3164#else
3165 LOGERR("Boot slot feature not present\n");
3166#endif
3167 Active_Slot_Display = Slot;
3168 if (Fstab_Processed())
3169 Update_System_Details();
3170}
3171string TWPartitionManager::Get_Active_Slot_Suffix() {
3172 if (Active_Slot_Display == "A")
3173 return "_a";
3174 return "_b";
3175}
3176string TWPartitionManager::Get_Active_Slot_Display() {
3177 return Active_Slot_Display;
3178}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003179
Captain Throwback9d6feb52018-07-27 10:05:24 -04003180string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04003181 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003182}
3183
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003184void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3185 std::vector<TWPartition*>::iterator iter;
3186
3187 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3188 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3189 TWPartition *part = *iter;
3190 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3191 (*iter)->UnMount(false);
3192 rmdir((*iter)->Mount_Point.c_str());
3193 iter = Partitions.erase(iter);
3194 delete part;
3195 } else {
3196 iter++;
3197 }
3198 }
3199}
3200
3201void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3202 std::vector<TWPartition*>::iterator iter;
3203
3204 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3205 if (!(*iter)->Sysfs_Entry.empty()) {
3206 string device;
3207 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3208 if (wildcard != string::npos) {
3209 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3210 } else {
3211 device = (*iter)->Sysfs_Entry;
3212 }
3213 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3214 // Found a match
3215 if (uevent_data.action == "add") {
3216 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3217 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3218 (*iter)->Is_Present = true;
3219 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3220 if (!Decrypt_Adopted()) {
3221 LOGINFO("No adopted storage so finding actual block device\n");
3222 (*iter)->Find_Actual_Block_Device();
3223 }
3224 return;
3225 } else if (uevent_data.action == "remove") {
3226 (*iter)->Is_Present = false;
3227 (*iter)->Primary_Block_Device = "";
3228 (*iter)->Actual_Block_Device = "";
3229 Remove_Uevent_Devices((*iter)->Mount_Point);
3230 return;
3231 }
3232 }
3233 }
3234 }
bigbiffee7b7ff2020-03-23 15:08:27 -04003235
3236 if (!PartitionManager.Get_Super_Status())
3237 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 -06003238}
3239
3240void TWPartitionManager::setup_uevent() {
3241 struct sockaddr_nl nls;
3242
3243 if (uevent_pfd.fd >= 0) {
3244 LOGINFO("uevent already set up\n");
3245 return;
3246 }
3247
3248 // Open hotplug event netlink socket
3249 memset(&nls,0,sizeof(struct sockaddr_nl));
3250 nls.nl_family = AF_NETLINK;
3251 nls.nl_pid = getpid();
3252 nls.nl_groups = -1;
3253 uevent_pfd.events = POLLIN;
3254 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3255 if (uevent_pfd.fd==-1) {
3256 LOGERR("uevent not root\n");
3257 return;
3258 }
3259
3260 // Listen to netlink socket
3261 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3262 LOGERR("Bind failed\n");
3263 return;
3264 }
3265 set_select_fd();
3266 Coldboot();
3267}
3268
3269Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3270 Uevent_Block_Data ret;
3271 ret.subsystem = "";
3272 char *ptr = buf;
3273 const char *end = buf + len;
3274
3275 buf[len - 1] = '\0';
3276 while (ptr < end) {
3277 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3278 ptr += strlen("ACTION=");
3279 ret.action = ptr;
3280 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3281 ptr += strlen("SUBSYSTEM=");
3282 ret.subsystem = ptr;
3283 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3284 ptr += strlen("DEVTYPE=");
3285 ret.type = ptr;
3286 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3287 ptr += strlen("DEVPATH=");
3288 ret.sysfs_path += ptr;
3289 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3290 ptr += strlen("DEVNAME=");
3291 ret.block_device += ptr;
3292 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3293 ptr += strlen("MAJOR=");
3294 ret.major = atoi(ptr);
3295 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3296 ptr += strlen("MINOR=");
3297 ret.minor = atoi(ptr);
3298 }
3299 ptr += strlen(ptr) + 1;
3300 }
3301 return ret;
3302}
3303
3304void TWPartitionManager::read_uevent() {
3305 char buf[1024];
3306
3307 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3308 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003309 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003310 return;
3311 }
3312 /*int i = 0; // Print all uevent output for test /debug
3313 while (i<len) {
3314 printf("%s\n", buf+i);
3315 i += strlen(buf+i)+1;
3316 }*/
3317 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3318 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3319 PartitionManager.Handle_Uevent(uevent_data);
3320 }
3321}
3322
3323void TWPartitionManager::close_uevent() {
3324 if (uevent_pfd.fd > 0)
3325 close(uevent_pfd.fd);
3326 uevent_pfd.fd = -1;
3327}
3328
3329void TWPartitionManager::Add_Partition(TWPartition* Part) {
3330 Partitions.push_back(Part);
3331}
3332
3333void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3334 string Real_Path = Path;
3335 char real_path[PATH_MAX];
3336 if (realpath(Path.c_str(), &real_path[0])) {
3337 string Real_Path = real_path;
3338 std::vector<string>::iterator iter;
3339 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3340 if (Real_Path.find((*iter)) != string::npos) {
3341 string Write_Path = Real_Path + "/uevent";
3342 if (TWFunc::Path_Exists(Write_Path)) {
3343 const char* write_val = "add\n";
3344 TWFunc::write_to_file(Write_Path, write_val);
3345 break;
3346 }
3347 }
3348 }
3349 }
3350
3351 DIR* d = opendir(Path.c_str());
3352 if (d != NULL) {
3353 struct dirent* de;
3354 while ((de = readdir(d)) != NULL) {
3355 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3356 continue;
3357 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3358 continue;
3359
3360 string item = Path + "/";
3361 item.append(de->d_name);
3362 Coldboot_Scan(sysfs_entries, item, depth + 1);
3363 }
3364 closedir(d);
3365 }
3366}
3367
3368void TWPartitionManager::Coldboot() {
3369 std::vector<TWPartition*>::iterator iter;
3370 std::vector<string> sysfs_entries;
3371
3372 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3373 if (!(*iter)->Sysfs_Entry.empty()) {
3374 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3375 if (wildcard_pos == string::npos)
3376 wildcard_pos = (*iter)->Sysfs_Entry.size();
3377 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3378 }
3379 }
3380
3381 if (sysfs_entries.size() > 0)
3382 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3383}
Ethan Yonker53796e72019-01-11 22:49:52 -06003384
3385bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3386 if (TWFunc::Path_Exists(Folder))
3387 TWFunc::removeDir(Folder, false);
3388 return TWFunc::Recursive_Mkdir(Folder);
3389}
3390
bigbiffcfa875c2021-06-20 16:20:27 -04003391std::string TWPartitionManager::Get_Bare_Partition_Name(std::string Mount_Point) {
3392 if (Mount_Point == "/system_root")
3393 return "system";
3394 else
3395 return TWFunc::Remove_Beginning_Slash(Mount_Point);
3396}
3397
bigbiffee7b7ff2020-03-23 15:08:27 -04003398bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3399 Fstab fstab;
bigbiffcfa875c2021-06-20 16:20:27 -04003400 std::string bare_partition_name = Get_Bare_Partition_Name(twrpPart->Get_Mount_Point());
bigbiffee7b7ff2020-03-23 15:08:27 -04003401
bigbiff998f8392021-08-06 19:19:33 -04003402 Super_Partition_List.push_back(bare_partition_name);
bigbiffee7b7ff2020-03-23 15:08:27 -04003403 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3404
3405 std::string blk_device_partition;
3406#ifdef AB_OTA_UPDATER
3407 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3408#else
3409 blk_device_partition = bare_partition_name;
3410#endif
3411
3412 FstabEntry fstabEntry = {
3413 .blk_device = blk_device_partition,
3414 .mount_point = twrpPart->Get_Mount_Point(),
3415 .fs_type = twrpPart->Current_File_System,
3416 .fs_mgr_flags.logical = twrpPart->Is_Super,
3417 };
3418
3419 fstab.emplace_back(fstabEntry);
3420 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
Captain Throwbackc6939102021-04-06 12:57:30 -04003421 LOGINFO("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
bigbiffee7b7ff2020-03-23 15:08:27 -04003422 return false;
3423 }
3424
bigbiff32cbabe2020-04-12 19:16:19 -04003425 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3426 usleep(100);
3427 }
3428
bigbiffee7b7ff2020-03-23 15:08:27 -04003429 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3430 twrpPart->Update_Size(true);
bigbiffee7b7ff2020-03-23 15:08:27 -04003431 twrpPart->Set_Can_Be_Backed_Up(false);
3432 twrpPart->Set_Can_Be_Wiped(false);
me-cafebabe928234b2022-07-28 04:07:04 +08003433 if (access(("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str(), F_OK) == -1) {
3434 LOGINFO("Symlinking %s => /dev/block/bootdevice/by-name/%s \n", fstabEntry.blk_device.c_str(), bare_partition_name.c_str());
3435 symlink(fstabEntry.blk_device.c_str(), ("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str());
3436 }
Mohd Faraz7fc70502021-04-22 20:44:11 +02003437
bigbiffee7b7ff2020-03-23 15:08:27 -04003438 return true;
3439}
3440
3441bool TWPartitionManager::Prepare_All_Super_Volumes() {
3442 bool status = true;
3443 std::vector<TWPartition*>::iterator iter;
3444
3445 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3446 if ((*iter)->Is_Super) {
3447 if (!Prepare_Super_Volume(*iter)) {
3448 status = false;
3449 }
3450 PartitionManager.Output_Partition(*iter);
3451 }
3452 }
3453 Update_System_Details();
3454 return status;
3455}
3456
bigbiffee7b7ff2020-03-23 15:08:27 -04003457std::string TWPartitionManager::Get_Super_Partition() {
3458 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
bigbiff998f8392021-08-06 19:19:33 -04003459 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
bigbiffee7b7ff2020-03-23 15:08:27 -04003460 return "/dev/block/by-name/" + super_device;
3461}
3462
3463void TWPartitionManager::Setup_Super_Devices() {
3464 std::string superPart = Get_Super_Partition();
3465 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003466}
3467
3468void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003469 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003470 std::string superPart = Get_Super_Partition();
3471
3472 superPartition->Backup_Path = "/super";
3473 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003474 superPartition->Actual_Block_Device = superPart;
3475 superPartition->Alternate_Block_Device = superPart;
bigbiff998f8392021-08-06 19:19:33 -04003476 superPartition->Backup_Display_Name = "Super (";
3477 // Add first 4 items to fstab as logical that you would like to display in Backup_Display_Name
3478 // for the Super partition
3479 int list_size = Super_Partition_List.size();
3480 int orig_list_size = list_size;
3481 int max_display_size = 3; // total of 4 items since we start at 0
3482
3483 for (auto partition: Super_Partition_List) {
3484 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + partition;
3485 if ((orig_list_size - list_size) == max_display_size) {
3486 break;
3487 }
3488 if (list_size != 1)
3489 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + " ";
3490 list_size--;
3491 }
3492 superPartition->Backup_Display_Name += ")";
bigbiffee7b7ff2020-03-23 15:08:27 -04003493 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003494 superPartition->Current_File_System = "emmc";
3495 superPartition->Can_Be_Backed_Up = true;
3496 superPartition->Is_Present = true;
3497 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003498 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003499 Add_Partition(superPartition);
3500 PartitionManager.Output_Partition(superPartition);
bigbiffee7b7ff2020-03-23 15:08:27 -04003501}
3502
3503bool TWPartitionManager::Get_Super_Status() {
bigbiffdf8436b2020-08-30 16:22:34 -04003504 std::string fastboot_mode = android::base::GetProperty("sys.usb.config", "");
3505 if (fastboot_mode == "fastboot") {
3506 return false;
3507 }
3508 else
3509 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003510}
bigbiff25d25b92020-06-19 16:07:38 -04003511
3512bool TWPartitionManager::Recreate_Logs_Dir() {
3513#ifdef TW_INCLUDE_FBE
3514 struct passwd pd;
3515 struct passwd *pwdptr = &pd;
3516 struct passwd *tempPd;
3517 char pwdBuf[512];
3518 int uid = 0, gid = 0;
3519
3520 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3521 LOGERR("unable to get system user id\n");
3522 return false;
3523 } else {
3524 struct group grp;
3525 struct group *grpptr = &grp;
3526 struct group *tempGrp;
3527 char grpBuf[512];
3528
3529 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3530 LOGERR("unable to get cache group id\n");
3531 return false;
3532 } else {
3533 uid = pd.pw_uid;
3534 gid = grp.gr_gid;
3535 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3536 abLogsRecoveryDir += "/recovery/";
3537
3538 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3539 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3540 return false;
3541 }
3542 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3543 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3544 return false;
3545 }
3546 }
3547 }
3548#endif
3549 return true;
3550}
bigbiff1f9e4842020-10-31 11:33:15 -04003551
3552void TWPartitionManager::Unlock_Block_Partitions() {
3553 int fd, OFF = 0;
3554
3555 const std::string block_path = "/dev/block/";
3556 DIR* d = opendir(block_path.c_str());
3557 if (d != NULL) {
3558 struct dirent* de;
3559 while ((de = readdir(d)) != NULL) {
3560 if (de->d_type == DT_BLK) {
3561 std::string block_device = block_path + de->d_name;
bigbiff1f9e4842020-10-31 11:33:15 -04003562 if ((fd = open(block_device.c_str(), O_RDONLY | O_CLOEXEC)) < 0) {
3563 LOGERR("unable to open block device %s: %s\n", block_device.c_str(), strerror(errno));
3564 continue;
3565 }
3566 if (ioctl(fd, BLKROSET, &OFF) == -1) {
me-cafebabed63fcaa2022-07-28 03:19:20 +08003567 LOGERR("Unable to unlock %s: %s\n", block_device.c_str());
bigbiff1f9e4842020-10-31 11:33:15 -04003568 continue;
3569 }
3570 close(fd);
3571 }
3572 }
3573 closedir(d);
3574 }
bigbiffaf253cd2020-12-06 16:50:55 -05003575}
bigbiffcfa875c2021-06-20 16:20:27 -04003576
3577bool TWPartitionManager::Unmap_Super_Devices() {
3578 bool destroyed = false;
3579#ifndef TW_EXCLUDE_APEX
3580 twrpApex apex;
3581 apex.Unmount();
3582#endif
3583 for (auto iter = Partitions.begin(); iter != Partitions.end();) {
3584 LOGINFO("Checking partition: %s\n", (*iter)->Get_Mount_Point().c_str());
3585 if ((*iter)->Is_Super) {
3586 TWPartition *part = *iter;
3587 std::string bare_partition_name = Get_Bare_Partition_Name((*iter)->Get_Mount_Point());
3588 std::string blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3589 (*iter)->UnMount(false);
3590 LOGINFO("removing dynamic partition: %s\n", blk_device_partition.c_str());
3591 destroyed = DestroyLogicalPartition(blk_device_partition);
3592 std::string cow_partition = blk_device_partition + "-cow";
3593 std::string cow_partition_path = "/dev/block/mapper/" + cow_partition;
3594 struct stat st;
3595 if (lstat(cow_partition_path.c_str(), &st) == 0) {
3596 LOGINFO("removing cow partition: %s\n", cow_partition.c_str());
3597 destroyed = DestroyLogicalPartition(cow_partition);
3598 }
bigbiffcfa875c2021-06-20 16:20:27 -04003599 iter = Partitions.erase(iter);
3600 delete part;
3601 if (!destroyed) {
3602 return false;
3603 }
3604 } else {
3605 ++iter;
3606 }
3607 }
3608 return true;
3609}
bigbiffd21252f2021-09-18 15:56:32 -04003610
3611
3612bool TWPartitionManager::Check_Pending_Merges() {
3613 auto sm = android::snapshot::SnapshotManager::NewForFirstStageMount();
3614 if (!sm) {
3615 LOGERR("Unable to call snapshot manager\n");
3616 return false;
3617 }
3618
3619 if (!Unmap_Super_Devices()) {
3620 LOGERR("Unable to unmap dynamic partitions.\n");
3621 return false;
3622 }
3623
3624 auto callback = [&]() -> void {
3625 double progress;
3626 sm->GetUpdateState(&progress);
3627 LOGINFO("waiting for merge to complete: %.2f\n", progress);
3628 };
3629
3630 LOGINFO("checking for merges\n");
3631 if (!sm->HandleImminentDataWipe(callback)) {
3632 LOGERR("Unable to check merge status\n");
3633 return false;
3634 }
3635 return true;
Darth98f775972022-08-05 09:39:03 +01003636}