blob: f6eeeca1d99425642581e28f47c62a343ac496c0 [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
Dees_Troy5bf43922012-09-07 16:07:55 -0400109#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400110
Ethan Yonker1b190162016-12-05 15:25:19 -0600111#ifdef AB_OTA_UPDATER
dianlujitaoa90dc462021-12-16 16:56:26 +0800112#include <android/hardware/boot/1.0/IBootControl.h>
113using android::hardware::boot::V1_0::CommandResult;
114using android::hardware::boot::V1_0::IBootControl;
Ethan Yonker1b190162016-12-05 15:25:19 -0600115#endif
116
bigbiffcfa875c2021-06-20 16:20:27 -0400117using android::fs_mgr::DestroyLogicalPartition;
bigbiffee7b7ff2020-03-23 15:08:27 -0400118using android::fs_mgr::Fstab;
119using android::fs_mgr::FstabEntry;
bigbiffcfa875c2021-06-20 16:20:27 -0400120using android::fs_mgr::MetadataBuilder;
Ethan Yonker6277c792014-09-15 14:54:30 -0500121
bigbiffee7b7ff2020-03-23 15:08:27 -0400122extern bool datamedia;
Noah Jacobson81d638d2019-04-28 00:10:07 -0400123std::vector<users_struct> Users_List;
124
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500125TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400126 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600127 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600128 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500129 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600130#ifdef AB_OTA_UPDATER
131 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500132 property_get("ro.boot.slot_suffix", slot_suffix, "error");
133 if (strcmp(slot_suffix, "error") == 0)
134 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600135 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500136 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600137 Set_Active_Slot("A");
138 else
139 Set_Active_Slot("B");
140#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500141}
142
Captain Throwback37c3aef2021-10-06 11:38:18 -0400143void TWPartitionManager::Set_Crypto_State() {
144 char crypto_state[PROPERTY_VALUE_MAX];
145 property_get("ro.crypto.state", crypto_state, "error");
146 if (strcmp(crypto_state, "error") == 0)
147 property_set("ro.crypto.state", "encrypted");
148}
149
150int TWPartitionManager::Set_Crypto_Type(const char* crypto_type) {
151 char type_prop[PROPERTY_VALUE_MAX];
152 property_get("ro.crypto.type", type_prop, "error");
153 if (strcmp(type_prop, "error") == 0)
154 property_set("ro.crypto.type", crypto_type);
Captain Throwback18aea272020-10-29 12:43:17 -0400155 // Sleep for a bit so that services can start if needed
156 sleep(1);
157 return 0;
158}
159
bigbiff22851b92021-09-01 16:46:57 -0400160int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool recovery_mode) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400161 FILE *fstabFile;
162 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600163 std::map<string, Flags_Map> twrp_flags;
164
165 fstabFile = fopen("/etc/twrp.flags", "rt");
166 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200167 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600168 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600169 size_t line_size = strlen(fstab_line);
170 if (fstab_line[line_size - 1] != '\n')
171 fstab_line[line_size] = '\n';
172 Flags_Map line_flags;
173 line_flags.Primary_Block_Device = "";
174 line_flags.Alternate_Block_Device = "";
175 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
176 if (!line_flags.fstab_line) {
177 LOGERR("malloc error on line_flags.fstab_line\n");
178 return false;
179 }
180 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
181 bool found_separator = false;
182 char *fs_loc = NULL;
183 char *block_loc = NULL;
184 char *flags_loc = NULL;
185 size_t index, item_index = 0;
186 for (index = 0; index < line_size; index++) {
187 if (fstab_line[index] <= 32) {
188 fstab_line[index] = '\0';
189 found_separator = true;
190 } else if (found_separator) {
191 if (item_index == 0) {
192 fs_loc = fstab_line + index;
193 } else if (item_index == 1) {
194 block_loc = fstab_line + index;
195 } else if (item_index > 1) {
196 char *ptr = fstab_line + index;
197 if (*ptr == '/') {
198 line_flags.Alternate_Block_Device = ptr;
199 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
200 flags_loc = ptr;
201 // Once we find the flags=, we're done scanning the line
202 break;
203 }
204 }
205 found_separator = false;
206 item_index++;
207 }
208 }
209 if (block_loc)
210 line_flags.Primary_Block_Device = block_loc;
211 if (fs_loc)
212 line_flags.File_System = fs_loc;
213 if (flags_loc)
214 line_flags.Flags = flags_loc;
215 string Mount_Point = fstab_line;
216 twrp_flags[Mount_Point] = line_flags;
217 memset(fstab_line, 0, sizeof(fstab_line));
218 }
219 fclose(fstabFile);
220 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400221
222 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
223 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000224 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400225 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600226 } else
227 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400228
229 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600230 if (strstr(fstab_line, "swap"))
231 continue; // Skip swap in recovery
232
bigbiff998f8392021-08-06 19:19:33 -0400233 if (fstab_line[0] == '#')
234 continue;
235
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600236 size_t line_size = strlen(fstab_line);
237 if (fstab_line[line_size - 1] != '\n')
238 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400239
Matt Mower2b2dd152016-04-26 11:24:08 -0500240 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400241 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500242 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500243 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400244 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500245
246 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400247 }
248 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500249
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600250 if (twrp_flags.size() > 0) {
251 LOGINFO("Processing remaining twrp.flags\n");
252 // Add any items from twrp.flags that did not exist in the recovery.fstab
253 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
254 if (Find_Partition_By_Path(mapit->first) == NULL) {
255 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400256 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600257 Partitions.push_back(partition);
258 else
259 delete partition;
260 }
261 if (mapit->second.fstab_line)
262 free(mapit->second.fstab_line);
263 mapit->second.fstab_line = NULL;
264 }
265 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000266 if (Get_Super_Status()) {
267 Setup_Super_Devices();
268 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600269 LOGINFO("Done processing fstab files\n");
270
bigbiff22851b92021-09-01 16:46:57 -0400271 if (recovery_mode) {
272 Setup_Fstab_Partitions(Display_Error);
Mohd Faraze3948ec2020-08-14 01:40:59 +0000273 }
bigbiff7ba75002020-04-11 20:47:09 -0400274 return true;
275}
276
bigbiff22851b92021-09-01 16:46:57 -0400277void TWPartitionManager::Setup_Fstab_Partitions(bool Display_Error) {
278 TWPartition* settings_partition = NULL;
279 TWPartition* andsec_partition = NULL;
280 std::vector<TWPartition*>::iterator iter;
281 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
282
283 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
284 (*iter)->Partition_Post_Processing(Display_Error);
285
286 if ((*iter)->Is_Storage) {
287 ++storageid;
288 (*iter)->MTP_Storage_ID = storageid;
289 }
290
291 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
292 settings_partition = (*iter);
293 else
294 (*iter)->Is_Settings_Storage = false;
295
296 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
297 andsec_partition = (*iter);
298 else
299 (*iter)->Has_Android_Secure = false;
300
Mohd Faraz5ec04ef2023-01-02 22:47:51 +0100301 if ((*iter)->Is_Super && !Prepare_Super_Volume(*iter))
302 Partitions.erase(iter--);
bigbiff22851b92021-09-01 16:46:57 -0400303 }
304
me-cafebabed63fcaa2022-07-28 03:19:20 +0800305 Unlock_Block_Partitions();
306
bigbiff22851b92021-09-01 16:46:57 -0400307 //Setup Apex before decryption
308 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
309 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
310 if (sys) {
311 if (sys->Get_Super_Status()) {
312 sys->Mount(true);
313 if (ven) {
314 ven->Mount(true);
315 }
316 #ifdef TW_EXCLUDE_APEX
317 LOGINFO("Apex is disabled in this build\n");
318 #else
319 twrpApex apex;
320 if (!apex.loadApexImages()) {
321 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
322 property_set("twrp.apex.loaded", "false");
323 } else {
324 property_set("twrp.apex.loaded", "true");
325 }
326 TWFunc::check_and_run_script("/sbin/resyncapex.sh", "apex");
327 #endif
328 }
329 }
330 #ifndef USE_VENDOR_LIBS
331 if (ven)
332 ven->UnMount(true);
333 if (sys)
334 sys->UnMount(true);
335 #endif
336
337 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) {
338 // Attempt to automatically identify /data/media emulated storage devices
339 TWPartition* Dat = Find_Partition_By_Path("/data");
340 if (Dat) {
341 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
342 datamedia = true;
343 Dat->Setup_Data_Media();
344 settings_partition = Dat;
345 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
346 ++storageid;
347 Dat->MTP_Storage_ID = storageid;
348 }
349 }
350 if (!settings_partition) {
351 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
352 if ((*iter)->Is_Storage) {
353 settings_partition = (*iter);
354 break;
355 }
356 }
357 if (!settings_partition)
358 LOGERR("Unable to locate storage partition for storing settings file.\n");
359 }
360 if (!Write_Fstab()) {
361 if (Display_Error)
362 LOGERR("Error creating fstab\n");
363 else
364 LOGINFO("Error creating fstab\n");
365 }
366
367 if (andsec_partition) {
368 Setup_Android_Secure_Location(andsec_partition);
369 } else if (settings_partition) {
370 Setup_Android_Secure_Location(settings_partition);
371 }
372 if (settings_partition) {
373 Setup_Settings_Storage_Partition(settings_partition);
374 }
375
376 #ifdef TW_INCLUDE_CRYPTO
377 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
378 Decrypt_Data();
379 #endif
380
381 Update_System_Details();
382 if (Get_Super_Status())
383 Setup_Super_Partition();
384 UnMount_Main_Partitions();
385 #ifdef AB_OTA_UPDATER
386 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
387 #endif
388 setup_uevent();
389}
390
bigbiff7ba75002020-04-11 20:47:09 -0400391int TWPartitionManager::Write_Fstab(void) {
392 FILE *fp;
393 std::vector<TWPartition*>::iterator iter;
394 string Line;
395
396 fp = fopen("/etc/fstab", "w");
397 if (fp == NULL) {
398 LOGINFO("Can not open /etc/fstab.\n");
399 return false;
400 }
401 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
402 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530403 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
404 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400405 fputs(Line.c_str(), fp);
406 }
407 // Handle subpartition tracking
408 if ((*iter)->Is_SubPartition) {
409 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
410 if (ParentPartition)
411 ParentPartition->Has_SubPartition = true;
412 else
413 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
414 }
415 }
416 fclose(fp);
417 return true;
418}
419
420void TWPartitionManager::Decrypt_Data() {
421 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600422 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
423 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Captain Throwback37c3aef2021-10-06 11:38:18 -0400424 Set_Crypto_State();
bigbiff4fa02b52021-12-30 17:01:44 -0500425 TWPartition* Key_Directory_Partition = Find_Partition_By_Path(Decrypt_Data->Key_Directory);
426 if (Key_Directory_Partition != nullptr)
427 if (!Key_Directory_Partition->Is_Mounted())
428 Mount_By_Path(Decrypt_Data->Key_Directory, false);
429 if (!Decrypt_Data->Key_Directory.empty()) {
430 Set_Crypto_Type("file");
Ethan Yonker93382822018-11-01 15:25:31 -0500431#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400432#ifdef USE_FSCRYPT
bigbiffdf53b6c2022-01-17 19:31:52 -0500433 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 -0500434 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000435 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400436 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400437#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500438 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
439 int retry_count = 10;
440 while (!Decrypt_Data->Mount(false) && --retry_count)
441 usleep(500);
442 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400443 if (!Decrypt_Data->Decrypt_FBE_DE()) {
bigbiff437d86f2021-09-26 16:57:14 -0400444 LOGERR("Unable to decrypt FBE device\n");
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400445 }
446
Ethan Yonker93382822018-11-01 15:25:31 -0500447 } else {
448 LOGINFO("Failed to mount data after metadata decrypt\n");
449 }
450 } else {
451 LOGINFO("Unable to decrypt metadata encryption\n");
452 }
453#else
454 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
455#endif
456 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600457 if (Decrypt_Data->Is_FBE) {
458 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
459 if (Decrypt_Device("!") == 0) {
460 gui_msg("decrypt_success=Successfully decrypted with default password.");
461 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
462 } else {
463 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
464 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600465 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600466 }
467 }
bigbiff4fa02b52021-12-30 17:01:44 -0500468 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600469 Decrypt_Adopted();
470 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600471#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400472}
473
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500474void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500475 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500476}
477
Matt Mowerbf4efa32014-04-14 23:25:26 -0500478void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
479 if (Part->Has_Android_Secure)
480 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500481 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500482 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500483}
484
Dees_Troy8170a922012-09-18 15:40:25 -0400485void TWPartitionManager::Output_Partition_Logging(void) {
486 std::vector<TWPartition*>::iterator iter;
487
488 printf("\n\nPartition Logs:\n");
489 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
490 Output_Partition((*iter));
491}
492
493void TWPartitionManager::Output_Partition(TWPartition* Part) {
494 unsigned long long mb = 1048576;
495
Gary Peck004d48b2012-11-21 16:28:18 -0800496 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 -0400497 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800498 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 -0400499 }
Gary Peck004d48b2012-11-21 16:28:18 -0800500 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500501 if (Part->Can_Be_Mounted)
502 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800503 if (Part->Can_Be_Wiped)
504 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700505 if (Part->Use_Rm_Rf)
506 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500507 if (Part->Can_Be_Backed_Up)
508 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800509 if (Part->Wipe_During_Factory_Reset)
510 printf("Wipe_During_Factory_Reset ");
511 if (Part->Wipe_Available_in_GUI)
512 printf("Wipe_Available_in_GUI ");
513 if (Part->Is_SubPartition)
514 printf("Is_SubPartition ");
515 if (Part->Has_SubPartition)
516 printf("Has_SubPartition ");
517 if (Part->Removable)
518 printf("Removable ");
519 if (Part->Is_Present)
520 printf("IsPresent ");
521 if (Part->Can_Be_Encrypted)
522 printf("Can_Be_Encrypted ");
523 if (Part->Is_Encrypted)
524 printf("Is_Encrypted ");
525 if (Part->Is_Decrypted)
526 printf("Is_Decrypted ");
527 if (Part->Has_Data_Media)
528 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000529 if (Part->Can_Encrypt_Backup)
530 printf("Can_Encrypt_Backup ");
531 if (Part->Use_Userdata_Encryption)
532 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800533 if (Part->Has_Android_Secure)
534 printf("Has_Android_Secure ");
535 if (Part->Is_Storage)
536 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500537 if (Part->Is_Settings_Storage)
538 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000539 if (Part->Ignore_Blkid)
540 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600541 if (Part->Mount_To_Decrypt)
542 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600543 if (Part->Can_Flash_Img)
544 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600545 if (Part->Is_Adopted_Storage)
546 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600547 if (Part->SlotSelect)
548 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600549 if (Part->Mount_Read_Only)
550 printf("Mount_Read_Only ");
bigbiffcfa875c2021-06-20 16:20:27 -0400551 if (Part->Is_Super)
552 printf("Is_Super ");
Gary Peck004d48b2012-11-21 16:28:18 -0800553 printf("\n");
554 if (!Part->SubPartition_Of.empty())
555 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
556 if (!Part->Symlink_Path.empty())
557 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
558 if (!Part->Symlink_Mount_Point.empty())
559 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
560 if (!Part->Primary_Block_Device.empty())
561 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
562 if (!Part->Alternate_Block_Device.empty())
563 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
564 if (!Part->Decrypted_Block_Device.empty())
565 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800566 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600567 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800568 if (Part->Length != 0)
569 printf(" Length: %i\n", Part->Length);
570 if (!Part->Display_Name.empty())
571 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500572 if (!Part->Storage_Name.empty())
573 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800574 if (!Part->Backup_Path.empty())
575 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
576 if (!Part->Backup_Name.empty())
577 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500578 if (!Part->Backup_Display_Name.empty())
579 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800580 if (!Part->Backup_FileName.empty())
581 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
582 if (!Part->Storage_Path.empty())
583 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
584 if (!Part->Current_File_System.empty())
585 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
586 if (!Part->Fstab_File_System.empty())
587 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
588 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500589 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400590 if (!Part->MTD_Name.empty())
591 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600592 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800593 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600594 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600595 if (Part->MTP_Storage_ID)
596 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500597 if (!Part->Key_Directory.empty())
598 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500599 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400600}
601
Dees_Troy51a0e822012-09-05 15:24:24 -0400602int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400603 std::vector<TWPartition*>::iterator iter;
604 int ret = false;
605 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400606 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400607
bigbiffd58ba182020-03-23 10:02:29 -0400608 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400609 return true;
610
Dees_Troy5bf43922012-09-07 16:07:55 -0400611 // Iterate through all partitions
612 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400613 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400614 ret = (*iter)->Mount(Display_Error);
615 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400616 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400617 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400618 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400619 }
620 if (found) {
621 return ret;
622 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500623 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 -0400624 }
625 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400626}
627
Dees_Troy51a0e822012-09-05 15:24:24 -0400628int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400629 std::vector<TWPartition*>::iterator iter;
630 int ret = false;
631 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400632 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400633
634 // Iterate through all partitions
635 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400636 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400637 ret = (*iter)->UnMount(Display_Error);
638 found = true;
639 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
640 (*iter)->UnMount(Display_Error);
641 }
642 }
643 if (found) {
644 return ret;
645 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500646 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 -0400647 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000648 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400649 }
650 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400651}
652
Dees_Troy51a0e822012-09-05 15:24:24 -0400653int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400654 TWPartition* Part = Find_Partition_By_Path(Path);
655
656 if (Part)
657 return Part->Is_Mounted();
658 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000659 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400660 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400661}
662
Dees_Troy5bf43922012-09-07 16:07:55 -0400663int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400664 string current_storage_path = DataManager::GetCurrentStoragePath();
665
666 if (Mount_By_Path(current_storage_path, Display_Error)) {
667 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
668 if (FreeStorage)
669 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
670 return true;
671 }
672 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400673}
674
Dees_Troy5bf43922012-09-07 16:07:55 -0400675int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
676 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
677}
678
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600679TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400680 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400681 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400682
dianlujitaob76a73a2020-04-30 20:33:20 +0800683 if (Local_Path == "/system")
684 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400685 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400686 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400687 return (*iter);
688 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400689 return NULL;
690}
691
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600692TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
693 std::vector<TWPartition*>::iterator iter;
694
695 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
696 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
697 return (*iter);
698 }
699 return NULL;
700}
701
Ethan Yonker53796e72019-01-11 22:49:52 -0600702int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400703 // Check the backup name to ensure that it is the correct size and contains only valid characters
704 // and that a backup with that name doesn't already exist
705 char backup_name[MAX_BACKUP_NAME_LEN];
706 char backup_loc[255], tw_image_dir[255];
707 int copy_size;
708 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600709 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400710
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400711 copy_size = Backup_Name.size();
712 // Check size
713 if (copy_size > MAX_BACKUP_NAME_LEN) {
714 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500715 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400716 return -2;
717 }
718
719 // Check each character
720 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500721 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400722 return 0; // A "0" (zero) means to use the current timestamp for the backup name
723 for (index=0; index<copy_size; index++) {
724 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500725 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 -0400726 // These are valid characters
727 // Numbers
728 // Upper case letters
729 // Lower case letters
730 // Space
731 // and -_.{}[]
732 } else {
733 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600734 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 -0400735 return -3;
736 }
737 }
738
Ethan Yonker53796e72019-01-11 22:49:52 -0600739 if (Must_Be_Unique) {
740 // Check to make sure that a backup with this name doesn't already exist
741 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
742 strcpy(backup_loc, Backup_Loc.c_str());
743 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
744 if (TWFunc::Path_Exists(tw_image_dir)) {
745 if (Display_Error)
746 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500747
Ethan Yonker53796e72019-01-11 22:49:52 -0600748 return -4;
749 }
750 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400751 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600752 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400753 return 0;
754}
755
bigbiffce8f83c2015-12-12 18:30:21 -0500756bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400757 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600758 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500759 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400760
bigbiffce8f83c2015-12-12 18:30:21 -0500761 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400762 return true;
763
Dees_Troy093b7642012-09-21 15:59:38 -0400764 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400765
Tom Hite5a926722014-09-15 01:31:03 +0000766 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400767 time(&start);
768
bigbiffce8f83c2015-12-12 18:30:21 -0500769 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500770 sync();
771 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400772 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500773 if (!part_settings->adbbackup && part_settings->generate_digest) {
774 if (!twrpDigestDriver::Make_Digest(Full_Filename))
775 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400776 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400777
bigbiffce8f83c2015-12-12 18:30:21 -0500778 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400779 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400780 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400781
782 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400783 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500784 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500785 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500786 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000787 }
Dees_Troy2727b992013-08-14 20:09:30 +0000788 sync();
789 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400790 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400791 if (!part_settings->adbbackup && part_settings->generate_digest) {
792 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500793 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500794 }
Tom Hite5a926722014-09-15 01:31:03 +0000795 }
Dees_Troy8170a922012-09-18 15:40:25 -0400796 }
797 }
798 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400799
Dees_Troy43d8b002012-09-17 16:00:01 -0400800 time(&stop);
that203bcc92015-05-09 17:27:33 +0200801 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000802 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400803
bigbiffce8f83c2015-12-12 18:30:21 -0500804 if (part_settings->Part->Backup_Method == BM_FILES) {
805 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400806 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500807 part_settings->img_time += backup_time;
808
Dees_Troy43d8b002012-09-17 16:00:01 -0400809 }
Tom Hite5a926722014-09-15 01:31:03 +0000810
Matt Mower02899552016-12-30 18:13:51 -0600811 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500812 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400813 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500814backup_error:
815 Clean_Backup_Folder(part_settings->Backup_Folder);
816 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
817 tw_set_default_metadata(backup_log.c_str());
818 TWFunc::SetPerformanceMode(false);
819 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500820}
821
bigbiffbf1d6722015-02-14 16:25:59 -0500822void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
823 DIR *d = opendir(Backup_Folder.c_str());
824 struct dirent *p;
825 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400826 vector<string> ext;
827
828 //extensions we should delete when cleaning
829 ext.push_back("win");
830 ext.push_back("md5");
831 ext.push_back("sha2");
832 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500833
Ethan Yonker74db1572015-10-28 12:44:49 -0500834 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500835
836 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500837 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500838 return;
839 }
840
Matt Mower2b18a532015-02-20 16:58:05 -0600841 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500842 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
843 continue;
844
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500845 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500846
847 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400848 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
849 if (path.substr(dot) == *i) {
850 r = unlink(path.c_str());
851 if (r != 0)
852 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500853 }
854 }
855 }
856 closedir(d);
857}
858
Ethan Yonker472f5062016-02-25 13:47:30 -0600859int TWPartitionManager::Check_Backup_Cancel() {
860 return stop_backup.get_value();
861}
862
bigbiff7abc5fe2015-01-17 16:53:12 -0500863int TWPartitionManager::Cancel_Backup() {
864 string Backup_Folder, Backup_Name, Full_Backup_Path;
865
866 stop_backup.set_value(1);
867
868 if (tar_fork_pid != 0) {
869 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
870 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500871 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500872 LOGINFO("Killing pid: %d\n", tar_fork_pid);
873 kill(tar_fork_pid, SIGUSR2);
874 while (kill(tar_fork_pid, 0) == 0) {
875 usleep(1000);
876 }
877 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
878 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
879 TWFunc::removeDir(Full_Backup_Path, false);
880 tar_fork_pid = 0;
881 }
882
883 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400884}
885
bigbiffce8f83c2015-12-12 18:30:21 -0500886int TWPartitionManager::Run_Backup(bool adbbackup) {
887 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400888 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500889 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600890 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400891 TWPartition* storage = NULL;
bigbiff7df87472022-09-24 16:45:03 -0400892 time_t total_start, total_stop;
893 //time_t seconds = time(0);
894 //struct tm *t = localtime(&seconds);
Dees_Troya13d74f2013-03-24 08:54:55 -0500895 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500896 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400897
bigbiffce8f83c2015-12-12 18:30:21 -0500898 part_settings.img_bytes_remaining = 0;
899 part_settings.file_bytes_remaining = 0;
900 part_settings.img_time = 0;
901 part_settings.file_time = 0;
902 part_settings.img_bytes = 0;
903 part_settings.file_bytes = 0;
904 part_settings.PM_Method = PM_BACKUP;
905
bigbiffce8f83c2015-12-12 18:30:21 -0500906 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400907 time(&total_start);
908
909 Update_System_Details();
910
911 if (!Mount_Current_Storage(true))
912 return false;
913
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400914 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
915 if (skip_digest == 0)
916 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400917 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400918 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400919
bigbiffce8f83c2015-12-12 18:30:21 -0500920 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500921 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
922 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
923 Backup_Name = TWFunc::Get_Current_Date();
924 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000925 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500926 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400927 }
bigbiffce8f83c2015-12-12 18:30:21 -0500928
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500929 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500930 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500931
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500932 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400933
Dees_Troy2673cec2013-04-02 20:22:16 +0000934 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500935 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400936 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500937 if (!Backup_List.empty()) {
938 end_pos = Backup_List.find(";", start_pos);
939 while (end_pos != string::npos && start_pos < Backup_List.size()) {
940 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400941 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500942 part_settings.Part = Find_Partition_By_Path(backup_path);
943 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500944 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500945 if (part_settings.Part->Backup_Method == BM_FILES)
946 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500947 else
bigbiffce8f83c2015-12-12 18:30:21 -0500948 part_settings.img_bytes += part_settings.Part->Backup_Size;
949 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500950 std::vector<TWPartition*>::iterator subpart;
951
952 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500953 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 -0500954 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500955 if ((*subpart)->Backup_Method == BM_FILES)
956 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500957 else
bigbiffce8f83c2015-12-12 18:30:21 -0500958 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500959 }
960 }
Dees_Troy8170a922012-09-18 15:40:25 -0400961 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500962 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500963 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 -0400964 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500965 start_pos = end_pos + 1;
966 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400967 }
968 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400969
970 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500971 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400972 return false;
973 }
bigbiffce8f83c2015-12-12 18:30:21 -0500974 if (adbbackup) {
975 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
976 return false;
977 }
978 }
979 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600980 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500981 part_settings.progress = &progress;
982
Ethan Yonker74db1572015-10-28 12:44:49 -0500983 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
984 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400985 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
986 if (storage != NULL) {
987 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500988 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400989 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500990 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400991 return false;
992 }
bigbiffbf1d6722015-02-14 16:25:59 -0500993
Matt Mowerbfccfb82016-04-25 23:22:31 -0500994 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -0500995
996 if (adbbackup)
997 disable_free_space_check = true;
998
bigbiffbf1d6722015-02-14 16:25:59 -0500999 if (!disable_free_space_check) {
1000 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1001 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001002 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001003 return false;
1004 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001005 }
bigbiffce8f83c2015-12-12 18:30:21 -05001006 part_settings.img_bytes_remaining = part_settings.img_bytes;
1007 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001008
Ethan Yonker74db1572015-10-28 12:44:49 -05001009 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001010
1011 int is_decrypted = 0;
1012 int is_encrypted = 0;
1013
1014 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1015 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1016 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1017 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1018 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1019 gui_err("fail_backup_folder=Failed to make backup folder.");
1020 return false;
1021 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001022 }
1023
Dees_Troy2673cec2013-04-02 20:22:16 +00001024 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001025
Dees_Troya13d74f2013-03-24 08:54:55 -05001026 start_pos = 0;
1027 end_pos = Backup_List.find(";", start_pos);
1028 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001029 if (stop_backup.get_value() != 0)
1030 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001031 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001032 part_settings.Part = Find_Partition_By_Path(backup_path);
1033 if (part_settings.Part != NULL) {
1034 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001035 return false;
1036 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001037 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 -05001038 }
1039 start_pos = end_pos + 1;
1040 end_pos = Backup_List.find(";", start_pos);
1041 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001042
1043 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001044 if (part_settings.img_time == 0)
1045 part_settings.img_time = 1;
1046 if (part_settings.file_time == 0)
1047 part_settings.file_time = 1;
1048 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1049 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001050
bigbiffce8f83c2015-12-12 18:30:21 -05001051 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001052 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 -05001053 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001054 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 -04001055
1056 time(&total_stop);
1057 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001058
1059 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001060 if (!adbbackup) {
1061 TWExclude twe;
1062 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1063 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001064 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001065 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001066
bigbiffce8f83c2015-12-12 18:30:21 -05001067 int prev_img_bps = 0, use_compression = 0;
1068 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001069 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001070 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001071 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001072
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001073 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001074 if (use_compression)
1075 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001076 else
Dees_Troy093b7642012-09-21 15:59:38 -04001077 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1078 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001079 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001080
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001081 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001082 if (use_compression)
1083 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1084 else
1085 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1086
Ethan Yonker74db1572015-10-28 12:44:49 -05001087 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001088 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001089 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001090 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001091 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001092 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001093 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001094
1095 if (part_settings.adbbackup) {
1096 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1097 return false;
1098 }
1099 }
1100 part_settings.adbbackup = false;
1101 DataManager::SetValue("tw_enable_adb_backup", 0);
1102
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001103 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001104}
1105
bigbiffce8f83c2015-12-12 18:30:21 -05001106bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001107 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001108
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001109 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001110 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1111 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001112 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1113 }
1114
Tom Hite5a926722014-09-15 01:31:03 +00001115 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001116
Dees_Troy4a2a1262012-09-18 09:33:47 -04001117 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001118
bigbiffce8f83c2015-12-12 18:30:21 -05001119 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001120 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001121 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001122 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001123 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001124 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001125 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001126
1127 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001128 part_settings->Part = *subpart;
1129 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1130 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001131 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001132 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001133 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001134 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001135 }
Dees_Troy8170a922012-09-18 15:40:25 -04001136 }
1137 }
1138 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001139 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001140 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001141 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1142
Dees_Troy4a2a1262012-09-18 09:33:47 -04001143 return true;
1144}
1145
Ethan Yonker472f5062016-02-25 13:47:30 -06001146int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001147 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001148 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001149
Dees_Troy4a2a1262012-09-18 09:33:47 -04001150 time_t rStart, rStop;
1151 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001152 string Restore_List, restore_path;
1153 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001154
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001155 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001156 part_settings.Part = NULL;
1157 part_settings.partition_count = 0;
1158 part_settings.total_restore_size = 0;
1159 part_settings.adbbackup = false;
1160 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001161
Ethan Yonker74db1572015-10-28 12:44:49 -05001162 gui_msg("restore_started=[RESTORE STARTED]");
1163 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001164
Dees_Troy4a2a1262012-09-18 09:33:47 -04001165 if (!Mount_Current_Storage(true))
1166 return false;
1167
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001168 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1169 if (check_digest > 0) {
1170 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1171 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1172 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001173 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001174 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001175 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001176 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001177 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001178
Dees_Troya13d74f2013-03-24 08:54:55 -05001179 if (!Restore_List.empty()) {
1180 end_pos = Restore_List.find(";", start_pos);
1181 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1182 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001183 part_settings.Part = Find_Partition_By_Path(restore_path);
1184 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001185 if (part_settings.Part->Mount_Read_Only) {
1186 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 -05001187 return false;
1188 }
bigbiffce8f83c2015-12-12 18:30:21 -05001189
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001190 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1191
bigbiff4a60bee2021-01-23 14:08:03 -05001192 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1193 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1194 }
1195
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001196 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001197 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001198 part_settings.partition_count++;
1199 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1200 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001201 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001202 std::vector<TWPartition*>::iterator subpart;
1203
1204 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001205 part_settings.Part = *subpart;
1206 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001207 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001208 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001209 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001210 }
1211 }
1212 }
1213 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001214 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001215 }
1216 start_pos = end_pos + 1;
1217 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001218 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001219 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001220
bigbiffce8f83c2015-12-12 18:30:21 -05001221 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001222 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001223 return false;
1224 }
1225
bigbiffce8f83c2015-12-12 18:30:21 -05001226 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1227 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 +00001228 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001229 ProgressTracking progress(part_settings.total_restore_size);
1230 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001231
Dees_Troya13d74f2013-03-24 08:54:55 -05001232 start_pos = 0;
1233 if (!Restore_List.empty()) {
1234 end_pos = Restore_List.find(";", start_pos);
1235 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1236 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001237
1238 part_settings.Part = Find_Partition_By_Path(restore_path);
1239 if (part_settings.Part != NULL) {
1240 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001241 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001242 return false;
1243 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001244 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001245 }
1246 start_pos = end_pos + 1;
1247 end_pos = Restore_List.find(";", start_pos);
1248 }
1249 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001250 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001251 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001252 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001253 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001254 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001255 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001256 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
bigbiff8f5fad32021-11-03 20:39:02 -04001257 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
1258 if (Decrypt_Data && Decrypt_Data->Is_Encrypted)
1259 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 -05001260 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001261
Dees_Troy63c8df72012-09-10 14:02:05 -04001262 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001263}
1264
1265void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001266 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001267 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001268 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001269 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001270
1271 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001272 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1273 vector<string> adb_files;
1274 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1275 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1276 string adb_restore_file = adb_files.at(i);
1277 std::size_t pos = adb_restore_file.find_first_of(".");
1278 std::string path = "/" + adb_restore_file.substr(0, pos);
1279 Restore_List = path + ";";
1280 TWPartition* Part = Find_Partition_By_Path(path);
1281 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1282 adbbackup = true;
1283 }
1284 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001285 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001286 else {
1287 DIR* d;
1288 d = opendir(Restore_Name.c_str());
1289 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001290 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001291 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1292 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001293 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001294
1295 struct dirent* de;
1296 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001297 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001298 // Strip off three components
1299 char str[256];
1300 char* label;
1301 char* fstype = NULL;
1302 char* extn = NULL;
1303 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001304
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001305 strcpy(str, de->d_name);
1306 if (strlen(str) <= 2)
1307 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001308
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001309 if (get_date) {
1310 char file_path[255];
1311 struct stat st;
1312
1313 strcpy(file_path, Restore_Name.c_str());
1314 strcat(file_path, "/");
1315 strcat(file_path, str);
1316 stat(file_path, &st);
1317 string backup_date = ctime((const time_t*)(&st.st_mtime));
1318 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1319 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001320 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001321
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001322 label = str;
1323 ptr = label;
1324 while (*ptr && *ptr != '.') ptr++;
1325 if (*ptr == '.')
1326 {
1327 *ptr = 0x00;
1328 ptr++;
1329 fstype = ptr;
1330 }
1331 while (*ptr && *ptr != '.') ptr++;
1332 if (*ptr == '.')
1333 {
1334 *ptr = 0x00;
1335 ptr++;
1336 extn = ptr;
1337 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001338
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001339 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1340 int extnlength = strlen(extn);
1341 if (extnlength != 3 && extnlength != 6) continue;
1342 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1343 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001344
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001345 if (check_encryption) {
1346 string filename = Restore_Name + "/";
1347 filename += de->d_name;
1348 if (TWFunc::Get_File_Type(filename) == 2) {
1349 LOGINFO("'%s' is encrypted\n", filename.c_str());
1350 DataManager::SetValue("tw_restore_encrypted", 1);
1351 }
1352 }
1353 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1354
1355 TWPartition* Part = Find_Partition_By_Path(label);
1356 if (Part == NULL)
1357 {
1358 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1359 continue;
1360 }
1361
1362 Part->Backup_FileName = de->d_name;
1363 if (strlen(extn) > 3) {
1364 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1365 }
1366
dianlujitaob76a73a2020-04-30 20:33:20 +08001367 if (!Part->Is_SubPartition) {
1368 if (Part->Backup_Path == Get_Android_Root_Path())
1369 Restore_List += "/system;";
1370 else
1371 Restore_List += Part->Backup_Path + ";";
1372 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001373 }
1374 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001375 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001376
1377 if (adbbackup) {
1378 Restore_List = "ADB_Backup;";
1379 adbbackup = false;
1380 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001381
Dees_Troya13d74f2013-03-24 08:54:55 -05001382 // Set the final value
1383 DataManager::SetValue("tw_restore_list", Restore_List);
1384 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001385 return;
1386}
1387
1388int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001389 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301390 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001391 int ret = false;
1392 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001393 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001394
dianlujitaob76a73a2020-04-30 20:33:20 +08001395 if (Local_Path == "/system")
1396 Local_Path = Get_Android_Root_Path();
bigbiffaed1bdf2021-08-03 18:21:39 -04001397 if (Path == "/cache") {
1398 TWPartition* cache = Find_Partition_By_Path("/cache");
1399 if (cache == nullptr) {
1400 TWPartition* dat = Find_Partition_By_Path("/data");
1401 if (dat) {
1402 dat->Wipe_Data_Cache();
1403 found = true;
1404 }
1405 }
1406 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001407 // Iterate through all partitions
1408 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001409 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301410 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1411 (*iter)->Find_Actual_Block_Device();
1412 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1413 {
1414 (*iter1)->Find_Actual_Block_Device();
1415 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1416 (*iter1)->UnMount(false);
1417 }
Dees_Troye58d5262012-09-21 12:27:57 -04001418 if (Path == "/and-sec")
1419 ret = (*iter)->Wipe_AndSec();
1420 else
1421 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001422 found = true;
1423 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1424 (*iter)->Wipe();
1425 }
1426 }
1427 if (found) {
1428 return ret;
1429 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001430 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 -04001431 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001432}
1433
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001434int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1435 std::vector<TWPartition*>::iterator iter;
1436 int ret = false;
1437 bool found = false;
1438 string Local_Path = TWFunc::Get_Root_Path(Path);
1439
1440 // Iterate through all partitions
1441 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1442 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1443 if (Path == "/and-sec")
1444 ret = (*iter)->Wipe_AndSec();
1445 else
1446 ret = (*iter)->Wipe(New_File_System);
1447 found = true;
1448 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1449 (*iter)->Wipe(New_File_System);
1450 }
1451 }
1452 if (found) {
1453 return ret;
1454 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001455 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 -05001456 return false;
1457}
1458
Dees_Troy51a0e822012-09-05 15:24:24 -04001459int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001460 std::vector<TWPartition*>::iterator iter;
1461 int ret = true;
1462
1463 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001464 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001465#ifdef TW_OEM_BUILD
1466 if ((*iter)->Mount_Point == "/data") {
1467 if (!(*iter)->Wipe_Encryption())
1468 ret = false;
1469 } else {
1470#endif
1471 if (!(*iter)->Wipe())
1472 ret = false;
1473#ifdef TW_OEM_BUILD
1474 }
1475#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001476 } else if ((*iter)->Has_Android_Secure) {
1477 if (!(*iter)->Wipe_AndSec())
1478 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001479 }
1480 }
bigbiffad58e1b2020-07-06 20:24:34 -04001481 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001482 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001483}
1484
Dees_Troy38bd7602012-09-14 13:33:53 -04001485int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1486 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001487 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001488
1489 if (!Mount_By_Path("/data", true))
1490 return false;
1491
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001492 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001493
bigbiff25d25b92020-06-19 16:07:38 -04001494 std::string cacheDir = TWFunc::get_log_dir();
1495 if (cacheDir == CACHE_LOGS_DIR) {
1496 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1497 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001498 }
1499 dir.push_back(cacheDir + "dalvik-cache");
1500 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001501 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001502
Dees_Troy38bd7602012-09-14 13:33:53 -04001503 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001504 if (sdext && sdext->Is_Present && sdext->Mount(false))
1505 {
1506 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1507 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001508 dir.push_back("/sd-ext/dalvik-cache");
1509 }
1510 }
1511
bigbiff25d25b92020-06-19 16:07:38 -04001512 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001513 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1514 } else {
1515 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1516 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001517 for (unsigned i = 0; i < dir.size(); ++i) {
1518 if (stat(dir.at(i).c_str(), &st) == 0) {
1519 TWFunc::removeDir(dir.at(i), false);
1520 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001521 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001522 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001523
bigbiff25d25b92020-06-19 16:07:38 -04001524 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001525 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1526 } else {
1527 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1528 }
1529
Dees_Troy38bd7602012-09-14 13:33:53 -04001530 return true;
1531}
1532
1533int TWPartitionManager::Wipe_Rotate_Data(void) {
1534 if (!Mount_By_Path("/data", true))
1535 return false;
1536
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001537 unlink("/data/misc/akmd*");
1538 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001539 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001540 return true;
1541}
1542
1543int TWPartitionManager::Wipe_Battery_Stats(void) {
1544 struct stat st;
1545
1546 if (!Mount_By_Path("/data", true))
1547 return false;
1548
1549 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001550 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001551 } else {
1552 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001553 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001554 }
1555 return true;
1556}
1557
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001558int TWPartitionManager::Wipe_Android_Secure(void) {
1559 std::vector<TWPartition*>::iterator iter;
1560 int ret = false;
1561 bool found = false;
1562
1563 // Iterate through all partitions
1564 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1565 if ((*iter)->Has_Android_Secure) {
1566 ret = (*iter)->Wipe_AndSec();
1567 found = true;
1568 }
1569 }
1570 if (found) {
1571 return ret;
1572 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001573 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001574 }
1575 return false;
1576}
1577
Dees_Troy38bd7602012-09-14 13:33:53 -04001578int TWPartitionManager::Format_Data(void) {
1579 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffcfa875c2021-06-20 16:20:27 -04001580 TWPartition* metadata = Find_Partition_By_Path("/metadata");
1581 if (metadata != NULL)
1582 metadata->UnMount(false);
Dees_Troy38bd7602012-09-14 13:33:53 -04001583
1584 if (dat != NULL) {
bigbiffab76bd72021-10-11 10:17:48 -04001585 if (android::base::GetBoolProperty("ro.virtual_ab.enabled", false)) {
bigbiffcfa875c2021-06-20 16:20:27 -04001586#ifndef TW_EXCLUDE_APEX
1587 twrpApex apex;
1588 apex.Unmount();
1589#endif
1590 if (metadata != NULL)
1591 metadata->Mount(true);
bigbiffd21252f2021-09-18 15:56:32 -04001592 if (!Check_Pending_Merges())
bigbiffcfa875c2021-06-20 16:20:27 -04001593 return false;
1594 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001595 return dat->Wipe_Encryption();
1596 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001597 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001598 return false;
1599 }
1600 return false;
1601}
1602
1603int TWPartitionManager::Wipe_Media_From_Data(void) {
1604 TWPartition* dat = Find_Partition_By_Path("/data");
1605
1606 if (dat != NULL) {
1607 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001608 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001609 return false;
1610 }
1611 if (!dat->Mount(true))
1612 return false;
1613
Ethan Yonker74db1572015-10-28 12:44:49 -05001614 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001615 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001616 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001617 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001618 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001619 return true;
1620 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001621 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001622 return false;
1623 }
1624 return false;
1625}
1626
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001627int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1628 std::vector<TWPartition*>::iterator iter;
1629 int ret = false;
1630 bool found = false;
1631 string Local_Path = TWFunc::Get_Root_Path(Path);
1632
1633 if (Local_Path == "/tmp" || Local_Path == "/")
1634 return true;
1635
1636 // Iterate through all partitions
1637 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1638 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1639 ret = (*iter)->Repair();
1640 found = true;
1641 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1642 (*iter)->Repair();
1643 }
1644 }
1645 if (found) {
1646 return ret;
1647 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001648 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 -05001649 } else {
1650 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1651 }
1652 return false;
1653}
1654
Ethan Yonkera2719152015-05-28 09:44:41 -05001655int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1656 std::vector<TWPartition*>::iterator iter;
1657 int ret = false;
1658 bool found = false;
1659 string Local_Path = TWFunc::Get_Root_Path(Path);
1660
1661 if (Local_Path == "/tmp" || Local_Path == "/")
1662 return true;
1663
1664 // Iterate through all partitions
1665 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1666 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1667 ret = (*iter)->Resize();
1668 found = true;
1669 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1670 (*iter)->Resize();
1671 }
1672 }
1673 if (found) {
1674 return ret;
1675 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001676 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 -05001677 } else {
1678 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1679 }
1680 return false;
1681}
1682
Dees_Troy51a0e822012-09-05 15:24:24 -04001683void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001684 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001685 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001686
Ethan Yonker74db1572015-10-28 12:44:49 -05001687 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001688 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001689 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001690 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001691 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001692 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1693 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001694 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001695 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1696 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1697 } else if ((*iter)->Mount_Point == "/cache") {
1698 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1699 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1700 } else if ((*iter)->Mount_Point == "/sd-ext") {
1701 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1702 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1703 if ((*iter)->Backup_Size == 0) {
1704 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1705 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1706 } else
1707 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001708 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001709 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001710 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001711 if ((*iter)->Backup_Size == 0) {
1712 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1713 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1714 } else
1715 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001716 } else if ((*iter)->Mount_Point == "/boot") {
1717 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1718 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1719 if ((*iter)->Backup_Size == 0) {
1720 DataManager::SetValue("tw_has_boot_partition", 0);
1721 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1722 } else
1723 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001724 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001725 } else {
1726 // Handle unmountable partitions in case we reset defaults
1727 if ((*iter)->Mount_Point == "/boot") {
1728 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1729 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1730 if ((*iter)->Backup_Size == 0) {
1731 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1732 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1733 } else
1734 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1735 } else if ((*iter)->Mount_Point == "/recovery") {
1736 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1737 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1738 if ((*iter)->Backup_Size == 0) {
1739 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1740 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1741 } else
1742 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001743 } else if ((*iter)->Mount_Point == "/data") {
1744 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001745 }
Dees_Troy51127312012-09-08 13:08:49 -04001746 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001747 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001748 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001749 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1750 string current_storage_path = DataManager::GetCurrentStoragePath();
1751 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001752 if (FreeStorage != NULL) {
1753 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001754 if (!FreeStorage->Mount(false)) {
1755 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1756 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1757 } else {
1758 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001759 }
1760 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001761 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001762 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001763 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001764 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001765 return;
1766}
1767
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001768void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1769 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001770
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001771 if (dat != NULL) {
bigbiffaed1bdf2021-08-03 18:21:39 -04001772 // reparse for /cache/recovery/command
1773 static constexpr const char* COMMAND_FILE = "/data/cache/command";
1774 if (TWFunc::Path_Exists(COMMAND_FILE)) {
1775 startupArgs startup;
1776 std::string content;
1777 TWFunc::read_file(COMMAND_FILE, content);
1778 std::vector<std::string> args = {content};
1779 startup.processRecoveryArgs(args, 0);
1780 }
1781
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001782 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1783 dat->Is_Decrypted = true;
1784 if (!Block_Device.empty()) {
1785 dat->Decrypted_Block_Device = Block_Device;
1786 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1787 } else {
1788 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1789 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001790 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001791 dat->Setup_File_System(false);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001792 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 -06001793
Noah Jacobson81d638d2019-04-28 00:10:07 -04001794 sleep(1); // Sleep for a bit so that the device will be ready
me-cafebabe09649612022-06-10 21:53:31 +08001795
1796 // Mount only /data
1797 dat->Symlink_Path = ""; // Not to let it to bind mount /data/media again
1798 if (!dat->Mount(false)) {
1799 LOGERR("Unable to mount /data after decryption");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001800 }
me-cafebabe09649612022-06-10 21:53:31 +08001801
1802 if (dat->Has_Data_Media && TWFunc::Path_Exists("/data/media/0")) {
1803 dat->Storage_Path = "/data/media/0";
1804 } else {
1805 dat->Storage_Path = "/data/media";
1806 }
1807 dat->Symlink_Path = dat->Storage_Path;
1808 DataManager::SetValue("tw_storage_path", dat->Symlink_Path);
Mohd Faraz36072652022-06-18 22:51:55 +02001809 DataManager::SetValue("tw_settings_path", TW_STORAGE_PATH);
me-cafebabe09649612022-06-10 21:53:31 +08001810 LOGINFO("New storage path after decryption: %s\n", dat->Storage_Path.c_str());
1811
epicXa721f952021-01-04 13:01:31 +05301812 DataManager::LoadTWRPFolderInfo();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001813 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001814 Output_Partition(dat);
bigbiff4fa02b52021-12-30 17:01:44 -05001815 if (!android::base::StartsWith(dat->Actual_Block_Device, "/dev/block/mmcblk")) {
1816 if (!dat->Bind_Mount(false))
1817 LOGERR("Unable to bind mount /sdcard to %s\n", dat->Storage_Path.c_str());
1818 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001819 } else
1820 LOGERR("Unable to locate data partition.\n");
1821}
1822
Noah Jacobson81d638d2019-04-28 00:10:07 -04001823void TWPartitionManager::Parse_Users() {
1824#ifdef TW_INCLUDE_FBE
1825 char user_check_result[PROPERTY_VALUE_MAX];
1826 for (int userId = 0; userId <= 9999; userId++) {
1827 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1828 property_get(prop.c_str(), user_check_result, "-1");
1829 if (strcmp(user_check_result, "-1") != 0) {
1830 if (userId < 0 || userId > 9999) {
1831 LOGINFO("Incorrect user id %d\n", userId);
1832 continue;
1833 }
1834 struct users_struct user;
1835 user.userId = to_string(userId);
1836
1837 // Attempt to get name of user. Fallback to user ID if this fails.
Darth98f775972022-08-05 09:39:03 +01001838 std::string path = "/data/system/users/" + to_string(userId) + ".xml";
1839 if (!TWFunc::Check_Xml_Format(path)) {
1840 string oldpath = path;
1841 if (TWFunc::abx_to_xml(oldpath, path)) {
1842 LOGINFO("Android 12+: '%s' has been converted into plain text xml (for user %s).\n", oldpath.c_str(), user.userId.c_str());
1843 }
1844 }
1845 char* userFile = PageManager::LoadFileToBuffer(path, NULL);
me-cafebabec46981d2022-07-29 01:54:43 +08001846 if (userFile == NULL) {
1847 user.userName = to_string(userId);
bigbiffa957f072021-03-07 18:20:29 -05001848 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001849 else {
me-cafebabec46981d2022-07-29 01:54:43 +08001850 xml_document<> *userXml = new xml_document<>();
1851 userXml->parse<0>(userFile);
1852 xml_node<>* userNode = userXml->first_node("user");
1853 if (userNode == nullptr) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001854 user.userName = to_string(userId);
me-cafebabec46981d2022-07-29 01:54:43 +08001855 } else {
1856 xml_node<>* nameNode = userNode->first_node("name");
1857 if (nameNode == nullptr)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001858 user.userName = to_string(userId);
me-cafebabec46981d2022-07-29 01:54:43 +08001859 else {
1860 string userName = nameNode->value();
1861 user.userName = userName + " (" + to_string(userId) + ")";
Noah Jacobson81d638d2019-04-28 00:10:07 -04001862 }
1863 }
1864 }
1865
1866 string filename;
bigbiffdf53b6c2022-01-17 19:31:52 -05001867 user.type = android::keystore::Get_Password_Type(userId, filename);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001868
1869 user.isDecrypted = false;
1870 if (strcmp(user_check_result, "1") == 0)
1871 user.isDecrypted = true;
1872 Users_List.push_back(user);
1873 }
1874 }
1875 Check_Users_Decryption_Status();
1876#endif
1877}
1878
1879std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
1880 return &Users_List;
1881}
1882
1883void TWPartitionManager::Mark_User_Decrypted(int userID) {
1884#ifdef TW_INCLUDE_FBE
1885 std::vector<users_struct>::iterator iter;
1886 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1887 if (atoi((*iter).userId.c_str()) == userID) {
1888 (*iter).isDecrypted = true;
1889 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
1890 property_set(user_prop_decrypted.c_str(), "1");
1891 break;
1892 }
1893 }
1894 Check_Users_Decryption_Status();
1895#endif
1896}
1897
1898void TWPartitionManager::Check_Users_Decryption_Status() {
1899#ifdef TW_INCLUDE_FBE
1900 int all_is_decrypted = 1;
1901 std::vector<users_struct>::iterator iter;
1902 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1903 if (!(*iter).isDecrypted) {
1904 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
1905 all_is_decrypted = 0;
1906 break;
1907 }
1908 }
1909 if (all_is_decrypted == 1) {
1910 LOGINFO("All found users are decrypted.\n");
1911 DataManager::SetValue("tw_all_users_decrypted", "1");
1912 property_set("twrp.all.users.decrypted", "true");
1913 } else
1914 DataManager::SetValue("tw_all_users_decrypted", "0");
1915#endif
1916}
1917
1918int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001919#ifdef TW_INCLUDE_CRYPTO
Captain Throwback37c3aef2021-10-06 11:38:18 -04001920 char crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001921 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001922
Ethan Yonker253368a2014-11-25 15:00:52 -06001923 // Mount any partitions that need to be mounted for decrypt
1924 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1925 if ((*iter)->Mount_To_Decrypt) {
1926 (*iter)->Mount(true);
1927 }
a39552696ff55ce2013-01-08 16:14:56 +00001928 }
oshmouna82a7542018-04-10 17:45:55 +02001929 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001930
Captain Throwback37c3aef2021-10-06 11:38:18 -04001931 Set_Crypto_State();
1932 Set_Crypto_Type("block");
Ethan Yonkera1de1492015-11-04 11:58:27 -06001933
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001934 if (DataManager::GetIntValue(TW_IS_FBE)) {
1935#ifdef TW_INCLUDE_FBE
1936 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1937 return -1;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001938
1939 bool user_need_decrypt = false;
1940 std::vector<users_struct>::iterator iter;
1941 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1942 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
1943 user_need_decrypt = true;
1944 }
1945 }
1946 if (!user_need_decrypt) {
1947 LOGINFO("User %d does not require decryption\n", user_id);
1948 return 0;
1949 }
1950
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001951 int retry_count = 10;
1952 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001953 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
1954 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
bigbiffdf53b6c2022-01-17 19:31:52 -05001955 if (android::keystore::Decrypt_User(user_id, Password)) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001956 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
1957 Mark_User_Decrypted(user_id);
1958 if (user_id == 0) {
1959 // When decrypting user 0 also try all other users
1960 std::vector<users_struct>::iterator iter;
1961 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1962 if ((*iter).userId == "0" || (*iter).isDecrypted)
1963 continue;
1964
1965 int tmp_user_id = atoi((*iter).userId.c_str());
1966 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
bigbiffdf53b6c2022-01-17 19:31:52 -05001967 if (android::keystore::Decrypt_User(tmp_user_id, Password) ||
1968 (Password != "!" && android::keystore::Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
Noah Jacobson81d638d2019-04-28 00:10:07 -04001969 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
1970 Mark_User_Decrypted(tmp_user_id);
1971 } else {
1972 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
1973 }
1974 }
1975 Post_Decrypt("");
1976 }
1977
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001978 return 0;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001979 } else {
1980 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001981 }
1982#else
1983 LOGERR("FBE support is not present\n");
1984#endif
1985 return -1;
1986 }
1987
Noah Jacobson81d638d2019-04-28 00:10:07 -04001988 char isdecrypteddata[PROPERTY_VALUE_MAX];
1989 property_get("twrp.decrypt.done", isdecrypteddata, "");
1990 if (strcmp(isdecrypteddata, "true") == 0) {
1991 LOGINFO("Data has no decryption required\n");
1992 return 0;
1993 }
1994
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001995 int pwret = -1;
1996 pid_t pid = fork();
1997 if (pid < 0) {
1998 LOGERR("fork failed\n");
1999 return -1;
2000 } else if (pid == 0) {
2001 // Child process
2002 char cPassword[255];
2003 strcpy(cPassword, Password.c_str());
bigbiff7df87472022-09-24 16:45:03 -04002004 //int ret = cryptfs_check_passwd(cPassword);
2005 exit(0);
Ethan Yonkerddb63e22017-01-19 14:01:57 -06002006 } else {
2007 // Parent
2008 int status;
2009 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
2010 pwret = -1;
2011 else
2012 pwret = WEXITSTATUS(status) ? -1 : 0;
2013 }
a39552696ff55ce2013-01-08 16:14:56 +00002014
Ethan Yonker253368a2014-11-25 15:00:52 -06002015 // Unmount any partitions that were needed for decrypt
2016 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2017 if ((*iter)->Mount_To_Decrypt) {
2018 (*iter)->UnMount(false);
2019 }
2020 }
oshmouna82a7542018-04-10 17:45:55 +02002021 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06002022
a39552696ff55ce2013-01-08 16:14:56 +00002023 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002024 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002025 return -1;
2026 }
a39552696ff55ce2013-01-08 16:14:56 +00002027
Dees_Troy5bf43922012-09-07 16:07:55 -04002028 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
2029 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002030 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04002031 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002032 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04002033 }
2034 return 0;
2035#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002036 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002037 return -1;
2038#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002039 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04002040}
2041
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002042int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002043 std::vector<TWPartition*>::iterator iter;
2044 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2045 if ((*iter)->Has_Data_Media) {
2046 if ((*iter)->Mount(true)) {
2047 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
2048 return -1;
2049 }
2050 }
2051 }
Dees_Troy1a650e62012-10-19 20:54:32 -04002052 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05002053 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002054 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002055}
2056
Ethan Yonker66a19492015-12-10 10:19:45 -06002057TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002058 std::vector<TWPartition*>::iterator iter = Partitions.begin();
2059
2060 if (!Path.empty()) {
2061 string Search_Path = TWFunc::Get_Root_Path(Path);
2062 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06002063 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002064 iter++;
2065 break;
2066 }
2067 }
2068 }
2069
2070 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002071 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
2072 // do nothing, do not return this type of partition
2073 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002074 return (*iter);
2075 }
2076 }
2077
2078 return NULL;
2079}
2080
Dees_Troyd21618c2012-10-14 18:48:49 -04002081int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04002082 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
2083
2084 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002085 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2086 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 -04002087 return false;
2088 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002089 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2090 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002091 return false;
2092
bigbiff22851b92021-09-01 16:46:57 -04002093 if (!TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002094 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002095 return false;
2096 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002097 return true;
2098}
2099
Dees_Troy8170a922012-09-18 15:40:25 -04002100int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002101 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002102 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002103
Ethan Yonker47360be2014-04-01 10:34:34 -05002104 string Lun_File_str = CUSTOM_LUN_FILE;
2105 size_t found = Lun_File_str.find("%");
2106 if (found != string::npos) {
2107 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2108 if (TWFunc::Path_Exists(lun_file))
2109 has_multiple_lun = true;
2110 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002111 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002112 if (!has_multiple_lun) {
2113 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2114 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2115 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002116 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002117 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002118 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2119 goto error_handle;
2120 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002121 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002122 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002123 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002124 }
2125 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002126 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002127 }
Dees_Troy8170a922012-09-18 15:40:25 -04002128 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002129 LOGINFO("Device has multiple lun files\n");
2130 TWPartition* Mount1;
2131 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002132 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002133 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002134 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002135 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2136 goto error_handle;
2137 }
Matt Moweree717062014-04-26 01:46:46 -05002138 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002139 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002140 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002141 Open_Lun_File(Mount2->Mount_Point, lun_file);
nkk717aa6fc62017-03-24 18:28:03 +02002142 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2143 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data") {
2144 Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002145 }
nkk717aa6fc62017-03-24 18:28:03 +02002146 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2147 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data" && !Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002148 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002149 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002150 }
Dees_Troy8170a922012-09-18 15:40:25 -04002151 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002152 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002153 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002154 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002155error_handle:
2156 if (mtp_was_enabled)
2157 if (!Enable_MTP())
2158 Disable_MTP();
2159 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002160}
2161
2162int TWPartitionManager::usb_storage_disable(void) {
bigbiff22851b92021-09-01 16:46:57 -04002163 int index, ret = 0;
Dees_Troy2673cec2013-04-02 20:22:16 +00002164 char lun_file[255], ch[2] = {0, 0};
2165 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002166
2167 for (index=0; index<2; index++) {
2168 sprintf(lun_file, CUSTOM_LUN_FILE, index);
bigbiff22851b92021-09-01 16:46:57 -04002169 if (!TWFunc::write_to_file(lun_file, str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002170 break;
bigbiff22851b92021-09-01 16:46:57 -04002171 ret = -1;
Dees_Troy8170a922012-09-18 15:40:25 -04002172 }
Dees_Troy8170a922012-09-18 15:40:25 -04002173 }
Dees_Troye58d5262012-09-21 12:27:57 -04002174 Mount_All_Storage();
2175 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002176 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002177 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002178 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002179 if (mtp_was_enabled)
2180 if (!Enable_MTP())
2181 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002182 if (ret < 0 && index == 0) {
2183 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2184 return false;
2185 } else {
2186 return true;
2187 }
Dees_Troy8170a922012-09-18 15:40:25 -04002188 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002189}
2190
2191void TWPartitionManager::Mount_All_Storage(void) {
2192 std::vector<TWPartition*>::iterator iter;
2193
2194 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2195 if ((*iter)->Is_Storage)
2196 (*iter)->Mount(false);
2197 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002198}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002199
Dees_Troyd0384ef2012-10-12 12:15:42 -04002200void TWPartitionManager::UnMount_Main_Partitions(void) {
2201 // Unmounts system and data if data is not data/media
2202 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002203 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002204
Mohd Faraze3948ec2020-08-14 01:40:59 +00002205 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002206
Mohd Faraze3948ec2020-08-14 01:40:59 +00002207 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2208 UnMount_By_Path (Get_Android_Root_Path(), true);
2209 Partition = Find_Partition_By_Path ("/product");
2210 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002211 if (!datamedia)
2212 UnMount_By_Path("/data", true);
2213
Mohd Faraze3948ec2020-08-14 01:40:59 +00002214 Partition = Find_Partition_By_Path ("/boot");
2215 if (Partition != NULL && Partition->Can_Be_Mounted)
2216 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002217}
2218
Dees_Troy9350b8d2012-09-27 12:38:38 -04002219int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002220 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002221 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 -04002222 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002223
Ethan Yonker74db1572015-10-28 12:44:49 -05002224 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002225
2226 // Locate and validate device to partition
2227 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2228
Ethan Yonker66a19492015-12-10 10:19:45 -06002229 if (SDCard->Is_Adopted_Storage)
2230 SDCard->Revert_Adopted();
2231
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002232 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002233 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002234 return false;
2235 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002236
2237 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002238 if (!SDCard->UnMount(true))
2239 return false;
2240 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2241 if (SDext != NULL) {
2242 if (!SDext->UnMount(true))
2243 return false;
2244 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002245 char* swappath = getenv("SWAPPATH");
2246 if (swappath != NULL) {
2247 LOGINFO("Unmounting swap at '%s'\n", swappath);
2248 umount(swappath);
2249 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002250
Ethan Yonker483e9f42016-01-11 22:21:18 -06002251 // Determine block device
2252 if (SDCard->Alternate_Block_Device.empty()) {
2253 SDCard->Find_Actual_Block_Device();
2254 Device = SDCard->Actual_Block_Device;
2255 // Just use the root block device
2256 Device.resize(strlen("/dev/block/mmcblkX"));
2257 } else {
2258 Device = SDCard->Alternate_Block_Device;
2259 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002260
2261 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002262 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002263
2264 DataManager::GetValue("tw_sdext_size", ext);
2265 DataManager::GetValue("tw_swap_size", swap);
2266 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2267 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002268 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);
2269
2270 // Determine partition sizes
2271 if (swap == 0 && ext == 0) {
2272 fat_str = "-0";
2273 } else {
2274 memset(temp, 0, sizeof(temp));
2275 sprintf(temp, "%i", fat_size);
2276 fat_str = temp;
2277 fat_str += "MB";
2278 }
2279 if (swap == 0) {
2280 ext_str = "-0";
2281 } else {
2282 memset(temp, 0, sizeof(temp));
2283 sprintf(temp, "%i", ext);
2284 ext_str = "+";
2285 ext_str += temp;
2286 ext_str += "MB";
2287 }
2288
Dees_Troy9350b8d2012-09-27 12:38:38 -04002289 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002290 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002291 return false;
2292 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002293
Ethan Yonker74db1572015-10-28 12:44:49 -05002294 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002295 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002296 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002297 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002298 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002299 Update_System_Details();
2300 return false;
2301 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002302 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002303 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 +00002304 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002305 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002306 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002307 return false;
2308 }
2309 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002310 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002311 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002312 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002313 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002314 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002315 Update_System_Details();
2316 return false;
2317 }
2318 }
2319 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002320 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002321 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 +00002322 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002323 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002324 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002325 Update_System_Details();
2326 return false;
2327 }
2328 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002329
2330 // Convert GPT to MBR
2331 Command = "sgdisk --gpttombr " + Device;
2332 if (TWFunc::Exec_Cmd(Command) != 0)
2333 LOGINFO("Failed to covert partition GPT to MBR\n");
2334
2335 // Tell the kernel to rescan the partition table
2336 int fd = open(Device.c_str(), O_RDONLY);
2337 ioctl(fd, BLKRRPART, 0);
2338 close(fd);
2339
2340 string format_device = Device;
2341 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2342 format_device += "p";
2343
2344 // Format new partitions to proper file system
2345 if (fat_size > 0) {
2346 Command = "mkfs.fat " + format_device + "1";
2347 TWFunc::Exec_Cmd(Command);
2348 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002349 if (ext > 0) {
2350 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002351 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2352 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2353 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2354 TWFunc::Exec_Cmd(Command);
2355 } else {
2356 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002357 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002358 }
2359 if (swap > 0) {
2360 Command = "mkswap " + format_device;
2361 if (ext > 0)
2362 Command += "3";
2363 else
2364 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002365 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002366 }
2367
Ethan Yonker483e9f42016-01-11 22:21:18 -06002368 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2369 if (SDCard->Mount(true)) {
2370 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2371 mkdir(TWRP_Folder.c_str(), 0777);
2372 DataManager::Flush();
2373 }
2374
Dees_Troy9350b8d2012-09-27 12:38:38 -04002375 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002376 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002377 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002378}
Dees_Troya13d74f2013-03-24 08:54:55 -05002379
2380void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2381 std::vector<TWPartition*>::iterator iter;
2382 if (ListType == "mount") {
2383 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002384 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002385 struct PartitionList part;
2386 part.Display_Name = (*iter)->Display_Name;
2387 part.Mount_Point = (*iter)->Mount_Point;
2388 part.selected = (*iter)->Is_Mounted();
2389 Partition_List->push_back(part);
2390 }
2391 }
2392 } else if (ListType == "storage") {
2393 char free_space[255];
2394 string Current_Storage = DataManager::GetCurrentStoragePath();
2395 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2396 if ((*iter)->Is_Storage) {
2397 struct PartitionList part;
2398 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2399 part.Display_Name = (*iter)->Storage_Name + " (";
2400 part.Display_Name += free_space;
2401 part.Display_Name += "MB)";
2402 part.Mount_Point = (*iter)->Storage_Path;
2403 if ((*iter)->Storage_Path == Current_Storage)
2404 part.selected = 1;
2405 else
2406 part.selected = 0;
2407 Partition_List->push_back(part);
2408 }
2409 }
2410 } else if (ListType == "backup") {
2411 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002412 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002413 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002414 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002415 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002416 Backup_Size = (*iter)->Backup_Size;
2417 if ((*iter)->Has_SubPartition) {
2418 std::vector<TWPartition*>::iterator subpart;
2419
2420 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2421 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2422 Backup_Size += (*subpart)->Backup_Size;
2423 }
2424 }
2425 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002426 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2427 part.Display_Name += backup_size;
2428 part.Display_Name += "MB)";
2429 part.Mount_Point = (*iter)->Backup_Path;
2430 part.selected = 0;
2431 Partition_List->push_back(part);
2432 }
2433 }
2434 } else if (ListType == "restore") {
2435 string Restore_List, restore_path;
2436 TWPartition* restore_part = NULL;
2437
2438 DataManager::GetValue("tw_restore_list", Restore_List);
2439 if (!Restore_List.empty()) {
2440 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2441 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2442 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002443 struct PartitionList part;
2444 if (restore_path.compare("ADB_Backup") == 0) {
2445 part.Display_Name = "ADB Backup";
2446 part.Mount_Point = "ADB Backup";
2447 part.selected = 1;
2448 Partition_List->push_back(part);
2449 break;
2450 }
Dees_Troy59df9262013-06-19 14:53:57 -05002451 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002452 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002453 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002454 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002455 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002456 part.Display_Name = restore_part->Backup_Display_Name;
2457 part.Mount_Point = restore_part->Backup_Path;
2458 part.selected = 1;
2459 Partition_List->push_back(part);
2460 }
2461 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002462 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002463 }
2464 start_pos = end_pos + 1;
2465 end_pos = Restore_List.find(";", start_pos);
2466 }
2467 }
2468 } else if (ListType == "wipe") {
2469 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002470 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002471 dalvik.Mount_Point = "DALVIK";
2472 dalvik.selected = 0;
2473 Partition_List->push_back(dalvik);
2474 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2475 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2476 struct PartitionList part;
2477 part.Display_Name = (*iter)->Display_Name;
2478 part.Mount_Point = (*iter)->Mount_Point;
2479 part.selected = 0;
2480 Partition_List->push_back(part);
2481 }
2482 if ((*iter)->Has_Android_Secure) {
2483 struct PartitionList part;
2484 part.Display_Name = (*iter)->Backup_Display_Name;
2485 part.Mount_Point = (*iter)->Backup_Path;
2486 part.selected = 0;
2487 Partition_List->push_back(part);
2488 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002489 if ((*iter)->Has_Data_Media) {
2490 struct PartitionList datamedia;
2491 datamedia.Display_Name = (*iter)->Storage_Name;
2492 datamedia.Mount_Point = "INTERNAL";
2493 datamedia.selected = 0;
2494 Partition_List->push_back(datamedia);
2495 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002496 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002497 } else if (ListType == "flashimg") {
2498 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2499 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2500 struct PartitionList part;
2501 part.Display_Name = (*iter)->Backup_Display_Name;
2502 part.Mount_Point = (*iter)->Backup_Path;
2503 part.selected = 0;
2504 Partition_List->push_back(part);
2505 }
2506 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002507 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2508 TWPartition* boot = Find_Partition_By_Path("/boot");
2509 if (boot) {
2510 // Allow flashing kernels and ramdisks
2511 struct PartitionList repack_ramdisk;
2512 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2513 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2514 repack_ramdisk.selected = 0;
2515 Partition_List->push_back(repack_ramdisk);
2516 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2517 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2518 repack_kernel.Mount_Point = "/repack_kernel";
2519 repack_kernel.selected = 0;
2520 Partition_List->push_back(repack_kernel);*/
2521 }
2522 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002523 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002524 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002525 }
2526}
2527
2528int TWPartitionManager::Fstab_Processed(void) {
2529 return Partitions.size();
2530}
Dees_Troyd93bda52013-07-03 19:55:19 +00002531
2532void TWPartitionManager::Output_Storage_Fstab(void) {
2533 std::vector<TWPartition*>::iterator iter;
2534 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002535 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002536 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002537
2538 if (cacheDir.empty()) {
2539 LOGINFO("Unable to find cache directory\n");
2540 return;
2541 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002542
bigbiff25d25b92020-06-19 16:07:38 -04002543 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002544 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002545
2546 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002547 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002548 return;
2549 }
2550
2551 // Iterate through all partitions
2552 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2553 if ((*iter)->Is_Storage) {
2554 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2555 strcpy(storage_partition, Temp.c_str());
2556 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2557 }
2558 }
2559 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002560}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002561
2562TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2563{
2564 TWPartition *res = NULL;
2565 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002566 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002567 continue;
2568
Matt Mowera8a89d12016-12-30 18:10:37 -06002569 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002570 return *iter;
2571
Matt Mowera8a89d12016-12-30 18:10:37 -06002572 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002573 res = *iter;
2574 }
2575 return res;
2576}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002577
2578bool TWPartitionManager::Enable_MTP(void) {
2579#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002580 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002581 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002582 return true;
2583 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002584
2585 int mtppipe[2];
2586
2587 if (pipe(mtppipe) < 0) {
2588 LOGERR("Error creating MTP pipe\n");
2589 return false;
2590 }
2591
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002592 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002593 property_get("sys.usb.config", old_value, "");
2594 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002595 char vendor[PROPERTY_VALUE_MAX];
2596 char product[PROPERTY_VALUE_MAX];
2597 property_set("sys.usb.config", "none");
2598 property_get("usb.vendor", vendor, "18D1");
2599 property_get("usb.product.mtpadb", product, "4EE2");
2600 string vendorstr = vendor;
2601 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002602 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2603 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002604 property_set("sys.usb.config", "mtp,adb");
2605 }
Matt Mower653a1702017-02-16 10:38:52 -06002606 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002607 * twrp set tw_mtp_debug 1
2608 */
2609 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002610 mtppid = mtp->forkserver(mtppipe);
2611 if (mtppid) {
2612 close(mtppipe[0]); // Host closes read side
2613 mtp_write_fd = mtppipe[1];
2614 DataManager::SetValue("tw_mtp_enabled", 1);
2615 Add_All_MTP_Storage();
2616 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002617 } else {
2618 close(mtppipe[0]);
2619 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002620 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002621 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002622 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002623#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002624 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002625#endif
2626 DataManager::SetValue("tw_mtp_enabled", 0);
2627 return false;
2628}
2629
Ethan Yonker1b039202015-01-30 10:08:48 -06002630void TWPartitionManager::Add_All_MTP_Storage(void) {
2631#ifdef TW_HAS_MTP
2632 std::vector<TWPartition*>::iterator iter;
2633
2634 if (!mtppid)
2635 return; // MTP is not enabled
2636
2637 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2638 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2639 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2640 }
2641#else
2642 return;
2643#endif
2644}
2645
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002646bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002647 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002648 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002649 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002650 if (strcmp(old_value, "adb") != 0) {
2651 char vendor[PROPERTY_VALUE_MAX];
2652 char product[PROPERTY_VALUE_MAX];
2653 property_set("sys.usb.config", "none");
2654 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002655 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002656 string vendorstr = vendor;
2657 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002658 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2659 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002660 usleep(2000);
2661 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002662#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002663 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002664 LOGINFO("Disabling MTP\n");
2665 int status;
2666 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002667 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002668 // We don't care about the exit value, but this prevents a zombie process
2669 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002670 close(mtp_write_fd);
2671 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002672 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002673#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002674 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002675#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002676 DataManager::SetValue("tw_mtp_enabled", 0);
2677 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002678#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002679 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002680}
Ethan Yonker726a0202014-12-16 20:01:38 -06002681
2682TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2683 std::vector<TWPartition*>::iterator iter;
2684
2685 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2686 if ((*iter)->MTP_Storage_ID == Storage_ID)
2687 return (*iter);
2688 }
2689 return NULL;
2690}
2691
2692bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2693#ifdef TW_HAS_MTP
2694 struct mtpmsg mtp_message;
2695
2696 if (!mtppid)
2697 return false; // MTP is disabled
2698
2699 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002700 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002701 return false;
2702 }
2703
2704 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002705 if (Part->MTP_Storage_ID == 0)
2706 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002707 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2708 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2709 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2710 mtp_message.storage_id = Part->MTP_Storage_ID;
2711 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002712 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002713 return false;
2714 } else {
2715 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2716 return true;
2717 }
2718 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2719 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2720 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002721 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2722 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2723 return false;
2724 }
2725 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2726 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2727 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2728 return false;
2729 }
2730 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002731 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002732 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 -06002733 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002734 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002735 return false;
2736 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002737 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002738 return true;
2739 }
2740 } else {
2741 LOGERR("Unknown MTP message type: %i\n", message_type);
2742 }
2743 } else {
2744 // This hopefully never happens as the error handling should
2745 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002746 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002747 }
2748 return true;
2749#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002750 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002751 DataManager::SetValue("tw_mtp_enabled", 0);
2752 return false;
2753#endif
2754}
2755
2756bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2757#ifdef TW_HAS_MTP
2758 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2759 if (Part) {
2760 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2761 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002762 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002763 }
2764#endif
2765 return false;
2766}
2767
2768bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2769#ifdef TW_HAS_MTP
2770 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2771 if (Part) {
2772 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2773 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002774 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002775 }
2776#endif
2777 return false;
2778}
2779
2780bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2781#ifdef TW_HAS_MTP
2782 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2783 if (Part) {
2784 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2785 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002786 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002787 }
2788#endif
2789 return false;
2790}
2791
2792bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2793#ifdef TW_HAS_MTP
2794 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2795 if (Part) {
2796 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2797 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002798 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002799 }
2800#endif
2801 return false;
2802}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002803
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002804bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002805 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002806 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002807 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002808 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002809 size_t start_pos = 0, end_pos = 0;
2810
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002811 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002812
bigbiffce8f83c2015-12-12 18:30:21 -05002813 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2814 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2815
2816 if (!TWFunc::Path_Exists(full_filename)) {
2817 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002818 return false;
2819 }
bigbiffce8f83c2015-12-12 18:30:21 -05002820 if (!TWFunc::Path_Exists(full_filename)) {
2821 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002822 return false;
2823 }
2824 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002825
Ethan Yonker53796e72019-01-11 22:49:52 -06002826 DataManager::GetValue("tw_flash_partition", Flash_List);
2827 Repack_Type repack = REPLACE_NONE;
2828 if (Flash_List == "/repack_ramdisk;") {
2829 repack = REPLACE_RAMDISK;
2830 } else if (Flash_List == "/repack_kernel;") {
2831 repack = REPLACE_KERNEL;
2832 }
2833 if (repack != REPLACE_NONE) {
2834 Repack_Options_struct Repack_Options;
2835 Repack_Options.Type = repack;
2836 Repack_Options.Disable_Verity = false;
2837 Repack_Options.Disable_Force_Encrypt = false;
2838 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002839 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002840 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002841 PartitionSettings part_settings;
2842 part_settings.Backup_Folder = path;
2843 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2844 ProgressTracking progress(total_bytes);
2845 part_settings.progress = &progress;
2846 part_settings.adbbackup = false;
2847 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002848 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002849 if (!Flash_List.empty()) {
2850 end_pos = Flash_List.find(";", start_pos);
2851 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2852 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2853 flash_part = Find_Partition_By_Path(flash_path);
2854 if (flash_part != NULL) {
2855 partition_count++;
2856 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002857 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002858 return false;
2859 }
2860 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002861 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002862 return false;
2863 }
2864 start_pos = end_pos + 1;
2865 end_pos = Flash_List.find(";", start_pos);
2866 }
2867 }
2868
2869 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002870 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002871 return false;
2872 }
2873
2874 DataManager::SetProgress(0.0);
2875 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002876 flash_part->Backup_FileName = filename;
2877 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002878 return false;
2879 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002880 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002881 return false;
2882 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002883 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002884 return true;
2885}
Ethan Yonker74db1572015-10-28 12:44:49 -05002886
2887void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2888 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2889 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002890 if (part->Is_Adopted_Storage) {
2891 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2892 part->Backup_Display_Name = part->Display_Name;
2893 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2894 } else {
2895 part->Display_Name = gui_lookup(resource_name, default_value);
2896 part->Backup_Display_Name = part->Display_Name;
2897 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002898 }
2899}
2900
2901void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2902 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2903 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002904 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002905 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002906 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002907 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2908 } else {
2909 part->Display_Name = gui_lookup(resource_name, default_value);
2910 part->Backup_Display_Name = part->Display_Name;
2911 if (part->Is_Storage)
2912 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2913 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002914 }
2915}
2916
Ethan Yonker01f4e032017-02-03 15:30:52 -06002917void 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) {
2918 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2919 if (part) {
2920 if (part->Is_Adopted_Storage) {
2921 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2922 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2923 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2924 } else {
2925 part->Display_Name = gui_lookup(resource_name, default_value);
2926 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2927 if (part->Is_Storage)
2928 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2929 }
2930 }
2931}
2932
Ethan Yonker74db1572015-10-28 12:44:49 -05002933void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002934 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002935 Translate_Partition("/system", "system", "System");
2936 Translate_Partition("/system_image", "system_image", "System Image");
2937 Translate_Partition("/vendor", "vendor", "Vendor");
2938 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2939 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002940 Translate_Partition("/boot", "boot", "Boot");
2941 Translate_Partition("/recovery", "recovery", "Recovery");
2942 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002943 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002944 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2945 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2946 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2947 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002948 } else {
2949 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002950 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002951 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2952 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002953 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2954 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2955
2956 // Android secure is a special case
2957 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2958 if (part)
2959 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2960
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002961 std::vector<TWPartition*>::iterator sysfs;
2962 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2963 if (!(*sysfs)->Sysfs_Entry.empty()) {
2964 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2965 }
2966 }
2967
Ethan Yonker74db1572015-10-28 12:44:49 -05002968 // This updates the text on all of the storage selection buttons in the GUI
2969 DataManager::SetBackupFolder();
2970}
Ethan Yonker66a19492015-12-10 10:19:45 -06002971
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002972bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002973#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002974 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002975 if (!Mount_By_Path("/data", false)) {
2976 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002977 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002978 }
Darth98f775972022-08-05 09:39:03 +01002979
2980 std::string path = "/data/system/storage.xml";
2981 if (!TWFunc::Check_Xml_Format(path)) {
2982 std::string oldpath = path;
2983 if (TWFunc::abx_to_xml(oldpath, path)) {
2984 LOGINFO("Android 12+: '%s' has been converted into plain text xml (%s).\n", oldpath.c_str(), path.c_str());
2985 }
2986 }
2987
Fernando Oliveira80c34602023-02-01 12:52:32 -03002988 //Devices without encryption do not run the Post_Decrypt function so the "data/recovery" folder was not being created on these devices
2989 DataManager::SetValue("tw_settings_path", TW_STORAGE_PATH);
Ethan Yonker66a19492015-12-10 10:19:45 -06002990 LOGINFO("Decrypt adopted storage starting\n");
Darth98f775972022-08-05 09:39:03 +01002991 char* xmlFile = PageManager::LoadFileToBuffer(path, NULL);
Ethan Yonker66a19492015-12-10 10:19:45 -06002992 xml_document<> *doc = NULL;
2993 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002994 string Primary_Storage_UUID = "";
2995 if (xmlFile != NULL) {
2996 LOGINFO("successfully loaded storage.xml\n");
2997 doc = new xml_document<>();
2998 doc->parse<0>(xmlFile);
2999 volumes = doc->first_node("volumes");
3000 if (volumes) {
3001 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
3002 if (psuuid) {
3003 Primary_Storage_UUID = psuuid->value();
3004 }
3005 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003006 } else {
3007 LOGINFO("No /data/system/storage.xml for adopted storage\n");
3008 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003009 }
3010 std::vector<TWPartition*>::iterator adopt;
3011 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
Peter Cai439d60c2019-10-17 08:49:10 +08003012 if ((*adopt)->Removable && !(*adopt)->Is_Present && (*adopt)->Adopted_Mount_Delay > 0) {
3013 // On some devices, the external mmc driver takes some time
3014 // to recognize the card, in which case the "actual block device"
3015 // would not have been found yet. We wait the specified delay
3016 // and then try again.
3017 LOGINFO("Sleeping %d seconds for adopted storage.\n", (*adopt)->Adopted_Mount_Delay);
3018 sleep((*adopt)->Adopted_Mount_Delay);
3019 (*adopt)->Find_Actual_Block_Device();
3020 }
3021
Ethan Yonker66a19492015-12-10 10:19:45 -06003022 if ((*adopt)->Removable && (*adopt)->Is_Present) {
3023 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003024 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06003025 if (volumes) {
3026 xml_node<>* volume = volumes->first_node("volume");
3027 while (volume) {
3028 xml_attribute<>* guid = volume->first_attribute("partGuid");
3029 if (guid) {
3030 string GUID = (*adopt)->Adopted_GUID.c_str();
3031 GUID.insert(8, "-");
3032 GUID.insert(13, "-");
3033 GUID.insert(18, "-");
3034 GUID.insert(23, "-");
3035
3036 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
3037 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03003038 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003039 (*adopt)->Storage_Name = attr->value();
3040 (*adopt)->Display_Name = (*adopt)->Storage_Name;
3041 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
3042 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
3043 }
3044 attr = volume->first_attribute("fsUuid");
3045 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
3046 TWPartition* Dat = Find_Partition_By_Path("/data");
3047 if (Dat) {
3048 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
3049 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
3050 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
3051 Dat->Symlink_Mount_Point = "";
3052 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
3053 Dat->UnMount(false);
3054 Dat->Mount(false);
3055 (*adopt)->UnMount(false);
3056 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06003057 }
3058 }
3059 break;
3060 }
3061 }
3062 volume = volume->next_sibling("volume");
3063 }
3064 }
nkk71ffb02bd2017-06-04 23:12:16 +03003065 Update_System_Details();
3066 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06003067 }
3068 }
3069 }
3070 if (xmlFile) {
3071 doc->clear();
3072 delete doc;
3073 free(xmlFile);
3074 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003075 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06003076#else
3077 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003078 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003079#endif
3080}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003081
3082void TWPartitionManager::Remove_Partition_By_Path(string Path) {
3083 std::vector<TWPartition*>::iterator iter;
3084 string Local_Path = TWFunc::Get_Root_Path(Path);
3085
3086 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3087 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
3088 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3089 Partitions.erase(iter);
3090 return;
3091 }
3092 }
3093}
Ethan Yonker1b190162016-12-05 15:25:19 -06003094
bigbiff74a46272021-07-31 19:02:26 -04003095void TWPartitionManager::Override_Active_Slot(const string& Slot) {
3096 LOGINFO("Overriding slot to '%s'\n", Slot.c_str());
3097 Active_Slot_Display = Slot;
3098 DataManager::SetValue("tw_active_slot", Slot);
nebrassy07c4b902021-11-21 03:32:47 +01003099 PartitionManager.Update_System_Details();
bigbiff74a46272021-07-31 19:02:26 -04003100}
3101
Ethan Yonker1b190162016-12-05 15:25:19 -06003102void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3103 if (Slot != "A" && Slot != "B") {
3104 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3105 return;
3106 }
3107 if (Active_Slot_Display == Slot)
3108 return;
3109 LOGINFO("Setting active slot %s\n", Slot.c_str());
3110#ifdef AB_OTA_UPDATER
3111 if (!Active_Slot_Display.empty()) {
dianlujitaoa90dc462021-12-16 16:56:26 +08003112 android::sp<IBootControl> module = IBootControl::getService();
3113 if (module == nullptr) {
Ethan Yonker1b190162016-12-05 15:25:19 -06003114 LOGERR("Error getting bootctrl module.\n");
3115 } else {
dianlujitaoa90dc462021-12-16 16:56:26 +08003116 uint32_t slot_number = 0;
Ethan Yonker1b190162016-12-05 15:25:19 -06003117 if (Slot == "B")
3118 slot_number = 1;
dianlujitaoa90dc462021-12-16 16:56:26 +08003119 CommandResult result;
3120 auto ret = module->setActiveBootSlot(slot_number, [&result]
3121 (const CommandResult &cb_result) { result = cb_result; });
3122 if (!ret.isOk() || !result.success)
Ethan Yonker1b190162016-12-05 15:25:19 -06003123 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3124 }
3125 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
3126 }
3127#else
3128 LOGERR("Boot slot feature not present\n");
3129#endif
3130 Active_Slot_Display = Slot;
3131 if (Fstab_Processed())
3132 Update_System_Details();
3133}
3134string TWPartitionManager::Get_Active_Slot_Suffix() {
3135 if (Active_Slot_Display == "A")
3136 return "_a";
3137 return "_b";
3138}
3139string TWPartitionManager::Get_Active_Slot_Display() {
3140 return Active_Slot_Display;
3141}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003142
Captain Throwback9d6feb52018-07-27 10:05:24 -04003143string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04003144 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003145}
3146
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003147void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3148 std::vector<TWPartition*>::iterator iter;
3149
3150 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3151 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3152 TWPartition *part = *iter;
3153 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3154 (*iter)->UnMount(false);
3155 rmdir((*iter)->Mount_Point.c_str());
3156 iter = Partitions.erase(iter);
3157 delete part;
3158 } else {
3159 iter++;
3160 }
3161 }
3162}
3163
3164void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3165 std::vector<TWPartition*>::iterator iter;
3166
3167 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3168 if (!(*iter)->Sysfs_Entry.empty()) {
3169 string device;
3170 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3171 if (wildcard != string::npos) {
3172 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3173 } else {
3174 device = (*iter)->Sysfs_Entry;
3175 }
3176 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3177 // Found a match
3178 if (uevent_data.action == "add") {
3179 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3180 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3181 (*iter)->Is_Present = true;
3182 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3183 if (!Decrypt_Adopted()) {
3184 LOGINFO("No adopted storage so finding actual block device\n");
3185 (*iter)->Find_Actual_Block_Device();
3186 }
3187 return;
3188 } else if (uevent_data.action == "remove") {
3189 (*iter)->Is_Present = false;
3190 (*iter)->Primary_Block_Device = "";
3191 (*iter)->Actual_Block_Device = "";
3192 Remove_Uevent_Devices((*iter)->Mount_Point);
3193 return;
3194 }
3195 }
3196 }
3197 }
bigbiffee7b7ff2020-03-23 15:08:27 -04003198
3199 if (!PartitionManager.Get_Super_Status())
3200 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 -06003201}
3202
3203void TWPartitionManager::setup_uevent() {
3204 struct sockaddr_nl nls;
3205
3206 if (uevent_pfd.fd >= 0) {
3207 LOGINFO("uevent already set up\n");
3208 return;
3209 }
3210
3211 // Open hotplug event netlink socket
3212 memset(&nls,0,sizeof(struct sockaddr_nl));
3213 nls.nl_family = AF_NETLINK;
3214 nls.nl_pid = getpid();
3215 nls.nl_groups = -1;
3216 uevent_pfd.events = POLLIN;
3217 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3218 if (uevent_pfd.fd==-1) {
3219 LOGERR("uevent not root\n");
3220 return;
3221 }
3222
3223 // Listen to netlink socket
3224 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3225 LOGERR("Bind failed\n");
3226 return;
3227 }
3228 set_select_fd();
3229 Coldboot();
3230}
3231
3232Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3233 Uevent_Block_Data ret;
3234 ret.subsystem = "";
3235 char *ptr = buf;
3236 const char *end = buf + len;
3237
3238 buf[len - 1] = '\0';
3239 while (ptr < end) {
3240 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3241 ptr += strlen("ACTION=");
3242 ret.action = ptr;
3243 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3244 ptr += strlen("SUBSYSTEM=");
3245 ret.subsystem = ptr;
3246 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3247 ptr += strlen("DEVTYPE=");
3248 ret.type = ptr;
3249 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3250 ptr += strlen("DEVPATH=");
3251 ret.sysfs_path += ptr;
3252 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3253 ptr += strlen("DEVNAME=");
3254 ret.block_device += ptr;
3255 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3256 ptr += strlen("MAJOR=");
3257 ret.major = atoi(ptr);
3258 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3259 ptr += strlen("MINOR=");
3260 ret.minor = atoi(ptr);
3261 }
3262 ptr += strlen(ptr) + 1;
3263 }
3264 return ret;
3265}
3266
3267void TWPartitionManager::read_uevent() {
3268 char buf[1024];
3269
3270 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3271 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003272 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003273 return;
3274 }
3275 /*int i = 0; // Print all uevent output for test /debug
3276 while (i<len) {
3277 printf("%s\n", buf+i);
3278 i += strlen(buf+i)+1;
3279 }*/
3280 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3281 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3282 PartitionManager.Handle_Uevent(uevent_data);
3283 }
3284}
3285
3286void TWPartitionManager::close_uevent() {
3287 if (uevent_pfd.fd > 0)
3288 close(uevent_pfd.fd);
3289 uevent_pfd.fd = -1;
3290}
3291
3292void TWPartitionManager::Add_Partition(TWPartition* Part) {
3293 Partitions.push_back(Part);
3294}
3295
3296void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3297 string Real_Path = Path;
3298 char real_path[PATH_MAX];
3299 if (realpath(Path.c_str(), &real_path[0])) {
3300 string Real_Path = real_path;
3301 std::vector<string>::iterator iter;
3302 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3303 if (Real_Path.find((*iter)) != string::npos) {
3304 string Write_Path = Real_Path + "/uevent";
3305 if (TWFunc::Path_Exists(Write_Path)) {
3306 const char* write_val = "add\n";
3307 TWFunc::write_to_file(Write_Path, write_val);
3308 break;
3309 }
3310 }
3311 }
3312 }
3313
3314 DIR* d = opendir(Path.c_str());
3315 if (d != NULL) {
3316 struct dirent* de;
3317 while ((de = readdir(d)) != NULL) {
3318 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3319 continue;
3320 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3321 continue;
3322
3323 string item = Path + "/";
3324 item.append(de->d_name);
3325 Coldboot_Scan(sysfs_entries, item, depth + 1);
3326 }
3327 closedir(d);
3328 }
3329}
3330
3331void TWPartitionManager::Coldboot() {
3332 std::vector<TWPartition*>::iterator iter;
3333 std::vector<string> sysfs_entries;
3334
3335 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3336 if (!(*iter)->Sysfs_Entry.empty()) {
3337 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3338 if (wildcard_pos == string::npos)
3339 wildcard_pos = (*iter)->Sysfs_Entry.size();
3340 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3341 }
3342 }
3343
3344 if (sysfs_entries.size() > 0)
3345 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3346}
Ethan Yonker53796e72019-01-11 22:49:52 -06003347
3348bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3349 if (TWFunc::Path_Exists(Folder))
3350 TWFunc::removeDir(Folder, false);
3351 return TWFunc::Recursive_Mkdir(Folder);
3352}
3353
bigbiffcfa875c2021-06-20 16:20:27 -04003354std::string TWPartitionManager::Get_Bare_Partition_Name(std::string Mount_Point) {
3355 if (Mount_Point == "/system_root")
3356 return "system";
3357 else
3358 return TWFunc::Remove_Beginning_Slash(Mount_Point);
3359}
3360
bigbiffee7b7ff2020-03-23 15:08:27 -04003361bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3362 Fstab fstab;
bigbiffcfa875c2021-06-20 16:20:27 -04003363 std::string bare_partition_name = Get_Bare_Partition_Name(twrpPart->Get_Mount_Point());
bigbiffee7b7ff2020-03-23 15:08:27 -04003364
bigbiff998f8392021-08-06 19:19:33 -04003365 Super_Partition_List.push_back(bare_partition_name);
bigbiffee7b7ff2020-03-23 15:08:27 -04003366 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3367
3368 std::string blk_device_partition;
3369#ifdef AB_OTA_UPDATER
3370 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3371#else
3372 blk_device_partition = bare_partition_name;
3373#endif
3374
3375 FstabEntry fstabEntry = {
3376 .blk_device = blk_device_partition,
3377 .mount_point = twrpPart->Get_Mount_Point(),
3378 .fs_type = twrpPart->Current_File_System,
3379 .fs_mgr_flags.logical = twrpPart->Is_Super,
3380 };
3381
3382 fstab.emplace_back(fstabEntry);
3383 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
Captain Throwbackc6939102021-04-06 12:57:30 -04003384 LOGINFO("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
bigbiffee7b7ff2020-03-23 15:08:27 -04003385 return false;
3386 }
3387
bigbiff32cbabe2020-04-12 19:16:19 -04003388 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3389 usleep(100);
3390 }
3391
bigbiffee7b7ff2020-03-23 15:08:27 -04003392 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3393 twrpPart->Update_Size(true);
bigbiffee7b7ff2020-03-23 15:08:27 -04003394 twrpPart->Set_Can_Be_Backed_Up(false);
3395 twrpPart->Set_Can_Be_Wiped(false);
me-cafebabe928234b2022-07-28 04:07:04 +08003396 if (access(("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str(), F_OK) == -1) {
3397 LOGINFO("Symlinking %s => /dev/block/bootdevice/by-name/%s \n", fstabEntry.blk_device.c_str(), bare_partition_name.c_str());
3398 symlink(fstabEntry.blk_device.c_str(), ("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str());
Captain Throwback89483252023-01-16 15:32:26 -05003399 property_set("twrp.super.symlinks_created", "true");
me-cafebabe928234b2022-07-28 04:07:04 +08003400 }
Mohd Faraz7fc70502021-04-22 20:44:11 +02003401
bigbiffee7b7ff2020-03-23 15:08:27 -04003402 return true;
3403}
3404
3405bool TWPartitionManager::Prepare_All_Super_Volumes() {
3406 bool status = true;
3407 std::vector<TWPartition*>::iterator iter;
3408
3409 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3410 if ((*iter)->Is_Super) {
3411 if (!Prepare_Super_Volume(*iter)) {
3412 status = false;
Mohd Faraz5ec04ef2023-01-02 22:47:51 +01003413 Partitions.erase(iter--);
bigbiffee7b7ff2020-03-23 15:08:27 -04003414 }
3415 PartitionManager.Output_Partition(*iter);
3416 }
3417 }
3418 Update_System_Details();
3419 return status;
3420}
3421
bigbiffee7b7ff2020-03-23 15:08:27 -04003422std::string TWPartitionManager::Get_Super_Partition() {
3423 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
bigbiff998f8392021-08-06 19:19:33 -04003424 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
bigbiffee7b7ff2020-03-23 15:08:27 -04003425 return "/dev/block/by-name/" + super_device;
3426}
3427
3428void TWPartitionManager::Setup_Super_Devices() {
3429 std::string superPart = Get_Super_Partition();
3430 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003431}
3432
3433void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003434 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003435 std::string superPart = Get_Super_Partition();
3436
3437 superPartition->Backup_Path = "/super";
3438 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003439 superPartition->Actual_Block_Device = superPart;
3440 superPartition->Alternate_Block_Device = superPart;
bigbiff998f8392021-08-06 19:19:33 -04003441 superPartition->Backup_Display_Name = "Super (";
3442 // Add first 4 items to fstab as logical that you would like to display in Backup_Display_Name
3443 // for the Super partition
3444 int list_size = Super_Partition_List.size();
3445 int orig_list_size = list_size;
3446 int max_display_size = 3; // total of 4 items since we start at 0
3447
3448 for (auto partition: Super_Partition_List) {
3449 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + partition;
3450 if ((orig_list_size - list_size) == max_display_size) {
3451 break;
3452 }
3453 if (list_size != 1)
3454 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + " ";
3455 list_size--;
3456 }
3457 superPartition->Backup_Display_Name += ")";
bigbiffee7b7ff2020-03-23 15:08:27 -04003458 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003459 superPartition->Current_File_System = "emmc";
3460 superPartition->Can_Be_Backed_Up = true;
3461 superPartition->Is_Present = true;
3462 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003463 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003464 Add_Partition(superPartition);
3465 PartitionManager.Output_Partition(superPartition);
bigbiffee7b7ff2020-03-23 15:08:27 -04003466}
3467
3468bool TWPartitionManager::Get_Super_Status() {
bigbiffdf8436b2020-08-30 16:22:34 -04003469 std::string fastboot_mode = android::base::GetProperty("sys.usb.config", "");
3470 if (fastboot_mode == "fastboot") {
3471 return false;
3472 }
3473 else
3474 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003475}
bigbiff25d25b92020-06-19 16:07:38 -04003476
3477bool TWPartitionManager::Recreate_Logs_Dir() {
3478#ifdef TW_INCLUDE_FBE
3479 struct passwd pd;
3480 struct passwd *pwdptr = &pd;
3481 struct passwd *tempPd;
3482 char pwdBuf[512];
3483 int uid = 0, gid = 0;
3484
3485 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3486 LOGERR("unable to get system user id\n");
3487 return false;
3488 } else {
3489 struct group grp;
3490 struct group *grpptr = &grp;
3491 struct group *tempGrp;
3492 char grpBuf[512];
3493
3494 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3495 LOGERR("unable to get cache group id\n");
3496 return false;
3497 } else {
3498 uid = pd.pw_uid;
3499 gid = grp.gr_gid;
3500 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3501 abLogsRecoveryDir += "/recovery/";
3502
3503 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3504 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3505 return false;
3506 }
3507 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3508 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3509 return false;
3510 }
3511 }
3512 }
3513#endif
3514 return true;
3515}
bigbiff1f9e4842020-10-31 11:33:15 -04003516
3517void TWPartitionManager::Unlock_Block_Partitions() {
3518 int fd, OFF = 0;
3519
3520 const std::string block_path = "/dev/block/";
3521 DIR* d = opendir(block_path.c_str());
3522 if (d != NULL) {
3523 struct dirent* de;
3524 while ((de = readdir(d)) != NULL) {
3525 if (de->d_type == DT_BLK) {
3526 std::string block_device = block_path + de->d_name;
bigbiff1f9e4842020-10-31 11:33:15 -04003527 if ((fd = open(block_device.c_str(), O_RDONLY | O_CLOEXEC)) < 0) {
3528 LOGERR("unable to open block device %s: %s\n", block_device.c_str(), strerror(errno));
3529 continue;
3530 }
3531 if (ioctl(fd, BLKROSET, &OFF) == -1) {
me-cafebabed63fcaa2022-07-28 03:19:20 +08003532 LOGERR("Unable to unlock %s: %s\n", block_device.c_str());
bigbiff1f9e4842020-10-31 11:33:15 -04003533 continue;
3534 }
3535 close(fd);
3536 }
3537 }
3538 closedir(d);
3539 }
bigbiffaf253cd2020-12-06 16:50:55 -05003540}
bigbiffcfa875c2021-06-20 16:20:27 -04003541
3542bool TWPartitionManager::Unmap_Super_Devices() {
3543 bool destroyed = false;
3544#ifndef TW_EXCLUDE_APEX
3545 twrpApex apex;
3546 apex.Unmount();
3547#endif
3548 for (auto iter = Partitions.begin(); iter != Partitions.end();) {
3549 LOGINFO("Checking partition: %s\n", (*iter)->Get_Mount_Point().c_str());
3550 if ((*iter)->Is_Super) {
3551 TWPartition *part = *iter;
3552 std::string bare_partition_name = Get_Bare_Partition_Name((*iter)->Get_Mount_Point());
3553 std::string blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3554 (*iter)->UnMount(false);
3555 LOGINFO("removing dynamic partition: %s\n", blk_device_partition.c_str());
3556 destroyed = DestroyLogicalPartition(blk_device_partition);
3557 std::string cow_partition = blk_device_partition + "-cow";
3558 std::string cow_partition_path = "/dev/block/mapper/" + cow_partition;
3559 struct stat st;
3560 if (lstat(cow_partition_path.c_str(), &st) == 0) {
3561 LOGINFO("removing cow partition: %s\n", cow_partition.c_str());
3562 destroyed = DestroyLogicalPartition(cow_partition);
3563 }
bigbiffcfa875c2021-06-20 16:20:27 -04003564 iter = Partitions.erase(iter);
3565 delete part;
3566 if (!destroyed) {
3567 return false;
3568 }
3569 } else {
3570 ++iter;
3571 }
3572 }
3573 return true;
3574}
bigbiffd21252f2021-09-18 15:56:32 -04003575
3576
3577bool TWPartitionManager::Check_Pending_Merges() {
3578 auto sm = android::snapshot::SnapshotManager::NewForFirstStageMount();
3579 if (!sm) {
3580 LOGERR("Unable to call snapshot manager\n");
3581 return false;
3582 }
3583
3584 if (!Unmap_Super_Devices()) {
3585 LOGERR("Unable to unmap dynamic partitions.\n");
3586 return false;
3587 }
3588
3589 auto callback = [&]() -> void {
3590 double progress;
3591 sm->GetUpdateState(&progress);
3592 LOGINFO("waiting for merge to complete: %.2f\n", progress);
3593 };
3594
3595 LOGINFO("checking for merges\n");
3596 if (!sm->HandleImminentDataWipe(callback)) {
3597 LOGERR("Unable to check merge status\n");
3598 return false;
3599 }
3600 return true;
Darth98f775972022-08-05 09:39:03 +01003601}