blob: bf6f8a94aca7142dec5fb383255c5af22cce6d9b [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
Mohd Faraza57874b2023-09-30 00:57:58 +0530211void inline Process_ResetProps(TWPartition *ven, TWPartition *odm) {
212 // Reset the crypto volume props according to os.
213 Reset_Prop_From_Partition("ro.crypto.dm_default_key.options_format.version", "", ven, odm);
214 Reset_Prop_From_Partition("ro.crypto.volume.metadata.method", "", ven, odm);
215 Reset_Prop_From_Partition("ro.crypto.volume.options", "", ven, odm);
216 Reset_Prop_From_Partition("external_storage.projid.enabled", "", ven, odm);
217 Reset_Prop_From_Partition("external_storage.casefold.enabled", "", ven, odm);
218 Reset_Prop_From_Partition("external_storage.sdcardfs.enabled", "", ven, odm);
219}
220
221static inline std::string KM_Ver_From_Manifest(std::string ver) {
222 TWFunc::Get_Service_From_Manifest("/vendor", "android.hardware.keymaster", ver);
223 if (strstr(ver.c_str(), "4")) {
224 ver = "4.x";
225 }
226 return ver;
227}
228
229void inline Process_Keymaster_Version(TWPartition *ven, bool Display_Error) {
230 // Fetch the Keymaster Service version to be started
231 std::string version;
232#ifndef TW_FORCE_KEYMASTER_VER
233 version = KM_Ver_From_Manifest(version);
234
235 /* If we are unable to get the version from device vendor then
236 * set the version from the keymaster_ver prop if set
237 */
238 if (version.empty()) {
239 // unmount partition(s)
240 if (ven) ven->UnMount(Display_Error);
241
242 // Use keymaster_ver prop set from device tree (if exists)
243 version = android::base::GetProperty(TW_KEYMASTER_VERSION_PROP, version);
244 if (version.empty()) {
245 LOGINFO("Keymaster_Ver::Unable to find vendor manifest on the device, and no default value set. Checking the ramdisk manifest\n");
246 version = KM_Ver_From_Manifest(version);
247 } else {
248 LOGINFO("Keymaster_Ver::Unable to find vendor manifest on the device. Setting to default value.\n");
249 }
250 } else {
251 if (ven) ven->UnMount(Display_Error);
252 }
253#else
254 if (ven) ven->UnMount(Display_Error);
255
256 version = android::base::GetProperty(TW_KEYMASTER_VERSION_PROP, version);
257 if (version.empty()) {
258 LOGINFO("Keymaster_Ver::Force Keymaster_Ver flag found, but keymaster_ver prop not set.\n");
259 } else {
260 LOGINFO("Keymaster_Ver::Force Keymaster_Ver flag found.\n");
261 }
262#endif
263 LOGINFO("Keymaster_Ver::Using keymaster version '%s' for decryption\n", version.c_str());
264 android::base::SetProperty(TW_KEYMASTER_VERSION_PROP, version.c_str());
265}
266
bigbiff22851b92021-09-01 16:46:57 -0400267int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error, bool recovery_mode) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400268 FILE *fstabFile;
269 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100270 bool parse_userdata = false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600271 std::map<string, Flags_Map> twrp_flags;
272
273 fstabFile = fopen("/etc/twrp.flags", "rt");
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100274 if (Get_Super_Status()) {
275 Setup_Super_Devices();
276 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600277 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200278 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600279 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600280 size_t line_size = strlen(fstab_line);
281 if (fstab_line[line_size - 1] != '\n')
282 fstab_line[line_size] = '\n';
283 Flags_Map line_flags;
284 line_flags.Primary_Block_Device = "";
285 line_flags.Alternate_Block_Device = "";
286 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
287 if (!line_flags.fstab_line) {
288 LOGERR("malloc error on line_flags.fstab_line\n");
289 return false;
290 }
291 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
292 bool found_separator = false;
293 char *fs_loc = NULL;
294 char *block_loc = NULL;
295 char *flags_loc = NULL;
296 size_t index, item_index = 0;
297 for (index = 0; index < line_size; index++) {
298 if (fstab_line[index] <= 32) {
299 fstab_line[index] = '\0';
300 found_separator = true;
301 } else if (found_separator) {
302 if (item_index == 0) {
303 fs_loc = fstab_line + index;
304 } else if (item_index == 1) {
305 block_loc = fstab_line + index;
306 } else if (item_index > 1) {
307 char *ptr = fstab_line + index;
308 if (*ptr == '/') {
309 line_flags.Alternate_Block_Device = ptr;
310 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
311 flags_loc = ptr;
312 // Once we find the flags=, we're done scanning the line
313 break;
314 }
315 }
316 found_separator = false;
317 item_index++;
318 }
319 }
320 if (block_loc)
321 line_flags.Primary_Block_Device = block_loc;
322 if (fs_loc)
323 line_flags.File_System = fs_loc;
324 if (flags_loc)
325 line_flags.Flags = flags_loc;
326 string Mount_Point = fstab_line;
327 twrp_flags[Mount_Point] = line_flags;
328 memset(fstab_line, 0, sizeof(fstab_line));
329 }
330 fclose(fstabFile);
331 }
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100332 TWPartition *data = NULL;
333 TWPartition *meta = NULL;
Mohd Faraza57874b2023-09-30 00:57:58 +0530334#ifndef TW_SKIP_ADDITIONAL_FSTAB
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100335parse:
Mohd Faraza57874b2023-09-30 00:57:58 +0530336#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400337 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100338 if (!parse_userdata && fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000339 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400340 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600341 } else
342 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400343
344 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600345 if (strstr(fstab_line, "swap"))
346 continue; // Skip swap in recovery
347
bigbiff998f8392021-08-06 19:19:33 -0400348 if (fstab_line[0] == '#')
349 continue;
350
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100351 if (parse_userdata) {
352 if (strstr(fstab_line, "/metadata") && !strstr(fstab_line, "/data")) {
sekaiacg01ac7722023-08-01 09:32:00 +0800353 if (meta) {
354 Partitions.erase(std::find(Partitions.begin(), Partitions.end(), meta));
355 delete meta;
356 meta = NULL;
357 }
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100358 } else if (strstr(fstab_line, "/data")) {
sekaiacg01ac7722023-08-01 09:32:00 +0800359 if (data) {
360 Partitions.erase(std::find(Partitions.begin(), Partitions.end(), data));
361 delete data;
362 data = NULL;
363 }
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100364 } else {
365 continue;
366 }
367 }
368
369
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600370 size_t line_size = strlen(fstab_line);
371 if (fstab_line[line_size - 1] != '\n')
372 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400373
Matt Mower2b2dd152016-04-26 11:24:08 -0500374 TWPartition* partition = new TWPartition();
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100375 if (partition->Process_Fstab_Line(fstab_line, Display_Error, parse_userdata ? NULL : &twrp_flags)) {
376 if (partition->Mount_Point == "/data") data = partition;
377 if (partition->Mount_Point == "/metadata") meta = partition;
378 if (partition->Is_Super && !Prepare_Super_Volume(partition)) {
379 goto clear;
380 }
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500381 Partitions.push_back(partition);
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100382 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500383 else
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100384clear:
Dees_Troy5bf43922012-09-07 16:07:55 -0400385 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500386
387 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400388 }
389 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500390
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100391 if (!parse_userdata && twrp_flags.size() > 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600392 LOGINFO("Processing remaining twrp.flags\n");
393 // Add any items from twrp.flags that did not exist in the recovery.fstab
394 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
395 if (Find_Partition_By_Path(mapit->first) == NULL) {
396 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400397 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600398 Partitions.push_back(partition);
399 else
400 delete partition;
401 }
402 if (mapit->second.fstab_line)
403 free(mapit->second.fstab_line);
404 mapit->second.fstab_line = NULL;
405 }
406 }
Mohd Farazfe8bcd42023-08-26 20:50:26 +0530407
408#ifdef TW_LOAD_VENDOR_MODULES
409 KernelModuleLoader::Load_Vendor_Modules();
410#endif
411
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100412 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
413 TWPartition* odm = PartitionManager.Find_Partition_By_Path("/odm");
Mohd Farazfe8bcd42023-08-26 20:50:26 +0530414 if (recovery_mode && !parse_userdata) {
Mohd Farazec370452023-08-28 16:51:35 +0530415 if (ven) ven->Mount(Display_Error);
416 if (odm) odm->Mount(Display_Error);
Mohd Faraza57874b2023-09-30 00:57:58 +0530417
418 Process_ResetProps(ven, odm);
419 parse_userdata = true;
420
421#ifndef TW_SKIP_ADDITIONAL_FSTAB
422 // Now Fetch the additional fstab
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100423 if (TWFunc::Find_Fstab(Fstab_Filename)) {
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100424 LOGINFO("Fstab: %s\n", Fstab_Filename.c_str());
425 TWFunc::copy_file(Fstab_Filename, additional_fstab, 0600, false);
426 Fstab_Filename = additional_fstab;
427 property_set("fstab.additional", "1");
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100428 goto parse;
429 } else {
430 LOGINFO("Unable to parse vendor fstab\n");
431 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000432 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600433 LOGINFO("Done processing fstab files\n");
Mohd Faraza57874b2023-09-30 00:57:58 +0530434#else
435 LOGINFO("Skipping Additional Fstab Processing\n");
436 property_set("fstab.additional", "0");
437 }
438#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600439
Mohd Faraza57874b2023-09-30 00:57:58 +0530440 if (odm) odm->UnMount(Display_Error);
441 Process_Keymaster_Version(ven, false);
442 if (ven) ven->UnMount(Display_Error);
bigbiff7ba75002020-04-11 20:47:09 -0400443 return true;
444}
445
bigbiff22851b92021-09-01 16:46:57 -0400446void TWPartitionManager::Setup_Fstab_Partitions(bool Display_Error) {
447 TWPartition* settings_partition = NULL;
448 TWPartition* andsec_partition = NULL;
449 std::vector<TWPartition*>::iterator iter;
450 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
451
452 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
453 (*iter)->Partition_Post_Processing(Display_Error);
454
455 if ((*iter)->Is_Storage) {
456 ++storageid;
457 (*iter)->MTP_Storage_ID = storageid;
458 }
459
460 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
461 settings_partition = (*iter);
462 else
463 (*iter)->Is_Settings_Storage = false;
464
465 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
466 andsec_partition = (*iter);
467 else
468 (*iter)->Has_Android_Secure = false;
bigbiff22851b92021-09-01 16:46:57 -0400469 }
470
me-cafebabed63fcaa2022-07-28 03:19:20 +0800471 Unlock_Block_Partitions();
472
bigbiff22851b92021-09-01 16:46:57 -0400473 //Setup Apex before decryption
474 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
475 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
476 if (sys) {
477 if (sys->Get_Super_Status()) {
Mohd Farazec370452023-08-28 16:51:35 +0530478 sys->Mount(Display_Error);
bigbiff22851b92021-09-01 16:46:57 -0400479 if (ven) {
Mohd Farazec370452023-08-28 16:51:35 +0530480 ven->Mount(Display_Error);
bigbiff22851b92021-09-01 16:46:57 -0400481 }
482 #ifdef TW_EXCLUDE_APEX
483 LOGINFO("Apex is disabled in this build\n");
484 #else
485 twrpApex apex;
486 if (!apex.loadApexImages()) {
487 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
488 property_set("twrp.apex.loaded", "false");
489 } else {
490 property_set("twrp.apex.loaded", "true");
491 }
492 TWFunc::check_and_run_script("/sbin/resyncapex.sh", "apex");
493 #endif
494 }
495 }
496 #ifndef USE_VENDOR_LIBS
497 if (ven)
Mohd Farazec370452023-08-28 16:51:35 +0530498 ven->UnMount(Display_Error);
bigbiff22851b92021-09-01 16:46:57 -0400499 if (sys)
Mohd Farazec370452023-08-28 16:51:35 +0530500 sys->UnMount(Display_Error);
bigbiff22851b92021-09-01 16:46:57 -0400501 #endif
502
503 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) {
504 // Attempt to automatically identify /data/media emulated storage devices
505 TWPartition* Dat = Find_Partition_By_Path("/data");
506 if (Dat) {
507 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
508 datamedia = true;
509 Dat->Setup_Data_Media();
510 settings_partition = Dat;
511 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
512 ++storageid;
513 Dat->MTP_Storage_ID = storageid;
514 }
515 }
516 if (!settings_partition) {
517 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
518 if ((*iter)->Is_Storage) {
519 settings_partition = (*iter);
520 break;
521 }
522 }
523 if (!settings_partition)
524 LOGERR("Unable to locate storage partition for storing settings file.\n");
525 }
526 if (!Write_Fstab()) {
527 if (Display_Error)
528 LOGERR("Error creating fstab\n");
529 else
530 LOGINFO("Error creating fstab\n");
531 }
532
533 if (andsec_partition) {
534 Setup_Android_Secure_Location(andsec_partition);
535 } else if (settings_partition) {
536 Setup_Android_Secure_Location(settings_partition);
537 }
538 if (settings_partition) {
539 Setup_Settings_Storage_Partition(settings_partition);
540 }
541
542 #ifdef TW_INCLUDE_CRYPTO
543 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
544 Decrypt_Data();
545 #endif
546
547 Update_System_Details();
548 if (Get_Super_Status())
549 Setup_Super_Partition();
550 UnMount_Main_Partitions();
551 #ifdef AB_OTA_UPDATER
552 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
553 #endif
554 setup_uevent();
555}
556
bigbiff7ba75002020-04-11 20:47:09 -0400557int TWPartitionManager::Write_Fstab(void) {
558 FILE *fp;
559 std::vector<TWPartition*>::iterator iter;
560 string Line;
561
562 fp = fopen("/etc/fstab", "w");
563 if (fp == NULL) {
564 LOGINFO("Can not open /etc/fstab.\n");
565 return false;
566 }
567 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
568 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530569 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
570 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400571 fputs(Line.c_str(), fp);
572 }
573 // Handle subpartition tracking
574 if ((*iter)->Is_SubPartition) {
575 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
576 if (ParentPartition)
577 ParentPartition->Has_SubPartition = true;
578 else
579 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
580 }
581 }
582 fclose(fp);
583 return true;
584}
585
586void TWPartitionManager::Decrypt_Data() {
587 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600588 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
589 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Captain Throwback37c3aef2021-10-06 11:38:18 -0400590 Set_Crypto_State();
bigbiff4fa02b52021-12-30 17:01:44 -0500591 TWPartition* Key_Directory_Partition = Find_Partition_By_Path(Decrypt_Data->Key_Directory);
592 if (Key_Directory_Partition != nullptr)
593 if (!Key_Directory_Partition->Is_Mounted())
594 Mount_By_Path(Decrypt_Data->Key_Directory, false);
595 if (!Decrypt_Data->Key_Directory.empty()) {
596 Set_Crypto_Type("file");
Ethan Yonker93382822018-11-01 15:25:31 -0500597#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400598#ifdef USE_FSCRYPT
Mohd Faraz446ccbf2023-01-24 19:58:24 +0100599 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 -0500600 std::string crypto_blkdev = android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
Mohd Faraze3948ec2020-08-14 01:40:59 +0000601 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400602 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400603#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500604 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
605 int retry_count = 10;
606 while (!Decrypt_Data->Mount(false) && --retry_count)
607 usleep(500);
608 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400609 if (!Decrypt_Data->Decrypt_FBE_DE()) {
bigbiff437d86f2021-09-26 16:57:14 -0400610 LOGERR("Unable to decrypt FBE device\n");
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400611 }
612
Ethan Yonker93382822018-11-01 15:25:31 -0500613 } else {
614 LOGINFO("Failed to mount data after metadata decrypt\n");
615 }
616 } else {
617 LOGINFO("Unable to decrypt metadata encryption\n");
618 }
619#else
620 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
621#endif
622 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600623 if (Decrypt_Data->Is_FBE) {
624 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
625 if (Decrypt_Device("!") == 0) {
626 gui_msg("decrypt_success=Successfully decrypted with default password.");
627 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
628 } else {
629 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
630 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600631 }
632 } else {
Captain Throwback500c3d22023-08-28 17:20:35 -0400633 LOGINFO("FBE setup failed. Trying FDE...\n");
Captain Throwback37c3aef2021-10-06 11:38:18 -0400634 Set_Crypto_State();
635 Set_Crypto_Type("block");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600636 int password_type = cryptfs_get_password_type();
637 if (password_type == CRYPT_TYPE_DEFAULT) {
638 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
639 if (Decrypt_Device("default_password") == 0) {
640 gui_msg("decrypt_success=Successfully decrypted with default password.");
641 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
642 } else {
643 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
644 }
645 } else {
646 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400647 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600648 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600649 }
650 }
bigbiff4fa02b52021-12-30 17:01:44 -0500651 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600652 Decrypt_Adopted();
653 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600654#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400655}
656
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500657void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500658 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500659}
660
Matt Mowerbf4efa32014-04-14 23:25:26 -0500661void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
662 if (Part->Has_Android_Secure)
663 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500664 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500665 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500666}
667
Dees_Troy8170a922012-09-18 15:40:25 -0400668void TWPartitionManager::Output_Partition_Logging(void) {
669 std::vector<TWPartition*>::iterator iter;
670
671 printf("\n\nPartition Logs:\n");
672 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
673 Output_Partition((*iter));
674}
675
676void TWPartitionManager::Output_Partition(TWPartition* Part) {
677 unsigned long long mb = 1048576;
678
Gary Peck004d48b2012-11-21 16:28:18 -0800679 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 -0400680 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800681 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 -0400682 }
Gary Peck004d48b2012-11-21 16:28:18 -0800683 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500684 if (Part->Can_Be_Mounted)
685 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800686 if (Part->Can_Be_Wiped)
687 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700688 if (Part->Use_Rm_Rf)
689 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500690 if (Part->Can_Be_Backed_Up)
691 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800692 if (Part->Wipe_During_Factory_Reset)
693 printf("Wipe_During_Factory_Reset ");
694 if (Part->Wipe_Available_in_GUI)
695 printf("Wipe_Available_in_GUI ");
696 if (Part->Is_SubPartition)
697 printf("Is_SubPartition ");
698 if (Part->Has_SubPartition)
699 printf("Has_SubPartition ");
700 if (Part->Removable)
701 printf("Removable ");
702 if (Part->Is_Present)
703 printf("IsPresent ");
704 if (Part->Can_Be_Encrypted)
705 printf("Can_Be_Encrypted ");
706 if (Part->Is_Encrypted)
707 printf("Is_Encrypted ");
708 if (Part->Is_Decrypted)
709 printf("Is_Decrypted ");
710 if (Part->Has_Data_Media)
711 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000712 if (Part->Can_Encrypt_Backup)
713 printf("Can_Encrypt_Backup ");
714 if (Part->Use_Userdata_Encryption)
715 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800716 if (Part->Has_Android_Secure)
717 printf("Has_Android_Secure ");
718 if (Part->Is_Storage)
719 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500720 if (Part->Is_Settings_Storage)
721 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000722 if (Part->Ignore_Blkid)
723 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600724 if (Part->Mount_To_Decrypt)
725 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600726 if (Part->Can_Flash_Img)
727 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600728 if (Part->Is_Adopted_Storage)
729 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600730 if (Part->SlotSelect)
731 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600732 if (Part->Mount_Read_Only)
733 printf("Mount_Read_Only ");
bigbiffcfa875c2021-06-20 16:20:27 -0400734 if (Part->Is_Super)
735 printf("Is_Super ");
Gary Peck004d48b2012-11-21 16:28:18 -0800736 printf("\n");
737 if (!Part->SubPartition_Of.empty())
738 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
739 if (!Part->Symlink_Path.empty())
740 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
741 if (!Part->Symlink_Mount_Point.empty())
742 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
743 if (!Part->Primary_Block_Device.empty())
744 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
745 if (!Part->Alternate_Block_Device.empty())
746 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
747 if (!Part->Decrypted_Block_Device.empty())
748 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800749 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600750 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800751 if (Part->Length != 0)
752 printf(" Length: %i\n", Part->Length);
753 if (!Part->Display_Name.empty())
754 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500755 if (!Part->Storage_Name.empty())
756 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800757 if (!Part->Backup_Path.empty())
758 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
759 if (!Part->Backup_Name.empty())
760 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500761 if (!Part->Backup_Display_Name.empty())
762 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800763 if (!Part->Backup_FileName.empty())
764 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
765 if (!Part->Storage_Path.empty())
766 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
767 if (!Part->Current_File_System.empty())
768 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
769 if (!Part->Fstab_File_System.empty())
770 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
771 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500772 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400773 if (!Part->MTD_Name.empty())
774 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600775 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800776 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600777 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600778 if (Part->MTP_Storage_ID)
779 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500780 if (!Part->Key_Directory.empty())
781 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500782 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400783}
784
Dees_Troy51a0e822012-09-05 15:24:24 -0400785int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400786 std::vector<TWPartition*>::iterator iter;
787 int ret = false;
788 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400789 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400790
bigbiffd58ba182020-03-23 10:02:29 -0400791 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400792 return true;
793
Dees_Troy5bf43922012-09-07 16:07:55 -0400794 // Iterate through all partitions
795 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400796 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400797 ret = (*iter)->Mount(Display_Error);
798 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400799 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400800 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400801 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400802 }
803 if (found) {
804 return ret;
805 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500806 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 -0400807 }
808 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400809}
810
Captain Throwbackb94ce152024-01-28 22:47:42 -0500811int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error, int flags) {
Dees_Troy51127312012-09-08 13:08:49 -0400812 std::vector<TWPartition*>::iterator iter;
813 int ret = false;
814 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400815 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400816
817 // Iterate through all partitions
818 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400819 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Captain Throwbackb94ce152024-01-28 22:47:42 -0500820 ret = (*iter)->UnMount(Display_Error, flags);
Dees_Troy51127312012-09-08 13:08:49 -0400821 found = true;
822 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Captain Throwbackb94ce152024-01-28 22:47:42 -0500823 (*iter)->UnMount(Display_Error, flags);
Dees_Troy51127312012-09-08 13:08:49 -0400824 }
825 }
826 if (found) {
827 return ret;
828 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500829 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 -0400830 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000831 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400832 }
833 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400834}
835
Dees_Troy51a0e822012-09-05 15:24:24 -0400836int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400837 TWPartition* Part = Find_Partition_By_Path(Path);
838
839 if (Part)
840 return Part->Is_Mounted();
841 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000842 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400843 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400844}
845
Dees_Troy5bf43922012-09-07 16:07:55 -0400846int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400847 string current_storage_path = DataManager::GetCurrentStoragePath();
848
849 if (Mount_By_Path(current_storage_path, Display_Error)) {
850 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
851 if (FreeStorage)
852 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
853 return true;
854 }
855 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400856}
857
Dees_Troy5bf43922012-09-07 16:07:55 -0400858int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
859 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
860}
861
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600862TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400863 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400864 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400865
dianlujitaob76a73a2020-04-30 20:33:20 +0800866 if (Local_Path == "/system")
867 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400868 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400869 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400870 return (*iter);
871 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400872 return NULL;
873}
874
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600875TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
876 std::vector<TWPartition*>::iterator iter;
877
878 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
879 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
880 return (*iter);
881 }
882 return NULL;
883}
884
Ethan Yonker53796e72019-01-11 22:49:52 -0600885int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400886 // Check the backup name to ensure that it is the correct size and contains only valid characters
887 // and that a backup with that name doesn't already exist
888 char backup_name[MAX_BACKUP_NAME_LEN];
889 char backup_loc[255], tw_image_dir[255];
890 int copy_size;
891 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600892 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400893
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400894 copy_size = Backup_Name.size();
895 // Check size
896 if (copy_size > MAX_BACKUP_NAME_LEN) {
897 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500898 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400899 return -2;
900 }
901
902 // Check each character
903 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500904 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400905 return 0; // A "0" (zero) means to use the current timestamp for the backup name
906 for (index=0; index<copy_size; index++) {
907 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500908 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 -0400909 // These are valid characters
910 // Numbers
911 // Upper case letters
912 // Lower case letters
913 // Space
914 // and -_.{}[]
915 } else {
916 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600917 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 -0400918 return -3;
919 }
920 }
921
Ethan Yonker53796e72019-01-11 22:49:52 -0600922 if (Must_Be_Unique) {
923 // Check to make sure that a backup with this name doesn't already exist
924 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
925 strcpy(backup_loc, Backup_Loc.c_str());
926 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
927 if (TWFunc::Path_Exists(tw_image_dir)) {
928 if (Display_Error)
929 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500930
Ethan Yonker53796e72019-01-11 22:49:52 -0600931 return -4;
932 }
933 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400934 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600935 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400936 return 0;
937}
938
bigbiffce8f83c2015-12-12 18:30:21 -0500939bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400940 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600941 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500942 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400943
bigbiffce8f83c2015-12-12 18:30:21 -0500944 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400945 return true;
946
Dees_Troy093b7642012-09-21 15:59:38 -0400947 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400948
Tom Hite5a926722014-09-15 01:31:03 +0000949 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400950 time(&start);
951
bigbiffce8f83c2015-12-12 18:30:21 -0500952 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500953 sync();
954 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400955 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500956 if (!part_settings->adbbackup && part_settings->generate_digest) {
957 if (!twrpDigestDriver::Make_Digest(Full_Filename))
958 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400959 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400960
bigbiffce8f83c2015-12-12 18:30:21 -0500961 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400962 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400963 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400964
965 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400966 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500967 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500968 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500969 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000970 }
Dees_Troy2727b992013-08-14 20:09:30 +0000971 sync();
972 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400973 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400974 if (!part_settings->adbbackup && part_settings->generate_digest) {
975 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500976 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500977 }
Tom Hite5a926722014-09-15 01:31:03 +0000978 }
Dees_Troy8170a922012-09-18 15:40:25 -0400979 }
980 }
981 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400982
Dees_Troy43d8b002012-09-17 16:00:01 -0400983 time(&stop);
that203bcc92015-05-09 17:27:33 +0200984 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000985 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400986
bigbiffce8f83c2015-12-12 18:30:21 -0500987 if (part_settings->Part->Backup_Method == BM_FILES) {
988 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400989 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500990 part_settings->img_time += backup_time;
991
Dees_Troy43d8b002012-09-17 16:00:01 -0400992 }
Tom Hite5a926722014-09-15 01:31:03 +0000993
Matt Mower02899552016-12-30 18:13:51 -0600994 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500995 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400996 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500997backup_error:
998 Clean_Backup_Folder(part_settings->Backup_Folder);
999 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
1000 tw_set_default_metadata(backup_log.c_str());
1001 TWFunc::SetPerformanceMode(false);
1002 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -05001003}
1004
bigbiffbf1d6722015-02-14 16:25:59 -05001005void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
1006 DIR *d = opendir(Backup_Folder.c_str());
1007 struct dirent *p;
1008 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001009 vector<string> ext;
1010
1011 //extensions we should delete when cleaning
1012 ext.push_back("win");
1013 ext.push_back("md5");
1014 ext.push_back("sha2");
1015 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -05001016
Ethan Yonker74db1572015-10-28 12:44:49 -05001017 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -05001018
1019 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001020 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -05001021 return;
1022 }
1023
Matt Mower2b18a532015-02-20 16:58:05 -06001024 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -05001025 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
1026 continue;
1027
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001028 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -05001029
1030 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001031 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
1032 if (path.substr(dot) == *i) {
1033 r = unlink(path.c_str());
1034 if (r != 0)
1035 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -05001036 }
1037 }
1038 }
1039 closedir(d);
1040}
1041
Ethan Yonker472f5062016-02-25 13:47:30 -06001042int TWPartitionManager::Check_Backup_Cancel() {
1043 return stop_backup.get_value();
1044}
1045
bigbiff7abc5fe2015-01-17 16:53:12 -05001046int TWPartitionManager::Cancel_Backup() {
1047 string Backup_Folder, Backup_Name, Full_Backup_Path;
1048
1049 stop_backup.set_value(1);
1050
1051 if (tar_fork_pid != 0) {
1052 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
1053 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001054 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -05001055 LOGINFO("Killing pid: %d\n", tar_fork_pid);
1056 kill(tar_fork_pid, SIGUSR2);
1057 while (kill(tar_fork_pid, 0) == 0) {
1058 usleep(1000);
1059 }
1060 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
1061 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
1062 TWFunc::removeDir(Full_Backup_Path, false);
1063 tar_fork_pid = 0;
1064 }
1065
1066 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -04001067}
1068
bigbiffce8f83c2015-12-12 18:30:21 -05001069int TWPartitionManager::Run_Backup(bool adbbackup) {
1070 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001071 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -05001072 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -06001073 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -04001074 TWPartition* storage = NULL;
1075 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -06001076 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -05001077 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -05001078 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -04001079 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001080 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -04001081
bigbiffce8f83c2015-12-12 18:30:21 -05001082 part_settings.img_bytes_remaining = 0;
1083 part_settings.file_bytes_remaining = 0;
1084 part_settings.img_time = 0;
1085 part_settings.file_time = 0;
1086 part_settings.img_bytes = 0;
1087 part_settings.file_bytes = 0;
1088 part_settings.PM_Method = PM_BACKUP;
1089
bigbiffce8f83c2015-12-12 18:30:21 -05001090 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -04001091 time(&total_start);
1092
1093 Update_System_Details();
1094
1095 if (!Mount_Current_Storage(true))
1096 return false;
1097
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001098 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
1099 if (skip_digest == 0)
1100 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -04001101 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001102 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -04001103
bigbiffce8f83c2015-12-12 18:30:21 -05001104 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001105 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
1106 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
1107 Backup_Name = TWFunc::Get_Current_Date();
1108 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +00001109 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001110 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -04001111 }
bigbiffce8f83c2015-12-12 18:30:21 -05001112
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001113 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001114 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001115
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001116 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001117
Dees_Troy2673cec2013-04-02 20:22:16 +00001118 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -05001119 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -04001120 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05001121 if (!Backup_List.empty()) {
1122 end_pos = Backup_List.find(";", start_pos);
1123 while (end_pos != string::npos && start_pos < Backup_List.size()) {
1124 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -04001125 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001126 part_settings.Part = Find_Partition_By_Path(backup_path);
1127 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001128 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001129 if (part_settings.Part->Backup_Method == BM_FILES)
1130 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05001131 else
bigbiffce8f83c2015-12-12 18:30:21 -05001132 part_settings.img_bytes += part_settings.Part->Backup_Size;
1133 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001134 std::vector<TWPartition*>::iterator subpart;
1135
1136 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -05001137 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 -05001138 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001139 if ((*subpart)->Backup_Method == BM_FILES)
1140 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05001141 else
bigbiffce8f83c2015-12-12 18:30:21 -05001142 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05001143 }
1144 }
Dees_Troy8170a922012-09-18 15:40:25 -04001145 }
Dees_Troya13d74f2013-03-24 08:54:55 -05001146 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001147 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 -04001148 }
Dees_Troya13d74f2013-03-24 08:54:55 -05001149 start_pos = end_pos + 1;
1150 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -04001151 }
1152 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001153
1154 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001155 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -04001156 return false;
1157 }
bigbiffce8f83c2015-12-12 18:30:21 -05001158 if (adbbackup) {
1159 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
1160 return false;
1161 }
1162 }
1163 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -06001164 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -05001165 part_settings.progress = &progress;
1166
Ethan Yonker74db1572015-10-28 12:44:49 -05001167 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
1168 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001169 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
1170 if (storage != NULL) {
1171 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -05001172 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -04001173 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001174 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -04001175 return false;
1176 }
bigbiffbf1d6722015-02-14 16:25:59 -05001177
Matt Mowerbfccfb82016-04-25 23:22:31 -05001178 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -05001179
1180 if (adbbackup)
1181 disable_free_space_check = true;
1182
bigbiffbf1d6722015-02-14 16:25:59 -05001183 if (!disable_free_space_check) {
1184 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1185 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001186 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001187 return false;
1188 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001189 }
bigbiffce8f83c2015-12-12 18:30:21 -05001190 part_settings.img_bytes_remaining = part_settings.img_bytes;
1191 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001192
Ethan Yonker74db1572015-10-28 12:44:49 -05001193 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001194
1195 int is_decrypted = 0;
1196 int is_encrypted = 0;
1197
1198 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1199 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1200 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1201 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1202 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1203 gui_err("fail_backup_folder=Failed to make backup folder.");
1204 return false;
1205 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001206 }
1207
Dees_Troy2673cec2013-04-02 20:22:16 +00001208 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001209
Dees_Troya13d74f2013-03-24 08:54:55 -05001210 start_pos = 0;
1211 end_pos = Backup_List.find(";", start_pos);
1212 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001213 if (stop_backup.get_value() != 0)
1214 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001215 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001216 part_settings.Part = Find_Partition_By_Path(backup_path);
1217 if (part_settings.Part != NULL) {
1218 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001219 return false;
1220 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001221 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 -05001222 }
1223 start_pos = end_pos + 1;
1224 end_pos = Backup_List.find(";", start_pos);
1225 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001226
1227 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001228 if (part_settings.img_time == 0)
1229 part_settings.img_time = 1;
1230 if (part_settings.file_time == 0)
1231 part_settings.file_time = 1;
1232 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1233 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001234
bigbiffce8f83c2015-12-12 18:30:21 -05001235 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001236 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 -05001237 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001238 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 -04001239
1240 time(&total_stop);
1241 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001242
1243 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001244 if (!adbbackup) {
1245 TWExclude twe;
1246 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1247 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001248 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001249 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001250
bigbiffce8f83c2015-12-12 18:30:21 -05001251 int prev_img_bps = 0, use_compression = 0;
1252 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001253 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001254 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001255 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001256
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001257 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001258 if (use_compression)
1259 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001260 else
Dees_Troy093b7642012-09-21 15:59:38 -04001261 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1262 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001263 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001264
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001265 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001266 if (use_compression)
1267 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1268 else
1269 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1270
Ethan Yonker74db1572015-10-28 12:44:49 -05001271 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001272 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001273 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001274 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001275 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001276 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001277 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001278
1279 if (part_settings.adbbackup) {
1280 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1281 return false;
1282 }
1283 }
1284 part_settings.adbbackup = false;
1285 DataManager::SetValue("tw_enable_adb_backup", 0);
1286
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001287 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001288}
1289
bigbiffce8f83c2015-12-12 18:30:21 -05001290bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001291 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001292
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001293 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001294 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1295 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001296 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1297 }
1298
Tom Hite5a926722014-09-15 01:31:03 +00001299 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001300
Dees_Troy4a2a1262012-09-18 09:33:47 -04001301 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001302
bigbiffce8f83c2015-12-12 18:30:21 -05001303 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001304 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001305 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001306 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001307 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001308 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001309 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001310
1311 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001312 part_settings->Part = *subpart;
1313 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1314 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001315 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001316 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001317 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001318 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001319 }
Dees_Troy8170a922012-09-18 15:40:25 -04001320 }
1321 }
1322 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001323 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001324 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001325 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1326
Dees_Troy4a2a1262012-09-18 09:33:47 -04001327 return true;
1328}
1329
Ethan Yonker472f5062016-02-25 13:47:30 -06001330int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001331 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001332 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001333
Dees_Troy4a2a1262012-09-18 09:33:47 -04001334 time_t rStart, rStop;
1335 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001336 string Restore_List, restore_path;
1337 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001338
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001339 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001340 part_settings.Part = NULL;
1341 part_settings.partition_count = 0;
1342 part_settings.total_restore_size = 0;
1343 part_settings.adbbackup = false;
1344 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001345
Ethan Yonker74db1572015-10-28 12:44:49 -05001346 gui_msg("restore_started=[RESTORE STARTED]");
1347 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001348
Dees_Troy4a2a1262012-09-18 09:33:47 -04001349 if (!Mount_Current_Storage(true))
1350 return false;
1351
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001352 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1353 if (check_digest > 0) {
1354 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1355 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1356 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001357 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001358 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001359 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001360 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001361 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001362
Dees_Troya13d74f2013-03-24 08:54:55 -05001363 if (!Restore_List.empty()) {
1364 end_pos = Restore_List.find(";", start_pos);
1365 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1366 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001367 part_settings.Part = Find_Partition_By_Path(restore_path);
1368 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001369 if (part_settings.Part->Mount_Read_Only) {
1370 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 -05001371 return false;
1372 }
bigbiffce8f83c2015-12-12 18:30:21 -05001373
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001374 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1375
bigbiff4a60bee2021-01-23 14:08:03 -05001376 if (tw_get_default_metadata(Get_Android_Root_Path().c_str()) != 0) {
1377 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(Get_Android_Root_Path()));
1378 }
1379
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001380 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001381 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001382 part_settings.partition_count++;
1383 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1384 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001385 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001386 std::vector<TWPartition*>::iterator subpart;
1387
1388 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001389 part_settings.Part = *subpart;
1390 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001391 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001392 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001393 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001394 }
1395 }
1396 }
1397 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001398 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001399 }
1400 start_pos = end_pos + 1;
1401 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001402 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001403 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001404
bigbiffce8f83c2015-12-12 18:30:21 -05001405 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001406 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001407 return false;
1408 }
1409
bigbiffce8f83c2015-12-12 18:30:21 -05001410 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1411 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 +00001412 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001413 ProgressTracking progress(part_settings.total_restore_size);
1414 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001415
Dees_Troya13d74f2013-03-24 08:54:55 -05001416 start_pos = 0;
1417 if (!Restore_List.empty()) {
1418 end_pos = Restore_List.find(";", start_pos);
1419 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1420 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001421
1422 part_settings.Part = Find_Partition_By_Path(restore_path);
1423 if (part_settings.Part != NULL) {
1424 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001425 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001426 return false;
1427 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001428 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001429 }
1430 start_pos = end_pos + 1;
1431 end_pos = Restore_List.find(";", start_pos);
1432 }
1433 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001434 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
bigbiff4a60bee2021-01-23 14:08:03 -05001435 tw_set_default_metadata(Get_Android_Root_Path().c_str());
Captain Throwback9d6feb52018-07-27 10:05:24 -04001436 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001437 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001438 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001439 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001440 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
bigbiff8f5fad32021-11-03 20:39:02 -04001441 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
1442 if (Decrypt_Data && Decrypt_Data->Is_Encrypted)
1443 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 -05001444 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001445
Dees_Troy63c8df72012-09-10 14:02:05 -04001446 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001447}
1448
1449void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001450 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001451 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001452 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001453 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001454
1455 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001456 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1457 vector<string> adb_files;
1458 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1459 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1460 string adb_restore_file = adb_files.at(i);
1461 std::size_t pos = adb_restore_file.find_first_of(".");
1462 std::string path = "/" + adb_restore_file.substr(0, pos);
1463 Restore_List = path + ";";
1464 TWPartition* Part = Find_Partition_By_Path(path);
1465 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1466 adbbackup = true;
1467 }
1468 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001469 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001470 else {
1471 DIR* d;
1472 d = opendir(Restore_Name.c_str());
1473 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001474 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001475 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1476 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001477 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001478
1479 struct dirent* de;
1480 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001481 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001482 // Strip off three components
1483 char str[256];
1484 char* label;
1485 char* fstype = NULL;
1486 char* extn = NULL;
1487 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001488
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001489 strcpy(str, de->d_name);
1490 if (strlen(str) <= 2)
1491 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001492
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001493 if (get_date) {
1494 char file_path[255];
1495 struct stat st;
1496
1497 strcpy(file_path, Restore_Name.c_str());
1498 strcat(file_path, "/");
1499 strcat(file_path, str);
1500 stat(file_path, &st);
1501 string backup_date = ctime((const time_t*)(&st.st_mtime));
1502 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1503 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001504 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001505
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001506 label = str;
1507 ptr = label;
1508 while (*ptr && *ptr != '.') ptr++;
1509 if (*ptr == '.')
1510 {
1511 *ptr = 0x00;
1512 ptr++;
1513 fstype = ptr;
1514 }
1515 while (*ptr && *ptr != '.') ptr++;
1516 if (*ptr == '.')
1517 {
1518 *ptr = 0x00;
1519 ptr++;
1520 extn = ptr;
1521 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001522
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001523 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1524 int extnlength = strlen(extn);
1525 if (extnlength != 3 && extnlength != 6) continue;
1526 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1527 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001528
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001529 if (check_encryption) {
1530 string filename = Restore_Name + "/";
1531 filename += de->d_name;
1532 if (TWFunc::Get_File_Type(filename) == 2) {
1533 LOGINFO("'%s' is encrypted\n", filename.c_str());
1534 DataManager::SetValue("tw_restore_encrypted", 1);
1535 }
1536 }
1537 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1538
1539 TWPartition* Part = Find_Partition_By_Path(label);
1540 if (Part == NULL)
1541 {
1542 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1543 continue;
1544 }
1545
1546 Part->Backup_FileName = de->d_name;
1547 if (strlen(extn) > 3) {
1548 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1549 }
1550
dianlujitaob76a73a2020-04-30 20:33:20 +08001551 if (!Part->Is_SubPartition) {
1552 if (Part->Backup_Path == Get_Android_Root_Path())
1553 Restore_List += "/system;";
1554 else
1555 Restore_List += Part->Backup_Path + ";";
1556 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001557 }
1558 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001559 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001560
1561 if (adbbackup) {
1562 Restore_List = "ADB_Backup;";
1563 adbbackup = false;
1564 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001565
Dees_Troya13d74f2013-03-24 08:54:55 -05001566 // Set the final value
1567 DataManager::SetValue("tw_restore_list", Restore_List);
1568 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001569 return;
1570}
1571
1572int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001573 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301574 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001575 int ret = false;
1576 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001577 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001578
dianlujitaob76a73a2020-04-30 20:33:20 +08001579 if (Local_Path == "/system")
1580 Local_Path = Get_Android_Root_Path();
bigbiffaed1bdf2021-08-03 18:21:39 -04001581 if (Path == "/cache") {
1582 TWPartition* cache = Find_Partition_By_Path("/cache");
1583 if (cache == nullptr) {
1584 TWPartition* dat = Find_Partition_By_Path("/data");
1585 if (dat) {
1586 dat->Wipe_Data_Cache();
1587 found = true;
1588 }
1589 }
1590 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001591 // Iterate through all partitions
1592 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001593 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301594 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1595 (*iter)->Find_Actual_Block_Device();
1596 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1597 {
1598 (*iter1)->Find_Actual_Block_Device();
1599 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1600 (*iter1)->UnMount(false);
1601 }
Dees_Troye58d5262012-09-21 12:27:57 -04001602 if (Path == "/and-sec")
1603 ret = (*iter)->Wipe_AndSec();
1604 else
1605 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001606 found = true;
1607 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1608 (*iter)->Wipe();
1609 }
1610 }
1611 if (found) {
1612 return ret;
1613 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001614 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 -04001615 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001616}
1617
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001618int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1619 std::vector<TWPartition*>::iterator iter;
1620 int ret = false;
1621 bool found = false;
1622 string Local_Path = TWFunc::Get_Root_Path(Path);
1623
1624 // Iterate through all partitions
1625 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1626 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1627 if (Path == "/and-sec")
1628 ret = (*iter)->Wipe_AndSec();
1629 else
1630 ret = (*iter)->Wipe(New_File_System);
1631 found = true;
1632 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1633 (*iter)->Wipe(New_File_System);
1634 }
1635 }
1636 if (found) {
1637 return ret;
1638 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001639 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 -05001640 return false;
1641}
1642
Dees_Troy51a0e822012-09-05 15:24:24 -04001643int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001644 std::vector<TWPartition*>::iterator iter;
1645 int ret = true;
1646
1647 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001648 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001649#ifdef TW_OEM_BUILD
1650 if ((*iter)->Mount_Point == "/data") {
1651 if (!(*iter)->Wipe_Encryption())
1652 ret = false;
1653 } else {
1654#endif
1655 if (!(*iter)->Wipe())
1656 ret = false;
1657#ifdef TW_OEM_BUILD
1658 }
1659#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001660 } else if ((*iter)->Has_Android_Secure) {
1661 if (!(*iter)->Wipe_AndSec())
1662 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001663 }
1664 }
bigbiffad58e1b2020-07-06 20:24:34 -04001665 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001666 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001667}
1668
Dees_Troy38bd7602012-09-14 13:33:53 -04001669int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1670 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001671 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001672
1673 if (!Mount_By_Path("/data", true))
1674 return false;
1675
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001676 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001677
bigbiff25d25b92020-06-19 16:07:38 -04001678 std::string cacheDir = TWFunc::get_log_dir();
1679 if (cacheDir == CACHE_LOGS_DIR) {
1680 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1681 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001682 }
1683 dir.push_back(cacheDir + "dalvik-cache");
1684 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001685 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001686
Dees_Troy38bd7602012-09-14 13:33:53 -04001687 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001688 if (sdext && sdext->Is_Present && sdext->Mount(false))
1689 {
1690 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1691 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001692 dir.push_back("/sd-ext/dalvik-cache");
1693 }
1694 }
1695
bigbiff25d25b92020-06-19 16:07:38 -04001696 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001697 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1698 } else {
1699 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1700 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001701 for (unsigned i = 0; i < dir.size(); ++i) {
1702 if (stat(dir.at(i).c_str(), &st) == 0) {
1703 TWFunc::removeDir(dir.at(i), false);
1704 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001705 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001706 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001707
bigbiff25d25b92020-06-19 16:07:38 -04001708 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001709 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1710 } else {
1711 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1712 }
1713
Dees_Troy38bd7602012-09-14 13:33:53 -04001714 return true;
1715}
1716
1717int TWPartitionManager::Wipe_Rotate_Data(void) {
1718 if (!Mount_By_Path("/data", true))
1719 return false;
1720
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001721 unlink("/data/misc/akmd*");
1722 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001723 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001724 return true;
1725}
1726
1727int TWPartitionManager::Wipe_Battery_Stats(void) {
1728 struct stat st;
1729
1730 if (!Mount_By_Path("/data", true))
1731 return false;
1732
1733 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001734 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001735 } else {
1736 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001737 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001738 }
1739 return true;
1740}
1741
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001742int TWPartitionManager::Wipe_Android_Secure(void) {
1743 std::vector<TWPartition*>::iterator iter;
1744 int ret = false;
1745 bool found = false;
1746
1747 // Iterate through all partitions
1748 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1749 if ((*iter)->Has_Android_Secure) {
1750 ret = (*iter)->Wipe_AndSec();
1751 found = true;
1752 }
1753 }
1754 if (found) {
1755 return ret;
1756 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001757 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001758 }
1759 return false;
1760}
1761
Dees_Troy38bd7602012-09-14 13:33:53 -04001762int TWPartitionManager::Format_Data(void) {
1763 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffcfa875c2021-06-20 16:20:27 -04001764 TWPartition* metadata = Find_Partition_By_Path("/metadata");
Captain Throwbackab76e402023-10-04 10:01:17 -04001765 int ret = false;
bigbiffcfa875c2021-06-20 16:20:27 -04001766 if (metadata != NULL)
1767 metadata->UnMount(false);
Dees_Troy38bd7602012-09-14 13:33:53 -04001768
1769 if (dat != NULL) {
bigbiffab76bd72021-10-11 10:17:48 -04001770 if (android::base::GetBoolProperty("ro.virtual_ab.enabled", false)) {
bigbiffcfa875c2021-06-20 16:20:27 -04001771#ifndef TW_EXCLUDE_APEX
1772 twrpApex apex;
1773 apex.Unmount();
1774#endif
1775 if (metadata != NULL)
1776 metadata->Mount(true);
bigbiffd21252f2021-09-18 15:56:32 -04001777 if (!Check_Pending_Merges())
bigbiffcfa875c2021-06-20 16:20:27 -04001778 return false;
1779 }
Captain Throwbackab76e402023-10-04 10:01:17 -04001780 ret = dat->Wipe_Encryption();
1781 if (ret)
1782 TWFunc::check_and_run_script("/system/bin/formatdata.sh", "Format Data Script");
1783 return ret;
Dees_Troy38bd7602012-09-14 13:33:53 -04001784 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001785 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001786 return false;
1787 }
1788 return false;
1789}
1790
1791int TWPartitionManager::Wipe_Media_From_Data(void) {
1792 TWPartition* dat = Find_Partition_By_Path("/data");
1793
1794 if (dat != NULL) {
1795 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001796 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001797 return false;
1798 }
1799 if (!dat->Mount(true))
1800 return false;
1801
Ethan Yonker74db1572015-10-28 12:44:49 -05001802 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001803 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001804 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001805 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001806 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001807 return true;
1808 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001809 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001810 return false;
1811 }
1812 return false;
1813}
1814
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001815int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1816 std::vector<TWPartition*>::iterator iter;
1817 int ret = false;
1818 bool found = false;
1819 string Local_Path = TWFunc::Get_Root_Path(Path);
1820
1821 if (Local_Path == "/tmp" || Local_Path == "/")
1822 return true;
1823
1824 // Iterate through all partitions
1825 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1826 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1827 ret = (*iter)->Repair();
1828 found = true;
1829 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1830 (*iter)->Repair();
1831 }
1832 }
1833 if (found) {
1834 return ret;
1835 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001836 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 -05001837 } else {
1838 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1839 }
1840 return false;
1841}
1842
Ethan Yonkera2719152015-05-28 09:44:41 -05001843int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1844 std::vector<TWPartition*>::iterator iter;
1845 int ret = false;
1846 bool found = false;
1847 string Local_Path = TWFunc::Get_Root_Path(Path);
1848
1849 if (Local_Path == "/tmp" || Local_Path == "/")
1850 return true;
1851
1852 // Iterate through all partitions
1853 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1854 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1855 ret = (*iter)->Resize();
1856 found = true;
1857 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1858 (*iter)->Resize();
1859 }
1860 }
1861 if (found) {
1862 return ret;
1863 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001864 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 -05001865 } else {
1866 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1867 }
1868 return false;
1869}
1870
Dees_Troy51a0e822012-09-05 15:24:24 -04001871void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001872 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001873 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001874
Ethan Yonker74db1572015-10-28 12:44:49 -05001875 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001876 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001877 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001878 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001879 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001880 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1881 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001882 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001883 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1884 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1885 } else if ((*iter)->Mount_Point == "/cache") {
1886 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1887 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1888 } else if ((*iter)->Mount_Point == "/sd-ext") {
1889 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1890 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1891 if ((*iter)->Backup_Size == 0) {
1892 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1893 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1894 } else
1895 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001896 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001897 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001898 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001899 if ((*iter)->Backup_Size == 0) {
1900 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1901 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1902 } else
1903 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001904 } else if ((*iter)->Mount_Point == "/boot") {
1905 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1906 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1907 if ((*iter)->Backup_Size == 0) {
1908 DataManager::SetValue("tw_has_boot_partition", 0);
1909 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1910 } else
1911 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001912 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001913 } else {
1914 // Handle unmountable partitions in case we reset defaults
1915 if ((*iter)->Mount_Point == "/boot") {
1916 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1917 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1918 if ((*iter)->Backup_Size == 0) {
1919 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1920 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1921 } else
1922 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1923 } else if ((*iter)->Mount_Point == "/recovery") {
1924 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1925 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1926 if ((*iter)->Backup_Size == 0) {
1927 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1928 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1929 } else
1930 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001931 } else if ((*iter)->Mount_Point == "/data") {
1932 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001933 }
Dees_Troy51127312012-09-08 13:08:49 -04001934 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001935 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001936 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001937 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1938 string current_storage_path = DataManager::GetCurrentStoragePath();
1939 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001940 if (FreeStorage != NULL) {
1941 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001942 if (!FreeStorage->Mount(false)) {
1943 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1944 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1945 } else {
1946 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001947 }
1948 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001949 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001950 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001951 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001952 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001953 return;
1954}
1955
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001956void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1957 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001958
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001959 if (dat != NULL) {
bigbiffaed1bdf2021-08-03 18:21:39 -04001960 // reparse for /cache/recovery/command
1961 static constexpr const char* COMMAND_FILE = "/data/cache/command";
1962 if (TWFunc::Path_Exists(COMMAND_FILE)) {
1963 startupArgs startup;
1964 std::string content;
1965 TWFunc::read_file(COMMAND_FILE, content);
1966 std::vector<std::string> args = {content};
1967 startup.processRecoveryArgs(args, 0);
1968 }
1969
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001970 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1971 dat->Is_Decrypted = true;
1972 if (!Block_Device.empty()) {
1973 dat->Decrypted_Block_Device = Block_Device;
1974 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1975 } else {
1976 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1977 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001978 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001979 dat->Setup_File_System(false);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001980 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 -06001981
Noah Jacobson81d638d2019-04-28 00:10:07 -04001982 sleep(1); // Sleep for a bit so that the device will be ready
me-cafebabe09649612022-06-10 21:53:31 +08001983
1984 // Mount only /data
1985 dat->Symlink_Path = ""; // Not to let it to bind mount /data/media again
1986 if (!dat->Mount(false)) {
1987 LOGERR("Unable to mount /data after decryption");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001988 }
me-cafebabe09649612022-06-10 21:53:31 +08001989
1990 if (dat->Has_Data_Media && TWFunc::Path_Exists("/data/media/0")) {
1991 dat->Storage_Path = "/data/media/0";
1992 } else {
1993 dat->Storage_Path = "/data/media";
1994 }
1995 dat->Symlink_Path = dat->Storage_Path;
1996 DataManager::SetValue("tw_storage_path", dat->Symlink_Path);
Mohd Farazf9231102022-06-18 22:51:55 +02001997 DataManager::SetValue("tw_settings_path", TW_STORAGE_PATH);
me-cafebabe09649612022-06-10 21:53:31 +08001998 LOGINFO("New storage path after decryption: %s\n", dat->Storage_Path.c_str());
1999
epicXa721f952021-01-04 13:01:31 +05302000 DataManager::LoadTWRPFolderInfo();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002001 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03002002 Output_Partition(dat);
bigbiff4fa02b52021-12-30 17:01:44 -05002003 if (!android::base::StartsWith(dat->Actual_Block_Device, "/dev/block/mmcblk")) {
2004 if (!dat->Bind_Mount(false))
2005 LOGERR("Unable to bind mount /sdcard to %s\n", dat->Storage_Path.c_str());
2006 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002007 } else
2008 LOGERR("Unable to locate data partition.\n");
2009}
2010
Noah Jacobson81d638d2019-04-28 00:10:07 -04002011void TWPartitionManager::Parse_Users() {
2012#ifdef TW_INCLUDE_FBE
2013 char user_check_result[PROPERTY_VALUE_MAX];
2014 for (int userId = 0; userId <= 9999; userId++) {
2015 string prop = "twrp.user." + to_string(userId) + ".decrypt";
2016 property_get(prop.c_str(), user_check_result, "-1");
2017 if (strcmp(user_check_result, "-1") != 0) {
2018 if (userId < 0 || userId > 9999) {
2019 LOGINFO("Incorrect user id %d\n", userId);
2020 continue;
2021 }
2022 struct users_struct user;
2023 user.userId = to_string(userId);
2024
2025 // Attempt to get name of user. Fallback to user ID if this fails.
Darth98f775972022-08-05 09:39:03 +01002026 std::string path = "/data/system/users/" + to_string(userId) + ".xml";
2027 if (!TWFunc::Check_Xml_Format(path)) {
2028 string oldpath = path;
2029 if (TWFunc::abx_to_xml(oldpath, path)) {
2030 LOGINFO("Android 12+: '%s' has been converted into plain text xml (for user %s).\n", oldpath.c_str(), user.userId.c_str());
2031 }
2032 }
2033 char* userFile = PageManager::LoadFileToBuffer(path, NULL);
me-cafebabec46981d2022-07-29 01:54:43 +08002034 if (userFile == NULL) {
2035 user.userName = to_string(userId);
bigbiffa957f072021-03-07 18:20:29 -05002036 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04002037 else {
me-cafebabec46981d2022-07-29 01:54:43 +08002038 xml_document<> *userXml = new xml_document<>();
2039 userXml->parse<0>(userFile);
2040 xml_node<>* userNode = userXml->first_node("user");
2041 if (userNode == nullptr) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04002042 user.userName = to_string(userId);
me-cafebabec46981d2022-07-29 01:54:43 +08002043 } else {
2044 xml_node<>* nameNode = userNode->first_node("name");
2045 if (nameNode == nullptr)
Noah Jacobson81d638d2019-04-28 00:10:07 -04002046 user.userName = to_string(userId);
me-cafebabec46981d2022-07-29 01:54:43 +08002047 else {
2048 string userName = nameNode->value();
2049 user.userName = userName + " (" + to_string(userId) + ")";
Noah Jacobson81d638d2019-04-28 00:10:07 -04002050 }
2051 }
2052 }
2053
2054 string filename;
bigbiffdf53b6c2022-01-17 19:31:52 -05002055 user.type = android::keystore::Get_Password_Type(userId, filename);
Noah Jacobson81d638d2019-04-28 00:10:07 -04002056
2057 user.isDecrypted = false;
2058 if (strcmp(user_check_result, "1") == 0)
2059 user.isDecrypted = true;
2060 Users_List.push_back(user);
2061 }
2062 }
2063 Check_Users_Decryption_Status();
2064#endif
2065}
2066
2067std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
2068 return &Users_List;
2069}
2070
2071void TWPartitionManager::Mark_User_Decrypted(int userID) {
2072#ifdef TW_INCLUDE_FBE
2073 std::vector<users_struct>::iterator iter;
2074 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
2075 if (atoi((*iter).userId.c_str()) == userID) {
2076 (*iter).isDecrypted = true;
2077 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
2078 property_set(user_prop_decrypted.c_str(), "1");
2079 break;
2080 }
2081 }
2082 Check_Users_Decryption_Status();
2083#endif
2084}
2085
2086void TWPartitionManager::Check_Users_Decryption_Status() {
2087#ifdef TW_INCLUDE_FBE
2088 int all_is_decrypted = 1;
2089 std::vector<users_struct>::iterator iter;
2090 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
2091 if (!(*iter).isDecrypted) {
2092 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
2093 all_is_decrypted = 0;
2094 break;
2095 }
2096 }
2097 if (all_is_decrypted == 1) {
2098 LOGINFO("All found users are decrypted.\n");
2099 DataManager::SetValue("tw_all_users_decrypted", "1");
2100 property_set("twrp.all.users.decrypted", "true");
2101 } else
2102 DataManager::SetValue("tw_all_users_decrypted", "0");
2103#endif
2104}
2105
2106int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04002107#ifdef TW_INCLUDE_CRYPTO
Captain Throwback37c3aef2021-10-06 11:38:18 -04002108 char crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06002109 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04002110
Ethan Yonker253368a2014-11-25 15:00:52 -06002111 // Mount any partitions that need to be mounted for decrypt
2112 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2113 if ((*iter)->Mount_To_Decrypt) {
2114 (*iter)->Mount(true);
2115 }
a39552696ff55ce2013-01-08 16:14:56 +00002116 }
oshmouna82a7542018-04-10 17:45:55 +02002117 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00002118
Captain Throwback37c3aef2021-10-06 11:38:18 -04002119 Set_Crypto_State();
2120 Set_Crypto_Type("block");
Ethan Yonkera1de1492015-11-04 11:58:27 -06002121
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002122 if (DataManager::GetIntValue(TW_IS_FBE)) {
2123#ifdef TW_INCLUDE_FBE
2124 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
2125 return -1;
Noah Jacobson81d638d2019-04-28 00:10:07 -04002126
2127 bool user_need_decrypt = false;
2128 std::vector<users_struct>::iterator iter;
2129 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
2130 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
2131 user_need_decrypt = true;
2132 }
2133 }
2134 if (!user_need_decrypt) {
2135 LOGINFO("User %d does not require decryption\n", user_id);
2136 return 0;
2137 }
2138
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002139 int retry_count = 10;
2140 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -04002141 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
2142 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
bigbiffdf53b6c2022-01-17 19:31:52 -05002143 if (android::keystore::Decrypt_User(user_id, Password)) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04002144 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
2145 Mark_User_Decrypted(user_id);
2146 if (user_id == 0) {
2147 // When decrypting user 0 also try all other users
2148 std::vector<users_struct>::iterator iter;
2149 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
2150 if ((*iter).userId == "0" || (*iter).isDecrypted)
2151 continue;
2152
2153 int tmp_user_id = atoi((*iter).userId.c_str());
2154 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
bigbiffdf53b6c2022-01-17 19:31:52 -05002155 if (android::keystore::Decrypt_User(tmp_user_id, Password) ||
2156 (Password != "!" && android::keystore::Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
Noah Jacobson81d638d2019-04-28 00:10:07 -04002157 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
2158 Mark_User_Decrypted(tmp_user_id);
2159 } else {
2160 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
2161 }
2162 }
2163 Post_Decrypt("");
2164 }
2165
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002166 return 0;
Noah Jacobson81d638d2019-04-28 00:10:07 -04002167 } else {
2168 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002169 }
2170#else
2171 LOGERR("FBE support is not present\n");
2172#endif
2173 return -1;
2174 }
2175
Noah Jacobson81d638d2019-04-28 00:10:07 -04002176 char isdecrypteddata[PROPERTY_VALUE_MAX];
2177 property_get("twrp.decrypt.done", isdecrypteddata, "");
2178 if (strcmp(isdecrypteddata, "true") == 0) {
2179 LOGINFO("Data has no decryption required\n");
2180 return 0;
2181 }
2182
Ethan Yonkerddb63e22017-01-19 14:01:57 -06002183 int pwret = -1;
2184 pid_t pid = fork();
2185 if (pid < 0) {
2186 LOGERR("fork failed\n");
2187 return -1;
2188 } else if (pid == 0) {
2189 // Child process
2190 char cPassword[255];
2191 strcpy(cPassword, Password.c_str());
2192 int ret = cryptfs_check_passwd(cPassword);
2193 exit(ret);
2194 } else {
2195 // Parent
2196 int status;
2197 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
2198 pwret = -1;
2199 else
2200 pwret = WEXITSTATUS(status) ? -1 : 0;
2201 }
a39552696ff55ce2013-01-08 16:14:56 +00002202
Ethan Yonker253368a2014-11-25 15:00:52 -06002203 // Unmount any partitions that were needed for decrypt
2204 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2205 if ((*iter)->Mount_To_Decrypt) {
2206 (*iter)->UnMount(false);
2207 }
2208 }
oshmouna82a7542018-04-10 17:45:55 +02002209 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06002210
a39552696ff55ce2013-01-08 16:14:56 +00002211 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002212 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002213 return -1;
2214 }
a39552696ff55ce2013-01-08 16:14:56 +00002215
Dees_Troy5bf43922012-09-07 16:07:55 -04002216 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
2217 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002218 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04002219 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06002220 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04002221 }
2222 return 0;
2223#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002224 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04002225 return -1;
2226#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002227 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04002228}
2229
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002230int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002231 std::vector<TWPartition*>::iterator iter;
2232 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2233 if ((*iter)->Has_Data_Media) {
2234 if ((*iter)->Mount(true)) {
2235 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
2236 return -1;
2237 }
2238 }
2239 }
Dees_Troy1a650e62012-10-19 20:54:32 -04002240 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05002241 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002242 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002243}
2244
Ethan Yonker66a19492015-12-10 10:19:45 -06002245TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002246 std::vector<TWPartition*>::iterator iter = Partitions.begin();
2247
2248 if (!Path.empty()) {
2249 string Search_Path = TWFunc::Get_Root_Path(Path);
2250 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06002251 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002252 iter++;
2253 break;
2254 }
2255 }
2256 }
2257
2258 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002259 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
2260 // do nothing, do not return this type of partition
2261 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002262 return (*iter);
2263 }
2264 }
2265
2266 return NULL;
2267}
2268
Dees_Troyd21618c2012-10-14 18:48:49 -04002269int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04002270 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
2271
2272 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002273 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2274 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 -04002275 return false;
2276 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002277 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2278 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002279 return false;
2280
bigbiff22851b92021-09-01 16:46:57 -04002281 if (!TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002282 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002283 return false;
2284 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002285 return true;
2286}
2287
Dees_Troy8170a922012-09-18 15:40:25 -04002288int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002289 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002290 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002291
Ethan Yonker47360be2014-04-01 10:34:34 -05002292 string Lun_File_str = CUSTOM_LUN_FILE;
2293 size_t found = Lun_File_str.find("%");
2294 if (found != string::npos) {
2295 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2296 if (TWFunc::Path_Exists(lun_file))
2297 has_multiple_lun = true;
2298 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002299 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002300 if (!has_multiple_lun) {
2301 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2302 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2303 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002304 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002305 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002306 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2307 goto error_handle;
2308 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002309 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002310 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002311 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002312 }
2313 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002314 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002315 }
Dees_Troy8170a922012-09-18 15:40:25 -04002316 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002317 LOGINFO("Device has multiple lun files\n");
2318 TWPartition* Mount1;
2319 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002320 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002321 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002322 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002323 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2324 goto error_handle;
2325 }
Matt Moweree717062014-04-26 01:46:46 -05002326 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002327 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002328 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002329 Open_Lun_File(Mount2->Mount_Point, lun_file);
nkk717aa6fc62017-03-24 18:28:03 +02002330 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2331 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data") {
2332 Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002333 }
nkk717aa6fc62017-03-24 18:28:03 +02002334 // Mimic single lun code: Mount CurrentStoragePath if it's not /data
2335 } else if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) != "/data" && !Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002336 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002337 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002338 }
Dees_Troy8170a922012-09-18 15:40:25 -04002339 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002340 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002341 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002342 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002343error_handle:
2344 if (mtp_was_enabled)
2345 if (!Enable_MTP())
2346 Disable_MTP();
2347 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002348}
2349
2350int TWPartitionManager::usb_storage_disable(void) {
bigbiff22851b92021-09-01 16:46:57 -04002351 int index, ret = 0;
Dees_Troy2673cec2013-04-02 20:22:16 +00002352 char lun_file[255], ch[2] = {0, 0};
2353 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002354
2355 for (index=0; index<2; index++) {
2356 sprintf(lun_file, CUSTOM_LUN_FILE, index);
bigbiff22851b92021-09-01 16:46:57 -04002357 if (!TWFunc::write_to_file(lun_file, str)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002358 break;
bigbiff22851b92021-09-01 16:46:57 -04002359 ret = -1;
Dees_Troy8170a922012-09-18 15:40:25 -04002360 }
Dees_Troy8170a922012-09-18 15:40:25 -04002361 }
Dees_Troye58d5262012-09-21 12:27:57 -04002362 Mount_All_Storage();
2363 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002364 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002365 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002366 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002367 if (mtp_was_enabled)
2368 if (!Enable_MTP())
2369 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002370 if (ret < 0 && index == 0) {
2371 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2372 return false;
2373 } else {
2374 return true;
2375 }
Dees_Troy8170a922012-09-18 15:40:25 -04002376 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002377}
2378
2379void TWPartitionManager::Mount_All_Storage(void) {
2380 std::vector<TWPartition*>::iterator iter;
2381
2382 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2383 if ((*iter)->Is_Storage)
2384 (*iter)->Mount(false);
2385 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002386}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002387
Dees_Troyd0384ef2012-10-12 12:15:42 -04002388void TWPartitionManager::UnMount_Main_Partitions(void) {
2389 // Unmounts system and data if data is not data/media
2390 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002391 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002392
Mohd Faraze3948ec2020-08-14 01:40:59 +00002393 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002394
Mohd Faraze3948ec2020-08-14 01:40:59 +00002395 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2396 UnMount_By_Path (Get_Android_Root_Path(), true);
2397 Partition = Find_Partition_By_Path ("/product");
2398 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002399 if (!datamedia)
2400 UnMount_By_Path("/data", true);
2401
Mohd Faraze3948ec2020-08-14 01:40:59 +00002402 Partition = Find_Partition_By_Path ("/boot");
2403 if (Partition != NULL && Partition->Can_Be_Mounted)
2404 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002405}
2406
Dees_Troy9350b8d2012-09-27 12:38:38 -04002407int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002408 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002409 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 -04002410 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002411
Ethan Yonker74db1572015-10-28 12:44:49 -05002412 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002413
2414 // Locate and validate device to partition
2415 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2416
Ethan Yonker66a19492015-12-10 10:19:45 -06002417 if (SDCard->Is_Adopted_Storage)
2418 SDCard->Revert_Adopted();
2419
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002420 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002421 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002422 return false;
2423 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002424
2425 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002426 if (!SDCard->UnMount(true))
2427 return false;
2428 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2429 if (SDext != NULL) {
2430 if (!SDext->UnMount(true))
2431 return false;
2432 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002433 char* swappath = getenv("SWAPPATH");
2434 if (swappath != NULL) {
2435 LOGINFO("Unmounting swap at '%s'\n", swappath);
2436 umount(swappath);
2437 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002438
Ethan Yonker483e9f42016-01-11 22:21:18 -06002439 // Determine block device
2440 if (SDCard->Alternate_Block_Device.empty()) {
2441 SDCard->Find_Actual_Block_Device();
2442 Device = SDCard->Actual_Block_Device;
2443 // Just use the root block device
2444 Device.resize(strlen("/dev/block/mmcblkX"));
2445 } else {
2446 Device = SDCard->Alternate_Block_Device;
2447 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002448
2449 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002450 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002451
2452 DataManager::GetValue("tw_sdext_size", ext);
2453 DataManager::GetValue("tw_swap_size", swap);
2454 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2455 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002456 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);
2457
2458 // Determine partition sizes
2459 if (swap == 0 && ext == 0) {
2460 fat_str = "-0";
2461 } else {
2462 memset(temp, 0, sizeof(temp));
2463 sprintf(temp, "%i", fat_size);
2464 fat_str = temp;
2465 fat_str += "MB";
2466 }
2467 if (swap == 0) {
2468 ext_str = "-0";
2469 } else {
2470 memset(temp, 0, sizeof(temp));
2471 sprintf(temp, "%i", ext);
2472 ext_str = "+";
2473 ext_str += temp;
2474 ext_str += "MB";
2475 }
2476
Dees_Troy9350b8d2012-09-27 12:38:38 -04002477 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002478 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002479 return false;
2480 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002481
Ethan Yonker74db1572015-10-28 12:44:49 -05002482 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002483 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002484 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002485 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002486 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002487 Update_System_Details();
2488 return false;
2489 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002490 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002491 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 +00002492 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002493 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002494 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002495 return false;
2496 }
2497 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002498 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002499 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002500 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002501 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002502 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002503 Update_System_Details();
2504 return false;
2505 }
2506 }
2507 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002508 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002509 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 +00002510 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002511 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002512 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002513 Update_System_Details();
2514 return false;
2515 }
2516 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002517
2518 // Convert GPT to MBR
2519 Command = "sgdisk --gpttombr " + Device;
2520 if (TWFunc::Exec_Cmd(Command) != 0)
2521 LOGINFO("Failed to covert partition GPT to MBR\n");
2522
2523 // Tell the kernel to rescan the partition table
2524 int fd = open(Device.c_str(), O_RDONLY);
2525 ioctl(fd, BLKRRPART, 0);
2526 close(fd);
2527
2528 string format_device = Device;
2529 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2530 format_device += "p";
2531
2532 // Format new partitions to proper file system
2533 if (fat_size > 0) {
2534 Command = "mkfs.fat " + format_device + "1";
2535 TWFunc::Exec_Cmd(Command);
2536 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002537 if (ext > 0) {
2538 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002539 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2540 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2541 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2542 TWFunc::Exec_Cmd(Command);
2543 } else {
2544 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002545 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002546 }
2547 if (swap > 0) {
2548 Command = "mkswap " + format_device;
2549 if (ext > 0)
2550 Command += "3";
2551 else
2552 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002553 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002554 }
2555
Ethan Yonker483e9f42016-01-11 22:21:18 -06002556 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2557 if (SDCard->Mount(true)) {
2558 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2559 mkdir(TWRP_Folder.c_str(), 0777);
2560 DataManager::Flush();
2561 }
2562
Dees_Troy9350b8d2012-09-27 12:38:38 -04002563 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002564 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002565 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002566}
Dees_Troya13d74f2013-03-24 08:54:55 -05002567
2568void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2569 std::vector<TWPartition*>::iterator iter;
2570 if (ListType == "mount") {
2571 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002572 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002573 struct PartitionList part;
2574 part.Display_Name = (*iter)->Display_Name;
2575 part.Mount_Point = (*iter)->Mount_Point;
2576 part.selected = (*iter)->Is_Mounted();
2577 Partition_List->push_back(part);
2578 }
2579 }
2580 } else if (ListType == "storage") {
2581 char free_space[255];
2582 string Current_Storage = DataManager::GetCurrentStoragePath();
2583 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2584 if ((*iter)->Is_Storage) {
2585 struct PartitionList part;
2586 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2587 part.Display_Name = (*iter)->Storage_Name + " (";
2588 part.Display_Name += free_space;
2589 part.Display_Name += "MB)";
2590 part.Mount_Point = (*iter)->Storage_Path;
2591 if ((*iter)->Storage_Path == Current_Storage)
2592 part.selected = 1;
2593 else
2594 part.selected = 0;
2595 Partition_List->push_back(part);
2596 }
2597 }
2598 } else if (ListType == "backup") {
2599 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002600 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002601 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002602 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002603 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002604 Backup_Size = (*iter)->Backup_Size;
2605 if ((*iter)->Has_SubPartition) {
2606 std::vector<TWPartition*>::iterator subpart;
2607
2608 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2609 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2610 Backup_Size += (*subpart)->Backup_Size;
2611 }
2612 }
2613 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002614 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2615 part.Display_Name += backup_size;
2616 part.Display_Name += "MB)";
2617 part.Mount_Point = (*iter)->Backup_Path;
2618 part.selected = 0;
2619 Partition_List->push_back(part);
2620 }
2621 }
2622 } else if (ListType == "restore") {
2623 string Restore_List, restore_path;
2624 TWPartition* restore_part = NULL;
2625
2626 DataManager::GetValue("tw_restore_list", Restore_List);
2627 if (!Restore_List.empty()) {
2628 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2629 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2630 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002631 struct PartitionList part;
2632 if (restore_path.compare("ADB_Backup") == 0) {
2633 part.Display_Name = "ADB Backup";
2634 part.Mount_Point = "ADB Backup";
2635 part.selected = 1;
2636 Partition_List->push_back(part);
2637 break;
2638 }
Dees_Troy59df9262013-06-19 14:53:57 -05002639 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002640 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002641 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002642 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002643 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002644 part.Display_Name = restore_part->Backup_Display_Name;
2645 part.Mount_Point = restore_part->Backup_Path;
2646 part.selected = 1;
2647 Partition_List->push_back(part);
2648 }
2649 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002650 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002651 }
2652 start_pos = end_pos + 1;
2653 end_pos = Restore_List.find(";", start_pos);
2654 }
2655 }
2656 } else if (ListType == "wipe") {
2657 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002658 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002659 dalvik.Mount_Point = "DALVIK";
2660 dalvik.selected = 0;
2661 Partition_List->push_back(dalvik);
2662 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2663 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2664 struct PartitionList part;
2665 part.Display_Name = (*iter)->Display_Name;
2666 part.Mount_Point = (*iter)->Mount_Point;
2667 part.selected = 0;
2668 Partition_List->push_back(part);
2669 }
2670 if ((*iter)->Has_Android_Secure) {
2671 struct PartitionList part;
2672 part.Display_Name = (*iter)->Backup_Display_Name;
2673 part.Mount_Point = (*iter)->Backup_Path;
2674 part.selected = 0;
2675 Partition_List->push_back(part);
2676 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002677 if ((*iter)->Has_Data_Media) {
2678 struct PartitionList datamedia;
2679 datamedia.Display_Name = (*iter)->Storage_Name;
2680 datamedia.Mount_Point = "INTERNAL";
2681 datamedia.selected = 0;
2682 Partition_List->push_back(datamedia);
2683 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002684 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002685 } else if (ListType == "flashimg") {
2686 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2687 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2688 struct PartitionList part;
2689 part.Display_Name = (*iter)->Backup_Display_Name;
2690 part.Mount_Point = (*iter)->Backup_Path;
2691 part.selected = 0;
2692 Partition_List->push_back(part);
2693 }
2694 }
Darth98af7fe22024-01-18 20:00:44 +00002695 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0 && DataManager::GetIntValue("tw_include_install_recovery_ramdisk") != 0) {
2696 std::string dest_partition = "/boot";
2697 #ifdef BOARD_MOVE_RECOVERY_RESOURCES_TO_VENDOR_BOOT
2698 dest_partition = "/vendor_boot";
2699 #endif
2700
2701 TWPartition* boot = Find_Partition_By_Path(dest_partition);
Ethan Yonker53796e72019-01-11 22:49:52 -06002702 if (boot) {
2703 // Allow flashing kernels and ramdisks
2704 struct PartitionList repack_ramdisk;
2705 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2706 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2707 repack_ramdisk.selected = 0;
2708 Partition_List->push_back(repack_ramdisk);
Darth98af7fe22024-01-18 20:00:44 +00002709 LOGINFO("Install Recovery Ramdisk: target partition=%s\n", dest_partition.c_str());
Ethan Yonker53796e72019-01-11 22:49:52 -06002710 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2711 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2712 repack_kernel.Mount_Point = "/repack_kernel";
2713 repack_kernel.selected = 0;
2714 Partition_List->push_back(repack_kernel);*/
2715 }
2716 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002717 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002718 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002719 }
2720}
2721
2722int TWPartitionManager::Fstab_Processed(void) {
2723 return Partitions.size();
2724}
Dees_Troyd93bda52013-07-03 19:55:19 +00002725
2726void TWPartitionManager::Output_Storage_Fstab(void) {
2727 std::vector<TWPartition*>::iterator iter;
2728 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002729 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002730 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002731
2732 if (cacheDir.empty()) {
2733 LOGINFO("Unable to find cache directory\n");
2734 return;
2735 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002736
bigbiff25d25b92020-06-19 16:07:38 -04002737 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002738 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002739
2740 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002741 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002742 return;
2743 }
2744
2745 // Iterate through all partitions
2746 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2747 if ((*iter)->Is_Storage) {
2748 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2749 strcpy(storage_partition, Temp.c_str());
2750 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2751 }
2752 }
2753 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002754}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002755
2756TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2757{
2758 TWPartition *res = NULL;
2759 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002760 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002761 continue;
2762
Matt Mowera8a89d12016-12-30 18:10:37 -06002763 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002764 return *iter;
2765
Matt Mowera8a89d12016-12-30 18:10:37 -06002766 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002767 res = *iter;
2768 }
2769 return res;
2770}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002771
2772bool TWPartitionManager::Enable_MTP(void) {
2773#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002774 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002775 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002776 return true;
2777 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002778
2779 int mtppipe[2];
2780
2781 if (pipe(mtppipe) < 0) {
2782 LOGERR("Error creating MTP pipe\n");
2783 return false;
2784 }
2785
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002786 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002787 property_get("sys.usb.config", old_value, "");
2788 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002789 char vendor[PROPERTY_VALUE_MAX];
2790 char product[PROPERTY_VALUE_MAX];
2791 property_set("sys.usb.config", "none");
2792 property_get("usb.vendor", vendor, "18D1");
2793 property_get("usb.product.mtpadb", product, "4EE2");
2794 string vendorstr = vendor;
2795 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002796 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2797 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002798 property_set("sys.usb.config", "mtp,adb");
2799 }
Matt Mower653a1702017-02-16 10:38:52 -06002800 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002801 * twrp set tw_mtp_debug 1
2802 */
2803 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002804 mtppid = mtp->forkserver(mtppipe);
2805 if (mtppid) {
2806 close(mtppipe[0]); // Host closes read side
2807 mtp_write_fd = mtppipe[1];
2808 DataManager::SetValue("tw_mtp_enabled", 1);
2809 Add_All_MTP_Storage();
2810 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002811 } else {
2812 close(mtppipe[0]);
2813 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002814 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002815 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002816 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002817#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002818 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002819#endif
2820 DataManager::SetValue("tw_mtp_enabled", 0);
2821 return false;
2822}
2823
Ethan Yonker1b039202015-01-30 10:08:48 -06002824void TWPartitionManager::Add_All_MTP_Storage(void) {
2825#ifdef TW_HAS_MTP
2826 std::vector<TWPartition*>::iterator iter;
2827
2828 if (!mtppid)
2829 return; // MTP is not enabled
2830
2831 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2832 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2833 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2834 }
2835#else
2836 return;
2837#endif
2838}
2839
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002840bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002841 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002842 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002843 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002844 if (strcmp(old_value, "adb") != 0) {
2845 char vendor[PROPERTY_VALUE_MAX];
2846 char product[PROPERTY_VALUE_MAX];
2847 property_set("sys.usb.config", "none");
2848 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002849 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002850 string vendorstr = vendor;
2851 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002852 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2853 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002854 usleep(2000);
2855 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002856#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002857 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002858 LOGINFO("Disabling MTP\n");
2859 int status;
2860 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002861 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002862 // We don't care about the exit value, but this prevents a zombie process
2863 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002864 close(mtp_write_fd);
2865 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002866 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002867#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002868 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002869#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002870 DataManager::SetValue("tw_mtp_enabled", 0);
2871 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002872#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002873 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002874}
Ethan Yonker726a0202014-12-16 20:01:38 -06002875
2876TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2877 std::vector<TWPartition*>::iterator iter;
2878
2879 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2880 if ((*iter)->MTP_Storage_ID == Storage_ID)
2881 return (*iter);
2882 }
2883 return NULL;
2884}
2885
2886bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2887#ifdef TW_HAS_MTP
2888 struct mtpmsg mtp_message;
2889
2890 if (!mtppid)
2891 return false; // MTP is disabled
2892
2893 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002894 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002895 return false;
2896 }
2897
2898 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002899 if (Part->MTP_Storage_ID == 0)
2900 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002901 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2902 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2903 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2904 mtp_message.storage_id = Part->MTP_Storage_ID;
2905 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002906 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002907 return false;
2908 } else {
2909 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2910 return true;
2911 }
2912 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2913 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2914 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002915 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2916 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2917 return false;
2918 }
2919 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2920 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2921 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2922 return false;
2923 }
2924 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002925 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002926 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 -06002927 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002928 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002929 return false;
2930 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002931 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002932 return true;
2933 }
2934 } else {
2935 LOGERR("Unknown MTP message type: %i\n", message_type);
2936 }
2937 } else {
2938 // This hopefully never happens as the error handling should
2939 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002940 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002941 }
2942 return true;
2943#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002944 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002945 DataManager::SetValue("tw_mtp_enabled", 0);
2946 return false;
2947#endif
2948}
2949
2950bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2951#ifdef TW_HAS_MTP
2952 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2953 if (Part) {
2954 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2955 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002956 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002957 }
2958#endif
2959 return false;
2960}
2961
2962bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2963#ifdef TW_HAS_MTP
2964 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2965 if (Part) {
2966 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2967 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002968 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002969 }
2970#endif
2971 return false;
2972}
2973
2974bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2975#ifdef TW_HAS_MTP
2976 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2977 if (Part) {
2978 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2979 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002980 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002981 }
2982#endif
2983 return false;
2984}
2985
2986bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2987#ifdef TW_HAS_MTP
2988 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2989 if (Part) {
2990 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2991 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002992 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002993 }
2994#endif
2995 return false;
2996}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002997
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002998bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002999 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06003000 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003001 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05003002 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003003 size_t start_pos = 0, end_pos = 0;
3004
Ethan Yonkere080c1f2016-09-19 13:50:25 -05003005 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003006
bigbiffce8f83c2015-12-12 18:30:21 -05003007 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
3008 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
3009
3010 if (!TWFunc::Path_Exists(full_filename)) {
3011 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06003012 return false;
3013 }
bigbiffce8f83c2015-12-12 18:30:21 -05003014 if (!TWFunc::Path_Exists(full_filename)) {
3015 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06003016 return false;
3017 }
3018 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06003019
Ethan Yonker53796e72019-01-11 22:49:52 -06003020 DataManager::GetValue("tw_flash_partition", Flash_List);
3021 Repack_Type repack = REPLACE_NONE;
3022 if (Flash_List == "/repack_ramdisk;") {
3023 repack = REPLACE_RAMDISK;
3024 } else if (Flash_List == "/repack_kernel;") {
3025 repack = REPLACE_KERNEL;
3026 }
3027 if (repack != REPLACE_NONE) {
3028 Repack_Options_struct Repack_Options;
3029 Repack_Options.Type = repack;
3030 Repack_Options.Disable_Verity = false;
3031 Repack_Options.Disable_Force_Encrypt = false;
3032 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04003033 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06003034 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05003035 PartitionSettings part_settings;
3036 part_settings.Backup_Folder = path;
3037 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
3038 ProgressTracking progress(total_bytes);
3039 part_settings.progress = &progress;
3040 part_settings.adbbackup = false;
3041 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05003042 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003043 if (!Flash_List.empty()) {
3044 end_pos = Flash_List.find(";", start_pos);
3045 while (end_pos != string::npos && start_pos < Flash_List.size()) {
3046 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
3047 flash_part = Find_Partition_By_Path(flash_path);
3048 if (flash_part != NULL) {
3049 partition_count++;
3050 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003051 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003052 return false;
3053 }
3054 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05003055 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06003056 return false;
3057 }
3058 start_pos = end_pos + 1;
3059 end_pos = Flash_List.find(";", start_pos);
3060 }
3061 }
3062
3063 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003064 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003065 return false;
3066 }
3067
3068 DataManager::SetProgress(0.0);
3069 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05003070 flash_part->Backup_FileName = filename;
3071 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06003072 return false;
3073 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05003074 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003075 return false;
3076 }
Ethan Yonker74db1572015-10-28 12:44:49 -05003077 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003078 return true;
3079}
Ethan Yonker74db1572015-10-28 12:44:49 -05003080
3081void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
3082 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
3083 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003084 if (part->Is_Adopted_Storage) {
3085 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
3086 part->Backup_Display_Name = part->Display_Name;
3087 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
3088 } else {
3089 part->Display_Name = gui_lookup(resource_name, default_value);
3090 part->Backup_Display_Name = part->Display_Name;
3091 }
Ethan Yonker74db1572015-10-28 12:44:49 -05003092 }
3093}
3094
3095void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
3096 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
3097 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003098 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06003099 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06003100 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06003101 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
3102 } else {
3103 part->Display_Name = gui_lookup(resource_name, default_value);
3104 part->Backup_Display_Name = part->Display_Name;
3105 if (part->Is_Storage)
3106 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
3107 }
Ethan Yonker74db1572015-10-28 12:44:49 -05003108 }
3109}
3110
Ethan Yonker01f4e032017-02-03 15:30:52 -06003111void 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) {
3112 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
3113 if (part) {
3114 if (part->Is_Adopted_Storage) {
3115 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
3116 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
3117 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
3118 } else {
3119 part->Display_Name = gui_lookup(resource_name, default_value);
3120 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
3121 if (part->Is_Storage)
3122 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
3123 }
3124 }
3125}
3126
Ethan Yonker74db1572015-10-28 12:44:49 -05003127void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06003128 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05003129 Translate_Partition("/system", "system", "System");
3130 Translate_Partition("/system_image", "system_image", "System Image");
3131 Translate_Partition("/vendor", "vendor", "Vendor");
3132 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
3133 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05003134 Translate_Partition("/boot", "boot", "Boot");
3135 Translate_Partition("/recovery", "recovery", "Recovery");
3136 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06003137 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05003138 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
3139 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
3140 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
3141 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06003142 } else {
3143 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05003144 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06003145 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
3146 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05003147 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
3148 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
3149
3150 // Android secure is a special case
3151 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
3152 if (part)
3153 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
3154
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003155 std::vector<TWPartition*>::iterator sysfs;
3156 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
3157 if (!(*sysfs)->Sysfs_Entry.empty()) {
3158 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
3159 }
3160 }
3161
Ethan Yonker74db1572015-10-28 12:44:49 -05003162 // This updates the text on all of the storage selection buttons in the GUI
3163 DataManager::SetBackupFolder();
3164}
Ethan Yonker66a19492015-12-10 10:19:45 -06003165
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003166bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06003167#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003168 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003169 if (!Mount_By_Path("/data", false)) {
3170 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003171 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003172 }
Darth98f775972022-08-05 09:39:03 +01003173
3174 std::string path = "/data/system/storage.xml";
3175 if (!TWFunc::Check_Xml_Format(path)) {
3176 std::string oldpath = path;
3177 if (TWFunc::abx_to_xml(oldpath, path)) {
3178 LOGINFO("Android 12+: '%s' has been converted into plain text xml (%s).\n", oldpath.c_str(), path.c_str());
3179 }
3180 }
3181
Fernando Oliveiraa4a754d2024-01-28 13:40:23 -03003182 DataManager::SetValue("tw_settings_path", TW_STORAGE_PATH);
Ethan Yonker66a19492015-12-10 10:19:45 -06003183 LOGINFO("Decrypt adopted storage starting\n");
Darth98f775972022-08-05 09:39:03 +01003184 char* xmlFile = PageManager::LoadFileToBuffer(path, NULL);
Ethan Yonker66a19492015-12-10 10:19:45 -06003185 xml_document<> *doc = NULL;
3186 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06003187 string Primary_Storage_UUID = "";
3188 if (xmlFile != NULL) {
3189 LOGINFO("successfully loaded storage.xml\n");
3190 doc = new xml_document<>();
3191 doc->parse<0>(xmlFile);
3192 volumes = doc->first_node("volumes");
3193 if (volumes) {
3194 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
3195 if (psuuid) {
3196 Primary_Storage_UUID = psuuid->value();
3197 }
3198 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003199 } else {
3200 LOGINFO("No /data/system/storage.xml for adopted storage\n");
3201 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003202 }
3203 std::vector<TWPartition*>::iterator adopt;
3204 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
Peter Cai439d60c2019-10-17 08:49:10 +08003205 if ((*adopt)->Removable && !(*adopt)->Is_Present && (*adopt)->Adopted_Mount_Delay > 0) {
3206 // On some devices, the external mmc driver takes some time
3207 // to recognize the card, in which case the "actual block device"
3208 // would not have been found yet. We wait the specified delay
3209 // and then try again.
3210 LOGINFO("Sleeping %d seconds for adopted storage.\n", (*adopt)->Adopted_Mount_Delay);
3211 sleep((*adopt)->Adopted_Mount_Delay);
3212 (*adopt)->Find_Actual_Block_Device();
3213 }
3214
Ethan Yonker66a19492015-12-10 10:19:45 -06003215 if ((*adopt)->Removable && (*adopt)->Is_Present) {
3216 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003217 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06003218 if (volumes) {
3219 xml_node<>* volume = volumes->first_node("volume");
3220 while (volume) {
3221 xml_attribute<>* guid = volume->first_attribute("partGuid");
3222 if (guid) {
3223 string GUID = (*adopt)->Adopted_GUID.c_str();
3224 GUID.insert(8, "-");
3225 GUID.insert(13, "-");
3226 GUID.insert(18, "-");
3227 GUID.insert(23, "-");
3228
3229 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
3230 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03003231 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003232 (*adopt)->Storage_Name = attr->value();
3233 (*adopt)->Display_Name = (*adopt)->Storage_Name;
3234 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
3235 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
3236 }
3237 attr = volume->first_attribute("fsUuid");
3238 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
3239 TWPartition* Dat = Find_Partition_By_Path("/data");
3240 if (Dat) {
3241 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
3242 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
3243 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
3244 Dat->Symlink_Mount_Point = "";
3245 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
3246 Dat->UnMount(false);
3247 Dat->Mount(false);
3248 (*adopt)->UnMount(false);
3249 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06003250 }
3251 }
3252 break;
3253 }
3254 }
3255 volume = volume->next_sibling("volume");
3256 }
3257 }
nkk71ffb02bd2017-06-04 23:12:16 +03003258 Update_System_Details();
3259 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06003260 }
3261 }
3262 }
3263 if (xmlFile) {
3264 doc->clear();
3265 delete doc;
3266 free(xmlFile);
3267 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003268 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06003269#else
3270 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003271 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003272#endif
3273}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003274
3275void TWPartitionManager::Remove_Partition_By_Path(string Path) {
3276 std::vector<TWPartition*>::iterator iter;
3277 string Local_Path = TWFunc::Get_Root_Path(Path);
3278
3279 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3280 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
3281 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3282 Partitions.erase(iter);
3283 return;
3284 }
3285 }
3286}
Ethan Yonker1b190162016-12-05 15:25:19 -06003287
bigbiff74a46272021-07-31 19:02:26 -04003288void TWPartitionManager::Override_Active_Slot(const string& Slot) {
3289 LOGINFO("Overriding slot to '%s'\n", Slot.c_str());
3290 Active_Slot_Display = Slot;
3291 DataManager::SetValue("tw_active_slot", Slot);
nebrassy07c4b902021-11-21 03:32:47 +01003292 PartitionManager.Update_System_Details();
bigbiff74a46272021-07-31 19:02:26 -04003293}
3294
Ethan Yonker1b190162016-12-05 15:25:19 -06003295void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3296 if (Slot != "A" && Slot != "B") {
3297 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3298 return;
3299 }
3300 if (Active_Slot_Display == Slot)
3301 return;
3302 LOGINFO("Setting active slot %s\n", Slot.c_str());
3303#ifdef AB_OTA_UPDATER
3304 if (!Active_Slot_Display.empty()) {
dianlujitaoa90dc462021-12-16 16:56:26 +08003305 android::sp<IBootControl> module = IBootControl::getService();
3306 if (module == nullptr) {
Ethan Yonker1b190162016-12-05 15:25:19 -06003307 LOGERR("Error getting bootctrl module.\n");
3308 } else {
dianlujitaoa90dc462021-12-16 16:56:26 +08003309 uint32_t slot_number = 0;
Ethan Yonker1b190162016-12-05 15:25:19 -06003310 if (Slot == "B")
3311 slot_number = 1;
dianlujitaoa90dc462021-12-16 16:56:26 +08003312 CommandResult result;
3313 auto ret = module->setActiveBootSlot(slot_number, [&result]
3314 (const CommandResult &cb_result) { result = cb_result; });
3315 if (!ret.isOk() || !result.success)
Ethan Yonker1b190162016-12-05 15:25:19 -06003316 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3317 }
3318 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
3319 }
3320#else
3321 LOGERR("Boot slot feature not present\n");
3322#endif
3323 Active_Slot_Display = Slot;
3324 if (Fstab_Processed())
3325 Update_System_Details();
3326}
3327string TWPartitionManager::Get_Active_Slot_Suffix() {
3328 if (Active_Slot_Display == "A")
3329 return "_a";
3330 return "_b";
3331}
3332string TWPartitionManager::Get_Active_Slot_Display() {
3333 return Active_Slot_Display;
3334}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003335
Captain Throwback9d6feb52018-07-27 10:05:24 -04003336string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04003337 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003338}
3339
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003340void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3341 std::vector<TWPartition*>::iterator iter;
3342
3343 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3344 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3345 TWPartition *part = *iter;
3346 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3347 (*iter)->UnMount(false);
3348 rmdir((*iter)->Mount_Point.c_str());
3349 iter = Partitions.erase(iter);
3350 delete part;
3351 } else {
3352 iter++;
3353 }
3354 }
3355}
3356
3357void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3358 std::vector<TWPartition*>::iterator iter;
3359
3360 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3361 if (!(*iter)->Sysfs_Entry.empty()) {
3362 string device;
3363 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3364 if (wildcard != string::npos) {
3365 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3366 } else {
3367 device = (*iter)->Sysfs_Entry;
3368 }
3369 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3370 // Found a match
3371 if (uevent_data.action == "add") {
3372 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3373 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3374 (*iter)->Is_Present = true;
3375 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3376 if (!Decrypt_Adopted()) {
3377 LOGINFO("No adopted storage so finding actual block device\n");
3378 (*iter)->Find_Actual_Block_Device();
3379 }
3380 return;
3381 } else if (uevent_data.action == "remove") {
3382 (*iter)->Is_Present = false;
3383 (*iter)->Primary_Block_Device = "";
3384 (*iter)->Actual_Block_Device = "";
3385 Remove_Uevent_Devices((*iter)->Mount_Point);
3386 return;
3387 }
3388 }
3389 }
3390 }
bigbiffee7b7ff2020-03-23 15:08:27 -04003391
3392 if (!PartitionManager.Get_Super_Status())
3393 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 -06003394}
3395
3396void TWPartitionManager::setup_uevent() {
3397 struct sockaddr_nl nls;
3398
3399 if (uevent_pfd.fd >= 0) {
3400 LOGINFO("uevent already set up\n");
3401 return;
3402 }
3403
3404 // Open hotplug event netlink socket
3405 memset(&nls,0,sizeof(struct sockaddr_nl));
3406 nls.nl_family = AF_NETLINK;
3407 nls.nl_pid = getpid();
3408 nls.nl_groups = -1;
3409 uevent_pfd.events = POLLIN;
3410 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3411 if (uevent_pfd.fd==-1) {
3412 LOGERR("uevent not root\n");
3413 return;
3414 }
3415
3416 // Listen to netlink socket
3417 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3418 LOGERR("Bind failed\n");
3419 return;
3420 }
3421 set_select_fd();
3422 Coldboot();
3423}
3424
3425Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3426 Uevent_Block_Data ret;
3427 ret.subsystem = "";
3428 char *ptr = buf;
3429 const char *end = buf + len;
3430
3431 buf[len - 1] = '\0';
3432 while (ptr < end) {
3433 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3434 ptr += strlen("ACTION=");
3435 ret.action = ptr;
3436 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3437 ptr += strlen("SUBSYSTEM=");
3438 ret.subsystem = ptr;
3439 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3440 ptr += strlen("DEVTYPE=");
3441 ret.type = ptr;
3442 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3443 ptr += strlen("DEVPATH=");
3444 ret.sysfs_path += ptr;
3445 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3446 ptr += strlen("DEVNAME=");
3447 ret.block_device += ptr;
3448 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3449 ptr += strlen("MAJOR=");
3450 ret.major = atoi(ptr);
3451 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3452 ptr += strlen("MINOR=");
3453 ret.minor = atoi(ptr);
3454 }
3455 ptr += strlen(ptr) + 1;
3456 }
3457 return ret;
3458}
3459
3460void TWPartitionManager::read_uevent() {
3461 char buf[1024];
3462
3463 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3464 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003465 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003466 return;
3467 }
3468 /*int i = 0; // Print all uevent output for test /debug
3469 while (i<len) {
3470 printf("%s\n", buf+i);
3471 i += strlen(buf+i)+1;
3472 }*/
3473 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3474 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3475 PartitionManager.Handle_Uevent(uevent_data);
3476 }
3477}
3478
3479void TWPartitionManager::close_uevent() {
3480 if (uevent_pfd.fd > 0)
3481 close(uevent_pfd.fd);
3482 uevent_pfd.fd = -1;
3483}
3484
3485void TWPartitionManager::Add_Partition(TWPartition* Part) {
3486 Partitions.push_back(Part);
3487}
3488
3489void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3490 string Real_Path = Path;
3491 char real_path[PATH_MAX];
3492 if (realpath(Path.c_str(), &real_path[0])) {
3493 string Real_Path = real_path;
3494 std::vector<string>::iterator iter;
3495 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3496 if (Real_Path.find((*iter)) != string::npos) {
3497 string Write_Path = Real_Path + "/uevent";
3498 if (TWFunc::Path_Exists(Write_Path)) {
3499 const char* write_val = "add\n";
3500 TWFunc::write_to_file(Write_Path, write_val);
3501 break;
3502 }
3503 }
3504 }
3505 }
3506
3507 DIR* d = opendir(Path.c_str());
3508 if (d != NULL) {
3509 struct dirent* de;
3510 while ((de = readdir(d)) != NULL) {
3511 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3512 continue;
3513 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3514 continue;
3515
3516 string item = Path + "/";
3517 item.append(de->d_name);
3518 Coldboot_Scan(sysfs_entries, item, depth + 1);
3519 }
3520 closedir(d);
3521 }
3522}
3523
3524void TWPartitionManager::Coldboot() {
3525 std::vector<TWPartition*>::iterator iter;
3526 std::vector<string> sysfs_entries;
3527
3528 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3529 if (!(*iter)->Sysfs_Entry.empty()) {
3530 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3531 if (wildcard_pos == string::npos)
3532 wildcard_pos = (*iter)->Sysfs_Entry.size();
3533 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3534 }
3535 }
3536
3537 if (sysfs_entries.size() > 0)
3538 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3539}
Ethan Yonker53796e72019-01-11 22:49:52 -06003540
3541bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3542 if (TWFunc::Path_Exists(Folder))
3543 TWFunc::removeDir(Folder, false);
3544 return TWFunc::Recursive_Mkdir(Folder);
3545}
3546
bigbiffcfa875c2021-06-20 16:20:27 -04003547std::string TWPartitionManager::Get_Bare_Partition_Name(std::string Mount_Point) {
3548 if (Mount_Point == "/system_root")
3549 return "system";
3550 else
3551 return TWFunc::Remove_Beginning_Slash(Mount_Point);
3552}
3553
bigbiffee7b7ff2020-03-23 15:08:27 -04003554bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3555 Fstab fstab;
bigbiffcfa875c2021-06-20 16:20:27 -04003556 std::string bare_partition_name = Get_Bare_Partition_Name(twrpPart->Get_Mount_Point());
bigbiffee7b7ff2020-03-23 15:08:27 -04003557
bigbiff998f8392021-08-06 19:19:33 -04003558 Super_Partition_List.push_back(bare_partition_name);
bigbiffee7b7ff2020-03-23 15:08:27 -04003559 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3560
3561 std::string blk_device_partition;
3562#ifdef AB_OTA_UPDATER
3563 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3564#else
3565 blk_device_partition = bare_partition_name;
3566#endif
3567
3568 FstabEntry fstabEntry = {
3569 .blk_device = blk_device_partition,
3570 .mount_point = twrpPart->Get_Mount_Point(),
3571 .fs_type = twrpPart->Current_File_System,
3572 .fs_mgr_flags.logical = twrpPart->Is_Super,
3573 };
3574
3575 fstab.emplace_back(fstabEntry);
3576 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
Captain Throwbackc6939102021-04-06 12:57:30 -04003577 LOGINFO("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
bigbiffee7b7ff2020-03-23 15:08:27 -04003578 return false;
3579 }
3580
bigbiff32cbabe2020-04-12 19:16:19 -04003581 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3582 usleep(100);
3583 }
3584
bigbiffee7b7ff2020-03-23 15:08:27 -04003585 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3586 twrpPart->Update_Size(true);
bigbiffee7b7ff2020-03-23 15:08:27 -04003587 twrpPart->Set_Can_Be_Backed_Up(false);
3588 twrpPart->Set_Can_Be_Wiped(false);
me-cafebabe928234b2022-07-28 04:07:04 +08003589 if (access(("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str(), F_OK) == -1) {
3590 LOGINFO("Symlinking %s => /dev/block/bootdevice/by-name/%s \n", fstabEntry.blk_device.c_str(), bare_partition_name.c_str());
3591 symlink(fstabEntry.blk_device.c_str(), ("/dev/block/bootdevice/by-name/" + bare_partition_name).c_str());
Captain Throwback88c6e652023-01-16 15:32:26 -05003592 property_set("twrp.super.symlinks_created", "true");
me-cafebabe928234b2022-07-28 04:07:04 +08003593 }
Mohd Faraz7fc70502021-04-22 20:44:11 +02003594
bigbiffee7b7ff2020-03-23 15:08:27 -04003595 return true;
3596}
3597
3598bool TWPartitionManager::Prepare_All_Super_Volumes() {
3599 bool status = true;
3600 std::vector<TWPartition*>::iterator iter;
3601
3602 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3603 if ((*iter)->Is_Super) {
3604 if (!Prepare_Super_Volume(*iter)) {
3605 status = false;
Mohd Faraz787cc612023-01-02 22:47:51 +01003606 Partitions.erase(iter--);
bigbiffee7b7ff2020-03-23 15:08:27 -04003607 }
3608 PartitionManager.Output_Partition(*iter);
3609 }
3610 }
3611 Update_System_Details();
3612 return status;
3613}
3614
bigbiffee7b7ff2020-03-23 15:08:27 -04003615std::string TWPartitionManager::Get_Super_Partition() {
3616 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
bigbiff998f8392021-08-06 19:19:33 -04003617 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
bigbiffee7b7ff2020-03-23 15:08:27 -04003618 return "/dev/block/by-name/" + super_device;
3619}
3620
3621void TWPartitionManager::Setup_Super_Devices() {
3622 std::string superPart = Get_Super_Partition();
3623 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003624}
3625
3626void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003627 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003628 std::string superPart = Get_Super_Partition();
3629
3630 superPartition->Backup_Path = "/super";
3631 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003632 superPartition->Actual_Block_Device = superPart;
3633 superPartition->Alternate_Block_Device = superPart;
bigbiff998f8392021-08-06 19:19:33 -04003634 superPartition->Backup_Display_Name = "Super (";
3635 // Add first 4 items to fstab as logical that you would like to display in Backup_Display_Name
3636 // for the Super partition
3637 int list_size = Super_Partition_List.size();
3638 int orig_list_size = list_size;
3639 int max_display_size = 3; // total of 4 items since we start at 0
3640
3641 for (auto partition: Super_Partition_List) {
3642 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + partition;
3643 if ((orig_list_size - list_size) == max_display_size) {
3644 break;
3645 }
3646 if (list_size != 1)
3647 superPartition->Backup_Display_Name = superPartition->Backup_Display_Name + " ";
3648 list_size--;
3649 }
3650 superPartition->Backup_Display_Name += ")";
bigbiffee7b7ff2020-03-23 15:08:27 -04003651 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003652 superPartition->Current_File_System = "emmc";
3653 superPartition->Can_Be_Backed_Up = true;
3654 superPartition->Is_Present = true;
3655 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003656 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003657 Add_Partition(superPartition);
3658 PartitionManager.Output_Partition(superPartition);
bigbiffee7b7ff2020-03-23 15:08:27 -04003659}
3660
3661bool TWPartitionManager::Get_Super_Status() {
Mohd Faraz88b4bab2023-01-01 02:43:01 +05303662 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003663}
bigbiff25d25b92020-06-19 16:07:38 -04003664
3665bool TWPartitionManager::Recreate_Logs_Dir() {
3666#ifdef TW_INCLUDE_FBE
3667 struct passwd pd;
3668 struct passwd *pwdptr = &pd;
3669 struct passwd *tempPd;
3670 char pwdBuf[512];
3671 int uid = 0, gid = 0;
3672
3673 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3674 LOGERR("unable to get system user id\n");
3675 return false;
3676 } else {
3677 struct group grp;
3678 struct group *grpptr = &grp;
3679 struct group *tempGrp;
3680 char grpBuf[512];
3681
3682 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3683 LOGERR("unable to get cache group id\n");
3684 return false;
3685 } else {
3686 uid = pd.pw_uid;
3687 gid = grp.gr_gid;
3688 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3689 abLogsRecoveryDir += "/recovery/";
3690
3691 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3692 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3693 return false;
3694 }
3695 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3696 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3697 return false;
3698 }
3699 }
3700 }
3701#endif
3702 return true;
3703}
bigbiff1f9e4842020-10-31 11:33:15 -04003704
3705void TWPartitionManager::Unlock_Block_Partitions() {
3706 int fd, OFF = 0;
3707
3708 const std::string block_path = "/dev/block/";
3709 DIR* d = opendir(block_path.c_str());
3710 if (d != NULL) {
3711 struct dirent* de;
3712 while ((de = readdir(d)) != NULL) {
3713 if (de->d_type == DT_BLK) {
3714 std::string block_device = block_path + de->d_name;
bigbiff1f9e4842020-10-31 11:33:15 -04003715 if ((fd = open(block_device.c_str(), O_RDONLY | O_CLOEXEC)) < 0) {
3716 LOGERR("unable to open block device %s: %s\n", block_device.c_str(), strerror(errno));
3717 continue;
3718 }
3719 if (ioctl(fd, BLKROSET, &OFF) == -1) {
me-cafebabed63fcaa2022-07-28 03:19:20 +08003720 LOGERR("Unable to unlock %s: %s\n", block_device.c_str());
bigbiff1f9e4842020-10-31 11:33:15 -04003721 continue;
3722 }
3723 close(fd);
3724 }
3725 }
3726 closedir(d);
3727 }
bigbiffaf253cd2020-12-06 16:50:55 -05003728}
bigbiffcfa875c2021-06-20 16:20:27 -04003729
3730bool TWPartitionManager::Unmap_Super_Devices() {
3731 bool destroyed = false;
3732#ifndef TW_EXCLUDE_APEX
3733 twrpApex apex;
3734 apex.Unmount();
3735#endif
3736 for (auto iter = Partitions.begin(); iter != Partitions.end();) {
3737 LOGINFO("Checking partition: %s\n", (*iter)->Get_Mount_Point().c_str());
3738 if ((*iter)->Is_Super) {
3739 TWPartition *part = *iter;
3740 std::string bare_partition_name = Get_Bare_Partition_Name((*iter)->Get_Mount_Point());
me-cafebabe2136fc52022-07-20 06:42:18 +08003741 std::string blk_device_partition = bare_partition_name;
3742 if (DataManager::GetStrValue(TW_VIRTUAL_AB_ENABLED) == "1")
3743 blk_device_partition.append(PartitionManager.Get_Active_Slot_Suffix());
bigbiffcfa875c2021-06-20 16:20:27 -04003744 (*iter)->UnMount(false);
3745 LOGINFO("removing dynamic partition: %s\n", blk_device_partition.c_str());
3746 destroyed = DestroyLogicalPartition(blk_device_partition);
3747 std::string cow_partition = blk_device_partition + "-cow";
3748 std::string cow_partition_path = "/dev/block/mapper/" + cow_partition;
3749 struct stat st;
3750 if (lstat(cow_partition_path.c_str(), &st) == 0) {
3751 LOGINFO("removing cow partition: %s\n", cow_partition.c_str());
3752 destroyed = DestroyLogicalPartition(cow_partition);
3753 }
bigbiffcfa875c2021-06-20 16:20:27 -04003754 iter = Partitions.erase(iter);
3755 delete part;
3756 if (!destroyed) {
3757 return false;
3758 }
3759 } else {
3760 ++iter;
3761 }
3762 }
3763 return true;
3764}
bigbiffd21252f2021-09-18 15:56:32 -04003765
3766
3767bool TWPartitionManager::Check_Pending_Merges() {
3768 auto sm = android::snapshot::SnapshotManager::NewForFirstStageMount();
3769 if (!sm) {
3770 LOGERR("Unable to call snapshot manager\n");
3771 return false;
3772 }
3773
3774 if (!Unmap_Super_Devices()) {
3775 LOGERR("Unable to unmap dynamic partitions.\n");
3776 return false;
3777 }
3778
3779 auto callback = [&]() -> void {
3780 double progress;
3781 sm->GetUpdateState(&progress);
3782 LOGINFO("waiting for merge to complete: %.2f\n", progress);
3783 };
3784
3785 LOGINFO("checking for merges\n");
3786 if (!sm->HandleImminentDataWipe(callback)) {
3787 LOGERR("Unable to check merge status\n");
3788 return false;
3789 }
3790 return true;
Darth98f775972022-08-05 09:39:03 +01003791}