blob: f741cb3785464034a6b4ceb570bc7eaef0f1cc77 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffaed1bdf2021-08-03 18:21:39 -04002 Copyright 2014 to 2021 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/stat.h>
23#include <sys/vfs.h>
24#include <unistd.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060025#include <map>
Dees_Troy5bf43922012-09-07 16:07:55 -040026#include <vector>
Dees_Troy63c8df72012-09-10 14:02:05 -040027#include <dirent.h>
28#include <time.h>
Dees_Troy8170a922012-09-18 15:40:25 -040029#include <errno.h>
30#include <fcntl.h>
bigbiff25d25b92020-06-19 16:07:38 -040031#include <grp.h>
32#include <pwd.h>
bigbiffce8f83c2015-12-12 18:30:21 -050033#include <zlib.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050034#include <iostream>
35#include <iomanip>
Ethan Yonker8613dc02014-09-11 09:28:20 -050036#include <sys/wait.h>
Ethan Yonker483e9f42016-01-11 22:21:18 -060037#include <linux/fs.h>
38#include <sys/mount.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060039#include <sys/poll.h>
40#include <sys/socket.h>
bigbiffcfa875c2021-06-20 16:20:27 -040041#include <sys/stat.h>
42#include <sys/types.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060043#include <linux/types.h>
44#include <linux/netlink.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040045#include <android-base/chrono_utils.h>
46#include <android-base/file.h>
47#include <android-base/logging.h>
bigbiff7ba75002020-04-11 20:47:09 -040048#include <android-base/properties.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040049#include <android-base/strings.h>
50#include <fstab/fstab.h>
51#include <fs_avb/fs_avb.h>
52#include <fs_mgr.h>
53#include <fs_mgr_dm_linear.h>
54#include <fs_mgr_overlayfs.h>
bigbiffcfa875c2021-06-20 16:20:27 -040055#include <fs_mgr/roots.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040056#include <libgsi/libgsi.h>
57#include <liblp/liblp.h>
bigbiffcfa875c2021-06-20 16:20:27 -040058#include <libgsi/libgsi.h>
59#include <liblp/builder.h>
60#include <libsnapshot/snapshot.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060061
Dees_Troy51a0e822012-09-05 15:24:24 -040062#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000063#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040064#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040065#include "data.hpp"
bigbiffaed1bdf2021-08-03 18:21:39 -040066#include "startupArgs.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040067#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060068#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060069#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060070#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050071#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050072#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060073#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040074#include "twrpDigestDriver.hpp"
bigbiffad58e1b2020-07-06 20:24:34 -040075#include "twrpRepacker.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050076#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040077
Mohd Farazfe8bcd42023-08-26 20:50:26 +053078#ifdef TW_LOAD_VENDOR_MODULES
79#include "kernel_module_loader.hpp"
80#endif
81
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040082#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050083#ifdef TW_HAS_LEGACY_MTP
84#include "mtp/legacy/mtp_MtpServer.hpp"
85#include "mtp/legacy/twrpMtp.hpp"
86#include "mtp/legacy/MtpMessage.hpp"
87#else
88#include "mtp/ffs/mtp_MtpServer.hpp"
89#include "mtp/ffs/twrpMtp.hpp"
90#include "mtp/ffs/MtpMessage.hpp"
91#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040092#endif
93
Dees Troy6f6441d2014-01-23 02:07:03 +000094extern "C" {
95 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050096 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000097}
98
Dees_Troy5bf43922012-09-07 16:07:55 -040099#ifdef TW_INCLUDE_CRYPTO
bigbiffdf53b6c2022-01-17 19:31:52 -0500100// #include "crypto/fde/cryptfs.h"
bigbiff7ba75002020-04-11 20:47:09 -0400101#include "gui/rapidxml.hpp"
102#include "gui/pages.hpp"
103#ifdef TW_INCLUDE_FBE
bigbiffa957f072021-03-07 18:20:29 -0500104#include "Decrypt.h"
bigbiff7ba75002020-04-11 20:47:09 -0400105#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
106 #ifdef USE_FSCRYPT
bigbiffdf53b6c2022-01-17 19:31:52 -0500107 #include "cryptfs.h"
108 #include "fscrypt-common.h"
bigbiffa957f072021-03-07 18:20:29 -0500109 #include "MetadataCrypt.h"
bigbiffadc599e2020-05-28 19:36:30 +0000110 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400111#endif
112#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400113#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400114
Ethan Yonker1b190162016-12-05 15:25:19 -0600115#ifdef AB_OTA_UPDATER
dianlujitaoa90dc462021-12-16 16:56:26 +0800116#include <android/hardware/boot/1.0/IBootControl.h>
117using android::hardware::boot::V1_0::CommandResult;
118using android::hardware::boot::V1_0::IBootControl;
Ethan Yonker1b190162016-12-05 15:25:19 -0600119#endif
120
bigbiffcfa875c2021-06-20 16:20:27 -0400121using android::fs_mgr::DestroyLogicalPartition;
bigbiffee7b7ff2020-03-23 15:08:27 -0400122using android::fs_mgr::Fstab;
123using android::fs_mgr::FstabEntry;
bigbiffcfa875c2021-06-20 16:20:27 -0400124using android::fs_mgr::MetadataBuilder;
Ethan Yonker6277c792014-09-15 14:54:30 -0500125
bigbiffee7b7ff2020-03-23 15:08:27 -0400126extern bool datamedia;
Noah Jacobson81d638d2019-04-28 00:10:07 -0400127std::vector<users_struct> Users_List;
128
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100129std::string additional_fstab = "/etc/additional.fstab";
130
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500131TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400132 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600133 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600134 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500135 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600136#ifdef AB_OTA_UPDATER
137 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500138 property_get("ro.boot.slot_suffix", slot_suffix, "error");
139 if (strcmp(slot_suffix, "error") == 0)
140 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600141 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500142 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600143 Set_Active_Slot("A");
144 else
145 Set_Active_Slot("B");
146#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500147}
148
Captain Throwback37c3aef2021-10-06 11:38:18 -0400149void TWPartitionManager::Set_Crypto_State() {
150 char crypto_state[PROPERTY_VALUE_MAX];
151 property_get("ro.crypto.state", crypto_state, "error");
152 if (strcmp(crypto_state, "error") == 0)
153 property_set("ro.crypto.state", "encrypted");
154}
155
156int TWPartitionManager::Set_Crypto_Type(const char* crypto_type) {
157 char type_prop[PROPERTY_VALUE_MAX];
158 property_get("ro.crypto.type", type_prop, "error");
159 if (strcmp(type_prop, "error") == 0)
160 property_set("ro.crypto.type", crypto_type);
Captain Throwback18aea272020-10-29 12:43:17 -0400161 // Sleep for a bit so that services can start if needed
162 sleep(1);
163 return 0;
164}
165
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100166void inline Reset_Prop_From_Partition(std::string prop, std::string def, TWPartition *ven, TWPartition *odm) {
167 bool prop_on_odm = false, prop_on_vendor = false;
168 string prop_value;
169 if (odm) {
170 string odm_prop = TWFunc::Partition_Property_Get(prop, PartitionManager, "/odm", "etc/build.prop");
171 if (!odm_prop.empty()) {
172 prop_on_odm = true;
173 if (TWFunc::Property_Override(prop, odm_prop) == NOT_AVAILABLE) {
174 LOGERR("Unable to override '%s' due to missing libresetprop\n", prop.c_str());
175 } else {
176 prop_value = android::base::GetProperty(prop, "");
177 LOGINFO("Setting '%s' to '%s' from /odm/etc/build.prop\n", prop.c_str(), prop_value.c_str());
178 }
179 }
180 }
181 if (ven) {
182 string vendor_prop = TWFunc::Partition_Property_Get(prop, PartitionManager, "/vendor", "build.prop");
183 if (!vendor_prop.empty()) {
184 prop_on_vendor = true;
185 if (TWFunc::Property_Override(prop, vendor_prop) == NOT_AVAILABLE) {
186 LOGERR("Unable to override '%s' due to missing libresetprop\n", prop.c_str());
187 } else {
188 prop_value = android::base::GetProperty(prop, "");
189 LOGINFO("Setting '%s' to '%s' from /vendor/build.prop\n", prop.c_str(), prop_value.c_str());
190 }
191 }
192 }
193 if (!prop_on_odm && !prop_on_vendor && !def.empty()) {
194 if (TWFunc::Property_Override(prop, def) == NOT_AVAILABLE) {
195 LOGERR("Unable to override '%s' due to missing libresetprop\n", prop.c_str());
196 } else {
197 prop_value = android::base::GetProperty(prop, "");
198 LOGINFO("Setting '%s' to default value (%s)\n", prop.c_str(), prop_value.c_str());
199 }
200 }
201 prop_value = android::base::GetProperty(prop, "");
202 if (!prop_on_odm && !prop_on_vendor && !prop_value.empty() && def.empty()) {
203 if(TWFunc::Delete_Property(prop) == NOT_AVAILABLE) {
204 LOGERR("Unable to delete '%s' due to missing libresetprop\n", prop.c_str());
205 } else {
206 LOGINFO("Deleting property '%s'\n", prop.c_str());
207 }
208 }
209}
210
bigbiff22851b92021-09-01 16:46:57 -0400211int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool recovery_mode) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400212 FILE *fstabFile;
213 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100214 bool parse_userdata = false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600215 std::map<string, Flags_Map> twrp_flags;
216
217 fstabFile = fopen("/etc/twrp.flags", "rt");
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100218 if (Get_Super_Status()) {
219 Setup_Super_Devices();
220 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600221 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200222 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600223 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600224 size_t line_size = strlen(fstab_line);
225 if (fstab_line[line_size - 1] != '\n')
226 fstab_line[line_size] = '\n';
227 Flags_Map line_flags;
228 line_flags.Primary_Block_Device = "";
229 line_flags.Alternate_Block_Device = "";
230 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
231 if (!line_flags.fstab_line) {
232 LOGERR("malloc error on line_flags.fstab_line\n");
233 return false;
234 }
235 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
236 bool found_separator = false;
237 char *fs_loc = NULL;
238 char *block_loc = NULL;
239 char *flags_loc = NULL;
240 size_t index, item_index = 0;
241 for (index = 0; index < line_size; index++) {
242 if (fstab_line[index] <= 32) {
243 fstab_line[index] = '\0';
244 found_separator = true;
245 } else if (found_separator) {
246 if (item_index == 0) {
247 fs_loc = fstab_line + index;
248 } else if (item_index == 1) {
249 block_loc = fstab_line + index;
250 } else if (item_index > 1) {
251 char *ptr = fstab_line + index;
252 if (*ptr == '/') {
253 line_flags.Alternate_Block_Device = ptr;
254 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
255 flags_loc = ptr;
256 // Once we find the flags=, we're done scanning the line
257 break;
258 }
259 }
260 found_separator = false;
261 item_index++;
262 }
263 }
264 if (block_loc)
265 line_flags.Primary_Block_Device = block_loc;
266 if (fs_loc)
267 line_flags.File_System = fs_loc;
268 if (flags_loc)
269 line_flags.Flags = flags_loc;
270 string Mount_Point = fstab_line;
271 twrp_flags[Mount_Point] = line_flags;
272 memset(fstab_line, 0, sizeof(fstab_line));
273 }
274 fclose(fstabFile);
275 }
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100276 TWPartition *data = NULL;
277 TWPartition *meta = NULL;
278parse:
Dees_Troy5bf43922012-09-07 16:07:55 -0400279 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100280 if (!parse_userdata && fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000281 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400282 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600283 } else
284 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400285
286 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600287 if (strstr(fstab_line, "swap"))
288 continue; // Skip swap in recovery
289
bigbiff998f8392021-08-06 19:19:33 -0400290 if (fstab_line[0] == '#')
291 continue;
292
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100293 if (parse_userdata) {
294 if (strstr(fstab_line, "/metadata") && !strstr(fstab_line, "/data")) {
sekaiacg01ac7722023-08-01 09:32:00 +0800295 if (meta) {
296 Partitions.erase(std::find(Partitions.begin(), Partitions.end(), meta));
297 delete meta;
298 meta = NULL;
299 }
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100300 } else if (strstr(fstab_line, "/data")) {
sekaiacg01ac7722023-08-01 09:32:00 +0800301 if (data) {
302 Partitions.erase(std::find(Partitions.begin(), Partitions.end(), data));
303 delete data;
304 data = NULL;
305 }
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100306 } else {
307 continue;
308 }
309 }
310
311
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600312 size_t line_size = strlen(fstab_line);
313 if (fstab_line[line_size - 1] != '\n')
314 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400315
Matt Mower2b2dd152016-04-26 11:24:08 -0500316 TWPartition* partition = new TWPartition();
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100317 if (partition->Process_Fstab_Line(fstab_line, Display_Error, parse_userdata ? NULL : &twrp_flags)) {
318 if (partition->Mount_Point == "/data") data = partition;
319 if (partition->Mount_Point == "/metadata") meta = partition;
320 if (partition->Is_Super && !Prepare_Super_Volume(partition)) {
321 goto clear;
322 }
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500323 Partitions.push_back(partition);
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100324 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500325 else
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100326clear:
Dees_Troy5bf43922012-09-07 16:07:55 -0400327 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500328
329 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400330 }
331 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500332
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100333 if (!parse_userdata && twrp_flags.size() > 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600334 LOGINFO("Processing remaining twrp.flags\n");
335 // Add any items from twrp.flags that did not exist in the recovery.fstab
336 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
337 if (Find_Partition_By_Path(mapit->first) == NULL) {
338 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400339 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600340 Partitions.push_back(partition);
341 else
342 delete partition;
343 }
344 if (mapit->second.fstab_line)
345 free(mapit->second.fstab_line);
346 mapit->second.fstab_line = NULL;
347 }
348 }
Mohd Farazfe8bcd42023-08-26 20:50:26 +0530349
350#ifdef TW_LOAD_VENDOR_MODULES
351 KernelModuleLoader::Load_Vendor_Modules();
352#endif
353
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100354 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
355 TWPartition* odm = PartitionManager.Find_Partition_By_Path("/odm");
Mohd Farazfe8bcd42023-08-26 20:50:26 +0530356 if (recovery_mode && !parse_userdata) {
Mohd Farazec370452023-08-28 16:51:35 +0530357 if (ven) ven->Mount(Display_Error);
358 if (odm) odm->Mount(Display_Error);
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100359 if (TWFunc::Find_Fstab(Fstab_Filename)) {
360 string service;
361 LOGINFO("Fstab: %s\n", Fstab_Filename.c_str());
362 TWFunc::copy_file(Fstab_Filename, additional_fstab, 0600, false);
363 Fstab_Filename = additional_fstab;
364 property_set("fstab.additional", "1");
365 TWFunc::Get_Service_From(ven, "keymaster", service);
Captain Throwback500c3d22023-08-28 17:20:35 -0400366 LOGINFO("Keymaster version: '%s'\n", TWFunc::Get_Version_From_Service(service).c_str());
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100367 property_set("keymaster_ver", TWFunc::Get_Version_From_Service(service).c_str());
368 parse_userdata = true;
369 Reset_Prop_From_Partition("ro.crypto.dm_default_key.options_format.version", "", ven, odm);
370 Reset_Prop_From_Partition("ro.crypto.volume.metadata.method", "", ven, odm);
371 Reset_Prop_From_Partition("ro.crypto.volume.options", "", ven, odm);
372 Reset_Prop_From_Partition("external_storage.projid.enabled", "", ven, odm);
373 Reset_Prop_From_Partition("external_storage.casefold.enabled", "", ven, odm);
374 Reset_Prop_From_Partition("external_storage.sdcardfs.enabled", "", ven, odm);
Mohd Faraz981118d2023-09-11 02:58:18 +0530375
376 if (ven) ven->UnMount(Display_Error);
377 if (odm) odm->UnMount(Display_Error);
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100378 goto parse;
379 } else {
Mohd Faraz981118d2023-09-11 02:58:18 +0530380 if (ven) ven->UnMount(Display_Error);
381 if (odm) odm->UnMount(Display_Error);
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100382 LOGINFO("Unable to parse vendor fstab\n");
383 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000384 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600385 LOGINFO("Done processing fstab files\n");
386
bigbiff7ba75002020-04-11 20:47:09 -0400387 return true;
388}
389
bigbiff22851b92021-09-01 16:46:57 -0400390void TWPartitionManager::Setup_Fstab_Partitions(bool Display_Error) {
391 TWPartition* settings_partition = NULL;
392 TWPartition* andsec_partition = NULL;
393 std::vector<TWPartition*>::iterator iter;
394 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
395
396 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
397 (*iter)->Partition_Post_Processing(Display_Error);
398
399 if ((*iter)->Is_Storage) {
400 ++storageid;
401 (*iter)->MTP_Storage_ID = storageid;
402 }
403
404 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
405 settings_partition = (*iter);
406 else
407 (*iter)->Is_Settings_Storage = false;
408
409 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
410 andsec_partition = (*iter);
411 else
412 (*iter)->Has_Android_Secure = false;
bigbiff22851b92021-09-01 16:46:57 -0400413 }
414
me-cafebabed63fcaa2022-07-28 03:19:20 +0800415 Unlock_Block_Partitions();
416
bigbiff22851b92021-09-01 16:46:57 -0400417 //Setup Apex before decryption
418 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
419 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
420 if (sys) {
421 if (sys->Get_Super_Status()) {
Mohd Farazec370452023-08-28 16:51:35 +0530422 sys->Mount(Display_Error);
bigbiff22851b92021-09-01 16:46:57 -0400423 if (ven) {
Mohd Farazec370452023-08-28 16:51:35 +0530424 ven->Mount(Display_Error);
bigbiff22851b92021-09-01 16:46:57 -0400425 }
426 #ifdef TW_EXCLUDE_APEX
427 LOGINFO("Apex is disabled in this build\n");
428 #else
429 twrpApex apex;
430 if (!apex.loadApexImages()) {
431 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
432 property_set("twrp.apex.loaded", "false");
433 } else {
434 property_set("twrp.apex.loaded", "true");
435 }
436 TWFunc::check_and_run_script("/sbin/resyncapex.sh", "apex");
437 #endif
438 }
439 }
440 #ifndef USE_VENDOR_LIBS
441 if (ven)
Mohd Farazec370452023-08-28 16:51:35 +0530442 ven->UnMount(Display_Error);
bigbiff22851b92021-09-01 16:46:57 -0400443 if (sys)
Mohd Farazec370452023-08-28 16:51:35 +0530444 sys->UnMount(Display_Error);
bigbiff22851b92021-09-01 16:46:57 -0400445 #endif
446
447 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) {
448 // Attempt to automatically identify /data/media emulated storage devices
449 TWPartition* Dat = Find_Partition_By_Path("/data");
450 if (Dat) {
451 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
452 datamedia = true;
453 Dat->Setup_Data_Media();
454 settings_partition = Dat;
455 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
456 ++storageid;
457 Dat->MTP_Storage_ID = storageid;
458 }
459 }
460 if (!settings_partition) {
461 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
462 if ((*iter)->Is_Storage) {
463 settings_partition = (*iter);
464 break;
465 }
466 }
467 if (!settings_partition)
468 LOGERR("Unable to locate storage partition for storing settings file.\n");
469 }
470 if (!Write_Fstab()) {
471 if (Display_Error)
472 LOGERR("Error creating fstab\n");
473 else
474 LOGINFO("Error creating fstab\n");
475 }
476
477 if (andsec_partition) {
478 Setup_Android_Secure_Location(andsec_partition);
479 } else if (settings_partition) {
480 Setup_Android_Secure_Location(settings_partition);
481 }
482 if (settings_partition) {
483 Setup_Settings_Storage_Partition(settings_partition);
484 }
485
486 #ifdef TW_INCLUDE_CRYPTO
487 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
488 Decrypt_Data();
489 #endif
490
491 Update_System_Details();
492 if (Get_Super_Status())
493 Setup_Super_Partition();
494 UnMount_Main_Partitions();
495 #ifdef AB_OTA_UPDATER
496 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
497 #endif
498 setup_uevent();
499}
500
bigbiff7ba75002020-04-11 20:47:09 -0400501int TWPartitionManager::Write_Fstab(void) {
502 FILE *fp;
503 std::vector<TWPartition*>::iterator iter;
504 string Line;
505
506 fp = fopen("/etc/fstab", "w");
507 if (fp == NULL) {
508 LOGINFO("Can not open /etc/fstab.\n");
509 return false;
510 }
511 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
512 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530513 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
514 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400515 fputs(Line.c_str(), fp);
516 }
517 // Handle subpartition tracking
518 if ((*iter)->Is_SubPartition) {
519 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
520 if (ParentPartition)
521 ParentPartition->Has_SubPartition = true;
522 else
523 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
524 }
525 }
526 fclose(fp);
527 return true;
528}
529
530void TWPartitionManager::Decrypt_Data() {
531 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600532 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
533 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Captain Throwback37c3aef2021-10-06 11:38:18 -0400534 Set_Crypto_State();
bigbiff4fa02b52021-12-30 17:01:44 -0500535 TWPartition* Key_Directory_Partition = Find_Partition_By_Path(Decrypt_Data->Key_Directory);
536 if (Key_Directory_Partition != nullptr)
537 if (!Key_Directory_Partition->Is_Mounted())
538 Mount_By_Path(Decrypt_Data->Key_Directory, false);
539 if (!Decrypt_Data->Key_Directory.empty()) {
540 Set_Crypto_Type("file");
Ethan Yonker93382822018-11-01 15:25:31 -0500541#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400542#ifdef USE_FSCRYPT
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100543 if (android::vold::fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false, false, Decrypt_Data->Current_File_System, TWFunc::Path_Exists(additional_fstab) ? additional_fstab : "")) {
bigbiffa957f072021-03-07 18:20:29 -0500544 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000545 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400546 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400547#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500548 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
549 int retry_count = 10;
550 while (!Decrypt_Data->Mount(false) && --retry_count)
551 usleep(500);
552 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400553 if (!Decrypt_Data->Decrypt_FBE_DE()) {
bigbiff437d86f2021-09-26 16:57:14 -0400554 LOGERR("Unable to decrypt FBE device\n");
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400555 }
556
Ethan Yonker93382822018-11-01 15:25:31 -0500557 } else {
558 LOGINFO("Failed to mount data after metadata decrypt\n");
559 }
560 } else {
561 LOGINFO("Unable to decrypt metadata encryption\n");
562 }
563#else
564 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
565#endif
566 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600567 if (Decrypt_Data->Is_FBE) {
568 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
569 if (Decrypt_Device("!") == 0) {
570 gui_msg("decrypt_success=Successfully decrypted with default password.");
571 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
572 } else {
573 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
574 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600575 }
576 } else {
Captain Throwback500c3d22023-08-28 17:20:35 -0400577 LOGINFO("FBE setup failed. Trying FDE...\n");
Captain Throwback37c3aef2021-10-06 11:38:18 -0400578 Set_Crypto_State();
579 Set_Crypto_Type("block");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600580 int password_type = cryptfs_get_password_type();
581 if (password_type == CRYPT_TYPE_DEFAULT) {
582 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
583 if (Decrypt_Device("default_password") == 0) {
584 gui_msg("decrypt_success=Successfully decrypted with default password.");
585 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
586 } else {
587 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
588 }
589 } else {
590 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400591 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600592 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600593 }
594 }
bigbiff4fa02b52021-12-30 17:01:44 -0500595 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600596 Decrypt_Adopted();
597 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600598#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400599}
600
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500601void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500602 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500603}
604
Matt Mowerbf4efa32014-04-14 23:25:26 -0500605void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
606 if (Part->Has_Android_Secure)
607 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500608 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500609 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500610}
611
Dees_Troy8170a922012-09-18 15:40:25 -0400612void TWPartitionManager::Output_Partition_Logging(void) {
613 std::vector<TWPartition*>::iterator iter;
614
615 printf("\n\nPartition Logs:\n");
616 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
617 Output_Partition((*iter));
618}
619
620void TWPartitionManager::Output_Partition(TWPartition* Part) {
621 unsigned long long mb = 1048576;
622
Gary Peck004d48b2012-11-21 16:28:18 -0800623 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 -0400624 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800625 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 -0400626 }
Gary Peck004d48b2012-11-21 16:28:18 -0800627 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500628 if (Part->Can_Be_Mounted)
629 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800630 if (Part->Can_Be_Wiped)
631 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700632 if (Part->Use_Rm_Rf)
633 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500634 if (Part->Can_Be_Backed_Up)
635 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800636 if (Part->Wipe_During_Factory_Reset)
637 printf("Wipe_During_Factory_Reset ");
638 if (Part->Wipe_Available_in_GUI)
639 printf("Wipe_Available_in_GUI ");
640 if (Part->Is_SubPartition)
641 printf("Is_SubPartition ");
642 if (Part->Has_SubPartition)
643 printf("Has_SubPartition ");
644 if (Part->Removable)
645 printf("Removable ");
646 if (Part->Is_Present)
647 printf("IsPresent ");
648 if (Part->Can_Be_Encrypted)
649 printf("Can_Be_Encrypted ");
650 if (Part->Is_Encrypted)
651 printf("Is_Encrypted ");
652 if (Part->Is_Decrypted)
653 printf("Is_Decrypted ");
654 if (Part->Has_Data_Media)
655 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000656 if (Part->Can_Encrypt_Backup)
657 printf("Can_Encrypt_Backup ");
658 if (Part->Use_Userdata_Encryption)
659 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800660 if (Part->Has_Android_Secure)
661 printf("Has_Android_Secure ");
662 if (Part->Is_Storage)
663 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500664 if (Part->Is_Settings_Storage)
665 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000666 if (Part->Ignore_Blkid)
667 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600668 if (Part->Mount_To_Decrypt)
669 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600670 if (Part->Can_Flash_Img)
671 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600672 if (Part->Is_Adopted_Storage)
673 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600674 if (Part->SlotSelect)
675 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600676 if (Part->Mount_Read_Only)
677 printf("Mount_Read_Only ");
bigbiffcfa875c2021-06-20 16:20:27 -0400678 if (Part->Is_Super)
679 printf("Is_Super ");
Gary Peck004d48b2012-11-21 16:28:18 -0800680 printf("\n");
681 if (!Part->SubPartition_Of.empty())
682 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
683 if (!Part->Symlink_Path.empty())
684 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
685 if (!Part->Symlink_Mount_Point.empty())
686 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
687 if (!Part->Primary_Block_Device.empty())
688 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
689 if (!Part->Alternate_Block_Device.empty())
690 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
691 if (!Part->Decrypted_Block_Device.empty())
692 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800693 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600694 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800695 if (Part->Length != 0)
696 printf(" Length: %i\n", Part->Length);
697 if (!Part->Display_Name.empty())
698 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500699 if (!Part->Storage_Name.empty())
700 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800701 if (!Part->Backup_Path.empty())
702 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
703 if (!Part->Backup_Name.empty())
704 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500705 if (!Part->Backup_Display_Name.empty())
706 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800707 if (!Part->Backup_FileName.empty())
708 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
709 if (!Part->Storage_Path.empty())
710 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
711 if (!Part->Current_File_System.empty())
712 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
713 if (!Part->Fstab_File_System.empty())
714 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
715 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500716 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400717 if (!Part->MTD_Name.empty())
718 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600719 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800720 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600721 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600722 if (Part->MTP_Storage_ID)
723 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500724 if (!Part->Key_Directory.empty())
725 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500726 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400727}
728
Dees_Troy51a0e822012-09-05 15:24:24 -0400729int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400730 std::vector<TWPartition*>::iterator iter;
731 int ret = false;
732 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400733 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400734
bigbiffd58ba182020-03-23 10:02:29 -0400735 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400736 return true;
737
Dees_Troy5bf43922012-09-07 16:07:55 -0400738 // Iterate through all partitions
739 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400740 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400741 ret = (*iter)->Mount(Display_Error);
742 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400743 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400744 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400745 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400746 }
747 if (found) {
748 return ret;
749 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500750 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 -0400751 }
752 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400753}
754
Dees_Troy51a0e822012-09-05 15:24:24 -0400755int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400756 std::vector<TWPartition*>::iterator iter;
757 int ret = false;
758 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400759 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400760
761 // Iterate through all partitions
762 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400763 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400764 ret = (*iter)->UnMount(Display_Error);
765 found = true;
766 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
767 (*iter)->UnMount(Display_Error);
768 }
769 }
770 if (found) {
771 return ret;
772 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500773 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 -0400774 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000775 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400776 }
777 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400778}
779
Dees_Troy51a0e822012-09-05 15:24:24 -0400780int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400781 TWPartition* Part = Find_Partition_By_Path(Path);
782
783 if (Part)
784 return Part->Is_Mounted();
785 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000786 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400787 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400788}
789
Dees_Troy5bf43922012-09-07 16:07:55 -0400790int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400791 string current_storage_path = DataManager::GetCurrentStoragePath();
792
793 if (Mount_By_Path(current_storage_path, Display_Error)) {
794 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
795 if (FreeStorage)
796 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
797 return true;
798 }
799 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400800}
801
Dees_Troy5bf43922012-09-07 16:07:55 -0400802int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
803 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
804}
805
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600806TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400807 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400808 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400809
dianlujitaob76a73a2020-04-30 20:33:20 +0800810 if (Local_Path == "/system")
811 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400812 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400813 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400814 return (*iter);
815 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400816 return NULL;
817}
818
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600819TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
820 std::vector<TWPartition*>::iterator iter;
821
822 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
823 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
824 return (*iter);
825 }
826 return NULL;
827}
828
Ethan Yonker53796e72019-01-11 22:49:52 -0600829int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400830 // Check the backup name to ensure that it is the correct size and contains only valid characters
831 // and that a backup with that name doesn't already exist
832 char backup_name[MAX_BACKUP_NAME_LEN];
833 char backup_loc[255], tw_image_dir[255];
834 int copy_size;
835 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600836 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400837
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400838 copy_size = Backup_Name.size();
839 // Check size
840 if (copy_size > MAX_BACKUP_NAME_LEN) {
841 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500842 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400843 return -2;
844 }
845
846 // Check each character
847 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500848 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400849 return 0; // A "0" (zero) means to use the current timestamp for the backup name
850 for (index=0; index<copy_size; index++) {
851 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500852 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 -0400853 // These are valid characters
854 // Numbers
855 // Upper case letters
856 // Lower case letters
857 // Space
858 // and -_.{}[]
859 } else {
860 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600861 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 -0400862 return -3;
863 }
864 }
865
Ethan Yonker53796e72019-01-11 22:49:52 -0600866 if (Must_Be_Unique) {
867 // Check to make sure that a backup with this name doesn't already exist
868 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
869 strcpy(backup_loc, Backup_Loc.c_str());
870 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
871 if (TWFunc::Path_Exists(tw_image_dir)) {
872 if (Display_Error)
873 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500874
Ethan Yonker53796e72019-01-11 22:49:52 -0600875 return -4;
876 }
877 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400878 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600879 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400880 return 0;
881}
882
bigbiffce8f83c2015-12-12 18:30:21 -0500883bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400884 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600885 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500886 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400887
bigbiffce8f83c2015-12-12 18:30:21 -0500888 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400889 return true;
890
Dees_Troy093b7642012-09-21 15:59:38 -0400891 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400892
Tom Hite5a926722014-09-15 01:31:03 +0000893 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400894 time(&start);
895
bigbiffce8f83c2015-12-12 18:30:21 -0500896 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500897 sync();
898 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400899 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500900 if (!part_settings->adbbackup && part_settings->generate_digest) {
901 if (!twrpDigestDriver::Make_Digest(Full_Filename))
902 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400903 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400904
bigbiffce8f83c2015-12-12 18:30:21 -0500905 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400906 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400907 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400908
909 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400910 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500911 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500912 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500913 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000914 }
Dees_Troy2727b992013-08-14 20:09:30 +0000915 sync();
916 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400917 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400918 if (!part_settings->adbbackup && part_settings->generate_digest) {
919 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500920 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500921 }
Tom Hite5a926722014-09-15 01:31:03 +0000922 }
Dees_Troy8170a922012-09-18 15:40:25 -0400923 }
924 }
925 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400926
Dees_Troy43d8b002012-09-17 16:00:01 -0400927 time(&stop);
that203bcc92015-05-09 17:27:33 +0200928 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000929 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400930
bigbiffce8f83c2015-12-12 18:30:21 -0500931 if (part_settings->Part->Backup_Method == BM_FILES) {
932 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400933 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500934 part_settings->img_time += backup_time;
935
Dees_Troy43d8b002012-09-17 16:00:01 -0400936 }
Tom Hite5a926722014-09-15 01:31:03 +0000937
Matt Mower02899552016-12-30 18:13:51 -0600938 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500939 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400940 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500941backup_error:
942 Clean_Backup_Folder(part_settings->Backup_Folder);
943 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
944 tw_set_default_metadata(backup_log.c_str());
945 TWFunc::SetPerformanceMode(false);
946 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500947}
948
bigbiffbf1d6722015-02-14 16:25:59 -0500949void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
950 DIR *d = opendir(Backup_Folder.c_str());
951 struct dirent *p;
952 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400953 vector<string> ext;
954
955 //extensions we should delete when cleaning
956 ext.push_back("win");
957 ext.push_back("md5");
958 ext.push_back("sha2");
959 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500960
Ethan Yonker74db1572015-10-28 12:44:49 -0500961 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500962
963 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500964 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500965 return;
966 }
967
Matt Mower2b18a532015-02-20 16:58:05 -0600968 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500969 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
970 continue;
971
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500972 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500973
974 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400975 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
976 if (path.substr(dot) == *i) {
977 r = unlink(path.c_str());
978 if (r != 0)
979 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500980 }
981 }
982 }
983 closedir(d);
984}
985
Ethan Yonker472f5062016-02-25 13:47:30 -0600986int TWPartitionManager::Check_Backup_Cancel() {
987 return stop_backup.get_value();
988}
989
bigbiff7abc5fe2015-01-17 16:53:12 -0500990int TWPartitionManager::Cancel_Backup() {
991 string Backup_Folder, Backup_Name, Full_Backup_Path;
992
993 stop_backup.set_value(1);
994
995 if (tar_fork_pid != 0) {
996 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
997 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500998 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500999 LOGINFO("Killing pid: %d\n", tar_fork_pid);
1000 kill(tar_fork_pid, SIGUSR2);
1001 while (kill(tar_fork_pid, 0) == 0) {
1002 usleep(1000);
1003 }
1004 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
1005 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
1006 TWFunc::removeDir(Full_Backup_Path, false);
1007 tar_fork_pid = 0;
1008 }
1009
1010 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -04001011}
1012
bigbiffce8f83c2015-12-12 18:30:21 -05001013int TWPartitionManager::Run_Backup(bool adbbackup) {
1014 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001015 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -05001016 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -06001017 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -04001018 TWPartition* storage = NULL;
1019 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -06001020 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -05001021 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -05001022 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -04001023 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001024 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -04001025
bigbiffce8f83c2015-12-12 18:30:21 -05001026 part_settings.img_bytes_remaining = 0;
1027 part_settings.file_bytes_remaining = 0;
1028 part_settings.img_time = 0;
1029 part_settings.file_time = 0;
1030 part_settings.img_bytes = 0;
1031 part_settings.file_bytes = 0;
1032 part_settings.PM_Method = PM_BACKUP;
1033
bigbiffce8f83c2015-12-12 18:30:21 -05001034 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -04001035 time(&total_start);
1036
1037 Update_System_Details();
1038
1039 if (!Mount_Current_Storage(true))
1040 return false;
1041
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001042 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
1043 if (skip_digest == 0)
1044 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -04001045 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001046 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -04001047
bigbiffce8f83c2015-12-12 18:30:21 -05001048 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001049 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
1050 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
1051 Backup_Name = TWFunc::Get_Current_Date();
1052 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +00001053 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001054 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -04001055 }
bigbiffce8f83c2015-12-12 18:30:21 -05001056
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001057 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001058 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001059
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001060 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001061
Dees_Troy2673cec2013-04-02 20:22:16 +00001062 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -05001063 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -04001064 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05001065 if (!Backup_List.empty()) {
1066 end_pos = Backup_List.find(";", start_pos);
1067 while (end_pos != string::npos && start_pos < Backup_List.size()) {
1068 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -04001069 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001070 part_settings.Part = Find_Partition_By_Path(backup_path);
1071 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001072 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001073 if (part_settings.Part->Backup_Method == BM_FILES)
1074 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05001075 else
bigbiffce8f83c2015-12-12 18:30:21 -05001076 part_settings.img_bytes += part_settings.Part->Backup_Size;
1077 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001078 std::vector<TWPartition*>::iterator subpart;
1079
1080 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -05001081 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 -05001082 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001083 if ((*subpart)->Backup_Method == BM_FILES)
1084 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05001085 else
bigbiffce8f83c2015-12-12 18:30:21 -05001086 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05001087 }
1088 }
Dees_Troy8170a922012-09-18 15:40:25 -04001089 }
Dees_Troya13d74f2013-03-24 08:54:55 -05001090 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001091 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 -04001092 }
Dees_Troya13d74f2013-03-24 08:54:55 -05001093 start_pos = end_pos + 1;
1094 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -04001095 }
1096 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001097
1098 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001099 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -04001100 return false;
1101 }
bigbiffce8f83c2015-12-12 18:30:21 -05001102 if (adbbackup) {
1103 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
1104 return false;
1105 }
1106 }
1107 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -06001108 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -05001109 part_settings.progress = &progress;
1110
Ethan Yonker74db1572015-10-28 12:44:49 -05001111 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
1112 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001113 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1114 if (storage != NULL) {
1115 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -05001116 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001117 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001118 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -04001119 return false;
1120 }
bigbiffbf1d6722015-02-14 16:25:59 -05001121
Matt Mowerbfccfb82016-04-25 23:22:31 -05001122 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -05001123
1124 if (adbbackup)
1125 disable_free_space_check = true;
1126
bigbiffbf1d6722015-02-14 16:25:59 -05001127 if (!disable_free_space_check) {
1128 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1129 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001130 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001131 return false;
1132 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001133 }
bigbiffce8f83c2015-12-12 18:30:21 -05001134 part_settings.img_bytes_remaining = part_settings.img_bytes;
1135 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001136
Ethan Yonker74db1572015-10-28 12:44:49 -05001137 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001138
1139 int is_decrypted = 0;
1140 int is_encrypted = 0;
1141
1142 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1143 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1144 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1145 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1146 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1147 gui_err("fail_backup_folder=Failed to make backup folder.");
1148 return false;
1149 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001150 }
1151
Dees_Troy2673cec2013-04-02 20:22:16 +00001152 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001153
Dees_Troya13d74f2013-03-24 08:54:55 -05001154 start_pos = 0;
1155 end_pos = Backup_List.find(";", start_pos);
1156 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001157 if (stop_backup.get_value() != 0)
1158 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001159 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001160 part_settings.Part = Find_Partition_By_Path(backup_path);
1161 if (part_settings.Part != NULL) {
1162 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001163 return false;
1164 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001165 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 -05001166 }
1167 start_pos = end_pos + 1;
1168 end_pos = Backup_List.find(";", start_pos);
1169 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001170
1171 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001172 if (part_settings.img_time == 0)
1173 part_settings.img_time = 1;
1174 if (part_settings.file_time == 0)
1175 part_settings.file_time = 1;
1176 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1177 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001178
bigbiffce8f83c2015-12-12 18:30:21 -05001179 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001180 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 -05001181 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001182 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 -04001183
1184 time(&total_stop);
1185 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001186
1187 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001188 if (!adbbackup) {
1189 TWExclude twe;
1190 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1191 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001192 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001193 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001194
bigbiffce8f83c2015-12-12 18:30:21 -05001195 int prev_img_bps = 0, use_compression = 0;
1196 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001197 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001198 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001199 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001200
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001201 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001202 if (use_compression)
1203 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001204 else
Dees_Troy093b7642012-09-21 15:59:38 -04001205 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1206 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001207 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001208
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001209 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001210 if (use_compression)
1211 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1212 else
1213 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1214
Ethan Yonker74db1572015-10-28 12:44:49 -05001215 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001216 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001217 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001218 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001219 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001220 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001221 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001222
1223 if (part_settings.adbbackup) {
1224 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1225 return false;
1226 }
1227 }
1228 part_settings.adbbackup = false;
1229 DataManager::SetValue("tw_enable_adb_backup", 0);
1230
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001231 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001232}
1233
bigbiffce8f83c2015-12-12 18:30:21 -05001234bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001235 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001236
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001237 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001238 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1239 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001240 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1241 }
1242
Tom Hite5a926722014-09-15 01:31:03 +00001243 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001244
Dees_Troy4a2a1262012-09-18 09:33:47 -04001245 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001246
bigbiffce8f83c2015-12-12 18:30:21 -05001247 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001248 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001249 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001250 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001251 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001252 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001253 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001254
1255 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001256 part_settings->Part = *subpart;
1257 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1258 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001259 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001260 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001261 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001262 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001263 }
Dees_Troy8170a922012-09-18 15:40:25 -04001264 }
1265 }
1266 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001267 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001268 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001269 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1270
Dees_Troy4a2a1262012-09-18 09:33:47 -04001271 return true;
1272}
1273
Ethan Yonker472f5062016-02-25 13:47:30 -06001274int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001275 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001276 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001277
Dees_Troy4a2a1262012-09-18 09:33:47 -04001278 time_t rStart, rStop;
1279 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001280 string Restore_List, restore_path;
1281 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001282
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001283 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001284 part_settings.Part = NULL;
1285 part_settings.partition_count = 0;
1286 part_settings.total_restore_size = 0;
1287 part_settings.adbbackup = false;
1288 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001289
Ethan Yonker74db1572015-10-28 12:44:49 -05001290 gui_msg("restore_started=[RESTORE STARTED]");
1291 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001292
Dees_Troy4a2a1262012-09-18 09:33:47 -04001293 if (!Mount_Current_Storage(true))
1294 return false;
1295
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001296 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1297 if (check_digest > 0) {
1298 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1299 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1300 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001301 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001302 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001303 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001304 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001305 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001306
Dees_Troya13d74f2013-03-24 08:54:55 -05001307 if (!Restore_List.empty()) {
1308 end_pos = Restore_List.find(";", start_pos);
1309 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1310 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001311 part_settings.Part = Find_Partition_By_Path(restore_path);
1312 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001313 if (part_settings.Part->Mount_Read_Only) {
1314 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 -05001315 return false;
1316 }
bigbiffce8f83c2015-12-12 18:30:21 -05001317
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001318 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1319
bigbiff4a60bee2021-01-23 14:08:03 -05001320 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1321 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1322 }
1323
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001324 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001325 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001326 part_settings.partition_count++;
1327 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1328 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001329 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001330 std::vector<TWPartition*>::iterator subpart;
1331
1332 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001333 part_settings.Part = *subpart;
1334 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001335 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001336 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001337 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001338 }
1339 }
1340 }
1341 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001342 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001343 }
1344 start_pos = end_pos + 1;
1345 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001346 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001347 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001348
bigbiffce8f83c2015-12-12 18:30:21 -05001349 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001350 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001351 return false;
1352 }
1353
bigbiffce8f83c2015-12-12 18:30:21 -05001354 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1355 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 +00001356 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001357 ProgressTracking progress(part_settings.total_restore_size);
1358 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001359
Dees_Troya13d74f2013-03-24 08:54:55 -05001360 start_pos = 0;
1361 if (!Restore_List.empty()) {
1362 end_pos = Restore_List.find(";", start_pos);
1363 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1364 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001365
1366 part_settings.Part = Find_Partition_By_Path(restore_path);
1367 if (part_settings.Part != NULL) {
1368 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001369 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001370 return false;
1371 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001372 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001373 }
1374 start_pos = end_pos + 1;
1375 end_pos = Restore_List.find(";", start_pos);
1376 }
1377 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001378 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001379 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001380 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001381 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001382 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001383 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001384 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
bigbiff8f5fad32021-11-03 20:39:02 -04001385 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
1386 if (Decrypt_Data && Decrypt_Data->Is_Encrypted)
1387 gui_msg(Msg(msg::kWarning, "reboot_after_restore=It is recommended to reboot Android once after first boot."));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001388 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001389
Dees_Troy63c8df72012-09-10 14:02:05 -04001390 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001391}
1392
1393void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001394 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001395 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001396 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001397 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001398
1399 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001400 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1401 vector<string> adb_files;
1402 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1403 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1404 string adb_restore_file = adb_files.at(i);
1405 std::size_t pos = adb_restore_file.find_first_of(".");
1406 std::string path = "/" + adb_restore_file.substr(0, pos);
1407 Restore_List = path + ";";
1408 TWPartition* Part = Find_Partition_By_Path(path);
1409 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1410 adbbackup = true;
1411 }
1412 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001413 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001414 else {
1415 DIR* d;
1416 d = opendir(Restore_Name.c_str());
1417 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001418 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001419 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1420 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001421 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001422
1423 struct dirent* de;
1424 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001425 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001426 // Strip off three components
1427 char str[256];
1428 char* label;
1429 char* fstype = NULL;
1430 char* extn = NULL;
1431 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001432
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001433 strcpy(str, de->d_name);
1434 if (strlen(str) <= 2)
1435 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001436
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001437 if (get_date) {
1438 char file_path[255];
1439 struct stat st;
1440
1441 strcpy(file_path, Restore_Name.c_str());
1442 strcat(file_path, "/");
1443 strcat(file_path, str);
1444 stat(file_path, &st);
1445 string backup_date = ctime((const time_t*)(&st.st_mtime));
1446 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1447 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001448 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001449
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001450 label = str;
1451 ptr = label;
1452 while (*ptr && *ptr != '.') ptr++;
1453 if (*ptr == '.')
1454 {
1455 *ptr = 0x00;
1456 ptr++;
1457 fstype = ptr;
1458 }
1459 while (*ptr && *ptr != '.') ptr++;
1460 if (*ptr == '.')
1461 {
1462 *ptr = 0x00;
1463 ptr++;
1464 extn = ptr;
1465 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001466
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001467 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1468 int extnlength = strlen(extn);
1469 if (extnlength != 3 && extnlength != 6) continue;
1470 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1471 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001472
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001473 if (check_encryption) {
1474 string filename = Restore_Name + "/";
1475 filename += de->d_name;
1476 if (TWFunc::Get_File_Type(filename) == 2) {
1477 LOGINFO("'%s' is encrypted\n", filename.c_str());
1478 DataManager::SetValue("tw_restore_encrypted", 1);
1479 }
1480 }
1481 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1482
1483 TWPartition* Part = Find_Partition_By_Path(label);
1484 if (Part == NULL)
1485 {
1486 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1487 continue;
1488 }
1489
1490 Part->Backup_FileName = de->d_name;
1491 if (strlen(extn) > 3) {
1492 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1493 }
1494
dianlujitaob76a73a2020-04-30 20:33:20 +08001495 if (!Part->Is_SubPartition) {
1496 if (Part->Backup_Path == Get_Android_Root_Path())
1497 Restore_List += "/system;";
1498 else
1499 Restore_List += Part->Backup_Path + ";";
1500 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001501 }
1502 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001503 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001504
1505 if (adbbackup) {
1506 Restore_List = "ADB_Backup;";
1507 adbbackup = false;
1508 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001509
Dees_Troya13d74f2013-03-24 08:54:55 -05001510 // Set the final value
1511 DataManager::SetValue("tw_restore_list", Restore_List);
1512 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001513 return;
1514}
1515
1516int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001517 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301518 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001519 int ret = false;
1520 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001521 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001522
dianlujitaob76a73a2020-04-30 20:33:20 +08001523 if (Local_Path == "/system")
1524 Local_Path = Get_Android_Root_Path();
bigbiffaed1bdf2021-08-03 18:21:39 -04001525 if (Path == "/cache") {
1526 TWPartition* cache = Find_Partition_By_Path("/cache");
1527 if (cache == nullptr) {
1528 TWPartition* dat = Find_Partition_By_Path("/data");
1529 if (dat) {
1530 dat->Wipe_Data_Cache();
1531 found = true;
1532 }
1533 }
1534 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001535 // Iterate through all partitions
1536 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001537 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301538 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1539 (*iter)->Find_Actual_Block_Device();
1540 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1541 {
1542 (*iter1)->Find_Actual_Block_Device();
1543 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1544 (*iter1)->UnMount(false);
1545 }
Dees_Troye58d5262012-09-21 12:27:57 -04001546 if (Path == "/and-sec")
1547 ret = (*iter)->Wipe_AndSec();
1548 else
1549 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001550 found = true;
1551 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1552 (*iter)->Wipe();
1553 }
1554 }
1555 if (found) {
1556 return ret;
1557 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001558 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 -04001559 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001560}
1561
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001562int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1563 std::vector<TWPartition*>::iterator iter;
1564 int ret = false;
1565 bool found = false;
1566 string Local_Path = TWFunc::Get_Root_Path(Path);
1567
1568 // Iterate through all partitions
1569 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1570 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1571 if (Path == "/and-sec")
1572 ret = (*iter)->Wipe_AndSec();
1573 else
1574 ret = (*iter)->Wipe(New_File_System);
1575 found = true;
1576 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1577 (*iter)->Wipe(New_File_System);
1578 }
1579 }
1580 if (found) {
1581 return ret;
1582 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001583 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 -05001584 return false;
1585}
1586
Dees_Troy51a0e822012-09-05 15:24:24 -04001587int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001588 std::vector<TWPartition*>::iterator iter;
1589 int ret = true;
1590
1591 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001592 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001593#ifdef TW_OEM_BUILD
1594 if ((*iter)->Mount_Point == "/data") {
1595 if (!(*iter)->Wipe_Encryption())
1596 ret = false;
1597 } else {
1598#endif
1599 if (!(*iter)->Wipe())
1600 ret = false;
1601#ifdef TW_OEM_BUILD
1602 }
1603#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001604 } else if ((*iter)->Has_Android_Secure) {
1605 if (!(*iter)->Wipe_AndSec())
1606 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001607 }
1608 }
bigbiffad58e1b2020-07-06 20:24:34 -04001609 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001610 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001611}
1612
Dees_Troy38bd7602012-09-14 13:33:53 -04001613int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1614 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001615 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001616
1617 if (!Mount_By_Path("/data", true))
1618 return false;
1619
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001620 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001621
bigbiff25d25b92020-06-19 16:07:38 -04001622 std::string cacheDir = TWFunc::get_log_dir();
1623 if (cacheDir == CACHE_LOGS_DIR) {
1624 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1625 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001626 }
1627 dir.push_back(cacheDir + "dalvik-cache");
1628 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001629 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001630
Dees_Troy38bd7602012-09-14 13:33:53 -04001631 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001632 if (sdext && sdext->Is_Present && sdext->Mount(false))
1633 {
1634 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1635 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001636 dir.push_back("/sd-ext/dalvik-cache");
1637 }
1638 }
1639
bigbiff25d25b92020-06-19 16:07:38 -04001640 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001641 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1642 } else {
1643 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1644 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001645 for (unsigned i = 0; i < dir.size(); ++i) {
1646 if (stat(dir.at(i).c_str(), &st) == 0) {
1647 TWFunc::removeDir(dir.at(i), false);
1648 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001649 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001650 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001651
bigbiff25d25b92020-06-19 16:07:38 -04001652 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001653 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1654 } else {
1655 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1656 }
1657
Dees_Troy38bd7602012-09-14 13:33:53 -04001658 return true;
1659}
1660
1661int TWPartitionManager::Wipe_Rotate_Data(void) {
1662 if (!Mount_By_Path("/data", true))
1663 return false;
1664
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001665 unlink("/data/misc/akmd*");
1666 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001667 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001668 return true;
1669}
1670
1671int TWPartitionManager::Wipe_Battery_Stats(void) {
1672 struct stat st;
1673
1674 if (!Mount_By_Path("/data", true))
1675 return false;
1676
1677 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001678 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001679 } else {
1680 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001681 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001682 }
1683 return true;
1684}
1685
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001686int TWPartitionManager::Wipe_Android_Secure(void) {
1687 std::vector<TWPartition*>::iterator iter;
1688 int ret = false;
1689 bool found = false;
1690
1691 // Iterate through all partitions
1692 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1693 if ((*iter)->Has_Android_Secure) {
1694 ret = (*iter)->Wipe_AndSec();
1695 found = true;
1696 }
1697 }
1698 if (found) {
1699 return ret;
1700 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001701 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001702 }
1703 return false;
1704}
1705
Dees_Troy38bd7602012-09-14 13:33:53 -04001706int TWPartitionManager::Format_Data(void) {
1707 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffcfa875c2021-06-20 16:20:27 -04001708 TWPartition* metadata = Find_Partition_By_Path("/metadata");
1709 if (metadata != NULL)
1710 metadata->UnMount(false);
Dees_Troy38bd7602012-09-14 13:33:53 -04001711
1712 if (dat != NULL) {
bigbiffab76bd72021-10-11 10:17:48 -04001713 if (android::base::GetBoolProperty("ro.virtual_ab.enabled", false)) {
bigbiffcfa875c2021-06-20 16:20:27 -04001714#ifndef TW_EXCLUDE_APEX
1715 twrpApex apex;
1716 apex.Unmount();
1717#endif
1718 if (metadata != NULL)
1719 metadata->Mount(true);
bigbiffd21252f2021-09-18 15:56:32 -04001720 if (!Check_Pending_Merges())
bigbiffcfa875c2021-06-20 16:20:27 -04001721 return false;
1722 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001723 return dat->Wipe_Encryption();
1724 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001725 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001726 return false;
1727 }
1728 return false;
1729}
1730
1731int TWPartitionManager::Wipe_Media_From_Data(void) {
1732 TWPartition* dat = Find_Partition_By_Path("/data");
1733
1734 if (dat != NULL) {
1735 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001736 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001737 return false;
1738 }
1739 if (!dat->Mount(true))
1740 return false;
1741
Ethan Yonker74db1572015-10-28 12:44:49 -05001742 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001743 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001744 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001745 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001746 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001747 return true;
1748 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001749 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001750 return false;
1751 }
1752 return false;
1753}
1754
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001755int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1756 std::vector<TWPartition*>::iterator iter;
1757 int ret = false;
1758 bool found = false;
1759 string Local_Path = TWFunc::Get_Root_Path(Path);
1760
1761 if (Local_Path == "/tmp" || Local_Path == "/")
1762 return true;
1763
1764 // Iterate through all partitions
1765 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1766 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1767 ret = (*iter)->Repair();
1768 found = true;
1769 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1770 (*iter)->Repair();
1771 }
1772 }
1773 if (found) {
1774 return ret;
1775 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001776 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 -05001777 } else {
1778 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1779 }
1780 return false;
1781}
1782
Ethan Yonkera2719152015-05-28 09:44:41 -05001783int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1784 std::vector<TWPartition*>::iterator iter;
1785 int ret = false;
1786 bool found = false;
1787 string Local_Path = TWFunc::Get_Root_Path(Path);
1788
1789 if (Local_Path == "/tmp" || Local_Path == "/")
1790 return true;
1791
1792 // Iterate through all partitions
1793 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1794 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1795 ret = (*iter)->Resize();
1796 found = true;
1797 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1798 (*iter)->Resize();
1799 }
1800 }
1801 if (found) {
1802 return ret;
1803 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001804 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 -05001805 } else {
1806 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1807 }
1808 return false;
1809}
1810
Dees_Troy51a0e822012-09-05 15:24:24 -04001811void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001812 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001813 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001814
Ethan Yonker74db1572015-10-28 12:44:49 -05001815 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001816 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001817 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001818 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001819 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001820 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1821 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001822 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001823 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1824 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1825 } else if ((*iter)->Mount_Point == "/cache") {
1826 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1827 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1828 } else if ((*iter)->Mount_Point == "/sd-ext") {
1829 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1830 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1831 if ((*iter)->Backup_Size == 0) {
1832 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1833 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1834 } else
1835 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001836 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001837 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001838 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001839 if ((*iter)->Backup_Size == 0) {
1840 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1841 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1842 } else
1843 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001844 } else if ((*iter)->Mount_Point == "/boot") {
1845 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1846 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1847 if ((*iter)->Backup_Size == 0) {
1848 DataManager::SetValue("tw_has_boot_partition", 0);
1849 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1850 } else
1851 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001852 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001853 } else {
1854 // Handle unmountable partitions in case we reset defaults
1855 if ((*iter)->Mount_Point == "/boot") {
1856 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1857 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1858 if ((*iter)->Backup_Size == 0) {
1859 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1860 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1861 } else
1862 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1863 } else if ((*iter)->Mount_Point == "/recovery") {
1864 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1865 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1866 if ((*iter)->Backup_Size == 0) {
1867 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1868 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1869 } else
1870 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001871 } else if ((*iter)->Mount_Point == "/data") {
1872 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001873 }
Dees_Troy51127312012-09-08 13:08:49 -04001874 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001875 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001876 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001877 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1878 string current_storage_path = DataManager::GetCurrentStoragePath();
1879 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001880 if (FreeStorage != NULL) {
1881 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001882 if (!FreeStorage->Mount(false)) {
1883 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1884 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1885 } else {
1886 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001887 }
1888 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001889 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001890 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001891 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001892 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001893 return;
1894}
1895
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001896void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1897 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001898
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001899 if (dat != NULL) {
bigbiffaed1bdf2021-08-03 18:21:39 -04001900 // reparse for /cache/recovery/command
1901 static constexpr const char* COMMAND_FILE = "/data/cache/command";
1902 if (TWFunc::Path_Exists(COMMAND_FILE)) {
1903 startupArgs startup;
1904 std::string content;
1905 TWFunc::read_file(COMMAND_FILE, content);
1906 std::vector<std::string> args = {content};
1907 startup.processRecoveryArgs(args, 0);
1908 }
1909
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001910 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1911 dat->Is_Decrypted = true;
1912 if (!Block_Device.empty()) {
1913 dat->Decrypted_Block_Device = Block_Device;
1914 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1915 } else {
1916 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1917 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001918 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001919 dat->Setup_File_System(false);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001920 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 -06001921
Noah Jacobson81d638d2019-04-28 00:10:07 -04001922 sleep(1); // Sleep for a bit so that the device will be ready
me-cafebabe09649612022-06-10 21:53:31 +08001923
1924 // Mount only /data
1925 dat->Symlink_Path = ""; // Not to let it to bind mount /data/media again
1926 if (!dat->Mount(false)) {
1927 LOGERR("Unable to mount /data after decryption");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001928 }
me-cafebabe09649612022-06-10 21:53:31 +08001929
1930 if (dat->Has_Data_Media && TWFunc::Path_Exists("/data/media/0")) {
1931 dat->Storage_Path = "/data/media/0";
1932 } else {
1933 dat->Storage_Path = "/data/media";
1934 }
1935 dat->Symlink_Path = dat->Storage_Path;
1936 DataManager::SetValue("tw_storage_path", dat->Symlink_Path);
Mohd Farazf9231102022-06-18 22:51:55 +02001937 DataManager::SetValue("tw_settings_path", TW_STORAGE_PATH);
me-cafebabe09649612022-06-10 21:53:31 +08001938 LOGINFO("New storage path after decryption: %s\n", dat->Storage_Path.c_str());
1939
epicXa721f952021-01-04 13:01:31 +05301940 DataManager::LoadTWRPFolderInfo();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001941 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001942 Output_Partition(dat);
bigbiff4fa02b52021-12-30 17:01:44 -05001943 if (!android::base::StartsWith(dat->Actual_Block_Device, "/dev/block/mmcblk")) {
1944 if (!dat->Bind_Mount(false))
1945 LOGERR("Unable to bind mount /sdcard to %s\n", dat->Storage_Path.c_str());
1946 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001947 } else
1948 LOGERR("Unable to locate data partition.\n");
1949}
1950
Noah Jacobson81d638d2019-04-28 00:10:07 -04001951void TWPartitionManager::Parse_Users() {
1952#ifdef TW_INCLUDE_FBE
1953 char user_check_result[PROPERTY_VALUE_MAX];
1954 for (int userId = 0; userId <= 9999; userId++) {
1955 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1956 property_get(prop.c_str(), user_check_result, "-1");
1957 if (strcmp(user_check_result, "-1") != 0) {
1958 if (userId < 0 || userId > 9999) {
1959 LOGINFO("Incorrect user id %d\n", userId);
1960 continue;
1961 }
1962 struct users_struct user;
1963 user.userId = to_string(userId);
1964
1965 // Attempt to get name of user. Fallback to user ID if this fails.
Darth98f775972022-08-05 09:39:03 +01001966 std::string path = "/data/system/users/" + to_string(userId) + ".xml";
1967 if (!TWFunc::Check_Xml_Format(path)) {
1968 string oldpath = path;
1969 if (TWFunc::abx_to_xml(oldpath, path)) {
1970 LOGINFO("Android 12+: '%s' has been converted into plain text xml (for user %s).\n", oldpath.c_str(), user.userId.c_str());
1971 }
1972 }
1973 char* userFile = PageManager::LoadFileToBuffer(path, NULL);
me-cafebabec46981d2022-07-29 01:54:43 +08001974 if (userFile == NULL) {
1975 user.userName = to_string(userId);
bigbiffa957f072021-03-07 18:20:29 -05001976 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001977 else {
me-cafebabec46981d2022-07-29 01:54:43 +08001978 xml_document<> *userXml = new xml_document<>();
1979 userXml->parse<0>(userFile);
1980 xml_node<>* userNode = userXml->first_node("user");
1981 if (userNode == nullptr) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001982 user.userName = to_string(userId);
me-cafebabec46981d2022-07-29 01:54:43 +08001983 } else {
1984 xml_node<>* nameNode = userNode->first_node("name");
1985 if (nameNode == nullptr)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001986 user.userName = to_string(userId);
me-cafebabec46981d2022-07-29 01:54:43 +08001987 else {
1988 string userName = nameNode->value();
1989 user.userName = userName + " (" + to_string(userId) + ")";
Noah Jacobson81d638d2019-04-28 00:10:07 -04001990 }
1991 }
1992 }
1993
1994 string filename;
bigbiffdf53b6c2022-01-17 19:31:52 -05001995 user.type = android::keystore::Get_Password_Type(userId, filename);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001996
1997 user.isDecrypted = false;
1998 if (strcmp(user_check_result, "1") == 0)
1999 user.isDecrypted = true;
2000 Users_List.push_back(user);
2001 }
2002 }
2003 Check_Users_Decryption_Status();
2004#endif
2005}
2006
2007std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
2008 return &Users_List;
2009}
2010
2011void TWPartitionManager::Mark_User_Decrypted(int userID) {
2012#ifdef TW_INCLUDE_FBE
2013 std::vector<users_struct>::iterator iter;
2014 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
2015 if (atoi((*iter).userId.c_str()) == userID) {
2016 (*iter).isDecrypted = true;
2017 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
2018 property_set(user_prop_decrypted.c_str(), "1");
2019 break;
2020 }
2021 }
2022 Check_Users_Decryption_Status();
2023#endif
2024}
2025
2026void TWPartitionManager::Check_Users_Decryption_Status() {
2027#ifdef TW_INCLUDE_FBE
2028 int all_is_decrypted = 1;
2029 std::vector<users_struct>::iterator iter;
2030 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
2031 if (!(*iter).isDecrypted) {
2032 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
2033 all_is_decrypted = 0;
2034 break;
2035 }
2036 }
2037 if (all_is_decrypted == 1) {
2038 LOGINFO("All found users are decrypted.\n");
2039 DataManager::SetValue("tw_all_users_decrypted", "1");
2040 property_set("twrp.all.users.decrypted", "true");
2041 } else
2042 DataManager::SetValue("tw_all_users_decrypted", "0");
2043#endif
2044}
2045
2046int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04002047#ifdef TW_INCLUDE_CRYPTO
Captain Throwback37c3aef2021-10-06 11:38:18 -04002048 char crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06002049 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04002050
Ethan Yonker253368a2014-11-25 15:00:52 -06002051 // Mount any partitions that need to be mounted for decrypt
2052 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2053 if ((*iter)->Mount_To_Decrypt) {
2054 (*iter)->Mount(true);
2055 }
a39552696ff55ce2013-01-08 16:14:56 +00002056 }
oshmouna82a7542018-04-10 17:45:55 +02002057 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00002058
Captain Throwback37c3aef2021-10-06 11:38:18 -04002059 Set_Crypto_State();
2060 Set_Crypto_Type("block");
Ethan Yonkera1de1492015-11-04 11:58:27 -06002061
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002062 if (DataManager::GetIntValue(TW_IS_FBE)) {
2063#ifdef TW_INCLUDE_FBE
2064 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
2065 return -1;
Noah Jacobson81d638d2019-04-28 00:10:07 -04002066
2067 bool user_need_decrypt = false;
2068 std::vector<users_struct>::iterator iter;
2069 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
2070 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
2071 user_need_decrypt = true;
2072 }
2073 }
2074 if (!user_need_decrypt) {
2075 LOGINFO("User %d does not require decryption\n", user_id);
2076 return 0;
2077 }
2078
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002079 int retry_count = 10;
2080 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -04002081 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
2082 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
bigbiffdf53b6c2022-01-17 19:31:52 -05002083 if (android::keystore::Decrypt_User(user_id, Password)) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04002084 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
2085 Mark_User_Decrypted(user_id);
2086 if (user_id == 0) {
2087 // When decrypting user 0 also try all other users
2088 std::vector<users_struct>::iterator iter;
2089 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
2090 if ((*iter).userId == "0" || (*iter).isDecrypted)
2091 continue;
2092
2093 int tmp_user_id = atoi((*iter).userId.c_str());
2094 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
bigbiffdf53b6c2022-01-17 19:31:52 -05002095 if (android::keystore::Decrypt_User(tmp_user_id, Password) ||
2096 (Password != "!" && android::keystore::Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
Noah Jacobson81d638d2019-04-28 00:10:07 -04002097 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
2098 Mark_User_Decrypted(tmp_user_id);
2099 } else {
2100 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
2101 }
2102 }
2103 Post_Decrypt("");
2104 }
2105
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002106 return 0;
Noah Jacobson81d638d2019-04-28 00:10:07 -04002107 } else {
2108 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002109 }
2110#else
2111 LOGERR("FBE support is not present\n");
2112#endif
2113 return -1;
2114 }
2115
Noah Jacobson81d638d2019-04-28 00:10:07 -04002116 char isdecrypteddata[PROPERTY_VALUE_MAX];
2117 property_get("twrp.decrypt.done", isdecrypteddata, "");
2118 if (strcmp(isdecrypteddata, "true") == 0) {
2119 LOGINFO("Data has no decryption required\n");
2120 return 0;
2121 }
2122
Ethan Yonkerddb63e22017-01-19 14:01:57 -06002123 int pwret = -1;
2124 pid_t pid = fork();
2125 if (pid < 0) {
2126 LOGERR("fork failed\n");
2127 return -1;
2128 } else if (pid == 0) {
2129 // Child process
2130 char cPassword[255];
2131 strcpy(cPassword, Password.c_str());
2132 int ret = cryptfs_check_passwd(cPassword);
2133 exit(ret);
2134 } else {
2135 // Parent
2136 int status;
2137 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
2138 pwret = -1;
2139 else
2140 pwret = WEXITSTATUS(status) ? -1 : 0;
2141 }
a39552696ff55ce2013-01-08 16:14:56 +00002142
Ethan Yonker253368a2014-11-25 15:00:52 -06002143 // Unmount any partitions that were needed for decrypt
2144 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2145 if ((*iter)->Mount_To_Decrypt) {
2146 (*iter)->UnMount(false);
2147 }
2148 }
oshmouna82a7542018-04-10 17:45:55 +02002149 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06002150
a39552696ff55ce2013-01-08 16:14:56 +00002151 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002152 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002153 return -1;
2154 }
a39552696ff55ce2013-01-08 16:14:56 +00002155
Dees_Troy5bf43922012-09-07 16:07:55 -04002156 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
2157 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002158 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04002159 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002160 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04002161 }
2162 return 0;
2163#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002164 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002165 return -1;
2166#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002167 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04002168}
2169
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002170int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002171 std::vector<TWPartition*>::iterator iter;
2172 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2173 if ((*iter)->Has_Data_Media) {
2174 if ((*iter)->Mount(true)) {
2175 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
2176 return -1;
2177 }
2178 }
2179 }
Dees_Troy1a650e62012-10-19 20:54:32 -04002180 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05002181 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002182 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002183}
2184
Ethan Yonker66a19492015-12-10 10:19:45 -06002185TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002186 std::vector<TWPartition*>::iterator iter = Partitions.begin();
2187
2188 if (!Path.empty()) {
2189 string Search_Path = TWFunc::Get_Root_Path(Path);
2190 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06002191 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002192 iter++;
2193 break;
2194 }
2195 }
2196 }
2197
2198 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002199 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
2200 // do nothing, do not return this type of partition
2201 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002202 return (*iter);
2203 }
2204 }
2205
2206 return NULL;
2207}
2208
Dees_Troyd21618c2012-10-14 18:48:49 -04002209int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04002210 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
2211
2212 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002213 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2214 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 -04002215 return false;
2216 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002217 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2218 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002219 return false;
2220
bigbiff22851b92021-09-01 16:46:57 -04002221 if (!TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002222 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002223 return false;
2224 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002225 return true;
2226}
2227
Dees_Troy8170a922012-09-18 15:40:25 -04002228int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002229 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002230 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002231
Ethan Yonker47360be2014-04-01 10:34:34 -05002232 string Lun_File_str = CUSTOM_LUN_FILE;
2233 size_t found = Lun_File_str.find("%");
2234 if (found != string::npos) {
2235 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2236 if (TWFunc::Path_Exists(lun_file))
2237 has_multiple_lun = true;
2238 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002239 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002240 if (!has_multiple_lun) {
2241 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2242 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2243 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002244 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002245 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002246 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2247 goto error_handle;
2248 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002249 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002250 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002251 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002252 }
2253 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002254 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002255 }
Dees_Troy8170a922012-09-18 15:40:25 -04002256 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002257 LOGINFO("Device has multiple lun files\n");
2258 TWPartition* Mount1;
2259 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002260 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002261 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002262 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002263 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2264 goto error_handle;
2265 }
Matt Moweree717062014-04-26 01:46:46 -05002266 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002267 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002268 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002269 Open_Lun_File(Mount2->Mount_Point, lun_file);
nkk717aa6fc62017-03-24 18:28:03 +02002270 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2271 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data") {
2272 Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002273 }
nkk717aa6fc62017-03-24 18:28:03 +02002274 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2275 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data" && !Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002276 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002277 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002278 }
Dees_Troy8170a922012-09-18 15:40:25 -04002279 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002280 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002281 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002282 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002283error_handle:
2284 if (mtp_was_enabled)
2285 if (!Enable_MTP())
2286 Disable_MTP();
2287 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002288}
2289
2290int TWPartitionManager::usb_storage_disable(void) {
bigbiff22851b92021-09-01 16:46:57 -04002291 int index, ret = 0;
Dees_Troy2673cec2013-04-02 20:22:16 +00002292 char lun_file[255], ch[2] = {0, 0};
2293 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002294
2295 for (index=0; index<2; index++) {
2296 sprintf(lun_file, CUSTOM_LUN_FILE, index);
bigbiff22851b92021-09-01 16:46:57 -04002297 if (!TWFunc::write_to_file(lun_file, str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002298 break;
bigbiff22851b92021-09-01 16:46:57 -04002299 ret = -1;
Dees_Troy8170a922012-09-18 15:40:25 -04002300 }
Dees_Troy8170a922012-09-18 15:40:25 -04002301 }
Dees_Troye58d5262012-09-21 12:27:57 -04002302 Mount_All_Storage();
2303 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002304 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002305 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002306 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002307 if (mtp_was_enabled)
2308 if (!Enable_MTP())
2309 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002310 if (ret < 0 && index == 0) {
2311 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2312 return false;
2313 } else {
2314 return true;
2315 }
Dees_Troy8170a922012-09-18 15:40:25 -04002316 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002317}
2318
2319void TWPartitionManager::Mount_All_Storage(void) {
2320 std::vector<TWPartition*>::iterator iter;
2321
2322 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2323 if ((*iter)->Is_Storage)
2324 (*iter)->Mount(false);
2325 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002326}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002327
Dees_Troyd0384ef2012-10-12 12:15:42 -04002328void TWPartitionManager::UnMount_Main_Partitions(void) {
2329 // Unmounts system and data if data is not data/media
2330 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002331 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002332
Mohd Faraze3948ec2020-08-14 01:40:59 +00002333 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002334
Mohd Faraze3948ec2020-08-14 01:40:59 +00002335 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2336 UnMount_By_Path (Get_Android_Root_Path(), true);
2337 Partition = Find_Partition_By_Path ("/product");
2338 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002339 if (!datamedia)
2340 UnMount_By_Path("/data", true);
2341
Mohd Faraze3948ec2020-08-14 01:40:59 +00002342 Partition = Find_Partition_By_Path ("/boot");
2343 if (Partition != NULL && Partition->Can_Be_Mounted)
2344 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002345}
2346
Dees_Troy9350b8d2012-09-27 12:38:38 -04002347int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002348 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002349 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 -04002350 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002351
Ethan Yonker74db1572015-10-28 12:44:49 -05002352 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002353
2354 // Locate and validate device to partition
2355 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2356
Ethan Yonker66a19492015-12-10 10:19:45 -06002357 if (SDCard->Is_Adopted_Storage)
2358 SDCard->Revert_Adopted();
2359
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002360 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002361 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002362 return false;
2363 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002364
2365 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002366 if (!SDCard->UnMount(true))
2367 return false;
2368 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2369 if (SDext != NULL) {
2370 if (!SDext->UnMount(true))
2371 return false;
2372 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002373 char* swappath = getenv("SWAPPATH");
2374 if (swappath != NULL) {
2375 LOGINFO("Unmounting swap at '%s'\n", swappath);
2376 umount(swappath);
2377 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002378
Ethan Yonker483e9f42016-01-11 22:21:18 -06002379 // Determine block device
2380 if (SDCard->Alternate_Block_Device.empty()) {
2381 SDCard->Find_Actual_Block_Device();
2382 Device = SDCard->Actual_Block_Device;
2383 // Just use the root block device
2384 Device.resize(strlen("/dev/block/mmcblkX"));
2385 } else {
2386 Device = SDCard->Alternate_Block_Device;
2387 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002388
2389 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002390 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002391
2392 DataManager::GetValue("tw_sdext_size", ext);
2393 DataManager::GetValue("tw_swap_size", swap);
2394 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2395 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002396 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);
2397
2398 // Determine partition sizes
2399 if (swap == 0 && ext == 0) {
2400 fat_str = "-0";
2401 } else {
2402 memset(temp, 0, sizeof(temp));
2403 sprintf(temp, "%i", fat_size);
2404 fat_str = temp;
2405 fat_str += "MB";
2406 }
2407 if (swap == 0) {
2408 ext_str = "-0";
2409 } else {
2410 memset(temp, 0, sizeof(temp));
2411 sprintf(temp, "%i", ext);
2412 ext_str = "+";
2413 ext_str += temp;
2414 ext_str += "MB";
2415 }
2416
Dees_Troy9350b8d2012-09-27 12:38:38 -04002417 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002418 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002419 return false;
2420 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002421
Ethan Yonker74db1572015-10-28 12:44:49 -05002422 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002423 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002424 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002425 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002426 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002427 Update_System_Details();
2428 return false;
2429 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002430 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002431 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 +00002432 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002433 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002434 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002435 return false;
2436 }
2437 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002438 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002439 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002440 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002441 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002442 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002443 Update_System_Details();
2444 return false;
2445 }
2446 }
2447 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002448 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002449 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 +00002450 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002451 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002452 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002453 Update_System_Details();
2454 return false;
2455 }
2456 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002457
2458 // Convert GPT to MBR
2459 Command = "sgdisk --gpttombr " + Device;
2460 if (TWFunc::Exec_Cmd(Command) != 0)
2461 LOGINFO("Failed to covert partition GPT to MBR\n");
2462
2463 // Tell the kernel to rescan the partition table
2464 int fd = open(Device.c_str(), O_RDONLY);
2465 ioctl(fd, BLKRRPART, 0);
2466 close(fd);
2467
2468 string format_device = Device;
2469 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2470 format_device += "p";
2471
2472 // Format new partitions to proper file system
2473 if (fat_size > 0) {
2474 Command = "mkfs.fat " + format_device + "1";
2475 TWFunc::Exec_Cmd(Command);
2476 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002477 if (ext > 0) {
2478 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002479 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2480 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2481 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2482 TWFunc::Exec_Cmd(Command);
2483 } else {
2484 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002485 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002486 }
2487 if (swap > 0) {
2488 Command = "mkswap " + format_device;
2489 if (ext > 0)
2490 Command += "3";
2491 else
2492 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002493 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002494 }
2495
Ethan Yonker483e9f42016-01-11 22:21:18 -06002496 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2497 if (SDCard->Mount(true)) {
2498 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2499 mkdir(TWRP_Folder.c_str(), 0777);
2500 DataManager::Flush();
2501 }
2502
Dees_Troy9350b8d2012-09-27 12:38:38 -04002503 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002504 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002505 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002506}
Dees_Troya13d74f2013-03-24 08:54:55 -05002507
2508void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2509 std::vector<TWPartition*>::iterator iter;
2510 if (ListType == "mount") {
2511 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002512 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002513 struct PartitionList part;
2514 part.Display_Name = (*iter)->Display_Name;
2515 part.Mount_Point = (*iter)->Mount_Point;
2516 part.selected = (*iter)->Is_Mounted();
2517 Partition_List->push_back(part);
2518 }
2519 }
2520 } else if (ListType == "storage") {
2521 char free_space[255];
2522 string Current_Storage = DataManager::GetCurrentStoragePath();
2523 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2524 if ((*iter)->Is_Storage) {
2525 struct PartitionList part;
2526 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2527 part.Display_Name = (*iter)->Storage_Name + " (";
2528 part.Display_Name += free_space;
2529 part.Display_Name += "MB)";
2530 part.Mount_Point = (*iter)->Storage_Path;
2531 if ((*iter)->Storage_Path == Current_Storage)
2532 part.selected = 1;
2533 else
2534 part.selected = 0;
2535 Partition_List->push_back(part);
2536 }
2537 }
2538 } else if (ListType == "backup") {
2539 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002540 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002541 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002542 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002543 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002544 Backup_Size = (*iter)->Backup_Size;
2545 if ((*iter)->Has_SubPartition) {
2546 std::vector<TWPartition*>::iterator subpart;
2547
2548 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2549 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2550 Backup_Size += (*subpart)->Backup_Size;
2551 }
2552 }
2553 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002554 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2555 part.Display_Name += backup_size;
2556 part.Display_Name += "MB)";
2557 part.Mount_Point = (*iter)->Backup_Path;
2558 part.selected = 0;
2559 Partition_List->push_back(part);
2560 }
2561 }
2562 } else if (ListType == "restore") {
2563 string Restore_List, restore_path;
2564 TWPartition* restore_part = NULL;
2565
2566 DataManager::GetValue("tw_restore_list", Restore_List);
2567 if (!Restore_List.empty()) {
2568 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2569 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2570 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002571 struct PartitionList part;
2572 if (restore_path.compare("ADB_Backup") == 0) {
2573 part.Display_Name = "ADB Backup";
2574 part.Mount_Point = "ADB Backup";
2575 part.selected = 1;
2576 Partition_List->push_back(part);
2577 break;
2578 }
Dees_Troy59df9262013-06-19 14:53:57 -05002579 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002580 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002581 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002582 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002583 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002584 part.Display_Name = restore_part->Backup_Display_Name;
2585 part.Mount_Point = restore_part->Backup_Path;
2586 part.selected = 1;
2587 Partition_List->push_back(part);
2588 }
2589 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002590 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002591 }
2592 start_pos = end_pos + 1;
2593 end_pos = Restore_List.find(";", start_pos);
2594 }
2595 }
2596 } else if (ListType == "wipe") {
2597 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002598 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002599 dalvik.Mount_Point = "DALVIK";
2600 dalvik.selected = 0;
2601 Partition_List->push_back(dalvik);
2602 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2603 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2604 struct PartitionList part;
2605 part.Display_Name = (*iter)->Display_Name;
2606 part.Mount_Point = (*iter)->Mount_Point;
2607 part.selected = 0;
2608 Partition_List->push_back(part);
2609 }
2610 if ((*iter)->Has_Android_Secure) {
2611 struct PartitionList part;
2612 part.Display_Name = (*iter)->Backup_Display_Name;
2613 part.Mount_Point = (*iter)->Backup_Path;
2614 part.selected = 0;
2615 Partition_List->push_back(part);
2616 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002617 if ((*iter)->Has_Data_Media) {
2618 struct PartitionList datamedia;
2619 datamedia.Display_Name = (*iter)->Storage_Name;
2620 datamedia.Mount_Point = "INTERNAL";
2621 datamedia.selected = 0;
2622 Partition_List->push_back(datamedia);
2623 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002624 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002625 } else if (ListType == "flashimg") {
2626 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2627 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2628 struct PartitionList part;
2629 part.Display_Name = (*iter)->Backup_Display_Name;
2630 part.Mount_Point = (*iter)->Backup_Path;
2631 part.selected = 0;
2632 Partition_List->push_back(part);
2633 }
2634 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002635 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2636 TWPartition* boot = Find_Partition_By_Path("/boot");
2637 if (boot) {
2638 // Allow flashing kernels and ramdisks
2639 struct PartitionList repack_ramdisk;
2640 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2641 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2642 repack_ramdisk.selected = 0;
2643 Partition_List->push_back(repack_ramdisk);
2644 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2645 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2646 repack_kernel.Mount_Point = "/repack_kernel";
2647 repack_kernel.selected = 0;
2648 Partition_List->push_back(repack_kernel);*/
2649 }
2650 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002651 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002652 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002653 }
2654}
2655
2656int TWPartitionManager::Fstab_Processed(void) {
2657 return Partitions.size();
2658}
Dees_Troyd93bda52013-07-03 19:55:19 +00002659
2660void TWPartitionManager::Output_Storage_Fstab(void) {
2661 std::vector<TWPartition*>::iterator iter;
2662 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002663 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002664 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002665
2666 if (cacheDir.empty()) {
2667 LOGINFO("Unable to find cache directory\n");
2668 return;
2669 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002670
bigbiff25d25b92020-06-19 16:07:38 -04002671 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002672 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002673
2674 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002675 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002676 return;
2677 }
2678
2679 // Iterate through all partitions
2680 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2681 if ((*iter)->Is_Storage) {
2682 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2683 strcpy(storage_partition, Temp.c_str());
2684 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2685 }
2686 }
2687 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002688}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002689
2690TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2691{
2692 TWPartition *res = NULL;
2693 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002694 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002695 continue;
2696
Matt Mowera8a89d12016-12-30 18:10:37 -06002697 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002698 return *iter;
2699
Matt Mowera8a89d12016-12-30 18:10:37 -06002700 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002701 res = *iter;
2702 }
2703 return res;
2704}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002705
2706bool TWPartitionManager::Enable_MTP(void) {
2707#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002708 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002709 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002710 return true;
2711 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002712
2713 int mtppipe[2];
2714
2715 if (pipe(mtppipe) < 0) {
2716 LOGERR("Error creating MTP pipe\n");
2717 return false;
2718 }
2719
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002720 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002721 property_get("sys.usb.config", old_value, "");
2722 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002723 char vendor[PROPERTY_VALUE_MAX];
2724 char product[PROPERTY_VALUE_MAX];
2725 property_set("sys.usb.config", "none");
2726 property_get("usb.vendor", vendor, "18D1");
2727 property_get("usb.product.mtpadb", product, "4EE2");
2728 string vendorstr = vendor;
2729 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002730 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2731 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002732 property_set("sys.usb.config", "mtp,adb");
2733 }
Matt Mower653a1702017-02-16 10:38:52 -06002734 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002735 * twrp set tw_mtp_debug 1
2736 */
2737 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002738 mtppid = mtp->forkserver(mtppipe);
2739 if (mtppid) {
2740 close(mtppipe[0]); // Host closes read side
2741 mtp_write_fd = mtppipe[1];
2742 DataManager::SetValue("tw_mtp_enabled", 1);
2743 Add_All_MTP_Storage();
2744 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002745 } else {
2746 close(mtppipe[0]);
2747 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002748 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002749 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002750 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002751#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002752 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002753#endif
2754 DataManager::SetValue("tw_mtp_enabled", 0);
2755 return false;
2756}
2757
Ethan Yonker1b039202015-01-30 10:08:48 -06002758void TWPartitionManager::Add_All_MTP_Storage(void) {
2759#ifdef TW_HAS_MTP
2760 std::vector<TWPartition*>::iterator iter;
2761
2762 if (!mtppid)
2763 return; // MTP is not enabled
2764
2765 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2766 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2767 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2768 }
2769#else
2770 return;
2771#endif
2772}
2773
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002774bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002775 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002776 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002777 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002778 if (strcmp(old_value, "adb") != 0) {
2779 char vendor[PROPERTY_VALUE_MAX];
2780 char product[PROPERTY_VALUE_MAX];
2781 property_set("sys.usb.config", "none");
2782 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002783 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002784 string vendorstr = vendor;
2785 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002786 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2787 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002788 usleep(2000);
2789 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002790#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002791 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002792 LOGINFO("Disabling MTP\n");
2793 int status;
2794 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002795 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002796 // We don't care about the exit value, but this prevents a zombie process
2797 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002798 close(mtp_write_fd);
2799 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002800 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002801#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002802 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002803#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002804 DataManager::SetValue("tw_mtp_enabled", 0);
2805 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002806#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002807 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002808}
Ethan Yonker726a0202014-12-16 20:01:38 -06002809
2810TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2811 std::vector<TWPartition*>::iterator iter;
2812
2813 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2814 if ((*iter)->MTP_Storage_ID == Storage_ID)
2815 return (*iter);
2816 }
2817 return NULL;
2818}
2819
2820bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2821#ifdef TW_HAS_MTP
2822 struct mtpmsg mtp_message;
2823
2824 if (!mtppid)
2825 return false; // MTP is disabled
2826
2827 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002828 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002829 return false;
2830 }
2831
2832 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002833 if (Part->MTP_Storage_ID == 0)
2834 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002835 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2836 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2837 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2838 mtp_message.storage_id = Part->MTP_Storage_ID;
2839 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002840 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002841 return false;
2842 } else {
2843 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2844 return true;
2845 }
2846 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2847 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2848 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002849 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2850 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2851 return false;
2852 }
2853 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2854 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2855 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2856 return false;
2857 }
2858 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002859 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002860 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 -06002861 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002862 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002863 return false;
2864 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002865 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002866 return true;
2867 }
2868 } else {
2869 LOGERR("Unknown MTP message type: %i\n", message_type);
2870 }
2871 } else {
2872 // This hopefully never happens as the error handling should
2873 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002874 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002875 }
2876 return true;
2877#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002878 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002879 DataManager::SetValue("tw_mtp_enabled", 0);
2880 return false;
2881#endif
2882}
2883
2884bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2885#ifdef TW_HAS_MTP
2886 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2887 if (Part) {
2888 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2889 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002890 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002891 }
2892#endif
2893 return false;
2894}
2895
2896bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2897#ifdef TW_HAS_MTP
2898 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2899 if (Part) {
2900 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2901 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002902 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002903 }
2904#endif
2905 return false;
2906}
2907
2908bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2909#ifdef TW_HAS_MTP
2910 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2911 if (Part) {
2912 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2913 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002914 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002915 }
2916#endif
2917 return false;
2918}
2919
2920bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2921#ifdef TW_HAS_MTP
2922 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2923 if (Part) {
2924 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2925 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002926 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002927 }
2928#endif
2929 return false;
2930}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002931
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002932bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002933 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002934 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002935 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002936 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002937 size_t start_pos = 0, end_pos = 0;
2938
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002939 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002940
bigbiffce8f83c2015-12-12 18:30:21 -05002941 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2942 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2943
2944 if (!TWFunc::Path_Exists(full_filename)) {
2945 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002946 return false;
2947 }
bigbiffce8f83c2015-12-12 18:30:21 -05002948 if (!TWFunc::Path_Exists(full_filename)) {
2949 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002950 return false;
2951 }
2952 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002953
Ethan Yonker53796e72019-01-11 22:49:52 -06002954 DataManager::GetValue("tw_flash_partition", Flash_List);
2955 Repack_Type repack = REPLACE_NONE;
2956 if (Flash_List == "/repack_ramdisk;") {
2957 repack = REPLACE_RAMDISK;
2958 } else if (Flash_List == "/repack_kernel;") {
2959 repack = REPLACE_KERNEL;
2960 }
2961 if (repack != REPLACE_NONE) {
2962 Repack_Options_struct Repack_Options;
2963 Repack_Options.Type = repack;
2964 Repack_Options.Disable_Verity = false;
2965 Repack_Options.Disable_Force_Encrypt = false;
2966 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002967 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002968 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002969 PartitionSettings part_settings;
2970 part_settings.Backup_Folder = path;
2971 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2972 ProgressTracking progress(total_bytes);
2973 part_settings.progress = &progress;
2974 part_settings.adbbackup = false;
2975 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002976 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002977 if (!Flash_List.empty()) {
2978 end_pos = Flash_List.find(";", start_pos);
2979 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2980 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2981 flash_part = Find_Partition_By_Path(flash_path);
2982 if (flash_part != NULL) {
2983 partition_count++;
2984 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002985 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002986 return false;
2987 }
2988 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002989 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002990 return false;
2991 }
2992 start_pos = end_pos + 1;
2993 end_pos = Flash_List.find(";", start_pos);
2994 }
2995 }
2996
2997 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002998 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002999 return false;
3000 }
3001
3002 DataManager::SetProgress(0.0);
3003 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05003004 flash_part->Backup_FileName = filename;
3005 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06003006 return false;
3007 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05003008 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003009 return false;
3010 }
Ethan Yonker74db1572015-10-28 12:44:49 -05003011 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003012 return true;
3013}
Ethan Yonker74db1572015-10-28 12:44:49 -05003014
3015void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
3016 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
3017 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003018 if (part->Is_Adopted_Storage) {
3019 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
3020 part->Backup_Display_Name = part->Display_Name;
3021 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
3022 } else {
3023 part->Display_Name = gui_lookup(resource_name, default_value);
3024 part->Backup_Display_Name = part->Display_Name;
3025 }
Ethan Yonker74db1572015-10-28 12:44:49 -05003026 }
3027}
3028
3029void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
3030 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
3031 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003032 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06003033 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06003034 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06003035 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
3036 } else {
3037 part->Display_Name = gui_lookup(resource_name, default_value);
3038 part->Backup_Display_Name = part->Display_Name;
3039 if (part->Is_Storage)
3040 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
3041 }
Ethan Yonker74db1572015-10-28 12:44:49 -05003042 }
3043}
3044
Ethan Yonker01f4e032017-02-03 15:30:52 -06003045void 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) {
3046 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
3047 if (part) {
3048 if (part->Is_Adopted_Storage) {
3049 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
3050 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
3051 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
3052 } else {
3053 part->Display_Name = gui_lookup(resource_name, default_value);
3054 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
3055 if (part->Is_Storage)
3056 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
3057 }
3058 }
3059}
3060
Ethan Yonker74db1572015-10-28 12:44:49 -05003061void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06003062 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05003063 Translate_Partition("/system", "system", "System");
3064 Translate_Partition("/system_image", "system_image", "System Image");
3065 Translate_Partition("/vendor", "vendor", "Vendor");
3066 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
3067 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05003068 Translate_Partition("/boot", "boot", "Boot");
3069 Translate_Partition("/recovery", "recovery", "Recovery");
3070 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06003071 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05003072 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
3073 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
3074 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
3075 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06003076 } else {
3077 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05003078 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06003079 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
3080 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05003081 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
3082 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
3083
3084 // Android secure is a special case
3085 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
3086 if (part)
3087 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
3088
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003089 std::vector<TWPartition*>::iterator sysfs;
3090 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
3091 if (!(*sysfs)->Sysfs_Entry.empty()) {
3092 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
3093 }
3094 }
3095
Ethan Yonker74db1572015-10-28 12:44:49 -05003096 // This updates the text on all of the storage selection buttons in the GUI
3097 DataManager::SetBackupFolder();
3098}
Ethan Yonker66a19492015-12-10 10:19:45 -06003099
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003100bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06003101#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003102 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003103 if (!Mount_By_Path("/data", false)) {
3104 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003105 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003106 }
Darth98f775972022-08-05 09:39:03 +01003107
3108 std::string path = "/data/system/storage.xml";
3109 if (!TWFunc::Check_Xml_Format(path)) {
3110 std::string oldpath = path;
3111 if (TWFunc::abx_to_xml(oldpath, path)) {
3112 LOGINFO("Android 12+: '%s' has been converted into plain text xml (%s).\n", oldpath.c_str(), path.c_str());
3113 }
3114 }
3115
Fernando Oliveira25062d72023-02-01 12:52:32 -03003116 //Devices without encryption do not run the Post_Decrypt function so the "data/recovery" folder was not being created on these devices
3117 DataManager::SetValue("tw_settings_path", TW_STORAGE_PATH);
Ethan Yonker66a19492015-12-10 10:19:45 -06003118 LOGINFO("Decrypt adopted storage starting\n");
Darth98f775972022-08-05 09:39:03 +01003119 char* xmlFile = PageManager::LoadFileToBuffer(path, NULL);
Ethan Yonker66a19492015-12-10 10:19:45 -06003120 xml_document<> *doc = NULL;
3121 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06003122 string Primary_Storage_UUID = "";
3123 if (xmlFile != NULL) {
3124 LOGINFO("successfully loaded storage.xml\n");
3125 doc = new xml_document<>();
3126 doc->parse<0>(xmlFile);
3127 volumes = doc->first_node("volumes");
3128 if (volumes) {
3129 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
3130 if (psuuid) {
3131 Primary_Storage_UUID = psuuid->value();
3132 }
3133 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003134 } else {
3135 LOGINFO("No /data/system/storage.xml for adopted storage\n");
3136 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003137 }
3138 std::vector<TWPartition*>::iterator adopt;
3139 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
Peter Cai439d60c2019-10-17 08:49:10 +08003140 if ((*adopt)->Removable && !(*adopt)->Is_Present && (*adopt)->Adopted_Mount_Delay > 0) {
3141 // On some devices, the external mmc driver takes some time
3142 // to recognize the card, in which case the "actual block device"
3143 // would not have been found yet. We wait the specified delay
3144 // and then try again.
3145 LOGINFO("Sleeping %d seconds for adopted storage.\n", (*adopt)->Adopted_Mount_Delay);
3146 sleep((*adopt)->Adopted_Mount_Delay);
3147 (*adopt)->Find_Actual_Block_Device();
3148 }
3149
Ethan Yonker66a19492015-12-10 10:19:45 -06003150 if ((*adopt)->Removable && (*adopt)->Is_Present) {
3151 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003152 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06003153 if (volumes) {
3154 xml_node<>* volume = volumes->first_node("volume");
3155 while (volume) {
3156 xml_attribute<>* guid = volume->first_attribute("partGuid");
3157 if (guid) {
3158 string GUID = (*adopt)->Adopted_GUID.c_str();
3159 GUID.insert(8, "-");
3160 GUID.insert(13, "-");
3161 GUID.insert(18, "-");
3162 GUID.insert(23, "-");
3163
3164 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
3165 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03003166 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003167 (*adopt)->Storage_Name = attr->value();
3168 (*adopt)->Display_Name = (*adopt)->Storage_Name;
3169 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
3170 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
3171 }
3172 attr = volume->first_attribute("fsUuid");
3173 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
3174 TWPartition* Dat = Find_Partition_By_Path("/data");
3175 if (Dat) {
3176 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
3177 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
3178 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
3179 Dat->Symlink_Mount_Point = "";
3180 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
3181 Dat->UnMount(false);
3182 Dat->Mount(false);
3183 (*adopt)->UnMount(false);
3184 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06003185 }
3186 }
3187 break;
3188 }
3189 }
3190 volume = volume->next_sibling("volume");
3191 }
3192 }
nkk71ffb02bd2017-06-04 23:12:16 +03003193 Update_System_Details();
3194 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06003195 }
3196 }
3197 }
3198 if (xmlFile) {
3199 doc->clear();
3200 delete doc;
3201 free(xmlFile);
3202 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003203 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06003204#else
3205 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003206 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003207#endif
3208}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003209
3210void TWPartitionManager::Remove_Partition_By_Path(string Path) {
3211 std::vector<TWPartition*>::iterator iter;
3212 string Local_Path = TWFunc::Get_Root_Path(Path);
3213
3214 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3215 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
3216 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3217 Partitions.erase(iter);
3218 return;
3219 }
3220 }
3221}
Ethan Yonker1b190162016-12-05 15:25:19 -06003222
bigbiff74a46272021-07-31 19:02:26 -04003223void TWPartitionManager::Override_Active_Slot(const string& Slot) {
3224 LOGINFO("Overriding slot to '%s'\n", Slot.c_str());
3225 Active_Slot_Display = Slot;
3226 DataManager::SetValue("tw_active_slot", Slot);
nebrassy07c4b902021-11-21 03:32:47 +01003227 PartitionManager.Update_System_Details();
bigbiff74a46272021-07-31 19:02:26 -04003228}
3229
Ethan Yonker1b190162016-12-05 15:25:19 -06003230void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3231 if (Slot != "A" && Slot != "B") {
3232 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3233 return;
3234 }
3235 if (Active_Slot_Display == Slot)
3236 return;
3237 LOGINFO("Setting active slot %s\n", Slot.c_str());
3238#ifdef AB_OTA_UPDATER
3239 if (!Active_Slot_Display.empty()) {
dianlujitaoa90dc462021-12-16 16:56:26 +08003240 android::sp<IBootControl> module = IBootControl::getService();
3241 if (module == nullptr) {
Ethan Yonker1b190162016-12-05 15:25:19 -06003242 LOGERR("Error getting bootctrl module.\n");
3243 } else {
dianlujitaoa90dc462021-12-16 16:56:26 +08003244 uint32_t slot_number = 0;
Ethan Yonker1b190162016-12-05 15:25:19 -06003245 if (Slot == "B")
3246 slot_number = 1;
dianlujitaoa90dc462021-12-16 16:56:26 +08003247 CommandResult result;
3248 auto ret = module->setActiveBootSlot(slot_number, [&result]
3249 (const CommandResult &cb_result) { result = cb_result; });
3250 if (!ret.isOk() || !result.success)
Ethan Yonker1b190162016-12-05 15:25:19 -06003251 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3252 }
3253 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
3254 }
3255#else
3256 LOGERR("Boot slot feature not present\n");
3257#endif
3258 Active_Slot_Display = Slot;
3259 if (Fstab_Processed())
3260 Update_System_Details();
3261}
3262string TWPartitionManager::Get_Active_Slot_Suffix() {
3263 if (Active_Slot_Display == "A")
3264 return "_a";
3265 return "_b";
3266}
3267string TWPartitionManager::Get_Active_Slot_Display() {
3268 return Active_Slot_Display;
3269}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003270
Captain Throwback9d6feb52018-07-27 10:05:24 -04003271string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04003272 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003273}
3274
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003275void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3276 std::vector<TWPartition*>::iterator iter;
3277
3278 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3279 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3280 TWPartition *part = *iter;
3281 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3282 (*iter)->UnMount(false);
3283 rmdir((*iter)->Mount_Point.c_str());
3284 iter = Partitions.erase(iter);
3285 delete part;
3286 } else {
3287 iter++;
3288 }
3289 }
3290}
3291
3292void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3293 std::vector<TWPartition*>::iterator iter;
3294
3295 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3296 if (!(*iter)->Sysfs_Entry.empty()) {
3297 string device;
3298 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3299 if (wildcard != string::npos) {
3300 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3301 } else {
3302 device = (*iter)->Sysfs_Entry;
3303 }
3304 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3305 // Found a match
3306 if (uevent_data.action == "add") {
3307 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3308 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3309 (*iter)->Is_Present = true;
3310 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3311 if (!Decrypt_Adopted()) {
3312 LOGINFO("No adopted storage so finding actual block device\n");
3313 (*iter)->Find_Actual_Block_Device();
3314 }
3315 return;
3316 } else if (uevent_data.action == "remove") {
3317 (*iter)->Is_Present = false;
3318 (*iter)->Primary_Block_Device = "";
3319 (*iter)->Actual_Block_Device = "";
3320 Remove_Uevent_Devices((*iter)->Mount_Point);
3321 return;
3322 }
3323 }
3324 }
3325 }
bigbiffee7b7ff2020-03-23 15:08:27 -04003326
3327 if (!PartitionManager.Get_Super_Status())
3328 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 -06003329}
3330
3331void TWPartitionManager::setup_uevent() {
3332 struct sockaddr_nl nls;
3333
3334 if (uevent_pfd.fd >= 0) {
3335 LOGINFO("uevent already set up\n");
3336 return;
3337 }
3338
3339 // Open hotplug event netlink socket
3340 memset(&nls,0,sizeof(struct sockaddr_nl));
3341 nls.nl_family = AF_NETLINK;
3342 nls.nl_pid = getpid();
3343 nls.nl_groups = -1;
3344 uevent_pfd.events = POLLIN;
3345 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3346 if (uevent_pfd.fd==-1) {
3347 LOGERR("uevent not root\n");
3348 return;
3349 }
3350
3351 // Listen to netlink socket
3352 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3353 LOGERR("Bind failed\n");
3354 return;
3355 }
3356 set_select_fd();
3357 Coldboot();
3358}
3359
3360Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3361 Uevent_Block_Data ret;
3362 ret.subsystem = "";
3363 char *ptr = buf;
3364 const char *end = buf + len;
3365
3366 buf[len - 1] = '\0';
3367 while (ptr < end) {
3368 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3369 ptr += strlen("ACTION=");
3370 ret.action = ptr;
3371 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3372 ptr += strlen("SUBSYSTEM=");
3373 ret.subsystem = ptr;
3374 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3375 ptr += strlen("DEVTYPE=");
3376 ret.type = ptr;
3377 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3378 ptr += strlen("DEVPATH=");
3379 ret.sysfs_path += ptr;
3380 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3381 ptr += strlen("DEVNAME=");
3382 ret.block_device += ptr;
3383 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3384 ptr += strlen("MAJOR=");
3385 ret.major = atoi(ptr);
3386 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3387 ptr += strlen("MINOR=");
3388 ret.minor = atoi(ptr);
3389 }
3390 ptr += strlen(ptr) + 1;
3391 }
3392 return ret;
3393}
3394
3395void TWPartitionManager::read_uevent() {
3396 char buf[1024];
3397
3398 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3399 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003400 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003401 return;
3402 }
3403 /*int i = 0; // Print all uevent output for test /debug
3404 while (i<len) {
3405 printf("%s\n", buf+i);
3406 i += strlen(buf+i)+1;
3407 }*/
3408 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3409 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3410 PartitionManager.Handle_Uevent(uevent_data);
3411 }
3412}
3413
3414void TWPartitionManager::close_uevent() {
3415 if (uevent_pfd.fd > 0)
3416 close(uevent_pfd.fd);
3417 uevent_pfd.fd = -1;
3418}
3419
3420void TWPartitionManager::Add_Partition(TWPartition* Part) {
3421 Partitions.push_back(Part);
3422}
3423
3424void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3425 string Real_Path = Path;
3426 char real_path[PATH_MAX];
3427 if (realpath(Path.c_str(), &real_path[0])) {
3428 string Real_Path = real_path;
3429 std::vector<string>::iterator iter;
3430 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3431 if (Real_Path.find((*iter)) != string::npos) {
3432 string Write_Path = Real_Path + "/uevent";
3433 if (TWFunc::Path_Exists(Write_Path)) {
3434 const char* write_val = "add\n";
3435 TWFunc::write_to_file(Write_Path, write_val);
3436 break;
3437 }
3438 }
3439 }
3440 }
3441
3442 DIR* d = opendir(Path.c_str());
3443 if (d != NULL) {
3444 struct dirent* de;
3445 while ((de = readdir(d)) != NULL) {
3446 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3447 continue;
3448 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3449 continue;
3450
3451 string item = Path + "/";
3452 item.append(de->d_name);
3453 Coldboot_Scan(sysfs_entries, item, depth + 1);
3454 }
3455 closedir(d);
3456 }
3457}
3458
3459void TWPartitionManager::Coldboot() {
3460 std::vector<TWPartition*>::iterator iter;
3461 std::vector<string> sysfs_entries;
3462
3463 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3464 if (!(*iter)->Sysfs_Entry.empty()) {
3465 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3466 if (wildcard_pos == string::npos)
3467 wildcard_pos = (*iter)->Sysfs_Entry.size();
3468 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3469 }
3470 }
3471
3472 if (sysfs_entries.size() > 0)
3473 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3474}
Ethan Yonker53796e72019-01-11 22:49:52 -06003475
3476bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3477 if (TWFunc::Path_Exists(Folder))
3478 TWFunc::removeDir(Folder, false);
3479 return TWFunc::Recursive_Mkdir(Folder);
3480}
3481
bigbiffcfa875c2021-06-20 16:20:27 -04003482std::string TWPartitionManager::Get_Bare_Partition_Name(std::string Mount_Point) {
3483 if (Mount_Point == "/system_root")
3484 return "system";
3485 else
3486 return TWFunc::Remove_Beginning_Slash(Mount_Point);
3487}
3488
bigbiffee7b7ff2020-03-23 15:08:27 -04003489bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3490 Fstab fstab;
bigbiffcfa875c2021-06-20 16:20:27 -04003491 std::string bare_partition_name = Get_Bare_Partition_Name(twrpPart->Get_Mount_Point());
bigbiffee7b7ff2020-03-23 15:08:27 -04003492
bigbiff998f8392021-08-06 19:19:33 -04003493 Super_Partition_List.push_back(bare_partition_name);
bigbiffee7b7ff2020-03-23 15:08:27 -04003494 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3495
3496 std::string blk_device_partition;
3497#ifdef AB_OTA_UPDATER
3498 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3499#else
3500 blk_device_partition = bare_partition_name;
3501#endif
3502
3503 FstabEntry fstabEntry = {
3504 .blk_device = blk_device_partition,
3505 .mount_point = twrpPart->Get_Mount_Point(),
3506 .fs_type = twrpPart->Current_File_System,
3507 .fs_mgr_flags.logical = twrpPart->Is_Super,
3508 };
3509
3510 fstab.emplace_back(fstabEntry);
3511 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
Captain Throwbackc6939102021-04-06 12:57:30 -04003512 LOGINFO("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
bigbiffee7b7ff2020-03-23 15:08:27 -04003513 return false;
3514 }
3515
bigbiff32cbabe2020-04-12 19:16:19 -04003516 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3517 usleep(100);
3518 }
3519
bigbiffee7b7ff2020-03-23 15:08:27 -04003520 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3521 twrpPart->Update_Size(true);
bigbiffee7b7ff2020-03-23 15:08:27 -04003522 twrpPart->Set_Can_Be_Backed_Up(false);
3523 twrpPart->Set_Can_Be_Wiped(false);
me-cafebabe928234b2022-07-28 04:07:04 +08003524 if (access(("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str(), F_OK) == -1) {
3525 LOGINFO("Symlinking %s => /dev/block/bootdevice/by-name/%s \n", fstabEntry.blk_device.c_str(), bare_partition_name.c_str());
3526 symlink(fstabEntry.blk_device.c_str(), ("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str());
Captain Throwback88c6e652023-01-16 15:32:26 -05003527 property_set("twrp.super.symlinks_created", "true");
me-cafebabe928234b2022-07-28 04:07:04 +08003528 }
Mohd Faraz7fc70502021-04-22 20:44:11 +02003529
bigbiffee7b7ff2020-03-23 15:08:27 -04003530 return true;
3531}
3532
3533bool TWPartitionManager::Prepare_All_Super_Volumes() {
3534 bool status = true;
3535 std::vector<TWPartition*>::iterator iter;
3536
3537 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3538 if ((*iter)->Is_Super) {
3539 if (!Prepare_Super_Volume(*iter)) {
3540 status = false;
Mohd Faraz787cc612023-01-02 22:47:51 +01003541 Partitions.erase(iter--);
bigbiffee7b7ff2020-03-23 15:08:27 -04003542 }
3543 PartitionManager.Output_Partition(*iter);
3544 }
3545 }
3546 Update_System_Details();
3547 return status;
3548}
3549
bigbiffee7b7ff2020-03-23 15:08:27 -04003550std::string TWPartitionManager::Get_Super_Partition() {
3551 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
bigbiff998f8392021-08-06 19:19:33 -04003552 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
bigbiffee7b7ff2020-03-23 15:08:27 -04003553 return "/dev/block/by-name/" + super_device;
3554}
3555
3556void TWPartitionManager::Setup_Super_Devices() {
3557 std::string superPart = Get_Super_Partition();
3558 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003559}
3560
3561void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003562 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003563 std::string superPart = Get_Super_Partition();
3564
3565 superPartition->Backup_Path = "/super";
3566 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003567 superPartition->Actual_Block_Device = superPart;
3568 superPartition->Alternate_Block_Device = superPart;
bigbiff998f8392021-08-06 19:19:33 -04003569 superPartition->Backup_Display_Name = "Super (";
3570 // Add first 4 items to fstab as logical that you would like to display in Backup_Display_Name
3571 // for the Super partition
3572 int list_size = Super_Partition_List.size();
3573 int orig_list_size = list_size;
3574 int max_display_size = 3; // total of 4 items since we start at 0
3575
3576 for (auto partition: Super_Partition_List) {
3577 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + partition;
3578 if ((orig_list_size - list_size) == max_display_size) {
3579 break;
3580 }
3581 if (list_size != 1)
3582 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + " ";
3583 list_size--;
3584 }
3585 superPartition->Backup_Display_Name += ")";
bigbiffee7b7ff2020-03-23 15:08:27 -04003586 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003587 superPartition->Current_File_System = "emmc";
3588 superPartition->Can_Be_Backed_Up = true;
3589 superPartition->Is_Present = true;
3590 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003591 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003592 Add_Partition(superPartition);
3593 PartitionManager.Output_Partition(superPartition);
bigbiffee7b7ff2020-03-23 15:08:27 -04003594}
3595
3596bool TWPartitionManager::Get_Super_Status() {
Mohd Faraz88b4bab2023-01-01 02:43:01 +05303597 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003598}
bigbiff25d25b92020-06-19 16:07:38 -04003599
3600bool TWPartitionManager::Recreate_Logs_Dir() {
3601#ifdef TW_INCLUDE_FBE
3602 struct passwd pd;
3603 struct passwd *pwdptr = &pd;
3604 struct passwd *tempPd;
3605 char pwdBuf[512];
3606 int uid = 0, gid = 0;
3607
3608 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3609 LOGERR("unable to get system user id\n");
3610 return false;
3611 } else {
3612 struct group grp;
3613 struct group *grpptr = &grp;
3614 struct group *tempGrp;
3615 char grpBuf[512];
3616
3617 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3618 LOGERR("unable to get cache group id\n");
3619 return false;
3620 } else {
3621 uid = pd.pw_uid;
3622 gid = grp.gr_gid;
3623 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3624 abLogsRecoveryDir += "/recovery/";
3625
3626 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3627 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3628 return false;
3629 }
3630 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3631 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3632 return false;
3633 }
3634 }
3635 }
3636#endif
3637 return true;
3638}
bigbiff1f9e4842020-10-31 11:33:15 -04003639
3640void TWPartitionManager::Unlock_Block_Partitions() {
3641 int fd, OFF = 0;
3642
3643 const std::string block_path = "/dev/block/";
3644 DIR* d = opendir(block_path.c_str());
3645 if (d != NULL) {
3646 struct dirent* de;
3647 while ((de = readdir(d)) != NULL) {
3648 if (de->d_type == DT_BLK) {
3649 std::string block_device = block_path + de->d_name;
bigbiff1f9e4842020-10-31 11:33:15 -04003650 if ((fd = open(block_device.c_str(), O_RDONLY | O_CLOEXEC)) < 0) {
3651 LOGERR("unable to open block device %s: %s\n", block_device.c_str(), strerror(errno));
3652 continue;
3653 }
3654 if (ioctl(fd, BLKROSET, &OFF) == -1) {
me-cafebabed63fcaa2022-07-28 03:19:20 +08003655 LOGERR("Unable to unlock %s: %s\n", block_device.c_str());
bigbiff1f9e4842020-10-31 11:33:15 -04003656 continue;
3657 }
3658 close(fd);
3659 }
3660 }
3661 closedir(d);
3662 }
bigbiffaf253cd2020-12-06 16:50:55 -05003663}
bigbiffcfa875c2021-06-20 16:20:27 -04003664
3665bool TWPartitionManager::Unmap_Super_Devices() {
3666 bool destroyed = false;
3667#ifndef TW_EXCLUDE_APEX
3668 twrpApex apex;
3669 apex.Unmount();
3670#endif
3671 for (auto iter = Partitions.begin(); iter != Partitions.end();) {
3672 LOGINFO("Checking partition: %s\n", (*iter)->Get_Mount_Point().c_str());
3673 if ((*iter)->Is_Super) {
3674 TWPartition *part = *iter;
3675 std::string bare_partition_name = Get_Bare_Partition_Name((*iter)->Get_Mount_Point());
me-cafebabe2136fc52022-07-20 06:42:18 +08003676 std::string blk_device_partition = bare_partition_name;
3677 if (DataManager::GetStrValue(TW_VIRTUAL_AB_ENABLED) == "1")
3678 blk_device_partition.append(PartitionManager.Get_Active_Slot_Suffix());
bigbiffcfa875c2021-06-20 16:20:27 -04003679 (*iter)->UnMount(false);
3680 LOGINFO("removing dynamic partition: %s\n", blk_device_partition.c_str());
3681 destroyed = DestroyLogicalPartition(blk_device_partition);
3682 std::string cow_partition = blk_device_partition + "-cow";
3683 std::string cow_partition_path = "/dev/block/mapper/" + cow_partition;
3684 struct stat st;
3685 if (lstat(cow_partition_path.c_str(), &st) == 0) {
3686 LOGINFO("removing cow partition: %s\n", cow_partition.c_str());
3687 destroyed = DestroyLogicalPartition(cow_partition);
3688 }
bigbiffcfa875c2021-06-20 16:20:27 -04003689 iter = Partitions.erase(iter);
3690 delete part;
3691 if (!destroyed) {
3692 return false;
3693 }
3694 } else {
3695 ++iter;
3696 }
3697 }
3698 return true;
3699}
bigbiffd21252f2021-09-18 15:56:32 -04003700
3701
3702bool TWPartitionManager::Check_Pending_Merges() {
3703 auto sm = android::snapshot::SnapshotManager::NewForFirstStageMount();
3704 if (!sm) {
3705 LOGERR("Unable to call snapshot manager\n");
3706 return false;
3707 }
3708
3709 if (!Unmap_Super_Devices()) {
3710 LOGERR("Unable to unmap dynamic partitions.\n");
3711 return false;
3712 }
3713
3714 auto callback = [&]() -> void {
3715 double progress;
3716 sm->GetUpdateState(&progress);
3717 LOGINFO("waiting for merge to complete: %.2f\n", progress);
3718 };
3719
3720 LOGINFO("checking for merges\n");
3721 if (!sm->HandleImminentDataWipe(callback)) {
3722 LOGERR("Unable to check merge status\n");
3723 return false;
3724 }
3725 return true;
Darth98f775972022-08-05 09:39:03 +01003726}