blob: 158d91670ab77fb80339a7dbff551405715fc4e2 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffee7b7ff2020-03-23 15:08:27 -04002 Copyright 2014 to 2020 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
bigbiffee7b7ff2020-03-23 15:08:27 -040040
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060041#include <sys/poll.h>
42#include <sys/socket.h>
43#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>
55#include <libgsi/libgsi.h>
56#include <liblp/liblp.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060057
Dees_Troy51a0e822012-09-05 15:24:24 -040058#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000059#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040060#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040061#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040062#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060063#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060064#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060065#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050066#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050067#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060068#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040069#include "twrpDigestDriver.hpp"
bigbiffad58e1b2020-07-06 20:24:34 -040070#include "twrpRepacker.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050071#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040072
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040073#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050074#ifdef TW_HAS_LEGACY_MTP
75#include "mtp/legacy/mtp_MtpServer.hpp"
76#include "mtp/legacy/twrpMtp.hpp"
77#include "mtp/legacy/MtpMessage.hpp"
78#else
79#include "mtp/ffs/mtp_MtpServer.hpp"
80#include "mtp/ffs/twrpMtp.hpp"
81#include "mtp/ffs/MtpMessage.hpp"
82#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040083#endif
84
Dees Troy6f6441d2014-01-23 02:07:03 +000085extern "C" {
86 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050087 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000088}
89
Dees_Troy5bf43922012-09-07 16:07:55 -040090#ifdef TW_INCLUDE_CRYPTO
bigbiff7ba75002020-04-11 20:47:09 -040091#include "crypto/fde/cryptfs.h"
92#include "gui/rapidxml.hpp"
93#include "gui/pages.hpp"
94#ifdef TW_INCLUDE_FBE
bigbiffa957f072021-03-07 18:20:29 -050095#include "Decrypt.h"
bigbiff7ba75002020-04-11 20:47:09 -040096#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
97 #ifdef USE_FSCRYPT
bigbiffa957f072021-03-07 18:20:29 -050098 #include "MetadataCrypt.h"
bigbiffadc599e2020-05-28 19:36:30 +000099 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400100#endif
101#endif
102#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
103#include "crypto/vold_decrypt/vold_decrypt.h"
104#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400105#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400106
Ethan Yonker1b190162016-12-05 15:25:19 -0600107#ifdef AB_OTA_UPDATER
108#include <hardware/hardware.h>
109#include <hardware/boot_control.h>
110#endif
111
bigbiffee7b7ff2020-03-23 15:08:27 -0400112using android::fs_mgr::Fstab;
113using android::fs_mgr::FstabEntry;
Ethan Yonker6277c792014-09-15 14:54:30 -0500114
bigbiffee7b7ff2020-03-23 15:08:27 -0400115extern bool datamedia;
Noah Jacobson81d638d2019-04-28 00:10:07 -0400116std::vector<users_struct> Users_List;
117
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500118TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400119 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600120 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600121 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500122 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600123#ifdef AB_OTA_UPDATER
124 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500125 property_get("ro.boot.slot_suffix", slot_suffix, "error");
126 if (strcmp(slot_suffix, "error") == 0)
127 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600128 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500129 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600130 Set_Active_Slot("A");
131 else
132 Set_Active_Slot("B");
133#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500134}
135
Captain Throwback18aea272020-10-29 12:43:17 -0400136int TWPartitionManager::Set_FDE_Encrypt_Status(void) {
137 property_set("ro.crypto.state", "encrypted");
138 property_set("ro.crypto.type", "block");
139 // Sleep for a bit so that services can start if needed
140 sleep(1);
141 return 0;
142}
143
bigbiff8da46fa2020-09-08 16:42:34 -0400144int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400145 FILE *fstabFile;
146 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000147 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500148 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600149 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600150 std::map<string, Flags_Map> twrp_flags;
151
152 fstabFile = fopen("/etc/twrp.flags", "rt");
153 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200154 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600155 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
156 if (fstab_line[0] != '/')
157 continue;
158
159 size_t line_size = strlen(fstab_line);
160 if (fstab_line[line_size - 1] != '\n')
161 fstab_line[line_size] = '\n';
162 Flags_Map line_flags;
163 line_flags.Primary_Block_Device = "";
164 line_flags.Alternate_Block_Device = "";
165 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
166 if (!line_flags.fstab_line) {
167 LOGERR("malloc error on line_flags.fstab_line\n");
168 return false;
169 }
170 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
171 bool found_separator = false;
172 char *fs_loc = NULL;
173 char *block_loc = NULL;
174 char *flags_loc = NULL;
175 size_t index, item_index = 0;
176 for (index = 0; index < line_size; index++) {
177 if (fstab_line[index] <= 32) {
178 fstab_line[index] = '\0';
179 found_separator = true;
180 } else if (found_separator) {
181 if (item_index == 0) {
182 fs_loc = fstab_line + index;
183 } else if (item_index == 1) {
184 block_loc = fstab_line + index;
185 } else if (item_index > 1) {
186 char *ptr = fstab_line + index;
187 if (*ptr == '/') {
188 line_flags.Alternate_Block_Device = ptr;
189 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
190 flags_loc = ptr;
191 // Once we find the flags=, we're done scanning the line
192 break;
193 }
194 }
195 found_separator = false;
196 item_index++;
197 }
198 }
199 if (block_loc)
200 line_flags.Primary_Block_Device = block_loc;
201 if (fs_loc)
202 line_flags.File_System = fs_loc;
203 if (flags_loc)
204 line_flags.Flags = flags_loc;
205 string Mount_Point = fstab_line;
206 twrp_flags[Mount_Point] = line_flags;
207 memset(fstab_line, 0, sizeof(fstab_line));
208 }
209 fclose(fstabFile);
210 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400211
212 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
213 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000214 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400215 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600216 } else
217 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400218
219 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
bigbiffee7b7ff2020-03-23 15:08:27 -0400220 bool isSuper = Is_Super_Partition(fstab_line);
221
222 if (!isSuper && fstab_line[0] != '/')
Dees_Troy5bf43922012-09-07 16:07:55 -0400223 continue;
224
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600225 if (strstr(fstab_line, "swap"))
226 continue; // Skip swap in recovery
227
228 size_t line_size = strlen(fstab_line);
229 if (fstab_line[line_size - 1] != '\n')
230 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400231
Matt Mower2b2dd152016-04-26 11:24:08 -0500232 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400233 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500234 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500235 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400236 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500237
238 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400239 }
240 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500241
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600242 if (twrp_flags.size() > 0) {
243 LOGINFO("Processing remaining twrp.flags\n");
244 // Add any items from twrp.flags that did not exist in the recovery.fstab
245 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
246 if (Find_Partition_By_Path(mapit->first) == NULL) {
247 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400248 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600249 Partitions.push_back(partition);
250 else
251 delete partition;
252 }
253 if (mapit->second.fstab_line)
254 free(mapit->second.fstab_line);
255 mapit->second.fstab_line = NULL;
256 }
257 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000258 if (Get_Super_Status()) {
259 Setup_Super_Devices();
260 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600261 LOGINFO("Done processing fstab files\n");
262
Matt Mower72c87ce2016-04-26 14:34:56 -0500263 std::vector<TWPartition*>::iterator iter;
264 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
265 (*iter)->Partition_Post_Processing(Display_Error);
266
267 if ((*iter)->Is_Storage) {
268 ++storageid;
269 (*iter)->MTP_Storage_ID = storageid;
270 }
271
272 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
273 settings_partition = (*iter);
274 else
275 (*iter)->Is_Settings_Storage = false;
276
277 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
278 andsec_partition = (*iter);
279 else
280 (*iter)->Has_Android_Secure = false;
bigbiffdf8436b2020-08-30 16:22:34 -0400281
Mohd Faraze3948ec2020-08-14 01:40:59 +0000282 if (Is_Super_Partition(TWFunc::Remove_Beginning_Slash((*iter)->Get_Mount_Point()).c_str()))
283 Prepare_Super_Volume((*iter));
284 }
285
286 //Setup Apex before decryption
287 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
288 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
289 if (sys) {
290 if (sys->Get_Super_Status()) {
291 sys->Mount(true);
292 if (ven) {
293 ven->Mount(true);
294 }
bigbiff79924302021-05-02 20:06:09 -0400295#ifdef TW_EXCLUDE_APEX
296 LOGINFO("Apex is disabled in this build\n");
297#else
Mohd Faraze3948ec2020-08-14 01:40:59 +0000298 twrpApex apex;
299 if (!apex.loadApexImages()) {
300 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
301 property_set("twrp.apex.loaded", "false");
302 } else {
303 property_set("twrp.apex.loaded", "true");
304 }
Mohd Farazd9e66712020-10-28 20:42:57 +0530305 TWFunc::check_and_run_script("/sbin/resyncapex.sh", "apex");
bigbiff79924302021-05-02 20:06:09 -0400306#endif
Mohd Faraze3948ec2020-08-14 01:40:59 +0000307 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500308 }
Mohd Faraz9a4ef262020-10-18 23:58:21 +0530309#ifndef USE_VENDOR_LIBS
310 if (ven)
311 ven->UnMount(true);
312 if (sys)
313 sys->UnMount(true);
314#endif
Matt Mower72c87ce2016-04-26 14:34:56 -0500315
Ethan Yonker6277c792014-09-15 14:54:30 -0500316 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) {
317 // Attempt to automatically identify /data/media emulated storage devices
318 TWPartition* Dat = Find_Partition_By_Path("/data");
319 if (Dat) {
320 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
321 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200322 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500323 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600324 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
325 ++storageid;
326 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500327 }
328 }
Dees Troy02a64532014-03-19 15:23:32 +0000329 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500330 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
331 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000332 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500333 break;
334 }
335 }
Dees Troy02a64532014-03-19 15:23:32 +0000336 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000337 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500338 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400339 if (!Write_Fstab()) {
340 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000341 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400342 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000343 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400344 }
Matt Mowered71fa32014-04-16 13:21:47 -0500345
Matt Mowerbf4efa32014-04-14 23:25:26 -0500346 if (andsec_partition) {
347 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500348 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500349 Setup_Android_Secure_Location(settings_partition);
350 }
Matt Mowered71fa32014-04-16 13:21:47 -0500351 if (settings_partition) {
352 Setup_Settings_Storage_Partition(settings_partition);
353 }
bigbiff7ba75002020-04-11 20:47:09 -0400354
Mohd Faraze3948ec2020-08-14 01:40:59 +0000355#ifdef TW_INCLUDE_CRYPTO
356 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
357 Decrypt_Data();
358#endif
359
Mohd Faraze3948ec2020-08-14 01:40:59 +0000360 if (Get_Super_Status())
361 Setup_Super_Partition();
bigbiff7ba75002020-04-11 20:47:09 -0400362 UnMount_Main_Partitions();
363#ifdef AB_OTA_UPDATER
364 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
365#endif
366 setup_uevent();
367 return true;
368}
369
370int TWPartitionManager::Write_Fstab(void) {
371 FILE *fp;
372 std::vector<TWPartition*>::iterator iter;
373 string Line;
374
375 fp = fopen("/etc/fstab", "w");
376 if (fp == NULL) {
377 LOGINFO("Can not open /etc/fstab.\n");
378 return false;
379 }
380 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
381 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530382 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
383 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400384 fputs(Line.c_str(), fp);
385 }
386 // Handle subpartition tracking
387 if ((*iter)->Is_SubPartition) {
388 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
389 if (ParentPartition)
390 ParentPartition->Has_SubPartition = true;
391 else
392 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
393 }
394 }
395 fclose(fp);
396 return true;
397}
398
399void TWPartitionManager::Decrypt_Data() {
400 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600401 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
402 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
nebrassyf74255e2020-10-24 21:08:20 +0200403 property_set("ro.crypto.state", "encrypted");
Ethan Yonker93382822018-11-01 15:25:31 -0500404 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
nebrassyf74255e2020-10-24 21:08:20 +0200405 property_set("ro.crypto.type", "file");
Ethan Yonker93382822018-11-01 15:25:31 -0500406#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400407#ifdef USE_FSCRYPT
408 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
bigbiffa957f072021-03-07 18:20:29 -0500409 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000410 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400411 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400412#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500413 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
414 int retry_count = 10;
415 while (!Decrypt_Data->Mount(false) && --retry_count)
416 usleep(500);
417 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400418 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100419 char wrappedvalue[PROPERTY_VALUE_MAX];
420 property_get("fbe.data.wrappedkey", wrappedvalue, "");
421 std::string wrappedkeyvalue(wrappedvalue);
422 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400423 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100424 } else {
425 LOGINFO("Trying wrapped key.\n");
426 property_set("fbe.data.wrappedkey", "true");
427 if (!Decrypt_Data->Decrypt_FBE_DE()) {
428 LOGERR("Unable to decrypt FBE device\n");
429 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400430 }
431 }
432
Ethan Yonker93382822018-11-01 15:25:31 -0500433 } else {
434 LOGINFO("Failed to mount data after metadata decrypt\n");
435 }
436 } else {
437 LOGINFO("Unable to decrypt metadata encryption\n");
438 }
439#else
440 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
441#endif
442 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600443 if (Decrypt_Data->Is_FBE) {
444 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
445 if (Decrypt_Device("!") == 0) {
446 gui_msg("decrypt_success=Successfully decrypted with default password.");
447 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
448 } else {
449 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
450 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600451 }
452 } else {
Captain Throwback18aea272020-10-29 12:43:17 -0400453 Set_FDE_Encrypt_Status();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600454 int password_type = cryptfs_get_password_type();
455 if (password_type == CRYPT_TYPE_DEFAULT) {
456 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
457 if (Decrypt_Device("default_password") == 0) {
458 gui_msg("decrypt_success=Successfully decrypted with default password.");
459 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
460 } else {
461 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
462 }
463 } else {
464 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400465 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600466 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600467 }
468 }
Noah Jacobson81d638d2019-04-28 00:10:07 -0400469 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) &&
470 Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600471 Decrypt_Adopted();
472 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600473#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400474}
475
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500476void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500477 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
478 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
479 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
480}
481
Matt Mowerbf4efa32014-04-14 23:25:26 -0500482void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
483 if (Part->Has_Android_Secure)
484 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500485 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500486 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500487}
488
Dees_Troy8170a922012-09-18 15:40:25 -0400489void TWPartitionManager::Output_Partition_Logging(void) {
490 std::vector<TWPartition*>::iterator iter;
491
492 printf("\n\nPartition Logs:\n");
493 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
494 Output_Partition((*iter));
495}
496
497void TWPartitionManager::Output_Partition(TWPartition* Part) {
498 unsigned long long mb = 1048576;
499
Gary Peck004d48b2012-11-21 16:28:18 -0800500 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 -0400501 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800502 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 -0400503 }
Gary Peck004d48b2012-11-21 16:28:18 -0800504 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500505 if (Part->Can_Be_Mounted)
506 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800507 if (Part->Can_Be_Wiped)
508 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700509 if (Part->Use_Rm_Rf)
510 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500511 if (Part->Can_Be_Backed_Up)
512 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800513 if (Part->Wipe_During_Factory_Reset)
514 printf("Wipe_During_Factory_Reset ");
515 if (Part->Wipe_Available_in_GUI)
516 printf("Wipe_Available_in_GUI ");
517 if (Part->Is_SubPartition)
518 printf("Is_SubPartition ");
519 if (Part->Has_SubPartition)
520 printf("Has_SubPartition ");
521 if (Part->Removable)
522 printf("Removable ");
523 if (Part->Is_Present)
524 printf("IsPresent ");
525 if (Part->Can_Be_Encrypted)
526 printf("Can_Be_Encrypted ");
527 if (Part->Is_Encrypted)
528 printf("Is_Encrypted ");
529 if (Part->Is_Decrypted)
530 printf("Is_Decrypted ");
531 if (Part->Has_Data_Media)
532 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000533 if (Part->Can_Encrypt_Backup)
534 printf("Can_Encrypt_Backup ");
535 if (Part->Use_Userdata_Encryption)
536 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800537 if (Part->Has_Android_Secure)
538 printf("Has_Android_Secure ");
539 if (Part->Is_Storage)
540 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500541 if (Part->Is_Settings_Storage)
542 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000543 if (Part->Ignore_Blkid)
544 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600545 if (Part->Mount_To_Decrypt)
546 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600547 if (Part->Can_Flash_Img)
548 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600549 if (Part->Is_Adopted_Storage)
550 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600551 if (Part->SlotSelect)
552 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600553 if (Part->Mount_Read_Only)
554 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800555 printf("\n");
556 if (!Part->SubPartition_Of.empty())
557 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
558 if (!Part->Symlink_Path.empty())
559 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
560 if (!Part->Symlink_Mount_Point.empty())
561 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
562 if (!Part->Primary_Block_Device.empty())
563 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
564 if (!Part->Alternate_Block_Device.empty())
565 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
566 if (!Part->Decrypted_Block_Device.empty())
567 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800568 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600569 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800570 if (Part->Length != 0)
571 printf(" Length: %i\n", Part->Length);
572 if (!Part->Display_Name.empty())
573 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500574 if (!Part->Storage_Name.empty())
575 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800576 if (!Part->Backup_Path.empty())
577 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
578 if (!Part->Backup_Name.empty())
579 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500580 if (!Part->Backup_Display_Name.empty())
581 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800582 if (!Part->Backup_FileName.empty())
583 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
584 if (!Part->Storage_Path.empty())
585 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
586 if (!Part->Current_File_System.empty())
587 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
588 if (!Part->Fstab_File_System.empty())
589 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
590 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500591 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400592 if (!Part->MTD_Name.empty())
593 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600594 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800595 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600596 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600597 if (Part->MTP_Storage_ID)
598 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500599 if (!Part->Key_Directory.empty())
600 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500601 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400602}
603
Dees_Troy51a0e822012-09-05 15:24:24 -0400604int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400605 std::vector<TWPartition*>::iterator iter;
606 int ret = false;
607 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400608 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400609
bigbiffd58ba182020-03-23 10:02:29 -0400610 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400611 return true;
612
Dees_Troy5bf43922012-09-07 16:07:55 -0400613 // Iterate through all partitions
614 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400615 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400616 ret = (*iter)->Mount(Display_Error);
617 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400618 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400619 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400620 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400621 }
622 if (found) {
623 return ret;
624 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500625 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 -0400626 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000627 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400628 }
629 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400630}
631
Dees_Troy51a0e822012-09-05 15:24:24 -0400632int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400633 std::vector<TWPartition*>::iterator iter;
634 int ret = false;
635 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400636 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400637
638 // Iterate through all partitions
639 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400640 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400641 ret = (*iter)->UnMount(Display_Error);
642 found = true;
643 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
644 (*iter)->UnMount(Display_Error);
645 }
646 }
647 if (found) {
648 return ret;
649 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500650 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 -0400651 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000652 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400653 }
654 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400655}
656
Dees_Troy51a0e822012-09-05 15:24:24 -0400657int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400658 TWPartition* Part = Find_Partition_By_Path(Path);
659
660 if (Part)
661 return Part->Is_Mounted();
662 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000663 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400664 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400665}
666
Dees_Troy5bf43922012-09-07 16:07:55 -0400667int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400668 string current_storage_path = DataManager::GetCurrentStoragePath();
669
670 if (Mount_By_Path(current_storage_path, Display_Error)) {
671 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
672 if (FreeStorage)
673 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
674 return true;
675 }
676 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400677}
678
Dees_Troy5bf43922012-09-07 16:07:55 -0400679int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
680 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
681}
682
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600683TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400684 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400685 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400686
dianlujitaob76a73a2020-04-30 20:33:20 +0800687 if (Local_Path == "/system")
688 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400689 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400690 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400691 return (*iter);
692 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400693 return NULL;
694}
695
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600696TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
697 std::vector<TWPartition*>::iterator iter;
698
699 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
700 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
701 return (*iter);
702 }
703 return NULL;
704}
705
Ethan Yonker53796e72019-01-11 22:49:52 -0600706int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400707 // Check the backup name to ensure that it is the correct size and contains only valid characters
708 // and that a backup with that name doesn't already exist
709 char backup_name[MAX_BACKUP_NAME_LEN];
710 char backup_loc[255], tw_image_dir[255];
711 int copy_size;
712 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600713 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400714
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400715 copy_size = Backup_Name.size();
716 // Check size
717 if (copy_size > MAX_BACKUP_NAME_LEN) {
718 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500719 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400720 return -2;
721 }
722
723 // Check each character
724 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500725 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400726 return 0; // A "0" (zero) means to use the current timestamp for the backup name
727 for (index=0; index<copy_size; index++) {
728 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500729 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 -0400730 // These are valid characters
731 // Numbers
732 // Upper case letters
733 // Lower case letters
734 // Space
735 // and -_.{}[]
736 } else {
737 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600738 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 -0400739 return -3;
740 }
741 }
742
Ethan Yonker53796e72019-01-11 22:49:52 -0600743 if (Must_Be_Unique) {
744 // Check to make sure that a backup with this name doesn't already exist
745 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
746 strcpy(backup_loc, Backup_Loc.c_str());
747 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
748 if (TWFunc::Path_Exists(tw_image_dir)) {
749 if (Display_Error)
750 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500751
Ethan Yonker53796e72019-01-11 22:49:52 -0600752 return -4;
753 }
754 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400755 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600756 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400757 return 0;
758}
759
bigbiffce8f83c2015-12-12 18:30:21 -0500760bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400761 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600762 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500763 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400764
bigbiffce8f83c2015-12-12 18:30:21 -0500765 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400766 return true;
767
Dees_Troy093b7642012-09-21 15:59:38 -0400768 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400769
Tom Hite5a926722014-09-15 01:31:03 +0000770 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400771 time(&start);
772
bigbiffce8f83c2015-12-12 18:30:21 -0500773 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500774 sync();
775 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400776 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500777 if (!part_settings->adbbackup && part_settings->generate_digest) {
778 if (!twrpDigestDriver::Make_Digest(Full_Filename))
779 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400780 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400781
bigbiffce8f83c2015-12-12 18:30:21 -0500782 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400783 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400784 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400785
786 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400787 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500788 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500789 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500790 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000791 }
Dees_Troy2727b992013-08-14 20:09:30 +0000792 sync();
793 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400794 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400795 if (!part_settings->adbbackup && part_settings->generate_digest) {
796 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500797 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500798 }
Tom Hite5a926722014-09-15 01:31:03 +0000799 }
Dees_Troy8170a922012-09-18 15:40:25 -0400800 }
801 }
802 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400803
Dees_Troy43d8b002012-09-17 16:00:01 -0400804 time(&stop);
that203bcc92015-05-09 17:27:33 +0200805 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000806 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400807
bigbiffce8f83c2015-12-12 18:30:21 -0500808 if (part_settings->Part->Backup_Method == BM_FILES) {
809 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400810 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500811 part_settings->img_time += backup_time;
812
Dees_Troy43d8b002012-09-17 16:00:01 -0400813 }
Tom Hite5a926722014-09-15 01:31:03 +0000814
Matt Mower02899552016-12-30 18:13:51 -0600815 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500816 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400817 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500818backup_error:
819 Clean_Backup_Folder(part_settings->Backup_Folder);
820 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
821 tw_set_default_metadata(backup_log.c_str());
822 TWFunc::SetPerformanceMode(false);
823 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500824}
825
bigbiffbf1d6722015-02-14 16:25:59 -0500826void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
827 DIR *d = opendir(Backup_Folder.c_str());
828 struct dirent *p;
829 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400830 vector<string> ext;
831
832 //extensions we should delete when cleaning
833 ext.push_back("win");
834 ext.push_back("md5");
835 ext.push_back("sha2");
836 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500837
Ethan Yonker74db1572015-10-28 12:44:49 -0500838 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500839
840 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500841 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500842 return;
843 }
844
Matt Mower2b18a532015-02-20 16:58:05 -0600845 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500846 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
847 continue;
848
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500849 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500850
851 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400852 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
853 if (path.substr(dot) == *i) {
854 r = unlink(path.c_str());
855 if (r != 0)
856 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500857 }
858 }
859 }
860 closedir(d);
861}
862
Ethan Yonker472f5062016-02-25 13:47:30 -0600863int TWPartitionManager::Check_Backup_Cancel() {
864 return stop_backup.get_value();
865}
866
bigbiff7abc5fe2015-01-17 16:53:12 -0500867int TWPartitionManager::Cancel_Backup() {
868 string Backup_Folder, Backup_Name, Full_Backup_Path;
869
870 stop_backup.set_value(1);
871
872 if (tar_fork_pid != 0) {
873 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
874 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500875 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500876 LOGINFO("Killing pid: %d\n", tar_fork_pid);
877 kill(tar_fork_pid, SIGUSR2);
878 while (kill(tar_fork_pid, 0) == 0) {
879 usleep(1000);
880 }
881 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
882 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
883 TWFunc::removeDir(Full_Backup_Path, false);
884 tar_fork_pid = 0;
885 }
886
887 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400888}
889
bigbiffce8f83c2015-12-12 18:30:21 -0500890int TWPartitionManager::Run_Backup(bool adbbackup) {
891 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400892 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500893 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600894 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400895 TWPartition* storage = NULL;
896 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600897 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500898 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500899 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400900 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500901 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400902
bigbiffce8f83c2015-12-12 18:30:21 -0500903 part_settings.img_bytes_remaining = 0;
904 part_settings.file_bytes_remaining = 0;
905 part_settings.img_time = 0;
906 part_settings.file_time = 0;
907 part_settings.img_bytes = 0;
908 part_settings.file_bytes = 0;
909 part_settings.PM_Method = PM_BACKUP;
910
bigbiffce8f83c2015-12-12 18:30:21 -0500911 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400912 time(&total_start);
913
914 Update_System_Details();
915
916 if (!Mount_Current_Storage(true))
917 return false;
918
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400919 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
920 if (skip_digest == 0)
921 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400922 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400923 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400924
bigbiffce8f83c2015-12-12 18:30:21 -0500925 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500926 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
927 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
928 Backup_Name = TWFunc::Get_Current_Date();
929 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000930 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500931 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400932 }
bigbiffce8f83c2015-12-12 18:30:21 -0500933
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500934 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500935 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500936
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500937 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400938
Dees_Troy2673cec2013-04-02 20:22:16 +0000939 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500940 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400941 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500942 if (!Backup_List.empty()) {
943 end_pos = Backup_List.find(";", start_pos);
944 while (end_pos != string::npos && start_pos < Backup_List.size()) {
945 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400946 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500947 part_settings.Part = Find_Partition_By_Path(backup_path);
948 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500949 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500950 if (part_settings.Part->Backup_Method == BM_FILES)
951 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500952 else
bigbiffce8f83c2015-12-12 18:30:21 -0500953 part_settings.img_bytes += part_settings.Part->Backup_Size;
954 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500955 std::vector<TWPartition*>::iterator subpart;
956
957 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500958 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 -0500959 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500960 if ((*subpart)->Backup_Method == BM_FILES)
961 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500962 else
bigbiffce8f83c2015-12-12 18:30:21 -0500963 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500964 }
965 }
Dees_Troy8170a922012-09-18 15:40:25 -0400966 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500967 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500968 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 -0400969 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500970 start_pos = end_pos + 1;
971 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400972 }
973 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400974
975 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500976 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400977 return false;
978 }
bigbiffce8f83c2015-12-12 18:30:21 -0500979 if (adbbackup) {
980 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
981 return false;
982 }
983 }
984 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600985 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500986 part_settings.progress = &progress;
987
Ethan Yonker74db1572015-10-28 12:44:49 -0500988 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
989 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400990 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
991 if (storage != NULL) {
992 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500993 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400994 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500995 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400996 return false;
997 }
bigbiffbf1d6722015-02-14 16:25:59 -0500998
Matt Mowerbfccfb82016-04-25 23:22:31 -0500999 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -05001000
1001 if (adbbackup)
1002 disable_free_space_check = true;
1003
bigbiffbf1d6722015-02-14 16:25:59 -05001004 if (!disable_free_space_check) {
1005 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1006 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001007 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001008 return false;
1009 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001010 }
bigbiffce8f83c2015-12-12 18:30:21 -05001011 part_settings.img_bytes_remaining = part_settings.img_bytes;
1012 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001013
Ethan Yonker74db1572015-10-28 12:44:49 -05001014 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001015
1016 int is_decrypted = 0;
1017 int is_encrypted = 0;
1018
1019 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1020 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1021 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1022 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1023 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1024 gui_err("fail_backup_folder=Failed to make backup folder.");
1025 return false;
1026 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001027 }
1028
Dees_Troy2673cec2013-04-02 20:22:16 +00001029 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001030
Dees_Troya13d74f2013-03-24 08:54:55 -05001031 start_pos = 0;
1032 end_pos = Backup_List.find(";", start_pos);
1033 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001034 if (stop_backup.get_value() != 0)
1035 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001036 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001037 part_settings.Part = Find_Partition_By_Path(backup_path);
1038 if (part_settings.Part != NULL) {
1039 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001040 return false;
1041 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001042 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 -05001043 }
1044 start_pos = end_pos + 1;
1045 end_pos = Backup_List.find(";", start_pos);
1046 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001047
1048 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001049 if (part_settings.img_time == 0)
1050 part_settings.img_time = 1;
1051 if (part_settings.file_time == 0)
1052 part_settings.file_time = 1;
1053 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1054 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001055
bigbiffce8f83c2015-12-12 18:30:21 -05001056 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001057 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 -05001058 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001059 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 -04001060
1061 time(&total_stop);
1062 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001063
1064 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001065 if (!adbbackup) {
1066 TWExclude twe;
1067 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1068 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001069 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001070 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001071
bigbiffce8f83c2015-12-12 18:30:21 -05001072 int prev_img_bps = 0, use_compression = 0;
1073 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001074 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001075 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001076 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001077
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001078 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001079 if (use_compression)
1080 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001081 else
Dees_Troy093b7642012-09-21 15:59:38 -04001082 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1083 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001084 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001085
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001086 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001087 if (use_compression)
1088 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1089 else
1090 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1091
Ethan Yonker74db1572015-10-28 12:44:49 -05001092 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001093 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001094 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001095 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001096 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001097 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001098 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001099
1100 if (part_settings.adbbackup) {
1101 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1102 return false;
1103 }
1104 }
1105 part_settings.adbbackup = false;
1106 DataManager::SetValue("tw_enable_adb_backup", 0);
1107
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001108 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001109}
1110
bigbiffce8f83c2015-12-12 18:30:21 -05001111bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001112 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001113
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001114 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001115 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1116 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001117 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1118 }
1119
Tom Hite5a926722014-09-15 01:31:03 +00001120 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001121
Dees_Troy4a2a1262012-09-18 09:33:47 -04001122 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001123
bigbiffce8f83c2015-12-12 18:30:21 -05001124 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001125 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001126 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001127 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001128 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001129 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001130 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001131
1132 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001133 part_settings->Part = *subpart;
1134 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1135 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001136 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001137 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001138 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001139 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001140 }
Dees_Troy8170a922012-09-18 15:40:25 -04001141 }
1142 }
1143 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001144 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001145 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001146 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1147
Dees_Troy4a2a1262012-09-18 09:33:47 -04001148 return true;
1149}
1150
Ethan Yonker472f5062016-02-25 13:47:30 -06001151int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001152 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001153 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001154
Dees_Troy4a2a1262012-09-18 09:33:47 -04001155 time_t rStart, rStop;
1156 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001157 string Restore_List, restore_path;
1158 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001159
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001160 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001161 part_settings.Part = NULL;
1162 part_settings.partition_count = 0;
1163 part_settings.total_restore_size = 0;
1164 part_settings.adbbackup = false;
1165 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001166
Ethan Yonker74db1572015-10-28 12:44:49 -05001167 gui_msg("restore_started=[RESTORE STARTED]");
1168 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001169
Dees_Troy4a2a1262012-09-18 09:33:47 -04001170 if (!Mount_Current_Storage(true))
1171 return false;
1172
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001173 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1174 if (check_digest > 0) {
1175 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1176 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1177 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001178 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001179 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001180 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001181 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001182 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001183
Dees_Troya13d74f2013-03-24 08:54:55 -05001184 if (!Restore_List.empty()) {
1185 end_pos = Restore_List.find(";", start_pos);
1186 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1187 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001188 part_settings.Part = Find_Partition_By_Path(restore_path);
1189 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001190 if (part_settings.Part->Mount_Read_Only) {
1191 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 -05001192 return false;
1193 }
bigbiffce8f83c2015-12-12 18:30:21 -05001194
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001195 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1196
bigbiff4a60bee2021-01-23 14:08:03 -05001197 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1198 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1199 }
1200
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001201 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001202 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001203 part_settings.partition_count++;
1204 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1205 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001206 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001207 std::vector<TWPartition*>::iterator subpart;
1208
1209 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001210 part_settings.Part = *subpart;
1211 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001212 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001213 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001214 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001215 }
1216 }
1217 }
1218 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001219 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001220 }
1221 start_pos = end_pos + 1;
1222 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001223 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001224 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001225
bigbiffce8f83c2015-12-12 18:30:21 -05001226 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001227 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001228 return false;
1229 }
1230
bigbiffce8f83c2015-12-12 18:30:21 -05001231 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1232 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 +00001233 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001234 ProgressTracking progress(part_settings.total_restore_size);
1235 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001236
Dees_Troya13d74f2013-03-24 08:54:55 -05001237 start_pos = 0;
1238 if (!Restore_List.empty()) {
1239 end_pos = Restore_List.find(";", start_pos);
1240 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1241 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001242
1243 part_settings.Part = Find_Partition_By_Path(restore_path);
1244 if (part_settings.Part != NULL) {
1245 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001246 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001247 return false;
1248 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001249 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001250 }
1251 start_pos = end_pos + 1;
1252 end_pos = Restore_List.find(";", start_pos);
1253 }
1254 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001255 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001256 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001257 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001258 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001259 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001260 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001261 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001262 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001263
Dees_Troy63c8df72012-09-10 14:02:05 -04001264 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001265}
1266
1267void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001268 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001269 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001270 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001271 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001272
1273 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001274 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1275 vector<string> adb_files;
1276 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1277 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1278 string adb_restore_file = adb_files.at(i);
1279 std::size_t pos = adb_restore_file.find_first_of(".");
1280 std::string path = "/" + adb_restore_file.substr(0, pos);
1281 Restore_List = path + ";";
1282 TWPartition* Part = Find_Partition_By_Path(path);
1283 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1284 adbbackup = true;
1285 }
1286 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001287 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001288 else {
1289 DIR* d;
1290 d = opendir(Restore_Name.c_str());
1291 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001292 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001293 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1294 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001295 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001296
1297 struct dirent* de;
1298 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001299 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001300 // Strip off three components
1301 char str[256];
1302 char* label;
1303 char* fstype = NULL;
1304 char* extn = NULL;
1305 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001306
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001307 strcpy(str, de->d_name);
1308 if (strlen(str) <= 2)
1309 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001310
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001311 if (get_date) {
1312 char file_path[255];
1313 struct stat st;
1314
1315 strcpy(file_path, Restore_Name.c_str());
1316 strcat(file_path, "/");
1317 strcat(file_path, str);
1318 stat(file_path, &st);
1319 string backup_date = ctime((const time_t*)(&st.st_mtime));
1320 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1321 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001322 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001323
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001324 label = str;
1325 ptr = label;
1326 while (*ptr && *ptr != '.') ptr++;
1327 if (*ptr == '.')
1328 {
1329 *ptr = 0x00;
1330 ptr++;
1331 fstype = ptr;
1332 }
1333 while (*ptr && *ptr != '.') ptr++;
1334 if (*ptr == '.')
1335 {
1336 *ptr = 0x00;
1337 ptr++;
1338 extn = ptr;
1339 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001340
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001341 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1342 int extnlength = strlen(extn);
1343 if (extnlength != 3 && extnlength != 6) continue;
1344 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1345 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001346
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001347 if (check_encryption) {
1348 string filename = Restore_Name + "/";
1349 filename += de->d_name;
1350 if (TWFunc::Get_File_Type(filename) == 2) {
1351 LOGINFO("'%s' is encrypted\n", filename.c_str());
1352 DataManager::SetValue("tw_restore_encrypted", 1);
1353 }
1354 }
1355 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1356
1357 TWPartition* Part = Find_Partition_By_Path(label);
1358 if (Part == NULL)
1359 {
1360 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1361 continue;
1362 }
1363
1364 Part->Backup_FileName = de->d_name;
1365 if (strlen(extn) > 3) {
1366 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1367 }
1368
dianlujitaob76a73a2020-04-30 20:33:20 +08001369 if (!Part->Is_SubPartition) {
1370 if (Part->Backup_Path == Get_Android_Root_Path())
1371 Restore_List += "/system;";
1372 else
1373 Restore_List += Part->Backup_Path + ";";
1374 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001375 }
1376 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001377 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001378
1379 if (adbbackup) {
1380 Restore_List = "ADB_Backup;";
1381 adbbackup = false;
1382 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001383
Dees_Troya13d74f2013-03-24 08:54:55 -05001384 // Set the final value
1385 DataManager::SetValue("tw_restore_list", Restore_List);
1386 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001387 return;
1388}
1389
1390int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001391 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301392 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001393 int ret = false;
1394 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001395 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001396
dianlujitaob76a73a2020-04-30 20:33:20 +08001397 if (Local_Path == "/system")
1398 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001399 // Iterate through all partitions
1400 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001401 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301402 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1403 (*iter)->Find_Actual_Block_Device();
1404 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1405 {
1406 (*iter1)->Find_Actual_Block_Device();
1407 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1408 (*iter1)->UnMount(false);
1409 }
Dees_Troye58d5262012-09-21 12:27:57 -04001410 if (Path == "/and-sec")
1411 ret = (*iter)->Wipe_AndSec();
1412 else
1413 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001414 found = true;
1415 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1416 (*iter)->Wipe();
1417 }
1418 }
1419 if (found) {
1420 return ret;
1421 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001422 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 -04001423 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001424}
1425
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001426int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1427 std::vector<TWPartition*>::iterator iter;
1428 int ret = false;
1429 bool found = false;
1430 string Local_Path = TWFunc::Get_Root_Path(Path);
1431
1432 // Iterate through all partitions
1433 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1434 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1435 if (Path == "/and-sec")
1436 ret = (*iter)->Wipe_AndSec();
1437 else
1438 ret = (*iter)->Wipe(New_File_System);
1439 found = true;
1440 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1441 (*iter)->Wipe(New_File_System);
1442 }
1443 }
1444 if (found) {
1445 return ret;
1446 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001447 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 -05001448 return false;
1449}
1450
Dees_Troy51a0e822012-09-05 15:24:24 -04001451int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001452 std::vector<TWPartition*>::iterator iter;
1453 int ret = true;
1454
1455 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001456 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001457#ifdef TW_OEM_BUILD
1458 if ((*iter)->Mount_Point == "/data") {
1459 if (!(*iter)->Wipe_Encryption())
1460 ret = false;
1461 } else {
1462#endif
1463 if (!(*iter)->Wipe())
1464 ret = false;
1465#ifdef TW_OEM_BUILD
1466 }
1467#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001468 } else if ((*iter)->Has_Android_Secure) {
1469 if (!(*iter)->Wipe_AndSec())
1470 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001471 }
1472 }
bigbiffad58e1b2020-07-06 20:24:34 -04001473 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001474 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001475}
1476
Dees_Troy38bd7602012-09-14 13:33:53 -04001477int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1478 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001479 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001480
1481 if (!Mount_By_Path("/data", true))
1482 return false;
1483
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001484 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001485
bigbiff25d25b92020-06-19 16:07:38 -04001486 std::string cacheDir = TWFunc::get_log_dir();
1487 if (cacheDir == CACHE_LOGS_DIR) {
1488 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1489 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001490 }
1491 dir.push_back(cacheDir + "dalvik-cache");
1492 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001493 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001494
Dees_Troy38bd7602012-09-14 13:33:53 -04001495 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001496 if (sdext && sdext->Is_Present && sdext->Mount(false))
1497 {
1498 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1499 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001500 dir.push_back("/sd-ext/dalvik-cache");
1501 }
1502 }
1503
bigbiff25d25b92020-06-19 16:07:38 -04001504 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001505 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1506 } else {
1507 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1508 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001509 for (unsigned i = 0; i < dir.size(); ++i) {
1510 if (stat(dir.at(i).c_str(), &st) == 0) {
1511 TWFunc::removeDir(dir.at(i), false);
1512 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001513 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001514 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001515
bigbiff25d25b92020-06-19 16:07:38 -04001516 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001517 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1518 } else {
1519 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1520 }
1521
Dees_Troy38bd7602012-09-14 13:33:53 -04001522 return true;
1523}
1524
1525int TWPartitionManager::Wipe_Rotate_Data(void) {
1526 if (!Mount_By_Path("/data", true))
1527 return false;
1528
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001529 unlink("/data/misc/akmd*");
1530 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001531 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001532 return true;
1533}
1534
1535int TWPartitionManager::Wipe_Battery_Stats(void) {
1536 struct stat st;
1537
1538 if (!Mount_By_Path("/data", true))
1539 return false;
1540
1541 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001542 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001543 } else {
1544 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001545 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001546 }
1547 return true;
1548}
1549
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001550int TWPartitionManager::Wipe_Android_Secure(void) {
1551 std::vector<TWPartition*>::iterator iter;
1552 int ret = false;
1553 bool found = false;
1554
1555 // Iterate through all partitions
1556 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1557 if ((*iter)->Has_Android_Secure) {
1558 ret = (*iter)->Wipe_AndSec();
1559 found = true;
1560 }
1561 }
1562 if (found) {
1563 return ret;
1564 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001565 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001566 }
1567 return false;
1568}
1569
Dees_Troy38bd7602012-09-14 13:33:53 -04001570int TWPartitionManager::Format_Data(void) {
1571 TWPartition* dat = Find_Partition_By_Path("/data");
1572
1573 if (dat != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001574 return dat->Wipe_Encryption();
1575 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001576 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001577 return false;
1578 }
1579 return false;
1580}
1581
1582int TWPartitionManager::Wipe_Media_From_Data(void) {
1583 TWPartition* dat = Find_Partition_By_Path("/data");
1584
1585 if (dat != NULL) {
1586 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001587 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001588 return false;
1589 }
1590 if (!dat->Mount(true))
1591 return false;
1592
Ethan Yonker74db1572015-10-28 12:44:49 -05001593 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001594 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001595 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001596 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001597 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001598 return true;
1599 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001600 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001601 return false;
1602 }
1603 return false;
1604}
1605
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001606int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1607 std::vector<TWPartition*>::iterator iter;
1608 int ret = false;
1609 bool found = false;
1610 string Local_Path = TWFunc::Get_Root_Path(Path);
1611
1612 if (Local_Path == "/tmp" || Local_Path == "/")
1613 return true;
1614
1615 // Iterate through all partitions
1616 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1617 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1618 ret = (*iter)->Repair();
1619 found = true;
1620 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1621 (*iter)->Repair();
1622 }
1623 }
1624 if (found) {
1625 return ret;
1626 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001627 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 -05001628 } else {
1629 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1630 }
1631 return false;
1632}
1633
Ethan Yonkera2719152015-05-28 09:44:41 -05001634int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1635 std::vector<TWPartition*>::iterator iter;
1636 int ret = false;
1637 bool found = false;
1638 string Local_Path = TWFunc::Get_Root_Path(Path);
1639
1640 if (Local_Path == "/tmp" || Local_Path == "/")
1641 return true;
1642
1643 // Iterate through all partitions
1644 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1645 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1646 ret = (*iter)->Resize();
1647 found = true;
1648 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1649 (*iter)->Resize();
1650 }
1651 }
1652 if (found) {
1653 return ret;
1654 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001655 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 -05001656 } else {
1657 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1658 }
1659 return false;
1660}
1661
Dees_Troy51a0e822012-09-05 15:24:24 -04001662void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001663 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001664 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001665
Ethan Yonker74db1572015-10-28 12:44:49 -05001666 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001667 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001668 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001669 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001670 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001671 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1672 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001673 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001674 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1675 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1676 } else if ((*iter)->Mount_Point == "/cache") {
1677 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1678 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1679 } else if ((*iter)->Mount_Point == "/sd-ext") {
1680 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1681 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1682 if ((*iter)->Backup_Size == 0) {
1683 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1684 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1685 } else
1686 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001687 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001688 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001689 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001690 if ((*iter)->Backup_Size == 0) {
1691 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1692 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1693 } else
1694 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001695 } else if ((*iter)->Mount_Point == "/boot") {
1696 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1697 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1698 if ((*iter)->Backup_Size == 0) {
1699 DataManager::SetValue("tw_has_boot_partition", 0);
1700 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1701 } else
1702 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001703 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001704 } else {
1705 // Handle unmountable partitions in case we reset defaults
1706 if ((*iter)->Mount_Point == "/boot") {
1707 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1708 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1709 if ((*iter)->Backup_Size == 0) {
1710 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1711 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1712 } else
1713 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1714 } else if ((*iter)->Mount_Point == "/recovery") {
1715 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1716 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1717 if ((*iter)->Backup_Size == 0) {
1718 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1719 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1720 } else
1721 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001722 } else if ((*iter)->Mount_Point == "/data") {
1723 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001724 }
Dees_Troy51127312012-09-08 13:08:49 -04001725 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001726 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001727 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001728 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1729 string current_storage_path = DataManager::GetCurrentStoragePath();
1730 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001731 if (FreeStorage != NULL) {
1732 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001733 if (!FreeStorage->Mount(false)) {
1734 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1735 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1736 } else {
1737 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001738 }
1739 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001740 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001741 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001742 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001743 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001744 return;
1745}
1746
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001747void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1748 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001749
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001750 if (dat != NULL) {
1751 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1752 dat->Is_Decrypted = true;
1753 if (!Block_Device.empty()) {
1754 dat->Decrypted_Block_Device = Block_Device;
1755 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1756 } else {
1757 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1758 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001759 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001760 dat->Setup_File_System(false);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001761 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 -06001762
Noah Jacobson81d638d2019-04-28 00:10:07 -04001763 sleep(1); // Sleep for a bit so that the device will be ready
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001764 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1765 dat->Storage_Path = "/data/media/0";
1766 dat->Symlink_Path = dat->Storage_Path;
1767 DataManager::SetValue("tw_storage_path", "/data/media/0");
1768 DataManager::SetValue("tw_settings_path", "/data/media/0");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001769 }
epicXa721f952021-01-04 13:01:31 +05301770 DataManager::LoadTWRPFolderInfo();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001771 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001772 Output_Partition(dat);
bigbiffbe4f46c2021-04-24 11:48:54 -04001773 if (!dat->Bind_Mount(false))
1774 LOGERR("Unable to bind mount /sdcard to %s\n", dat->Storage_Path.c_str());
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001775 } else
1776 LOGERR("Unable to locate data partition.\n");
1777}
1778
Noah Jacobson81d638d2019-04-28 00:10:07 -04001779void TWPartitionManager::Parse_Users() {
1780#ifdef TW_INCLUDE_FBE
1781 char user_check_result[PROPERTY_VALUE_MAX];
1782 for (int userId = 0; userId <= 9999; userId++) {
1783 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1784 property_get(prop.c_str(), user_check_result, "-1");
1785 if (strcmp(user_check_result, "-1") != 0) {
1786 if (userId < 0 || userId > 9999) {
1787 LOGINFO("Incorrect user id %d\n", userId);
1788 continue;
1789 }
1790 struct users_struct user;
1791 user.userId = to_string(userId);
1792
1793 // Attempt to get name of user. Fallback to user ID if this fails.
1794 char* userFile = PageManager::LoadFileToBuffer("/data/system/users/" + to_string(userId) + ".xml", NULL);
bigbiffa957f072021-03-07 18:20:29 -05001795 if (userFile == NULL) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001796 user.userName = to_string(userId);
bigbiffa957f072021-03-07 18:20:29 -05001797 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001798 else {
1799 xml_document<> *userXml = new xml_document<>();
1800 userXml->parse<0>(userFile);
1801 xml_node<>* userNode = userXml->first_node("user");
1802 if (userNode == nullptr) {
1803 user.userName = to_string(userId);
1804 } else {
1805 xml_node<>* nameNode = userNode->first_node("name");
1806 if (nameNode == nullptr)
1807 user.userName = to_string(userId);
1808 else {
1809 string userName = nameNode->value();
1810 user.userName = userName + " (" + to_string(userId) + ")";
1811 }
1812 }
1813 }
1814
1815 string filename;
1816 user.type = Get_Password_Type(userId, filename);
1817
1818 user.isDecrypted = false;
1819 if (strcmp(user_check_result, "1") == 0)
1820 user.isDecrypted = true;
1821 Users_List.push_back(user);
1822 }
1823 }
1824 Check_Users_Decryption_Status();
1825#endif
1826}
1827
1828std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
1829 return &Users_List;
1830}
1831
1832void TWPartitionManager::Mark_User_Decrypted(int userID) {
1833#ifdef TW_INCLUDE_FBE
1834 std::vector<users_struct>::iterator iter;
1835 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1836 if (atoi((*iter).userId.c_str()) == userID) {
1837 (*iter).isDecrypted = true;
1838 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
1839 property_set(user_prop_decrypted.c_str(), "1");
1840 break;
1841 }
1842 }
1843 Check_Users_Decryption_Status();
1844#endif
1845}
1846
1847void TWPartitionManager::Check_Users_Decryption_Status() {
1848#ifdef TW_INCLUDE_FBE
1849 int all_is_decrypted = 1;
1850 std::vector<users_struct>::iterator iter;
1851 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1852 if (!(*iter).isDecrypted) {
1853 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
1854 all_is_decrypted = 0;
1855 break;
1856 }
1857 }
1858 if (all_is_decrypted == 1) {
1859 LOGINFO("All found users are decrypted.\n");
1860 DataManager::SetValue("tw_all_users_decrypted", "1");
1861 property_set("twrp.all.users.decrypted", "true");
1862 } else
1863 DataManager::SetValue("tw_all_users_decrypted", "0");
1864#endif
1865}
1866
1867int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001868#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001869 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001870 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001871
Ethan Yonker253368a2014-11-25 15:00:52 -06001872 // Mount any partitions that need to be mounted for decrypt
1873 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1874 if ((*iter)->Mount_To_Decrypt) {
1875 (*iter)->Mount(true);
1876 }
a39552696ff55ce2013-01-08 16:14:56 +00001877 }
oshmouna82a7542018-04-10 17:45:55 +02001878 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001879
Ethan Yonkera1de1492015-11-04 11:58:27 -06001880 property_get("ro.crypto.state", crypto_state, "error");
1881 if (strcmp(crypto_state, "error") == 0) {
Captain Throwback18aea272020-10-29 12:43:17 -04001882 Set_FDE_Encrypt_Status();
Ethan Yonkera1de1492015-11-04 11:58:27 -06001883 }
1884
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001885 if (DataManager::GetIntValue(TW_IS_FBE)) {
1886#ifdef TW_INCLUDE_FBE
1887 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1888 return -1;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001889
1890 bool user_need_decrypt = false;
1891 std::vector<users_struct>::iterator iter;
1892 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1893 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
1894 user_need_decrypt = true;
1895 }
1896 }
1897 if (!user_need_decrypt) {
1898 LOGINFO("User %d does not require decryption\n", user_id);
1899 return 0;
1900 }
1901
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001902 int retry_count = 10;
1903 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001904 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
1905 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001906 if (Decrypt_User(user_id, Password)) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001907 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
1908 Mark_User_Decrypted(user_id);
1909 if (user_id == 0) {
1910 // When decrypting user 0 also try all other users
1911 std::vector<users_struct>::iterator iter;
1912 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1913 if ((*iter).userId == "0" || (*iter).isDecrypted)
1914 continue;
1915
1916 int tmp_user_id = atoi((*iter).userId.c_str());
1917 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
1918 if (Decrypt_User(tmp_user_id, Password) ||
1919 (Password != "!" && Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
1920 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
1921 Mark_User_Decrypted(tmp_user_id);
1922 } else {
1923 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
1924 }
1925 }
1926 Post_Decrypt("");
1927 }
1928
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001929 return 0;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001930 } else {
1931 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001932 }
1933#else
1934 LOGERR("FBE support is not present\n");
1935#endif
1936 return -1;
1937 }
1938
Noah Jacobson81d638d2019-04-28 00:10:07 -04001939 char isdecrypteddata[PROPERTY_VALUE_MAX];
1940 property_get("twrp.decrypt.done", isdecrypteddata, "");
1941 if (strcmp(isdecrypteddata, "true") == 0) {
1942 LOGINFO("Data has no decryption required\n");
1943 return 0;
1944 }
1945
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001946 int pwret = -1;
1947 pid_t pid = fork();
1948 if (pid < 0) {
1949 LOGERR("fork failed\n");
1950 return -1;
1951 } else if (pid == 0) {
1952 // Child process
1953 char cPassword[255];
1954 strcpy(cPassword, Password.c_str());
1955 int ret = cryptfs_check_passwd(cPassword);
1956 exit(ret);
1957 } else {
1958 // Parent
1959 int status;
1960 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1961 pwret = -1;
1962 else
1963 pwret = WEXITSTATUS(status) ? -1 : 0;
1964 }
a39552696ff55ce2013-01-08 16:14:56 +00001965
nkk7171c6c502017-01-05 23:55:05 +02001966#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1967 if (pwret != 0) {
1968 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001969 switch (pwret) {
1970 case VD_SUCCESS:
1971 break;
1972 case VD_ERR_MISSING_VDC:
1973 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1974 break;
1975 case VD_ERR_MISSING_VOLD:
1976 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1977 break;
1978 }
nkk7171c6c502017-01-05 23:55:05 +02001979 }
1980#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1981
Ethan Yonker253368a2014-11-25 15:00:52 -06001982 // Unmount any partitions that were needed for decrypt
1983 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1984 if ((*iter)->Mount_To_Decrypt) {
1985 (*iter)->UnMount(false);
1986 }
1987 }
oshmouna82a7542018-04-10 17:45:55 +02001988 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001989
a39552696ff55ce2013-01-08 16:14:56 +00001990 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001991 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001992 return -1;
1993 }
a39552696ff55ce2013-01-08 16:14:56 +00001994
Dees_Troy5bf43922012-09-07 16:07:55 -04001995 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1996 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001997 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001998 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001999 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04002000 }
2001 return 0;
2002#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002003 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002004 return -1;
2005#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002006 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04002007}
2008
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002009int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002010 std::vector<TWPartition*>::iterator iter;
2011 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2012 if ((*iter)->Has_Data_Media) {
2013 if ((*iter)->Mount(true)) {
2014 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
2015 return -1;
2016 }
2017 }
2018 }
Dees_Troy1a650e62012-10-19 20:54:32 -04002019 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05002020 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002021 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002022}
2023
Ethan Yonker66a19492015-12-10 10:19:45 -06002024TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002025 std::vector<TWPartition*>::iterator iter = Partitions.begin();
2026
2027 if (!Path.empty()) {
2028 string Search_Path = TWFunc::Get_Root_Path(Path);
2029 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06002030 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002031 iter++;
2032 break;
2033 }
2034 }
2035 }
2036
2037 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002038 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
2039 // do nothing, do not return this type of partition
2040 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002041 return (*iter);
2042 }
2043 }
2044
2045 return NULL;
2046}
2047
Dees_Troyd21618c2012-10-14 18:48:49 -04002048int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04002049 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
2050
2051 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002052 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2053 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 -04002054 return false;
2055 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002056 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2057 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002058 return false;
2059
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002060 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002061 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002062 return false;
2063 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002064 return true;
2065}
2066
Dees_Troy8170a922012-09-18 15:40:25 -04002067int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002068 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002069 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002070
Ethan Yonker47360be2014-04-01 10:34:34 -05002071 string Lun_File_str = CUSTOM_LUN_FILE;
2072 size_t found = Lun_File_str.find("%");
2073 if (found != string::npos) {
2074 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2075 if (TWFunc::Path_Exists(lun_file))
2076 has_multiple_lun = true;
2077 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002078 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002079 if (!has_multiple_lun) {
2080 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2081 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2082 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002083 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002084 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002085 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2086 goto error_handle;
2087 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002088 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002089 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002090 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002091 }
2092 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002093 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002094 }
Dees_Troy8170a922012-09-18 15:40:25 -04002095 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002096 LOGINFO("Device has multiple lun files\n");
2097 TWPartition* Mount1;
2098 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002099 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002100 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002101 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002102 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2103 goto error_handle;
2104 }
Matt Moweree717062014-04-26 01:46:46 -05002105 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002106 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002107 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002108 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002109 }
2110 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002111 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002112 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002113 }
Dees_Troy8170a922012-09-18 15:40:25 -04002114 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002115 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002116 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002117 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002118error_handle:
2119 if (mtp_was_enabled)
2120 if (!Enable_MTP())
2121 Disable_MTP();
2122 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002123}
2124
2125int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002126 int index, ret;
2127 char lun_file[255], ch[2] = {0, 0};
2128 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002129
2130 for (index=0; index<2; index++) {
2131 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002132 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00002133 if (ret < 0) {
2134 break;
Dees_Troy8170a922012-09-18 15:40:25 -04002135 }
Dees_Troy8170a922012-09-18 15:40:25 -04002136 }
Dees_Troye58d5262012-09-21 12:27:57 -04002137 Mount_All_Storage();
2138 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002139 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002140 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002141 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002142 if (mtp_was_enabled)
2143 if (!Enable_MTP())
2144 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002145 if (ret < 0 && index == 0) {
2146 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2147 return false;
2148 } else {
2149 return true;
2150 }
Dees_Troy8170a922012-09-18 15:40:25 -04002151 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002152}
2153
2154void TWPartitionManager::Mount_All_Storage(void) {
2155 std::vector<TWPartition*>::iterator iter;
2156
2157 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2158 if ((*iter)->Is_Storage)
2159 (*iter)->Mount(false);
2160 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002161}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002162
Dees_Troyd0384ef2012-10-12 12:15:42 -04002163void TWPartitionManager::UnMount_Main_Partitions(void) {
2164 // Unmounts system and data if data is not data/media
2165 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002166 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002167
Mohd Faraze3948ec2020-08-14 01:40:59 +00002168 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002169
Mohd Faraze3948ec2020-08-14 01:40:59 +00002170 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2171 UnMount_By_Path (Get_Android_Root_Path(), true);
2172 Partition = Find_Partition_By_Path ("/product");
2173 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002174 if (!datamedia)
2175 UnMount_By_Path("/data", true);
2176
Mohd Faraze3948ec2020-08-14 01:40:59 +00002177 Partition = Find_Partition_By_Path ("/boot");
2178 if (Partition != NULL && Partition->Can_Be_Mounted)
2179 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002180}
2181
Dees_Troy9350b8d2012-09-27 12:38:38 -04002182int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002183 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002184 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 -04002185 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002186
Ethan Yonker74db1572015-10-28 12:44:49 -05002187 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002188
2189 // Locate and validate device to partition
2190 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2191
Ethan Yonker66a19492015-12-10 10:19:45 -06002192 if (SDCard->Is_Adopted_Storage)
2193 SDCard->Revert_Adopted();
2194
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002195 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002196 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002197 return false;
2198 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002199
2200 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002201 if (!SDCard->UnMount(true))
2202 return false;
2203 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2204 if (SDext != NULL) {
2205 if (!SDext->UnMount(true))
2206 return false;
2207 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002208 char* swappath = getenv("SWAPPATH");
2209 if (swappath != NULL) {
2210 LOGINFO("Unmounting swap at '%s'\n", swappath);
2211 umount(swappath);
2212 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002213
Ethan Yonker483e9f42016-01-11 22:21:18 -06002214 // Determine block device
2215 if (SDCard->Alternate_Block_Device.empty()) {
2216 SDCard->Find_Actual_Block_Device();
2217 Device = SDCard->Actual_Block_Device;
2218 // Just use the root block device
2219 Device.resize(strlen("/dev/block/mmcblkX"));
2220 } else {
2221 Device = SDCard->Alternate_Block_Device;
2222 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002223
2224 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002225 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002226
2227 DataManager::GetValue("tw_sdext_size", ext);
2228 DataManager::GetValue("tw_swap_size", swap);
2229 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2230 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002231 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);
2232
2233 // Determine partition sizes
2234 if (swap == 0 && ext == 0) {
2235 fat_str = "-0";
2236 } else {
2237 memset(temp, 0, sizeof(temp));
2238 sprintf(temp, "%i", fat_size);
2239 fat_str = temp;
2240 fat_str += "MB";
2241 }
2242 if (swap == 0) {
2243 ext_str = "-0";
2244 } else {
2245 memset(temp, 0, sizeof(temp));
2246 sprintf(temp, "%i", ext);
2247 ext_str = "+";
2248 ext_str += temp;
2249 ext_str += "MB";
2250 }
2251
Dees_Troy9350b8d2012-09-27 12:38:38 -04002252 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002253 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002254 return false;
2255 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002256
Ethan Yonker74db1572015-10-28 12:44:49 -05002257 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002258 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002259 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002260 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002261 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002262 Update_System_Details();
2263 return false;
2264 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002265 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002266 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 +00002267 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002268 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002269 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002270 return false;
2271 }
2272 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002273 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002274 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002275 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002276 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002277 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002278 Update_System_Details();
2279 return false;
2280 }
2281 }
2282 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002283 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002284 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 +00002285 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002286 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002287 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002288 Update_System_Details();
2289 return false;
2290 }
2291 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002292
2293 // Convert GPT to MBR
2294 Command = "sgdisk --gpttombr " + Device;
2295 if (TWFunc::Exec_Cmd(Command) != 0)
2296 LOGINFO("Failed to covert partition GPT to MBR\n");
2297
2298 // Tell the kernel to rescan the partition table
2299 int fd = open(Device.c_str(), O_RDONLY);
2300 ioctl(fd, BLKRRPART, 0);
2301 close(fd);
2302
2303 string format_device = Device;
2304 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2305 format_device += "p";
2306
2307 // Format new partitions to proper file system
2308 if (fat_size > 0) {
2309 Command = "mkfs.fat " + format_device + "1";
2310 TWFunc::Exec_Cmd(Command);
2311 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002312 if (ext > 0) {
2313 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002314 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2315 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2316 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2317 TWFunc::Exec_Cmd(Command);
2318 } else {
2319 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002320 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002321 }
2322 if (swap > 0) {
2323 Command = "mkswap " + format_device;
2324 if (ext > 0)
2325 Command += "3";
2326 else
2327 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002328 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002329 }
2330
Ethan Yonker483e9f42016-01-11 22:21:18 -06002331 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2332 if (SDCard->Mount(true)) {
2333 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2334 mkdir(TWRP_Folder.c_str(), 0777);
2335 DataManager::Flush();
2336 }
2337
Dees_Troy9350b8d2012-09-27 12:38:38 -04002338 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002339 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002340 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002341}
Dees_Troya13d74f2013-03-24 08:54:55 -05002342
2343void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2344 std::vector<TWPartition*>::iterator iter;
2345 if (ListType == "mount") {
2346 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002347 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002348 struct PartitionList part;
2349 part.Display_Name = (*iter)->Display_Name;
2350 part.Mount_Point = (*iter)->Mount_Point;
2351 part.selected = (*iter)->Is_Mounted();
2352 Partition_List->push_back(part);
2353 }
2354 }
2355 } else if (ListType == "storage") {
2356 char free_space[255];
2357 string Current_Storage = DataManager::GetCurrentStoragePath();
2358 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2359 if ((*iter)->Is_Storage) {
2360 struct PartitionList part;
2361 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2362 part.Display_Name = (*iter)->Storage_Name + " (";
2363 part.Display_Name += free_space;
2364 part.Display_Name += "MB)";
2365 part.Mount_Point = (*iter)->Storage_Path;
2366 if ((*iter)->Storage_Path == Current_Storage)
2367 part.selected = 1;
2368 else
2369 part.selected = 0;
2370 Partition_List->push_back(part);
2371 }
2372 }
2373 } else if (ListType == "backup") {
2374 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002375 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002376 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002377 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002378 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002379 Backup_Size = (*iter)->Backup_Size;
2380 if ((*iter)->Has_SubPartition) {
2381 std::vector<TWPartition*>::iterator subpart;
2382
2383 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2384 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2385 Backup_Size += (*subpart)->Backup_Size;
2386 }
2387 }
2388 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002389 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2390 part.Display_Name += backup_size;
2391 part.Display_Name += "MB)";
2392 part.Mount_Point = (*iter)->Backup_Path;
2393 part.selected = 0;
2394 Partition_List->push_back(part);
2395 }
2396 }
2397 } else if (ListType == "restore") {
2398 string Restore_List, restore_path;
2399 TWPartition* restore_part = NULL;
2400
2401 DataManager::GetValue("tw_restore_list", Restore_List);
2402 if (!Restore_List.empty()) {
2403 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2404 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2405 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002406 struct PartitionList part;
2407 if (restore_path.compare("ADB_Backup") == 0) {
2408 part.Display_Name = "ADB Backup";
2409 part.Mount_Point = "ADB Backup";
2410 part.selected = 1;
2411 Partition_List->push_back(part);
2412 break;
2413 }
Dees_Troy59df9262013-06-19 14:53:57 -05002414 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002415 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002416 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002417 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002418 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002419 part.Display_Name = restore_part->Backup_Display_Name;
2420 part.Mount_Point = restore_part->Backup_Path;
2421 part.selected = 1;
2422 Partition_List->push_back(part);
2423 }
2424 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002425 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002426 }
2427 start_pos = end_pos + 1;
2428 end_pos = Restore_List.find(";", start_pos);
2429 }
2430 }
2431 } else if (ListType == "wipe") {
2432 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002433 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002434 dalvik.Mount_Point = "DALVIK";
2435 dalvik.selected = 0;
2436 Partition_List->push_back(dalvik);
2437 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2438 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2439 struct PartitionList part;
2440 part.Display_Name = (*iter)->Display_Name;
2441 part.Mount_Point = (*iter)->Mount_Point;
2442 part.selected = 0;
2443 Partition_List->push_back(part);
2444 }
2445 if ((*iter)->Has_Android_Secure) {
2446 struct PartitionList part;
2447 part.Display_Name = (*iter)->Backup_Display_Name;
2448 part.Mount_Point = (*iter)->Backup_Path;
2449 part.selected = 0;
2450 Partition_List->push_back(part);
2451 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002452 if ((*iter)->Has_Data_Media) {
2453 struct PartitionList datamedia;
2454 datamedia.Display_Name = (*iter)->Storage_Name;
2455 datamedia.Mount_Point = "INTERNAL";
2456 datamedia.selected = 0;
2457 Partition_List->push_back(datamedia);
2458 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002459 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002460 } else if (ListType == "flashimg") {
2461 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2462 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2463 struct PartitionList part;
2464 part.Display_Name = (*iter)->Backup_Display_Name;
2465 part.Mount_Point = (*iter)->Backup_Path;
2466 part.selected = 0;
2467 Partition_List->push_back(part);
2468 }
2469 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002470 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2471 TWPartition* boot = Find_Partition_By_Path("/boot");
2472 if (boot) {
2473 // Allow flashing kernels and ramdisks
2474 struct PartitionList repack_ramdisk;
2475 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2476 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2477 repack_ramdisk.selected = 0;
2478 Partition_List->push_back(repack_ramdisk);
2479 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2480 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2481 repack_kernel.Mount_Point = "/repack_kernel";
2482 repack_kernel.selected = 0;
2483 Partition_List->push_back(repack_kernel);*/
2484 }
2485 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002486 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002487 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002488 }
2489}
2490
2491int TWPartitionManager::Fstab_Processed(void) {
2492 return Partitions.size();
2493}
Dees_Troyd93bda52013-07-03 19:55:19 +00002494
2495void TWPartitionManager::Output_Storage_Fstab(void) {
2496 std::vector<TWPartition*>::iterator iter;
2497 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002498 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002499 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002500
2501 if (cacheDir.empty()) {
2502 LOGINFO("Unable to find cache directory\n");
2503 return;
2504 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002505
bigbiff25d25b92020-06-19 16:07:38 -04002506 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002507 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002508
2509 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002510 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002511 return;
2512 }
2513
2514 // Iterate through all partitions
2515 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2516 if ((*iter)->Is_Storage) {
2517 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2518 strcpy(storage_partition, Temp.c_str());
2519 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2520 }
2521 }
2522 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002523}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002524
2525TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2526{
2527 TWPartition *res = NULL;
2528 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002529 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002530 continue;
2531
Matt Mowera8a89d12016-12-30 18:10:37 -06002532 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002533 return *iter;
2534
Matt Mowera8a89d12016-12-30 18:10:37 -06002535 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002536 res = *iter;
2537 }
2538 return res;
2539}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002540
2541bool TWPartitionManager::Enable_MTP(void) {
2542#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002543 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002544 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002545 return true;
2546 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002547
2548 int mtppipe[2];
2549
2550 if (pipe(mtppipe) < 0) {
2551 LOGERR("Error creating MTP pipe\n");
2552 return false;
2553 }
2554
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002555 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002556 property_get("sys.usb.config", old_value, "");
2557 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002558 char vendor[PROPERTY_VALUE_MAX];
2559 char product[PROPERTY_VALUE_MAX];
2560 property_set("sys.usb.config", "none");
2561 property_get("usb.vendor", vendor, "18D1");
2562 property_get("usb.product.mtpadb", product, "4EE2");
2563 string vendorstr = vendor;
2564 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002565 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2566 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002567 property_set("sys.usb.config", "mtp,adb");
2568 }
Matt Mower653a1702017-02-16 10:38:52 -06002569 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002570 * twrp set tw_mtp_debug 1
2571 */
2572 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002573 mtppid = mtp->forkserver(mtppipe);
2574 if (mtppid) {
2575 close(mtppipe[0]); // Host closes read side
2576 mtp_write_fd = mtppipe[1];
2577 DataManager::SetValue("tw_mtp_enabled", 1);
2578 Add_All_MTP_Storage();
2579 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002580 } else {
2581 close(mtppipe[0]);
2582 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002583 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002584 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002585 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002586#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002587 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002588#endif
2589 DataManager::SetValue("tw_mtp_enabled", 0);
2590 return false;
2591}
2592
Ethan Yonker1b039202015-01-30 10:08:48 -06002593void TWPartitionManager::Add_All_MTP_Storage(void) {
2594#ifdef TW_HAS_MTP
2595 std::vector<TWPartition*>::iterator iter;
2596
2597 if (!mtppid)
2598 return; // MTP is not enabled
2599
2600 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2601 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2602 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2603 }
2604#else
2605 return;
2606#endif
2607}
2608
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002609bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002610 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002611 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002612 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002613 if (strcmp(old_value, "adb") != 0) {
2614 char vendor[PROPERTY_VALUE_MAX];
2615 char product[PROPERTY_VALUE_MAX];
2616 property_set("sys.usb.config", "none");
2617 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002618 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002619 string vendorstr = vendor;
2620 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002621 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2622 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002623 usleep(2000);
2624 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002625#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002626 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002627 LOGINFO("Disabling MTP\n");
2628 int status;
2629 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002630 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002631 // We don't care about the exit value, but this prevents a zombie process
2632 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002633 close(mtp_write_fd);
2634 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002635 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002636#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002637 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002638#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002639 DataManager::SetValue("tw_mtp_enabled", 0);
2640 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002641#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002642 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002643}
Ethan Yonker726a0202014-12-16 20:01:38 -06002644
2645TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2646 std::vector<TWPartition*>::iterator iter;
2647
2648 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2649 if ((*iter)->MTP_Storage_ID == Storage_ID)
2650 return (*iter);
2651 }
2652 return NULL;
2653}
2654
2655bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2656#ifdef TW_HAS_MTP
2657 struct mtpmsg mtp_message;
2658
2659 if (!mtppid)
2660 return false; // MTP is disabled
2661
2662 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002663 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002664 return false;
2665 }
2666
2667 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002668 if (Part->MTP_Storage_ID == 0)
2669 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002670 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2671 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2672 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2673 mtp_message.storage_id = Part->MTP_Storage_ID;
2674 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002675 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002676 return false;
2677 } else {
2678 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2679 return true;
2680 }
2681 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2682 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2683 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002684 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2685 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2686 return false;
2687 }
2688 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2689 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2690 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2691 return false;
2692 }
2693 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002694 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002695 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 -06002696 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002697 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002698 return false;
2699 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002700 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002701 return true;
2702 }
2703 } else {
2704 LOGERR("Unknown MTP message type: %i\n", message_type);
2705 }
2706 } else {
2707 // This hopefully never happens as the error handling should
2708 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002709 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002710 }
2711 return true;
2712#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002713 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002714 DataManager::SetValue("tw_mtp_enabled", 0);
2715 return false;
2716#endif
2717}
2718
2719bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2720#ifdef TW_HAS_MTP
2721 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2722 if (Part) {
2723 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2724 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002725 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002726 }
2727#endif
2728 return false;
2729}
2730
2731bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2732#ifdef TW_HAS_MTP
2733 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2734 if (Part) {
2735 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2736 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002737 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002738 }
2739#endif
2740 return false;
2741}
2742
2743bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2744#ifdef TW_HAS_MTP
2745 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2746 if (Part) {
2747 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2748 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002749 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002750 }
2751#endif
2752 return false;
2753}
2754
2755bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2756#ifdef TW_HAS_MTP
2757 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2758 if (Part) {
2759 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2760 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002761 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002762 }
2763#endif
2764 return false;
2765}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002766
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002767bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002768 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002769 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002770 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002771 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002772 size_t start_pos = 0, end_pos = 0;
2773
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002774 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002775
bigbiff1f9e4842020-10-31 11:33:15 -04002776 Unlock_Block_Partitions();
2777
bigbiffce8f83c2015-12-12 18:30:21 -05002778 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2779 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2780
2781 if (!TWFunc::Path_Exists(full_filename)) {
2782 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002783 return false;
2784 }
bigbiffce8f83c2015-12-12 18:30:21 -05002785 if (!TWFunc::Path_Exists(full_filename)) {
2786 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002787 return false;
2788 }
2789 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002790
Ethan Yonker53796e72019-01-11 22:49:52 -06002791 DataManager::GetValue("tw_flash_partition", Flash_List);
2792 Repack_Type repack = REPLACE_NONE;
2793 if (Flash_List == "/repack_ramdisk;") {
2794 repack = REPLACE_RAMDISK;
2795 } else if (Flash_List == "/repack_kernel;") {
2796 repack = REPLACE_KERNEL;
2797 }
2798 if (repack != REPLACE_NONE) {
2799 Repack_Options_struct Repack_Options;
2800 Repack_Options.Type = repack;
2801 Repack_Options.Disable_Verity = false;
2802 Repack_Options.Disable_Force_Encrypt = false;
2803 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002804 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002805 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002806 PartitionSettings part_settings;
2807 part_settings.Backup_Folder = path;
2808 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2809 ProgressTracking progress(total_bytes);
2810 part_settings.progress = &progress;
2811 part_settings.adbbackup = false;
2812 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002813 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002814 if (!Flash_List.empty()) {
2815 end_pos = Flash_List.find(";", start_pos);
2816 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2817 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2818 flash_part = Find_Partition_By_Path(flash_path);
2819 if (flash_part != NULL) {
2820 partition_count++;
2821 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002822 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002823 return false;
2824 }
2825 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002826 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002827 return false;
2828 }
2829 start_pos = end_pos + 1;
2830 end_pos = Flash_List.find(";", start_pos);
2831 }
2832 }
2833
2834 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002835 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002836 return false;
2837 }
2838
2839 DataManager::SetProgress(0.0);
2840 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002841 flash_part->Backup_FileName = filename;
2842 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002843 return false;
2844 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002845 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002846 return false;
2847 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002848 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002849 return true;
2850}
Ethan Yonker74db1572015-10-28 12:44:49 -05002851
2852void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2853 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2854 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002855 if (part->Is_Adopted_Storage) {
2856 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2857 part->Backup_Display_Name = part->Display_Name;
2858 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2859 } else {
2860 part->Display_Name = gui_lookup(resource_name, default_value);
2861 part->Backup_Display_Name = part->Display_Name;
2862 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002863 }
2864}
2865
2866void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2867 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2868 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002869 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002870 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002871 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002872 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2873 } else {
2874 part->Display_Name = gui_lookup(resource_name, default_value);
2875 part->Backup_Display_Name = part->Display_Name;
2876 if (part->Is_Storage)
2877 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2878 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002879 }
2880}
2881
Ethan Yonker01f4e032017-02-03 15:30:52 -06002882void 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) {
2883 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2884 if (part) {
2885 if (part->Is_Adopted_Storage) {
2886 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2887 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2888 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2889 } else {
2890 part->Display_Name = gui_lookup(resource_name, default_value);
2891 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2892 if (part->Is_Storage)
2893 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2894 }
2895 }
2896}
2897
Ethan Yonker74db1572015-10-28 12:44:49 -05002898void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002899 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002900 Translate_Partition("/system", "system", "System");
2901 Translate_Partition("/system_image", "system_image", "System Image");
2902 Translate_Partition("/vendor", "vendor", "Vendor");
2903 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2904 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002905 Translate_Partition("/boot", "boot", "Boot");
2906 Translate_Partition("/recovery", "recovery", "Recovery");
2907 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002908 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002909 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2910 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2911 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2912 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002913 } else {
2914 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002915 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002916 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2917 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002918 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2919 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2920
2921 // Android secure is a special case
2922 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2923 if (part)
2924 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2925
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002926 std::vector<TWPartition*>::iterator sysfs;
2927 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2928 if (!(*sysfs)->Sysfs_Entry.empty()) {
2929 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2930 }
2931 }
2932
Ethan Yonker74db1572015-10-28 12:44:49 -05002933 // This updates the text on all of the storage selection buttons in the GUI
2934 DataManager::SetBackupFolder();
2935}
Ethan Yonker66a19492015-12-10 10:19:45 -06002936
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002937bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002938#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002939 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002940 if (!Mount_By_Path("/data", false)) {
2941 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002942 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002943 }
2944 LOGINFO("Decrypt adopted storage starting\n");
2945 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2946 xml_document<> *doc = NULL;
2947 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002948 string Primary_Storage_UUID = "";
2949 if (xmlFile != NULL) {
2950 LOGINFO("successfully loaded storage.xml\n");
2951 doc = new xml_document<>();
2952 doc->parse<0>(xmlFile);
2953 volumes = doc->first_node("volumes");
2954 if (volumes) {
2955 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2956 if (psuuid) {
2957 Primary_Storage_UUID = psuuid->value();
2958 }
2959 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002960 } else {
2961 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2962 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002963 }
2964 std::vector<TWPartition*>::iterator adopt;
2965 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
Peter Cai439d60c2019-10-17 08:49:10 +08002966 if ((*adopt)->Removable && !(*adopt)->Is_Present && (*adopt)->Adopted_Mount_Delay > 0) {
2967 // On some devices, the external mmc driver takes some time
2968 // to recognize the card, in which case the "actual block device"
2969 // would not have been found yet. We wait the specified delay
2970 // and then try again.
2971 LOGINFO("Sleeping %d seconds for adopted storage.\n", (*adopt)->Adopted_Mount_Delay);
2972 sleep((*adopt)->Adopted_Mount_Delay);
2973 (*adopt)->Find_Actual_Block_Device();
2974 }
2975
Ethan Yonker66a19492015-12-10 10:19:45 -06002976 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2977 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002978 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002979 if (volumes) {
2980 xml_node<>* volume = volumes->first_node("volume");
2981 while (volume) {
2982 xml_attribute<>* guid = volume->first_attribute("partGuid");
2983 if (guid) {
2984 string GUID = (*adopt)->Adopted_GUID.c_str();
2985 GUID.insert(8, "-");
2986 GUID.insert(13, "-");
2987 GUID.insert(18, "-");
2988 GUID.insert(23, "-");
2989
2990 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2991 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002992 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002993 (*adopt)->Storage_Name = attr->value();
2994 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2995 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2996 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2997 }
2998 attr = volume->first_attribute("fsUuid");
2999 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
3000 TWPartition* Dat = Find_Partition_By_Path("/data");
3001 if (Dat) {
3002 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
3003 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
3004 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
3005 Dat->Symlink_Mount_Point = "";
3006 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
3007 Dat->UnMount(false);
3008 Dat->Mount(false);
3009 (*adopt)->UnMount(false);
3010 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06003011 }
3012 }
3013 break;
3014 }
3015 }
3016 volume = volume->next_sibling("volume");
3017 }
3018 }
nkk71ffb02bd2017-06-04 23:12:16 +03003019 Update_System_Details();
3020 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06003021 }
3022 }
3023 }
3024 if (xmlFile) {
3025 doc->clear();
3026 delete doc;
3027 free(xmlFile);
3028 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003029 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06003030#else
3031 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003032 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003033#endif
3034}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003035
3036void TWPartitionManager::Remove_Partition_By_Path(string Path) {
3037 std::vector<TWPartition*>::iterator iter;
3038 string Local_Path = TWFunc::Get_Root_Path(Path);
3039
3040 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3041 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
3042 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3043 Partitions.erase(iter);
3044 return;
3045 }
3046 }
3047}
Ethan Yonker1b190162016-12-05 15:25:19 -06003048
3049void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3050 if (Slot != "A" && Slot != "B") {
3051 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3052 return;
3053 }
3054 if (Active_Slot_Display == Slot)
3055 return;
3056 LOGINFO("Setting active slot %s\n", Slot.c_str());
3057#ifdef AB_OTA_UPDATER
3058 if (!Active_Slot_Display.empty()) {
3059 const hw_module_t *hw_module;
3060 boot_control_module_t *module;
3061 int ret;
3062 ret = hw_get_module("bootctrl", &hw_module);
3063 if (ret != 0) {
3064 LOGERR("Error getting bootctrl module.\n");
3065 } else {
3066 module = (boot_control_module_t*) hw_module;
3067 module->init(module);
3068 int slot_number = 0;
3069 if (Slot == "B")
3070 slot_number = 1;
3071 if (module->setActiveBootSlot(module, slot_number))
3072 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3073 }
3074 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
3075 }
3076#else
3077 LOGERR("Boot slot feature not present\n");
3078#endif
3079 Active_Slot_Display = Slot;
3080 if (Fstab_Processed())
3081 Update_System_Details();
3082}
3083string TWPartitionManager::Get_Active_Slot_Suffix() {
3084 if (Active_Slot_Display == "A")
3085 return "_a";
3086 return "_b";
3087}
3088string TWPartitionManager::Get_Active_Slot_Display() {
3089 return Active_Slot_Display;
3090}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003091
Captain Throwback9d6feb52018-07-27 10:05:24 -04003092string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04003093 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003094}
3095
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003096void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3097 std::vector<TWPartition*>::iterator iter;
3098
3099 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3100 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3101 TWPartition *part = *iter;
3102 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3103 (*iter)->UnMount(false);
3104 rmdir((*iter)->Mount_Point.c_str());
3105 iter = Partitions.erase(iter);
3106 delete part;
3107 } else {
3108 iter++;
3109 }
3110 }
3111}
3112
3113void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3114 std::vector<TWPartition*>::iterator iter;
3115
3116 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3117 if (!(*iter)->Sysfs_Entry.empty()) {
3118 string device;
3119 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3120 if (wildcard != string::npos) {
3121 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3122 } else {
3123 device = (*iter)->Sysfs_Entry;
3124 }
3125 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3126 // Found a match
3127 if (uevent_data.action == "add") {
3128 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3129 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3130 (*iter)->Is_Present = true;
3131 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3132 if (!Decrypt_Adopted()) {
3133 LOGINFO("No adopted storage so finding actual block device\n");
3134 (*iter)->Find_Actual_Block_Device();
3135 }
3136 return;
3137 } else if (uevent_data.action == "remove") {
3138 (*iter)->Is_Present = false;
3139 (*iter)->Primary_Block_Device = "";
3140 (*iter)->Actual_Block_Device = "";
3141 Remove_Uevent_Devices((*iter)->Mount_Point);
3142 return;
3143 }
3144 }
3145 }
3146 }
bigbiffee7b7ff2020-03-23 15:08:27 -04003147
3148 if (!PartitionManager.Get_Super_Status())
3149 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 -06003150}
3151
3152void TWPartitionManager::setup_uevent() {
3153 struct sockaddr_nl nls;
3154
3155 if (uevent_pfd.fd >= 0) {
3156 LOGINFO("uevent already set up\n");
3157 return;
3158 }
3159
3160 // Open hotplug event netlink socket
3161 memset(&nls,0,sizeof(struct sockaddr_nl));
3162 nls.nl_family = AF_NETLINK;
3163 nls.nl_pid = getpid();
3164 nls.nl_groups = -1;
3165 uevent_pfd.events = POLLIN;
3166 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3167 if (uevent_pfd.fd==-1) {
3168 LOGERR("uevent not root\n");
3169 return;
3170 }
3171
3172 // Listen to netlink socket
3173 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3174 LOGERR("Bind failed\n");
3175 return;
3176 }
3177 set_select_fd();
3178 Coldboot();
3179}
3180
3181Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3182 Uevent_Block_Data ret;
3183 ret.subsystem = "";
3184 char *ptr = buf;
3185 const char *end = buf + len;
3186
3187 buf[len - 1] = '\0';
3188 while (ptr < end) {
3189 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3190 ptr += strlen("ACTION=");
3191 ret.action = ptr;
3192 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3193 ptr += strlen("SUBSYSTEM=");
3194 ret.subsystem = ptr;
3195 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3196 ptr += strlen("DEVTYPE=");
3197 ret.type = ptr;
3198 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3199 ptr += strlen("DEVPATH=");
3200 ret.sysfs_path += ptr;
3201 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3202 ptr += strlen("DEVNAME=");
3203 ret.block_device += ptr;
3204 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3205 ptr += strlen("MAJOR=");
3206 ret.major = atoi(ptr);
3207 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3208 ptr += strlen("MINOR=");
3209 ret.minor = atoi(ptr);
3210 }
3211 ptr += strlen(ptr) + 1;
3212 }
3213 return ret;
3214}
3215
3216void TWPartitionManager::read_uevent() {
3217 char buf[1024];
3218
3219 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3220 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003221 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003222 return;
3223 }
3224 /*int i = 0; // Print all uevent output for test /debug
3225 while (i<len) {
3226 printf("%s\n", buf+i);
3227 i += strlen(buf+i)+1;
3228 }*/
3229 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3230 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3231 PartitionManager.Handle_Uevent(uevent_data);
3232 }
3233}
3234
3235void TWPartitionManager::close_uevent() {
3236 if (uevent_pfd.fd > 0)
3237 close(uevent_pfd.fd);
3238 uevent_pfd.fd = -1;
3239}
3240
3241void TWPartitionManager::Add_Partition(TWPartition* Part) {
3242 Partitions.push_back(Part);
3243}
3244
3245void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3246 string Real_Path = Path;
3247 char real_path[PATH_MAX];
3248 if (realpath(Path.c_str(), &real_path[0])) {
3249 string Real_Path = real_path;
3250 std::vector<string>::iterator iter;
3251 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3252 if (Real_Path.find((*iter)) != string::npos) {
3253 string Write_Path = Real_Path + "/uevent";
3254 if (TWFunc::Path_Exists(Write_Path)) {
3255 const char* write_val = "add\n";
3256 TWFunc::write_to_file(Write_Path, write_val);
3257 break;
3258 }
3259 }
3260 }
3261 }
3262
3263 DIR* d = opendir(Path.c_str());
3264 if (d != NULL) {
3265 struct dirent* de;
3266 while ((de = readdir(d)) != NULL) {
3267 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3268 continue;
3269 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3270 continue;
3271
3272 string item = Path + "/";
3273 item.append(de->d_name);
3274 Coldboot_Scan(sysfs_entries, item, depth + 1);
3275 }
3276 closedir(d);
3277 }
3278}
3279
3280void TWPartitionManager::Coldboot() {
3281 std::vector<TWPartition*>::iterator iter;
3282 std::vector<string> sysfs_entries;
3283
3284 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3285 if (!(*iter)->Sysfs_Entry.empty()) {
3286 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3287 if (wildcard_pos == string::npos)
3288 wildcard_pos = (*iter)->Sysfs_Entry.size();
3289 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3290 }
3291 }
3292
3293 if (sysfs_entries.size() > 0)
3294 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3295}
Ethan Yonker53796e72019-01-11 22:49:52 -06003296
3297bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3298 if (TWFunc::Path_Exists(Folder))
3299 TWFunc::removeDir(Folder, false);
3300 return TWFunc::Recursive_Mkdir(Folder);
3301}
3302
bigbiffee7b7ff2020-03-23 15:08:27 -04003303bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3304 Fstab fstab;
3305 std::string bare_partition_name;
3306
3307 if (twrpPart->Get_Mount_Point() == "/system_root")
3308 bare_partition_name = "system";
3309 else
3310 bare_partition_name = TWFunc::Remove_Beginning_Slash(twrpPart->Get_Mount_Point());
3311
3312 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3313
3314 std::string blk_device_partition;
3315#ifdef AB_OTA_UPDATER
3316 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3317#else
3318 blk_device_partition = bare_partition_name;
3319#endif
3320
3321 FstabEntry fstabEntry = {
3322 .blk_device = blk_device_partition,
3323 .mount_point = twrpPart->Get_Mount_Point(),
3324 .fs_type = twrpPart->Current_File_System,
3325 .fs_mgr_flags.logical = twrpPart->Is_Super,
3326 };
3327
3328 fstab.emplace_back(fstabEntry);
3329 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
Captain Throwbackc6939102021-04-06 12:57:30 -04003330 LOGINFO("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
bigbiffee7b7ff2020-03-23 15:08:27 -04003331 return false;
3332 }
3333
bigbiff32cbabe2020-04-12 19:16:19 -04003334 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3335 usleep(100);
3336 }
3337
bigbiffee7b7ff2020-03-23 15:08:27 -04003338 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3339 twrpPart->Update_Size(true);
3340 twrpPart->Change_Mount_Read_Only(true);
3341 twrpPart->Set_Can_Be_Backed_Up(false);
3342 twrpPart->Set_Can_Be_Wiped(false);
3343 return true;
3344}
3345
3346bool TWPartitionManager::Prepare_All_Super_Volumes() {
3347 bool status = true;
3348 std::vector<TWPartition*>::iterator iter;
3349
3350 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3351 if ((*iter)->Is_Super) {
3352 if (!Prepare_Super_Volume(*iter)) {
3353 status = false;
3354 }
3355 PartitionManager.Output_Partition(*iter);
3356 }
3357 }
3358 Update_System_Details();
3359 return status;
3360}
3361
3362bool TWPartitionManager::Is_Super_Partition(const char* fstab_line) {
Mohd Faraze3948ec2020-08-14 01:40:59 +00003363 if (!Get_Super_Status())
3364 return false;
bigbiffee7b7ff2020-03-23 15:08:27 -04003365 std::vector<std::string> super_partition_list = {"system", "vendor", "odm", "product", "system_ext"};
3366
3367 for (auto&& fstab_partition_check: super_partition_list) {
3368 if (strncmp(fstab_line, fstab_partition_check.c_str(), fstab_partition_check.size()) == 0) {
3369 DataManager::SetValue(TW_IS_SUPER, "1");
3370 return true;
3371 }
3372 }
3373 return false;
3374}
3375
3376std::string TWPartitionManager::Get_Super_Partition() {
3377 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
3378 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
3379 return "/dev/block/by-name/" + super_device;
3380}
3381
3382void TWPartitionManager::Setup_Super_Devices() {
3383 std::string superPart = Get_Super_Partition();
3384 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003385}
3386
3387void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003388 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003389 std::string superPart = Get_Super_Partition();
3390
3391 superPartition->Backup_Path = "/super";
3392 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003393 superPartition->Actual_Block_Device = superPart;
3394 superPartition->Alternate_Block_Device = superPart;
Captain Throwback8e70a112021-04-06 16:39:45 -04003395#ifdef BOARD_SUPER_PARTITION_PARTITION_LIST
3396 superPartition->Backup_Display_Name = "Super (" BOARD_SUPER_PARTITION_PARTITION_LIST ")";
Ian Macdonald160e8d32020-09-29 20:47:31 +02003397#else
3398 superPartition->Backup_Display_Name = "Super";
3399#endif
bigbiffee7b7ff2020-03-23 15:08:27 -04003400 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003401 superPartition->Current_File_System = "emmc";
3402 superPartition->Can_Be_Backed_Up = true;
3403 superPartition->Is_Present = true;
3404 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003405 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003406 Add_Partition(superPartition);
3407 PartitionManager.Output_Partition(superPartition);
bigbiffee7b7ff2020-03-23 15:08:27 -04003408}
3409
3410bool TWPartitionManager::Get_Super_Status() {
bigbiffdf8436b2020-08-30 16:22:34 -04003411 std::string fastboot_mode = android::base::GetProperty("sys.usb.config", "");
3412 if (fastboot_mode == "fastboot") {
3413 return false;
3414 }
3415 else
3416 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003417}
bigbiff25d25b92020-06-19 16:07:38 -04003418
3419bool TWPartitionManager::Recreate_Logs_Dir() {
3420#ifdef TW_INCLUDE_FBE
3421 struct passwd pd;
3422 struct passwd *pwdptr = &pd;
3423 struct passwd *tempPd;
3424 char pwdBuf[512];
3425 int uid = 0, gid = 0;
3426
3427 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3428 LOGERR("unable to get system user id\n");
3429 return false;
3430 } else {
3431 struct group grp;
3432 struct group *grpptr = &grp;
3433 struct group *tempGrp;
3434 char grpBuf[512];
3435
3436 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3437 LOGERR("unable to get cache group id\n");
3438 return false;
3439 } else {
3440 uid = pd.pw_uid;
3441 gid = grp.gr_gid;
3442 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3443 abLogsRecoveryDir += "/recovery/";
3444
3445 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3446 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3447 return false;
3448 }
3449 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3450 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3451 return false;
3452 }
3453 }
3454 }
3455#endif
3456 return true;
3457}
bigbiff1f9e4842020-10-31 11:33:15 -04003458
3459void TWPartitionManager::Unlock_Block_Partitions() {
3460 int fd, OFF = 0;
3461
3462 const std::string block_path = "/dev/block/";
3463 DIR* d = opendir(block_path.c_str());
3464 if (d != NULL) {
3465 struct dirent* de;
3466 while ((de = readdir(d)) != NULL) {
3467 if (de->d_type == DT_BLK) {
3468 std::string block_device = block_path + de->d_name;
bigbiff1f9e4842020-10-31 11:33:15 -04003469 if ((fd = open(block_device.c_str(), O_RDONLY | O_CLOEXEC)) < 0) {
3470 LOGERR("unable to open block device %s: %s\n", block_device.c_str(), strerror(errno));
3471 continue;
3472 }
3473 if (ioctl(fd, BLKROSET, &OFF) == -1) {
3474 LOGERR("Unable to unlock %s for flashing: %s\n", block_device.c_str());
3475 continue;
3476 }
3477 close(fd);
3478 }
3479 }
3480 closedir(d);
3481 }
bigbiffaf253cd2020-12-06 16:50:55 -05003482}