blob: 8181c30285095f9100756a35edb995a59cdd56d4 [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 Faraz787cc612023-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 }
466 } else {
bigbiffbbbfe172021-05-30 15:52:41 -0400467 LOGINFO("FBE setup failed. Trying FDE...");
Captain Throwback37c3aef2021-10-06 11:38:18 -0400468 Set_Crypto_State();
469 Set_Crypto_Type("block");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600470 int password_type = cryptfs_get_password_type();
471 if (password_type == CRYPT_TYPE_DEFAULT) {
472 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
473 if (Decrypt_Device("default_password") == 0) {
474 gui_msg("decrypt_success=Successfully decrypted with default password.");
475 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
476 } else {
477 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
478 }
479 } else {
480 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400481 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600482 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600483 }
484 }
bigbiff4fa02b52021-12-30 17:01:44 -0500485 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600486 Decrypt_Adopted();
487 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600488#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400489}
490
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500491void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500492 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500493}
494
Matt Mowerbf4efa32014-04-14 23:25:26 -0500495void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
496 if (Part->Has_Android_Secure)
497 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500498 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500499 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500500}
501
Dees_Troy8170a922012-09-18 15:40:25 -0400502void TWPartitionManager::Output_Partition_Logging(void) {
503 std::vector<TWPartition*>::iterator iter;
504
505 printf("\n\nPartition Logs:\n");
506 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
507 Output_Partition((*iter));
508}
509
510void TWPartitionManager::Output_Partition(TWPartition* Part) {
511 unsigned long long mb = 1048576;
512
Gary Peck004d48b2012-11-21 16:28:18 -0800513 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 -0400514 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800515 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 -0400516 }
Gary Peck004d48b2012-11-21 16:28:18 -0800517 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500518 if (Part->Can_Be_Mounted)
519 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800520 if (Part->Can_Be_Wiped)
521 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700522 if (Part->Use_Rm_Rf)
523 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500524 if (Part->Can_Be_Backed_Up)
525 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800526 if (Part->Wipe_During_Factory_Reset)
527 printf("Wipe_During_Factory_Reset ");
528 if (Part->Wipe_Available_in_GUI)
529 printf("Wipe_Available_in_GUI ");
530 if (Part->Is_SubPartition)
531 printf("Is_SubPartition ");
532 if (Part->Has_SubPartition)
533 printf("Has_SubPartition ");
534 if (Part->Removable)
535 printf("Removable ");
536 if (Part->Is_Present)
537 printf("IsPresent ");
538 if (Part->Can_Be_Encrypted)
539 printf("Can_Be_Encrypted ");
540 if (Part->Is_Encrypted)
541 printf("Is_Encrypted ");
542 if (Part->Is_Decrypted)
543 printf("Is_Decrypted ");
544 if (Part->Has_Data_Media)
545 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000546 if (Part->Can_Encrypt_Backup)
547 printf("Can_Encrypt_Backup ");
548 if (Part->Use_Userdata_Encryption)
549 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800550 if (Part->Has_Android_Secure)
551 printf("Has_Android_Secure ");
552 if (Part->Is_Storage)
553 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500554 if (Part->Is_Settings_Storage)
555 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000556 if (Part->Ignore_Blkid)
557 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600558 if (Part->Mount_To_Decrypt)
559 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600560 if (Part->Can_Flash_Img)
561 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600562 if (Part->Is_Adopted_Storage)
563 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600564 if (Part->SlotSelect)
565 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600566 if (Part->Mount_Read_Only)
567 printf("Mount_Read_Only ");
bigbiffcfa875c2021-06-20 16:20:27 -0400568 if (Part->Is_Super)
569 printf("Is_Super ");
Gary Peck004d48b2012-11-21 16:28:18 -0800570 printf("\n");
571 if (!Part->SubPartition_Of.empty())
572 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
573 if (!Part->Symlink_Path.empty())
574 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
575 if (!Part->Symlink_Mount_Point.empty())
576 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
577 if (!Part->Primary_Block_Device.empty())
578 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
579 if (!Part->Alternate_Block_Device.empty())
580 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
581 if (!Part->Decrypted_Block_Device.empty())
582 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800583 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600584 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800585 if (Part->Length != 0)
586 printf(" Length: %i\n", Part->Length);
587 if (!Part->Display_Name.empty())
588 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500589 if (!Part->Storage_Name.empty())
590 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800591 if (!Part->Backup_Path.empty())
592 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
593 if (!Part->Backup_Name.empty())
594 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500595 if (!Part->Backup_Display_Name.empty())
596 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800597 if (!Part->Backup_FileName.empty())
598 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
599 if (!Part->Storage_Path.empty())
600 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
601 if (!Part->Current_File_System.empty())
602 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
603 if (!Part->Fstab_File_System.empty())
604 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
605 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500606 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400607 if (!Part->MTD_Name.empty())
608 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600609 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800610 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600611 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600612 if (Part->MTP_Storage_ID)
613 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500614 if (!Part->Key_Directory.empty())
615 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500616 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400617}
618
Dees_Troy51a0e822012-09-05 15:24:24 -0400619int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400620 std::vector<TWPartition*>::iterator iter;
621 int ret = false;
622 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400623 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400624
bigbiffd58ba182020-03-23 10:02:29 -0400625 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400626 return true;
627
Dees_Troy5bf43922012-09-07 16:07:55 -0400628 // Iterate through all partitions
629 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400630 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400631 ret = (*iter)->Mount(Display_Error);
632 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400633 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400634 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400635 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400636 }
637 if (found) {
638 return ret;
639 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500640 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 -0400641 }
642 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400643}
644
Dees_Troy51a0e822012-09-05 15:24:24 -0400645int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400646 std::vector<TWPartition*>::iterator iter;
647 int ret = false;
648 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400649 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400650
651 // Iterate through all partitions
652 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400653 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400654 ret = (*iter)->UnMount(Display_Error);
655 found = true;
656 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
657 (*iter)->UnMount(Display_Error);
658 }
659 }
660 if (found) {
661 return ret;
662 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500663 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 -0400664 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000665 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400666 }
667 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400668}
669
Dees_Troy51a0e822012-09-05 15:24:24 -0400670int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400671 TWPartition* Part = Find_Partition_By_Path(Path);
672
673 if (Part)
674 return Part->Is_Mounted();
675 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000676 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400677 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400678}
679
Dees_Troy5bf43922012-09-07 16:07:55 -0400680int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400681 string current_storage_path = DataManager::GetCurrentStoragePath();
682
683 if (Mount_By_Path(current_storage_path, Display_Error)) {
684 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
685 if (FreeStorage)
686 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
687 return true;
688 }
689 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400690}
691
Dees_Troy5bf43922012-09-07 16:07:55 -0400692int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
693 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
694}
695
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600696TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400697 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400698 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400699
dianlujitaob76a73a2020-04-30 20:33:20 +0800700 if (Local_Path == "/system")
701 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400702 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400703 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400704 return (*iter);
705 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400706 return NULL;
707}
708
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600709TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
710 std::vector<TWPartition*>::iterator iter;
711
712 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
713 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
714 return (*iter);
715 }
716 return NULL;
717}
718
Ethan Yonker53796e72019-01-11 22:49:52 -0600719int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400720 // Check the backup name to ensure that it is the correct size and contains only valid characters
721 // and that a backup with that name doesn't already exist
722 char backup_name[MAX_BACKUP_NAME_LEN];
723 char backup_loc[255], tw_image_dir[255];
724 int copy_size;
725 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600726 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400727
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400728 copy_size = Backup_Name.size();
729 // Check size
730 if (copy_size > MAX_BACKUP_NAME_LEN) {
731 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500732 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400733 return -2;
734 }
735
736 // Check each character
737 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500738 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400739 return 0; // A "0" (zero) means to use the current timestamp for the backup name
740 for (index=0; index<copy_size; index++) {
741 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500742 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 -0400743 // These are valid characters
744 // Numbers
745 // Upper case letters
746 // Lower case letters
747 // Space
748 // and -_.{}[]
749 } else {
750 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600751 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 -0400752 return -3;
753 }
754 }
755
Ethan Yonker53796e72019-01-11 22:49:52 -0600756 if (Must_Be_Unique) {
757 // Check to make sure that a backup with this name doesn't already exist
758 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
759 strcpy(backup_loc, Backup_Loc.c_str());
760 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
761 if (TWFunc::Path_Exists(tw_image_dir)) {
762 if (Display_Error)
763 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500764
Ethan Yonker53796e72019-01-11 22:49:52 -0600765 return -4;
766 }
767 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400768 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600769 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400770 return 0;
771}
772
bigbiffce8f83c2015-12-12 18:30:21 -0500773bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400774 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600775 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500776 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400777
bigbiffce8f83c2015-12-12 18:30:21 -0500778 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400779 return true;
780
Dees_Troy093b7642012-09-21 15:59:38 -0400781 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400782
Tom Hite5a926722014-09-15 01:31:03 +0000783 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400784 time(&start);
785
bigbiffce8f83c2015-12-12 18:30:21 -0500786 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500787 sync();
788 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400789 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500790 if (!part_settings->adbbackup && part_settings->generate_digest) {
791 if (!twrpDigestDriver::Make_Digest(Full_Filename))
792 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400793 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400794
bigbiffce8f83c2015-12-12 18:30:21 -0500795 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400796 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400797 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400798
799 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400800 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500801 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500802 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500803 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000804 }
Dees_Troy2727b992013-08-14 20:09:30 +0000805 sync();
806 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400807 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400808 if (!part_settings->adbbackup && part_settings->generate_digest) {
809 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500810 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500811 }
Tom Hite5a926722014-09-15 01:31:03 +0000812 }
Dees_Troy8170a922012-09-18 15:40:25 -0400813 }
814 }
815 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400816
Dees_Troy43d8b002012-09-17 16:00:01 -0400817 time(&stop);
that203bcc92015-05-09 17:27:33 +0200818 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000819 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400820
bigbiffce8f83c2015-12-12 18:30:21 -0500821 if (part_settings->Part->Backup_Method == BM_FILES) {
822 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400823 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500824 part_settings->img_time += backup_time;
825
Dees_Troy43d8b002012-09-17 16:00:01 -0400826 }
Tom Hite5a926722014-09-15 01:31:03 +0000827
Matt Mower02899552016-12-30 18:13:51 -0600828 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500829 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400830 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500831backup_error:
832 Clean_Backup_Folder(part_settings->Backup_Folder);
833 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
834 tw_set_default_metadata(backup_log.c_str());
835 TWFunc::SetPerformanceMode(false);
836 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500837}
838
bigbiffbf1d6722015-02-14 16:25:59 -0500839void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
840 DIR *d = opendir(Backup_Folder.c_str());
841 struct dirent *p;
842 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400843 vector<string> ext;
844
845 //extensions we should delete when cleaning
846 ext.push_back("win");
847 ext.push_back("md5");
848 ext.push_back("sha2");
849 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500850
Ethan Yonker74db1572015-10-28 12:44:49 -0500851 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500852
853 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500854 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500855 return;
856 }
857
Matt Mower2b18a532015-02-20 16:58:05 -0600858 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500859 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
860 continue;
861
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500862 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500863
864 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400865 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
866 if (path.substr(dot) == *i) {
867 r = unlink(path.c_str());
868 if (r != 0)
869 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500870 }
871 }
872 }
873 closedir(d);
874}
875
Ethan Yonker472f5062016-02-25 13:47:30 -0600876int TWPartitionManager::Check_Backup_Cancel() {
877 return stop_backup.get_value();
878}
879
bigbiff7abc5fe2015-01-17 16:53:12 -0500880int TWPartitionManager::Cancel_Backup() {
881 string Backup_Folder, Backup_Name, Full_Backup_Path;
882
883 stop_backup.set_value(1);
884
885 if (tar_fork_pid != 0) {
886 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
887 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500888 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500889 LOGINFO("Killing pid: %d\n", tar_fork_pid);
890 kill(tar_fork_pid, SIGUSR2);
891 while (kill(tar_fork_pid, 0) == 0) {
892 usleep(1000);
893 }
894 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
895 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
896 TWFunc::removeDir(Full_Backup_Path, false);
897 tar_fork_pid = 0;
898 }
899
900 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400901}
902
bigbiffce8f83c2015-12-12 18:30:21 -0500903int TWPartitionManager::Run_Backup(bool adbbackup) {
904 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400905 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500906 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600907 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400908 TWPartition* storage = NULL;
909 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600910 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500911 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500912 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400913 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500914 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400915
bigbiffce8f83c2015-12-12 18:30:21 -0500916 part_settings.img_bytes_remaining = 0;
917 part_settings.file_bytes_remaining = 0;
918 part_settings.img_time = 0;
919 part_settings.file_time = 0;
920 part_settings.img_bytes = 0;
921 part_settings.file_bytes = 0;
922 part_settings.PM_Method = PM_BACKUP;
923
bigbiffce8f83c2015-12-12 18:30:21 -0500924 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400925 time(&total_start);
926
927 Update_System_Details();
928
929 if (!Mount_Current_Storage(true))
930 return false;
931
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400932 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
933 if (skip_digest == 0)
934 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400935 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400936 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400937
bigbiffce8f83c2015-12-12 18:30:21 -0500938 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500939 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
940 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
941 Backup_Name = TWFunc::Get_Current_Date();
942 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000943 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500944 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400945 }
bigbiffce8f83c2015-12-12 18:30:21 -0500946
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500947 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500948 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500949
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500950 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400951
Dees_Troy2673cec2013-04-02 20:22:16 +0000952 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500953 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400954 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500955 if (!Backup_List.empty()) {
956 end_pos = Backup_List.find(";", start_pos);
957 while (end_pos != string::npos && start_pos < Backup_List.size()) {
958 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400959 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500960 part_settings.Part = Find_Partition_By_Path(backup_path);
961 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500962 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500963 if (part_settings.Part->Backup_Method == BM_FILES)
964 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500965 else
bigbiffce8f83c2015-12-12 18:30:21 -0500966 part_settings.img_bytes += part_settings.Part->Backup_Size;
967 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500968 std::vector<TWPartition*>::iterator subpart;
969
970 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500971 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 -0500972 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500973 if ((*subpart)->Backup_Method == BM_FILES)
974 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500975 else
bigbiffce8f83c2015-12-12 18:30:21 -0500976 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500977 }
978 }
Dees_Troy8170a922012-09-18 15:40:25 -0400979 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500980 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500981 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 -0400982 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500983 start_pos = end_pos + 1;
984 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400985 }
986 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400987
988 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500989 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400990 return false;
991 }
bigbiffce8f83c2015-12-12 18:30:21 -0500992 if (adbbackup) {
993 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
994 return false;
995 }
996 }
997 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600998 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500999 part_settings.progress = &progress;
1000
Ethan Yonker74db1572015-10-28 12:44:49 -05001001 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
1002 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001003 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1004 if (storage != NULL) {
1005 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -05001006 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001007 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001008 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -04001009 return false;
1010 }
bigbiffbf1d6722015-02-14 16:25:59 -05001011
Matt Mowerbfccfb82016-04-25 23:22:31 -05001012 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -05001013
1014 if (adbbackup)
1015 disable_free_space_check = true;
1016
bigbiffbf1d6722015-02-14 16:25:59 -05001017 if (!disable_free_space_check) {
1018 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1019 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001020 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001021 return false;
1022 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001023 }
bigbiffce8f83c2015-12-12 18:30:21 -05001024 part_settings.img_bytes_remaining = part_settings.img_bytes;
1025 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001026
Ethan Yonker74db1572015-10-28 12:44:49 -05001027 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001028
1029 int is_decrypted = 0;
1030 int is_encrypted = 0;
1031
1032 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1033 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1034 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1035 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1036 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1037 gui_err("fail_backup_folder=Failed to make backup folder.");
1038 return false;
1039 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001040 }
1041
Dees_Troy2673cec2013-04-02 20:22:16 +00001042 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001043
Dees_Troya13d74f2013-03-24 08:54:55 -05001044 start_pos = 0;
1045 end_pos = Backup_List.find(";", start_pos);
1046 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001047 if (stop_backup.get_value() != 0)
1048 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001049 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001050 part_settings.Part = Find_Partition_By_Path(backup_path);
1051 if (part_settings.Part != NULL) {
1052 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001053 return false;
1054 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001055 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 -05001056 }
1057 start_pos = end_pos + 1;
1058 end_pos = Backup_List.find(";", start_pos);
1059 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001060
1061 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001062 if (part_settings.img_time == 0)
1063 part_settings.img_time = 1;
1064 if (part_settings.file_time == 0)
1065 part_settings.file_time = 1;
1066 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1067 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001068
bigbiffce8f83c2015-12-12 18:30:21 -05001069 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001070 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 -05001071 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001072 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 -04001073
1074 time(&total_stop);
1075 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001076
1077 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001078 if (!adbbackup) {
1079 TWExclude twe;
1080 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1081 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001082 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001083 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001084
bigbiffce8f83c2015-12-12 18:30:21 -05001085 int prev_img_bps = 0, use_compression = 0;
1086 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001087 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001088 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001089 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001090
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001091 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001092 if (use_compression)
1093 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001094 else
Dees_Troy093b7642012-09-21 15:59:38 -04001095 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1096 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001097 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001098
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001099 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001100 if (use_compression)
1101 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1102 else
1103 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1104
Ethan Yonker74db1572015-10-28 12:44:49 -05001105 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001106 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001107 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001108 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001109 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001110 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001111 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001112
1113 if (part_settings.adbbackup) {
1114 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1115 return false;
1116 }
1117 }
1118 part_settings.adbbackup = false;
1119 DataManager::SetValue("tw_enable_adb_backup", 0);
1120
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001121 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001122}
1123
bigbiffce8f83c2015-12-12 18:30:21 -05001124bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001125 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001126
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001127 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001128 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1129 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001130 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1131 }
1132
Tom Hite5a926722014-09-15 01:31:03 +00001133 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001134
Dees_Troy4a2a1262012-09-18 09:33:47 -04001135 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001136
bigbiffce8f83c2015-12-12 18:30:21 -05001137 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001138 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001139 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001140 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001141 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001142 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001143 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001144
1145 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001146 part_settings->Part = *subpart;
1147 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1148 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001149 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001150 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001151 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001152 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001153 }
Dees_Troy8170a922012-09-18 15:40:25 -04001154 }
1155 }
1156 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001157 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001158 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001159 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1160
Dees_Troy4a2a1262012-09-18 09:33:47 -04001161 return true;
1162}
1163
Ethan Yonker472f5062016-02-25 13:47:30 -06001164int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001165 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001166 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001167
Dees_Troy4a2a1262012-09-18 09:33:47 -04001168 time_t rStart, rStop;
1169 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001170 string Restore_List, restore_path;
1171 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001172
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001173 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001174 part_settings.Part = NULL;
1175 part_settings.partition_count = 0;
1176 part_settings.total_restore_size = 0;
1177 part_settings.adbbackup = false;
1178 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001179
Ethan Yonker74db1572015-10-28 12:44:49 -05001180 gui_msg("restore_started=[RESTORE STARTED]");
1181 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001182
Dees_Troy4a2a1262012-09-18 09:33:47 -04001183 if (!Mount_Current_Storage(true))
1184 return false;
1185
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001186 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1187 if (check_digest > 0) {
1188 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1189 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1190 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001191 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001192 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001193 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001194 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001195 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001196
Dees_Troya13d74f2013-03-24 08:54:55 -05001197 if (!Restore_List.empty()) {
1198 end_pos = Restore_List.find(";", start_pos);
1199 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1200 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001201 part_settings.Part = Find_Partition_By_Path(restore_path);
1202 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001203 if (part_settings.Part->Mount_Read_Only) {
1204 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 -05001205 return false;
1206 }
bigbiffce8f83c2015-12-12 18:30:21 -05001207
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001208 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1209
bigbiff4a60bee2021-01-23 14:08:03 -05001210 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1211 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1212 }
1213
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001214 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001215 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001216 part_settings.partition_count++;
1217 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1218 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001219 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001220 std::vector<TWPartition*>::iterator subpart;
1221
1222 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001223 part_settings.Part = *subpart;
1224 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001225 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001226 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001227 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001228 }
1229 }
1230 }
1231 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001232 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001233 }
1234 start_pos = end_pos + 1;
1235 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001236 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001237 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001238
bigbiffce8f83c2015-12-12 18:30:21 -05001239 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001240 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001241 return false;
1242 }
1243
bigbiffce8f83c2015-12-12 18:30:21 -05001244 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1245 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 +00001246 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001247 ProgressTracking progress(part_settings.total_restore_size);
1248 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001249
Dees_Troya13d74f2013-03-24 08:54:55 -05001250 start_pos = 0;
1251 if (!Restore_List.empty()) {
1252 end_pos = Restore_List.find(";", start_pos);
1253 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1254 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001255
1256 part_settings.Part = Find_Partition_By_Path(restore_path);
1257 if (part_settings.Part != NULL) {
1258 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001259 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001260 return false;
1261 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001262 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001263 }
1264 start_pos = end_pos + 1;
1265 end_pos = Restore_List.find(";", start_pos);
1266 }
1267 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001268 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001269 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001270 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001271 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001272 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001273 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001274 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
bigbiff8f5fad32021-11-03 20:39:02 -04001275 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
1276 if (Decrypt_Data && Decrypt_Data->Is_Encrypted)
1277 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 -05001278 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001279
Dees_Troy63c8df72012-09-10 14:02:05 -04001280 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001281}
1282
1283void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001284 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001285 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001286 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001287 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001288
1289 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001290 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1291 vector<string> adb_files;
1292 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1293 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1294 string adb_restore_file = adb_files.at(i);
1295 std::size_t pos = adb_restore_file.find_first_of(".");
1296 std::string path = "/" + adb_restore_file.substr(0, pos);
1297 Restore_List = path + ";";
1298 TWPartition* Part = Find_Partition_By_Path(path);
1299 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1300 adbbackup = true;
1301 }
1302 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001303 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001304 else {
1305 DIR* d;
1306 d = opendir(Restore_Name.c_str());
1307 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001308 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001309 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1310 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001311 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001312
1313 struct dirent* de;
1314 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001315 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001316 // Strip off three components
1317 char str[256];
1318 char* label;
1319 char* fstype = NULL;
1320 char* extn = NULL;
1321 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001322
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001323 strcpy(str, de->d_name);
1324 if (strlen(str) <= 2)
1325 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001326
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001327 if (get_date) {
1328 char file_path[255];
1329 struct stat st;
1330
1331 strcpy(file_path, Restore_Name.c_str());
1332 strcat(file_path, "/");
1333 strcat(file_path, str);
1334 stat(file_path, &st);
1335 string backup_date = ctime((const time_t*)(&st.st_mtime));
1336 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1337 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001338 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001339
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001340 label = str;
1341 ptr = label;
1342 while (*ptr && *ptr != '.') ptr++;
1343 if (*ptr == '.')
1344 {
1345 *ptr = 0x00;
1346 ptr++;
1347 fstype = ptr;
1348 }
1349 while (*ptr && *ptr != '.') ptr++;
1350 if (*ptr == '.')
1351 {
1352 *ptr = 0x00;
1353 ptr++;
1354 extn = ptr;
1355 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001356
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001357 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1358 int extnlength = strlen(extn);
1359 if (extnlength != 3 && extnlength != 6) continue;
1360 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1361 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001362
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001363 if (check_encryption) {
1364 string filename = Restore_Name + "/";
1365 filename += de->d_name;
1366 if (TWFunc::Get_File_Type(filename) == 2) {
1367 LOGINFO("'%s' is encrypted\n", filename.c_str());
1368 DataManager::SetValue("tw_restore_encrypted", 1);
1369 }
1370 }
1371 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1372
1373 TWPartition* Part = Find_Partition_By_Path(label);
1374 if (Part == NULL)
1375 {
1376 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1377 continue;
1378 }
1379
1380 Part->Backup_FileName = de->d_name;
1381 if (strlen(extn) > 3) {
1382 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1383 }
1384
dianlujitaob76a73a2020-04-30 20:33:20 +08001385 if (!Part->Is_SubPartition) {
1386 if (Part->Backup_Path == Get_Android_Root_Path())
1387 Restore_List += "/system;";
1388 else
1389 Restore_List += Part->Backup_Path + ";";
1390 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001391 }
1392 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001393 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001394
1395 if (adbbackup) {
1396 Restore_List = "ADB_Backup;";
1397 adbbackup = false;
1398 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001399
Dees_Troya13d74f2013-03-24 08:54:55 -05001400 // Set the final value
1401 DataManager::SetValue("tw_restore_list", Restore_List);
1402 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001403 return;
1404}
1405
1406int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001407 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301408 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001409 int ret = false;
1410 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001411 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001412
dianlujitaob76a73a2020-04-30 20:33:20 +08001413 if (Local_Path == "/system")
1414 Local_Path = Get_Android_Root_Path();
bigbiffaed1bdf2021-08-03 18:21:39 -04001415 if (Path == "/cache") {
1416 TWPartition* cache = Find_Partition_By_Path("/cache");
1417 if (cache == nullptr) {
1418 TWPartition* dat = Find_Partition_By_Path("/data");
1419 if (dat) {
1420 dat->Wipe_Data_Cache();
1421 found = true;
1422 }
1423 }
1424 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001425 // Iterate through all partitions
1426 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001427 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301428 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1429 (*iter)->Find_Actual_Block_Device();
1430 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1431 {
1432 (*iter1)->Find_Actual_Block_Device();
1433 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1434 (*iter1)->UnMount(false);
1435 }
Dees_Troye58d5262012-09-21 12:27:57 -04001436 if (Path == "/and-sec")
1437 ret = (*iter)->Wipe_AndSec();
1438 else
1439 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001440 found = true;
1441 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1442 (*iter)->Wipe();
1443 }
1444 }
1445 if (found) {
1446 return ret;
1447 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001448 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 -04001449 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001450}
1451
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001452int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1453 std::vector<TWPartition*>::iterator iter;
1454 int ret = false;
1455 bool found = false;
1456 string Local_Path = TWFunc::Get_Root_Path(Path);
1457
1458 // Iterate through all partitions
1459 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1460 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1461 if (Path == "/and-sec")
1462 ret = (*iter)->Wipe_AndSec();
1463 else
1464 ret = (*iter)->Wipe(New_File_System);
1465 found = true;
1466 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1467 (*iter)->Wipe(New_File_System);
1468 }
1469 }
1470 if (found) {
1471 return ret;
1472 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001473 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 -05001474 return false;
1475}
1476
Dees_Troy51a0e822012-09-05 15:24:24 -04001477int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001478 std::vector<TWPartition*>::iterator iter;
1479 int ret = true;
1480
1481 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001482 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001483#ifdef TW_OEM_BUILD
1484 if ((*iter)->Mount_Point == "/data") {
1485 if (!(*iter)->Wipe_Encryption())
1486 ret = false;
1487 } else {
1488#endif
1489 if (!(*iter)->Wipe())
1490 ret = false;
1491#ifdef TW_OEM_BUILD
1492 }
1493#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001494 } else if ((*iter)->Has_Android_Secure) {
1495 if (!(*iter)->Wipe_AndSec())
1496 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001497 }
1498 }
bigbiffad58e1b2020-07-06 20:24:34 -04001499 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001500 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001501}
1502
Dees_Troy38bd7602012-09-14 13:33:53 -04001503int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1504 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001505 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001506
1507 if (!Mount_By_Path("/data", true))
1508 return false;
1509
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001510 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001511
bigbiff25d25b92020-06-19 16:07:38 -04001512 std::string cacheDir = TWFunc::get_log_dir();
1513 if (cacheDir == CACHE_LOGS_DIR) {
1514 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1515 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001516 }
1517 dir.push_back(cacheDir + "dalvik-cache");
1518 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001519 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001520
Dees_Troy38bd7602012-09-14 13:33:53 -04001521 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001522 if (sdext && sdext->Is_Present && sdext->Mount(false))
1523 {
1524 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1525 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001526 dir.push_back("/sd-ext/dalvik-cache");
1527 }
1528 }
1529
bigbiff25d25b92020-06-19 16:07:38 -04001530 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001531 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1532 } else {
1533 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1534 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001535 for (unsigned i = 0; i < dir.size(); ++i) {
1536 if (stat(dir.at(i).c_str(), &st) == 0) {
1537 TWFunc::removeDir(dir.at(i), false);
1538 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001539 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001540 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001541
bigbiff25d25b92020-06-19 16:07:38 -04001542 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001543 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1544 } else {
1545 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1546 }
1547
Dees_Troy38bd7602012-09-14 13:33:53 -04001548 return true;
1549}
1550
1551int TWPartitionManager::Wipe_Rotate_Data(void) {
1552 if (!Mount_By_Path("/data", true))
1553 return false;
1554
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001555 unlink("/data/misc/akmd*");
1556 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001557 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001558 return true;
1559}
1560
1561int TWPartitionManager::Wipe_Battery_Stats(void) {
1562 struct stat st;
1563
1564 if (!Mount_By_Path("/data", true))
1565 return false;
1566
1567 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001568 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001569 } else {
1570 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001571 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001572 }
1573 return true;
1574}
1575
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001576int TWPartitionManager::Wipe_Android_Secure(void) {
1577 std::vector<TWPartition*>::iterator iter;
1578 int ret = false;
1579 bool found = false;
1580
1581 // Iterate through all partitions
1582 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1583 if ((*iter)->Has_Android_Secure) {
1584 ret = (*iter)->Wipe_AndSec();
1585 found = true;
1586 }
1587 }
1588 if (found) {
1589 return ret;
1590 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001591 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001592 }
1593 return false;
1594}
1595
Dees_Troy38bd7602012-09-14 13:33:53 -04001596int TWPartitionManager::Format_Data(void) {
1597 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffcfa875c2021-06-20 16:20:27 -04001598 TWPartition* metadata = Find_Partition_By_Path("/metadata");
1599 if (metadata != NULL)
1600 metadata->UnMount(false);
Dees_Troy38bd7602012-09-14 13:33:53 -04001601
1602 if (dat != NULL) {
bigbiffab76bd72021-10-11 10:17:48 -04001603 if (android::base::GetBoolProperty("ro.virtual_ab.enabled", false)) {
bigbiffcfa875c2021-06-20 16:20:27 -04001604#ifndef TW_EXCLUDE_APEX
1605 twrpApex apex;
1606 apex.Unmount();
1607#endif
1608 if (metadata != NULL)
1609 metadata->Mount(true);
bigbiffd21252f2021-09-18 15:56:32 -04001610 if (!Check_Pending_Merges())
bigbiffcfa875c2021-06-20 16:20:27 -04001611 return false;
1612 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001613 return dat->Wipe_Encryption();
1614 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001615 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001616 return false;
1617 }
1618 return false;
1619}
1620
1621int TWPartitionManager::Wipe_Media_From_Data(void) {
1622 TWPartition* dat = Find_Partition_By_Path("/data");
1623
1624 if (dat != NULL) {
1625 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001626 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001627 return false;
1628 }
1629 if (!dat->Mount(true))
1630 return false;
1631
Ethan Yonker74db1572015-10-28 12:44:49 -05001632 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001633 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001634 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001635 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001636 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001637 return true;
1638 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001639 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001640 return false;
1641 }
1642 return false;
1643}
1644
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001645int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1646 std::vector<TWPartition*>::iterator iter;
1647 int ret = false;
1648 bool found = false;
1649 string Local_Path = TWFunc::Get_Root_Path(Path);
1650
1651 if (Local_Path == "/tmp" || Local_Path == "/")
1652 return true;
1653
1654 // Iterate through all partitions
1655 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1656 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1657 ret = (*iter)->Repair();
1658 found = true;
1659 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1660 (*iter)->Repair();
1661 }
1662 }
1663 if (found) {
1664 return ret;
1665 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001666 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 -05001667 } else {
1668 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1669 }
1670 return false;
1671}
1672
Ethan Yonkera2719152015-05-28 09:44:41 -05001673int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1674 std::vector<TWPartition*>::iterator iter;
1675 int ret = false;
1676 bool found = false;
1677 string Local_Path = TWFunc::Get_Root_Path(Path);
1678
1679 if (Local_Path == "/tmp" || Local_Path == "/")
1680 return true;
1681
1682 // Iterate through all partitions
1683 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1684 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1685 ret = (*iter)->Resize();
1686 found = true;
1687 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1688 (*iter)->Resize();
1689 }
1690 }
1691 if (found) {
1692 return ret;
1693 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001694 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 -05001695 } else {
1696 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1697 }
1698 return false;
1699}
1700
Dees_Troy51a0e822012-09-05 15:24:24 -04001701void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001702 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001703 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001704
Ethan Yonker74db1572015-10-28 12:44:49 -05001705 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001706 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001707 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001708 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001709 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001710 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1711 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001712 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001713 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1714 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1715 } else if ((*iter)->Mount_Point == "/cache") {
1716 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1717 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1718 } else if ((*iter)->Mount_Point == "/sd-ext") {
1719 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1720 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1721 if ((*iter)->Backup_Size == 0) {
1722 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1723 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1724 } else
1725 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001726 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001727 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001728 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001729 if ((*iter)->Backup_Size == 0) {
1730 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1731 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1732 } else
1733 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001734 } else if ((*iter)->Mount_Point == "/boot") {
1735 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1736 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1737 if ((*iter)->Backup_Size == 0) {
1738 DataManager::SetValue("tw_has_boot_partition", 0);
1739 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1740 } else
1741 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001742 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001743 } else {
1744 // Handle unmountable partitions in case we reset defaults
1745 if ((*iter)->Mount_Point == "/boot") {
1746 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1747 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1748 if ((*iter)->Backup_Size == 0) {
1749 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1750 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1751 } else
1752 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1753 } else if ((*iter)->Mount_Point == "/recovery") {
1754 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1755 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1756 if ((*iter)->Backup_Size == 0) {
1757 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1758 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1759 } else
1760 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001761 } else if ((*iter)->Mount_Point == "/data") {
1762 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001763 }
Dees_Troy51127312012-09-08 13:08:49 -04001764 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001765 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001766 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001767 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1768 string current_storage_path = DataManager::GetCurrentStoragePath();
1769 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001770 if (FreeStorage != NULL) {
1771 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001772 if (!FreeStorage->Mount(false)) {
1773 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1774 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1775 } else {
1776 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001777 }
1778 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001779 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001780 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001781 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001782 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001783 return;
1784}
1785
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001786void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1787 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001788
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001789 if (dat != NULL) {
bigbiffaed1bdf2021-08-03 18:21:39 -04001790 // reparse for /cache/recovery/command
1791 static constexpr const char* COMMAND_FILE = "/data/cache/command";
1792 if (TWFunc::Path_Exists(COMMAND_FILE)) {
1793 startupArgs startup;
1794 std::string content;
1795 TWFunc::read_file(COMMAND_FILE, content);
1796 std::vector<std::string> args = {content};
1797 startup.processRecoveryArgs(args, 0);
1798 }
1799
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001800 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1801 dat->Is_Decrypted = true;
1802 if (!Block_Device.empty()) {
1803 dat->Decrypted_Block_Device = Block_Device;
1804 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1805 } else {
1806 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1807 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001808 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001809 dat->Setup_File_System(false);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001810 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 -06001811
Noah Jacobson81d638d2019-04-28 00:10:07 -04001812 sleep(1); // Sleep for a bit so that the device will be ready
me-cafebabe09649612022-06-10 21:53:31 +08001813
1814 // Mount only /data
1815 dat->Symlink_Path = ""; // Not to let it to bind mount /data/media again
1816 if (!dat->Mount(false)) {
1817 LOGERR("Unable to mount /data after decryption");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001818 }
me-cafebabe09649612022-06-10 21:53:31 +08001819
1820 if (dat->Has_Data_Media && TWFunc::Path_Exists("/data/media/0")) {
1821 dat->Storage_Path = "/data/media/0";
1822 } else {
1823 dat->Storage_Path = "/data/media";
1824 }
1825 dat->Symlink_Path = dat->Storage_Path;
1826 DataManager::SetValue("tw_storage_path", dat->Symlink_Path);
Mohd Farazf9231102022-06-18 22:51:55 +02001827 DataManager::SetValue("tw_settings_path", TW_STORAGE_PATH);
me-cafebabe09649612022-06-10 21:53:31 +08001828 LOGINFO("New storage path after decryption: %s\n", dat->Storage_Path.c_str());
1829
epicXa721f952021-01-04 13:01:31 +05301830 DataManager::LoadTWRPFolderInfo();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001831 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001832 Output_Partition(dat);
bigbiff4fa02b52021-12-30 17:01:44 -05001833 if (!android::base::StartsWith(dat->Actual_Block_Device, "/dev/block/mmcblk")) {
1834 if (!dat->Bind_Mount(false))
1835 LOGERR("Unable to bind mount /sdcard to %s\n", dat->Storage_Path.c_str());
1836 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001837 } else
1838 LOGERR("Unable to locate data partition.\n");
1839}
1840
Noah Jacobson81d638d2019-04-28 00:10:07 -04001841void TWPartitionManager::Parse_Users() {
1842#ifdef TW_INCLUDE_FBE
1843 char user_check_result[PROPERTY_VALUE_MAX];
1844 for (int userId = 0; userId <= 9999; userId++) {
1845 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1846 property_get(prop.c_str(), user_check_result, "-1");
1847 if (strcmp(user_check_result, "-1") != 0) {
1848 if (userId < 0 || userId > 9999) {
1849 LOGINFO("Incorrect user id %d\n", userId);
1850 continue;
1851 }
1852 struct users_struct user;
1853 user.userId = to_string(userId);
1854
1855 // Attempt to get name of user. Fallback to user ID if this fails.
Darth98f775972022-08-05 09:39:03 +01001856 std::string path = "/data/system/users/" + to_string(userId) + ".xml";
1857 if (!TWFunc::Check_Xml_Format(path)) {
1858 string oldpath = path;
1859 if (TWFunc::abx_to_xml(oldpath, path)) {
1860 LOGINFO("Android 12+: '%s' has been converted into plain text xml (for user %s).\n", oldpath.c_str(), user.userId.c_str());
1861 }
1862 }
1863 char* userFile = PageManager::LoadFileToBuffer(path, NULL);
me-cafebabec46981d2022-07-29 01:54:43 +08001864 if (userFile == NULL) {
1865 user.userName = to_string(userId);
bigbiffa957f072021-03-07 18:20:29 -05001866 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001867 else {
me-cafebabec46981d2022-07-29 01:54:43 +08001868 xml_document<> *userXml = new xml_document<>();
1869 userXml->parse<0>(userFile);
1870 xml_node<>* userNode = userXml->first_node("user");
1871 if (userNode == nullptr) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001872 user.userName = to_string(userId);
me-cafebabec46981d2022-07-29 01:54:43 +08001873 } else {
1874 xml_node<>* nameNode = userNode->first_node("name");
1875 if (nameNode == nullptr)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001876 user.userName = to_string(userId);
me-cafebabec46981d2022-07-29 01:54:43 +08001877 else {
1878 string userName = nameNode->value();
1879 user.userName = userName + " (" + to_string(userId) + ")";
Noah Jacobson81d638d2019-04-28 00:10:07 -04001880 }
1881 }
1882 }
1883
1884 string filename;
bigbiffdf53b6c2022-01-17 19:31:52 -05001885 user.type = android::keystore::Get_Password_Type(userId, filename);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001886
1887 user.isDecrypted = false;
1888 if (strcmp(user_check_result, "1") == 0)
1889 user.isDecrypted = true;
1890 Users_List.push_back(user);
1891 }
1892 }
1893 Check_Users_Decryption_Status();
1894#endif
1895}
1896
1897std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
1898 return &Users_List;
1899}
1900
1901void TWPartitionManager::Mark_User_Decrypted(int userID) {
1902#ifdef TW_INCLUDE_FBE
1903 std::vector<users_struct>::iterator iter;
1904 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1905 if (atoi((*iter).userId.c_str()) == userID) {
1906 (*iter).isDecrypted = true;
1907 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
1908 property_set(user_prop_decrypted.c_str(), "1");
1909 break;
1910 }
1911 }
1912 Check_Users_Decryption_Status();
1913#endif
1914}
1915
1916void TWPartitionManager::Check_Users_Decryption_Status() {
1917#ifdef TW_INCLUDE_FBE
1918 int all_is_decrypted = 1;
1919 std::vector<users_struct>::iterator iter;
1920 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1921 if (!(*iter).isDecrypted) {
1922 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
1923 all_is_decrypted = 0;
1924 break;
1925 }
1926 }
1927 if (all_is_decrypted == 1) {
1928 LOGINFO("All found users are decrypted.\n");
1929 DataManager::SetValue("tw_all_users_decrypted", "1");
1930 property_set("twrp.all.users.decrypted", "true");
1931 } else
1932 DataManager::SetValue("tw_all_users_decrypted", "0");
1933#endif
1934}
1935
1936int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001937#ifdef TW_INCLUDE_CRYPTO
Captain Throwback37c3aef2021-10-06 11:38:18 -04001938 char crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001939 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001940
Ethan Yonker253368a2014-11-25 15:00:52 -06001941 // Mount any partitions that need to be mounted for decrypt
1942 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1943 if ((*iter)->Mount_To_Decrypt) {
1944 (*iter)->Mount(true);
1945 }
a39552696ff55ce2013-01-08 16:14:56 +00001946 }
oshmouna82a7542018-04-10 17:45:55 +02001947 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001948
Captain Throwback37c3aef2021-10-06 11:38:18 -04001949 Set_Crypto_State();
1950 Set_Crypto_Type("block");
Ethan Yonkera1de1492015-11-04 11:58:27 -06001951
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001952 if (DataManager::GetIntValue(TW_IS_FBE)) {
1953#ifdef TW_INCLUDE_FBE
1954 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1955 return -1;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001956
1957 bool user_need_decrypt = false;
1958 std::vector<users_struct>::iterator iter;
1959 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1960 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
1961 user_need_decrypt = true;
1962 }
1963 }
1964 if (!user_need_decrypt) {
1965 LOGINFO("User %d does not require decryption\n", user_id);
1966 return 0;
1967 }
1968
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001969 int retry_count = 10;
1970 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001971 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
1972 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
bigbiffdf53b6c2022-01-17 19:31:52 -05001973 if (android::keystore::Decrypt_User(user_id, Password)) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001974 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
1975 Mark_User_Decrypted(user_id);
1976 if (user_id == 0) {
1977 // When decrypting user 0 also try all other users
1978 std::vector<users_struct>::iterator iter;
1979 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1980 if ((*iter).userId == "0" || (*iter).isDecrypted)
1981 continue;
1982
1983 int tmp_user_id = atoi((*iter).userId.c_str());
1984 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
bigbiffdf53b6c2022-01-17 19:31:52 -05001985 if (android::keystore::Decrypt_User(tmp_user_id, Password) ||
1986 (Password != "!" && android::keystore::Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
Noah Jacobson81d638d2019-04-28 00:10:07 -04001987 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
1988 Mark_User_Decrypted(tmp_user_id);
1989 } else {
1990 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
1991 }
1992 }
1993 Post_Decrypt("");
1994 }
1995
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001996 return 0;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001997 } else {
1998 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001999 }
2000#else
2001 LOGERR("FBE support is not present\n");
2002#endif
2003 return -1;
2004 }
2005
Noah Jacobson81d638d2019-04-28 00:10:07 -04002006 char isdecrypteddata[PROPERTY_VALUE_MAX];
2007 property_get("twrp.decrypt.done", isdecrypteddata, "");
2008 if (strcmp(isdecrypteddata, "true") == 0) {
2009 LOGINFO("Data has no decryption required\n");
2010 return 0;
2011 }
2012
Ethan Yonkerddb63e22017-01-19 14:01:57 -06002013 int pwret = -1;
2014 pid_t pid = fork();
2015 if (pid < 0) {
2016 LOGERR("fork failed\n");
2017 return -1;
2018 } else if (pid == 0) {
2019 // Child process
2020 char cPassword[255];
2021 strcpy(cPassword, Password.c_str());
2022 int ret = cryptfs_check_passwd(cPassword);
2023 exit(ret);
2024 } else {
2025 // Parent
2026 int status;
2027 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
2028 pwret = -1;
2029 else
2030 pwret = WEXITSTATUS(status) ? -1 : 0;
2031 }
a39552696ff55ce2013-01-08 16:14:56 +00002032
Ethan Yonker253368a2014-11-25 15:00:52 -06002033 // Unmount any partitions that were needed for decrypt
2034 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2035 if ((*iter)->Mount_To_Decrypt) {
2036 (*iter)->UnMount(false);
2037 }
2038 }
oshmouna82a7542018-04-10 17:45:55 +02002039 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06002040
a39552696ff55ce2013-01-08 16:14:56 +00002041 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002042 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002043 return -1;
2044 }
a39552696ff55ce2013-01-08 16:14:56 +00002045
Dees_Troy5bf43922012-09-07 16:07:55 -04002046 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
2047 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002048 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04002049 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002050 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04002051 }
2052 return 0;
2053#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002054 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002055 return -1;
2056#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002057 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04002058}
2059
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002060int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002061 std::vector<TWPartition*>::iterator iter;
2062 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2063 if ((*iter)->Has_Data_Media) {
2064 if ((*iter)->Mount(true)) {
2065 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
2066 return -1;
2067 }
2068 }
2069 }
Dees_Troy1a650e62012-10-19 20:54:32 -04002070 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05002071 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002072 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002073}
2074
Ethan Yonker66a19492015-12-10 10:19:45 -06002075TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002076 std::vector<TWPartition*>::iterator iter = Partitions.begin();
2077
2078 if (!Path.empty()) {
2079 string Search_Path = TWFunc::Get_Root_Path(Path);
2080 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06002081 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002082 iter++;
2083 break;
2084 }
2085 }
2086 }
2087
2088 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002089 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
2090 // do nothing, do not return this type of partition
2091 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002092 return (*iter);
2093 }
2094 }
2095
2096 return NULL;
2097}
2098
Dees_Troyd21618c2012-10-14 18:48:49 -04002099int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04002100 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
2101
2102 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002103 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2104 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 -04002105 return false;
2106 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002107 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2108 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002109 return false;
2110
bigbiff22851b92021-09-01 16:46:57 -04002111 if (!TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002112 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002113 return false;
2114 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002115 return true;
2116}
2117
Dees_Troy8170a922012-09-18 15:40:25 -04002118int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002119 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002120 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002121
Ethan Yonker47360be2014-04-01 10:34:34 -05002122 string Lun_File_str = CUSTOM_LUN_FILE;
2123 size_t found = Lun_File_str.find("%");
2124 if (found != string::npos) {
2125 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2126 if (TWFunc::Path_Exists(lun_file))
2127 has_multiple_lun = true;
2128 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002129 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002130 if (!has_multiple_lun) {
2131 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2132 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2133 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002134 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002135 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002136 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2137 goto error_handle;
2138 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002139 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002140 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002141 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002142 }
2143 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002144 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002145 }
Dees_Troy8170a922012-09-18 15:40:25 -04002146 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002147 LOGINFO("Device has multiple lun files\n");
2148 TWPartition* Mount1;
2149 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002150 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002151 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002152 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002153 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2154 goto error_handle;
2155 }
Matt Moweree717062014-04-26 01:46:46 -05002156 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002157 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002158 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002159 Open_Lun_File(Mount2->Mount_Point, lun_file);
nkk717aa6fc62017-03-24 18:28:03 +02002160 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2161 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data") {
2162 Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002163 }
nkk717aa6fc62017-03-24 18:28:03 +02002164 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2165 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data" && !Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002166 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002167 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002168 }
Dees_Troy8170a922012-09-18 15:40:25 -04002169 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002170 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002171 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002172 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002173error_handle:
2174 if (mtp_was_enabled)
2175 if (!Enable_MTP())
2176 Disable_MTP();
2177 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002178}
2179
2180int TWPartitionManager::usb_storage_disable(void) {
bigbiff22851b92021-09-01 16:46:57 -04002181 int index, ret = 0;
Dees_Troy2673cec2013-04-02 20:22:16 +00002182 char lun_file[255], ch[2] = {0, 0};
2183 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002184
2185 for (index=0; index<2; index++) {
2186 sprintf(lun_file, CUSTOM_LUN_FILE, index);
bigbiff22851b92021-09-01 16:46:57 -04002187 if (!TWFunc::write_to_file(lun_file, str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002188 break;
bigbiff22851b92021-09-01 16:46:57 -04002189 ret = -1;
Dees_Troy8170a922012-09-18 15:40:25 -04002190 }
Dees_Troy8170a922012-09-18 15:40:25 -04002191 }
Dees_Troye58d5262012-09-21 12:27:57 -04002192 Mount_All_Storage();
2193 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002194 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002195 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002196 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002197 if (mtp_was_enabled)
2198 if (!Enable_MTP())
2199 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002200 if (ret < 0 && index == 0) {
2201 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2202 return false;
2203 } else {
2204 return true;
2205 }
Dees_Troy8170a922012-09-18 15:40:25 -04002206 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002207}
2208
2209void TWPartitionManager::Mount_All_Storage(void) {
2210 std::vector<TWPartition*>::iterator iter;
2211
2212 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2213 if ((*iter)->Is_Storage)
2214 (*iter)->Mount(false);
2215 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002216}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002217
Dees_Troyd0384ef2012-10-12 12:15:42 -04002218void TWPartitionManager::UnMount_Main_Partitions(void) {
2219 // Unmounts system and data if data is not data/media
2220 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002221 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002222
Mohd Faraze3948ec2020-08-14 01:40:59 +00002223 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002224
Mohd Faraze3948ec2020-08-14 01:40:59 +00002225 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2226 UnMount_By_Path (Get_Android_Root_Path(), true);
2227 Partition = Find_Partition_By_Path ("/product");
2228 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002229 if (!datamedia)
2230 UnMount_By_Path("/data", true);
2231
Mohd Faraze3948ec2020-08-14 01:40:59 +00002232 Partition = Find_Partition_By_Path ("/boot");
2233 if (Partition != NULL && Partition->Can_Be_Mounted)
2234 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002235}
2236
Dees_Troy9350b8d2012-09-27 12:38:38 -04002237int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002238 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002239 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 -04002240 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002241
Ethan Yonker74db1572015-10-28 12:44:49 -05002242 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002243
2244 // Locate and validate device to partition
2245 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2246
Ethan Yonker66a19492015-12-10 10:19:45 -06002247 if (SDCard->Is_Adopted_Storage)
2248 SDCard->Revert_Adopted();
2249
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002250 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002251 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002252 return false;
2253 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002254
2255 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002256 if (!SDCard->UnMount(true))
2257 return false;
2258 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2259 if (SDext != NULL) {
2260 if (!SDext->UnMount(true))
2261 return false;
2262 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002263 char* swappath = getenv("SWAPPATH");
2264 if (swappath != NULL) {
2265 LOGINFO("Unmounting swap at '%s'\n", swappath);
2266 umount(swappath);
2267 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002268
Ethan Yonker483e9f42016-01-11 22:21:18 -06002269 // Determine block device
2270 if (SDCard->Alternate_Block_Device.empty()) {
2271 SDCard->Find_Actual_Block_Device();
2272 Device = SDCard->Actual_Block_Device;
2273 // Just use the root block device
2274 Device.resize(strlen("/dev/block/mmcblkX"));
2275 } else {
2276 Device = SDCard->Alternate_Block_Device;
2277 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002278
2279 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002280 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002281
2282 DataManager::GetValue("tw_sdext_size", ext);
2283 DataManager::GetValue("tw_swap_size", swap);
2284 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2285 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002286 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);
2287
2288 // Determine partition sizes
2289 if (swap == 0 && ext == 0) {
2290 fat_str = "-0";
2291 } else {
2292 memset(temp, 0, sizeof(temp));
2293 sprintf(temp, "%i", fat_size);
2294 fat_str = temp;
2295 fat_str += "MB";
2296 }
2297 if (swap == 0) {
2298 ext_str = "-0";
2299 } else {
2300 memset(temp, 0, sizeof(temp));
2301 sprintf(temp, "%i", ext);
2302 ext_str = "+";
2303 ext_str += temp;
2304 ext_str += "MB";
2305 }
2306
Dees_Troy9350b8d2012-09-27 12:38:38 -04002307 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002308 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002309 return false;
2310 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002311
Ethan Yonker74db1572015-10-28 12:44:49 -05002312 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002313 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002314 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002315 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002316 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002317 Update_System_Details();
2318 return false;
2319 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002320 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002321 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 +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.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002325 return false;
2326 }
2327 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002328 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002329 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002330 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002331 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002332 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002333 Update_System_Details();
2334 return false;
2335 }
2336 }
2337 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002338 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002339 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 +00002340 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002341 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002342 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002343 Update_System_Details();
2344 return false;
2345 }
2346 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002347
2348 // Convert GPT to MBR
2349 Command = "sgdisk --gpttombr " + Device;
2350 if (TWFunc::Exec_Cmd(Command) != 0)
2351 LOGINFO("Failed to covert partition GPT to MBR\n");
2352
2353 // Tell the kernel to rescan the partition table
2354 int fd = open(Device.c_str(), O_RDONLY);
2355 ioctl(fd, BLKRRPART, 0);
2356 close(fd);
2357
2358 string format_device = Device;
2359 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2360 format_device += "p";
2361
2362 // Format new partitions to proper file system
2363 if (fat_size > 0) {
2364 Command = "mkfs.fat " + format_device + "1";
2365 TWFunc::Exec_Cmd(Command);
2366 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002367 if (ext > 0) {
2368 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002369 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2370 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2371 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2372 TWFunc::Exec_Cmd(Command);
2373 } else {
2374 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002375 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002376 }
2377 if (swap > 0) {
2378 Command = "mkswap " + format_device;
2379 if (ext > 0)
2380 Command += "3";
2381 else
2382 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002383 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002384 }
2385
Ethan Yonker483e9f42016-01-11 22:21:18 -06002386 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2387 if (SDCard->Mount(true)) {
2388 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2389 mkdir(TWRP_Folder.c_str(), 0777);
2390 DataManager::Flush();
2391 }
2392
Dees_Troy9350b8d2012-09-27 12:38:38 -04002393 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002394 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002395 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002396}
Dees_Troya13d74f2013-03-24 08:54:55 -05002397
2398void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2399 std::vector<TWPartition*>::iterator iter;
2400 if (ListType == "mount") {
2401 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002402 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002403 struct PartitionList part;
2404 part.Display_Name = (*iter)->Display_Name;
2405 part.Mount_Point = (*iter)->Mount_Point;
2406 part.selected = (*iter)->Is_Mounted();
2407 Partition_List->push_back(part);
2408 }
2409 }
2410 } else if (ListType == "storage") {
2411 char free_space[255];
2412 string Current_Storage = DataManager::GetCurrentStoragePath();
2413 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2414 if ((*iter)->Is_Storage) {
2415 struct PartitionList part;
2416 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2417 part.Display_Name = (*iter)->Storage_Name + " (";
2418 part.Display_Name += free_space;
2419 part.Display_Name += "MB)";
2420 part.Mount_Point = (*iter)->Storage_Path;
2421 if ((*iter)->Storage_Path == Current_Storage)
2422 part.selected = 1;
2423 else
2424 part.selected = 0;
2425 Partition_List->push_back(part);
2426 }
2427 }
2428 } else if (ListType == "backup") {
2429 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002430 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002431 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002432 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002433 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002434 Backup_Size = (*iter)->Backup_Size;
2435 if ((*iter)->Has_SubPartition) {
2436 std::vector<TWPartition*>::iterator subpart;
2437
2438 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2439 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2440 Backup_Size += (*subpart)->Backup_Size;
2441 }
2442 }
2443 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002444 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2445 part.Display_Name += backup_size;
2446 part.Display_Name += "MB)";
2447 part.Mount_Point = (*iter)->Backup_Path;
2448 part.selected = 0;
2449 Partition_List->push_back(part);
2450 }
2451 }
2452 } else if (ListType == "restore") {
2453 string Restore_List, restore_path;
2454 TWPartition* restore_part = NULL;
2455
2456 DataManager::GetValue("tw_restore_list", Restore_List);
2457 if (!Restore_List.empty()) {
2458 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2459 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2460 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002461 struct PartitionList part;
2462 if (restore_path.compare("ADB_Backup") == 0) {
2463 part.Display_Name = "ADB Backup";
2464 part.Mount_Point = "ADB Backup";
2465 part.selected = 1;
2466 Partition_List->push_back(part);
2467 break;
2468 }
Dees_Troy59df9262013-06-19 14:53:57 -05002469 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002470 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002471 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002472 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002473 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002474 part.Display_Name = restore_part->Backup_Display_Name;
2475 part.Mount_Point = restore_part->Backup_Path;
2476 part.selected = 1;
2477 Partition_List->push_back(part);
2478 }
2479 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002480 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002481 }
2482 start_pos = end_pos + 1;
2483 end_pos = Restore_List.find(";", start_pos);
2484 }
2485 }
2486 } else if (ListType == "wipe") {
2487 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002488 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002489 dalvik.Mount_Point = "DALVIK";
2490 dalvik.selected = 0;
2491 Partition_List->push_back(dalvik);
2492 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2493 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2494 struct PartitionList part;
2495 part.Display_Name = (*iter)->Display_Name;
2496 part.Mount_Point = (*iter)->Mount_Point;
2497 part.selected = 0;
2498 Partition_List->push_back(part);
2499 }
2500 if ((*iter)->Has_Android_Secure) {
2501 struct PartitionList part;
2502 part.Display_Name = (*iter)->Backup_Display_Name;
2503 part.Mount_Point = (*iter)->Backup_Path;
2504 part.selected = 0;
2505 Partition_List->push_back(part);
2506 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002507 if ((*iter)->Has_Data_Media) {
2508 struct PartitionList datamedia;
2509 datamedia.Display_Name = (*iter)->Storage_Name;
2510 datamedia.Mount_Point = "INTERNAL";
2511 datamedia.selected = 0;
2512 Partition_List->push_back(datamedia);
2513 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002514 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002515 } else if (ListType == "flashimg") {
2516 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2517 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2518 struct PartitionList part;
2519 part.Display_Name = (*iter)->Backup_Display_Name;
2520 part.Mount_Point = (*iter)->Backup_Path;
2521 part.selected = 0;
2522 Partition_List->push_back(part);
2523 }
2524 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002525 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2526 TWPartition* boot = Find_Partition_By_Path("/boot");
2527 if (boot) {
2528 // Allow flashing kernels and ramdisks
2529 struct PartitionList repack_ramdisk;
2530 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2531 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2532 repack_ramdisk.selected = 0;
2533 Partition_List->push_back(repack_ramdisk);
2534 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2535 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2536 repack_kernel.Mount_Point = "/repack_kernel";
2537 repack_kernel.selected = 0;
2538 Partition_List->push_back(repack_kernel);*/
2539 }
2540 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002541 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002542 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002543 }
2544}
2545
2546int TWPartitionManager::Fstab_Processed(void) {
2547 return Partitions.size();
2548}
Dees_Troyd93bda52013-07-03 19:55:19 +00002549
2550void TWPartitionManager::Output_Storage_Fstab(void) {
2551 std::vector<TWPartition*>::iterator iter;
2552 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002553 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002554 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002555
2556 if (cacheDir.empty()) {
2557 LOGINFO("Unable to find cache directory\n");
2558 return;
2559 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002560
bigbiff25d25b92020-06-19 16:07:38 -04002561 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002562 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002563
2564 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002565 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002566 return;
2567 }
2568
2569 // Iterate through all partitions
2570 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2571 if ((*iter)->Is_Storage) {
2572 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2573 strcpy(storage_partition, Temp.c_str());
2574 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2575 }
2576 }
2577 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002578}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002579
2580TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2581{
2582 TWPartition *res = NULL;
2583 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002584 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002585 continue;
2586
Matt Mowera8a89d12016-12-30 18:10:37 -06002587 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002588 return *iter;
2589
Matt Mowera8a89d12016-12-30 18:10:37 -06002590 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002591 res = *iter;
2592 }
2593 return res;
2594}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002595
2596bool TWPartitionManager::Enable_MTP(void) {
2597#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002598 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002599 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002600 return true;
2601 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002602
2603 int mtppipe[2];
2604
2605 if (pipe(mtppipe) < 0) {
2606 LOGERR("Error creating MTP pipe\n");
2607 return false;
2608 }
2609
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002610 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002611 property_get("sys.usb.config", old_value, "");
2612 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002613 char vendor[PROPERTY_VALUE_MAX];
2614 char product[PROPERTY_VALUE_MAX];
2615 property_set("sys.usb.config", "none");
2616 property_get("usb.vendor", vendor, "18D1");
2617 property_get("usb.product.mtpadb", product, "4EE2");
2618 string vendorstr = vendor;
2619 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002620 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2621 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002622 property_set("sys.usb.config", "mtp,adb");
2623 }
Matt Mower653a1702017-02-16 10:38:52 -06002624 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002625 * twrp set tw_mtp_debug 1
2626 */
2627 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002628 mtppid = mtp->forkserver(mtppipe);
2629 if (mtppid) {
2630 close(mtppipe[0]); // Host closes read side
2631 mtp_write_fd = mtppipe[1];
2632 DataManager::SetValue("tw_mtp_enabled", 1);
2633 Add_All_MTP_Storage();
2634 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002635 } else {
2636 close(mtppipe[0]);
2637 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002638 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002639 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002640 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002641#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002642 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002643#endif
2644 DataManager::SetValue("tw_mtp_enabled", 0);
2645 return false;
2646}
2647
Ethan Yonker1b039202015-01-30 10:08:48 -06002648void TWPartitionManager::Add_All_MTP_Storage(void) {
2649#ifdef TW_HAS_MTP
2650 std::vector<TWPartition*>::iterator iter;
2651
2652 if (!mtppid)
2653 return; // MTP is not enabled
2654
2655 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2656 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2657 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2658 }
2659#else
2660 return;
2661#endif
2662}
2663
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002664bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002665 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002666 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002667 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002668 if (strcmp(old_value, "adb") != 0) {
2669 char vendor[PROPERTY_VALUE_MAX];
2670 char product[PROPERTY_VALUE_MAX];
2671 property_set("sys.usb.config", "none");
2672 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002673 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002674 string vendorstr = vendor;
2675 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002676 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2677 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002678 usleep(2000);
2679 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002680#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002681 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002682 LOGINFO("Disabling MTP\n");
2683 int status;
2684 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002685 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002686 // We don't care about the exit value, but this prevents a zombie process
2687 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002688 close(mtp_write_fd);
2689 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002690 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002691#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002692 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002693#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002694 DataManager::SetValue("tw_mtp_enabled", 0);
2695 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002696#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002697 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002698}
Ethan Yonker726a0202014-12-16 20:01:38 -06002699
2700TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2701 std::vector<TWPartition*>::iterator iter;
2702
2703 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2704 if ((*iter)->MTP_Storage_ID == Storage_ID)
2705 return (*iter);
2706 }
2707 return NULL;
2708}
2709
2710bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2711#ifdef TW_HAS_MTP
2712 struct mtpmsg mtp_message;
2713
2714 if (!mtppid)
2715 return false; // MTP is disabled
2716
2717 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002718 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002719 return false;
2720 }
2721
2722 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002723 if (Part->MTP_Storage_ID == 0)
2724 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002725 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2726 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2727 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2728 mtp_message.storage_id = Part->MTP_Storage_ID;
2729 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002730 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002731 return false;
2732 } else {
2733 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2734 return true;
2735 }
2736 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2737 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2738 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002739 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2740 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2741 return false;
2742 }
2743 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2744 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2745 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2746 return false;
2747 }
2748 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002749 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002750 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 -06002751 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002752 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002753 return false;
2754 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002755 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002756 return true;
2757 }
2758 } else {
2759 LOGERR("Unknown MTP message type: %i\n", message_type);
2760 }
2761 } else {
2762 // This hopefully never happens as the error handling should
2763 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002764 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002765 }
2766 return true;
2767#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002768 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002769 DataManager::SetValue("tw_mtp_enabled", 0);
2770 return false;
2771#endif
2772}
2773
2774bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2775#ifdef TW_HAS_MTP
2776 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2777 if (Part) {
2778 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2779 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002780 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002781 }
2782#endif
2783 return false;
2784}
2785
2786bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2787#ifdef TW_HAS_MTP
2788 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2789 if (Part) {
2790 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2791 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002792 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002793 }
2794#endif
2795 return false;
2796}
2797
2798bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2799#ifdef TW_HAS_MTP
2800 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2801 if (Part) {
2802 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2803 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002804 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002805 }
2806#endif
2807 return false;
2808}
2809
2810bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2811#ifdef TW_HAS_MTP
2812 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2813 if (Part) {
2814 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2815 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002816 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002817 }
2818#endif
2819 return false;
2820}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002821
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002822bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002823 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002824 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002825 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002826 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002827 size_t start_pos = 0, end_pos = 0;
2828
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002829 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002830
bigbiffce8f83c2015-12-12 18:30:21 -05002831 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2832 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2833
2834 if (!TWFunc::Path_Exists(full_filename)) {
2835 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002836 return false;
2837 }
bigbiffce8f83c2015-12-12 18:30:21 -05002838 if (!TWFunc::Path_Exists(full_filename)) {
2839 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002840 return false;
2841 }
2842 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002843
Ethan Yonker53796e72019-01-11 22:49:52 -06002844 DataManager::GetValue("tw_flash_partition", Flash_List);
2845 Repack_Type repack = REPLACE_NONE;
2846 if (Flash_List == "/repack_ramdisk;") {
2847 repack = REPLACE_RAMDISK;
2848 } else if (Flash_List == "/repack_kernel;") {
2849 repack = REPLACE_KERNEL;
2850 }
2851 if (repack != REPLACE_NONE) {
2852 Repack_Options_struct Repack_Options;
2853 Repack_Options.Type = repack;
2854 Repack_Options.Disable_Verity = false;
2855 Repack_Options.Disable_Force_Encrypt = false;
2856 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002857 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002858 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002859 PartitionSettings part_settings;
2860 part_settings.Backup_Folder = path;
2861 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2862 ProgressTracking progress(total_bytes);
2863 part_settings.progress = &progress;
2864 part_settings.adbbackup = false;
2865 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002866 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002867 if (!Flash_List.empty()) {
2868 end_pos = Flash_List.find(";", start_pos);
2869 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2870 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2871 flash_part = Find_Partition_By_Path(flash_path);
2872 if (flash_part != NULL) {
2873 partition_count++;
2874 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002875 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002876 return false;
2877 }
2878 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002879 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002880 return false;
2881 }
2882 start_pos = end_pos + 1;
2883 end_pos = Flash_List.find(";", start_pos);
2884 }
2885 }
2886
2887 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002888 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002889 return false;
2890 }
2891
2892 DataManager::SetProgress(0.0);
2893 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002894 flash_part->Backup_FileName = filename;
2895 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002896 return false;
2897 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002898 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002899 return false;
2900 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002901 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002902 return true;
2903}
Ethan Yonker74db1572015-10-28 12:44:49 -05002904
2905void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2906 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2907 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002908 if (part->Is_Adopted_Storage) {
2909 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2910 part->Backup_Display_Name = part->Display_Name;
2911 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2912 } else {
2913 part->Display_Name = gui_lookup(resource_name, default_value);
2914 part->Backup_Display_Name = part->Display_Name;
2915 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002916 }
2917}
2918
2919void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2920 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2921 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002922 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002923 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002924 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002925 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2926 } else {
2927 part->Display_Name = gui_lookup(resource_name, default_value);
2928 part->Backup_Display_Name = part->Display_Name;
2929 if (part->Is_Storage)
2930 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2931 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002932 }
2933}
2934
Ethan Yonker01f4e032017-02-03 15:30:52 -06002935void 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) {
2936 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2937 if (part) {
2938 if (part->Is_Adopted_Storage) {
2939 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2940 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2941 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2942 } else {
2943 part->Display_Name = gui_lookup(resource_name, default_value);
2944 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2945 if (part->Is_Storage)
2946 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2947 }
2948 }
2949}
2950
Ethan Yonker74db1572015-10-28 12:44:49 -05002951void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002952 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002953 Translate_Partition("/system", "system", "System");
2954 Translate_Partition("/system_image", "system_image", "System Image");
2955 Translate_Partition("/vendor", "vendor", "Vendor");
2956 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2957 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002958 Translate_Partition("/boot", "boot", "Boot");
2959 Translate_Partition("/recovery", "recovery", "Recovery");
2960 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002961 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002962 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2963 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2964 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2965 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002966 } else {
2967 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002968 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002969 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2970 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002971 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2972 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2973
2974 // Android secure is a special case
2975 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2976 if (part)
2977 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2978
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002979 std::vector<TWPartition*>::iterator sysfs;
2980 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2981 if (!(*sysfs)->Sysfs_Entry.empty()) {
2982 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2983 }
2984 }
2985
Ethan Yonker74db1572015-10-28 12:44:49 -05002986 // This updates the text on all of the storage selection buttons in the GUI
2987 DataManager::SetBackupFolder();
2988}
Ethan Yonker66a19492015-12-10 10:19:45 -06002989
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002990bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002991#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002992 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002993 if (!Mount_By_Path("/data", false)) {
2994 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002995 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002996 }
Darth98f775972022-08-05 09:39:03 +01002997
2998 std::string path = "/data/system/storage.xml";
2999 if (!TWFunc::Check_Xml_Format(path)) {
3000 std::string oldpath = path;
3001 if (TWFunc::abx_to_xml(oldpath, path)) {
3002 LOGINFO("Android 12+: '%s' has been converted into plain text xml (%s).\n", oldpath.c_str(), path.c_str());
3003 }
3004 }
3005
Ethan Yonker66a19492015-12-10 10:19:45 -06003006 LOGINFO("Decrypt adopted storage starting\n");
Darth98f775972022-08-05 09:39:03 +01003007 char* xmlFile = PageManager::LoadFileToBuffer(path, NULL);
Ethan Yonker66a19492015-12-10 10:19:45 -06003008 xml_document<> *doc = NULL;
3009 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06003010 string Primary_Storage_UUID = "";
3011 if (xmlFile != NULL) {
3012 LOGINFO("successfully loaded storage.xml\n");
3013 doc = new xml_document<>();
3014 doc->parse<0>(xmlFile);
3015 volumes = doc->first_node("volumes");
3016 if (volumes) {
3017 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
3018 if (psuuid) {
3019 Primary_Storage_UUID = psuuid->value();
3020 }
3021 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003022 } else {
3023 LOGINFO("No /data/system/storage.xml for adopted storage\n");
3024 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003025 }
3026 std::vector<TWPartition*>::iterator adopt;
3027 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
Peter Cai439d60c2019-10-17 08:49:10 +08003028 if ((*adopt)->Removable && !(*adopt)->Is_Present && (*adopt)->Adopted_Mount_Delay > 0) {
3029 // On some devices, the external mmc driver takes some time
3030 // to recognize the card, in which case the "actual block device"
3031 // would not have been found yet. We wait the specified delay
3032 // and then try again.
3033 LOGINFO("Sleeping %d seconds for adopted storage.\n", (*adopt)->Adopted_Mount_Delay);
3034 sleep((*adopt)->Adopted_Mount_Delay);
3035 (*adopt)->Find_Actual_Block_Device();
3036 }
3037
Ethan Yonker66a19492015-12-10 10:19:45 -06003038 if ((*adopt)->Removable && (*adopt)->Is_Present) {
3039 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003040 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06003041 if (volumes) {
3042 xml_node<>* volume = volumes->first_node("volume");
3043 while (volume) {
3044 xml_attribute<>* guid = volume->first_attribute("partGuid");
3045 if (guid) {
3046 string GUID = (*adopt)->Adopted_GUID.c_str();
3047 GUID.insert(8, "-");
3048 GUID.insert(13, "-");
3049 GUID.insert(18, "-");
3050 GUID.insert(23, "-");
3051
3052 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
3053 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03003054 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003055 (*adopt)->Storage_Name = attr->value();
3056 (*adopt)->Display_Name = (*adopt)->Storage_Name;
3057 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
3058 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
3059 }
3060 attr = volume->first_attribute("fsUuid");
3061 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
3062 TWPartition* Dat = Find_Partition_By_Path("/data");
3063 if (Dat) {
3064 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
3065 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
3066 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
3067 Dat->Symlink_Mount_Point = "";
3068 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
3069 Dat->UnMount(false);
3070 Dat->Mount(false);
3071 (*adopt)->UnMount(false);
3072 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06003073 }
3074 }
3075 break;
3076 }
3077 }
3078 volume = volume->next_sibling("volume");
3079 }
3080 }
nkk71ffb02bd2017-06-04 23:12:16 +03003081 Update_System_Details();
3082 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06003083 }
3084 }
3085 }
3086 if (xmlFile) {
3087 doc->clear();
3088 delete doc;
3089 free(xmlFile);
3090 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003091 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06003092#else
3093 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003094 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003095#endif
3096}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003097
3098void TWPartitionManager::Remove_Partition_By_Path(string Path) {
3099 std::vector<TWPartition*>::iterator iter;
3100 string Local_Path = TWFunc::Get_Root_Path(Path);
3101
3102 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3103 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
3104 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3105 Partitions.erase(iter);
3106 return;
3107 }
3108 }
3109}
Ethan Yonker1b190162016-12-05 15:25:19 -06003110
bigbiff74a46272021-07-31 19:02:26 -04003111void TWPartitionManager::Override_Active_Slot(const string& Slot) {
3112 LOGINFO("Overriding slot to '%s'\n", Slot.c_str());
3113 Active_Slot_Display = Slot;
3114 DataManager::SetValue("tw_active_slot", Slot);
nebrassy07c4b902021-11-21 03:32:47 +01003115 PartitionManager.Update_System_Details();
bigbiff74a46272021-07-31 19:02:26 -04003116}
3117
Ethan Yonker1b190162016-12-05 15:25:19 -06003118void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3119 if (Slot != "A" && Slot != "B") {
3120 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3121 return;
3122 }
3123 if (Active_Slot_Display == Slot)
3124 return;
3125 LOGINFO("Setting active slot %s\n", Slot.c_str());
3126#ifdef AB_OTA_UPDATER
3127 if (!Active_Slot_Display.empty()) {
dianlujitaoa90dc462021-12-16 16:56:26 +08003128 android::sp<IBootControl> module = IBootControl::getService();
3129 if (module == nullptr) {
Ethan Yonker1b190162016-12-05 15:25:19 -06003130 LOGERR("Error getting bootctrl module.\n");
3131 } else {
dianlujitaoa90dc462021-12-16 16:56:26 +08003132 uint32_t slot_number = 0;
Ethan Yonker1b190162016-12-05 15:25:19 -06003133 if (Slot == "B")
3134 slot_number = 1;
dianlujitaoa90dc462021-12-16 16:56:26 +08003135 CommandResult result;
3136 auto ret = module->setActiveBootSlot(slot_number, [&result]
3137 (const CommandResult &cb_result) { result = cb_result; });
3138 if (!ret.isOk() || !result.success)
Ethan Yonker1b190162016-12-05 15:25:19 -06003139 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3140 }
3141 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
3142 }
3143#else
3144 LOGERR("Boot slot feature not present\n");
3145#endif
3146 Active_Slot_Display = Slot;
3147 if (Fstab_Processed())
3148 Update_System_Details();
3149}
3150string TWPartitionManager::Get_Active_Slot_Suffix() {
3151 if (Active_Slot_Display == "A")
3152 return "_a";
3153 return "_b";
3154}
3155string TWPartitionManager::Get_Active_Slot_Display() {
3156 return Active_Slot_Display;
3157}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003158
Captain Throwback9d6feb52018-07-27 10:05:24 -04003159string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04003160 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003161}
3162
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003163void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3164 std::vector<TWPartition*>::iterator iter;
3165
3166 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3167 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3168 TWPartition *part = *iter;
3169 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3170 (*iter)->UnMount(false);
3171 rmdir((*iter)->Mount_Point.c_str());
3172 iter = Partitions.erase(iter);
3173 delete part;
3174 } else {
3175 iter++;
3176 }
3177 }
3178}
3179
3180void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3181 std::vector<TWPartition*>::iterator iter;
3182
3183 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3184 if (!(*iter)->Sysfs_Entry.empty()) {
3185 string device;
3186 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3187 if (wildcard != string::npos) {
3188 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3189 } else {
3190 device = (*iter)->Sysfs_Entry;
3191 }
3192 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3193 // Found a match
3194 if (uevent_data.action == "add") {
3195 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3196 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3197 (*iter)->Is_Present = true;
3198 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3199 if (!Decrypt_Adopted()) {
3200 LOGINFO("No adopted storage so finding actual block device\n");
3201 (*iter)->Find_Actual_Block_Device();
3202 }
3203 return;
3204 } else if (uevent_data.action == "remove") {
3205 (*iter)->Is_Present = false;
3206 (*iter)->Primary_Block_Device = "";
3207 (*iter)->Actual_Block_Device = "";
3208 Remove_Uevent_Devices((*iter)->Mount_Point);
3209 return;
3210 }
3211 }
3212 }
3213 }
bigbiffee7b7ff2020-03-23 15:08:27 -04003214
3215 if (!PartitionManager.Get_Super_Status())
3216 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 -06003217}
3218
3219void TWPartitionManager::setup_uevent() {
3220 struct sockaddr_nl nls;
3221
3222 if (uevent_pfd.fd >= 0) {
3223 LOGINFO("uevent already set up\n");
3224 return;
3225 }
3226
3227 // Open hotplug event netlink socket
3228 memset(&nls,0,sizeof(struct sockaddr_nl));
3229 nls.nl_family = AF_NETLINK;
3230 nls.nl_pid = getpid();
3231 nls.nl_groups = -1;
3232 uevent_pfd.events = POLLIN;
3233 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3234 if (uevent_pfd.fd==-1) {
3235 LOGERR("uevent not root\n");
3236 return;
3237 }
3238
3239 // Listen to netlink socket
3240 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3241 LOGERR("Bind failed\n");
3242 return;
3243 }
3244 set_select_fd();
3245 Coldboot();
3246}
3247
3248Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3249 Uevent_Block_Data ret;
3250 ret.subsystem = "";
3251 char *ptr = buf;
3252 const char *end = buf + len;
3253
3254 buf[len - 1] = '\0';
3255 while (ptr < end) {
3256 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3257 ptr += strlen("ACTION=");
3258 ret.action = ptr;
3259 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3260 ptr += strlen("SUBSYSTEM=");
3261 ret.subsystem = ptr;
3262 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3263 ptr += strlen("DEVTYPE=");
3264 ret.type = ptr;
3265 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3266 ptr += strlen("DEVPATH=");
3267 ret.sysfs_path += ptr;
3268 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3269 ptr += strlen("DEVNAME=");
3270 ret.block_device += ptr;
3271 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3272 ptr += strlen("MAJOR=");
3273 ret.major = atoi(ptr);
3274 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3275 ptr += strlen("MINOR=");
3276 ret.minor = atoi(ptr);
3277 }
3278 ptr += strlen(ptr) + 1;
3279 }
3280 return ret;
3281}
3282
3283void TWPartitionManager::read_uevent() {
3284 char buf[1024];
3285
3286 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3287 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003288 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003289 return;
3290 }
3291 /*int i = 0; // Print all uevent output for test /debug
3292 while (i<len) {
3293 printf("%s\n", buf+i);
3294 i += strlen(buf+i)+1;
3295 }*/
3296 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3297 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3298 PartitionManager.Handle_Uevent(uevent_data);
3299 }
3300}
3301
3302void TWPartitionManager::close_uevent() {
3303 if (uevent_pfd.fd > 0)
3304 close(uevent_pfd.fd);
3305 uevent_pfd.fd = -1;
3306}
3307
3308void TWPartitionManager::Add_Partition(TWPartition* Part) {
3309 Partitions.push_back(Part);
3310}
3311
3312void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3313 string Real_Path = Path;
3314 char real_path[PATH_MAX];
3315 if (realpath(Path.c_str(), &real_path[0])) {
3316 string Real_Path = real_path;
3317 std::vector<string>::iterator iter;
3318 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3319 if (Real_Path.find((*iter)) != string::npos) {
3320 string Write_Path = Real_Path + "/uevent";
3321 if (TWFunc::Path_Exists(Write_Path)) {
3322 const char* write_val = "add\n";
3323 TWFunc::write_to_file(Write_Path, write_val);
3324 break;
3325 }
3326 }
3327 }
3328 }
3329
3330 DIR* d = opendir(Path.c_str());
3331 if (d != NULL) {
3332 struct dirent* de;
3333 while ((de = readdir(d)) != NULL) {
3334 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3335 continue;
3336 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3337 continue;
3338
3339 string item = Path + "/";
3340 item.append(de->d_name);
3341 Coldboot_Scan(sysfs_entries, item, depth + 1);
3342 }
3343 closedir(d);
3344 }
3345}
3346
3347void TWPartitionManager::Coldboot() {
3348 std::vector<TWPartition*>::iterator iter;
3349 std::vector<string> sysfs_entries;
3350
3351 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3352 if (!(*iter)->Sysfs_Entry.empty()) {
3353 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3354 if (wildcard_pos == string::npos)
3355 wildcard_pos = (*iter)->Sysfs_Entry.size();
3356 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3357 }
3358 }
3359
3360 if (sysfs_entries.size() > 0)
3361 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3362}
Ethan Yonker53796e72019-01-11 22:49:52 -06003363
3364bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3365 if (TWFunc::Path_Exists(Folder))
3366 TWFunc::removeDir(Folder, false);
3367 return TWFunc::Recursive_Mkdir(Folder);
3368}
3369
bigbiffcfa875c2021-06-20 16:20:27 -04003370std::string TWPartitionManager::Get_Bare_Partition_Name(std::string Mount_Point) {
3371 if (Mount_Point == "/system_root")
3372 return "system";
3373 else
3374 return TWFunc::Remove_Beginning_Slash(Mount_Point);
3375}
3376
bigbiffee7b7ff2020-03-23 15:08:27 -04003377bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3378 Fstab fstab;
bigbiffcfa875c2021-06-20 16:20:27 -04003379 std::string bare_partition_name = Get_Bare_Partition_Name(twrpPart->Get_Mount_Point());
bigbiffee7b7ff2020-03-23 15:08:27 -04003380
bigbiff998f8392021-08-06 19:19:33 -04003381 Super_Partition_List.push_back(bare_partition_name);
bigbiffee7b7ff2020-03-23 15:08:27 -04003382 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3383
3384 std::string blk_device_partition;
3385#ifdef AB_OTA_UPDATER
3386 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3387#else
3388 blk_device_partition = bare_partition_name;
3389#endif
3390
3391 FstabEntry fstabEntry = {
3392 .blk_device = blk_device_partition,
3393 .mount_point = twrpPart->Get_Mount_Point(),
3394 .fs_type = twrpPart->Current_File_System,
3395 .fs_mgr_flags.logical = twrpPart->Is_Super,
3396 };
3397
3398 fstab.emplace_back(fstabEntry);
3399 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
Captain Throwbackc6939102021-04-06 12:57:30 -04003400 LOGINFO("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
bigbiffee7b7ff2020-03-23 15:08:27 -04003401 return false;
3402 }
3403
bigbiff32cbabe2020-04-12 19:16:19 -04003404 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3405 usleep(100);
3406 }
3407
bigbiffee7b7ff2020-03-23 15:08:27 -04003408 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3409 twrpPart->Update_Size(true);
bigbiffee7b7ff2020-03-23 15:08:27 -04003410 twrpPart->Set_Can_Be_Backed_Up(false);
3411 twrpPart->Set_Can_Be_Wiped(false);
me-cafebabe928234b2022-07-28 04:07:04 +08003412 if (access(("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str(), F_OK) == -1) {
3413 LOGINFO("Symlinking %s => /dev/block/bootdevice/by-name/%s \n", fstabEntry.blk_device.c_str(), bare_partition_name.c_str());
3414 symlink(fstabEntry.blk_device.c_str(), ("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str());
Captain Throwback88c6e652023-01-16 15:32:26 -05003415 property_set("twrp.super.symlinks_created", "true");
me-cafebabe928234b2022-07-28 04:07:04 +08003416 }
Mohd Faraz7fc70502021-04-22 20:44:11 +02003417
bigbiffee7b7ff2020-03-23 15:08:27 -04003418 return true;
3419}
3420
3421bool TWPartitionManager::Prepare_All_Super_Volumes() {
3422 bool status = true;
3423 std::vector<TWPartition*>::iterator iter;
3424
3425 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3426 if ((*iter)->Is_Super) {
3427 if (!Prepare_Super_Volume(*iter)) {
3428 status = false;
Mohd Faraz787cc612023-01-02 22:47:51 +01003429 Partitions.erase(iter--);
bigbiffee7b7ff2020-03-23 15:08:27 -04003430 }
3431 PartitionManager.Output_Partition(*iter);
3432 }
3433 }
3434 Update_System_Details();
3435 return status;
3436}
3437
bigbiffee7b7ff2020-03-23 15:08:27 -04003438std::string TWPartitionManager::Get_Super_Partition() {
3439 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
bigbiff998f8392021-08-06 19:19:33 -04003440 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
bigbiffee7b7ff2020-03-23 15:08:27 -04003441 return "/dev/block/by-name/" + super_device;
3442}
3443
3444void TWPartitionManager::Setup_Super_Devices() {
3445 std::string superPart = Get_Super_Partition();
3446 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003447}
3448
3449void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003450 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003451 std::string superPart = Get_Super_Partition();
3452
3453 superPartition->Backup_Path = "/super";
3454 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003455 superPartition->Actual_Block_Device = superPart;
3456 superPartition->Alternate_Block_Device = superPart;
bigbiff998f8392021-08-06 19:19:33 -04003457 superPartition->Backup_Display_Name = "Super (";
3458 // Add first 4 items to fstab as logical that you would like to display in Backup_Display_Name
3459 // for the Super partition
3460 int list_size = Super_Partition_List.size();
3461 int orig_list_size = list_size;
3462 int max_display_size = 3; // total of 4 items since we start at 0
3463
3464 for (auto partition: Super_Partition_List) {
3465 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + partition;
3466 if ((orig_list_size - list_size) == max_display_size) {
3467 break;
3468 }
3469 if (list_size != 1)
3470 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + " ";
3471 list_size--;
3472 }
3473 superPartition->Backup_Display_Name += ")";
bigbiffee7b7ff2020-03-23 15:08:27 -04003474 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003475 superPartition->Current_File_System = "emmc";
3476 superPartition->Can_Be_Backed_Up = true;
3477 superPartition->Is_Present = true;
3478 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003479 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003480 Add_Partition(superPartition);
3481 PartitionManager.Output_Partition(superPartition);
bigbiffee7b7ff2020-03-23 15:08:27 -04003482}
3483
3484bool TWPartitionManager::Get_Super_Status() {
bigbiffdf8436b2020-08-30 16:22:34 -04003485 std::string fastboot_mode = android::base::GetProperty("sys.usb.config", "");
3486 if (fastboot_mode == "fastboot") {
3487 return false;
3488 }
3489 else
3490 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003491}
bigbiff25d25b92020-06-19 16:07:38 -04003492
3493bool TWPartitionManager::Recreate_Logs_Dir() {
3494#ifdef TW_INCLUDE_FBE
3495 struct passwd pd;
3496 struct passwd *pwdptr = &pd;
3497 struct passwd *tempPd;
3498 char pwdBuf[512];
3499 int uid = 0, gid = 0;
3500
3501 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3502 LOGERR("unable to get system user id\n");
3503 return false;
3504 } else {
3505 struct group grp;
3506 struct group *grpptr = &grp;
3507 struct group *tempGrp;
3508 char grpBuf[512];
3509
3510 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3511 LOGERR("unable to get cache group id\n");
3512 return false;
3513 } else {
3514 uid = pd.pw_uid;
3515 gid = grp.gr_gid;
3516 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3517 abLogsRecoveryDir += "/recovery/";
3518
3519 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3520 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3521 return false;
3522 }
3523 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3524 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3525 return false;
3526 }
3527 }
3528 }
3529#endif
3530 return true;
3531}
bigbiff1f9e4842020-10-31 11:33:15 -04003532
3533void TWPartitionManager::Unlock_Block_Partitions() {
3534 int fd, OFF = 0;
3535
3536 const std::string block_path = "/dev/block/";
3537 DIR* d = opendir(block_path.c_str());
3538 if (d != NULL) {
3539 struct dirent* de;
3540 while ((de = readdir(d)) != NULL) {
3541 if (de->d_type == DT_BLK) {
3542 std::string block_device = block_path + de->d_name;
bigbiff1f9e4842020-10-31 11:33:15 -04003543 if ((fd = open(block_device.c_str(), O_RDONLY | O_CLOEXEC)) < 0) {
3544 LOGERR("unable to open block device %s: %s\n", block_device.c_str(), strerror(errno));
3545 continue;
3546 }
3547 if (ioctl(fd, BLKROSET, &OFF) == -1) {
me-cafebabed63fcaa2022-07-28 03:19:20 +08003548 LOGERR("Unable to unlock %s: %s\n", block_device.c_str());
bigbiff1f9e4842020-10-31 11:33:15 -04003549 continue;
3550 }
3551 close(fd);
3552 }
3553 }
3554 closedir(d);
3555 }
bigbiffaf253cd2020-12-06 16:50:55 -05003556}
bigbiffcfa875c2021-06-20 16:20:27 -04003557
3558bool TWPartitionManager::Unmap_Super_Devices() {
3559 bool destroyed = false;
3560#ifndef TW_EXCLUDE_APEX
3561 twrpApex apex;
3562 apex.Unmount();
3563#endif
3564 for (auto iter = Partitions.begin(); iter != Partitions.end();) {
3565 LOGINFO("Checking partition: %s\n", (*iter)->Get_Mount_Point().c_str());
3566 if ((*iter)->Is_Super) {
3567 TWPartition *part = *iter;
3568 std::string bare_partition_name = Get_Bare_Partition_Name((*iter)->Get_Mount_Point());
me-cafebabe2136fc52022-07-20 06:42:18 +08003569 std::string blk_device_partition = bare_partition_name;
3570 if (DataManager::GetStrValue(TW_VIRTUAL_AB_ENABLED) == "1")
3571 blk_device_partition.append(PartitionManager.Get_Active_Slot_Suffix());
bigbiffcfa875c2021-06-20 16:20:27 -04003572 (*iter)->UnMount(false);
3573 LOGINFO("removing dynamic partition: %s\n", blk_device_partition.c_str());
3574 destroyed = DestroyLogicalPartition(blk_device_partition);
3575 std::string cow_partition = blk_device_partition + "-cow";
3576 std::string cow_partition_path = "/dev/block/mapper/" + cow_partition;
3577 struct stat st;
3578 if (lstat(cow_partition_path.c_str(), &st) == 0) {
3579 LOGINFO("removing cow partition: %s\n", cow_partition.c_str());
3580 destroyed = DestroyLogicalPartition(cow_partition);
3581 }
bigbiffcfa875c2021-06-20 16:20:27 -04003582 iter = Partitions.erase(iter);
3583 delete part;
3584 if (!destroyed) {
3585 return false;
3586 }
3587 } else {
3588 ++iter;
3589 }
3590 }
3591 return true;
3592}
bigbiffd21252f2021-09-18 15:56:32 -04003593
3594
3595bool TWPartitionManager::Check_Pending_Merges() {
3596 auto sm = android::snapshot::SnapshotManager::NewForFirstStageMount();
3597 if (!sm) {
3598 LOGERR("Unable to call snapshot manager\n");
3599 return false;
3600 }
3601
3602 if (!Unmap_Super_Devices()) {
3603 LOGERR("Unable to unmap dynamic partitions.\n");
3604 return false;
3605 }
3606
3607 auto callback = [&]() -> void {
3608 double progress;
3609 sm->GetUpdateState(&progress);
3610 LOGINFO("waiting for merge to complete: %.2f\n", progress);
3611 };
3612
3613 LOGINFO("checking for merges\n");
3614 if (!sm->HandleImminentDataWipe(callback)) {
3615 LOGERR("Unable to check merge status\n");
3616 return false;
3617 }
3618 return true;
Darth98f775972022-08-05 09:39:03 +01003619}