blob: 866abfb3320e66aa004ace77e309495cf705ae57 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffee7b7ff2020-03-23 15:08:27 -04002 Copyright 2014 to 2020 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/stat.h>
23#include <sys/vfs.h>
24#include <unistd.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060025#include <map>
Dees_Troy5bf43922012-09-07 16:07:55 -040026#include <vector>
Dees_Troy63c8df72012-09-10 14:02:05 -040027#include <dirent.h>
28#include <time.h>
Dees_Troy8170a922012-09-18 15:40:25 -040029#include <errno.h>
30#include <fcntl.h>
bigbiff25d25b92020-06-19 16:07:38 -040031#include <grp.h>
32#include <pwd.h>
bigbiffce8f83c2015-12-12 18:30:21 -050033#include <zlib.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050034#include <iostream>
35#include <iomanip>
Ethan Yonker8613dc02014-09-11 09:28:20 -050036#include <sys/wait.h>
Ethan Yonker483e9f42016-01-11 22:21:18 -060037#include <linux/fs.h>
38#include <sys/mount.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060039
bigbiffee7b7ff2020-03-23 15:08:27 -040040
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060041#include <sys/poll.h>
42#include <sys/socket.h>
43#include <linux/types.h>
44#include <linux/netlink.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040045#include <android-base/chrono_utils.h>
46#include <android-base/file.h>
47#include <android-base/logging.h>
bigbiff7ba75002020-04-11 20:47:09 -040048#include <android-base/properties.h>
bigbiffee7b7ff2020-03-23 15:08:27 -040049#include <android-base/strings.h>
50#include <fstab/fstab.h>
51#include <fs_avb/fs_avb.h>
52#include <fs_mgr.h>
53#include <fs_mgr_dm_linear.h>
54#include <fs_mgr_overlayfs.h>
55#include <libgsi/libgsi.h>
56#include <liblp/liblp.h>
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060057
Dees_Troy51a0e822012-09-05 15:24:24 -040058#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000059#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040060#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040061#include "data.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040062#include "twrp-functions.hpp"
Ethan Yonkerb5fab762016-01-28 14:03:33 -060063#include "fixContexts.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060064#include "exclude.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060065#include "set_metadata.h"
bigbiff7abc5fe2015-01-17 16:53:12 -050066#include "tw_atomic.hpp"
Ethan Yonker74db1572015-10-28 12:44:49 -050067#include "gui/gui.hpp"
Ethan Yonker472f5062016-02-25 13:47:30 -060068#include "progresstracking.hpp"
bigbiff bigbiff56cf5642016-08-19 17:43:45 -040069#include "twrpDigestDriver.hpp"
bigbiffad58e1b2020-07-06 20:24:34 -040070#include "twrpRepacker.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050071#include "adbbu/libtwadbbu.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040072
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040073#ifdef TW_HAS_MTP
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -050074#ifdef TW_HAS_LEGACY_MTP
75#include "mtp/legacy/mtp_MtpServer.hpp"
76#include "mtp/legacy/twrpMtp.hpp"
77#include "mtp/legacy/MtpMessage.hpp"
78#else
79#include "mtp/ffs/mtp_MtpServer.hpp"
80#include "mtp/ffs/twrpMtp.hpp"
81#include "mtp/ffs/MtpMessage.hpp"
82#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040083#endif
84
Dees Troy6f6441d2014-01-23 02:07:03 +000085extern "C" {
86 #include "cutils/properties.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050087 #include "gui/gui.h"
Dees Troy6f6441d2014-01-23 02:07:03 +000088}
89
Dees_Troy5bf43922012-09-07 16:07:55 -040090#ifdef TW_INCLUDE_CRYPTO
bigbiff7ba75002020-04-11 20:47:09 -040091#include "crypto/fde/cryptfs.h"
92#include "gui/rapidxml.hpp"
93#include "gui/pages.hpp"
94#ifdef TW_INCLUDE_FBE
95#include "crypto/ext4crypt/Decrypt.h"
96#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
97 #ifdef USE_FSCRYPT
98 #include "crypto/fscrypt/MetadataCrypt.h"
99 #else
100 #include "crypto/ext4crypt/MetadataCrypt.h"
bigbiffadc599e2020-05-28 19:36:30 +0000101 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400102#endif
103#endif
104#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
105#include "crypto/vold_decrypt/vold_decrypt.h"
106#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400107#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400108
Ethan Yonker1b190162016-12-05 15:25:19 -0600109#ifdef AB_OTA_UPDATER
110#include <hardware/hardware.h>
111#include <hardware/boot_control.h>
112#endif
113
bigbiffee7b7ff2020-03-23 15:08:27 -0400114using android::fs_mgr::Fstab;
115using android::fs_mgr::FstabEntry;
Ethan Yonker6277c792014-09-15 14:54:30 -0500116
bigbiffee7b7ff2020-03-23 15:08:27 -0400117extern bool datamedia;
Noah Jacobson81d638d2019-04-28 00:10:07 -0400118std::vector<users_struct> Users_List;
119
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500120TWPartitionManager::TWPartitionManager(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400121 mtp_was_enabled = false;
Ethan Yonker726a0202014-12-16 20:01:38 -0600122 mtp_write_fd = -1;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600123 uevent_pfd.fd = -1;
bigbiff7abc5fe2015-01-17 16:53:12 -0500124 stop_backup.set_value(0);
Ethan Yonker1b190162016-12-05 15:25:19 -0600125#ifdef AB_OTA_UPDATER
126 char slot_suffix[PROPERTY_VALUE_MAX];
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500127 property_get("ro.boot.slot_suffix", slot_suffix, "error");
128 if (strcmp(slot_suffix, "error") == 0)
129 property_get("ro.boot.slot", slot_suffix, "error");
Ethan Yonker1b190162016-12-05 15:25:19 -0600130 Active_Slot_Display = "";
Ethan Yonkerfefe5912017-09-30 22:22:13 -0500131 if (strcmp(slot_suffix, "_a") == 0 || strcmp(slot_suffix, "a") == 0)
Ethan Yonker1b190162016-12-05 15:25:19 -0600132 Set_Active_Slot("A");
133 else
134 Set_Active_Slot("B");
135#endif
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500136}
137
Captain Throwback18aea272020-10-29 12:43:17 -0400138int TWPartitionManager::Set_FDE_Encrypt_Status(void) {
139 property_set("ro.crypto.state", "encrypted");
140 property_set("ro.crypto.type", "block");
141 // Sleep for a bit so that services can start if needed
142 sleep(1);
143 return 0;
144}
145
bigbiff8da46fa2020-09-08 16:42:34 -0400146int TWPartitionManager::Process_Fstab(string Fstab_Filename, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400147 FILE *fstabFile;
148 char fstab_line[MAX_FSTAB_LINE_LENGTH];
Dees Troy02a64532014-03-19 15:23:32 +0000149 TWPartition* settings_partition = NULL;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500150 TWPartition* andsec_partition = NULL;
Ethan Yonker726a0202014-12-16 20:01:38 -0600151 unsigned int storageid = 1 << 16; // upper 16 bits are for physical storage device, we pretend to have only one
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600152 std::map<string, Flags_Map> twrp_flags;
153
154 fstabFile = fopen("/etc/twrp.flags", "rt");
155 if (fstabFile != NULL) {
Ian Macdonald160e8d32020-09-29 20:47:31 +0200156 LOGINFO("Reading /etc/twrp.flags\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600157 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
158 if (fstab_line[0] != '/')
159 continue;
160
161 size_t line_size = strlen(fstab_line);
162 if (fstab_line[line_size - 1] != '\n')
163 fstab_line[line_size] = '\n';
164 Flags_Map line_flags;
165 line_flags.Primary_Block_Device = "";
166 line_flags.Alternate_Block_Device = "";
167 line_flags.fstab_line = (char*)malloc(MAX_FSTAB_LINE_LENGTH);
168 if (!line_flags.fstab_line) {
169 LOGERR("malloc error on line_flags.fstab_line\n");
170 return false;
171 }
172 memcpy(line_flags.fstab_line, fstab_line, MAX_FSTAB_LINE_LENGTH);
173 bool found_separator = false;
174 char *fs_loc = NULL;
175 char *block_loc = NULL;
176 char *flags_loc = NULL;
177 size_t index, item_index = 0;
178 for (index = 0; index < line_size; index++) {
179 if (fstab_line[index] <= 32) {
180 fstab_line[index] = '\0';
181 found_separator = true;
182 } else if (found_separator) {
183 if (item_index == 0) {
184 fs_loc = fstab_line + index;
185 } else if (item_index == 1) {
186 block_loc = fstab_line + index;
187 } else if (item_index > 1) {
188 char *ptr = fstab_line + index;
189 if (*ptr == '/') {
190 line_flags.Alternate_Block_Device = ptr;
191 } else if (strlen(ptr) > strlen("flags=") && strncmp(ptr, "flags=", strlen("flags=")) == 0) {
192 flags_loc = ptr;
193 // Once we find the flags=, we're done scanning the line
194 break;
195 }
196 }
197 found_separator = false;
198 item_index++;
199 }
200 }
201 if (block_loc)
202 line_flags.Primary_Block_Device = block_loc;
203 if (fs_loc)
204 line_flags.File_System = fs_loc;
205 if (flags_loc)
206 line_flags.Flags = flags_loc;
207 string Mount_Point = fstab_line;
208 twrp_flags[Mount_Point] = line_flags;
209 memset(fstab_line, 0, sizeof(fstab_line));
210 }
211 fclose(fstabFile);
212 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400213
214 fstabFile = fopen(Fstab_Filename.c_str(), "rt");
215 if (fstabFile == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000216 LOGERR("Critical Error: Unable to open fstab at '%s'.\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400217 return false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600218 } else
219 LOGINFO("Reading %s\n", Fstab_Filename.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400220
221 while (fgets(fstab_line, sizeof(fstab_line), fstabFile) != NULL) {
bigbiffee7b7ff2020-03-23 15:08:27 -0400222 bool isSuper = Is_Super_Partition(fstab_line);
223
224 if (!isSuper && fstab_line[0] != '/')
Dees_Troy5bf43922012-09-07 16:07:55 -0400225 continue;
226
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600227 if (strstr(fstab_line, "swap"))
228 continue; // Skip swap in recovery
229
230 size_t line_size = strlen(fstab_line);
231 if (fstab_line[line_size - 1] != '\n')
232 fstab_line[line_size] = '\n';
Dees_Troy2a923582012-09-20 12:13:34 -0400233
Matt Mower2b2dd152016-04-26 11:24:08 -0500234 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400235 if (partition->Process_Fstab_Line(fstab_line, Display_Error, &twrp_flags))
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500236 Partitions.push_back(partition);
Matt Mower72c87ce2016-04-26 14:34:56 -0500237 else
Dees_Troy5bf43922012-09-07 16:07:55 -0400238 delete partition;
Matt Mower2b2dd152016-04-26 11:24:08 -0500239
240 memset(fstab_line, 0, sizeof(fstab_line));
Dees_Troy5bf43922012-09-07 16:07:55 -0400241 }
242 fclose(fstabFile);
Matt Mower72c87ce2016-04-26 14:34:56 -0500243
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600244 if (twrp_flags.size() > 0) {
245 LOGINFO("Processing remaining twrp.flags\n");
246 // Add any items from twrp.flags that did not exist in the recovery.fstab
247 for (std::map<string, Flags_Map>::iterator mapit=twrp_flags.begin(); mapit!=twrp_flags.end(); mapit++) {
248 if (Find_Partition_By_Path(mapit->first) == NULL) {
249 TWPartition* partition = new TWPartition();
bigbiff8da46fa2020-09-08 16:42:34 -0400250 if (partition->Process_Fstab_Line(mapit->second.fstab_line, Display_Error, NULL))
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600251 Partitions.push_back(partition);
252 else
253 delete partition;
254 }
255 if (mapit->second.fstab_line)
256 free(mapit->second.fstab_line);
257 mapit->second.fstab_line = NULL;
258 }
259 }
Mohd Faraze3948ec2020-08-14 01:40:59 +0000260 if (Get_Super_Status()) {
261 Setup_Super_Devices();
262 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600263 LOGINFO("Done processing fstab files\n");
264
Matt Mower72c87ce2016-04-26 14:34:56 -0500265 std::vector<TWPartition*>::iterator iter;
266 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
267 (*iter)->Partition_Post_Processing(Display_Error);
268
269 if ((*iter)->Is_Storage) {
270 ++storageid;
271 (*iter)->MTP_Storage_ID = storageid;
272 }
273
274 if (!settings_partition && (*iter)->Is_Settings_Storage && (*iter)->Is_Present)
275 settings_partition = (*iter);
276 else
277 (*iter)->Is_Settings_Storage = false;
278
279 if (!andsec_partition && (*iter)->Has_Android_Secure && (*iter)->Is_Present)
280 andsec_partition = (*iter);
281 else
282 (*iter)->Has_Android_Secure = false;
bigbiffdf8436b2020-08-30 16:22:34 -0400283
Mohd Faraze3948ec2020-08-14 01:40:59 +0000284 if (Is_Super_Partition(TWFunc::Remove_Beginning_Slash((*iter)->Get_Mount_Point()).c_str()))
285 Prepare_Super_Volume((*iter));
286 }
287
288 //Setup Apex before decryption
289 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
290 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
291 if (sys) {
292 if (sys->Get_Super_Status()) {
293 sys->Mount(true);
294 if (ven) {
295 ven->Mount(true);
296 }
297 twrpApex apex;
298 if (!apex.loadApexImages()) {
299 LOGERR("Unable to load apex images from %s\n", APEX_DIR);
300 property_set("twrp.apex.loaded", "false");
301 } else {
302 property_set("twrp.apex.loaded", "true");
303 }
304 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500305 }
Mohd Faraz9a4ef262020-10-18 23:58:21 +0530306#ifndef USE_VENDOR_LIBS
307 if (ven)
308 ven->UnMount(true);
309 if (sys)
310 sys->UnMount(true);
311#endif
Matt Mower72c87ce2016-04-26 14:34:56 -0500312
Ethan Yonker6277c792014-09-15 14:54:30 -0500313 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) {
314 // Attempt to automatically identify /data/media emulated storage devices
315 TWPartition* Dat = Find_Partition_By_Path("/data");
316 if (Dat) {
317 LOGINFO("Using automatic handling for /data/media emulated storage device.\n");
318 datamedia = true;
that9e0593e2014-10-08 00:01:24 +0200319 Dat->Setup_Data_Media();
Ethan Yonker6277c792014-09-15 14:54:30 -0500320 settings_partition = Dat;
Ethan Yonker726a0202014-12-16 20:01:38 -0600321 // Since /data was not considered a storage partition earlier, we still need to assign an MTP ID
322 ++storageid;
323 Dat->MTP_Storage_ID = storageid;
Ethan Yonker6277c792014-09-15 14:54:30 -0500324 }
325 }
Dees Troy02a64532014-03-19 15:23:32 +0000326 if (!settings_partition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500327 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
328 if ((*iter)->Is_Storage) {
Dees Troy02a64532014-03-19 15:23:32 +0000329 settings_partition = (*iter);
Dees_Troya13d74f2013-03-24 08:54:55 -0500330 break;
331 }
332 }
Dees Troy02a64532014-03-19 15:23:32 +0000333 if (!settings_partition)
Dees_Troy2673cec2013-04-02 20:22:16 +0000334 LOGERR("Unable to locate storage partition for storing settings file.\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500335 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400336 if (!Write_Fstab()) {
337 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000338 LOGERR("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400339 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000340 LOGINFO("Error creating fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400341 }
Matt Mowered71fa32014-04-16 13:21:47 -0500342
Matt Mowerbf4efa32014-04-14 23:25:26 -0500343 if (andsec_partition) {
344 Setup_Android_Secure_Location(andsec_partition);
Matt Mowered71fa32014-04-16 13:21:47 -0500345 } else if (settings_partition) {
Matt Mowerbf4efa32014-04-14 23:25:26 -0500346 Setup_Android_Secure_Location(settings_partition);
347 }
Matt Mowered71fa32014-04-16 13:21:47 -0500348 if (settings_partition) {
349 Setup_Settings_Storage_Partition(settings_partition);
350 }
bigbiff7ba75002020-04-11 20:47:09 -0400351
Mohd Faraze3948ec2020-08-14 01:40:59 +0000352#ifdef TW_INCLUDE_CRYPTO
353 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
354 Decrypt_Data();
355#endif
356
bigbiff7ba75002020-04-11 20:47:09 -0400357 Update_System_Details();
Mohd Faraze3948ec2020-08-14 01:40:59 +0000358 if (Get_Super_Status())
359 Setup_Super_Partition();
bigbiff7ba75002020-04-11 20:47:09 -0400360 UnMount_Main_Partitions();
361#ifdef AB_OTA_UPDATER
362 DataManager::SetValue("tw_active_slot", Get_Active_Slot_Display());
363#endif
364 setup_uevent();
365 return true;
366}
367
368int TWPartitionManager::Write_Fstab(void) {
369 FILE *fp;
370 std::vector<TWPartition*>::iterator iter;
371 string Line;
372
373 fp = fopen("/etc/fstab", "w");
374 if (fp == NULL) {
375 LOGINFO("Can not open /etc/fstab.\n");
376 return false;
377 }
378 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
379 if ((*iter)->Can_Be_Mounted) {
Mohd Faraz2a1e3752020-09-30 10:55:48 +0530380 Line = (*iter)->Actual_Block_Device + " " + (*iter)->Mount_Point + " " + (*iter)->Current_File_System +
381 ((*iter)->Mount_Read_Only ? " ro " : " rw ") + "0 0\n";
bigbiff7ba75002020-04-11 20:47:09 -0400382 fputs(Line.c_str(), fp);
383 }
384 // Handle subpartition tracking
385 if ((*iter)->Is_SubPartition) {
386 TWPartition* ParentPartition = Find_Partition_By_Path((*iter)->SubPartition_Of);
387 if (ParentPartition)
388 ParentPartition->Has_SubPartition = true;
389 else
390 LOGERR("Unable to locate parent partition '%s' of '%s'\n", (*iter)->SubPartition_Of.c_str(), (*iter)->Mount_Point.c_str());
391 }
392 }
393 fclose(fp);
394 return true;
395}
396
397void TWPartitionManager::Decrypt_Data() {
398 #ifdef TW_INCLUDE_CRYPTO
Ethan Yonkercceebb82014-11-18 10:17:59 -0600399 TWPartition* Decrypt_Data = Find_Partition_By_Path("/data");
400 if (Decrypt_Data && Decrypt_Data->Is_Encrypted && !Decrypt_Data->Is_Decrypted) {
Ethan Yonker93382822018-11-01 15:25:31 -0500401 if (!Decrypt_Data->Key_Directory.empty() && Mount_By_Path(Decrypt_Data->Key_Directory, false)) {
402#ifdef TW_INCLUDE_FBE_METADATA_DECRYPT
bigbiff7ba75002020-04-11 20:47:09 -0400403#ifdef USE_FSCRYPT
404 if (fscrypt_mount_metadata_encrypted(Decrypt_Data->Actual_Block_Device, Decrypt_Data->Mount_Point, false)) {
Mohd Faraze3948ec2020-08-14 01:40:59 +0000405 std::string crypto_blkdev =android::base::GetProperty("ro.crypto.fs_crypto_blkdev", "error");
406 Decrypt_Data->Decrypted_Block_Device = crypto_blkdev;
bigbiff7ba75002020-04-11 20:47:09 -0400407 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n", crypto_blkdev.c_str());
408#else
Ethan Yonker93382822018-11-01 15:25:31 -0500409 if (e4crypt_mount_metadata_encrypted(Decrypt_Data->Mount_Point, false, Decrypt_Data->Key_Directory, Decrypt_Data->Actual_Block_Device, &Decrypt_Data->Decrypted_Block_Device)) {
bigbiff7ba75002020-04-11 20:47:09 -0400410 LOGINFO("Successfully decrypted metadata encrypted data partition with new block device: '%s'\n",
411 Decrypt_Data->Decrypted_Block_Device.c_str());
412#endif
Ethan Yonker93382822018-11-01 15:25:31 -0500413 property_set("ro.crypto.state", "encrypted");
414 Decrypt_Data->Is_Decrypted = true; // Needed to make the mount function work correctly
415 int retry_count = 10;
416 while (!Decrypt_Data->Mount(false) && --retry_count)
417 usleep(500);
418 if (Decrypt_Data->Mount(false)) {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400419 if (!Decrypt_Data->Decrypt_FBE_DE()) {
mauronofriofc79aa62019-11-23 23:13:04 +0100420 char wrappedvalue[PROPERTY_VALUE_MAX];
421 property_get("fbe.data.wrappedkey", wrappedvalue, "");
422 std::string wrappedkeyvalue(wrappedvalue);
423 if (wrappedkeyvalue == "true") {
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400424 LOGERR("Unable to decrypt FBE device\n");
mauronofriofc79aa62019-11-23 23:13:04 +0100425 } else {
426 LOGINFO("Trying wrapped key.\n");
427 property_set("fbe.data.wrappedkey", "true");
428 if (!Decrypt_Data->Decrypt_FBE_DE()) {
429 LOGERR("Unable to decrypt FBE device\n");
430 }
bigbiff bigbiff0be03b32019-08-27 20:50:31 -0400431 }
432 }
433
Ethan Yonker93382822018-11-01 15:25:31 -0500434 } else {
435 LOGINFO("Failed to mount data after metadata decrypt\n");
436 }
437 } else {
438 LOGINFO("Unable to decrypt metadata encryption\n");
439 }
440#else
441 LOGERR("Metadata FBE decrypt support not present in this TWRP\n");
442#endif
443 }
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600444 if (Decrypt_Data->Is_FBE) {
445 if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) == 0) {
446 if (Decrypt_Device("!") == 0) {
447 gui_msg("decrypt_success=Successfully decrypted with default password.");
448 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
449 } else {
450 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
451 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600452 }
453 } else {
Captain Throwback18aea272020-10-29 12:43:17 -0400454 Set_FDE_Encrypt_Status();
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600455 int password_type = cryptfs_get_password_type();
456 if (password_type == CRYPT_TYPE_DEFAULT) {
457 LOGINFO("Device is encrypted with the default password, attempting to decrypt.\n");
458 if (Decrypt_Device("default_password") == 0) {
459 gui_msg("decrypt_success=Successfully decrypted with default password.");
460 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
461 } else {
462 gui_err("unable_to_decrypt=Unable to decrypt with default password.");
463 }
464 } else {
465 DataManager::SetValue("TW_CRYPTO_TYPE", password_type);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400466 DataManager::SetValue("tw_crypto_pwtype_0", password_type);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600467 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600468 }
469 }
Noah Jacobson81d638d2019-04-28 00:10:07 -0400470 if (Decrypt_Data && (!Decrypt_Data->Is_Encrypted || Decrypt_Data->Is_Decrypted) &&
471 Decrypt_Data->Mount(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -0600472 Decrypt_Adopted();
473 }
Ethan Yonkercceebb82014-11-18 10:17:59 -0600474#endif
Dees_Troy51a0e822012-09-05 15:24:24 -0400475}
476
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500477void TWPartitionManager::Setup_Settings_Storage_Partition(TWPartition* Part) {
Ethan Yonkerc05c5982014-03-13 09:19:56 -0500478 DataManager::SetValue("tw_settings_path", Part->Storage_Path);
479 DataManager::SetValue("tw_storage_path", Part->Storage_Path);
480 LOGINFO("Settings storage is '%s'\n", Part->Storage_Path.c_str());
481}
482
Matt Mowerbf4efa32014-04-14 23:25:26 -0500483void TWPartitionManager::Setup_Android_Secure_Location(TWPartition* Part) {
484 if (Part->Has_Android_Secure)
485 Part->Setup_AndSec();
Ethan Yonker6277c792014-09-15 14:54:30 -0500486 else if (!datamedia)
Matt Mowerbf4efa32014-04-14 23:25:26 -0500487 Part->Setup_AndSec();
Matt Mowerbf4efa32014-04-14 23:25:26 -0500488}
489
Dees_Troy8170a922012-09-18 15:40:25 -0400490void TWPartitionManager::Output_Partition_Logging(void) {
491 std::vector<TWPartition*>::iterator iter;
492
493 printf("\n\nPartition Logs:\n");
494 for (iter = Partitions.begin(); iter != Partitions.end(); iter++)
495 Output_Partition((*iter));
496}
497
498void TWPartitionManager::Output_Partition(TWPartition* Part) {
499 unsigned long long mb = 1048576;
500
Gary Peck004d48b2012-11-21 16:28:18 -0800501 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 -0400502 if (Part->Can_Be_Mounted) {
Gary Peck004d48b2012-11-21 16:28:18 -0800503 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 -0400504 }
Gary Peck004d48b2012-11-21 16:28:18 -0800505 printf("\n Flags: ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500506 if (Part->Can_Be_Mounted)
507 printf("Can_Be_Mounted ");
Gary Peck004d48b2012-11-21 16:28:18 -0800508 if (Part->Can_Be_Wiped)
509 printf("Can_Be_Wiped ");
Hashcodedabfd492013-08-29 22:45:30 -0700510 if (Part->Use_Rm_Rf)
511 printf("Use_Rm_Rf ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500512 if (Part->Can_Be_Backed_Up)
513 printf("Can_Be_Backed_Up ");
Gary Peck004d48b2012-11-21 16:28:18 -0800514 if (Part->Wipe_During_Factory_Reset)
515 printf("Wipe_During_Factory_Reset ");
516 if (Part->Wipe_Available_in_GUI)
517 printf("Wipe_Available_in_GUI ");
518 if (Part->Is_SubPartition)
519 printf("Is_SubPartition ");
520 if (Part->Has_SubPartition)
521 printf("Has_SubPartition ");
522 if (Part->Removable)
523 printf("Removable ");
524 if (Part->Is_Present)
525 printf("IsPresent ");
526 if (Part->Can_Be_Encrypted)
527 printf("Can_Be_Encrypted ");
528 if (Part->Is_Encrypted)
529 printf("Is_Encrypted ");
530 if (Part->Is_Decrypted)
531 printf("Is_Decrypted ");
532 if (Part->Has_Data_Media)
533 printf("Has_Data_Media ");
Dees_Troy83bd4832013-05-04 12:39:56 +0000534 if (Part->Can_Encrypt_Backup)
535 printf("Can_Encrypt_Backup ");
536 if (Part->Use_Userdata_Encryption)
537 printf("Use_Userdata_Encryption ");
Gary Peck004d48b2012-11-21 16:28:18 -0800538 if (Part->Has_Android_Secure)
539 printf("Has_Android_Secure ");
540 if (Part->Is_Storage)
541 printf("Is_Storage ");
Dees_Troya13d74f2013-03-24 08:54:55 -0500542 if (Part->Is_Settings_Storage)
543 printf("Is_Settings_Storage ");
Dees_Troy68cab492012-12-12 19:29:35 +0000544 if (Part->Ignore_Blkid)
545 printf("Ignore_Blkid ");
Ethan Yonker253368a2014-11-25 15:00:52 -0600546 if (Part->Mount_To_Decrypt)
547 printf("Mount_To_Decrypt ");
Ethan Yonker96af84a2015-01-05 14:58:36 -0600548 if (Part->Can_Flash_Img)
549 printf("Can_Flash_Img ");
Ethan Yonker66a19492015-12-10 10:19:45 -0600550 if (Part->Is_Adopted_Storage)
551 printf("Is_Adopted_Storage ");
Ethan Yonker1b190162016-12-05 15:25:19 -0600552 if (Part->SlotSelect)
553 printf("SlotSelect ");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600554 if (Part->Mount_Read_Only)
555 printf("Mount_Read_Only ");
Gary Peck004d48b2012-11-21 16:28:18 -0800556 printf("\n");
557 if (!Part->SubPartition_Of.empty())
558 printf(" SubPartition_Of: %s\n", Part->SubPartition_Of.c_str());
559 if (!Part->Symlink_Path.empty())
560 printf(" Symlink_Path: %s\n", Part->Symlink_Path.c_str());
561 if (!Part->Symlink_Mount_Point.empty())
562 printf(" Symlink_Mount_Point: %s\n", Part->Symlink_Mount_Point.c_str());
563 if (!Part->Primary_Block_Device.empty())
564 printf(" Primary_Block_Device: %s\n", Part->Primary_Block_Device.c_str());
565 if (!Part->Alternate_Block_Device.empty())
566 printf(" Alternate_Block_Device: %s\n", Part->Alternate_Block_Device.c_str());
567 if (!Part->Decrypted_Block_Device.empty())
568 printf(" Decrypted_Block_Device: %s\n", Part->Decrypted_Block_Device.c_str());
dianlujitao4879b372018-12-03 18:45:47 +0800569 if (!Part->Crypto_Key_Location.empty())
Ethan Yonker253368a2014-11-25 15:00:52 -0600570 printf(" Crypto_Key_Location: %s\n", Part->Crypto_Key_Location.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800571 if (Part->Length != 0)
572 printf(" Length: %i\n", Part->Length);
573 if (!Part->Display_Name.empty())
574 printf(" Display_Name: %s\n", Part->Display_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500575 if (!Part->Storage_Name.empty())
576 printf(" Storage_Name: %s\n", Part->Storage_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800577 if (!Part->Backup_Path.empty())
578 printf(" Backup_Path: %s\n", Part->Backup_Path.c_str());
579 if (!Part->Backup_Name.empty())
580 printf(" Backup_Name: %s\n", Part->Backup_Name.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500581 if (!Part->Backup_Display_Name.empty())
582 printf(" Backup_Display_Name: %s\n", Part->Backup_Display_Name.c_str());
Gary Peck004d48b2012-11-21 16:28:18 -0800583 if (!Part->Backup_FileName.empty())
584 printf(" Backup_FileName: %s\n", Part->Backup_FileName.c_str());
585 if (!Part->Storage_Path.empty())
586 printf(" Storage_Path: %s\n", Part->Storage_Path.c_str());
587 if (!Part->Current_File_System.empty())
588 printf(" Current_File_System: %s\n", Part->Current_File_System.c_str());
589 if (!Part->Fstab_File_System.empty())
590 printf(" Fstab_File_System: %s\n", Part->Fstab_File_System.c_str());
591 if (Part->Format_Block_Size != 0)
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500592 printf(" Format_Block_Size: %lu\n", Part->Format_Block_Size);
Dees_Troy094207a2012-09-26 12:00:39 -0400593 if (!Part->MTD_Name.empty())
594 printf(" MTD_Name: %s\n", Part->MTD_Name.c_str());
Matt Mower029a82d2017-01-08 13:12:38 -0600595 printf(" Backup_Method: %s\n", Part->Backup_Method_By_Name().c_str());
Hashcode62bd9e02013-11-19 21:59:42 -0800596 if (Part->Mount_Flags || !Part->Mount_Options.empty())
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600597 printf(" Mount_Flags: %i, Mount_Options: %s\n", Part->Mount_Flags, Part->Mount_Options.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -0600598 if (Part->MTP_Storage_ID)
599 printf(" MTP_Storage_ID: %i\n", Part->MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -0500600 if (!Part->Key_Directory.empty())
601 printf(" Metadata Key Directory: %s\n", Part->Key_Directory.c_str());
Ethan Yonker6277c792014-09-15 14:54:30 -0500602 printf("\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400603}
604
Dees_Troy51a0e822012-09-05 15:24:24 -0400605int TWPartitionManager::Mount_By_Path(string Path, bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400606 std::vector<TWPartition*>::iterator iter;
607 int ret = false;
608 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400609 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400610
bigbiffd58ba182020-03-23 10:02:29 -0400611 if (Local_Path == "/tmp" || Local_Path == "/")
Dees_Troy43d8b002012-09-17 16:00:01 -0400612 return true;
613
Dees_Troy5bf43922012-09-07 16:07:55 -0400614 // Iterate through all partitions
615 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400616 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400617 ret = (*iter)->Mount(Display_Error);
618 found = true;
Dees_Troy51127312012-09-08 13:08:49 -0400619 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400620 (*iter)->Mount(Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400621 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400622 }
623 if (found) {
624 return ret;
625 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500626 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 -0400627 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000628 LOGINFO("Mount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400629 }
630 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400631}
632
Dees_Troy51a0e822012-09-05 15:24:24 -0400633int TWPartitionManager::UnMount_By_Path(string Path, bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400634 std::vector<TWPartition*>::iterator iter;
635 int ret = false;
636 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400637 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy51127312012-09-08 13:08:49 -0400638
639 // Iterate through all partitions
640 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400641 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400642 ret = (*iter)->UnMount(Display_Error);
643 found = true;
644 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
645 (*iter)->UnMount(Display_Error);
646 }
647 }
648 if (found) {
649 return ret;
650 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500651 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 -0400652 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000653 LOGINFO("UnMount: Unable to find partition for path '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400654 }
655 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400656}
657
Dees_Troy51a0e822012-09-05 15:24:24 -0400658int TWPartitionManager::Is_Mounted_By_Path(string Path) {
Dees_Troy51127312012-09-08 13:08:49 -0400659 TWPartition* Part = Find_Partition_By_Path(Path);
660
661 if (Part)
662 return Part->Is_Mounted();
663 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000664 LOGINFO("Is_Mounted: Unable to find partition for path '%s'\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400665 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400666}
667
Dees_Troy5bf43922012-09-07 16:07:55 -0400668int TWPartitionManager::Mount_Current_Storage(bool Display_Error) {
Dees_Troy51127312012-09-08 13:08:49 -0400669 string current_storage_path = DataManager::GetCurrentStoragePath();
670
671 if (Mount_By_Path(current_storage_path, Display_Error)) {
672 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
673 if (FreeStorage)
674 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
675 return true;
676 }
677 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400678}
679
Dees_Troy5bf43922012-09-07 16:07:55 -0400680int TWPartitionManager::Mount_Settings_Storage(bool Display_Error) {
681 return Mount_By_Path(DataManager::GetSettingsStoragePath(), Display_Error);
682}
683
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600684TWPartition* TWPartitionManager::Find_Partition_By_Path(const string& Path) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400685 std::vector<TWPartition*>::iterator iter;
Dees_Troy38bd7602012-09-14 13:33:53 -0400686 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy5bf43922012-09-07 16:07:55 -0400687
dianlujitaob76a73a2020-04-30 20:33:20 +0800688 if (Local_Path == "/system")
689 Local_Path = Get_Android_Root_Path();
Dees_Troy5bf43922012-09-07 16:07:55 -0400690 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -0400691 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path))
Dees_Troy5bf43922012-09-07 16:07:55 -0400692 return (*iter);
693 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400694 return NULL;
695}
696
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600697TWPartition* TWPartitionManager::Find_Partition_By_Block_Device(const string& Block_Device) {
698 std::vector<TWPartition*>::iterator iter;
699
700 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
701 if ((*iter)->Primary_Block_Device == Block_Device || (!(*iter)->Actual_Block_Device.empty() && (*iter)->Actual_Block_Device == Block_Device))
702 return (*iter);
703 }
704 return NULL;
705}
706
Ethan Yonker53796e72019-01-11 22:49:52 -0600707int TWPartitionManager::Check_Backup_Name(const std::string& Backup_Name, bool Display_Error, bool Must_Be_Unique) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400708 // Check the backup name to ensure that it is the correct size and contains only valid characters
709 // and that a backup with that name doesn't already exist
710 char backup_name[MAX_BACKUP_NAME_LEN];
711 char backup_loc[255], tw_image_dir[255];
712 int copy_size;
713 int index, cur_char;
Ethan Yonker53796e72019-01-11 22:49:52 -0600714 string Backup_Loc;
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400715
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400716 copy_size = Backup_Name.size();
717 // Check size
718 if (copy_size > MAX_BACKUP_NAME_LEN) {
719 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -0500720 gui_err("backup_name_len=Backup name is too long.");
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400721 return -2;
722 }
723
724 // Check each character
725 strncpy(backup_name, Backup_Name.c_str(), copy_size);
Dees_Troya13d74f2013-03-24 08:54:55 -0500726 if (copy_size == 1 && strncmp(backup_name, "0", 1) == 0)
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400727 return 0; // A "0" (zero) means to use the current timestamp for the backup name
728 for (index=0; index<copy_size; index++) {
729 cur_char = (int)backup_name[index];
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500730 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 -0400731 // These are valid characters
732 // Numbers
733 // Upper case letters
734 // Lower case letters
735 // Space
736 // and -_.{}[]
737 } else {
738 if (Display_Error)
Ethan Yonker4adc33e2016-01-22 16:07:11 -0600739 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 -0400740 return -3;
741 }
742 }
743
Ethan Yonker53796e72019-01-11 22:49:52 -0600744 if (Must_Be_Unique) {
745 // Check to make sure that a backup with this name doesn't already exist
746 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Loc);
747 strcpy(backup_loc, Backup_Loc.c_str());
748 sprintf(tw_image_dir,"%s/%s", backup_loc, Backup_Name.c_str());
749 if (TWFunc::Path_Exists(tw_image_dir)) {
750 if (Display_Error)
751 gui_err("backup_name_exists=A backup with that name already exists!");
bigbiffce8f83c2015-12-12 18:30:21 -0500752
Ethan Yonker53796e72019-01-11 22:49:52 -0600753 return -4;
754 }
755 // Backup is unique
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400756 }
Ethan Yonker53796e72019-01-11 22:49:52 -0600757 // No problems found
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400758 return 0;
759}
760
bigbiffce8f83c2015-12-12 18:30:21 -0500761bool TWPartitionManager::Backup_Partition(PartitionSettings *part_settings) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400762 time_t start, stop;
Matt Mower23d8aae2017-01-06 14:30:33 -0600763 int use_compression;
bigbiffce8f83c2015-12-12 18:30:21 -0500764 string backup_log = part_settings->Backup_Folder + "/recovery.log";
Dees_Troy43d8b002012-09-17 16:00:01 -0400765
bigbiffce8f83c2015-12-12 18:30:21 -0500766 if (part_settings->Part == NULL)
Dees_Troy43d8b002012-09-17 16:00:01 -0400767 return true;
768
Dees_Troy093b7642012-09-21 15:59:38 -0400769 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -0400770
Tom Hite5a926722014-09-15 01:31:03 +0000771 TWFunc::SetPerformanceMode(true);
Dees_Troy43d8b002012-09-17 16:00:01 -0400772 time(&start);
773
bigbiffce8f83c2015-12-12 18:30:21 -0500774 if (part_settings->Part->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500775 sync();
776 sync();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400777 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500778 if (!part_settings->adbbackup && part_settings->generate_digest) {
779 if (!twrpDigestDriver::Make_Digest(Full_Filename))
780 goto backup_error;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400781 }
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400782
bigbiffce8f83c2015-12-12 18:30:21 -0500783 if (part_settings->Part->Has_SubPartition) {
Dees_Troy8170a922012-09-18 15:40:25 -0400784 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400785 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -0400786
787 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400788 if ((*subpart)->Can_Be_Backed_Up && (*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500789 part_settings->Part = *subpart;
bigbiffce8f83c2015-12-12 18:30:21 -0500790 if (!(*subpart)->Backup(part_settings, &tar_fork_pid)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500791 goto backup_error;
Tom Hite5a926722014-09-15 01:31:03 +0000792 }
Dees_Troy2727b992013-08-14 20:09:30 +0000793 sync();
794 sync();
bigbiff bigbifff5955b12019-05-18 17:28:58 -0400795 string Full_Filename = part_settings->Backup_Folder + "/" + part_settings->Part->Backup_FileName;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400796 if (!part_settings->adbbackup && part_settings->generate_digest) {
797 if (!twrpDigestDriver::Make_Digest(Full_Filename)) {
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500798 goto backup_error;
bigbiffce8f83c2015-12-12 18:30:21 -0500799 }
Tom Hite5a926722014-09-15 01:31:03 +0000800 }
Dees_Troy8170a922012-09-18 15:40:25 -0400801 }
802 }
803 }
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400804
Dees_Troy43d8b002012-09-17 16:00:01 -0400805 time(&stop);
that203bcc92015-05-09 17:27:33 +0200806 int backup_time = (int) difftime(stop, start);
Dees_Troy2673cec2013-04-02 20:22:16 +0000807 LOGINFO("Partition Backup time: %d\n", backup_time);
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -0400808
bigbiffce8f83c2015-12-12 18:30:21 -0500809 if (part_settings->Part->Backup_Method == BM_FILES) {
810 part_settings->file_time += backup_time;
Dees_Troy43d8b002012-09-17 16:00:01 -0400811 } else {
bigbiffce8f83c2015-12-12 18:30:21 -0500812 part_settings->img_time += backup_time;
813
Dees_Troy43d8b002012-09-17 16:00:01 -0400814 }
Tom Hite5a926722014-09-15 01:31:03 +0000815
Matt Mower02899552016-12-30 18:13:51 -0600816 TWFunc::SetPerformanceMode(false);
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500817 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -0400818 }
Ethan Yonkercd00a8b2017-07-06 10:23:30 -0500819backup_error:
820 Clean_Backup_Folder(part_settings->Backup_Folder);
821 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
822 tw_set_default_metadata(backup_log.c_str());
823 TWFunc::SetPerformanceMode(false);
824 return false;
bigbiff7abc5fe2015-01-17 16:53:12 -0500825}
826
bigbiffbf1d6722015-02-14 16:25:59 -0500827void TWPartitionManager::Clean_Backup_Folder(string Backup_Folder) {
828 DIR *d = opendir(Backup_Folder.c_str());
829 struct dirent *p;
830 int r;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400831 vector<string> ext;
832
833 //extensions we should delete when cleaning
834 ext.push_back("win");
835 ext.push_back("md5");
836 ext.push_back("sha2");
837 ext.push_back("info");
bigbiffbf1d6722015-02-14 16:25:59 -0500838
Ethan Yonker74db1572015-10-28 12:44:49 -0500839 gui_msg("backup_clean=Backup Failed. Cleaning Backup Folder.");
bigbiffbf1d6722015-02-14 16:25:59 -0500840
841 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500842 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Backup_Folder)(strerror(errno)));
bigbiffbf1d6722015-02-14 16:25:59 -0500843 return;
844 }
845
Matt Mower2b18a532015-02-20 16:58:05 -0600846 while ((p = readdir(d))) {
bigbiffbf1d6722015-02-14 16:25:59 -0500847 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
848 continue;
849
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500850 string path = Backup_Folder + "/" + p->d_name;
bigbiffbf1d6722015-02-14 16:25:59 -0500851
852 size_t dot = path.find_last_of(".") + 1;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400853 for (vector<string>::const_iterator i = ext.begin(); i != ext.end(); ++i) {
854 if (path.substr(dot) == *i) {
855 r = unlink(path.c_str());
856 if (r != 0)
857 LOGINFO("Unable to unlink '%s: %s'\n", path.c_str(), strerror(errno));
bigbiffbf1d6722015-02-14 16:25:59 -0500858 }
859 }
860 }
861 closedir(d);
862}
863
Ethan Yonker472f5062016-02-25 13:47:30 -0600864int TWPartitionManager::Check_Backup_Cancel() {
865 return stop_backup.get_value();
866}
867
bigbiff7abc5fe2015-01-17 16:53:12 -0500868int TWPartitionManager::Cancel_Backup() {
869 string Backup_Folder, Backup_Name, Full_Backup_Path;
870
871 stop_backup.set_value(1);
872
873 if (tar_fork_pid != 0) {
874 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
875 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, Backup_Folder);
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500876 Full_Backup_Path = Backup_Folder + "/" + Backup_Name;
bigbiff7abc5fe2015-01-17 16:53:12 -0500877 LOGINFO("Killing pid: %d\n", tar_fork_pid);
878 kill(tar_fork_pid, SIGUSR2);
879 while (kill(tar_fork_pid, 0) == 0) {
880 usleep(1000);
881 }
882 LOGINFO("Backup_Run stopped and returning false, backup cancelled.\n");
883 LOGINFO("Removing directory %s\n", Full_Backup_Path.c_str());
884 TWFunc::removeDir(Full_Backup_Path, false);
885 tar_fork_pid = 0;
886 }
887
888 return 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400889}
890
bigbiffce8f83c2015-12-12 18:30:21 -0500891int TWPartitionManager::Run_Backup(bool adbbackup) {
892 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400893 int partition_count = 0, disable_free_space_check = 0, skip_digest = 0;
bigbiffce8f83c2015-12-12 18:30:21 -0500894 string Backup_Name, Backup_List, backup_path;
Matt Mower23d8aae2017-01-06 14:30:33 -0600895 unsigned long long total_bytes = 0, free_space = 0;
Dees_Troy43d8b002012-09-17 16:00:01 -0400896 TWPartition* storage = NULL;
897 struct tm *t;
Matt Mower23d8aae2017-01-06 14:30:33 -0600898 time_t seconds, total_start, total_stop;
Dees_Troya13d74f2013-03-24 08:54:55 -0500899 size_t start_pos = 0, end_pos = 0;
bigbiff7abc5fe2015-01-17 16:53:12 -0500900 stop_backup.set_value(0);
Dees_Troy43d8b002012-09-17 16:00:01 -0400901 seconds = time(0);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500902 t = localtime(&seconds);
Dees_Troy43d8b002012-09-17 16:00:01 -0400903
bigbiffce8f83c2015-12-12 18:30:21 -0500904 part_settings.img_bytes_remaining = 0;
905 part_settings.file_bytes_remaining = 0;
906 part_settings.img_time = 0;
907 part_settings.file_time = 0;
908 part_settings.img_bytes = 0;
909 part_settings.file_bytes = 0;
910 part_settings.PM_Method = PM_BACKUP;
911
bigbiffce8f83c2015-12-12 18:30:21 -0500912 part_settings.adbbackup = adbbackup;
Dees_Troy43d8b002012-09-17 16:00:01 -0400913 time(&total_start);
914
915 Update_System_Details();
916
917 if (!Mount_Current_Storage(true))
918 return false;
919
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400920 DataManager::GetValue(TW_SKIP_DIGEST_GENERATE_VAR, skip_digest);
921 if (skip_digest == 0)
922 part_settings.generate_digest = true;
Dees_Troyc5865ab2012-09-24 15:08:04 -0400923 else
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400924 part_settings.generate_digest = false;
Dees_Troy4a2a1262012-09-18 09:33:47 -0400925
bigbiffce8f83c2015-12-12 18:30:21 -0500926 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, part_settings.Backup_Folder);
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500927 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
928 if (Backup_Name == gui_lookup("curr_date", "(Current Date)")) {
929 Backup_Name = TWFunc::Get_Current_Date();
930 } else if (Backup_Name == gui_lookup("auto_generate", "(Auto Generate)") || Backup_Name == "0" || Backup_Name.empty()) {
Dees Troyb21cc642013-09-10 17:36:41 +0000931 TWFunc::Auto_Generate_Backup_Name();
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500932 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Dees_Troy43d8b002012-09-17 16:00:01 -0400933 }
bigbiffce8f83c2015-12-12 18:30:21 -0500934
Ethan Yonkerdcf2b672016-09-13 14:41:53 -0500935 LOGINFO("Backup Name is: '%s'\n", Backup_Name.c_str());
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500936 part_settings.Backup_Folder = part_settings.Backup_Folder + "/" + Backup_Name;
bigbiffce8f83c2015-12-12 18:30:21 -0500937
Ethan Yonkere080c1f2016-09-19 13:50:25 -0500938 LOGINFO("Backup_Folder is: '%s'\n", part_settings.Backup_Folder.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -0400939
Dees_Troy2673cec2013-04-02 20:22:16 +0000940 LOGINFO("Calculating backup details...\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500941 DataManager::GetValue("tw_backup_list", Backup_List);
bigbiff7ba75002020-04-11 20:47:09 -0400942 LOGINFO("Backup_List: %s\n", Backup_List.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -0500943 if (!Backup_List.empty()) {
944 end_pos = Backup_List.find(";", start_pos);
945 while (end_pos != string::npos && start_pos < Backup_List.size()) {
946 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiff7ba75002020-04-11 20:47:09 -0400947 LOGINFO("backup_path: %s\n", backup_path.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -0500948 part_settings.Part = Find_Partition_By_Path(backup_path);
949 if (part_settings.Part != NULL) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500950 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500951 if (part_settings.Part->Backup_Method == BM_FILES)
952 part_settings.file_bytes += part_settings.Part->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500953 else
bigbiffce8f83c2015-12-12 18:30:21 -0500954 part_settings.img_bytes += part_settings.Part->Backup_Size;
955 if (part_settings.Part->Has_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500956 std::vector<TWPartition*>::iterator subpart;
957
958 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiffce8f83c2015-12-12 18:30:21 -0500959 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 -0500960 partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -0500961 if ((*subpart)->Backup_Method == BM_FILES)
962 part_settings.file_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500963 else
bigbiffce8f83c2015-12-12 18:30:21 -0500964 part_settings.img_bytes += (*subpart)->Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -0500965 }
966 }
Dees_Troy8170a922012-09-18 15:40:25 -0400967 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500968 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500969 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 -0400970 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500971 start_pos = end_pos + 1;
972 end_pos = Backup_List.find(";", start_pos);
Dees_Troy43d8b002012-09-17 16:00:01 -0400973 }
974 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400975
976 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500977 gui_msg("no_partition_selected=No partitions selected for backup.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400978 return false;
979 }
bigbiffce8f83c2015-12-12 18:30:21 -0500980 if (adbbackup) {
981 if (twadbbu::Write_ADB_Stream_Header(partition_count) == false) {
982 return false;
983 }
984 }
985 total_bytes = part_settings.file_bytes + part_settings.img_bytes;
Ethan Yonker472f5062016-02-25 13:47:30 -0600986 ProgressTracking progress(total_bytes);
bigbiffce8f83c2015-12-12 18:30:21 -0500987 part_settings.progress = &progress;
988
Ethan Yonker74db1572015-10-28 12:44:49 -0500989 gui_msg(Msg("total_partitions_backup= * Total number of partitions to back up: {1}")(partition_count));
990 gui_msg(Msg("total_backup_size= * Total size of all data: {1}MB")(total_bytes / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400991 storage = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
992 if (storage != NULL) {
993 free_space = storage->Free;
Ethan Yonker74db1572015-10-28 12:44:49 -0500994 gui_msg(Msg("available_space= * Available space: {1}MB")(free_space / 1024 / 1024));
Dees_Troy43d8b002012-09-17 16:00:01 -0400995 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500996 gui_err("unable_locate_storage=Unable to locate storage device.");
Dees_Troy43d8b002012-09-17 16:00:01 -0400997 return false;
998 }
bigbiffbf1d6722015-02-14 16:25:59 -0500999
Matt Mowerbfccfb82016-04-25 23:22:31 -05001000 DataManager::GetValue(TW_DISABLE_FREE_SPACE_VAR, disable_free_space_check);
bigbiffce8f83c2015-12-12 18:30:21 -05001001
1002 if (adbbackup)
1003 disable_free_space_check = true;
1004
bigbiffbf1d6722015-02-14 16:25:59 -05001005 if (!disable_free_space_check) {
1006 if (free_space - (32 * 1024 * 1024) < total_bytes) {
1007 // We require an extra 32MB just in case
Ethan Yonker74db1572015-10-28 12:44:49 -05001008 gui_err("no_space=Not enough free space on storage.");
bigbiffbf1d6722015-02-14 16:25:59 -05001009 return false;
1010 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001011 }
bigbiffce8f83c2015-12-12 18:30:21 -05001012 part_settings.img_bytes_remaining = part_settings.img_bytes;
1013 part_settings.file_bytes_remaining = part_settings.file_bytes;
Dees_Troy43d8b002012-09-17 16:00:01 -04001014
Ethan Yonker74db1572015-10-28 12:44:49 -05001015 gui_msg("backup_started=[BACKUP STARTED]");
bigbiff bigbiffcdd97c72019-03-29 19:12:33 -04001016
1017 int is_decrypted = 0;
1018 int is_encrypted = 0;
1019
1020 DataManager::GetValue(TW_IS_DECRYPTED, is_decrypted);
1021 DataManager::GetValue(TW_IS_ENCRYPTED, is_encrypted);
1022 if (!adbbackup || (!is_encrypted || (is_encrypted && is_decrypted))) {
1023 gui_msg(Msg("backup_folder= * Backup Folder: {1}")(part_settings.Backup_Folder));
1024 if (!TWFunc::Recursive_Mkdir(part_settings.Backup_Folder)) {
1025 gui_err("fail_backup_folder=Failed to make backup folder.");
1026 return false;
1027 }
Dees_Troyd4b22b02013-01-18 17:17:58 +00001028 }
1029
Dees_Troy2673cec2013-04-02 20:22:16 +00001030 DataManager::SetProgress(0.0);
Dees_Troy093b7642012-09-21 15:59:38 -04001031
Dees_Troya13d74f2013-03-24 08:54:55 -05001032 start_pos = 0;
1033 end_pos = Backup_List.find(";", start_pos);
1034 while (end_pos != string::npos && start_pos < Backup_List.size()) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001035 if (stop_backup.get_value() != 0)
1036 return -1;
Dees_Troya13d74f2013-03-24 08:54:55 -05001037 backup_path = Backup_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001038 part_settings.Part = Find_Partition_By_Path(backup_path);
1039 if (part_settings.Part != NULL) {
1040 if (!Backup_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001041 return false;
1042 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001043 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 -05001044 }
1045 start_pos = end_pos + 1;
1046 end_pos = Backup_List.find(";", start_pos);
1047 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001048
1049 // Average BPS
bigbiffce8f83c2015-12-12 18:30:21 -05001050 if (part_settings.img_time == 0)
1051 part_settings.img_time = 1;
1052 if (part_settings.file_time == 0)
1053 part_settings.file_time = 1;
1054 int img_bps = (int)part_settings.img_bytes / (int)part_settings.img_time;
1055 unsigned long long file_bps = part_settings.file_bytes / (int)part_settings.file_time;
Dees_Troy43d8b002012-09-17 16:00:01 -04001056
bigbiffce8f83c2015-12-12 18:30:21 -05001057 if (part_settings.file_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001058 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 -05001059 if (part_settings.img_bytes != 0)
Ethan Yonker472f5062016-02-25 13:47:30 -06001060 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 -04001061
1062 time(&total_stop);
1063 int total_time = (int) difftime(total_stop, total_start);
bigbiffce8f83c2015-12-12 18:30:21 -05001064
1065 uint64_t actual_backup_size;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001066 if (!adbbackup) {
1067 TWExclude twe;
1068 actual_backup_size = twe.Get_Folder_Size(part_settings.Backup_Folder);
1069 } else
bigbiffce8f83c2015-12-12 18:30:21 -05001070 actual_backup_size = part_settings.file_bytes + part_settings.img_bytes;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001071 actual_backup_size /= (1024LLU * 1024LLU);
Dees_Troy43d8b002012-09-17 16:00:01 -04001072
bigbiffce8f83c2015-12-12 18:30:21 -05001073 int prev_img_bps = 0, use_compression = 0;
1074 unsigned long long prev_file_bps = 0;
Matt Mower173cdb92016-12-31 02:49:19 -06001075 DataManager::GetValue(TW_BACKUP_AVG_IMG_RATE, prev_img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001076 img_bps += (prev_img_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001077 img_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001078
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001079 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy093b7642012-09-21 15:59:38 -04001080 if (use_compression)
1081 DataManager::GetValue(TW_BACKUP_AVG_FILE_COMP_RATE, prev_file_bps);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001082 else
Dees_Troy093b7642012-09-21 15:59:38 -04001083 DataManager::GetValue(TW_BACKUP_AVG_FILE_RATE, prev_file_bps);
1084 file_bps += (prev_file_bps * 4);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001085 file_bps /= 5;
Dees_Troy093b7642012-09-21 15:59:38 -04001086
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001087 DataManager::SetValue(TW_BACKUP_AVG_IMG_RATE, img_bps);
Dees_Troy093b7642012-09-21 15:59:38 -04001088 if (use_compression)
1089 DataManager::SetValue(TW_BACKUP_AVG_FILE_COMP_RATE, file_bps);
1090 else
1091 DataManager::SetValue(TW_BACKUP_AVG_FILE_RATE, file_bps);
1092
Ethan Yonker74db1572015-10-28 12:44:49 -05001093 gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size));
Dees_Troy43d8b002012-09-17 16:00:01 -04001094 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001095 UnMount_Main_Partitions();
Ethan Yonker56db1c42015-12-20 22:49:00 -06001096 gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001097 string backup_log = part_settings.Backup_Folder + "/recovery.log";
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001098 TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001099 tw_set_default_metadata(backup_log.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05001100
1101 if (part_settings.adbbackup) {
1102 if (twadbbu::Write_ADB_Stream_Trailer() == false) {
1103 return false;
1104 }
1105 }
1106 part_settings.adbbackup = false;
1107 DataManager::SetValue("tw_enable_adb_backup", 0);
1108
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001109 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001110}
1111
bigbiffce8f83c2015-12-12 18:30:21 -05001112bool TWPartitionManager::Restore_Partition(PartitionSettings *part_settings) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001113 time_t Start, Stop;
bigbiffce8f83c2015-12-12 18:30:21 -05001114
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001115 if (part_settings->adbbackup) {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001116 std::string partName = part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win";
1117 LOGINFO("setting backup name: %s\n", partName.c_str());
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04001118 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
1119 }
1120
Tom Hite5a926722014-09-15 01:31:03 +00001121 TWFunc::SetPerformanceMode(true);
bigbiffce8f83c2015-12-12 18:30:21 -05001122
Dees_Troy4a2a1262012-09-18 09:33:47 -04001123 time(&Start);
Ethan Yonker472f5062016-02-25 13:47:30 -06001124
bigbiffce8f83c2015-12-12 18:30:21 -05001125 if (!part_settings->Part->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001126 TWFunc::SetPerformanceMode(false);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001127 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001128 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001129 if (part_settings->Part->Has_SubPartition && !part_settings->adbbackup) {
Dees_Troy8170a922012-09-18 15:40:25 -04001130 std::vector<TWPartition*>::iterator subpart;
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001131 TWPartition *parentPart = part_settings->Part;
Dees_Troy8170a922012-09-18 15:40:25 -04001132
1133 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001134 part_settings->Part = *subpart;
1135 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
1136 part_settings->Part = (*subpart);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001137 part_settings->Part->Set_Backup_FileName(part_settings->Part->Backup_Name + "." + part_settings->Part->Current_File_System + ".win");
bigbiffce8f83c2015-12-12 18:30:21 -05001138 if (!(*subpart)->Restore(part_settings)) {
Tom Hite5a926722014-09-15 01:31:03 +00001139 TWFunc::SetPerformanceMode(false);
Dees_Troy8170a922012-09-18 15:40:25 -04001140 return false;
Tom Hite5a926722014-09-15 01:31:03 +00001141 }
Dees_Troy8170a922012-09-18 15:40:25 -04001142 }
1143 }
1144 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001145 time(&Stop);
Tom Hite5a926722014-09-15 01:31:03 +00001146 TWFunc::SetPerformanceMode(false);
bigbiffce8f83c2015-12-12 18:30:21 -05001147 gui_msg(Msg("restore_part_done=[{1} done ({2} seconds)]")(part_settings->Part->Backup_Display_Name)((int)difftime(Stop, Start)));
1148
Dees_Troy4a2a1262012-09-18 09:33:47 -04001149 return true;
1150}
1151
Ethan Yonker472f5062016-02-25 13:47:30 -06001152int TWPartitionManager::Run_Restore(const string& Restore_Name) {
bigbiffce8f83c2015-12-12 18:30:21 -05001153 PartitionSettings part_settings;
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001154 int check_digest;
bigbiffce8f83c2015-12-12 18:30:21 -05001155
Dees_Troy4a2a1262012-09-18 09:33:47 -04001156 time_t rStart, rStop;
1157 time(&rStart);
Dees_Troya13d74f2013-03-24 08:54:55 -05001158 string Restore_List, restore_path;
1159 size_t start_pos = 0, end_pos;
bigbiffce8f83c2015-12-12 18:30:21 -05001160
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001161 part_settings.Backup_Folder = Restore_Name;
bigbiffce8f83c2015-12-12 18:30:21 -05001162 part_settings.Part = NULL;
1163 part_settings.partition_count = 0;
1164 part_settings.total_restore_size = 0;
1165 part_settings.adbbackup = false;
1166 part_settings.PM_Method = PM_RESTORE;
Dees_Troy43d8b002012-09-17 16:00:01 -04001167
Ethan Yonker74db1572015-10-28 12:44:49 -05001168 gui_msg("restore_started=[RESTORE STARTED]");
1169 gui_msg(Msg("restore_folder=Restore folder: '{1}'")(Restore_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04001170
Dees_Troy4a2a1262012-09-18 09:33:47 -04001171 if (!Mount_Current_Storage(true))
1172 return false;
1173
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001174 DataManager::GetValue(TW_SKIP_DIGEST_CHECK_VAR, check_digest);
1175 if (check_digest > 0) {
1176 // Check Digest files first before restoring to ensure that all of them match before starting a restore
1177 TWFunc::GUI_Operation_Text(TW_VERIFY_DIGEST_TEXT, gui_parse_text("{@verifying_digest}"));
1178 gui_msg("verifying_digest=Verifying Digest");
Dees_Troya13d74f2013-03-24 08:54:55 -05001179 } else {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001180 gui_msg("skip_digest=Skipping Digest check based on user setting.");
Dees_Troya13d74f2013-03-24 08:54:55 -05001181 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001182 gui_msg("calc_restore=Calculating restore details...");
Dees_Troya13d74f2013-03-24 08:54:55 -05001183 DataManager::GetValue("tw_restore_selected", Restore_List);
bigbiffce8f83c2015-12-12 18:30:21 -05001184
Dees_Troya13d74f2013-03-24 08:54:55 -05001185 if (!Restore_List.empty()) {
1186 end_pos = Restore_List.find(";", start_pos);
1187 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1188 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001189 part_settings.Part = Find_Partition_By_Path(restore_path);
1190 if (part_settings.Part != NULL) {
bigbiffce8f83c2015-12-12 18:30:21 -05001191 if (part_settings.Part->Mount_Read_Only) {
1192 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 -05001193 return false;
1194 }
bigbiffce8f83c2015-12-12 18:30:21 -05001195
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001196 string Full_Filename = part_settings.Backup_Folder + "/" + part_settings.Part->Backup_FileName;
1197
1198 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001199 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001200 part_settings.partition_count++;
1201 part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings);
1202 if (part_settings.Part->Has_SubPartition) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001203 TWPartition *parentPart = part_settings.Part;
Dees_Troya13d74f2013-03-24 08:54:55 -05001204 std::vector<TWPartition*>::iterator subpart;
1205
1206 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
bigbiff bigbiff8fd4b092016-08-30 20:48:53 -04001207 part_settings.Part = *subpart;
1208 if ((*subpart)->Is_SubPartition && (*subpart)->SubPartition_Of == parentPart->Mount_Point) {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -04001209 if (check_digest > 0 && !twrpDigestDriver::Check_Digest(Full_Filename))
Dees_Troya13d74f2013-03-24 08:54:55 -05001210 return false;
bigbiffce8f83c2015-12-12 18:30:21 -05001211 part_settings.total_restore_size += (*subpart)->Get_Restore_Size(&part_settings);
Dees_Troya13d74f2013-03-24 08:54:55 -05001212 }
1213 }
1214 }
1215 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001216 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001217 }
1218 start_pos = end_pos + 1;
1219 end_pos = Restore_List.find(";", start_pos);
Dees_Troy4a2a1262012-09-18 09:33:47 -04001220 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001221 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001222
bigbiffce8f83c2015-12-12 18:30:21 -05001223 if (part_settings.partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001224 gui_err("no_part_restore=No partitions selected for restore.");
Dees_Troy4a2a1262012-09-18 09:33:47 -04001225 return false;
1226 }
1227
bigbiffce8f83c2015-12-12 18:30:21 -05001228 gui_msg(Msg("restore_part_count=Restoring {1} partitions...")(part_settings.partition_count));
1229 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 +00001230 DataManager::SetProgress(0.0);
bigbiffce8f83c2015-12-12 18:30:21 -05001231 ProgressTracking progress(part_settings.total_restore_size);
1232 part_settings.progress = &progress;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001233
Dees_Troya13d74f2013-03-24 08:54:55 -05001234 start_pos = 0;
1235 if (!Restore_List.empty()) {
1236 end_pos = Restore_List.find(";", start_pos);
1237 while (end_pos != string::npos && start_pos < Restore_List.size()) {
1238 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiffce8f83c2015-12-12 18:30:21 -05001239
1240 part_settings.Part = Find_Partition_By_Path(restore_path);
1241 if (part_settings.Part != NULL) {
1242 part_settings.partition_count++;
bigbiffce8f83c2015-12-12 18:30:21 -05001243 if (!Restore_Partition(&part_settings))
Dees_Troya13d74f2013-03-24 08:54:55 -05001244 return false;
1245 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001246 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05001247 }
1248 start_pos = end_pos + 1;
1249 end_pos = Restore_List.find(";", start_pos);
1250 }
1251 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001252 TWFunc::GUI_Operation_Text(TW_UPDATE_SYSTEM_DETAILS_TEXT, gui_parse_text("{@updating_system_details}"));
Captain Throwback9d6feb52018-07-27 10:05:24 -04001253 UnMount_By_Path(Get_Android_Root_Path(), false);
Dees_Troy43d8b002012-09-17 16:00:01 -04001254 Update_System_Details();
Dees_Troyd0384ef2012-10-12 12:15:42 -04001255 UnMount_Main_Partitions();
Dees_Troy4a2a1262012-09-18 09:33:47 -04001256 time(&rStop);
Matt Mower3c366972015-12-25 19:28:31 -06001257 gui_msg(Msg(msg::kHighlight, "restore_completed=[RESTORE COMPLETED IN {1} SECONDS]")((int)difftime(rStop,rStart)));
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001258 DataManager::SetValue("tw_file_progress", "");
bigbiffce8f83c2015-12-12 18:30:21 -05001259
Dees_Troy63c8df72012-09-10 14:02:05 -04001260 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001261}
1262
1263void TWPartitionManager::Set_Restore_Files(string Restore_Name) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001264 // Start with the default values
Dees_Troya13d74f2013-03-24 08:54:55 -05001265 string Restore_List;
Dees_Troy83bd4832013-05-04 12:39:56 +00001266 bool get_date = true, check_encryption = true;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001267 bool adbbackup = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001268
1269 DataManager::SetValue("tw_restore_encrypted", 0);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001270 if (twadbbu::Check_ADB_Backup_File(Restore_Name)) {
1271 vector<string> adb_files;
1272 adb_files = twadbbu::Get_ADB_Backup_Files(Restore_Name);
1273 for (unsigned int i = 0; i < adb_files.size(); ++i) {
1274 string adb_restore_file = adb_files.at(i);
1275 std::size_t pos = adb_restore_file.find_first_of(".");
1276 std::string path = "/" + adb_restore_file.substr(0, pos);
1277 Restore_List = path + ";";
1278 TWPartition* Part = Find_Partition_By_Path(path);
1279 Part->Backup_FileName = TWFunc::Get_Filename(adb_restore_file);
1280 adbbackup = true;
1281 }
1282 DataManager::SetValue("tw_enable_adb_backup", 1);
Dees_Troy63c8df72012-09-10 14:02:05 -04001283 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001284 else {
1285 DIR* d;
1286 d = opendir(Restore_Name.c_str());
1287 if (d == NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001288 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001289 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Name)(strerror(errno)));
1290 return;
Dees_Troy63c8df72012-09-10 14:02:05 -04001291 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001292
1293 struct dirent* de;
1294 while ((de = readdir(d)) != NULL)
Dees_Troy63c8df72012-09-10 14:02:05 -04001295 {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001296 // Strip off three components
1297 char str[256];
1298 char* label;
1299 char* fstype = NULL;
1300 char* extn = NULL;
1301 char* ptr;
Dees_Troy63c8df72012-09-10 14:02:05 -04001302
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001303 strcpy(str, de->d_name);
1304 if (strlen(str) <= 2)
1305 continue;
Dees_Troy83bd4832013-05-04 12:39:56 +00001306
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001307 if (get_date) {
1308 char file_path[255];
1309 struct stat st;
1310
1311 strcpy(file_path, Restore_Name.c_str());
1312 strcat(file_path, "/");
1313 strcat(file_path, str);
1314 stat(file_path, &st);
1315 string backup_date = ctime((const time_t*)(&st.st_mtime));
1316 DataManager::SetValue(TW_RESTORE_FILE_DATE, backup_date);
1317 get_date = false;
Dees_Troy83bd4832013-05-04 12:39:56 +00001318 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001319
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001320 label = str;
1321 ptr = label;
1322 while (*ptr && *ptr != '.') ptr++;
1323 if (*ptr == '.')
1324 {
1325 *ptr = 0x00;
1326 ptr++;
1327 fstype = ptr;
1328 }
1329 while (*ptr && *ptr != '.') ptr++;
1330 if (*ptr == '.')
1331 {
1332 *ptr = 0x00;
1333 ptr++;
1334 extn = ptr;
1335 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001336
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001337 if (fstype == NULL || extn == NULL || strcmp(fstype, "log") == 0) continue;
1338 int extnlength = strlen(extn);
1339 if (extnlength != 3 && extnlength != 6) continue;
1340 if (extnlength >= 3 && strncmp(extn, "win", 3) != 0) continue;
1341 //if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
Dees_Troy63c8df72012-09-10 14:02:05 -04001342
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001343 if (check_encryption) {
1344 string filename = Restore_Name + "/";
1345 filename += de->d_name;
1346 if (TWFunc::Get_File_Type(filename) == 2) {
1347 LOGINFO("'%s' is encrypted\n", filename.c_str());
1348 DataManager::SetValue("tw_restore_encrypted", 1);
1349 }
1350 }
1351 if (extnlength == 6 && strncmp(extn, "win000", 6) != 0) continue;
1352
1353 TWPartition* Part = Find_Partition_By_Path(label);
1354 if (Part == NULL)
1355 {
1356 gui_msg(Msg(msg::kError, "unable_locate_part_backup_name=Unable to locate partition by backup name: '{1}'")(label));
1357 continue;
1358 }
1359
1360 Part->Backup_FileName = de->d_name;
1361 if (strlen(extn) > 3) {
1362 Part->Backup_FileName.resize(Part->Backup_FileName.size() - strlen(extn) + 3);
1363 }
1364
dianlujitaob76a73a2020-04-30 20:33:20 +08001365 if (!Part->Is_SubPartition) {
1366 if (Part->Backup_Path == Get_Android_Root_Path())
1367 Restore_List += "/system;";
1368 else
1369 Restore_List += Part->Backup_Path + ";";
1370 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001371 }
1372 closedir(d);
Dees_Troy63c8df72012-09-10 14:02:05 -04001373 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001374
1375 if (adbbackup) {
1376 Restore_List = "ADB_Backup;";
1377 adbbackup = false;
1378 }
Dees_Troy63c8df72012-09-10 14:02:05 -04001379
Dees_Troya13d74f2013-03-24 08:54:55 -05001380 // Set the final value
1381 DataManager::SetValue("tw_restore_list", Restore_List);
1382 DataManager::SetValue("tw_restore_selected", Restore_List);
Dees_Troy51a0e822012-09-05 15:24:24 -04001383 return;
1384}
1385
1386int TWPartitionManager::Wipe_By_Path(string Path) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001387 std::vector<TWPartition*>::iterator iter;
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301388 std::vector < TWPartition * >::iterator iter1;
Dees_Troy63c8df72012-09-10 14:02:05 -04001389 int ret = false;
1390 bool found = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001391 string Local_Path = TWFunc::Get_Root_Path(Path);
Dees_Troy63c8df72012-09-10 14:02:05 -04001392
dianlujitaob76a73a2020-04-30 20:33:20 +08001393 if (Local_Path == "/system")
1394 Local_Path = Get_Android_Root_Path();
Dees_Troy63c8df72012-09-10 14:02:05 -04001395 // Iterate through all partitions
1396 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy657c3092012-09-10 20:32:10 -04001397 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
Mohd Farazfdd49bb2020-04-21 18:56:44 +05301398 // iterate through all partitions since some legacy devices uses other partitions as vendor causes issues while wiping
1399 (*iter)->Find_Actual_Block_Device();
1400 for (iter1 = Partitions.begin (); iter1 != Partitions.end (); iter1++)
1401 {
1402 (*iter1)->Find_Actual_Block_Device();
1403 if ((*iter)->Actual_Block_Device == (*iter1)->Actual_Block_Device && (*iter)->Mount_Point != (*iter1)->Mount_Point)
1404 (*iter1)->UnMount(false);
1405 }
Dees_Troye58d5262012-09-21 12:27:57 -04001406 if (Path == "/and-sec")
1407 ret = (*iter)->Wipe_AndSec();
1408 else
1409 ret = (*iter)->Wipe();
Dees_Troy63c8df72012-09-10 14:02:05 -04001410 found = true;
1411 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1412 (*iter)->Wipe();
1413 }
1414 }
1415 if (found) {
1416 return ret;
1417 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001418 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 -04001419 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001420}
1421
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001422int TWPartitionManager::Wipe_By_Path(string Path, string New_File_System) {
1423 std::vector<TWPartition*>::iterator iter;
1424 int ret = false;
1425 bool found = false;
1426 string Local_Path = TWFunc::Get_Root_Path(Path);
1427
1428 // Iterate through all partitions
1429 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1430 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1431 if (Path == "/and-sec")
1432 ret = (*iter)->Wipe_AndSec();
1433 else
1434 ret = (*iter)->Wipe(New_File_System);
1435 found = true;
1436 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1437 (*iter)->Wipe(New_File_System);
1438 }
1439 }
1440 if (found) {
1441 return ret;
1442 } else
Ethan Yonker74db1572015-10-28 12:44:49 -05001443 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 -05001444 return false;
1445}
1446
Dees_Troy51a0e822012-09-05 15:24:24 -04001447int TWPartitionManager::Factory_Reset(void) {
Dees_Troy63c8df72012-09-10 14:02:05 -04001448 std::vector<TWPartition*>::iterator iter;
1449 int ret = true;
1450
1451 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001452 if ((*iter)->Wipe_During_Factory_Reset && (*iter)->Is_Present) {
Ethan Yonker89583ef2015-08-26 09:01:59 -05001453#ifdef TW_OEM_BUILD
1454 if ((*iter)->Mount_Point == "/data") {
1455 if (!(*iter)->Wipe_Encryption())
1456 ret = false;
1457 } else {
1458#endif
1459 if (!(*iter)->Wipe())
1460 ret = false;
1461#ifdef TW_OEM_BUILD
1462 }
1463#endif
Dees_Troy094207a2012-09-26 12:00:39 -04001464 } else if ((*iter)->Has_Android_Secure) {
1465 if (!(*iter)->Wipe_AndSec())
1466 ret = false;
Dees_Troy63c8df72012-09-10 14:02:05 -04001467 }
1468 }
bigbiffad58e1b2020-07-06 20:24:34 -04001469 TWFunc::check_and_run_script("/system/bin/factoryreset.sh", "Factory Reset Script");
Dees_Troy63c8df72012-09-10 14:02:05 -04001470 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001471}
1472
Dees_Troy38bd7602012-09-14 13:33:53 -04001473int TWPartitionManager::Wipe_Dalvik_Cache(void) {
1474 struct stat st;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001475 vector <string> dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001476
1477 if (!Mount_By_Path("/data", true))
1478 return false;
1479
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001480 dir.push_back("/data/dalvik-cache");
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001481
bigbiff25d25b92020-06-19 16:07:38 -04001482 std::string cacheDir = TWFunc::get_log_dir();
1483 if (cacheDir == CACHE_LOGS_DIR) {
1484 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
1485 LOGINFO("Unable to mount %s for wiping cache.\n", CACHE_LOGS_DIR);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001486 }
1487 dir.push_back(cacheDir + "dalvik-cache");
1488 dir.push_back(cacheDir + "/dc");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001489 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001490
Dees_Troy38bd7602012-09-14 13:33:53 -04001491 TWPartition* sdext = Find_Partition_By_Path("/sd-ext");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001492 if (sdext && sdext->Is_Present && sdext->Mount(false))
1493 {
1494 if (stat("/sd-ext/dalvik-cache", &st) == 0)
1495 {
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001496 dir.push_back("/sd-ext/dalvik-cache");
1497 }
1498 }
1499
bigbiff25d25b92020-06-19 16:07:38 -04001500 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001501 gui_msg("wiping_cache_dalvik=Wiping Dalvik Cache Directories...");
1502 } else {
1503 gui_msg("wiping_dalvik=Wiping Dalvik Directory...");
1504 }
Ethan Yonkerff2b7882016-12-10 09:04:41 -06001505 for (unsigned i = 0; i < dir.size(); ++i) {
1506 if (stat(dir.at(i).c_str(), &st) == 0) {
1507 TWFunc::removeDir(dir.at(i), false);
1508 gui_msg(Msg("cleaned=Cleaned: {1}...")(dir.at(i)));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001509 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001510 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001511
bigbiff25d25b92020-06-19 16:07:38 -04001512 if (cacheDir == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001513 gui_msg("cache_dalvik_done=-- Dalvik Cache Directories Wipe Complete!");
1514 } else {
1515 gui_msg("dalvik_done=-- Dalvik Directory Wipe Complete!");
1516 }
1517
Dees_Troy38bd7602012-09-14 13:33:53 -04001518 return true;
1519}
1520
1521int TWPartitionManager::Wipe_Rotate_Data(void) {
1522 if (!Mount_By_Path("/data", true))
1523 return false;
1524
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001525 unlink("/data/misc/akmd*");
1526 unlink("/data/misc/rild*");
Dees_Troy2673cec2013-04-02 20:22:16 +00001527 gui_print("Rotation data wiped.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001528 return true;
1529}
1530
1531int TWPartitionManager::Wipe_Battery_Stats(void) {
1532 struct stat st;
1533
1534 if (!Mount_By_Path("/data", true))
1535 return false;
1536
1537 if (0 != stat("/data/system/batterystats.bin", &st)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001538 gui_print("No Battery Stats Found. No Need To Wipe.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001539 } else {
1540 remove("/data/system/batterystats.bin");
Dees_Troy2673cec2013-04-02 20:22:16 +00001541 gui_print("Cleared battery stats.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001542 }
1543 return true;
1544}
1545
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001546int TWPartitionManager::Wipe_Android_Secure(void) {
1547 std::vector<TWPartition*>::iterator iter;
1548 int ret = false;
1549 bool found = false;
1550
1551 // Iterate through all partitions
1552 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1553 if ((*iter)->Has_Android_Secure) {
1554 ret = (*iter)->Wipe_AndSec();
1555 found = true;
1556 }
1557 }
1558 if (found) {
1559 return ret;
1560 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001561 gui_err("no_andsec=No android secure partitions found.");
Dees_Troy2ff5a8d2012-09-26 14:53:02 -04001562 }
1563 return false;
1564}
1565
Dees_Troy38bd7602012-09-14 13:33:53 -04001566int TWPartitionManager::Format_Data(void) {
1567 TWPartition* dat = Find_Partition_By_Path("/data");
1568
1569 if (dat != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001570 return dat->Wipe_Encryption();
1571 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001572 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001573 return false;
1574 }
1575 return false;
1576}
1577
1578int TWPartitionManager::Wipe_Media_From_Data(void) {
1579 TWPartition* dat = Find_Partition_By_Path("/data");
1580
1581 if (dat != NULL) {
1582 if (!dat->Has_Data_Media) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001583 LOGERR("This device does not have /data/media\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001584 return false;
1585 }
1586 if (!dat->Mount(true))
1587 return false;
1588
Ethan Yonker74db1572015-10-28 12:44:49 -05001589 gui_msg("wiping_datamedia=Wiping internal storage -- /data/media...");
Ethan Yonker726a0202014-12-16 20:01:38 -06001590 Remove_MTP_Storage(dat->MTP_Storage_ID);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001591 TWFunc::removeDir("/data/media", false);
xiaolu9416f4f2015-06-04 08:22:23 +08001592 dat->Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001593 Add_MTP_Storage(dat->MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001594 return true;
1595 } else {
Matt Mower3c366972015-12-25 19:28:31 -06001596 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/data"));
Dees_Troy38bd7602012-09-14 13:33:53 -04001597 return false;
1598 }
1599 return false;
1600}
1601
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001602int TWPartitionManager::Repair_By_Path(string Path, bool Display_Error) {
1603 std::vector<TWPartition*>::iterator iter;
1604 int ret = false;
1605 bool found = false;
1606 string Local_Path = TWFunc::Get_Root_Path(Path);
1607
1608 if (Local_Path == "/tmp" || Local_Path == "/")
1609 return true;
1610
1611 // Iterate through all partitions
1612 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1613 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1614 ret = (*iter)->Repair();
1615 found = true;
1616 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1617 (*iter)->Repair();
1618 }
1619 }
1620 if (found) {
1621 return ret;
1622 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001623 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 -05001624 } else {
1625 LOGINFO("Repair: Unable to find partition for path '%s'\n", Local_Path.c_str());
1626 }
1627 return false;
1628}
1629
Ethan Yonkera2719152015-05-28 09:44:41 -05001630int TWPartitionManager::Resize_By_Path(string Path, bool Display_Error) {
1631 std::vector<TWPartition*>::iterator iter;
1632 int ret = false;
1633 bool found = false;
1634 string Local_Path = TWFunc::Get_Root_Path(Path);
1635
1636 if (Local_Path == "/tmp" || Local_Path == "/")
1637 return true;
1638
1639 // Iterate through all partitions
1640 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1641 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
1642 ret = (*iter)->Resize();
1643 found = true;
1644 } else if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Local_Path) {
1645 (*iter)->Resize();
1646 }
1647 }
1648 if (found) {
1649 return ret;
1650 } else if (Display_Error) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001651 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 -05001652 } else {
1653 LOGINFO("Resize: Unable to find partition for path '%s'\n", Local_Path.c_str());
1654 }
1655 return false;
1656}
1657
Dees_Troy51a0e822012-09-05 15:24:24 -04001658void TWPartitionManager::Update_System_Details(void) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001659 std::vector<TWPartition*>::iterator iter;
Dees_Troy51127312012-09-08 13:08:49 -04001660 int data_size = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -04001661
Ethan Yonker74db1572015-10-28 12:44:49 -05001662 gui_msg("update_part_details=Updating partition details...");
Dees_Troy5bf43922012-09-07 16:07:55 -04001663 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker1b190162016-12-05 15:25:19 -06001664 (*iter)->Update_Size(true);
Dees_Troy51127312012-09-08 13:08:49 -04001665 if ((*iter)->Can_Be_Mounted) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001666 if ((*iter)->Mount_Point == Get_Android_Root_Path()) {
Dees_Troy51127312012-09-08 13:08:49 -04001667 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1668 DataManager::SetValue(TW_BACKUP_SYSTEM_SIZE, backup_display_size);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001669 TWFunc::Is_TWRP_App_In_System();
Dees_Troy51127312012-09-08 13:08:49 -04001670 } else if ((*iter)->Mount_Point == "/data" || (*iter)->Mount_Point == "/datadata") {
1671 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
1672 } else if ((*iter)->Mount_Point == "/cache") {
1673 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1674 DataManager::SetValue(TW_BACKUP_CACHE_SIZE, backup_display_size);
1675 } else if ((*iter)->Mount_Point == "/sd-ext") {
1676 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1677 DataManager::SetValue(TW_BACKUP_SDEXT_SIZE, backup_display_size);
1678 if ((*iter)->Backup_Size == 0) {
1679 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 0);
1680 DataManager::SetValue(TW_BACKUP_SDEXT_VAR, 0);
1681 } else
1682 DataManager::SetValue(TW_HAS_SDEXT_PARTITION, 1);
Dees_Troye58d5262012-09-21 12:27:57 -04001683 } else if ((*iter)->Has_Android_Secure) {
Dees_Troy8170a922012-09-18 15:40:25 -04001684 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troye58d5262012-09-21 12:27:57 -04001685 DataManager::SetValue(TW_BACKUP_ANDSEC_SIZE, backup_display_size);
Dees_Troy8170a922012-09-18 15:40:25 -04001686 if ((*iter)->Backup_Size == 0) {
1687 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 0);
1688 DataManager::SetValue(TW_BACKUP_ANDSEC_VAR, 0);
1689 } else
1690 DataManager::SetValue(TW_HAS_ANDROID_SECURE, 1);
Dees_Troy2c50e182012-09-26 20:05:28 -04001691 } else if ((*iter)->Mount_Point == "/boot") {
1692 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1693 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1694 if ((*iter)->Backup_Size == 0) {
1695 DataManager::SetValue("tw_has_boot_partition", 0);
1696 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1697 } else
1698 DataManager::SetValue("tw_has_boot_partition", 1);
Dees_Troy51127312012-09-08 13:08:49 -04001699 }
Dees_Troyaa9cc402012-10-13 12:14:05 -04001700 } else {
1701 // Handle unmountable partitions in case we reset defaults
1702 if ((*iter)->Mount_Point == "/boot") {
1703 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1704 DataManager::SetValue(TW_BACKUP_BOOT_SIZE, backup_display_size);
1705 if ((*iter)->Backup_Size == 0) {
1706 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 0);
1707 DataManager::SetValue(TW_BACKUP_BOOT_VAR, 0);
1708 } else
1709 DataManager::SetValue(TW_HAS_BOOT_PARTITION, 1);
1710 } else if ((*iter)->Mount_Point == "/recovery") {
1711 int backup_display_size = (int)((*iter)->Backup_Size / 1048576LLU);
1712 DataManager::SetValue(TW_BACKUP_RECOVERY_SIZE, backup_display_size);
1713 if ((*iter)->Backup_Size == 0) {
1714 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 0);
1715 DataManager::SetValue(TW_BACKUP_RECOVERY_VAR, 0);
1716 } else
1717 DataManager::SetValue(TW_HAS_RECOVERY_PARTITION, 1);
Gary Peck82599a82012-11-21 16:23:12 -08001718 } else if ((*iter)->Mount_Point == "/data") {
1719 data_size += (int)((*iter)->Backup_Size / 1048576LLU);
Dees_Troyaa9cc402012-10-13 12:14:05 -04001720 }
Dees_Troy51127312012-09-08 13:08:49 -04001721 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001722 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001723 gui_msg("update_part_details_done=...done");
Dees_Troy51127312012-09-08 13:08:49 -04001724 DataManager::SetValue(TW_BACKUP_DATA_SIZE, data_size);
1725 string current_storage_path = DataManager::GetCurrentStoragePath();
1726 TWPartition* FreeStorage = Find_Partition_By_Path(current_storage_path);
Dees_Troy8170a922012-09-18 15:40:25 -04001727 if (FreeStorage != NULL) {
1728 // Attempt to mount storage
bigbiff25d25b92020-06-19 16:07:38 -04001729 if (!FreeStorage->Mount(false)) {
1730 gui_msg(Msg(msg::kWarning, "unable_to_mount_storage=Unable to mount storage"));
1731 DataManager::SetValue(TW_STORAGE_FREE_SIZE, 0);
1732 } else {
1733 DataManager::SetValue(TW_STORAGE_FREE_SIZE, (int)(FreeStorage->Free / 1048576LLU));
Dees_Troy8170a922012-09-18 15:40:25 -04001734 }
1735 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001736 LOGINFO("Unable to find storage partition '%s'.\n", current_storage_path.c_str());
Dees_Troy8170a922012-09-18 15:40:25 -04001737 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001738 if (!Write_Fstab())
Dees_Troy2673cec2013-04-02 20:22:16 +00001739 LOGERR("Error creating fstab\n");
Dees_Troy51a0e822012-09-05 15:24:24 -04001740 return;
1741}
1742
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001743void TWPartitionManager::Post_Decrypt(const string& Block_Device) {
1744 TWPartition* dat = Find_Partition_By_Path("/data");
bigbiffc2cb3852020-09-11 14:03:31 -04001745
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001746 if (dat != NULL) {
1747 DataManager::SetValue(TW_IS_DECRYPTED, 1);
1748 dat->Is_Decrypted = true;
1749 if (!Block_Device.empty()) {
1750 dat->Decrypted_Block_Device = Block_Device;
1751 gui_msg(Msg("decrypt_success_dev=Data successfully decrypted, new block device: '{1}'")(Block_Device));
1752 } else {
1753 gui_msg("decrypt_success_nodev=Data successfully decrypted");
1754 }
Noah Jacobson81d638d2019-04-28 00:10:07 -04001755 property_set("twrp.decrypt.done", "true");
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001756 dat->Setup_File_System(false);
Noah Jacobson81d638d2019-04-28 00:10:07 -04001757 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 -06001758
Noah Jacobson81d638d2019-04-28 00:10:07 -04001759 sleep(1); // Sleep for a bit so that the device will be ready
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001760 if (dat->Has_Data_Media && dat->Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
1761 dat->Storage_Path = "/data/media/0";
1762 dat->Symlink_Path = dat->Storage_Path;
1763 DataManager::SetValue("tw_storage_path", "/data/media/0");
1764 DataManager::SetValue("tw_settings_path", "/data/media/0");
1765 dat->UnMount(false);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001766 }
1767 Update_System_Details();
nkk71ffb02bd2017-06-04 23:12:16 +03001768 Output_Partition(dat);
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001769 UnMount_Main_Partitions();
1770 } else
1771 LOGERR("Unable to locate data partition.\n");
1772}
1773
Noah Jacobson81d638d2019-04-28 00:10:07 -04001774void TWPartitionManager::Parse_Users() {
1775#ifdef TW_INCLUDE_FBE
1776 char user_check_result[PROPERTY_VALUE_MAX];
1777 for (int userId = 0; userId <= 9999; userId++) {
1778 string prop = "twrp.user." + to_string(userId) + ".decrypt";
1779 property_get(prop.c_str(), user_check_result, "-1");
1780 if (strcmp(user_check_result, "-1") != 0) {
1781 if (userId < 0 || userId > 9999) {
1782 LOGINFO("Incorrect user id %d\n", userId);
1783 continue;
1784 }
1785 struct users_struct user;
1786 user.userId = to_string(userId);
1787
1788 // Attempt to get name of user. Fallback to user ID if this fails.
1789 char* userFile = PageManager::LoadFileToBuffer("/data/system/users/" + to_string(userId) + ".xml", NULL);
1790 if (userFile == NULL)
1791 user.userName = to_string(userId);
1792 else {
1793 xml_document<> *userXml = new xml_document<>();
1794 userXml->parse<0>(userFile);
1795 xml_node<>* userNode = userXml->first_node("user");
1796 if (userNode == nullptr) {
1797 user.userName = to_string(userId);
1798 } else {
1799 xml_node<>* nameNode = userNode->first_node("name");
1800 if (nameNode == nullptr)
1801 user.userName = to_string(userId);
1802 else {
1803 string userName = nameNode->value();
1804 user.userName = userName + " (" + to_string(userId) + ")";
1805 }
1806 }
1807 }
1808
1809 string filename;
1810 user.type = Get_Password_Type(userId, filename);
1811
1812 user.isDecrypted = false;
1813 if (strcmp(user_check_result, "1") == 0)
1814 user.isDecrypted = true;
1815 Users_List.push_back(user);
1816 }
1817 }
1818 Check_Users_Decryption_Status();
1819#endif
1820}
1821
1822std::vector<users_struct>* TWPartitionManager::Get_Users_List() {
1823 return &Users_List;
1824}
1825
1826void TWPartitionManager::Mark_User_Decrypted(int userID) {
1827#ifdef TW_INCLUDE_FBE
1828 std::vector<users_struct>::iterator iter;
1829 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1830 if (atoi((*iter).userId.c_str()) == userID) {
1831 (*iter).isDecrypted = true;
1832 string user_prop_decrypted = "twrp.user." + to_string(userID) + ".decrypt";
1833 property_set(user_prop_decrypted.c_str(), "1");
1834 break;
1835 }
1836 }
1837 Check_Users_Decryption_Status();
1838#endif
1839}
1840
1841void TWPartitionManager::Check_Users_Decryption_Status() {
1842#ifdef TW_INCLUDE_FBE
1843 int all_is_decrypted = 1;
1844 std::vector<users_struct>::iterator iter;
1845 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1846 if (!(*iter).isDecrypted) {
1847 LOGINFO("User %s is not decrypted.\n", (*iter).userId.c_str());
1848 all_is_decrypted = 0;
1849 break;
1850 }
1851 }
1852 if (all_is_decrypted == 1) {
1853 LOGINFO("All found users are decrypted.\n");
1854 DataManager::SetValue("tw_all_users_decrypted", "1");
1855 property_set("twrp.all.users.decrypted", "true");
1856 } else
1857 DataManager::SetValue("tw_all_users_decrypted", "0");
1858#endif
1859}
1860
1861int TWPartitionManager::Decrypt_Device(string Password, int user_id) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001862#ifdef TW_INCLUDE_CRYPTO
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001863 char crypto_state[PROPERTY_VALUE_MAX], crypto_blkdev[PROPERTY_VALUE_MAX];
Ethan Yonker253368a2014-11-25 15:00:52 -06001864 std::vector<TWPartition*>::iterator iter;
Dees_Troy5bf43922012-09-07 16:07:55 -04001865
Ethan Yonker253368a2014-11-25 15:00:52 -06001866 // Mount any partitions that need to be mounted for decrypt
1867 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1868 if ((*iter)->Mount_To_Decrypt) {
1869 (*iter)->Mount(true);
1870 }
a39552696ff55ce2013-01-08 16:14:56 +00001871 }
oshmouna82a7542018-04-10 17:45:55 +02001872 property_set("twrp.mount_to_decrypt", "1");
a39552696ff55ce2013-01-08 16:14:56 +00001873
Ethan Yonkera1de1492015-11-04 11:58:27 -06001874 property_get("ro.crypto.state", crypto_state, "error");
1875 if (strcmp(crypto_state, "error") == 0) {
Captain Throwback18aea272020-10-29 12:43:17 -04001876 Set_FDE_Encrypt_Status();
Ethan Yonkera1de1492015-11-04 11:58:27 -06001877 }
1878
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001879 if (DataManager::GetIntValue(TW_IS_FBE)) {
1880#ifdef TW_INCLUDE_FBE
1881 if (!Mount_By_Path("/data", true)) // /data has to be mounted for FBE
1882 return -1;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001883
1884 bool user_need_decrypt = false;
1885 std::vector<users_struct>::iterator iter;
1886 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1887 if (atoi((*iter).userId.c_str()) == user_id && !(*iter).isDecrypted) {
1888 user_need_decrypt = true;
1889 }
1890 }
1891 if (!user_need_decrypt) {
1892 LOGINFO("User %d does not require decryption\n", user_id);
1893 return 0;
1894 }
1895
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001896 int retry_count = 10;
1897 while (!TWFunc::Path_Exists("/data/system/users/gatekeeper.password.key") && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -04001898 usleep(2000); // A small sleep is needed after mounting /data to ensure reliable decrypt...maybe because of DE?
1899 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001900 if (Decrypt_User(user_id, Password)) {
Noah Jacobson81d638d2019-04-28 00:10:07 -04001901 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(user_id));
1902 Mark_User_Decrypted(user_id);
1903 if (user_id == 0) {
1904 // When decrypting user 0 also try all other users
1905 std::vector<users_struct>::iterator iter;
1906 for (iter = Users_List.begin(); iter != Users_List.end(); iter++) {
1907 if ((*iter).userId == "0" || (*iter).isDecrypted)
1908 continue;
1909
1910 int tmp_user_id = atoi((*iter).userId.c_str());
1911 gui_msg(Msg("decrypting_user_fbe=Attempting to decrypt FBE for user {1}...")(tmp_user_id));
1912 if (Decrypt_User(tmp_user_id, Password) ||
1913 (Password != "!" && Decrypt_User(tmp_user_id, "!"))) { // "!" means default password
1914 gui_msg(Msg("decrypt_user_success_fbe=User {1} Decrypted Successfully")(tmp_user_id));
1915 Mark_User_Decrypted(tmp_user_id);
1916 } else {
1917 gui_msg(Msg("decrypt_user_fail_fbe=Failed to decrypt user {1}")(tmp_user_id));
1918 }
1919 }
1920 Post_Decrypt("");
1921 }
1922
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001923 return 0;
Noah Jacobson81d638d2019-04-28 00:10:07 -04001924 } else {
1925 gui_msg(Msg(msg::kError, "decrypt_user_fail_fbe=Failed to decrypt user {1}")(user_id));
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001926 }
1927#else
1928 LOGERR("FBE support is not present\n");
1929#endif
1930 return -1;
1931 }
1932
Noah Jacobson81d638d2019-04-28 00:10:07 -04001933 char isdecrypteddata[PROPERTY_VALUE_MAX];
1934 property_get("twrp.decrypt.done", isdecrypteddata, "");
1935 if (strcmp(isdecrypteddata, "true") == 0) {
1936 LOGINFO("Data has no decryption required\n");
1937 return 0;
1938 }
1939
Ethan Yonkerddb63e22017-01-19 14:01:57 -06001940 int pwret = -1;
1941 pid_t pid = fork();
1942 if (pid < 0) {
1943 LOGERR("fork failed\n");
1944 return -1;
1945 } else if (pid == 0) {
1946 // Child process
1947 char cPassword[255];
1948 strcpy(cPassword, Password.c_str());
1949 int ret = cryptfs_check_passwd(cPassword);
1950 exit(ret);
1951 } else {
1952 // Parent
1953 int status;
1954 if (TWFunc::Wait_For_Child_Timeout(pid, &status, "Decrypt", 30))
1955 pwret = -1;
1956 else
1957 pwret = WEXITSTATUS(status) ? -1 : 0;
1958 }
a39552696ff55ce2013-01-08 16:14:56 +00001959
nkk7171c6c502017-01-05 23:55:05 +02001960#ifdef TW_CRYPTO_USE_SYSTEM_VOLD
1961 if (pwret != 0) {
1962 pwret = vold_decrypt(Password);
nkk717d1222a2017-11-06 17:27:21 +02001963 switch (pwret) {
1964 case VD_SUCCESS:
1965 break;
1966 case VD_ERR_MISSING_VDC:
1967 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vdc"));
1968 break;
1969 case VD_ERR_MISSING_VOLD:
1970 gui_msg(Msg(msg::kError, "decrypt_data_vold_os_missing=Missing files needed for vold decrypt: {1}")("/system/bin/vold"));
1971 break;
1972 }
nkk7171c6c502017-01-05 23:55:05 +02001973 }
1974#endif // TW_CRYPTO_USE_SYSTEM_VOLD
1975
Ethan Yonker253368a2014-11-25 15:00:52 -06001976 // Unmount any partitions that were needed for decrypt
1977 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
1978 if ((*iter)->Mount_To_Decrypt) {
1979 (*iter)->UnMount(false);
1980 }
1981 }
oshmouna82a7542018-04-10 17:45:55 +02001982 property_set("twrp.mount_to_decrypt", "0");
Ethan Yonker253368a2014-11-25 15:00:52 -06001983
a39552696ff55ce2013-01-08 16:14:56 +00001984 if (pwret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001985 gui_err("fail_decrypt=Failed to decrypt data.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001986 return -1;
1987 }
a39552696ff55ce2013-01-08 16:14:56 +00001988
Dees_Troy5bf43922012-09-07 16:07:55 -04001989 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
1990 if (strcmp(crypto_blkdev, "error") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001991 LOGERR("Error retrieving decrypted data block device.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001992 } else {
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001993 Post_Decrypt(crypto_blkdev);
Dees_Troy5bf43922012-09-07 16:07:55 -04001994 }
1995 return 0;
1996#else
Ethan Yonker74db1572015-10-28 12:44:49 -05001997 gui_err("no_crypto_support=No crypto support was compiled into this build.");
Dees_Troy5bf43922012-09-07 16:07:55 -04001998 return -1;
1999#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002000 return 1;
Dees_Troy51127312012-09-08 13:08:49 -04002001}
2002
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002003int TWPartitionManager::Fix_Contexts(void) {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002004 std::vector<TWPartition*>::iterator iter;
2005 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2006 if ((*iter)->Has_Data_Media) {
2007 if ((*iter)->Mount(true)) {
2008 if (fixContexts::fixDataMediaContexts((*iter)->Mount_Point) != 0)
2009 return -1;
2010 }
2011 }
2012 }
Dees_Troy1a650e62012-10-19 20:54:32 -04002013 UnMount_Main_Partitions();
Ethan Yonker74db1572015-10-28 12:44:49 -05002014 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -06002015 return 0;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002016}
2017
Ethan Yonker66a19492015-12-10 10:19:45 -06002018TWPartition* TWPartitionManager::Find_Next_Storage(string Path, bool Exclude_Data_Media) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002019 std::vector<TWPartition*>::iterator iter = Partitions.begin();
2020
2021 if (!Path.empty()) {
2022 string Search_Path = TWFunc::Get_Root_Path(Path);
2023 for (; iter != Partitions.end(); iter++) {
Matt Mower9a561dd2016-02-22 21:25:51 -06002024 if ((*iter)->Mount_Point == Search_Path) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002025 iter++;
2026 break;
2027 }
2028 }
2029 }
2030
2031 for (; iter != Partitions.end(); iter++) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002032 if (Exclude_Data_Media && (*iter)->Has_Data_Media) {
2033 // do nothing, do not return this type of partition
2034 } else if ((*iter)->Is_Storage && (*iter)->Is_Present) {
Ethan Yonker47360be2014-04-01 10:34:34 -05002035 return (*iter);
2036 }
2037 }
2038
2039 return NULL;
2040}
2041
Dees_Troyd21618c2012-10-14 18:48:49 -04002042int TWPartitionManager::Open_Lun_File(string Partition_Path, string Lun_File) {
Dees_Troyd21618c2012-10-14 18:48:49 -04002043 TWPartition* Part = Find_Partition_By_Path(Partition_Path);
2044
2045 if (Part == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002046 LOGINFO("Unable to locate '%s' for USB storage mode.", Partition_Path.c_str());
2047 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 -04002048 return false;
2049 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002050 LOGINFO("USB mount '%s', '%s' > '%s'\n", Partition_Path.c_str(), Part->Actual_Block_Device.c_str(), Lun_File.c_str());
2051 if (!Part->UnMount(true) || !Part->Is_Present)
Dees_Troyd21618c2012-10-14 18:48:49 -04002052 return false;
2053
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002054 if (TWFunc::write_to_file(Lun_File, Part->Actual_Block_Device)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002055 LOGERR("Unable to write to ums lunfile '%s': (%s)\n", Lun_File.c_str(), strerror(errno));
Dees_Troyd21618c2012-10-14 18:48:49 -04002056 return false;
2057 }
Dees_Troyd21618c2012-10-14 18:48:49 -04002058 return true;
2059}
2060
Dees_Troy8170a922012-09-18 15:40:25 -04002061int TWPartitionManager::usb_storage_enable(void) {
Dees_Troy8170a922012-09-18 15:40:25 -04002062 char lun_file[255];
Dees_Troyd21618c2012-10-14 18:48:49 -04002063 bool has_multiple_lun = false;
Dees_Troy8170a922012-09-18 15:40:25 -04002064
Ethan Yonker47360be2014-04-01 10:34:34 -05002065 string Lun_File_str = CUSTOM_LUN_FILE;
2066 size_t found = Lun_File_str.find("%");
2067 if (found != string::npos) {
2068 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
2069 if (TWFunc::Path_Exists(lun_file))
2070 has_multiple_lun = true;
2071 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002072 mtp_was_enabled = TWFunc::Toggle_MTP(false); // Must disable MTP for USB Storage
Ethan Yonker47360be2014-04-01 10:34:34 -05002073 if (!has_multiple_lun) {
2074 LOGINFO("Device doesn't have multiple lun files, mount current storage\n");
2075 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
2076 if (TWFunc::Get_Root_Path(DataManager::GetCurrentStoragePath()) == "/data") {
Ethan Yonker66a19492015-12-10 10:19:45 -06002077 TWPartition* Mount = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002078 if (Mount) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002079 if (!Open_Lun_File(Mount->Mount_Point, lun_file)) {
2080 goto error_handle;
2081 }
Ethan Yonker47360be2014-04-01 10:34:34 -05002082 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002083 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002084 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002085 }
2086 } else if (!Open_Lun_File(DataManager::GetCurrentStoragePath(), lun_file)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002087 goto error_handle;
Dees_Troy8170a922012-09-18 15:40:25 -04002088 }
Dees_Troy8170a922012-09-18 15:40:25 -04002089 } else {
Ethan Yonker47360be2014-04-01 10:34:34 -05002090 LOGINFO("Device has multiple lun files\n");
2091 TWPartition* Mount1;
2092 TWPartition* Mount2;
Dees_Troy8170a922012-09-18 15:40:25 -04002093 sprintf(lun_file, CUSTOM_LUN_FILE, 0);
Ethan Yonker66a19492015-12-10 10:19:45 -06002094 Mount1 = Find_Next_Storage("", true);
Ethan Yonker47360be2014-04-01 10:34:34 -05002095 if (Mount1) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002096 if (!Open_Lun_File(Mount1->Mount_Point, lun_file)) {
2097 goto error_handle;
2098 }
Matt Moweree717062014-04-26 01:46:46 -05002099 sprintf(lun_file, CUSTOM_LUN_FILE, 1);
Ethan Yonker66a19492015-12-10 10:19:45 -06002100 Mount2 = Find_Next_Storage(Mount1->Mount_Point, true);
Matt Mower1fdcdb72016-01-25 20:53:47 -06002101 if (Mount2 && Mount2->Mount_Point != Mount1->Mount_Point) {
Matt Moweree717062014-04-26 01:46:46 -05002102 Open_Lun_File(Mount2->Mount_Point, lun_file);
Ethan Yonker47360be2014-04-01 10:34:34 -05002103 }
2104 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002105 gui_err("unable_locate_storage=Unable to locate storage device.");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002106 goto error_handle;
Ethan Yonker47360be2014-04-01 10:34:34 -05002107 }
Dees_Troy8170a922012-09-18 15:40:25 -04002108 }
Matt Mowerb6ef4782014-11-06 02:24:36 -06002109 property_set("sys.storage.ums_enabled", "1");
HandyMenny37d42992014-10-26 22:15:59 +01002110 property_set("sys.usb.config", "mass_storage,adb");
Dees_Troy8170a922012-09-18 15:40:25 -04002111 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002112error_handle:
2113 if (mtp_was_enabled)
2114 if (!Enable_MTP())
2115 Disable_MTP();
2116 return false;
Dees_Troy8170a922012-09-18 15:40:25 -04002117}
2118
2119int TWPartitionManager::usb_storage_disable(void) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002120 int index, ret;
2121 char lun_file[255], ch[2] = {0, 0};
2122 string str = ch;
Dees_Troy8170a922012-09-18 15:40:25 -04002123
2124 for (index=0; index<2; index++) {
2125 sprintf(lun_file, CUSTOM_LUN_FILE, index);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002126 ret = TWFunc::write_to_file(lun_file, str);
Dees_Troy2673cec2013-04-02 20:22:16 +00002127 if (ret < 0) {
2128 break;
Dees_Troy8170a922012-09-18 15:40:25 -04002129 }
Dees_Troy8170a922012-09-18 15:40:25 -04002130 }
Dees_Troye58d5262012-09-21 12:27:57 -04002131 Mount_All_Storage();
2132 Update_System_Details();
Dees_Troycfd73ef2012-10-12 16:52:00 -04002133 UnMount_Main_Partitions();
Matt Mowerd9cb9062013-12-14 20:34:45 -06002134 property_set("sys.storage.ums_enabled", "0");
HandyMenny37d42992014-10-26 22:15:59 +01002135 property_set("sys.usb.config", "adb");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002136 if (mtp_was_enabled)
2137 if (!Enable_MTP())
2138 Disable_MTP();
Dees_Troy2673cec2013-04-02 20:22:16 +00002139 if (ret < 0 && index == 0) {
2140 LOGERR("Unable to write to ums lunfile '%s'.", lun_file);
2141 return false;
2142 } else {
2143 return true;
2144 }
Dees_Troy8170a922012-09-18 15:40:25 -04002145 return true;
Dees_Troy812660f2012-09-20 09:55:17 -04002146}
2147
2148void TWPartitionManager::Mount_All_Storage(void) {
2149 std::vector<TWPartition*>::iterator iter;
2150
2151 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2152 if ((*iter)->Is_Storage)
2153 (*iter)->Mount(false);
2154 }
Dees_Troy2c50e182012-09-26 20:05:28 -04002155}
Dees_Troy9350b8d2012-09-27 12:38:38 -04002156
Dees_Troyd0384ef2012-10-12 12:15:42 -04002157void TWPartitionManager::UnMount_Main_Partitions(void) {
2158 // Unmounts system and data if data is not data/media
2159 // Also unmounts boot if boot is mountable
Dees_Troy2673cec2013-04-02 20:22:16 +00002160 LOGINFO("Unmounting main partitions...\n");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002161
Mohd Faraze3948ec2020-08-14 01:40:59 +00002162 TWPartition *Partition = Find_Partition_By_Path ("/vendor");
Dees_Troyd0384ef2012-10-12 12:15:42 -04002163
Mohd Faraze3948ec2020-08-14 01:40:59 +00002164 if (Partition != NULL) UnMount_By_Path("/vendor", false);
2165 UnMount_By_Path (Get_Android_Root_Path(), true);
2166 Partition = Find_Partition_By_Path ("/product");
2167 if (Partition != NULL) UnMount_By_Path("/product", false);
Ethan Yonker6277c792014-09-15 14:54:30 -05002168 if (!datamedia)
2169 UnMount_By_Path("/data", true);
2170
Mohd Faraze3948ec2020-08-14 01:40:59 +00002171 Partition = Find_Partition_By_Path ("/boot");
2172 if (Partition != NULL && Partition->Can_Be_Mounted)
2173 Partition->UnMount(true);
Dees_Troyd0384ef2012-10-12 12:15:42 -04002174}
2175
Dees_Troy9350b8d2012-09-27 12:38:38 -04002176int TWPartitionManager::Partition_SDCard(void) {
Matt Mower23d8aae2017-01-06 14:30:33 -06002177 char temp[255];
Ethan Yonker483e9f42016-01-11 22:21:18 -06002178 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 -04002179 int ext, swap, total_size = 0, fat_size;
Dees_Troy9350b8d2012-09-27 12:38:38 -04002180
Ethan Yonker74db1572015-10-28 12:44:49 -05002181 gui_msg("start_partition_sd=Partitioning SD Card...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002182
2183 // Locate and validate device to partition
2184 TWPartition* SDCard = Find_Partition_By_Path(DataManager::GetCurrentStoragePath());
2185
Ethan Yonker66a19492015-12-10 10:19:45 -06002186 if (SDCard->Is_Adopted_Storage)
2187 SDCard->Revert_Adopted();
2188
Ethan Yonker1eff6cd2014-09-15 13:30:42 -05002189 if (SDCard == NULL || !SDCard->Removable || SDCard->Has_Data_Media) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002190 gui_err("partition_sd_locate=Unable to locate device to partition.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002191 return false;
2192 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002193
2194 // Unmount everything
Dees_Troy9350b8d2012-09-27 12:38:38 -04002195 if (!SDCard->UnMount(true))
2196 return false;
2197 TWPartition* SDext = Find_Partition_By_Path("/sd-ext");
2198 if (SDext != NULL) {
2199 if (!SDext->UnMount(true))
2200 return false;
2201 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002202 char* swappath = getenv("SWAPPATH");
2203 if (swappath != NULL) {
2204 LOGINFO("Unmounting swap at '%s'\n", swappath);
2205 umount(swappath);
2206 }
Vojtech Bocek05534202013-09-11 08:11:56 +02002207
Ethan Yonker483e9f42016-01-11 22:21:18 -06002208 // Determine block device
2209 if (SDCard->Alternate_Block_Device.empty()) {
2210 SDCard->Find_Actual_Block_Device();
2211 Device = SDCard->Actual_Block_Device;
2212 // Just use the root block device
2213 Device.resize(strlen("/dev/block/mmcblkX"));
2214 } else {
2215 Device = SDCard->Alternate_Block_Device;
2216 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002217
2218 // Find the size of the block device:
Ethan Yonker483e9f42016-01-11 22:21:18 -06002219 total_size = (int)(TWFunc::IOCTL_Get_Block_Size(Device.c_str()) / (1048576));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002220
2221 DataManager::GetValue("tw_sdext_size", ext);
2222 DataManager::GetValue("tw_swap_size", swap);
2223 DataManager::GetValue("tw_sdpart_file_system", ext_format);
2224 fat_size = total_size - ext - swap;
Ethan Yonker483e9f42016-01-11 22:21:18 -06002225 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);
2226
2227 // Determine partition sizes
2228 if (swap == 0 && ext == 0) {
2229 fat_str = "-0";
2230 } else {
2231 memset(temp, 0, sizeof(temp));
2232 sprintf(temp, "%i", fat_size);
2233 fat_str = temp;
2234 fat_str += "MB";
2235 }
2236 if (swap == 0) {
2237 ext_str = "-0";
2238 } else {
2239 memset(temp, 0, sizeof(temp));
2240 sprintf(temp, "%i", ext);
2241 ext_str = "+";
2242 ext_str += temp;
2243 ext_str += "MB";
2244 }
2245
Dees_Troy9350b8d2012-09-27 12:38:38 -04002246 if (ext + swap > total_size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002247 gui_err("ext_swap_size=EXT + Swap size is larger than sdcard size.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002248 return false;
2249 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002250
Ethan Yonker74db1572015-10-28 12:44:49 -05002251 gui_msg("remove_part_table=Removing partition table...");
Ethan Yonker483e9f42016-01-11 22:21:18 -06002252 Command = "sgdisk --zap-all " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002253 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002254 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002255 gui_err("unable_rm_part=Unable to remove partition table.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002256 Update_System_Details();
2257 return false;
2258 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002259 gui_msg(Msg("create_part=Creating {1} partition...")("FAT32"));
Captain Throwback9643a802016-05-27 11:44:51 -04002260 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 +00002261 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002262 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002263 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("FAT32"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002264 return false;
2265 }
2266 if (ext > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002267 gui_msg(Msg("create_part=Creating {1} partition...")("EXT"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002268 Command = "sgdisk --new=0:0:" + ext_str + " --change-name=0:\"Linux filesystem\" " + Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00002269 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002270 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002271 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("EXT"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002272 Update_System_Details();
2273 return false;
2274 }
2275 }
2276 if (swap > 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002277 gui_msg(Msg("create_part=Creating {1} partition...")("swap"));
Ethan Yonker483e9f42016-01-11 22:21:18 -06002278 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 +00002279 LOGINFO("Command is: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002280 if (TWFunc::Exec_Cmd(Command) != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002281 gui_msg(Msg(msg::kError, "unable_to_create_part=Unable to create {1} partition.")("swap"));
Dees_Troy9350b8d2012-09-27 12:38:38 -04002282 Update_System_Details();
2283 return false;
2284 }
2285 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002286
2287 // Convert GPT to MBR
2288 Command = "sgdisk --gpttombr " + Device;
2289 if (TWFunc::Exec_Cmd(Command) != 0)
2290 LOGINFO("Failed to covert partition GPT to MBR\n");
2291
2292 // Tell the kernel to rescan the partition table
2293 int fd = open(Device.c_str(), O_RDONLY);
2294 ioctl(fd, BLKRRPART, 0);
2295 close(fd);
2296
2297 string format_device = Device;
2298 if (Device.substr(0, 17) == "/dev/block/mmcblk")
2299 format_device += "p";
2300
2301 // Format new partitions to proper file system
2302 if (fat_size > 0) {
2303 Command = "mkfs.fat " + format_device + "1";
2304 TWFunc::Exec_Cmd(Command);
2305 }
Dees_Troy9350b8d2012-09-27 12:38:38 -04002306 if (ext > 0) {
2307 if (SDext == NULL) {
Ethan Yonker483e9f42016-01-11 22:21:18 -06002308 Command = "mke2fs -t " + ext_format + " -m 0 " + format_device + "2";
2309 gui_msg(Msg("format_sdext_as=Formatting sd-ext as {1}...")(ext_format));
2310 LOGINFO("Formatting sd-ext after partitioning, command: '%s'\n", Command.c_str());
2311 TWFunc::Exec_Cmd(Command);
2312 } else {
2313 SDext->Wipe(ext_format);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002314 }
Ethan Yonker483e9f42016-01-11 22:21:18 -06002315 }
2316 if (swap > 0) {
2317 Command = "mkswap " + format_device;
2318 if (ext > 0)
2319 Command += "3";
2320 else
2321 Command += "2";
Vojtech Bocek05534202013-09-11 08:11:56 +02002322 TWFunc::Exec_Cmd(Command);
Dees_Troy9350b8d2012-09-27 12:38:38 -04002323 }
2324
Ethan Yonker483e9f42016-01-11 22:21:18 -06002325 // recreate TWRP folder and rewrite settings - these will be gone after sdcard is partitioned
2326 if (SDCard->Mount(true)) {
2327 string TWRP_Folder = SDCard->Mount_Point + "/TWRP";
2328 mkdir(TWRP_Folder.c_str(), 0777);
2329 DataManager::Flush();
2330 }
2331
Dees_Troy9350b8d2012-09-27 12:38:38 -04002332 Update_System_Details();
Ethan Yonker74db1572015-10-28 12:44:49 -05002333 gui_msg("part_complete=Partitioning complete.");
Dees_Troy9350b8d2012-09-27 12:38:38 -04002334 return true;
bigbiff bigbiffa0f8a592012-10-09 21:01:03 -04002335}
Dees_Troya13d74f2013-03-24 08:54:55 -05002336
2337void TWPartitionManager::Get_Partition_List(string ListType, std::vector<PartitionList> *Partition_List) {
2338 std::vector<TWPartition*>::iterator iter;
2339 if (ListType == "mount") {
2340 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002341 if ((*iter)->Can_Be_Mounted) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002342 struct PartitionList part;
2343 part.Display_Name = (*iter)->Display_Name;
2344 part.Mount_Point = (*iter)->Mount_Point;
2345 part.selected = (*iter)->Is_Mounted();
2346 Partition_List->push_back(part);
2347 }
2348 }
2349 } else if (ListType == "storage") {
2350 char free_space[255];
2351 string Current_Storage = DataManager::GetCurrentStoragePath();
2352 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2353 if ((*iter)->Is_Storage) {
2354 struct PartitionList part;
2355 sprintf(free_space, "%llu", (*iter)->Free / 1024 / 1024);
2356 part.Display_Name = (*iter)->Storage_Name + " (";
2357 part.Display_Name += free_space;
2358 part.Display_Name += "MB)";
2359 part.Mount_Point = (*iter)->Storage_Path;
2360 if ((*iter)->Storage_Path == Current_Storage)
2361 part.selected = 1;
2362 else
2363 part.selected = 0;
2364 Partition_List->push_back(part);
2365 }
2366 }
2367 } else if (ListType == "backup") {
2368 char backup_size[255];
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002369 unsigned long long Backup_Size;
Dees_Troya13d74f2013-03-24 08:54:55 -05002370 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002371 if ((*iter)->Can_Be_Backed_Up && !(*iter)->Is_SubPartition && (*iter)->Is_Present) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002372 struct PartitionList part;
Dees_Troy9e0b71c2013-04-08 13:35:37 +00002373 Backup_Size = (*iter)->Backup_Size;
2374 if ((*iter)->Has_SubPartition) {
2375 std::vector<TWPartition*>::iterator subpart;
2376
2377 for (subpart = Partitions.begin(); subpart != Partitions.end(); subpart++) {
2378 if ((*subpart)->Is_SubPartition && (*subpart)->Can_Be_Backed_Up && (*subpart)->Is_Present && (*subpart)->SubPartition_Of == (*iter)->Mount_Point)
2379 Backup_Size += (*subpart)->Backup_Size;
2380 }
2381 }
2382 sprintf(backup_size, "%llu", Backup_Size / 1024 / 1024);
Dees_Troya13d74f2013-03-24 08:54:55 -05002383 part.Display_Name = (*iter)->Backup_Display_Name + " (";
2384 part.Display_Name += backup_size;
2385 part.Display_Name += "MB)";
2386 part.Mount_Point = (*iter)->Backup_Path;
2387 part.selected = 0;
2388 Partition_List->push_back(part);
2389 }
2390 }
2391 } else if (ListType == "restore") {
2392 string Restore_List, restore_path;
2393 TWPartition* restore_part = NULL;
2394
2395 DataManager::GetValue("tw_restore_list", Restore_List);
2396 if (!Restore_List.empty()) {
2397 size_t start_pos = 0, end_pos = Restore_List.find(";", start_pos);
2398 while (end_pos != string::npos && start_pos < Restore_List.size()) {
2399 restore_path = Restore_List.substr(start_pos, end_pos - start_pos);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002400 struct PartitionList part;
2401 if (restore_path.compare("ADB_Backup") == 0) {
2402 part.Display_Name = "ADB Backup";
2403 part.Mount_Point = "ADB Backup";
2404 part.selected = 1;
2405 Partition_List->push_back(part);
2406 break;
2407 }
Dees_Troy59df9262013-06-19 14:53:57 -05002408 if ((restore_part = Find_Partition_By_Path(restore_path)) != NULL) {
Dees Troy4159aed2014-02-28 17:24:43 +00002409 if ((restore_part->Backup_Name == "recovery" && !restore_part->Can_Be_Backed_Up) || restore_part->Is_SubPartition) {
Dees_Troya13d74f2013-03-24 08:54:55 -05002410 // Don't allow restore of recovery (causes problems on some devices)
Dees_Troy59df9262013-06-19 14:53:57 -05002411 // Don't add subpartitions to the list of items
Dees_Troya13d74f2013-03-24 08:54:55 -05002412 } else {
Dees_Troya13d74f2013-03-24 08:54:55 -05002413 part.Display_Name = restore_part->Backup_Display_Name;
2414 part.Mount_Point = restore_part->Backup_Path;
2415 part.selected = 1;
2416 Partition_List->push_back(part);
2417 }
2418 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002419 gui_msg(Msg(msg::kError, "restore_unable_locate=Unable to locate '{1}' partition for restoring.")(restore_path));
Dees_Troya13d74f2013-03-24 08:54:55 -05002420 }
2421 start_pos = end_pos + 1;
2422 end_pos = Restore_List.find(";", start_pos);
2423 }
2424 }
2425 } else if (ListType == "wipe") {
2426 struct PartitionList dalvik;
Ethan Yonker74db1572015-10-28 12:44:49 -05002427 dalvik.Display_Name = gui_parse_text("{@dalvik}");
Dees_Troya13d74f2013-03-24 08:54:55 -05002428 dalvik.Mount_Point = "DALVIK";
2429 dalvik.selected = 0;
2430 Partition_List->push_back(dalvik);
2431 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2432 if ((*iter)->Wipe_Available_in_GUI && !(*iter)->Is_SubPartition) {
2433 struct PartitionList part;
2434 part.Display_Name = (*iter)->Display_Name;
2435 part.Mount_Point = (*iter)->Mount_Point;
2436 part.selected = 0;
2437 Partition_List->push_back(part);
2438 }
2439 if ((*iter)->Has_Android_Secure) {
2440 struct PartitionList part;
2441 part.Display_Name = (*iter)->Backup_Display_Name;
2442 part.Mount_Point = (*iter)->Backup_Path;
2443 part.selected = 0;
2444 Partition_List->push_back(part);
2445 }
Dees_Troy74fb2e92013-04-15 14:35:47 +00002446 if ((*iter)->Has_Data_Media) {
2447 struct PartitionList datamedia;
2448 datamedia.Display_Name = (*iter)->Storage_Name;
2449 datamedia.Mount_Point = "INTERNAL";
2450 datamedia.selected = 0;
2451 Partition_List->push_back(datamedia);
2452 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002453 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002454 } else if (ListType == "flashimg") {
2455 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2456 if ((*iter)->Can_Flash_Img && (*iter)->Is_Present) {
2457 struct PartitionList part;
2458 part.Display_Name = (*iter)->Backup_Display_Name;
2459 part.Mount_Point = (*iter)->Backup_Path;
2460 part.selected = 0;
2461 Partition_List->push_back(part);
2462 }
2463 }
Ethan Yonker53796e72019-01-11 22:49:52 -06002464 if (DataManager::GetIntValue("tw_has_repack_tools") != 0 && DataManager::GetIntValue("tw_has_boot_slots") != 0) {
2465 TWPartition* boot = Find_Partition_By_Path("/boot");
2466 if (boot) {
2467 // Allow flashing kernels and ramdisks
2468 struct PartitionList repack_ramdisk;
2469 repack_ramdisk.Display_Name = gui_lookup("install_twrp_ramdisk", "Install Recovery Ramdisk");
2470 repack_ramdisk.Mount_Point = "/repack_ramdisk";
2471 repack_ramdisk.selected = 0;
2472 Partition_List->push_back(repack_ramdisk);
2473 /*struct PartitionList repack_kernel; For now let's leave repacking kernels under advanced only
2474 repack_kernel.Display_Name = gui_lookup("install_kernel", "Install Kernel");
2475 repack_kernel.Mount_Point = "/repack_kernel";
2476 repack_kernel.selected = 0;
2477 Partition_List->push_back(repack_kernel);*/
2478 }
2479 }
Dees_Troya13d74f2013-03-24 08:54:55 -05002480 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00002481 LOGERR("Unknown list type '%s' requested for TWPartitionManager::Get_Partition_List\n", ListType.c_str());
Dees_Troya13d74f2013-03-24 08:54:55 -05002482 }
2483}
2484
2485int TWPartitionManager::Fstab_Processed(void) {
2486 return Partitions.size();
2487}
Dees_Troyd93bda52013-07-03 19:55:19 +00002488
2489void TWPartitionManager::Output_Storage_Fstab(void) {
2490 std::vector<TWPartition*>::iterator iter;
2491 char storage_partition[255];
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002492 std::string Temp;
bigbiff25d25b92020-06-19 16:07:38 -04002493 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04002494
2495 if (cacheDir.empty()) {
2496 LOGINFO("Unable to find cache directory\n");
2497 return;
2498 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002499
bigbiff25d25b92020-06-19 16:07:38 -04002500 std::string storageFstab = TWFunc::get_log_dir() + "recovery/storage.fstab";
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002501 FILE *fp = fopen(storageFstab.c_str(), "w");
Dees_Troyd93bda52013-07-03 19:55:19 +00002502
2503 if (fp == NULL) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05002504 gui_msg(Msg(msg::kError, "unable_to_open=Unable to open '{1}'.")(storageFstab));
Dees_Troyd93bda52013-07-03 19:55:19 +00002505 return;
2506 }
2507
2508 // Iterate through all partitions
2509 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2510 if ((*iter)->Is_Storage) {
2511 Temp = (*iter)->Storage_Path + ";" + (*iter)->Storage_Name + ";\n";
2512 strcpy(storage_partition, Temp.c_str());
2513 fwrite(storage_partition, sizeof(storage_partition[0]), strlen(storage_partition) / sizeof(storage_partition[0]), fp);
2514 }
2515 }
2516 fclose(fp);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002517}
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002518
2519TWPartition *TWPartitionManager::Get_Default_Storage_Partition()
2520{
2521 TWPartition *res = NULL;
2522 for (std::vector<TWPartition*>::iterator iter = Partitions.begin(); iter != Partitions.end(); ++iter) {
Matt Mowera8a89d12016-12-30 18:10:37 -06002523 if (!(*iter)->Is_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002524 continue;
2525
Matt Mowera8a89d12016-12-30 18:10:37 -06002526 if ((*iter)->Is_Settings_Storage)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002527 return *iter;
2528
Matt Mowera8a89d12016-12-30 18:10:37 -06002529 if (!res)
Vojtech Bocek93cb1ef2014-05-12 15:41:52 +02002530 res = *iter;
2531 }
2532 return res;
2533}
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002534
2535bool TWPartitionManager::Enable_MTP(void) {
2536#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002537 if (mtppid) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002538 gui_err("mtp_already_enabled=MTP already enabled");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002539 return true;
2540 }
Ethan Yonker726a0202014-12-16 20:01:38 -06002541
2542 int mtppipe[2];
2543
2544 if (pipe(mtppipe) < 0) {
2545 LOGERR("Error creating MTP pipe\n");
2546 return false;
2547 }
2548
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002549 char old_value[PROPERTY_VALUE_MAX];
Matt Mowere07f0102017-02-23 17:40:00 -06002550 property_get("sys.usb.config", old_value, "");
2551 if (strcmp(old_value, "mtp,adb") != 0) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002552 char vendor[PROPERTY_VALUE_MAX];
2553 char product[PROPERTY_VALUE_MAX];
2554 property_set("sys.usb.config", "none");
2555 property_get("usb.vendor", vendor, "18D1");
2556 property_get("usb.product.mtpadb", product, "4EE2");
2557 string vendorstr = vendor;
2558 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002559 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2560 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002561 property_set("sys.usb.config", "mtp,adb");
2562 }
Matt Mower653a1702017-02-16 10:38:52 -06002563 /* To enable MTP debug, use the twrp command line feature:
Ethan Yonker6d154c42014-09-03 14:19:43 -05002564 * twrp set tw_mtp_debug 1
2565 */
2566 twrpMtp *mtp = new twrpMtp(DataManager::GetIntValue("tw_mtp_debug"));
Ethan Yonker1b039202015-01-30 10:08:48 -06002567 mtppid = mtp->forkserver(mtppipe);
2568 if (mtppid) {
2569 close(mtppipe[0]); // Host closes read side
2570 mtp_write_fd = mtppipe[1];
2571 DataManager::SetValue("tw_mtp_enabled", 1);
2572 Add_All_MTP_Storage();
2573 return true;
Ethan Yonker726a0202014-12-16 20:01:38 -06002574 } else {
2575 close(mtppipe[0]);
2576 close(mtppipe[1]);
Ethan Yonker74db1572015-10-28 12:44:49 -05002577 gui_err("mtp_fail=Failed to enable MTP");
Ethan Yonker1b039202015-01-30 10:08:48 -06002578 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002579 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002580#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002581 gui_err("no_mtp=MTP support not included");
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002582#endif
2583 DataManager::SetValue("tw_mtp_enabled", 0);
2584 return false;
2585}
2586
Ethan Yonker1b039202015-01-30 10:08:48 -06002587void TWPartitionManager::Add_All_MTP_Storage(void) {
2588#ifdef TW_HAS_MTP
2589 std::vector<TWPartition*>::iterator iter;
2590
2591 if (!mtppid)
2592 return; // MTP is not enabled
2593
2594 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2595 if ((*iter)->Is_Storage && (*iter)->Is_Present && (*iter)->Mount(false))
2596 Add_Remove_MTP_Storage((*iter), MTP_MESSAGE_ADD_STORAGE);
2597 }
2598#else
2599 return;
2600#endif
2601}
2602
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002603bool TWPartitionManager::Disable_MTP(void) {
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002604 char old_value[PROPERTY_VALUE_MAX];
bigbiff bigbiffaf32bb92018-12-18 18:39:53 -05002605 property_set("sys.usb.ffs.mtp.ready", "0");
Matt Mowere07f0102017-02-23 17:40:00 -06002606 property_get("sys.usb.config", old_value, "");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002607 if (strcmp(old_value, "adb") != 0) {
2608 char vendor[PROPERTY_VALUE_MAX];
2609 char product[PROPERTY_VALUE_MAX];
2610 property_set("sys.usb.config", "none");
2611 property_get("usb.vendor", vendor, "18D1");
Matt Mowere07f0102017-02-23 17:40:00 -06002612 property_get("usb.product.adb", product, "D001");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002613 string vendorstr = vendor;
2614 string productstr = product;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002615 TWFunc::write_to_file("/sys/class/android_usb/android0/idVendor", vendorstr);
2616 TWFunc::write_to_file("/sys/class/android_usb/android0/idProduct", productstr);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002617 usleep(2000);
2618 }
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002619#ifdef TW_HAS_MTP
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002620 if (mtppid) {
Ethan Yonker8613dc02014-09-11 09:28:20 -05002621 LOGINFO("Disabling MTP\n");
2622 int status;
2623 kill(mtppid, SIGKILL);
Ethan Yonker8dfa7772014-09-04 21:48:41 -05002624 mtppid = 0;
Ethan Yonker8613dc02014-09-11 09:28:20 -05002625 // We don't care about the exit value, but this prevents a zombie process
2626 waitpid(mtppid, &status, 0);
Ethan Yonker726a0202014-12-16 20:01:38 -06002627 close(mtp_write_fd);
2628 mtp_write_fd = -1;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002629 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002630#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002631 property_set("sys.usb.config", "adb");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002632#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002633 DataManager::SetValue("tw_mtp_enabled", 0);
2634 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002635#endif
Ethan Yonkerdf7abac2014-12-29 10:48:17 -06002636 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04002637}
Ethan Yonker726a0202014-12-16 20:01:38 -06002638
2639TWPartition* TWPartitionManager::Find_Partition_By_MTP_Storage_ID(unsigned int Storage_ID) {
2640 std::vector<TWPartition*>::iterator iter;
2641
2642 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
2643 if ((*iter)->MTP_Storage_ID == Storage_ID)
2644 return (*iter);
2645 }
2646 return NULL;
2647}
2648
2649bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_type) {
2650#ifdef TW_HAS_MTP
2651 struct mtpmsg mtp_message;
2652
2653 if (!mtppid)
2654 return false; // MTP is disabled
2655
2656 if (mtp_write_fd < 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002657 LOGINFO("MTP: mtp_write_fd is not set\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002658 return false;
2659 }
2660
2661 if (Part) {
Ethan Yonker4bfabab2014-12-29 09:15:37 -06002662 if (Part->MTP_Storage_ID == 0)
2663 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002664 if (message_type == MTP_MESSAGE_REMOVE_STORAGE) {
2665 mtp_message.message_type = MTP_MESSAGE_REMOVE_STORAGE; // Remove
2666 LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
2667 mtp_message.storage_id = Part->MTP_Storage_ID;
2668 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002669 LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002670 return false;
2671 } else {
2672 LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
2673 return true;
2674 }
2675 } else if (message_type == MTP_MESSAGE_ADD_STORAGE && Part->Is_Mounted()) {
2676 mtp_message.message_type = MTP_MESSAGE_ADD_STORAGE; // Add
2677 mtp_message.storage_id = Part->MTP_Storage_ID;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002678 if (Part->Storage_Path.size() >= sizeof(mtp_message.path)) {
2679 LOGERR("Storage path '%s' too large for mtpmsg\n", Part->Storage_Path.c_str());
2680 return false;
2681 }
2682 strcpy(mtp_message.path, Part->Storage_Path.c_str());
2683 if (Part->Storage_Name.size() >= sizeof(mtp_message.display)) {
2684 LOGERR("Storage name '%s' too large for mtpmsg\n", Part->Storage_Name.c_str());
2685 return false;
2686 }
2687 strcpy(mtp_message.display, Part->Storage_Name.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002688 mtp_message.maxFileSize = Part->Get_Max_FileSize();
Ethan Yonker1b039202015-01-30 10:08:48 -06002689 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 -06002690 if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002691 LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002692 return false;
2693 } else {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002694 LOGINFO("Message sent, add storage ID: %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
Ethan Yonker726a0202014-12-16 20:01:38 -06002695 return true;
2696 }
2697 } else {
2698 LOGERR("Unknown MTP message type: %i\n", message_type);
2699 }
2700 } else {
2701 // This hopefully never happens as the error handling should
2702 // occur in the calling function.
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002703 LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06002704 }
2705 return true;
2706#else
Ethan Yonker74db1572015-10-28 12:44:49 -05002707 gui_err("no_mtp=MTP support not included");
Ethan Yonker726a0202014-12-16 20:01:38 -06002708 DataManager::SetValue("tw_mtp_enabled", 0);
2709 return false;
2710#endif
2711}
2712
2713bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
2714#ifdef TW_HAS_MTP
2715 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2716 if (Part) {
2717 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2718 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002719 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002720 }
2721#endif
2722 return false;
2723}
2724
2725bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
2726#ifdef TW_HAS_MTP
2727 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2728 if (Part) {
2729 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
2730 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002731 LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002732 }
2733#endif
2734 return false;
2735}
2736
2737bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
2738#ifdef TW_HAS_MTP
2739 TWPartition* Part = PartitionManager.Find_Partition_By_Path(Mount_Point);
2740 if (Part) {
2741 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2742 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002743 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
Ethan Yonker726a0202014-12-16 20:01:38 -06002744 }
2745#endif
2746 return false;
2747}
2748
2749bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
2750#ifdef TW_HAS_MTP
2751 TWPartition* Part = PartitionManager.Find_Partition_By_MTP_Storage_ID(Storage_ID);
2752 if (Part) {
2753 return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
2754 } else {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06002755 LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
Ethan Yonker726a0202014-12-16 20:01:38 -06002756 }
2757#endif
2758 return false;
2759}
Ethan Yonker96af84a2015-01-05 14:58:36 -06002760
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002761bool TWPartitionManager::Flash_Image(string& path, string& filename) {
bigbiffad58e1b2020-07-06 20:24:34 -04002762 twrpRepacker repacker;
Matt Mower23d8aae2017-01-06 14:30:33 -06002763 int partition_count = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002764 TWPartition* flash_part = NULL;
bigbiffce8f83c2015-12-12 18:30:21 -05002765 string Flash_List, flash_path, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002766 size_t start_pos = 0, end_pos = 0;
2767
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002768 full_filename = path + "/" + filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002769
bigbiffce8f83c2015-12-12 18:30:21 -05002770 gui_msg("image_flash_start=[IMAGE FLASH STARTED]");
2771 gui_msg(Msg("img_to_flash=Image to flash: '{1}'")(full_filename));
2772
2773 if (!TWFunc::Path_Exists(full_filename)) {
2774 if (!Mount_By_Path(full_filename, true)) {
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002775 return false;
2776 }
bigbiffce8f83c2015-12-12 18:30:21 -05002777 if (!TWFunc::Path_Exists(full_filename)) {
2778 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(full_filename));
Ethan Yonkerb78fbdf2016-01-15 16:46:35 -06002779 return false;
2780 }
2781 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06002782
Ethan Yonker53796e72019-01-11 22:49:52 -06002783 DataManager::GetValue("tw_flash_partition", Flash_List);
2784 Repack_Type repack = REPLACE_NONE;
2785 if (Flash_List == "/repack_ramdisk;") {
2786 repack = REPLACE_RAMDISK;
2787 } else if (Flash_List == "/repack_kernel;") {
2788 repack = REPLACE_KERNEL;
2789 }
2790 if (repack != REPLACE_NONE) {
2791 Repack_Options_struct Repack_Options;
2792 Repack_Options.Type = repack;
2793 Repack_Options.Disable_Verity = false;
2794 Repack_Options.Disable_Force_Encrypt = false;
2795 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
bigbiffad58e1b2020-07-06 20:24:34 -04002796 return repacker.Repack_Image_And_Flash(full_filename, Repack_Options);
Ethan Yonker53796e72019-01-11 22:49:52 -06002797 }
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002798 PartitionSettings part_settings;
2799 part_settings.Backup_Folder = path;
2800 unsigned long long total_bytes = TWFunc::Get_File_Size(full_filename);
2801 ProgressTracking progress(total_bytes);
2802 part_settings.progress = &progress;
2803 part_settings.adbbackup = false;
2804 part_settings.PM_Method = PM_RESTORE;
Ethan Yonker74db1572015-10-28 12:44:49 -05002805 gui_msg("calc_restore=Calculating restore details...");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002806 if (!Flash_List.empty()) {
2807 end_pos = Flash_List.find(";", start_pos);
2808 while (end_pos != string::npos && start_pos < Flash_List.size()) {
2809 flash_path = Flash_List.substr(start_pos, end_pos - start_pos);
2810 flash_part = Find_Partition_By_Path(flash_path);
2811 if (flash_part != NULL) {
2812 partition_count++;
2813 if (partition_count > 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002814 gui_err("too_many_flash=Too many partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002815 return false;
2816 }
2817 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002818 gui_msg(Msg(msg::kError, "flash_unable_locate=Unable to locate '{1}' partition for flashing.")(flash_path));
Ethan Yonker96af84a2015-01-05 14:58:36 -06002819 return false;
2820 }
2821 start_pos = end_pos + 1;
2822 end_pos = Flash_List.find(";", start_pos);
2823 }
2824 }
2825
2826 if (partition_count == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002827 gui_err("no_part_flash=No partitions selected for flashing.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002828 return false;
2829 }
2830
2831 DataManager::SetProgress(0.0);
2832 if (flash_part) {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002833 flash_part->Backup_FileName = filename;
2834 if (!flash_part->Flash_Image(&part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002835 return false;
2836 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002837 gui_err("invalid_flash=Invalid flash partition specified.");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002838 return false;
2839 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002840 gui_highlight("flash_done=IMAGE FLASH COMPLETED]");
Ethan Yonker96af84a2015-01-05 14:58:36 -06002841 return true;
2842}
Ethan Yonker74db1572015-10-28 12:44:49 -05002843
2844void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value) {
2845 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2846 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002847 if (part->Is_Adopted_Storage) {
2848 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2849 part->Backup_Display_Name = part->Display_Name;
2850 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2851 } else {
2852 part->Display_Name = gui_lookup(resource_name, default_value);
2853 part->Backup_Display_Name = part->Display_Name;
2854 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002855 }
2856}
2857
2858void TWPartitionManager::Translate_Partition(const char* path, const char* resource_name, const char* default_value, const char* storage_resource_name, const char* storage_default_value) {
2859 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2860 if (part) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002861 if (part->Is_Adopted_Storage) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002862 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup("data_backup", "Data (excl. storage)");
Ethan Yonker66a19492015-12-10 10:19:45 -06002863 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
Ethan Yonker66a19492015-12-10 10:19:45 -06002864 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2865 } else {
2866 part->Display_Name = gui_lookup(resource_name, default_value);
2867 part->Backup_Display_Name = part->Display_Name;
2868 if (part->Is_Storage)
2869 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2870 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002871 }
2872}
2873
Ethan Yonker01f4e032017-02-03 15:30:52 -06002874void 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) {
2875 TWPartition* part = PartitionManager.Find_Partition_By_Path(path);
2876 if (part) {
2877 if (part->Is_Adopted_Storage) {
2878 part->Backup_Display_Name = part->Display_Name + " - " + gui_lookup(backup_name, backup_default);
2879 part->Display_Name = part->Display_Name + " - " + gui_lookup("data", "Data");
2880 part->Storage_Name = part->Storage_Name + " - " + gui_lookup("adopted_storage", "Adopted Storage");
2881 } else {
2882 part->Display_Name = gui_lookup(resource_name, default_value);
2883 part->Backup_Display_Name = gui_lookup(backup_name, backup_default);
2884 if (part->Is_Storage)
2885 part->Storage_Name = gui_lookup(storage_resource_name, storage_default_value);
2886 }
2887 }
2888}
2889
Ethan Yonker74db1572015-10-28 12:44:49 -05002890void TWPartitionManager::Translate_Partition_Display_Names() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002891 LOGINFO("Translating partition display names\n");
Ethan Yonker74db1572015-10-28 12:44:49 -05002892 Translate_Partition("/system", "system", "System");
2893 Translate_Partition("/system_image", "system_image", "System Image");
2894 Translate_Partition("/vendor", "vendor", "Vendor");
2895 Translate_Partition("/vendor_image", "vendor_image", "Vendor Image");
2896 Translate_Partition("/cache", "cache", "Cache");
Ethan Yonker74db1572015-10-28 12:44:49 -05002897 Translate_Partition("/boot", "boot", "Boot");
2898 Translate_Partition("/recovery", "recovery", "Recovery");
2899 if (!datamedia) {
Ethan Yonker01f4e032017-02-03 15:30:52 -06002900 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage");
Ethan Yonker74db1572015-10-28 12:44:49 -05002901 Translate_Partition("/sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2902 Translate_Partition("/internal_sd", "sdcard", "SDCard", "sdcard", "SDCard");
2903 Translate_Partition("/internal_sdcard", "sdcard", "SDCard", "sdcard", "SDCard");
2904 Translate_Partition("/emmc", "sdcard", "SDCard", "sdcard", "SDCard");
Ethan Yonker01f4e032017-02-03 15:30:52 -06002905 } else {
2906 Translate_Partition("/data", "data", "Data", "internal", "Internal Storage", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002907 }
Ethan Yonker01f4e032017-02-03 15:30:52 -06002908 Translate_Partition("/external_sd", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
2909 Translate_Partition("/external_sdcard", "microsd", "Micro SDCard", "microsd", "Micro SDCard", "data_backup", "Data (excl. storage)");
Ethan Yonker74db1572015-10-28 12:44:49 -05002910 Translate_Partition("/usb-otg", "usbotg", "USB OTG", "usbotg", "USB OTG");
2911 Translate_Partition("/sd-ext", "sdext", "SD-EXT");
2912
2913 // Android secure is a special case
2914 TWPartition* part = PartitionManager.Find_Partition_By_Path("/and-sec");
2915 if (part)
2916 part->Backup_Display_Name = gui_lookup("android_secure", "Android Secure");
2917
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002918 std::vector<TWPartition*>::iterator sysfs;
2919 for (sysfs = Partitions.begin(); sysfs != Partitions.end(); sysfs++) {
2920 if (!(*sysfs)->Sysfs_Entry.empty()) {
2921 Translate_Partition((*sysfs)->Mount_Point.c_str(), "autostorage", "Storage", "autostorage", "Storage");
2922 }
2923 }
2924
Ethan Yonker74db1572015-10-28 12:44:49 -05002925 // This updates the text on all of the storage selection buttons in the GUI
2926 DataManager::SetBackupFolder();
2927}
Ethan Yonker66a19492015-12-10 10:19:45 -06002928
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002929bool TWPartitionManager::Decrypt_Adopted() {
Ethan Yonker66a19492015-12-10 10:19:45 -06002930#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002931 bool ret = false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002932 if (!Mount_By_Path("/data", false)) {
2933 LOGERR("Cannot decrypt adopted storage because /data will not mount\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002934 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002935 }
2936 LOGINFO("Decrypt adopted storage starting\n");
2937 char* xmlFile = PageManager::LoadFileToBuffer("/data/system/storage.xml", NULL);
2938 xml_document<> *doc = NULL;
2939 xml_node<>* volumes = NULL;
Ethan Yonker66a19492015-12-10 10:19:45 -06002940 string Primary_Storage_UUID = "";
2941 if (xmlFile != NULL) {
2942 LOGINFO("successfully loaded storage.xml\n");
2943 doc = new xml_document<>();
2944 doc->parse<0>(xmlFile);
2945 volumes = doc->first_node("volumes");
2946 if (volumes) {
2947 xml_attribute<>* psuuid = volumes->first_attribute("primaryStorageUuid");
2948 if (psuuid) {
2949 Primary_Storage_UUID = psuuid->value();
2950 }
2951 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002952 } else {
2953 LOGINFO("No /data/system/storage.xml for adopted storage\n");
2954 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06002955 }
2956 std::vector<TWPartition*>::iterator adopt;
2957 for (adopt = Partitions.begin(); adopt != Partitions.end(); adopt++) {
2958 if ((*adopt)->Removable && (*adopt)->Is_Present) {
2959 if ((*adopt)->Decrypt_Adopted() == 0) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002960 ret = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06002961 if (volumes) {
2962 xml_node<>* volume = volumes->first_node("volume");
2963 while (volume) {
2964 xml_attribute<>* guid = volume->first_attribute("partGuid");
2965 if (guid) {
2966 string GUID = (*adopt)->Adopted_GUID.c_str();
2967 GUID.insert(8, "-");
2968 GUID.insert(13, "-");
2969 GUID.insert(18, "-");
2970 GUID.insert(23, "-");
2971
2972 if (strcasecmp(GUID.c_str(), guid->value()) == 0) {
2973 xml_attribute<>* attr = volume->first_attribute("nickname");
nkk71ffb02bd2017-06-04 23:12:16 +03002974 if (attr && attr->value() && strlen(attr->value()) > 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002975 (*adopt)->Storage_Name = attr->value();
2976 (*adopt)->Display_Name = (*adopt)->Storage_Name;
2977 (*adopt)->Backup_Display_Name = (*adopt)->Storage_Name;
2978 LOGINFO("storage name from storage.xml is '%s'\n", attr->value());
2979 }
2980 attr = volume->first_attribute("fsUuid");
2981 if (attr && !Primary_Storage_UUID.empty() && strcmp(Primary_Storage_UUID.c_str(), attr->value()) == 0) {
2982 TWPartition* Dat = Find_Partition_By_Path("/data");
2983 if (Dat) {
2984 LOGINFO("Internal storage is found on adopted storage '%s'\n", (*adopt)->Display_Name.c_str());
2985 LOGINFO("Changing '%s' to point to '%s'\n", Dat->Symlink_Mount_Point.c_str(), (*adopt)->Storage_Path.c_str());
2986 (*adopt)->Symlink_Mount_Point = Dat->Symlink_Mount_Point;
2987 Dat->Symlink_Mount_Point = "";
2988 // Toggle mounts to ensure that the symlink mount point (probably /sdcard) is mounted to the right location
2989 Dat->UnMount(false);
2990 Dat->Mount(false);
2991 (*adopt)->UnMount(false);
2992 (*adopt)->Mount(false);
Ethan Yonker66a19492015-12-10 10:19:45 -06002993 }
2994 }
2995 break;
2996 }
2997 }
2998 volume = volume->next_sibling("volume");
2999 }
3000 }
nkk71ffb02bd2017-06-04 23:12:16 +03003001 Update_System_Details();
3002 Output_Partition((*adopt));
Ethan Yonker66a19492015-12-10 10:19:45 -06003003 }
3004 }
3005 }
3006 if (xmlFile) {
3007 doc->clear();
3008 delete doc;
3009 free(xmlFile);
3010 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003011 return ret;
Ethan Yonker66a19492015-12-10 10:19:45 -06003012#else
3013 LOGINFO("Decrypt_Adopted: no crypto support\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003014 return false;
Ethan Yonker66a19492015-12-10 10:19:45 -06003015#endif
3016}
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003017
3018void TWPartitionManager::Remove_Partition_By_Path(string Path) {
3019 std::vector<TWPartition*>::iterator iter;
3020 string Local_Path = TWFunc::Get_Root_Path(Path);
3021
3022 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3023 if ((*iter)->Mount_Point == Local_Path || (!(*iter)->Symlink_Mount_Point.empty() && (*iter)->Symlink_Mount_Point == Local_Path)) {
3024 LOGINFO("Found and erasing '%s' from partition list\n", Local_Path.c_str());
3025 Partitions.erase(iter);
3026 return;
3027 }
3028 }
3029}
Ethan Yonker1b190162016-12-05 15:25:19 -06003030
3031void TWPartitionManager::Set_Active_Slot(const string& Slot) {
3032 if (Slot != "A" && Slot != "B") {
3033 LOGERR("Set_Active_Slot invalid slot '%s'\n", Slot.c_str());
3034 return;
3035 }
3036 if (Active_Slot_Display == Slot)
3037 return;
3038 LOGINFO("Setting active slot %s\n", Slot.c_str());
3039#ifdef AB_OTA_UPDATER
3040 if (!Active_Slot_Display.empty()) {
3041 const hw_module_t *hw_module;
3042 boot_control_module_t *module;
3043 int ret;
3044 ret = hw_get_module("bootctrl", &hw_module);
3045 if (ret != 0) {
3046 LOGERR("Error getting bootctrl module.\n");
3047 } else {
3048 module = (boot_control_module_t*) hw_module;
3049 module->init(module);
3050 int slot_number = 0;
3051 if (Slot == "B")
3052 slot_number = 1;
3053 if (module->setActiveBootSlot(module, slot_number))
3054 gui_msg(Msg(msg::kError, "unable_set_boot_slot=Error changing bootloader boot slot to {1}")(Slot));
3055 }
3056 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
3057 }
3058#else
3059 LOGERR("Boot slot feature not present\n");
3060#endif
3061 Active_Slot_Display = Slot;
3062 if (Fstab_Processed())
3063 Update_System_Details();
3064}
3065string TWPartitionManager::Get_Active_Slot_Suffix() {
3066 if (Active_Slot_Display == "A")
3067 return "_a";
3068 return "_b";
3069}
3070string TWPartitionManager::Get_Active_Slot_Display() {
3071 return Active_Slot_Display;
3072}
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003073
Captain Throwback9d6feb52018-07-27 10:05:24 -04003074string TWPartitionManager::Get_Android_Root_Path() {
bigbiff8da46fa2020-09-08 16:42:34 -04003075 return "/system_root";
Captain Throwback9d6feb52018-07-27 10:05:24 -04003076}
3077
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003078void TWPartitionManager::Remove_Uevent_Devices(const string& Mount_Point) {
3079 std::vector<TWPartition*>::iterator iter;
3080
3081 for (iter = Partitions.begin(); iter != Partitions.end(); ) {
3082 if ((*iter)->Is_SubPartition && (*iter)->SubPartition_Of == Mount_Point) {
3083 TWPartition *part = *iter;
3084 LOGINFO("%s was removed by uevent data\n", (*iter)->Mount_Point.c_str());
3085 (*iter)->UnMount(false);
3086 rmdir((*iter)->Mount_Point.c_str());
3087 iter = Partitions.erase(iter);
3088 delete part;
3089 } else {
3090 iter++;
3091 }
3092 }
3093}
3094
3095void TWPartitionManager::Handle_Uevent(const Uevent_Block_Data& uevent_data) {
3096 std::vector<TWPartition*>::iterator iter;
3097
3098 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3099 if (!(*iter)->Sysfs_Entry.empty()) {
3100 string device;
3101 size_t wildcard = (*iter)->Sysfs_Entry.find("*");
3102 if (wildcard != string::npos) {
3103 device = (*iter)->Sysfs_Entry.substr(0, wildcard);
3104 } else {
3105 device = (*iter)->Sysfs_Entry;
3106 }
3107 if (device == uevent_data.sysfs_path.substr(0, device.size())) {
3108 // Found a match
3109 if (uevent_data.action == "add") {
3110 (*iter)->Primary_Block_Device = "/dev/block/" + uevent_data.block_device;
3111 (*iter)->Alternate_Block_Device = (*iter)->Primary_Block_Device;
3112 (*iter)->Is_Present = true;
3113 LOGINFO("Found a match '%s' '%s'\n", uevent_data.block_device.c_str(), device.c_str());
3114 if (!Decrypt_Adopted()) {
3115 LOGINFO("No adopted storage so finding actual block device\n");
3116 (*iter)->Find_Actual_Block_Device();
3117 }
3118 return;
3119 } else if (uevent_data.action == "remove") {
3120 (*iter)->Is_Present = false;
3121 (*iter)->Primary_Block_Device = "";
3122 (*iter)->Actual_Block_Device = "";
3123 Remove_Uevent_Devices((*iter)->Mount_Point);
3124 return;
3125 }
3126 }
3127 }
3128 }
bigbiffee7b7ff2020-03-23 15:08:27 -04003129
3130 if (!PartitionManager.Get_Super_Status())
3131 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 -06003132}
3133
3134void TWPartitionManager::setup_uevent() {
3135 struct sockaddr_nl nls;
3136
3137 if (uevent_pfd.fd >= 0) {
3138 LOGINFO("uevent already set up\n");
3139 return;
3140 }
3141
3142 // Open hotplug event netlink socket
3143 memset(&nls,0,sizeof(struct sockaddr_nl));
3144 nls.nl_family = AF_NETLINK;
3145 nls.nl_pid = getpid();
3146 nls.nl_groups = -1;
3147 uevent_pfd.events = POLLIN;
3148 uevent_pfd.fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_KOBJECT_UEVENT);
3149 if (uevent_pfd.fd==-1) {
3150 LOGERR("uevent not root\n");
3151 return;
3152 }
3153
3154 // Listen to netlink socket
3155 if (::bind(uevent_pfd.fd, (struct sockaddr *) &nls, sizeof(struct sockaddr_nl)) < 0) {
3156 LOGERR("Bind failed\n");
3157 return;
3158 }
3159 set_select_fd();
3160 Coldboot();
3161}
3162
3163Uevent_Block_Data TWPartitionManager::get_event_block_values(char *buf, int len) {
3164 Uevent_Block_Data ret;
3165 ret.subsystem = "";
3166 char *ptr = buf;
3167 const char *end = buf + len;
3168
3169 buf[len - 1] = '\0';
3170 while (ptr < end) {
3171 if (strncmp(ptr, "ACTION=", strlen("ACTION=")) == 0) {
3172 ptr += strlen("ACTION=");
3173 ret.action = ptr;
3174 } else if (strncmp(ptr, "SUBSYSTEM=", strlen("SUBSYSTEM=")) == 0) {
3175 ptr += strlen("SUBSYSTEM=");
3176 ret.subsystem = ptr;
3177 } else if (strncmp(ptr, "DEVTYPE=", strlen("DEVTYPE=")) == 0) {
3178 ptr += strlen("DEVTYPE=");
3179 ret.type = ptr;
3180 } else if (strncmp(ptr, "DEVPATH=", strlen("DEVPATH=")) == 0) {
3181 ptr += strlen("DEVPATH=");
3182 ret.sysfs_path += ptr;
3183 } else if (strncmp(ptr, "DEVNAME=", strlen("DEVNAME=")) == 0) {
3184 ptr += strlen("DEVNAME=");
3185 ret.block_device += ptr;
3186 } else if (strncmp(ptr, "MAJOR=", strlen("MAJOR=")) == 0) {
3187 ptr += strlen("MAJOR=");
3188 ret.major = atoi(ptr);
3189 } else if (strncmp(ptr, "MINOR=", strlen("MINOR=")) == 0) {
3190 ptr += strlen("MINOR=");
3191 ret.minor = atoi(ptr);
3192 }
3193 ptr += strlen(ptr) + 1;
3194 }
3195 return ret;
3196}
3197
3198void TWPartitionManager::read_uevent() {
3199 char buf[1024];
3200
3201 int len = recv(uevent_pfd.fd, buf, sizeof(buf), MSG_DONTWAIT);
3202 if (len == -1) {
Mauronofrio Matarresec1bb76e2019-08-04 17:02:41 +01003203 LOGINFO("recv error on uevent\n");
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003204 return;
3205 }
3206 /*int i = 0; // Print all uevent output for test /debug
3207 while (i<len) {
3208 printf("%s\n", buf+i);
3209 i += strlen(buf+i)+1;
3210 }*/
3211 Uevent_Block_Data uevent_data = get_event_block_values(buf, len);
3212 if (uevent_data.subsystem == "block" && uevent_data.type == "disk") {
3213 PartitionManager.Handle_Uevent(uevent_data);
3214 }
3215}
3216
3217void TWPartitionManager::close_uevent() {
3218 if (uevent_pfd.fd > 0)
3219 close(uevent_pfd.fd);
3220 uevent_pfd.fd = -1;
3221}
3222
3223void TWPartitionManager::Add_Partition(TWPartition* Part) {
3224 Partitions.push_back(Part);
3225}
3226
3227void TWPartitionManager::Coldboot_Scan(std::vector<string> *sysfs_entries, const string& Path, int depth) {
3228 string Real_Path = Path;
3229 char real_path[PATH_MAX];
3230 if (realpath(Path.c_str(), &real_path[0])) {
3231 string Real_Path = real_path;
3232 std::vector<string>::iterator iter;
3233 for (iter = sysfs_entries->begin(); iter != sysfs_entries->end(); iter++) {
3234 if (Real_Path.find((*iter)) != string::npos) {
3235 string Write_Path = Real_Path + "/uevent";
3236 if (TWFunc::Path_Exists(Write_Path)) {
3237 const char* write_val = "add\n";
3238 TWFunc::write_to_file(Write_Path, write_val);
3239 break;
3240 }
3241 }
3242 }
3243 }
3244
3245 DIR* d = opendir(Path.c_str());
3246 if (d != NULL) {
3247 struct dirent* de;
3248 while ((de = readdir(d)) != NULL) {
3249 if (de->d_name[0] == '.' || (de->d_type != DT_DIR && depth > 0))
3250 continue;
3251 if (strlen(de->d_name) >= 4 && (strncmp(de->d_name, "ram", 3) == 0 || strncmp(de->d_name, "loop", 4) == 0))
3252 continue;
3253
3254 string item = Path + "/";
3255 item.append(de->d_name);
3256 Coldboot_Scan(sysfs_entries, item, depth + 1);
3257 }
3258 closedir(d);
3259 }
3260}
3261
3262void TWPartitionManager::Coldboot() {
3263 std::vector<TWPartition*>::iterator iter;
3264 std::vector<string> sysfs_entries;
3265
3266 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3267 if (!(*iter)->Sysfs_Entry.empty()) {
3268 size_t wildcard_pos = (*iter)->Sysfs_Entry.find("*");
3269 if (wildcard_pos == string::npos)
3270 wildcard_pos = (*iter)->Sysfs_Entry.size();
3271 sysfs_entries.push_back((*iter)->Sysfs_Entry.substr(0, wildcard_pos));
3272 }
3273 }
3274
3275 if (sysfs_entries.size() > 0)
3276 Coldboot_Scan(&sysfs_entries, "/sys/block", 0);
3277}
Ethan Yonker53796e72019-01-11 22:49:52 -06003278
3279bool TWPartitionManager::Prepare_Empty_Folder(const std::string& Folder) {
3280 if (TWFunc::Path_Exists(Folder))
3281 TWFunc::removeDir(Folder, false);
3282 return TWFunc::Recursive_Mkdir(Folder);
3283}
3284
bigbiffee7b7ff2020-03-23 15:08:27 -04003285bool TWPartitionManager::Prepare_Super_Volume(TWPartition* twrpPart) {
3286 Fstab fstab;
3287 std::string bare_partition_name;
3288
3289 if (twrpPart->Get_Mount_Point() == "/system_root")
3290 bare_partition_name = "system";
3291 else
3292 bare_partition_name = TWFunc::Remove_Beginning_Slash(twrpPart->Get_Mount_Point());
3293
3294 LOGINFO("Trying to prepare %s from super partition\n", bare_partition_name.c_str());
3295
3296 std::string blk_device_partition;
3297#ifdef AB_OTA_UPDATER
3298 blk_device_partition = bare_partition_name + PartitionManager.Get_Active_Slot_Suffix();
3299#else
3300 blk_device_partition = bare_partition_name;
3301#endif
3302
3303 FstabEntry fstabEntry = {
3304 .blk_device = blk_device_partition,
3305 .mount_point = twrpPart->Get_Mount_Point(),
3306 .fs_type = twrpPart->Current_File_System,
3307 .fs_mgr_flags.logical = twrpPart->Is_Super,
3308 };
3309
3310 fstab.emplace_back(fstabEntry);
3311 if (!fs_mgr_update_logical_partition(&fstabEntry)) {
3312 LOGERR("unable to update logical partition: %s\n", twrpPart->Get_Mount_Point().c_str());
3313 return false;
3314 }
3315
bigbiff32cbabe2020-04-12 19:16:19 -04003316 while (access(fstabEntry.blk_device.c_str(), F_OK) != 0) {
3317 usleep(100);
3318 }
3319
bigbiffee7b7ff2020-03-23 15:08:27 -04003320 twrpPart->Set_Block_Device(fstabEntry.blk_device);
3321 twrpPart->Update_Size(true);
3322 twrpPart->Change_Mount_Read_Only(true);
3323 twrpPart->Set_Can_Be_Backed_Up(false);
3324 twrpPart->Set_Can_Be_Wiped(false);
3325 return true;
3326}
3327
3328bool TWPartitionManager::Prepare_All_Super_Volumes() {
3329 bool status = true;
3330 std::vector<TWPartition*>::iterator iter;
3331
3332 for (iter = Partitions.begin(); iter != Partitions.end(); iter++) {
3333 if ((*iter)->Is_Super) {
3334 if (!Prepare_Super_Volume(*iter)) {
3335 status = false;
3336 }
3337 PartitionManager.Output_Partition(*iter);
3338 }
3339 }
3340 Update_System_Details();
3341 return status;
3342}
3343
3344bool TWPartitionManager::Is_Super_Partition(const char* fstab_line) {
Mohd Faraze3948ec2020-08-14 01:40:59 +00003345 if (!Get_Super_Status())
3346 return false;
bigbiffee7b7ff2020-03-23 15:08:27 -04003347 std::vector<std::string> super_partition_list = {"system", "vendor", "odm", "product", "system_ext"};
3348
3349 for (auto&& fstab_partition_check: super_partition_list) {
3350 if (strncmp(fstab_line, fstab_partition_check.c_str(), fstab_partition_check.size()) == 0) {
3351 DataManager::SetValue(TW_IS_SUPER, "1");
3352 return true;
3353 }
3354 }
3355 return false;
3356}
3357
3358std::string TWPartitionManager::Get_Super_Partition() {
3359 int slot_number = Get_Active_Slot_Display() == "A" ? 0 : 1;
3360 std::string super_device = fs_mgr_get_super_partition_name(slot_number);
3361 return "/dev/block/by-name/" + super_device;
3362}
3363
3364void TWPartitionManager::Setup_Super_Devices() {
3365 std::string superPart = Get_Super_Partition();
3366 android::fs_mgr::CreateLogicalPartitions(superPart);
bigbiff7ba75002020-04-11 20:47:09 -04003367}
3368
3369void TWPartitionManager::Setup_Super_Partition() {
bigbiffee7b7ff2020-03-23 15:08:27 -04003370 TWPartition* superPartition = new TWPartition();
bigbiff7ba75002020-04-11 20:47:09 -04003371 std::string superPart = Get_Super_Partition();
3372
3373 superPartition->Backup_Path = "/super";
3374 superPartition->Mount_Point = "/super";
bigbiffee7b7ff2020-03-23 15:08:27 -04003375 superPartition->Actual_Block_Device = superPart;
3376 superPartition->Alternate_Block_Device = superPart;
Ian Macdonald160e8d32020-09-29 20:47:31 +02003377#ifdef BOARD_DYNAMIC_PARTITIONS_PARTITION_LIST
3378 superPartition->Backup_Display_Name = "Super (" BOARD_DYNAMIC_PARTITIONS_PARTITION_LIST ")";
3379#else
3380 superPartition->Backup_Display_Name = "Super";
3381#endif
bigbiffee7b7ff2020-03-23 15:08:27 -04003382 superPartition->Can_Flash_Img = true;
bigbiffee7b7ff2020-03-23 15:08:27 -04003383 superPartition->Current_File_System = "emmc";
3384 superPartition->Can_Be_Backed_Up = true;
3385 superPartition->Is_Present = true;
3386 superPartition->Is_SubPartition = false;
bigbiff7ba75002020-04-11 20:47:09 -04003387 superPartition->Setup_Image();
bigbiffee7b7ff2020-03-23 15:08:27 -04003388 Add_Partition(superPartition);
3389 PartitionManager.Output_Partition(superPartition);
3390 Update_System_Details();
3391}
3392
3393bool TWPartitionManager::Get_Super_Status() {
bigbiffdf8436b2020-08-30 16:22:34 -04003394 std::string fastboot_mode = android::base::GetProperty("sys.usb.config", "");
3395 if (fastboot_mode == "fastboot") {
3396 return false;
3397 }
3398 else
3399 return access(Get_Super_Partition().c_str(), F_OK) == 0;
bigbiffee7b7ff2020-03-23 15:08:27 -04003400}
bigbiff25d25b92020-06-19 16:07:38 -04003401
3402bool TWPartitionManager::Recreate_Logs_Dir() {
3403#ifdef TW_INCLUDE_FBE
3404 struct passwd pd;
3405 struct passwd *pwdptr = &pd;
3406 struct passwd *tempPd;
3407 char pwdBuf[512];
3408 int uid = 0, gid = 0;
3409
3410 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
3411 LOGERR("unable to get system user id\n");
3412 return false;
3413 } else {
3414 struct group grp;
3415 struct group *grpptr = &grp;
3416 struct group *tempGrp;
3417 char grpBuf[512];
3418
3419 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
3420 LOGERR("unable to get cache group id\n");
3421 return false;
3422 } else {
3423 uid = pd.pw_uid;
3424 gid = grp.gr_gid;
3425 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
3426 abLogsRecoveryDir += "/recovery/";
3427
3428 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
3429 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
3430 return false;
3431 }
3432 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
3433 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
3434 return false;
3435 }
3436 }
3437 }
3438#endif
3439 return true;
3440}