blob: 03eba4b1d059e62e1e4d1be68fd87f3a596cecba [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffa2bd7b72020-05-07 21:45:34 -04002 Copyright 2013 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>
Dees_Troy5bf43922012-09-07 16:07:55 -040022#include <sys/mount.h>
bigbiffa2bd7b72020-05-07 21:45:34 -040023#include <sys/param.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <sys/vfs.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040027#include <unistd.h>
Dees_Troy51127312012-09-08 13:08:49 -040028#include <dirent.h>
Ethan Yonker472f5062016-02-25 13:47:30 -060029#include <fcntl.h>
bigbiffa2bd7b72020-05-07 21:45:34 -040030#include <grp.h>
31#include <iostream>
32#include <libgen.h>
33#include <pwd.h>
34#include <zlib.h>
35#include <sstream>
Dees_Troy51a0e822012-09-05 15:24:24 -040036
Ethan Yonker007de982018-08-31 14:23:16 -050037#include "cutils/properties.h"
bigbiff7b4c7a62015-01-01 19:44:14 -050038#include "libblkid/include/blkid.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040039#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000040#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040041#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040042#include "data.hpp"
Dees_Troy43d8b002012-09-17 16:00:01 -040043#include "twrp-functions.hpp"
bigbiff bigbiff9c754052013-01-09 09:09:08 -050044#include "twrpTar.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060045#include "exclude.hpp"
Ethan Yonker1b7a31b2014-07-03 15:09:22 -050046#include "infomanager.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060047#include "set_metadata.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050048#include "gui/gui.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050049#include "adbbu/libtwadbbu.hpp"
Ethan Yonker98661c12018-10-17 08:39:28 -050050#ifdef TW_INCLUDE_CRYPTO
51 #include "crypto/fde/cryptfs.h"
52 #ifdef TW_INCLUDE_FBE
53 #include "crypto/ext4crypt/Decrypt.h"
54 #endif
55#else
56 #define CRYPT_FOOTER_OFFSET 0x4000
57#endif
Dees_Troy5bf43922012-09-07 16:07:55 -040058extern "C" {
Dees_Troy38bd7602012-09-14 13:33:53 -040059 #include "mtdutils/mtdutils.h"
60 #include "mtdutils/mounts.h"
Dees_Troya95f55c2013-08-17 13:14:43 +000061#ifdef USE_EXT4
Ethan Yonker8373cfe2017-09-08 06:50:54 -050062 // #include "make_ext4fs.h" TODO need ifdef for android8
63 #include <ext4_utils/make_ext4fs.h>
Dees_Troya95f55c2013-08-17 13:14:43 +000064#endif
Ethan Yonker71413f42014-02-26 13:36:08 -060065#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker66a19492015-12-10 10:19:45 -060066 #include "gpt/gpt.h"
Ethan Yonker71413f42014-02-26 13:36:08 -060067#endif
Dees_Troy5bf43922012-09-07 16:07:55 -040068}
Matt Mower87413642017-01-17 21:14:46 -060069#include <selinux/selinux.h>
Ethan Yonkerf27497f2014-02-09 11:48:33 -060070#include <selinux/label.h>
Dees Troy4159aed2014-02-28 17:24:43 +000071#ifdef HAVE_CAPABILITIES
72#include <sys/capability.h>
73#include <sys/xattr.h>
74#include <linux/xattr.h>
75#endif
HashBanged974bb2016-01-30 14:20:09 -050076#include <sparse_format.h>
Ethan Yonker472f5062016-02-25 13:47:30 -060077#include "progresstracking.hpp"
Dees_Troy51a0e822012-09-05 15:24:24 -040078
bigbiff bigbiff9c754052013-01-09 09:09:08 -050079using namespace std;
80
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060081static int auto_index = 0; // v2 fstab allows you to specify a mount point of "auto" with no /. These items are given a mount point of /auto* where * == auto_index
82
Dees_Troya95f55c2013-08-17 13:14:43 +000083extern struct selabel_handle *selinux_handle;
Ethan Yonker6277c792014-09-15 14:54:30 -050084extern bool datamedia;
Dees_Troya95f55c2013-08-17 13:14:43 +000085
Hashcode62bd9e02013-11-19 21:59:42 -080086struct flag_list {
87 const char *name;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060088 unsigned long flag;
Hashcode62bd9e02013-11-19 21:59:42 -080089};
90
Matt Mower4ab42b12016-04-21 13:52:18 -050091const struct flag_list mount_flags[] = {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060092 { "noatime", MS_NOATIME },
93 { "noexec", MS_NOEXEC },
94 { "nosuid", MS_NOSUID },
95 { "nodev", MS_NODEV },
96 { "nodiratime", MS_NODIRATIME },
97 { "ro", MS_RDONLY },
98 { "rw", 0 },
99 { "remount", MS_REMOUNT },
100 { "bind", MS_BIND },
101 { "rec", MS_REC },
Dees Troyc4bc30e2014-02-03 15:04:19 +0000102#ifdef MS_UNBINDABLE
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600103 { "unbindable", MS_UNBINDABLE },
Dees Troyc4bc30e2014-02-03 15:04:19 +0000104#endif
105#ifdef MS_PRIVATE
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600106 { "private", MS_PRIVATE },
Dees Troyc4bc30e2014-02-03 15:04:19 +0000107#endif
108#ifdef MS_SLAVE
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600109 { "slave", MS_SLAVE },
Dees Troyc4bc30e2014-02-03 15:04:19 +0000110#endif
111#ifdef MS_SHARED
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600112 { "shared", MS_SHARED },
Dees Troyc4bc30e2014-02-03 15:04:19 +0000113#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600114 { "sync", MS_SYNCHRONOUS },
115 { 0, 0 },
116};
117
118const char *ignored_mount_items[] = {
119 "defaults=",
120 "errors=",
Ethan Yonker93382822018-11-01 15:25:31 -0500121 "latemount",
122 "sysfs_path=",
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600123 NULL
Hashcode62bd9e02013-11-19 21:59:42 -0800124};
125
Matt Mower2416a502016-04-12 19:54:46 -0500126enum TW_FSTAB_FLAGS {
127 TWFLAG_DEFAULTS, // Retain position
128 TWFLAG_ANDSEC,
129 TWFLAG_BACKUP,
130 TWFLAG_BACKUPNAME,
131 TWFLAG_BLOCKSIZE,
132 TWFLAG_CANBEWIPED,
133 TWFLAG_CANENCRYPTBACKUP,
134 TWFLAG_DISPLAY,
135 TWFLAG_ENCRYPTABLE,
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500136 TWFLAG_FILEENCRYPTION,
Matt Mower2416a502016-04-12 19:54:46 -0500137 TWFLAG_FLASHIMG,
138 TWFLAG_FORCEENCRYPT,
139 TWFLAG_FSFLAGS,
140 TWFLAG_IGNOREBLKID,
141 TWFLAG_LENGTH,
142 TWFLAG_MOUNTTODECRYPT,
143 TWFLAG_REMOVABLE,
144 TWFLAG_RETAINLAYOUTVERSION,
145 TWFLAG_SETTINGSSTORAGE,
146 TWFLAG_STORAGE,
147 TWFLAG_STORAGENAME,
148 TWFLAG_SUBPARTITIONOF,
149 TWFLAG_SYMLINK,
150 TWFLAG_USERDATAENCRYPTBACKUP,
151 TWFLAG_USERMRF,
152 TWFLAG_WIPEDURINGFACTORYRESET,
153 TWFLAG_WIPEINGUI,
Ethan Yonker1b190162016-12-05 15:25:19 -0600154 TWFLAG_SLOTSELECT,
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600155 TWFLAG_WAIT,
156 TWFLAG_VERIFY,
157 TWFLAG_CHECK,
158 TWFLAG_ALTDEVICE,
159 TWFLAG_NOTRIM,
160 TWFLAG_VOLDMANAGED,
161 TWFLAG_FORMATTABLE,
162 TWFLAG_RESIZE,
Ethan Yonker93382822018-11-01 15:25:31 -0500163 TWFLAG_KEYDIRECTORY,
Peter Cai40ed06e2019-05-24 11:38:54 +0800164 TWFLAG_WRAPPEDKEY,
Peter Caic50044b2019-10-17 08:49:10 +0800165 TWFLAG_ADOPTED_MOUNT_DELAY,
Peter Cai39881ab2019-11-02 19:22:38 +0800166 TWFLAG_DM_USE_ORIGINAL_PATH,
Matt Mower2416a502016-04-12 19:54:46 -0500167};
168
169/* Flags without a trailing '=' are considered dual format flags and can be
170 * written as either 'flagname' or 'flagname=', where the character following
171 * the '=' is Y,y,1 for true and false otherwise.
172 */
173const struct flag_list tw_flags[] = {
174 { "andsec", TWFLAG_ANDSEC },
175 { "backup", TWFLAG_BACKUP },
176 { "backupname=", TWFLAG_BACKUPNAME },
177 { "blocksize=", TWFLAG_BLOCKSIZE },
178 { "canbewiped", TWFLAG_CANBEWIPED },
179 { "canencryptbackup", TWFLAG_CANENCRYPTBACKUP },
180 { "defaults", TWFLAG_DEFAULTS },
181 { "display=", TWFLAG_DISPLAY },
182 { "encryptable=", TWFLAG_ENCRYPTABLE },
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500183 { "fileencryption=", TWFLAG_FILEENCRYPTION },
Matt Mower2416a502016-04-12 19:54:46 -0500184 { "flashimg", TWFLAG_FLASHIMG },
185 { "forceencrypt=", TWFLAG_FORCEENCRYPT },
186 { "fsflags=", TWFLAG_FSFLAGS },
187 { "ignoreblkid", TWFLAG_IGNOREBLKID },
188 { "length=", TWFLAG_LENGTH },
189 { "mounttodecrypt", TWFLAG_MOUNTTODECRYPT },
190 { "removable", TWFLAG_REMOVABLE },
191 { "retainlayoutversion", TWFLAG_RETAINLAYOUTVERSION },
192 { "settingsstorage", TWFLAG_SETTINGSSTORAGE },
193 { "storage", TWFLAG_STORAGE },
194 { "storagename=", TWFLAG_STORAGENAME },
195 { "subpartitionof=", TWFLAG_SUBPARTITIONOF },
196 { "symlink=", TWFLAG_SYMLINK },
197 { "userdataencryptbackup", TWFLAG_USERDATAENCRYPTBACKUP },
198 { "usermrf", TWFLAG_USERMRF },
199 { "wipeduringfactoryreset", TWFLAG_WIPEDURINGFACTORYRESET },
200 { "wipeingui", TWFLAG_WIPEINGUI },
Ethan Yonker1b190162016-12-05 15:25:19 -0600201 { "slotselect", TWFLAG_SLOTSELECT },
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600202 { "wait", TWFLAG_WAIT },
203 { "verify", TWFLAG_VERIFY },
204 { "check", TWFLAG_CHECK },
205 { "altdevice", TWFLAG_ALTDEVICE },
206 { "notrim", TWFLAG_NOTRIM },
207 { "voldmanaged=", TWFLAG_VOLDMANAGED },
208 { "formattable", TWFLAG_FORMATTABLE },
209 { "resize", TWFLAG_RESIZE },
Ethan Yonker93382822018-11-01 15:25:31 -0500210 { "keydirectory=", TWFLAG_KEYDIRECTORY },
Peter Cai40ed06e2019-05-24 11:38:54 +0800211 { "wrappedkey", TWFLAG_WRAPPEDKEY },
Peter Caic50044b2019-10-17 08:49:10 +0800212 { "adopted_mount_delay=", TWFLAG_ADOPTED_MOUNT_DELAY },
Peter Cai39881ab2019-11-02 19:22:38 +0800213 { "dm_use_original_path", TWFLAG_DM_USE_ORIGINAL_PATH },
Matt Mower2416a502016-04-12 19:54:46 -0500214 { 0, 0 },
215};
216
that9e0593e2014-10-08 00:01:24 +0200217TWPartition::TWPartition() {
Dees_Troy51a0e822012-09-05 15:24:24 -0400218 Can_Be_Mounted = false;
219 Can_Be_Wiped = false;
Dees_Troya13d74f2013-03-24 08:54:55 -0500220 Can_Be_Backed_Up = false;
Vojtech Bocek1dc30982013-08-30 21:49:30 +0200221 Use_Rm_Rf = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400222 Wipe_During_Factory_Reset = false;
223 Wipe_Available_in_GUI = false;
224 Is_SubPartition = false;
Dees_Troy2691f9d2012-09-24 11:15:49 -0400225 Has_SubPartition = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400226 SubPartition_Of = "";
227 Symlink_Path = "";
228 Symlink_Mount_Point = "";
229 Mount_Point = "";
Dees_Troye58d5262012-09-21 12:27:57 -0400230 Backup_Path = "";
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600231 Wildcard_Block_Device = false;
232 Sysfs_Entry = "";
Dees_Troy38bd7602012-09-14 13:33:53 -0400233 Actual_Block_Device = "";
234 Primary_Block_Device = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400235 Alternate_Block_Device = "";
236 Removable = false;
237 Is_Present = false;
238 Length = 0;
239 Size = 0;
240 Used = 0;
241 Free = 0;
242 Backup_Size = 0;
243 Can_Be_Encrypted = false;
244 Is_Encrypted = false;
245 Is_Decrypted = false;
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600246 Is_FBE = false;
Ethan Yonker253368a2014-11-25 15:00:52 -0600247 Mount_To_Decrypt = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400248 Decrypted_Block_Device = "";
249 Display_Name = "";
Dees_Troya13d74f2013-03-24 08:54:55 -0500250 Backup_Display_Name = "";
251 Storage_Name = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400252 Backup_Name = "";
Dees_Troy63c8df72012-09-10 14:02:05 -0400253 Backup_FileName = "";
Dees_Troy38bd7602012-09-14 13:33:53 -0400254 MTD_Name = "";
bigbiffce8f83c2015-12-12 18:30:21 -0500255 Backup_Method = BM_NONE;
Dees_Troy83bd4832013-05-04 12:39:56 +0000256 Can_Encrypt_Backup = false;
257 Use_Userdata_Encryption = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400258 Has_Data_Media = false;
Dees_Troye58d5262012-09-21 12:27:57 -0400259 Has_Android_Secure = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400260 Is_Storage = false;
Dees_Troya13d74f2013-03-24 08:54:55 -0500261 Is_Settings_Storage = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400262 Storage_Path = "";
263 Current_File_System = "";
264 Fstab_File_System = "";
Hashcode62bd9e02013-11-19 21:59:42 -0800265 Mount_Flags = 0;
266 Mount_Options = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400267 Format_Block_Size = 0;
Dees_Troy68cab492012-12-12 19:29:35 +0000268 Ignore_Blkid = false;
Dees_Troy16c2b312013-01-15 16:51:18 +0000269 Retain_Layout_Version = false;
dianlujitao4879b372018-12-03 18:45:47 +0800270 Crypto_Key_Location = "";
Ethan Yonker726a0202014-12-16 20:01:38 -0600271 MTP_Storage_ID = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600272 Can_Flash_Img = false;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500273 Mount_Read_Only = false;
Ethan Yonker66a19492015-12-10 10:19:45 -0600274 Is_Adopted_Storage = false;
275 Adopted_GUID = "";
Ethan Yonker1b190162016-12-05 15:25:19 -0600276 SlotSelect = false;
Ethan Yonker93382822018-11-01 15:25:31 -0500277 Key_Directory = "";
Peter Caic50044b2019-10-17 08:49:10 +0800278 Adopted_Mount_Delay = 0;
Peter Cai39881ab2019-11-02 19:22:38 +0800279 Original_Path = "";
280 Use_Original_Path = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400281}
282
283TWPartition::~TWPartition(void) {
284 // Do nothing
285}
286
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100287bool TWPartition::Process_Fstab_Line(const char *fstab_line, bool Display_Error, std::map<string, Flags_Map> *twrp_flags, bool Sar_Detect) {
Matt Mower2b2dd152016-04-26 11:24:08 -0500288 char full_line[MAX_FSTAB_LINE_LENGTH];
Matt Mower2416a502016-04-12 19:54:46 -0500289 char twflags[MAX_FSTAB_LINE_LENGTH] = "";
Dees_Troy5bf43922012-09-07 16:07:55 -0400290 char* ptr;
Matt Mower2b2dd152016-04-26 11:24:08 -0500291 int line_len = strlen(fstab_line), index = 0, item_index = 0;
Dees_Troya13d74f2013-03-24 08:54:55 -0500292 bool skip = false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600293 int fstab_version = 1, mount_point_index = 0, fs_index = 1, block_device_index = 2;
294 TWPartition *additional_entry = NULL;
295 std::map<string, Flags_Map>::iterator it;
Dees_Troy5bf43922012-09-07 16:07:55 -0400296
Matt Mower2b2dd152016-04-26 11:24:08 -0500297 strlcpy(full_line, fstab_line, sizeof(full_line));
Dees_Troy51127312012-09-08 13:08:49 -0400298 for (index = 0; index < line_len; index++) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500299 if (full_line[index] == 34)
300 skip = !skip;
301 if (!skip && full_line[index] <= 32)
Dees_Troy5bf43922012-09-07 16:07:55 -0400302 full_line[index] = '\0';
Dees_Troy5bf43922012-09-07 16:07:55 -0400303 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600304 if (line_len < 10)
305 return false; // There can't possibly be a valid fstab line that is less than 10 chars
306 if (strncmp(fstab_line, "/dev/", strlen("/dev/")) == 0 || strncmp(fstab_line, "/devices/", strlen("/devices/")) == 0) {
307 fstab_version = 2;
308 block_device_index = 0;
309 mount_point_index = 1;
310 fs_index = 2;
311 }
312
313 index = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -0400314 while (index < line_len) {
315 while (index < line_len && full_line[index] == '\0')
316 index++;
317 if (index >= line_len)
318 continue;
319 ptr = full_line + index;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600320 if (item_index == mount_point_index) {
321 Mount_Point = ptr;
322 if (fstab_version == 2) {
323 additional_entry = PartitionManager.Find_Partition_By_Path(Mount_Point);
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100324 if (!Sar_Detect && additional_entry) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600325 LOGINFO("Found an additional entry for '%s'\n", Mount_Point.c_str());
326 }
327 }
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100328 if(!Sar_Detect)
329 LOGINFO("Processing '%s'\n", Mount_Point.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600330 Backup_Path = Mount_Point;
331 Storage_Path = Mount_Point;
332 Display_Name = ptr + 1;
333 Backup_Display_Name = Display_Name;
334 Storage_Name = Display_Name;
335 item_index++;
336 } else if (item_index == fs_index) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400337 // File System
338 Fstab_File_System = ptr;
339 Current_File_System = ptr;
340 item_index++;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600341 } else if (item_index == block_device_index) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400342 // Primary Block Device
Dees_Troy38bd7602012-09-14 13:33:53 -0400343 if (Fstab_File_System == "mtd" || Fstab_File_System == "yaffs2") {
Dees_Troy094207a2012-09-26 12:00:39 -0400344 MTD_Name = ptr;
345 Find_MTD_Block_Device(MTD_Name);
Dees_Troy5fcd8f92012-10-16 12:22:05 -0400346 } else if (Fstab_File_System == "bml") {
347 if (Mount_Point == "/boot")
348 MTD_Name = "boot";
349 else if (Mount_Point == "/recovery")
350 MTD_Name = "recovery";
351 Primary_Block_Device = ptr;
352 if (*ptr != '/')
Dees_Troy2673cec2013-04-02 20:22:16 +0000353 LOGERR("Until we get better BML support, you will have to find and provide the full block device path to the BML devices e.g. /dev/block/bml9 instead of the partition name\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400354 } else if (*ptr != '/') {
Dees_Troy5bf43922012-09-07 16:07:55 -0400355 if (Display_Error)
Matt Mower2b2dd152016-04-26 11:24:08 -0500356 LOGERR("Invalid block device '%s' in fstab line '%s'", ptr, fstab_line);
Dees_Troy5bf43922012-09-07 16:07:55 -0400357 else
Matt Mower2b2dd152016-04-26 11:24:08 -0500358 LOGINFO("Invalid block device '%s' in fstab line '%s'", ptr, fstab_line);
Matt Mower72c87ce2016-04-26 14:34:56 -0500359 return false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400360 } else {
361 Primary_Block_Device = ptr;
bigbiffdf224ce2021-02-26 19:36:07 -0500362 if (PartitionManager.Get_Android_Root_Path() != "/system_root")
363 Find_Real_Block_Device(Primary_Block_Device, Display_Error);
Dees_Troy5bf43922012-09-07 16:07:55 -0400364 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400365 item_index++;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600366 } else if (item_index > 2) {
367 if (fstab_version == 2) {
368 if (item_index == 3) {
369 Process_FS_Flags(ptr);
370 if (additional_entry) {
371 additional_entry->Save_FS_Flags(Fstab_File_System, Mount_Flags, Mount_Options);
372 return false; // We save the extra fs flags in the other partition entry and by returning false, this entry will be deleted
373 }
374 } else {
375 strlcpy(twflags, ptr, sizeof(twflags));
376 }
377 item_index++;
378 } else if (*ptr == '/') { // v2 fstab does not allow alternate block devices
Dees_Troy5bf43922012-09-07 16:07:55 -0400379 // Alternate Block Device
380 Alternate_Block_Device = ptr;
381 Find_Real_Block_Device(Alternate_Block_Device, Display_Error);
382 } else if (strlen(ptr) > 7 && strncmp(ptr, "length=", 7) == 0) {
383 // Partition length
384 ptr += 7;
385 Length = atoi(ptr);
Dees_Troy51127312012-09-08 13:08:49 -0400386 } else if (strlen(ptr) > 6 && strncmp(ptr, "flags=", 6) == 0) {
387 // Custom flags, save for later so that new values aren't overwritten by defaults
388 ptr += 6;
Matt Mower2416a502016-04-12 19:54:46 -0500389 strlcpy(twflags, ptr, sizeof(twflags));
Dees_Troy38bd7602012-09-14 13:33:53 -0400390 } else if (strlen(ptr) == 4 && (strncmp(ptr, "NULL", 4) == 0 || strncmp(ptr, "null", 4) == 0 || strncmp(ptr, "null", 4) == 0)) {
391 // Do nothing
Dees_Troy5bf43922012-09-07 16:07:55 -0400392 } else {
393 // Unhandled data
Matt Mower2b2dd152016-04-26 11:24:08 -0500394 LOGINFO("Unhandled fstab information '%s' in fstab line '%s'\n", ptr, fstab_line);
Dees_Troy5bf43922012-09-07 16:07:55 -0400395 }
396 }
397 while (index < line_len && full_line[index] != '\0')
398 index++;
399 }
400
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600401 // override block devices from the v2 fstab with the ones we read from the twrp.flags file in case they are different
402 if (fstab_version == 2 && twrp_flags && twrp_flags->size() > 0) {
403 it = twrp_flags->find(Mount_Point);
404 if (it != twrp_flags->end()) {
405 if (!it->second.Primary_Block_Device.empty()) {
406 Primary_Block_Device = it->second.Primary_Block_Device;
407 Find_Real_Block_Device(Primary_Block_Device, Display_Error);
408 }
409 if (!it->second.Alternate_Block_Device.empty()) {
410 Alternate_Block_Device = it->second.Alternate_Block_Device;
411 Find_Real_Block_Device(Alternate_Block_Device, Display_Error);
412 }
413 }
414 }
415
416 if (strncmp(fstab_line, "/devices/", strlen("/devices/")) == 0) {
417 Sysfs_Entry = Primary_Block_Device;
418 Primary_Block_Device = "";
419 Is_Storage = true;
420 Removable = true;
421 Wipe_Available_in_GUI = true;
422 Wildcard_Block_Device = true;
423 }
424 if (Primary_Block_Device.find("*") != string::npos)
425 Wildcard_Block_Device = true;
426
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100427 if (Sar_Detect) {
428 if(Is_File_System(Fstab_File_System) && (Mount_Point == "/" || Mount_Point == "/system" || Mount_Point == "/system_root"))
429 Find_Actual_Block_Device();
430 else
431 return true;
432 } else if (Mount_Point == "auto") {
Captain Throwback4e379532020-06-05 20:42:16 -0400433 Mount_Point = "/auto";
434 char autoi[5];
435 sprintf(autoi, "%i", auto_index);
436 Mount_Point += autoi;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600437 Backup_Path = Mount_Point;
438 Storage_Path = Mount_Point;
dianlujitaob76a73a2020-04-30 20:33:20 +0800439 Backup_Name = Mount_Point.substr(1);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600440 auto_index++;
441 Setup_File_System(Display_Error);
442 Display_Name = "Storage";
443 Backup_Display_Name = Display_Name;
444 Storage_Name = Display_Name;
445 Can_Be_Backed_Up = false;
446 Wipe_Available_in_GUI = true;
447 Is_Storage = true;
448 Removable = true;
449 Wipe_Available_in_GUI = true;
450 } else if (!Is_File_System(Fstab_File_System) && !Is_Image(Fstab_File_System)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400451 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000452 LOGERR("Unknown File System: '%s'\n", Fstab_File_System.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400453 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000454 LOGINFO("Unknown File System: '%s'\n", Fstab_File_System.c_str());
Matt Mower72c87ce2016-04-26 14:34:56 -0500455 return false;
Dees_Troy5bf43922012-09-07 16:07:55 -0400456 } else if (Is_File_System(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400457 Find_Actual_Block_Device();
Dees_Troy5bf43922012-09-07 16:07:55 -0400458 Setup_File_System(Display_Error);
dianlujitaob76a73a2020-04-30 20:33:20 +0800459 Backup_Name = Display_Name = Mount_Point.substr(1, Mount_Point.size() - 1);
Chaosmaster3b682732020-01-25 21:09:28 +0100460 if (Mount_Point == "/" || Mount_Point == "/system" || Mount_Point == "/system_root") {
Dees_Troy5bf43922012-09-07 16:07:55 -0400461 Display_Name = "System";
dianlujitaob76a73a2020-04-30 20:33:20 +0800462 Backup_Name = "system";
Dees_Troya13d74f2013-03-24 08:54:55 -0500463 Backup_Display_Name = Display_Name;
464 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400465 Wipe_Available_in_GUI = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500466 Can_Be_Backed_Up = true;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500467 Mount_Read_Only = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400468 } else if (Mount_Point == "/data") {
469 Display_Name = "Data";
Dees_Troya13d74f2013-03-24 08:54:55 -0500470 Backup_Display_Name = Display_Name;
471 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400472 Wipe_Available_in_GUI = true;
Dees_Troy51127312012-09-08 13:08:49 -0400473 Wipe_During_Factory_Reset = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500474 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000475 Can_Encrypt_Backup = true;
476 Use_Userdata_Encryption = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400477 } else if (Mount_Point == "/cache") {
478 Display_Name = "Cache";
Dees_Troya13d74f2013-03-24 08:54:55 -0500479 Backup_Display_Name = Display_Name;
480 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400481 Wipe_Available_in_GUI = true;
Dees_Troy51127312012-09-08 13:08:49 -0400482 Wipe_During_Factory_Reset = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500483 Can_Be_Backed_Up = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400484 } else if (Mount_Point == "/datadata") {
Dees_Troy51127312012-09-08 13:08:49 -0400485 Wipe_During_Factory_Reset = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400486 Display_Name = "DataData";
Dees_Troya13d74f2013-03-24 08:54:55 -0500487 Backup_Display_Name = Display_Name;
488 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400489 Is_SubPartition = true;
490 SubPartition_Of = "/data";
Dees_Troy5bf43922012-09-07 16:07:55 -0400491 DataManager::SetValue(TW_HAS_DATADATA, 1);
Dees_Troya13d74f2013-03-24 08:54:55 -0500492 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000493 Can_Encrypt_Backup = true;
494 Use_Userdata_Encryption = false; // This whole partition should be encrypted
Dees_Troy5bf43922012-09-07 16:07:55 -0400495 } else if (Mount_Point == "/sd-ext") {
Dees_Troy51127312012-09-08 13:08:49 -0400496 Wipe_During_Factory_Reset = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400497 Display_Name = "SD-Ext";
Dees_Troya13d74f2013-03-24 08:54:55 -0500498 Backup_Display_Name = Display_Name;
499 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400500 Wipe_Available_in_GUI = true;
Dees_Troyc51f1f92012-09-20 15:32:13 -0400501 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500502 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000503 Can_Encrypt_Backup = true;
504 Use_Userdata_Encryption = true;
Dees_Troy2c50e182012-09-26 20:05:28 -0400505 } else if (Mount_Point == "/boot") {
506 Display_Name = "Boot";
Dees_Troya13d74f2013-03-24 08:54:55 -0500507 Backup_Display_Name = Display_Name;
Dees_Troy2c50e182012-09-26 20:05:28 -0400508 DataManager::SetValue("tw_boot_is_mountable", 1);
Dees_Troya13d74f2013-03-24 08:54:55 -0500509 Can_Be_Backed_Up = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500510 } else if (Mount_Point == "/vendor") {
511 Display_Name = "Vendor";
512 Backup_Display_Name = Display_Name;
513 Storage_Name = Display_Name;
514 Mount_Read_Only = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400515 }
516#ifdef TW_EXTERNAL_STORAGE_PATH
517 if (Mount_Point == EXPAND(TW_EXTERNAL_STORAGE_PATH)) {
518 Is_Storage = true;
519 Storage_Path = EXPAND(TW_EXTERNAL_STORAGE_PATH);
Dees_Troyc51f1f92012-09-20 15:32:13 -0400520 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500521 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400522#else
Dees_Troy70737fa2013-04-08 13:19:20 +0000523 if (Mount_Point == "/sdcard" || Mount_Point == "/external_sd" || Mount_Point == "/external_sdcard") {
Dees_Troy8170a922012-09-18 15:40:25 -0400524 Is_Storage = true;
Dees_Troyc51f1f92012-09-20 15:32:13 -0400525 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500526 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400527#endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000528 }
Dees_Troy8170a922012-09-18 15:40:25 -0400529#ifdef TW_INTERNAL_STORAGE_PATH
530 if (Mount_Point == EXPAND(TW_INTERNAL_STORAGE_PATH)) {
531 Is_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500532 Is_Settings_Storage = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400533 Storage_Path = EXPAND(TW_INTERNAL_STORAGE_PATH);
Dees_Troya13d74f2013-03-24 08:54:55 -0500534 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400535 }
536#else
Dees_Troy70737fa2013-04-08 13:19:20 +0000537 if (Mount_Point == "/emmc" || Mount_Point == "/internal_sd" || Mount_Point == "/internal_sdcard") {
Dees_Troy8170a922012-09-18 15:40:25 -0400538 Is_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500539 Is_Settings_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500540 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400541 }
542#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400543 } else if (Is_Image(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400544 Find_Actual_Block_Device();
Ethan Yonker1b190162016-12-05 15:25:19 -0600545 Setup_Image();
Dees_Troya13d74f2013-03-24 08:54:55 -0500546 if (Mount_Point == "/boot") {
547 Display_Name = "Boot";
548 Backup_Display_Name = Display_Name;
549 Can_Be_Backed_Up = true;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600550 Can_Flash_Img = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500551 } else if (Mount_Point == "/recovery") {
552 Display_Name = "Recovery";
553 Backup_Display_Name = Display_Name;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600554 Can_Flash_Img = true;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500555 } else if (Mount_Point == "/system_image") {
556 Display_Name = "System Image";
557 Backup_Display_Name = Display_Name;
HashBanged974bb2016-01-30 14:20:09 -0500558 Can_Flash_Img = true;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500559 Can_Be_Backed_Up = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500560 } else if (Mount_Point == "/vendor_image") {
561 Display_Name = "Vendor Image";
562 Backup_Display_Name = Display_Name;
HashBanged974bb2016-01-30 14:20:09 -0500563 Can_Flash_Img = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500564 Can_Be_Backed_Up = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500565 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400566 }
567
Matt Mower2416a502016-04-12 19:54:46 -0500568 // Process TWRP fstab flags
569 if (strlen(twflags) > 0) {
570 string Prev_Display_Name = Display_Name;
571 string Prev_Storage_Name = Storage_Name;
572 string Prev_Backup_Display_Name = Backup_Display_Name;
573 Display_Name = "";
574 Storage_Name = "";
575 Backup_Display_Name = "";
576
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600577 Process_TW_Flags(twflags, (fstab_version == 1), fstab_version);
578 Save_FS_Flags(Fstab_File_System, Mount_Flags, Mount_Options);
Matt Mower2416a502016-04-12 19:54:46 -0500579
580 bool has_display_name = !Display_Name.empty();
581 bool has_storage_name = !Storage_Name.empty();
582 bool has_backup_name = !Backup_Display_Name.empty();
583 if (!has_display_name) Display_Name = Prev_Display_Name;
584 if (!has_storage_name) Storage_Name = Prev_Storage_Name;
585 if (!has_backup_name) Backup_Display_Name = Prev_Backup_Display_Name;
586
587 if (has_display_name && !has_storage_name)
588 Storage_Name = Display_Name;
589 if (!has_display_name && has_storage_name)
590 Display_Name = Storage_Name;
591 if (has_display_name && !has_backup_name && Backup_Display_Name != "Android Secure")
592 Backup_Display_Name = Display_Name;
593 if (!has_display_name && has_backup_name)
594 Display_Name = Backup_Display_Name;
595 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600596
597 if (fstab_version == 2 && twrp_flags && twrp_flags->size() > 0) {
598 it = twrp_flags->find(Mount_Point);
599 if (it != twrp_flags->end()) {
600 char twrpflags[MAX_FSTAB_LINE_LENGTH] = "";
601 int skip = 0;
602 string Flags = it->second.Flags;
603 strcpy(twrpflags, Flags.c_str());
604 if (strlen(twrpflags) > strlen("flags=") && strncmp(twrpflags, "flags=", strlen("flags=")) == 0)
605 skip += strlen("flags=");
606 char* flagptr = twrpflags;
607 flagptr += skip;
608 Process_TW_Flags(flagptr, Display_Error, 1); // Forcing the fstab to ver 1 because this data is coming from the /etc/twrp.flags which should be using the TWRP v1 flags format
609 }
610 }
nkk7198fc3992017-12-16 16:26:42 +0200611
612 if (Mount_Point == "/persist" && Can_Be_Mounted) {
613 bool mounted = Is_Mounted();
614 if (mounted || Mount(false)) {
615 // Read the backup settings file
nkk7198fc3992017-12-16 16:26:42 +0200616 TWFunc::Fixup_Time_On_Boot("/persist/time/");
617 if (!mounted)
618 UnMount(false);
619 }
620 }
621
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100622 if (Is_File_System(Fstab_File_System) && (Mount_Point == "/" || Mount_Point == "/system" || Mount_Point == "/system_root")) {
623 if (Sar_Detect) {
624 Mount_Point = "/s";
625 Mount_Read_Only = true;
626 Can_Be_Mounted = true;
627 } else {
628 Mount_Point = PartitionManager.Get_Android_Root_Path();
629 Backup_Path = Mount_Point;
630 Storage_Path = Mount_Point;
631 Make_Dir(Mount_Point, Display_Error);
632 }
633 }
634
Dees_Troy51127312012-09-08 13:08:49 -0400635 return true;
636}
637
Matt Mower72c87ce2016-04-26 14:34:56 -0500638void TWPartition::Partition_Post_Processing(bool Display_Error) {
639 if (Mount_Point == "/data")
640 Setup_Data_Partition(Display_Error);
641 else if (Mount_Point == "/cache")
642 Setup_Cache_Partition(Display_Error);
643}
644
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600645void TWPartition::ExcludeAll(const string& path) {
646 backup_exclusions.add_absolute_dir(path);
647 wipe_exclusions.add_absolute_dir(path);
648}
649
Matt Mower72c87ce2016-04-26 14:34:56 -0500650void TWPartition::Setup_Data_Partition(bool Display_Error) {
651 if (Mount_Point != "/data")
652 return;
653
654 // Ensure /data is not mounted as tmpfs for qcom hardware decrypt
655 UnMount(false);
656
657#ifdef TW_INCLUDE_CRYPTO
658 if (datamedia)
659 Setup_Data_Media();
660 Can_Be_Encrypted = true;
661 char crypto_blkdev[255];
662 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
663 if (strcmp(crypto_blkdev, "error") != 0) {
664 DataManager::SetValue(TW_IS_DECRYPTED, 1);
665 Is_Encrypted = true;
666 Is_Decrypted = true;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400667 if (Key_Directory.empty()) {
Ethan Yonker93382822018-11-01 15:25:31 -0500668 Is_FBE = false;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400669 DataManager::SetValue(TW_IS_FBE, 0);
670 } else {
Ethan Yonker93382822018-11-01 15:25:31 -0500671 Is_FBE = true;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400672 DataManager::SetValue(TW_IS_FBE, 1);
673 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500674 Decrypted_Block_Device = crypto_blkdev;
675 LOGINFO("Data already decrypted, new block device: '%s'\n", crypto_blkdev);
676 } else if (!Mount(false)) {
677 if (Is_Present) {
Ethan Yonker93382822018-11-01 15:25:31 -0500678 if (Key_Directory.empty()) {
Peter Cai39881ab2019-11-02 19:22:38 +0800679 set_partition_data(Use_Original_Path ? Original_Path.c_str() : Actual_Block_Device.c_str(), Crypto_Key_Location.c_str(),
Noah Jacobson5a79f672019-04-28 00:10:07 -0400680 Fstab_File_System.c_str());
Ethan Yonker93382822018-11-01 15:25:31 -0500681 if (cryptfs_check_footer() == 0) {
682 Is_Encrypted = true;
683 Is_Decrypted = false;
684 Can_Be_Mounted = false;
685 Current_File_System = "emmc";
686 Setup_Image();
687 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
688 DataManager::SetValue(TW_CRYPTO_PWTYPE, cryptfs_get_password_type());
Noah Jacobson5a79f672019-04-28 00:10:07 -0400689 DataManager::SetValue("tw_crypto_pwtype_0", cryptfs_get_password_type());
Ethan Yonker93382822018-11-01 15:25:31 -0500690 DataManager::SetValue(TW_CRYPTO_PASSWORD, "");
691 DataManager::SetValue("tw_crypto_display", "");
692 } else {
693 gui_err("mount_data_footer=Could not mount /data and unable to find crypto footer.");
694 }
695 } else {
Matt Mower72c87ce2016-04-26 14:34:56 -0500696 Is_Encrypted = true;
697 Is_Decrypted = false;
Matt Mower72c87ce2016-04-26 14:34:56 -0500698 }
Ethan Yonker93382822018-11-01 15:25:31 -0500699 } else if (Key_Directory.empty()) {
Noah Jacobson5a79f672019-04-28 00:10:07 -0400700 LOGERR("Primary block device '%s' for mount point '%s' is not present!\n",
701 Primary_Block_Device.c_str(), Mount_Point.c_str());
Matt Mower72c87ce2016-04-26 14:34:56 -0500702 }
703 } else {
Captain Throwback83c22342020-12-29 15:54:33 -0500704 int is_device_fbe;
705 DataManager::GetValue(TW_IS_FBE, is_device_fbe);
706 if (!Decrypt_FBE_DE() && is_device_fbe == 1) {
mauronofrio1db94322019-11-23 23:13:04 +0100707 char wrappedvalue[PROPERTY_VALUE_MAX];
708 property_get("fbe.data.wrappedkey", wrappedvalue, "");
709 std::string wrappedkeyvalue(wrappedvalue);
710 if (wrappedkeyvalue == "true") {
711 LOGERR("Unable to decrypt FBE device\n");
712 } else {
713 LOGINFO("Trying wrapped key.\n");
714 property_set("fbe.data.wrappedkey", "true");
mauronofrio9bf73352019-11-23 22:27:34 +0100715 if (!Decrypt_FBE_DE()) {
Mauronofrio Matarrese6d5d08a2019-12-03 14:25:25 +0100716 LOGINFO("Unable to decrypt device\n");
mauronofrio9bf73352019-11-23 22:27:34 +0100717 }
mauronofrio1db94322019-11-23 23:13:04 +0100718 }
mauronofrio9bf73352019-11-23 22:27:34 +0100719 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500720 }
721 if (datamedia && (!Is_Encrypted || (Is_Encrypted && Is_Decrypted))) {
722 Setup_Data_Media();
723 Recreate_Media_Folder();
724 }
725#else
726 if (datamedia) {
727 Setup_Data_Media();
728 Recreate_Media_Folder();
729 }
730#endif
731}
732
Ethan Yonker93382822018-11-01 15:25:31 -0500733bool TWPartition::Decrypt_FBE_DE() {
734if (TWFunc::Path_Exists("/data/unencrypted/key/version")) {
Captain Throwbackcf0dffc2020-02-17 16:44:50 -0500735 DataManager::SetValue(TW_IS_FBE, 1);
Captain Throwbacka1ad7eb2021-10-06 11:38:18 -0400736 PartitionManager.Set_Crypto_State();
737 PartitionManager.Set_Crypto_Type("file");
Ethan Yonker93382822018-11-01 15:25:31 -0500738 LOGINFO("File Based Encryption is present\n");
739#ifdef TW_INCLUDE_FBE
Noah Jacobson5a79f672019-04-28 00:10:07 -0400740 Is_FBE = true;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400741 ExcludeAll(Mount_Point + "/convert_fbe");
742 ExcludeAll(Mount_Point + "/unencrypted");
743 ExcludeAll(Mount_Point + "/misc/vold/user_keys");
744 ExcludeAll(Mount_Point + "/system/gatekeeper.password.key");
745 ExcludeAll(Mount_Point + "/system/gatekeeper.pattern.key");
746 ExcludeAll(Mount_Point + "/system/locksettings.db");
747 ExcludeAll(Mount_Point + "/system/locksettings.db-wal");
748 ExcludeAll(Mount_Point + "/misc/gatekeeper");
749 ExcludeAll(Mount_Point + "/misc/keystore");
750 ExcludeAll(Mount_Point + "/drm/kek.dat");
751 ExcludeAll(Mount_Point + "/system_de/0/spblob"); // contains data needed to decrypt pixel 2
752 ExcludeAll(Mount_Point + "/system/users/0/gatekeeper.password.key");
753 ExcludeAll(Mount_Point + "/system/users/0/gatekeeper.pattern.key");
Noah Jacobson5a79f672019-04-28 00:10:07 -0400754 int retry_count = 3;
755 while (!Decrypt_DE() && --retry_count)
756 usleep(2000);
Noah Jacobson5a79f672019-04-28 00:10:07 -0400757 if (retry_count > 0) {
Captain Throwbacka1ad7eb2021-10-06 11:38:18 -0400758 PartitionManager.Set_Crypto_State();
Noah Jacobson5a79f672019-04-28 00:10:07 -0400759 Is_Encrypted = true;
760 Is_Decrypted = false;
761 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
762 string filename;
763 int pwd_type = Get_Password_Type(0, filename);
764 if (pwd_type < 0) {
765 LOGERR("This TWRP does not have synthetic password decrypt support\n");
766 pwd_type = 0; // default password
767 }
Noah Jacobsonbf0b0fb2020-06-05 12:47:20 -0400768 PartitionManager.Parse_Users(); // after load_all_de_keys() to parse_users
769 std::vector<users_struct>::iterator iter;
770 std::vector<users_struct>* userList = PartitionManager.Get_Users_List();
771 for (iter = userList->begin(); iter != userList->end(); iter++) {
772 if (atoi((*iter).userId.c_str()) != 0) {
773 ExcludeAll(Mount_Point + "/system_de/" + (*iter).userId + "/spblob");
774 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/gatekeeper.password.key");
775 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/gatekeeper.pattern.key");
776 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/locksettings.db");
777 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/locksettings.db-wal");
778 }
779 }
Noah Jacobson5a79f672019-04-28 00:10:07 -0400780 DataManager::SetValue(TW_CRYPTO_PWTYPE, pwd_type);
781 DataManager::SetValue("tw_crypto_pwtype_0", pwd_type);
782 DataManager::SetValue(TW_CRYPTO_PASSWORD, "");
783 DataManager::SetValue("tw_crypto_display", "");
784 return true;
785 }
Ethan Yonker93382822018-11-01 15:25:31 -0500786#else
787 LOGERR("FBE found but FBE support not present in TWRP\n");
788#endif
789 }
Captain Throwbackcf0dffc2020-02-17 16:44:50 -0500790 DataManager::SetValue(TW_IS_FBE, 0);
Ethan Yonker93382822018-11-01 15:25:31 -0500791 return false;
792}
793
Matt Mower72c87ce2016-04-26 14:34:56 -0500794void TWPartition::Setup_Cache_Partition(bool Display_Error __unused) {
795 if (Mount_Point != "/cache")
796 return;
797
798 if (!Mount(true))
799 return;
800
801 if (!TWFunc::Path_Exists("/cache/recovery/.")) {
802 LOGINFO("Recreating /cache/recovery folder\n");
803 if (mkdir("/cache/recovery", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0)
804 LOGERR("Could not create /cache/recovery\n");
805 }
806}
807
Matt Mower4ab42b12016-04-21 13:52:18 -0500808void TWPartition::Process_FS_Flags(const char *str) {
809 char *options = strdup(str);
810 char *ptr, *savep;
Hashcode62bd9e02013-11-19 21:59:42 -0800811
Matt Mower4ab42b12016-04-21 13:52:18 -0500812 Mount_Options = "";
Hashcode62bd9e02013-11-19 21:59:42 -0800813
Matt Mower4ab42b12016-04-21 13:52:18 -0500814 // Avoid issues with potentially nested strtok by using strtok_r
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600815 for (ptr = strtok_r(options, ",", &savep); ptr; ptr = strtok_r(NULL, ",", &savep)) {
816 char *equals = strstr(ptr, "=");
817 size_t name_len;
Matt Mower4ab42b12016-04-21 13:52:18 -0500818
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600819 if (!equals)
820 name_len = strlen(ptr);
821 else
822 name_len = equals - ptr;
823
824 // There are some flags that we want to ignore in TWRP
825 bool found_match = false;
826 for (const char** ignored_mount_item = ignored_mount_items; *ignored_mount_item; ignored_mount_item++) {
827 if (strncmp(ptr, *ignored_mount_item, name_len) == 0) {
828 found_match = true;
Hashcode62bd9e02013-11-19 21:59:42 -0800829 break;
830 }
831 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600832 if (found_match)
833 continue;
Hashcode62bd9e02013-11-19 21:59:42 -0800834
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600835 // mount_flags are never postfixed by '='
836 if (!equals) {
837 const struct flag_list* mount_flag = mount_flags;
838 for (; mount_flag->name; mount_flag++) {
839 if (strcmp(ptr, mount_flag->name) == 0) {
840 if (mount_flag->flag == MS_RDONLY)
841 Mount_Read_Only = true;
842 else
843 Mount_Flags |= (unsigned)mount_flag->flag;
844 found_match = true;
845 break;
846 }
847 }
848 if (found_match)
849 continue;
Matt Mower4ab42b12016-04-21 13:52:18 -0500850 }
851
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600852 // If we aren't ignoring this flag and it's not a mount flag, then it must be a mount option
853 if (!Mount_Options.empty())
854 Mount_Options += ",";
855 Mount_Options += ptr;
Matt Mower4ab42b12016-04-21 13:52:18 -0500856 }
857 free(options);
Hashcode62bd9e02013-11-19 21:59:42 -0800858}
859
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600860void TWPartition::Save_FS_Flags(const string& local_File_System, int local_Mount_Flags, const string& local_Mount_Options) {
861 partition_fs_flags_struct flags;
862 flags.File_System = local_File_System;
863 flags.Mount_Flags = local_Mount_Flags;
864 flags.Mount_Options = local_Mount_Options;
865 fs_flags.push_back(flags);
866}
867
Matt Mower2416a502016-04-12 19:54:46 -0500868void TWPartition::Apply_TW_Flag(const unsigned flag, const char* str, const bool val) {
869 switch (flag) {
870 case TWFLAG_ANDSEC:
871 Has_Android_Secure = val;
872 break;
873 case TWFLAG_BACKUP:
874 Can_Be_Backed_Up = val;
875 break;
876 case TWFLAG_BACKUPNAME:
877 Backup_Display_Name = str;
878 break;
879 case TWFLAG_BLOCKSIZE:
880 Format_Block_Size = (unsigned long)(atol(str));
881 break;
882 case TWFLAG_CANBEWIPED:
883 Can_Be_Wiped = val;
884 break;
885 case TWFLAG_CANENCRYPTBACKUP:
886 Can_Encrypt_Backup = val;
887 break;
888 case TWFLAG_DEFAULTS:
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600889 case TWFLAG_WAIT:
890 case TWFLAG_VERIFY:
891 case TWFLAG_CHECK:
892 case TWFLAG_NOTRIM:
893 case TWFLAG_VOLDMANAGED:
894 case TWFLAG_RESIZE:
Matt Mower2416a502016-04-12 19:54:46 -0500895 // Do nothing
896 break;
897 case TWFLAG_DISPLAY:
898 Display_Name = str;
899 break;
900 case TWFLAG_ENCRYPTABLE:
901 case TWFLAG_FORCEENCRYPT:
902 Crypto_Key_Location = str;
903 break;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500904 case TWFLAG_FILEENCRYPTION:
905 // This flag isn't used by TWRP but is needed in 9.0 FBE decrypt
906 // fileencryption=ice:aes-256-heh
907 {
908 std::string FBE = str;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500909 size_t colon_loc = FBE.find(":");
910 if (colon_loc == std::string::npos) {
Ethan Yonker93382822018-11-01 15:25:31 -0500911 property_set("fbe.contents", FBE.c_str());
912 property_set("fbe.filenames", "");
913 LOGINFO("FBE contents '%s', filenames ''\n", FBE.c_str());
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500914 break;
915 }
Ethan Yonker93382822018-11-01 15:25:31 -0500916 std::string FBE_contents, FBE_filenames;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500917 FBE_contents = FBE.substr(0, colon_loc);
918 FBE_filenames = FBE.substr(colon_loc + 1);
919 property_set("fbe.contents", FBE_contents.c_str());
920 property_set("fbe.filenames", FBE_filenames.c_str());
921 LOGINFO("FBE contents '%s', filenames '%s'\n", FBE_contents.c_str(), FBE_filenames.c_str());
922 }
923 break;
Peter Cai40ed06e2019-05-24 11:38:54 +0800924 case TWFLAG_WRAPPEDKEY:
925 // Set fbe.data.wrappedkey to true
926 {
927 property_set("fbe.data.wrappedkey", "true");
928 LOGINFO("FBE wrapped key enabled\n");
929 }
930 break;
Matt Mower2416a502016-04-12 19:54:46 -0500931 case TWFLAG_FLASHIMG:
932 Can_Flash_Img = val;
933 break;
934 case TWFLAG_FSFLAGS:
Matt Mower4ab42b12016-04-21 13:52:18 -0500935 Process_FS_Flags(str);
Matt Mower2416a502016-04-12 19:54:46 -0500936 break;
937 case TWFLAG_IGNOREBLKID:
938 Ignore_Blkid = val;
939 break;
940 case TWFLAG_LENGTH:
941 Length = atoi(str);
942 break;
943 case TWFLAG_MOUNTTODECRYPT:
944 Mount_To_Decrypt = val;
945 break;
946 case TWFLAG_REMOVABLE:
947 Removable = val;
948 break;
949 case TWFLAG_RETAINLAYOUTVERSION:
950 Retain_Layout_Version = val;
951 break;
952 case TWFLAG_SETTINGSSTORAGE:
953 Is_Settings_Storage = val;
954 if (Is_Settings_Storage)
955 Is_Storage = true;
956 break;
957 case TWFLAG_STORAGE:
958 Is_Storage = val;
959 break;
960 case TWFLAG_STORAGENAME:
961 Storage_Name = str;
962 break;
963 case TWFLAG_SUBPARTITIONOF:
964 Is_SubPartition = true;
965 SubPartition_Of = str;
966 break;
967 case TWFLAG_SYMLINK:
968 Symlink_Path = str;
969 break;
970 case TWFLAG_USERDATAENCRYPTBACKUP:
971 Use_Userdata_Encryption = val;
972 if (Use_Userdata_Encryption)
973 Can_Encrypt_Backup = true;
974 break;
975 case TWFLAG_USERMRF:
976 Use_Rm_Rf = val;
977 break;
978 case TWFLAG_WIPEDURINGFACTORYRESET:
979 Wipe_During_Factory_Reset = val;
980 if (Wipe_During_Factory_Reset) {
981 Can_Be_Wiped = true;
982 Wipe_Available_in_GUI = true;
983 }
984 break;
985 case TWFLAG_WIPEINGUI:
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600986 case TWFLAG_FORMATTABLE:
Matt Mower2416a502016-04-12 19:54:46 -0500987 Wipe_Available_in_GUI = val;
988 if (Wipe_Available_in_GUI)
989 Can_Be_Wiped = true;
990 break;
Ethan Yonker1b190162016-12-05 15:25:19 -0600991 case TWFLAG_SLOTSELECT:
992 SlotSelect = true;
993 break;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600994 case TWFLAG_ALTDEVICE:
995 Alternate_Block_Device = str;
996 break;
Peter Caic50044b2019-10-17 08:49:10 +0800997 case TWFLAG_ADOPTED_MOUNT_DELAY:
998 Adopted_Mount_Delay = atoi(str);
999 break;
Ethan Yonker93382822018-11-01 15:25:31 -05001000 case TWFLAG_KEYDIRECTORY:
1001 Key_Directory = str;
Peter Cai39881ab2019-11-02 19:22:38 +08001002 case TWFLAG_DM_USE_ORIGINAL_PATH:
1003 Use_Original_Path = true;
Matt Mower2416a502016-04-12 19:54:46 -05001004 default:
1005 // Should not get here
1006 LOGINFO("Flag identified for processing, but later unmatched: %i\n", flag);
1007 break;
1008 }
1009}
Dees_Troy51127312012-09-08 13:08:49 -04001010
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001011void TWPartition::Process_TW_Flags(char *flags, bool Display_Error, int fstab_ver) {
Matt Mower2416a502016-04-12 19:54:46 -05001012 char separator[2] = {'\n', 0};
1013 char *ptr, *savep;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001014 char source_separator = ';';
1015
1016 if (fstab_ver == 2)
1017 source_separator = ',';
Matt Mower2416a502016-04-12 19:54:46 -05001018
1019 // Semicolons within double-quotes are not forbidden, so replace
1020 // only the semicolons intended as separators with '\n' for strtok
1021 for (unsigned i = 0, skip = 0; i < strlen(flags); i++) {
1022 if (flags[i] == '\"')
Dees_Troya13d74f2013-03-24 08:54:55 -05001023 skip = !skip;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001024 if (!skip && flags[i] == source_separator)
Matt Mower2416a502016-04-12 19:54:46 -05001025 flags[i] = separator[0];
Dees_Troy51127312012-09-08 13:08:49 -04001026 }
1027
Matt Mower2416a502016-04-12 19:54:46 -05001028 // Avoid issues with potentially nested strtok by using strtok_r
1029 ptr = strtok_r(flags, separator, &savep);
1030 while (ptr) {
1031 int ptr_len = strlen(ptr);
1032 const struct flag_list* tw_flag = tw_flags;
Hashcode62bd9e02013-11-19 21:59:42 -08001033
Matt Mower2416a502016-04-12 19:54:46 -05001034 for (; tw_flag->name; tw_flag++) {
1035 int flag_len = strlen(tw_flag->name);
1036
1037 if (strncmp(ptr, tw_flag->name, flag_len) == 0) {
1038 bool flag_val = false;
1039
1040 if (ptr_len > flag_len && (tw_flag->name)[flag_len-1] != '='
1041 && ptr[flag_len] != '=') {
1042 // Handle flags with same starting string
1043 // (e.g. backup and backupname)
1044 continue;
1045 } else if (ptr_len > flag_len && ptr[flag_len] == '=') {
1046 // Handle flags with dual format: Part 1
1047 // (e.g. backup and backup=y. backup=y handled here)
1048 ptr += flag_len + 1;
1049 TWFunc::Strip_Quotes(ptr);
1050 // Skip flags with empty argument
1051 // (e.g. backup=)
1052 if (strlen(ptr) == 0) {
1053 LOGINFO("Flag missing argument or should not include '=': %s=\n", tw_flag->name);
1054 break;
1055 }
1056 flag_val = strchr("yY1", *ptr) != NULL;
1057 } else if (ptr_len == flag_len
1058 && (tw_flag->name)[flag_len-1] == '=') {
1059 // Skip flags missing argument after =
1060 // (e.g. backupname=)
1061 LOGINFO("Flag missing argument: %s\n", tw_flag->name);
1062 break;
1063 } else if (ptr_len > flag_len
1064 && (tw_flag->name)[flag_len-1] == '=') {
1065 // Handle arguments to flags
1066 // (e.g. backupname="My Stuff")
1067 ptr += flag_len;
1068 TWFunc::Strip_Quotes(ptr);
1069 // Skip flags with empty argument
1070 // (e.g. backupname="")
1071 if (strlen(ptr) == 0) {
1072 LOGINFO("Flag missing argument: %s\n", tw_flag->name);
1073 break;
1074 }
1075 } else if (ptr_len == flag_len) {
1076 // Handle flags with dual format: Part 2
1077 // (e.g. backup and backup=y. backup handled here)
1078 flag_val = true;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001079 } else {
Matt Mower2416a502016-04-12 19:54:46 -05001080 LOGINFO("Flag matched, but could not be processed: %s\n", ptr);
1081 break;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001082 }
Matt Mower2416a502016-04-12 19:54:46 -05001083
1084 Apply_TW_Flag(tw_flag->flag, ptr, flag_val);
1085 break;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001086 }
Matt Mower2416a502016-04-12 19:54:46 -05001087 }
1088 if (tw_flag->name == 0) {
Dees_Troy51127312012-09-08 13:08:49 -04001089 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001090 LOGERR("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -04001091 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001092 LOGINFO("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -04001093 }
Matt Mower2416a502016-04-12 19:54:46 -05001094 ptr = strtok_r(NULL, separator, &savep);
Dees_Troy51127312012-09-08 13:08:49 -04001095 }
Dees_Troy51a0e822012-09-05 15:24:24 -04001096}
1097
Dees_Troy5bf43922012-09-07 16:07:55 -04001098bool TWPartition::Is_File_System(string File_System) {
1099 if (File_System == "ext2" ||
Dees_Troy63c8df72012-09-10 14:02:05 -04001100 File_System == "ext3" ||
Dees_Troy5bf43922012-09-07 16:07:55 -04001101 File_System == "ext4" ||
1102 File_System == "vfat" ||
1103 File_System == "ntfs" ||
1104 File_System == "yaffs2" ||
bigbiff bigbiff3e146522012-11-14 14:32:59 -05001105 File_System == "exfat" ||
Dees_Troye5017042013-08-29 16:38:55 +00001106 File_System == "f2fs" ||
Erfan Abdib859e912019-02-05 18:18:46 +02001107 File_System == "squashfs" ||
Dees_Troy5bf43922012-09-07 16:07:55 -04001108 File_System == "auto")
1109 return true;
1110 else
1111 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001112}
1113
Dees_Troy5bf43922012-09-07 16:07:55 -04001114bool TWPartition::Is_Image(string File_System) {
Dees_Troy5fcd8f92012-10-16 12:22:05 -04001115 if (File_System == "emmc" || File_System == "mtd" || File_System == "bml")
Dees_Troy5bf43922012-09-07 16:07:55 -04001116 return true;
1117 else
1118 return false;
1119}
1120
Dees_Troy51127312012-09-08 13:08:49 -04001121bool TWPartition::Make_Dir(string Path, bool Display_Error) {
Ethan Yonker93ac7a02016-11-07 22:05:58 -06001122 if (TWFunc::Get_D_Type_From_Stat(Path) != S_IFDIR)
1123 unlink(Path.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001124 if (!TWFunc::Path_Exists(Path)) {
Dees_Troy51127312012-09-08 13:08:49 -04001125 if (mkdir(Path.c_str(), 0777) == -1) {
1126 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001127 gui_msg(Msg(msg::kError, "create_folder_strerr=Can not create '{1}' folder ({2}).")(Path)(strerror(errno)));
Dees_Troy51127312012-09-08 13:08:49 -04001128 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001129 LOGINFO("Can not create '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001130 return false;
1131 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001132 LOGINFO("Created '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001133 return true;
1134 }
1135 }
1136 return true;
1137}
1138
Dees_Troy5bf43922012-09-07 16:07:55 -04001139void TWPartition::Setup_File_System(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001140 Can_Be_Mounted = true;
1141 Can_Be_Wiped = true;
1142
Dees_Troy5bf43922012-09-07 16:07:55 -04001143 // Make the mount point folder if it doesn't exist
Dees_Troy51127312012-09-08 13:08:49 -04001144 Make_Dir(Mount_Point, Display_Error);
bigbiffce8f83c2015-12-12 18:30:21 -05001145 Backup_Method = BM_FILES;
Dees_Troy5bf43922012-09-07 16:07:55 -04001146}
1147
Ethan Yonker1b190162016-12-05 15:25:19 -06001148void TWPartition::Setup_Image() {
Dees_Troy5bf43922012-09-07 16:07:55 -04001149 Display_Name = Mount_Point.substr(1, Mount_Point.size() - 1);
1150 Backup_Name = Display_Name;
Gary Peck82599a82012-11-21 16:23:12 -08001151 if (Current_File_System == "emmc")
bigbiffce8f83c2015-12-12 18:30:21 -05001152 Backup_Method = BM_DD;
Gary Peck82599a82012-11-21 16:23:12 -08001153 else if (Current_File_System == "mtd" || Current_File_System == "bml")
bigbiffce8f83c2015-12-12 18:30:21 -05001154 Backup_Method = BM_FLASH_UTILS;
Dees_Troy5bf43922012-09-07 16:07:55 -04001155 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001156 LOGINFO("Unhandled file system '%s' on image '%s'\n", Current_File_System.c_str(), Display_Name.c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -04001157}
1158
Dees_Troye58d5262012-09-21 12:27:57 -04001159void TWPartition::Setup_AndSec(void) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001160 Backup_Display_Name = "Android Secure";
Dees_Troye58d5262012-09-21 12:27:57 -04001161 Backup_Name = "and-sec";
Dees_Troya13d74f2013-03-24 08:54:55 -05001162 Can_Be_Backed_Up = true;
Dees_Troye58d5262012-09-21 12:27:57 -04001163 Has_Android_Secure = true;
1164 Symlink_Path = Mount_Point + "/.android_secure";
1165 Symlink_Mount_Point = "/and-sec";
1166 Backup_Path = Symlink_Mount_Point;
1167 Make_Dir("/and-sec", true);
1168 Recreate_AndSec_Folder();
Kjell Braden3126a112016-06-19 16:58:15 +00001169 Mount_Storage_Retry(true);
Dees_Troye58d5262012-09-21 12:27:57 -04001170}
1171
that9e0593e2014-10-08 00:01:24 +02001172void TWPartition::Setup_Data_Media() {
Ethan Yonker6277c792014-09-15 14:54:30 -05001173 LOGINFO("Setting up '%s' as data/media emulated storage.\n", Mount_Point.c_str());
Ethan Yonker66a19492015-12-10 10:19:45 -06001174 if (Storage_Name.empty() || Storage_Name == "Data")
1175 Storage_Name = "Internal Storage";
Ethan Yonker6277c792014-09-15 14:54:30 -05001176 Has_Data_Media = true;
1177 Is_Storage = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06001178 Storage_Path = Mount_Point + "/media";
Ethan Yonker6277c792014-09-15 14:54:30 -05001179 Symlink_Path = Storage_Path;
Ethan Yonker66a19492015-12-10 10:19:45 -06001180 if (Mount_Point == "/data") {
1181 Is_Settings_Storage = true;
1182 if (strcmp(EXPAND(TW_EXTERNAL_STORAGE_PATH), "/sdcard") == 0) {
1183 Make_Dir("/emmc", false);
1184 Symlink_Mount_Point = "/emmc";
1185 } else {
1186 Make_Dir("/sdcard", false);
1187 Symlink_Mount_Point = "/sdcard";
1188 }
1189 if (Mount(false) && TWFunc::Path_Exists(Mount_Point + "/media/0")) {
1190 Storage_Path = Mount_Point + "/media/0";
1191 Symlink_Path = Storage_Path;
1192 DataManager::SetValue(TW_INTERNAL_PATH, Mount_Point + "/media/0");
1193 UnMount(true);
1194 }
1195 DataManager::SetValue("tw_has_internal", 1);
1196 DataManager::SetValue("tw_has_data_media", 1);
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001197 backup_exclusions.add_absolute_dir("/data/data/com.google.android.music/files");
Darth90864aa52020-01-14 20:58:16 +00001198 backup_exclusions.add_absolute_dir("/data/per_boot"); // DJ9,14Jan2020 - exclude this dir to prevent "error 255" on AOSP ROMs that create and lock it
DarthJabba913b07f82020-08-04 10:31:27 +01001199 backup_exclusions.add_absolute_dir("/data/vendor/dumpsys");
bigbiff349ea552020-06-19 16:07:38 -04001200 backup_exclusions.add_absolute_dir("/data/cache");
Ethan Yonker6355b562017-05-01 09:42:17 -05001201 wipe_exclusions.add_absolute_dir(Mount_Point + "/misc/vold"); // adopted storage keys
Ethan Yonker79f88bd2016-12-09 14:52:12 -06001202 ExcludeAll(Mount_Point + "/.layout_version");
1203 ExcludeAll(Mount_Point + "/system/storage.xml");
Ethan Yonker6277c792014-09-15 14:54:30 -05001204 } else {
Ethan Yonker66a19492015-12-10 10:19:45 -06001205 if (Mount(true) && TWFunc::Path_Exists(Mount_Point + "/media/0")) {
1206 Storage_Path = Mount_Point + "/media/0";
1207 Symlink_Path = Storage_Path;
1208 UnMount(true);
1209 }
Ethan Yonker6277c792014-09-15 14:54:30 -05001210 }
Ethan Yonker79f88bd2016-12-09 14:52:12 -06001211 ExcludeAll(Mount_Point + "/media");
Ethan Yonker6277c792014-09-15 14:54:30 -05001212}
1213
Dees_Troy5bf43922012-09-07 16:07:55 -04001214void TWPartition::Find_Real_Block_Device(string& Block, bool Display_Error) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001215 char device[PATH_MAX], realDevice[PATH_MAX];
Dees_Troy5bf43922012-09-07 16:07:55 -04001216
Peter Cai39881ab2019-11-02 19:22:38 +08001217 Original_Path = Block;
1218
Dees_Troy5bf43922012-09-07 16:07:55 -04001219 strcpy(device, Block.c_str());
1220 memset(realDevice, 0, sizeof(realDevice));
1221 while (readlink(device, realDevice, sizeof(realDevice)) > 0)
1222 {
1223 strcpy(device, realDevice);
1224 memset(realDevice, 0, sizeof(realDevice));
1225 }
1226
1227 if (device[0] != '/') {
1228 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001229 LOGERR("Invalid symlink path '%s' found on block device '%s'\n", device, Block.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001230 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001231 LOGINFO("Invalid symlink path '%s' found on block device '%s'\n", device, Block.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001232 return;
Dees_Troy51a0e822012-09-05 15:24:24 -04001233 } else {
Dees_Troy5bf43922012-09-07 16:07:55 -04001234 Block = device;
1235 return;
1236 }
1237}
1238
Kjell Braden3126a112016-06-19 16:58:15 +00001239bool TWPartition::Mount_Storage_Retry(bool Display_Error) {
Dees_Troy8e337f32012-10-13 22:07:49 -04001240 // On some devices, storage doesn't want to mount right away, retry and sleep
Kjell Braden3126a112016-06-19 16:58:15 +00001241 if (!Mount(Display_Error)) {
Dees_Troy8e337f32012-10-13 22:07:49 -04001242 int retry_count = 5;
1243 while (retry_count > 0 && !Mount(false)) {
1244 usleep(500000);
1245 retry_count--;
1246 }
Kjell Braden3126a112016-06-19 16:58:15 +00001247 return Mount(Display_Error);
Dees_Troy8e337f32012-10-13 22:07:49 -04001248 }
Kjell Braden3126a112016-06-19 16:58:15 +00001249 return true;
Dees_Troy8e337f32012-10-13 22:07:49 -04001250}
1251
Dees_Troy38bd7602012-09-14 13:33:53 -04001252bool TWPartition::Find_MTD_Block_Device(string MTD_Name) {
1253 FILE *fp = NULL;
1254 char line[255];
1255
1256 fp = fopen("/proc/mtd", "rt");
1257 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001258 LOGERR("Device does not support /proc/mtd\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001259 return false;
1260 }
1261
1262 while (fgets(line, sizeof(line), fp) != NULL)
1263 {
1264 char device[32], label[32];
1265 unsigned long size = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -04001266 int deviceId;
1267
1268 sscanf(line, "%s %lx %*s %*c%s", device, &size, label);
1269
1270 // Skip header and blank lines
1271 if ((strcmp(device, "dev:") == 0) || (strlen(line) < 8))
1272 continue;
1273
1274 // Strip off the trailing " from the label
1275 label[strlen(label)-1] = '\0';
1276
1277 if (strcmp(label, MTD_Name.c_str()) == 0) {
1278 // We found our device
1279 // Strip off the trailing : from the device
1280 device[strlen(device)-1] = '\0';
1281 if (sscanf(device,"mtd%d", &deviceId) == 1) {
1282 sprintf(device, "/dev/block/mtdblock%d", deviceId);
1283 Primary_Block_Device = device;
Dees_Troy76543db2013-06-19 16:24:30 +00001284 fclose(fp);
1285 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -04001286 }
1287 }
1288 }
1289 fclose(fp);
1290
1291 return false;
1292}
1293
Dees_Troy51127312012-09-08 13:08:49 -04001294bool TWPartition::Get_Size_Via_statfs(bool Display_Error) {
1295 struct statfs st;
1296 string Local_Path = Mount_Point + "/.";
1297
1298 if (!Mount(Display_Error))
1299 return false;
1300
1301 if (statfs(Local_Path.c_str(), &st) != 0) {
1302 if (!Removable) {
1303 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001304 LOGERR("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001305 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001306 LOGINFO("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001307 }
1308 return false;
1309 }
1310 Size = (st.f_blocks * st.f_bsize);
1311 Used = ((st.f_blocks - st.f_bfree) * st.f_bsize);
1312 Free = (st.f_bfree * st.f_bsize);
1313 Backup_Size = Used;
1314 return true;
1315}
1316
1317bool TWPartition::Get_Size_Via_df(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001318 FILE* fp;
1319 char command[255], line[512];
1320 int include_block = 1;
1321 unsigned int min_len;
1322
1323 if (!Mount(Display_Error))
1324 return false;
1325
Dees_Troy38bd7602012-09-14 13:33:53 -04001326 min_len = Actual_Block_Device.size() + 2;
Dees_Troy51127312012-09-08 13:08:49 -04001327 sprintf(command, "df %s > /tmp/dfoutput.txt", Mount_Point.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001328 TWFunc::Exec_Cmd(command);
Dees_Troy51127312012-09-08 13:08:49 -04001329 fp = fopen("/tmp/dfoutput.txt", "rt");
1330 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001331 LOGINFO("Unable to open /tmp/dfoutput.txt.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001332 return false;
Dees_Troy51127312012-09-08 13:08:49 -04001333 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001334
1335 while (fgets(line, sizeof(line), fp) != NULL)
1336 {
1337 unsigned long blocks, used, available;
1338 char device[64];
1339 char tmpString[64];
1340
1341 if (strncmp(line, "Filesystem", 10) == 0)
1342 continue;
1343 if (strlen(line) < min_len) {
1344 include_block = 0;
1345 continue;
1346 }
1347 if (include_block) {
1348 sscanf(line, "%s %lu %lu %lu", device, &blocks, &used, &available);
1349 } else {
1350 // The device block string is so long that the df information is on the next line
1351 int space_count = 0;
Dees_Troye58d5262012-09-21 12:27:57 -04001352 sprintf(tmpString, "/dev/block/%s", Actual_Block_Device.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001353 while (tmpString[space_count] == 32)
1354 space_count++;
1355 sscanf(line + space_count, "%lu %lu %lu", &blocks, &used, &available);
1356 }
1357
1358 // Adjust block size to byte size
1359 Size = blocks * 1024ULL;
1360 Used = used * 1024ULL;
1361 Free = available * 1024ULL;
1362 Backup_Size = Used;
1363 }
1364 fclose(fp);
1365 return true;
1366}
1367
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001368unsigned long long TWPartition::IOCTL_Get_Block_Size() {
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001369 Find_Actual_Block_Device();
Ethan Yonker483e9f42016-01-11 22:21:18 -06001370
1371 return TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001372}
1373
Dees_Troy5bf43922012-09-07 16:07:55 -04001374bool TWPartition::Find_Partition_Size(void) {
1375 FILE* fp;
1376 char line[512];
1377 string tmpdevice;
1378
igoriok87e3d932013-01-31 21:03:53 +02001379 fp = fopen("/proc/dumchar_info", "rt");
1380 if (fp != NULL) {
1381 while (fgets(line, sizeof(line), fp) != NULL)
1382 {
1383 char label[32], device[32];
1384 unsigned long size = 0;
1385
thatd43bf2d2014-09-21 23:13:02 +02001386 sscanf(line, "%s %lx %*x %*u %s", label, &size, device);
igoriok87e3d932013-01-31 21:03:53 +02001387
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05001388 // Skip header, annotation and blank lines
igoriok87e3d932013-01-31 21:03:53 +02001389 if ((strncmp(device, "/dev/", 5) != 0) || (strlen(line) < 8))
1390 continue;
1391
1392 tmpdevice = "/dev/";
1393 tmpdevice += label;
1394 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
1395 Size = size;
1396 fclose(fp);
1397 return true;
1398 }
1399 }
1400 }
1401
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001402 unsigned long long ioctl_size = IOCTL_Get_Block_Size();
1403 if (ioctl_size) {
1404 Size = ioctl_size;
1405 return true;
1406 }
1407
Dees_Troy5bf43922012-09-07 16:07:55 -04001408 // In this case, we'll first get the partitions we care about (with labels)
1409 fp = fopen("/proc/partitions", "rt");
1410 if (fp == NULL)
1411 return false;
1412
1413 while (fgets(line, sizeof(line), fp) != NULL)
1414 {
1415 unsigned long major, minor, blocks;
1416 char device[512];
Dees_Troy5bf43922012-09-07 16:07:55 -04001417
Dees_Troy63c8df72012-09-10 14:02:05 -04001418 if (strlen(line) < 7 || line[0] == 'm') continue;
Dees_Troy5bf43922012-09-07 16:07:55 -04001419 sscanf(line + 1, "%lu %lu %lu %s", &major, &minor, &blocks, device);
1420
1421 tmpdevice = "/dev/block/";
1422 tmpdevice += device;
Dees_Troy38bd7602012-09-14 13:33:53 -04001423 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001424 // Adjust block size to byte size
1425 Size = blocks * 1024ULL;
1426 fclose(fp);
1427 return true;
1428 }
1429 }
1430 fclose(fp);
1431 return false;
1432}
1433
Dees_Troy5bf43922012-09-07 16:07:55 -04001434bool TWPartition::Is_Mounted(void) {
1435 if (!Can_Be_Mounted)
1436 return false;
1437
1438 struct stat st1, st2;
1439 string test_path;
1440
1441 // Check to see if the mount point directory exists
1442 test_path = Mount_Point + "/.";
1443 if (stat(test_path.c_str(), &st1) != 0) return false;
1444
1445 // Check to see if the directory above the mount point exists
1446 test_path = Mount_Point + "/../.";
1447 if (stat(test_path.c_str(), &st2) != 0) return false;
1448
1449 // Compare the device IDs -- if they match then we're (probably) using tmpfs instead of an actual device
1450 int ret = (st1.st_dev != st2.st_dev) ? true : false;
1451
1452 return ret;
1453}
1454
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05001455bool TWPartition::Is_File_System_Writable(void) {
1456 if (!Is_File_System(Current_File_System) || !Is_Mounted())
1457 return false;
1458
1459 string test_path = Mount_Point + "/.";
1460 return (access(test_path.c_str(), W_OK) == 0);
1461}
1462
Dees_Troy5bf43922012-09-07 16:07:55 -04001463bool TWPartition::Mount(bool Display_Error) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001464 int exfat_mounted = 0;
Martin Dünkelmann6d843782018-12-27 23:40:28 +01001465 unsigned int flags = Mount_Flags;
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001466
Dees_Troy5bf43922012-09-07 16:07:55 -04001467 if (Is_Mounted()) {
1468 return true;
1469 } else if (!Can_Be_Mounted) {
1470 return false;
1471 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001472
1473 Find_Actual_Block_Device();
1474
1475 // Check the current file system before mounting
1476 Check_FS_Type();
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001477 if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sbin/exfat-fuse")) {
Dees_Troye34c1332013-02-06 19:13:00 +00001478 string cmd = "/sbin/exfat-fuse -o big_writes,max_read=131072,max_write=131072 " + Actual_Block_Device + " " + Mount_Point;
Dees_Troy2673cec2013-04-02 20:22:16 +00001479 LOGINFO("cmd: %s\n", cmd.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001480 string result;
bigbiff56b02eb2020-07-06 20:24:34 -04001481 if (TWFunc::Exec_Cmd(cmd, result, false) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001482 LOGINFO("exfat-fuse failed to mount with result '%s', trying vfat\n", result.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001483 Current_File_System = "vfat";
1484 } else {
1485#ifdef TW_NO_EXFAT_FUSE
1486 UnMount(false);
1487 // We'll let the kernel handle it but using exfat-fuse to detect if the file system is actually exfat
1488 // Some kernels let us mount vfat as exfat which doesn't work out too well
1489#else
1490 exfat_mounted = 1;
1491#endif
1492 }
1493 }
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001494
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001495 if (Current_File_System == "ntfs" && (TWFunc::Path_Exists("/sbin/ntfs-3g") || TWFunc::Path_Exists("/sbin/mount.ntfs"))) {
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001496 string cmd;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001497 string Ntfsmount_Binary = "";
1498
1499 if (TWFunc::Path_Exists("/sbin/ntfs-3g"))
1500 Ntfsmount_Binary = "ntfs-3g";
1501 else if (TWFunc::Path_Exists("/sbin/mount.ntfs"))
1502 Ntfsmount_Binary = "mount.ntfs";
1503
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001504 if (Mount_Read_Only)
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001505 cmd = "/sbin/" + Ntfsmount_Binary + " -o ro " + Actual_Block_Device + " " + Mount_Point;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001506 else
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001507 cmd = "/sbin/" + Ntfsmount_Binary + " " + Actual_Block_Device + " " + Mount_Point;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001508 LOGINFO("cmd: '%s'\n", cmd.c_str());
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001509
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001510 if (TWFunc::Exec_Cmd(cmd) == 0) {
1511 return true;
1512 } else {
1513 LOGINFO("ntfs-3g failed to mount, trying regular mount method.\n");
1514 }
1515 }
1516
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001517 if (Mount_Read_Only)
1518 flags |= MS_RDONLY;
1519
Dees_Troy22042032012-12-18 21:23:08 +00001520 if (Fstab_File_System == "yaffs2") {
1521 // mount an MTD partition as a YAFFS2 filesystem.
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001522 flags = MS_NOATIME | MS_NODEV | MS_NODIRATIME;
1523 if (Mount_Read_Only)
1524 flags |= MS_RDONLY;
Dees_Troy76543db2013-06-19 16:24:30 +00001525 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags, NULL) < 0) {
1526 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags | MS_RDONLY, NULL) < 0) {
1527 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001528 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy76543db2013-06-19 16:24:30 +00001529 else
1530 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
1531 return false;
1532 } else {
1533 LOGINFO("Mounted '%s' (MTD) as RO\n", Mount_Point.c_str());
1534 return true;
1535 }
1536 } else {
1537 struct stat st;
1538 string test_path = Mount_Point;
1539 if (stat(test_path.c_str(), &st) < 0) {
1540 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001541 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy76543db2013-06-19 16:24:30 +00001542 else
1543 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
1544 return false;
1545 }
1546 mode_t new_mode = st.st_mode | S_IXUSR | S_IXGRP | S_IXOTH;
1547 if (new_mode != st.st_mode) {
1548 LOGINFO("Fixing execute permissions for %s\n", Mount_Point.c_str());
1549 if (chmod(Mount_Point.c_str(), new_mode) < 0) {
1550 if (Display_Error)
1551 LOGERR("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
1552 else
1553 LOGINFO("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
1554 return false;
1555 }
1556 }
Dees_Troy22042032012-12-18 21:23:08 +00001557 return true;
Dees_Troy76543db2013-06-19 16:24:30 +00001558 }
thatc7572eb2015-03-31 18:55:30 +02001559 }
1560
1561 string mount_fs = Current_File_System;
1562 if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sys/module/texfat"))
1563 mount_fs = "texfat";
1564
1565 if (!exfat_mounted &&
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001566 mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), mount_fs.c_str(), flags, Mount_Options.c_str()) != 0 &&
1567 mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), mount_fs.c_str(), flags, NULL) != 0) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001568#ifdef TW_NO_EXFAT_FUSE
1569 if (Current_File_System == "exfat") {
Dees_Troy2673cec2013-04-02 20:22:16 +00001570 LOGINFO("Mounting exfat failed, trying vfat...\n");
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001571 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), "vfat", 0, NULL) != 0) {
Dees_Troy85f44ed2013-01-09 18:42:36 +00001572 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001573 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy85f44ed2013-01-09 18:42:36 +00001574 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001575 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001576 LOGINFO("Actual block device: '%s', current file system: '%s', flags: 0x%8x, options: '%s'\n", Actual_Block_Device.c_str(), Current_File_System.c_str(), flags, Mount_Options.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001577 return false;
Dees_Troy85f44ed2013-01-09 18:42:36 +00001578 }
Dees_Troyb05ddee2013-01-28 20:24:50 +00001579 } else {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001580#endif
bigbiff bigbiff26774a02014-03-29 18:22:00 -04001581 if (!Removable && Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001582 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001583 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001584 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
1585 LOGINFO("Actual block device: '%s', current file system: '%s'\n", Actual_Block_Device.c_str(), Current_File_System.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001586 return false;
1587#ifdef TW_NO_EXFAT_FUSE
Dees_Troy85f44ed2013-01-09 18:42:36 +00001588 }
1589#endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001590 }
Ethan Yonker253368a2014-11-25 15:00:52 -06001591
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001592 if (Removable)
1593 Update_Size(Display_Error);
1594
xiaolu9416f4f2015-06-04 08:22:23 +08001595 if (!Symlink_Mount_Point.empty() && TWFunc::Path_Exists(Symlink_Path)) {
codelover2a3d4ce2015-03-14 20:26:49 +08001596 string Command = "mount -o bind '" + Symlink_Path + "' '" + Symlink_Mount_Point + "'";
Vojtech Bocek05534202013-09-11 08:11:56 +02001597 TWFunc::Exec_Cmd(Command);
Dees_Troy5bf43922012-09-07 16:07:55 -04001598 }
Chaosmasterda974802020-01-26 21:09:28 +01001599
1600 if (Mount_Point == "/system_root") {
1601 unlink("/system");
1602 mkdir("/system", 0755);
1603 mount("/system_root/system", "/system", "auto", MS_BIND, NULL);
1604 }
1605
Dees_Troy5bf43922012-09-07 16:07:55 -04001606 return true;
1607}
1608
1609bool TWPartition::UnMount(bool Display_Error) {
Chaosmasterda974802020-01-26 21:09:28 +01001610 if (Mount_Point == "/system_root") {
1611 if (umount("/system") == -1)
1612 umount2("/system", MNT_DETACH);
1613 rmdir("/system");
1614 symlink("/system_root/system", "/system");
1615 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001616 if (Is_Mounted()) {
1617 int never_unmount_system;
1618
1619 DataManager::GetValue(TW_DONT_UNMOUNT_SYSTEM, never_unmount_system);
Captain Throwback9d6feb52018-07-27 10:05:24 -04001620 if (never_unmount_system == 1 && Mount_Point == PartitionManager.Get_Android_Root_Path())
Dees_Troy5bf43922012-09-07 16:07:55 -04001621 return true; // Never unmount system if you're not supposed to unmount it
1622
Matt Mowera8e6d832017-02-14 20:20:59 -06001623 if (Is_Storage && MTP_Storage_ID > 0)
Ethan Yonker726a0202014-12-16 20:01:38 -06001624 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001625
Dees_Troy38bd7602012-09-14 13:33:53 -04001626 if (!Symlink_Mount_Point.empty())
1627 umount(Symlink_Mount_Point.c_str());
1628
Dees_Troyb05ddee2013-01-28 20:24:50 +00001629 umount(Mount_Point.c_str());
1630 if (Is_Mounted()) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001631 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001632 gui_msg(Msg(msg::kError, "fail_unmount=Failed to unmount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy5bf43922012-09-07 16:07:55 -04001633 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001634 LOGINFO("Unable to unmount '%s'\n", Mount_Point.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001635 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001636 } else {
Dees_Troy5bf43922012-09-07 16:07:55 -04001637 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001638 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001639 } else {
1640 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001641 }
1642}
1643
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05001644bool TWPartition::ReMount(bool Display_Error) {
1645 if (UnMount(Display_Error))
1646 return Mount(Display_Error);
1647 return false;
1648}
1649
1650bool TWPartition::ReMount_RW(bool Display_Error) {
1651 // No need to remount if already mounted rw
1652 if (Is_File_System_Writable())
1653 return true;
1654
1655 bool ro = Mount_Read_Only;
1656 int flags = Mount_Flags;
1657
1658 Mount_Read_Only = false;
1659 Mount_Flags &= ~MS_RDONLY;
1660
1661 bool ret = ReMount(Display_Error);
1662
1663 Mount_Read_Only = ro;
1664 Mount_Flags = flags;
1665
1666 return ret;
1667}
1668
Gary Peck43acadf2012-11-21 21:19:01 -08001669bool TWPartition::Wipe(string New_File_System) {
Ethan Yonker726a0202014-12-16 20:01:38 -06001670 bool wiped = false, update_crypt = false, recreate_media = true;
Dees_Troy16c2b312013-01-15 16:51:18 +00001671 int check;
1672 string Layout_Filename = Mount_Point + "/.layout_version";
1673
Dees_Troy38bd7602012-09-14 13:33:53 -04001674 if (!Can_Be_Wiped) {
Matt Mower3c366972015-12-25 19:28:31 -06001675 gui_msg(Msg(msg::kError, "cannot_wipe=Partition {1} cannot be wiped.")(Display_Name));
Dees_Troy38bd7602012-09-14 13:33:53 -04001676 return false;
1677 }
1678
Dees_Troyc51f1f92012-09-20 15:32:13 -04001679 if (Mount_Point == "/cache")
Dees_Troy2673cec2013-04-02 20:22:16 +00001680 Log_Offset = 0;
Dees_Troyc51f1f92012-09-20 15:32:13 -04001681
bigbiff35d2bfd2021-01-23 14:08:03 -05001682 if (Mount_Point == PartitionManager.Get_Android_Root_Path()) {
1683 if (tw_get_default_metadata(PartitionManager.Get_Android_Root_Path().c_str()) != 0) {
1684 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(PartitionManager.Get_Android_Root_Path()));
1685 }
1686 }
1687
Dees_Troy16c2b312013-01-15 16:51:18 +00001688 if (Retain_Layout_Version && Mount(false) && TWFunc::Path_Exists(Layout_Filename))
1689 TWFunc::copy_file(Layout_Filename, "/.layout_version", 0600);
1690 else
1691 unlink("/.layout_version");
Dees_Troy38bd7602012-09-14 13:33:53 -04001692
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001693 if (Has_Data_Media && Current_File_System == New_File_System) {
Dees_Troy16c2b312013-01-15 16:51:18 +00001694 wiped = Wipe_Data_Without_Wiping_Media();
bigbiff349ea552020-06-19 16:07:38 -04001695 if (Mount_Point == "/data" && TWFunc::get_log_dir() == DATA_LOGS_DIR) {
1696 bool created = Recreate_Logs_Dir();
1697 if (!created)
1698 LOGERR("Unable to create log directory for TWRP\n");
bigbiffa2bd7b72020-05-07 21:45:34 -04001699 }
Ethan Yonker5eac2222014-06-11 12:22:55 -05001700 recreate_media = false;
Dees_Troy16c2b312013-01-15 16:51:18 +00001701 } else {
Dees_Troy16c2b312013-01-15 16:51:18 +00001702 DataManager::GetValue(TW_RM_RF_VAR, check);
1703
Hashcodedabfd492013-08-29 22:45:30 -07001704 if (check || Use_Rm_Rf)
Dees_Troy16c2b312013-01-15 16:51:18 +00001705 wiped = Wipe_RMRF();
1706 else if (New_File_System == "ext4")
1707 wiped = Wipe_EXT4();
1708 else if (New_File_System == "ext2" || New_File_System == "ext3")
dianlujitao4879b372018-12-03 18:45:47 +08001709 wiped = Wipe_EXTFS(New_File_System);
Dees_Troy16c2b312013-01-15 16:51:18 +00001710 else if (New_File_System == "vfat")
1711 wiped = Wipe_FAT();
1712 else if (New_File_System == "exfat")
1713 wiped = Wipe_EXFAT();
1714 else if (New_File_System == "yaffs2")
1715 wiped = Wipe_MTD();
Dees_Troye5017042013-08-29 16:38:55 +00001716 else if (New_File_System == "f2fs")
1717 wiped = Wipe_F2FS();
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001718 else if (New_File_System == "ntfs")
1719 wiped = Wipe_NTFS();
Dees_Troy16c2b312013-01-15 16:51:18 +00001720 else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001721 LOGERR("Unable to wipe '%s' -- unknown file system '%s'\n", Mount_Point.c_str(), New_File_System.c_str());
Dees_Troy16c2b312013-01-15 16:51:18 +00001722 unlink("/.layout_version");
1723 return false;
1724 }
1725 update_crypt = wiped;
Gary Pecke8bc5d72012-12-21 06:45:25 -08001726 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001727
Gary Pecke8bc5d72012-12-21 06:45:25 -08001728 if (wiped) {
Mohd Faraz25371a72020-06-15 00:28:32 +05301729 if (Mount_Point == "/cache" && TWFunc::get_log_dir() != DATA_LOGS_DIR)
1730 DataManager::Output_Version();
1731
bigbiff35d2bfd2021-01-23 14:08:03 -05001732 if (Mount_Point == PartitionManager.Get_Android_Root_Path()) {
1733 tw_set_default_metadata(PartitionManager.Get_Android_Root_Path().c_str());
1734 }
Dees_Troy16c2b312013-01-15 16:51:18 +00001735 if (TWFunc::Path_Exists("/.layout_version") && Mount(false))
1736 TWFunc::copy_file("/.layout_version", Layout_Filename, 0600);
1737
1738 if (update_crypt) {
1739 Setup_File_System(false);
1740 if (Is_Encrypted && !Is_Decrypted) {
1741 // just wiped an encrypted partition back to its unencrypted state
1742 Is_Encrypted = false;
1743 Is_Decrypted = false;
1744 Decrypted_Block_Device = "";
1745 if (Mount_Point == "/data") {
1746 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
1747 DataManager::SetValue(TW_IS_DECRYPTED, 0);
1748 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08001749 }
1750 }
Ethan Yonker5eac2222014-06-11 12:22:55 -05001751
Captain Throwbackdfeab0d2021-10-02 20:47:33 -04001752 if (Is_Storage && Mount(false) && !Is_FBE)
Matt Mower209c9632016-01-20 12:08:35 -06001753 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Gary Pecke8bc5d72012-12-21 06:45:25 -08001754 }
Matt Mower209c9632016-01-20 12:08:35 -06001755
Gary Pecke8bc5d72012-12-21 06:45:25 -08001756 return wiped;
Dees_Troy51a0e822012-09-05 15:24:24 -04001757}
1758
Gary Peck43acadf2012-11-21 21:19:01 -08001759bool TWPartition::Wipe() {
Gary Peck82599a82012-11-21 16:23:12 -08001760 if (Is_File_System(Current_File_System))
1761 return Wipe(Current_File_System);
1762 else
1763 return Wipe(Fstab_File_System);
Gary Peck43acadf2012-11-21 21:19:01 -08001764}
1765
Dees_Troye58d5262012-09-21 12:27:57 -04001766bool TWPartition::Wipe_AndSec(void) {
1767 if (!Has_Android_Secure)
1768 return false;
1769
Dees_Troye58d5262012-09-21 12:27:57 -04001770 if (!Mount(true))
1771 return false;
1772
Ethan Yonker74db1572015-10-28 12:44:49 -05001773 gui_msg(Msg("wiping=Wiping {1}")(Backup_Display_Name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001774 TWFunc::removeDir(Mount_Point + "/.android_secure/", true);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001775 return true;
Dees_Troye58d5262012-09-21 12:27:57 -04001776}
1777
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001778bool TWPartition::Can_Repair() {
Ethan Yonkera2719152015-05-28 09:44:41 -05001779 if (Mount_Read_Only)
1780 return false;
Matt Mower18794c82015-11-11 16:22:45 -06001781 if (Current_File_System == "vfat" && TWFunc::Path_Exists("/sbin/fsck.fat"))
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001782 return true;
1783 else if ((Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") && TWFunc::Path_Exists("/sbin/e2fsck"))
1784 return true;
1785 else if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sbin/fsck.exfat"))
1786 return true;
1787 else if (Current_File_System == "f2fs" && TWFunc::Path_Exists("/sbin/fsck.f2fs"))
1788 return true;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001789 else if (Current_File_System == "ntfs" && (TWFunc::Path_Exists("/sbin/ntfsfix") || TWFunc::Path_Exists("/sbin/fsck.ntfs")))
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001790 return true;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001791 return false;
1792}
1793
1794bool TWPartition::Repair() {
1795 string command;
1796
1797 if (Current_File_System == "vfat") {
Matt Mower18794c82015-11-11 16:22:45 -06001798 if (!TWFunc::Path_Exists("/sbin/fsck.fat")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001799 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.fat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001800 return false;
1801 }
1802 if (!UnMount(true))
1803 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001804 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.fat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001805 Find_Actual_Block_Device();
Matt Mower18794c82015-11-11 16:22:45 -06001806 command = "/sbin/fsck.fat -y " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001807 LOGINFO("Repair command: %s\n", command.c_str());
1808 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001809 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001810 return true;
1811 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001812 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001813 return false;
1814 }
1815 }
1816 if (Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") {
1817 if (!TWFunc::Path_Exists("/sbin/e2fsck")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001818 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("e2fsck"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001819 return false;
1820 }
1821 if (!UnMount(true))
1822 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001823 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("e2fsck"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001824 Find_Actual_Block_Device();
Ethan Yonkera2719152015-05-28 09:44:41 -05001825 command = "/sbin/e2fsck -fp " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001826 LOGINFO("Repair command: %s\n", command.c_str());
1827 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001828 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001829 return true;
1830 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001831 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001832 return false;
1833 }
1834 }
1835 if (Current_File_System == "exfat") {
1836 if (!TWFunc::Path_Exists("/sbin/fsck.exfat")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001837 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.exfat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001838 return false;
1839 }
1840 if (!UnMount(true))
1841 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001842 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.exfat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001843 Find_Actual_Block_Device();
1844 command = "/sbin/fsck.exfat " + Actual_Block_Device;
1845 LOGINFO("Repair command: %s\n", command.c_str());
1846 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001847 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001848 return true;
1849 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001850 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001851 return false;
1852 }
1853 }
1854 if (Current_File_System == "f2fs") {
1855 if (!TWFunc::Path_Exists("/sbin/fsck.f2fs")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001856 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.f2fs"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001857 return false;
1858 }
1859 if (!UnMount(true))
1860 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001861 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.f2fs"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001862 Find_Actual_Block_Device();
1863 command = "/sbin/fsck.f2fs " + Actual_Block_Device;
1864 LOGINFO("Repair command: %s\n", command.c_str());
1865 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001866 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001867 return true;
1868 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001869 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001870 return false;
1871 }
1872 }
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001873 if (Current_File_System == "ntfs") {
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001874 string Ntfsfix_Binary;
1875 if (TWFunc::Path_Exists("/sbin/ntfsfix"))
1876 Ntfsfix_Binary = "ntfsfix";
1877 else if (TWFunc::Path_Exists("/sbin/fsck.ntfs"))
1878 Ntfsfix_Binary = "fsck.ntfs";
1879 else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001880 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("ntfsfix"));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001881 return false;
1882 }
1883 if (!UnMount(true))
1884 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001885 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)(Ntfsfix_Binary));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001886 Find_Actual_Block_Device();
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001887 command = "/sbin/" + Ntfsfix_Binary + " " + Actual_Block_Device;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001888 LOGINFO("Repair command: %s\n", command.c_str());
1889 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001890 gui_msg("done=Done.");
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001891 return true;
1892 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001893 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001894 return false;
1895 }
1896 }
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001897 return false;
1898}
1899
Ethan Yonkera2719152015-05-28 09:44:41 -05001900bool TWPartition::Can_Resize() {
1901 if (Mount_Read_Only)
1902 return false;
1903 if ((Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") && TWFunc::Path_Exists("/sbin/resize2fs"))
1904 return true;
1905 return false;
1906}
1907
1908bool TWPartition::Resize() {
1909 string command;
1910
1911 if (Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") {
1912 if (!Can_Repair()) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001913 LOGINFO("Cannot resize %s because %s cannot be repaired before resizing.\n", Display_Name.c_str(), Display_Name.c_str());
1914 gui_msg(Msg(msg::kError, "cannot_resize=Cannot resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001915 return false;
1916 }
1917 if (!TWFunc::Path_Exists("/sbin/resize2fs")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001918 LOGINFO("resize2fs does not exist! Cannot resize!\n");
1919 gui_msg(Msg(msg::kError, "cannot_resize=Cannot resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001920 return false;
1921 }
1922 // Repair will unmount so no need to do it twice
Ethan Yonker74db1572015-10-28 12:44:49 -05001923 gui_msg(Msg("repair_resize=Repairing {1} before resizing.")( Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001924 if (!Repair())
1925 return false;
Ethan Yonker74db1572015-10-28 12:44:49 -05001926 gui_msg(Msg("resizing=Resizing {1} using {2}...")(Display_Name)("resize2fs"));
Ethan Yonkera2719152015-05-28 09:44:41 -05001927 Find_Actual_Block_Device();
1928 command = "/sbin/resize2fs " + Actual_Block_Device;
1929 if (Length != 0) {
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001930 unsigned long long Actual_Size = IOCTL_Get_Block_Size();
1931 if (Actual_Size == 0)
1932 return false;
Ethan Yonkera2719152015-05-28 09:44:41 -05001933
Ethan Yonkera2719152015-05-28 09:44:41 -05001934 unsigned long long Block_Count;
1935 if (Length < 0) {
1936 // Reduce overall size by this length
1937 Block_Count = (Actual_Size / 1024LLU) - ((unsigned long long)(Length * -1) / 1024LLU);
1938 } else {
1939 // This is the size, not a size reduction
1940 Block_Count = ((unsigned long long)(Length) / 1024LLU);
1941 }
1942 char temp[256];
1943 sprintf(temp, "%llu", Block_Count);
1944 command += " ";
1945 command += temp;
1946 command += "K";
1947 }
1948 LOGINFO("Resize command: %s\n", command.c_str());
1949 if (TWFunc::Exec_Cmd(command) == 0) {
1950 Update_Size(true);
Ethan Yonker74db1572015-10-28 12:44:49 -05001951 gui_msg("done=Done.");
Ethan Yonkera2719152015-05-28 09:44:41 -05001952 return true;
1953 } else {
1954 Update_Size(true);
Ethan Yonker74db1572015-10-28 12:44:49 -05001955 gui_msg(Msg(msg::kError, "unable_resize=Unable to resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001956 return false;
1957 }
1958 }
1959 return false;
1960}
1961
bigbiffce8f83c2015-12-12 18:30:21 -05001962bool TWPartition::Backup(PartitionSettings *part_settings, pid_t *tar_fork_pid) {
1963 if (Backup_Method == BM_FILES)
1964 return Backup_Tar(part_settings, tar_fork_pid);
1965 else if (Backup_Method == BM_DD)
1966 return Backup_Image(part_settings);
1967 else if (Backup_Method == BM_FLASH_UTILS)
1968 return Backup_Dump_Image(part_settings);
Dees_Troy2673cec2013-04-02 20:22:16 +00001969 LOGERR("Unknown backup method for '%s'\n", Mount_Point.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001970 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001971}
1972
bigbiffce8f83c2015-12-12 18:30:21 -05001973bool TWPartition::Restore(PartitionSettings *part_settings) {
Matt Mower3c366972015-12-25 19:28:31 -06001974 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001975 LOGINFO("Restore filename is: %s/%s\n", part_settings->Backup_Folder.c_str(), Backup_FileName.c_str());
Gary Peck43acadf2012-11-21 21:19:01 -08001976
bigbiffce8f83c2015-12-12 18:30:21 -05001977 string Restore_File_System = Get_Restore_File_System(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001978
1979 if (Is_File_System(Restore_File_System))
bigbiffce8f83c2015-12-12 18:30:21 -05001980 return Restore_Tar(part_settings);
1981 else if (Is_Image(Restore_File_System))
1982 return Restore_Image(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001983
1984 LOGERR("Unknown restore method for '%s'\n", Mount_Point.c_str());
1985 return false;
1986}
1987
bigbiffce8f83c2015-12-12 18:30:21 -05001988string TWPartition::Get_Restore_File_System(PartitionSettings *part_settings) {
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001989 size_t first_period, second_period;
1990 string Restore_File_System;
1991
Gary Peck43acadf2012-11-21 21:19:01 -08001992 // Parse backup filename to extract the file system before wiping
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001993 first_period = Backup_FileName.find(".");
Gary Peck43acadf2012-11-21 21:19:01 -08001994 if (first_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001995 LOGERR("Unable to find file system (first period).\n");
thatd43bf2d2014-09-21 23:13:02 +02001996 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08001997 }
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001998 Restore_File_System = Backup_FileName.substr(first_period + 1, Backup_FileName.size() - first_period - 1);
Gary Peck43acadf2012-11-21 21:19:01 -08001999 second_period = Restore_File_System.find(".");
2000 if (second_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002001 LOGERR("Unable to find file system (second period).\n");
thatd43bf2d2014-09-21 23:13:02 +02002002 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08002003 }
2004 Restore_File_System.resize(second_period);
Matt Mowera0cd91d2016-12-30 18:21:42 -06002005 LOGINFO("Restore file system is: '%s'.\n", Restore_File_System.c_str());
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002006 return Restore_File_System;
Dees_Troy51a0e822012-09-05 15:24:24 -04002007}
2008
2009string TWPartition::Backup_Method_By_Name() {
bigbiffce8f83c2015-12-12 18:30:21 -05002010 if (Backup_Method == BM_NONE)
Dees_Troy38bd7602012-09-14 13:33:53 -04002011 return "none";
bigbiffce8f83c2015-12-12 18:30:21 -05002012 else if (Backup_Method == BM_FILES)
Dees_Troy38bd7602012-09-14 13:33:53 -04002013 return "files";
bigbiffce8f83c2015-12-12 18:30:21 -05002014 else if (Backup_Method == BM_DD)
Dees_Troy38bd7602012-09-14 13:33:53 -04002015 return "dd";
bigbiffce8f83c2015-12-12 18:30:21 -05002016 else if (Backup_Method == BM_FLASH_UTILS)
Dees_Troy38bd7602012-09-14 13:33:53 -04002017 return "flash_utils";
2018 else
2019 return "undefined";
2020 return "ERROR!";
Dees_Troy51a0e822012-09-05 15:24:24 -04002021}
2022
2023bool TWPartition::Decrypt(string Password) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002024 LOGINFO("STUB TWPartition::Decrypt, password: '%s'\n", Password.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04002025 // Is this needed?
Dees_Troy51a0e822012-09-05 15:24:24 -04002026 return 1;
2027}
2028
2029bool TWPartition::Wipe_Encryption() {
Dees_Troy38bd7602012-09-14 13:33:53 -04002030 bool Save_Data_Media = Has_Data_Media;
Ethan Yonker93382822018-11-01 15:25:31 -05002031 bool ret = false;
2032 BasePartition* base_partition = make_partition();
2033
2034 if (!base_partition->PreWipeEncryption())
2035 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002036
dianlujitao4879b372018-12-03 18:45:47 +08002037 Find_Actual_Block_Device();
2038 if (!Is_Present) {
2039 LOGINFO("Block device not present, cannot format %s.\n", Display_Name.c_str());
2040 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2041 return false;
2042 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002043
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002044#ifdef TW_INCLUDE_CRYPTO
bigbiffa2bd7b72020-05-07 21:45:34 -04002045 if (!UnMount(true))
2046 return false;
Ethan Yonker1b190162016-12-05 15:25:19 -06002047 if (Is_Decrypted && !Decrypted_Block_Device.empty()) {
Matt Mower2b18a532015-02-20 16:58:05 -06002048 if (delete_crypto_blk_dev((char*)("userdata")) != 0) {
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002049 LOGERR("Error deleting crypto block device, continuing anyway.\n");
2050 }
2051 }
2052#endif
dianlujitao4879b372018-12-03 18:45:47 +08002053 Has_Data_Media = false;
Ethan Yonker93382822018-11-01 15:25:31 -05002054 Decrypted_Block_Device = "";
Dees_Troy74fb2e92013-04-15 14:35:47 +00002055 Is_Decrypted = false;
2056 Is_Encrypted = false;
Gary Pecke8bc5d72012-12-21 06:45:25 -08002057 if (Wipe(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04002058 Has_Data_Media = Save_Data_Media;
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002059 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
Ethan Yonker83e82572014-04-04 10:59:28 -05002060#ifndef TW_OEM_BUILD
bigbiff349ea552020-06-19 16:07:38 -04002061 gui_msg("format_data_msg=You may need to reboot recovery to be able to use /data again.");
Ethan Yonker83e82572014-04-04 10:59:28 -05002062#endif
bigbiff0f7f9a12021-07-09 20:08:44 -04002063 if (Is_FBE) {
2064 gui_msg(Msg(msg::kWarning, "data_media_fbe_msg=TWRP will not recreate /data/media on an FBE device. Please reboot into your rom to create /data/media."));
Captain Throwbackdfeab0d2021-10-02 20:47:33 -04002065 } else {
2066 if (Has_Data_Media && !Symlink_Mount_Point.empty()) {
2067 Recreate_Media_Folder();
2068 if (Mount(false))
2069 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
2070 }
bigbiff0f7f9a12021-07-09 20:08:44 -04002071 }
2072
Ethan Yonker93382822018-11-01 15:25:31 -05002073 ret = true;
2074 if (!Key_Directory.empty())
2075 ret = PartitionManager.Wipe_By_Path(Key_Directory);
2076 if (ret)
2077 ret = base_partition->PostWipeEncryption();
2078 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002079 } else {
2080 Has_Data_Media = Save_Data_Media;
Ethan Yonker74db1572015-10-28 12:44:49 -05002081 gui_err("format_data_err=Unable to format to remove encryption.");
Ethan Yonker726a0202014-12-16 20:01:38 -06002082 if (Has_Data_Media && Mount(false))
2083 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -05002084 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002085 }
Ethan Yonker93382822018-11-01 15:25:31 -05002086exit:
2087 delete base_partition;
2088 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04002089}
2090
2091void TWPartition::Check_FS_Type() {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002092 const char* type;
2093 blkid_probe pr;
Dees_Troy5bf43922012-09-07 16:07:55 -04002094
Dees_Troy68cab492012-12-12 19:29:35 +00002095 if (Fstab_File_System == "yaffs2" || Fstab_File_System == "mtd" || Fstab_File_System == "bml" || Ignore_Blkid)
2096 return; // Running blkid on some mtd devices causes a massive crash or needs to be skipped
Dees_Troy5bf43922012-09-07 16:07:55 -04002097
Dees_Troy38bd7602012-09-14 13:33:53 -04002098 Find_Actual_Block_Device();
Dees_Troy8170a922012-09-18 15:40:25 -04002099 if (!Is_Present)
2100 return;
Dees_Troy51127312012-09-08 13:08:49 -04002101
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002102 pr = blkid_new_probe_from_filename(Actual_Block_Device.c_str());
2103 if (blkid_do_fullprobe(pr)) {
2104 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00002105 LOGINFO("Can't probe device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002106 return;
Dees_Troy5bf43922012-09-07 16:07:55 -04002107 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002108
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05002109 if (blkid_probe_lookup_value(pr, "TYPE", &type, NULL) < 0) {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002110 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00002111 LOGINFO("can't find filesystem on device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002112 return;
2113 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002114
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002115 Current_File_System = type;
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002116 blkid_free_probe(pr);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002117 if (fs_flags.size() > 1) {
2118 std::vector<partition_fs_flags_struct>::iterator iter;
2119 std::vector<partition_fs_flags_struct>::iterator found = fs_flags.begin();
2120
2121 for (iter = fs_flags.begin(); iter != fs_flags.end(); iter++) {
2122 if (iter->File_System == Current_File_System) {
2123 found = iter;
2124 break;
2125 }
2126 }
2127 // If we don't find a match, we default the flags to the first set of flags that we received from the fstab
2128 if (Mount_Flags != found->Mount_Flags || Mount_Options != found->Mount_Options) {
2129 Mount_Flags = found->Mount_Flags;
2130 Mount_Options = found->Mount_Options;
2131 LOGINFO("Mount_Flags: %i, Mount_Options: %s\n", Mount_Flags, Mount_Options.c_str());
2132 }
2133 }
Dees_Troy51a0e822012-09-05 15:24:24 -04002134}
2135
dianlujitao4879b372018-12-03 18:45:47 +08002136bool TWPartition::Wipe_EXTFS(string File_System) {
bigbiffa2bd7b72020-05-07 21:45:34 -04002137 if (!UnMount(true))
2138 return false;
2139
dianlujitao4879b372018-12-03 18:45:47 +08002140#if PLATFORM_SDK_VERSION < 28
2141 if (!TWFunc::Path_Exists("/sbin/mke2fs"))
2142#else
2143 if (!TWFunc::Path_Exists("/sbin/mke2fs") || !TWFunc::Path_Exists("/sbin/e2fsdroid"))
2144#endif
Dees_Troy38bd7602012-09-14 13:33:53 -04002145 return Wipe_RMRF();
2146
dianlujitao4879b372018-12-03 18:45:47 +08002147 int ret;
2148 bool NeedPreserveFooter = true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002149
Ethan Yonker25f20c12014-10-14 09:04:43 -05002150 Find_Actual_Block_Device();
2151 if (!Is_Present) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002152 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2153 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Ethan Yonker25f20c12014-10-14 09:04:43 -05002154 return false;
2155 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002156 if (!UnMount(true))
2157 return false;
2158
dianlujitao4879b372018-12-03 18:45:47 +08002159 /**
2160 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2161 * so there's no need to preserve footer.
2162 */
2163 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2164 Crypto_Key_Location != "footer") {
2165 NeedPreserveFooter = false;
2166 }
2167
2168 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2169 if (!dev_sz)
2170 return false;
2171
2172 if (NeedPreserveFooter)
2173 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2174
Dees Troy9a4d7402019-03-21 14:17:28 -04002175 char dout[16];
2176 sprintf(dout, "%llu", dev_sz / 4096);
2177
2178 //string size_str =to_string(dev_sz / 4096);
2179 string size_str = dout;
dianlujitao4879b372018-12-03 18:45:47 +08002180 string Command;
2181
2182 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mke2fs"));
2183
2184 // Execute mke2fs to create empty ext4 filesystem
2185 Command = "mke2fs -t " + File_System + " -b 4096 " + Actual_Block_Device + " " + size_str;
2186 LOGINFO("mke2fs command: %s\n", Command.c_str());
2187 ret = TWFunc::Exec_Cmd(Command);
2188 if (ret) {
2189 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2190 return false;
2191 }
2192
2193 if (TWFunc::Path_Exists("/sbin/e2fsdroid")) {
dianlujitao3cf05a52019-05-15 15:33:27 +08002194 const string& File_Contexts_Entry = (Mount_Point == "/system_root" ? "/" : Mount_Point);
2195 char *secontext = NULL;
2196 if (!selinux_handle || selabel_lookup(selinux_handle, &secontext, File_Contexts_Entry.c_str(), S_IFDIR) < 0) {
2197 LOGINFO("Cannot lookup security context for '%s'\n", Mount_Point.c_str());
2198 } else {
2199 // Execute e2fsdroid to initialize selinux context
2200 Command = "e2fsdroid -e -S /file_contexts -a " + File_Contexts_Entry + " " + Actual_Block_Device;
2201 LOGINFO("e2fsdroid command: %s\n", Command.c_str());
2202 ret = TWFunc::Exec_Cmd(Command);
2203 if (ret) {
2204 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2205 return false;
2206 }
dianlujitao4879b372018-12-03 18:45:47 +08002207 }
2208 } else {
2209 LOGINFO("e2fsdroid not present\n");
2210 }
2211
2212 if (NeedPreserveFooter)
2213 Wipe_Crypto_Key();
2214 Current_File_System = File_System;
2215 Recreate_AndSec_Folder();
2216 gui_msg("done=Done.");
2217 return true;
2218}
2219
2220bool TWPartition::Wipe_EXT4() {
2221#ifdef USE_EXT4
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002222 int ret;
dianlujitao4879b372018-12-03 18:45:47 +08002223 bool NeedPreserveFooter = true;
2224
2225 Find_Actual_Block_Device();
2226 if (!Is_Present) {
2227 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2228 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2229 return false;
2230 }
2231 if (!UnMount(true))
2232 return false;
2233
2234 /**
2235 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2236 * so there's no need to preserve footer.
2237 */
2238 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2239 Crypto_Key_Location != "footer") {
2240 NeedPreserveFooter = false;
2241 }
2242
2243 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2244 if (!dev_sz)
2245 return false;
2246
2247 if (NeedPreserveFooter)
2248 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2249
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002250 char *secontext = NULL;
2251
Greg Wallace4b44fef2015-12-29 15:33:24 -05002252 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("make_ext4fs"));
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002253
Dees Troy99c8dbf2014-03-10 16:53:58 +00002254 if (!selinux_handle || selabel_lookup(selinux_handle, &secontext, Mount_Point.c_str(), S_IFDIR) < 0) {
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002255 LOGINFO("Cannot lookup security context for '%s'\n", Mount_Point.c_str());
dianlujitao4879b372018-12-03 18:45:47 +08002256 ret = make_ext4fs(Actual_Block_Device.c_str(), dev_sz, Mount_Point.c_str(), NULL);
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002257 } else {
dianlujitao4879b372018-12-03 18:45:47 +08002258 ret = make_ext4fs(Actual_Block_Device.c_str(), dev_sz, Mount_Point.c_str(), selinux_handle);
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002259 }
2260 if (ret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002261 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troya95f55c2013-08-17 13:14:43 +00002262 return false;
2263 } else {
dianlujitao4879b372018-12-03 18:45:47 +08002264 if (NeedPreserveFooter)
2265 Wipe_Crypto_Key();
bigbiff bigbiffc49d7062013-10-11 20:28:00 -04002266 string sedir = Mount_Point + "/lost+found";
2267 PartitionManager.Mount_By_Path(sedir.c_str(), true);
2268 rmdir(sedir.c_str());
2269 mkdir(sedir.c_str(), S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP);
Dees_Troya95f55c2013-08-17 13:14:43 +00002270 return true;
2271 }
2272#else
dianlujitao4879b372018-12-03 18:45:47 +08002273 return Wipe_EXTFS("ext4");
Dees_Troya95f55c2013-08-17 13:14:43 +00002274#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002275}
2276
2277bool TWPartition::Wipe_FAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002278 string command;
bigbiffa2bd7b72020-05-07 21:45:34 -04002279 if (!UnMount(true))
2280 return false;
Dees_Troy38bd7602012-09-14 13:33:53 -04002281
Matt Mower18794c82015-11-11 16:22:45 -06002282 if (TWFunc::Path_Exists("/sbin/mkfs.fat")) {
Greg Wallace4b44fef2015-12-29 15:33:24 -05002283 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkfs.fat"));
Dees_Troy38bd7602012-09-14 13:33:53 -04002284 Find_Actual_Block_Device();
Matt Mower18794c82015-11-11 16:22:45 -06002285 command = "mkfs.fat " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02002286 if (TWFunc::Exec_Cmd(command) == 0) {
Gary Pecke8bc5d72012-12-21 06:45:25 -08002287 Current_File_System = "vfat";
Dees_Troye58d5262012-09-21 12:27:57 -04002288 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002289 gui_msg("done=Done.");
Dees_Troy38bd7602012-09-14 13:33:53 -04002290 return true;
2291 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002292 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troy38bd7602012-09-14 13:33:53 -04002293 return false;
2294 }
2295 return true;
2296 }
2297 else
2298 return Wipe_RMRF();
2299
2300 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002301}
2302
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002303bool TWPartition::Wipe_EXFAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002304 string command;
bigbiffa2bd7b72020-05-07 21:45:34 -04002305 if (!UnMount(true))
2306 return false;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002307
2308 if (TWFunc::Path_Exists("/sbin/mkexfatfs")) {
Greg Wallace4b44fef2015-12-29 15:33:24 -05002309 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkexfatfs"));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002310 Find_Actual_Block_Device();
2311 command = "mkexfatfs " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02002312 if (TWFunc::Exec_Cmd(command) == 0) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002313 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002314 gui_msg("done=Done.");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002315 return true;
2316 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002317 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002318 return false;
2319 }
2320 return true;
2321 }
2322 return false;
2323}
2324
Dees_Troy38bd7602012-09-14 13:33:53 -04002325bool TWPartition::Wipe_MTD() {
2326 if (!UnMount(true))
2327 return false;
2328
Greg Wallace4b44fef2015-12-29 15:33:24 -05002329 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("MTD"));
Dees_Troy38bd7602012-09-14 13:33:53 -04002330
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002331 mtd_scan_partitions();
2332 const MtdPartition* mtd = mtd_find_partition_by_name(MTD_Name.c_str());
2333 if (mtd == NULL) {
2334 LOGERR("No mtd partition named '%s'", MTD_Name.c_str());
2335 return false;
2336 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002337
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002338 MtdWriteContext* ctx = mtd_write_partition(mtd);
2339 if (ctx == NULL) {
2340 LOGERR("Can't write '%s', failed to format.", MTD_Name.c_str());
2341 return false;
2342 }
2343 if (mtd_erase_blocks(ctx, -1) == -1) {
2344 mtd_write_close(ctx);
2345 LOGERR("Failed to format '%s'", MTD_Name.c_str());
2346 return false;
2347 }
2348 if (mtd_write_close(ctx) != 0) {
2349 LOGERR("Failed to close '%s'", MTD_Name.c_str());
2350 return false;
2351 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08002352 Current_File_System = "yaffs2";
Dees_Troye58d5262012-09-21 12:27:57 -04002353 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002354 gui_msg("done=Done.");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002355 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002356}
2357
2358bool TWPartition::Wipe_RMRF() {
Dees_Troy38bd7602012-09-14 13:33:53 -04002359 if (!Mount(true))
2360 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002361 // This is the only wipe that leaves the partition mounted, so we
2362 // must manually remove the partition from MTP if it is a storage
2363 // partition.
2364 if (Is_Storage)
2365 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04002366
Ethan Yonker74db1572015-10-28 12:44:49 -05002367 gui_msg(Msg("remove_all=Removing all files under '{1}'")(Mount_Point));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002368 TWFunc::removeDir(Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04002369 Recreate_AndSec_Folder();
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002370 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002371}
2372
Dees_Troye5017042013-08-29 16:38:55 +00002373bool TWPartition::Wipe_F2FS() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002374 string command;
bigbiffa2bd7b72020-05-07 21:45:34 -04002375 if (!UnMount(true))
2376 return false;
Dees_Troye5017042013-08-29 16:38:55 +00002377
2378 if (TWFunc::Path_Exists("/sbin/mkfs.f2fs")) {
dianlujitao4879b372018-12-03 18:45:47 +08002379 bool NeedPreserveFooter = true;
2380
2381 Find_Actual_Block_Device();
2382 if (!Is_Present) {
2383 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2384 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2385 return false;
2386 }
Dees_Troye5017042013-08-29 16:38:55 +00002387
dianlujitao4879b372018-12-03 18:45:47 +08002388 /**
2389 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2390 * so there's no need to preserve footer.
2391 */
2392 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2393 Crypto_Key_Location != "footer") {
2394 NeedPreserveFooter = false;
dhacker29a3fa75f2015-01-17 19:42:33 -05002395 }
dianlujitao4879b372018-12-03 18:45:47 +08002396
dianlujitao4879b372018-12-03 18:45:47 +08002397 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkfs.f2fs"));
Ethan Yonker7e941582019-03-22 08:18:21 -05002398 // First determine if we have the old mkfs.f2fs that uses "-r reserved_bytes"
2399 // or the new mkfs.f2fs that expects the number of sectors as the optional last argument
2400 // Note: some 7.1 trees have the old and some have the new.
2401 command = "mkfs.f2fs | grep \"reserved\" > /tmp/f2fsversiontest";
2402 TWFunc::Exec_Cmd(command, false); // no help argument so printing usage exits with an error code
2403 if (!TWFunc::Path_Exists("/tmp/f2fsversiontest")) {
2404 LOGINFO("Error determining mkfs.f2fs version\n");
2405 return false;
2406 }
2407 if (TWFunc::Get_File_Size("/tmp/f2fsversiontest") <= 0) {
2408 LOGINFO("Using newer mkfs.f2fs\n");
2409 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2410 if (!dev_sz)
2411 return false;
2412
2413 if (NeedPreserveFooter)
2414 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2415
2416 char dev_sz_str[48];
2417 sprintf(dev_sz_str, "%llu", (dev_sz / 4096));
2418 command = "mkfs.f2fs -d1 -f -O encrypt -O quota -O verity -w 4096 " + Actual_Block_Device + " " + dev_sz_str;
2419 if (TWFunc::Path_Exists("/sbin/sload.f2fs")) {
2420 command += " && sload.f2fs -t /data " + Actual_Block_Device;
2421 }
2422 } else {
2423 LOGINFO("Using older mkfs.f2fs\n");
2424 command = "mkfs.f2fs -t 0";
2425 if (NeedPreserveFooter) {
2426 // Only use length if we're not decrypted
2427 char len[32];
2428 int mod_length = Length;
2429 if (Length < 0)
2430 mod_length *= -1;
2431 sprintf(len, "%i", mod_length);
2432 command += " -r ";
2433 command += len;
2434 }
2435 command += " " + Actual_Block_Device;
dianlujitao4879b372018-12-03 18:45:47 +08002436 }
2437 LOGINFO("mkfs.f2fs command: %s\n", command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002438 if (TWFunc::Exec_Cmd(command) == 0) {
dianlujitao4879b372018-12-03 18:45:47 +08002439 if (NeedPreserveFooter)
2440 Wipe_Crypto_Key();
Dees_Troye5017042013-08-29 16:38:55 +00002441 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002442 gui_msg("done=Done.");
Dees_Troye5017042013-08-29 16:38:55 +00002443 return true;
2444 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002445 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troye5017042013-08-29 16:38:55 +00002446 return false;
2447 }
2448 return true;
2449 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002450 LOGINFO("mkfs.f2fs binary not found, using rm -rf to wipe.\n");
Dees_Troye5017042013-08-29 16:38:55 +00002451 return Wipe_RMRF();
2452 }
2453 return false;
2454}
2455
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002456bool TWPartition::Wipe_NTFS() {
2457 string command;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002458 string Ntfsmake_Binary;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002459
bigbiffa2bd7b72020-05-07 21:45:34 -04002460 if (!UnMount(true))
2461 return false;
2462
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002463 if (TWFunc::Path_Exists("/sbin/mkntfs"))
2464 Ntfsmake_Binary = "mkntfs";
2465 else if (TWFunc::Path_Exists("/sbin/mkfs.ntfs"))
2466 Ntfsmake_Binary = "mkfs.ntfs";
2467 else
2468 return false;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002469
Greg Wallace4b44fef2015-12-29 15:33:24 -05002470 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)(Ntfsmake_Binary));
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002471 Find_Actual_Block_Device();
2472 command = "/sbin/" + Ntfsmake_Binary + " " + Actual_Block_Device;
2473 if (TWFunc::Exec_Cmd(command) == 0) {
2474 Recreate_AndSec_Folder();
2475 gui_msg("done=Done.");
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002476 return true;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002477 } else {
2478 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2479 return false;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002480 }
2481 return false;
2482}
2483
Dees_Troy51a0e822012-09-05 15:24:24 -04002484bool TWPartition::Wipe_Data_Without_Wiping_Media() {
Ethan Yonker83e82572014-04-04 10:59:28 -05002485#ifdef TW_OEM_BUILD
2486 // In an OEM Build we want to do a full format
2487 return Wipe_Encryption();
2488#else
Ethan Yonker66a19492015-12-10 10:19:45 -06002489 bool ret = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04002490
Dees_Troy38bd7602012-09-14 13:33:53 -04002491 if (!Mount(true))
2492 return false;
Ethan Yonker74db1572015-10-28 12:44:49 -05002493 gui_msg("wiping_data=Wiping data without wiping /data/media ...");
Ethan Yonker66a19492015-12-10 10:19:45 -06002494 ret = Wipe_Data_Without_Wiping_Media_Func(Mount_Point + "/");
2495 if (ret)
2496 gui_msg("done=Done.");
2497 return ret;
2498#endif // ifdef TW_OEM_BUILD
2499}
2500
bigbiff349ea552020-06-19 16:07:38 -04002501bool TWPartition::Recreate_Logs_Dir() {
bigbifff62d2492020-05-20 10:15:34 -04002502#ifdef TW_INCLUDE_FBE
bigbiffa2bd7b72020-05-07 21:45:34 -04002503 struct passwd pd;
2504 struct passwd *pwdptr = &pd;
2505 struct passwd *tempPd;
2506 char pwdBuf[512];
2507 int uid = 0, gid = 0;
2508
2509 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
2510 LOGERR("unable to get system user id\n");
2511 return false;
2512 } else {
2513 struct group grp;
2514 struct group *grpptr = &grp;
2515 struct group *tempGrp;
2516 char grpBuf[512];
2517
2518 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
2519 LOGERR("unable to get cache group id\n");
2520 return false;
2521 } else {
2522 uid = pd.pw_uid;
2523 gid = grp.gr_gid;
bigbiff349ea552020-06-19 16:07:38 -04002524 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
2525 abLogsRecoveryDir += "/recovery/";
bigbiffa2bd7b72020-05-07 21:45:34 -04002526
bigbiff349ea552020-06-19 16:07:38 -04002527 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
2528 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
bigbiffa2bd7b72020-05-07 21:45:34 -04002529 return false;
2530 }
bigbiff349ea552020-06-19 16:07:38 -04002531 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
2532 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
bigbiffa2bd7b72020-05-07 21:45:34 -04002533 return false;
2534 }
2535 }
2536 }
bigbifff62d2492020-05-20 10:15:34 -04002537#endif
bigbiffa2bd7b72020-05-07 21:45:34 -04002538 return true;
2539}
2540
Ethan Yonker66a19492015-12-10 10:19:45 -06002541bool TWPartition::Wipe_Data_Without_Wiping_Media_Func(const string& parent __unused) {
2542 string dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04002543
2544 DIR* d;
Ethan Yonker66a19492015-12-10 10:19:45 -06002545 d = opendir(parent.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +00002546 if (d != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04002547 struct dirent* de;
2548 while ((de = readdir(d)) != NULL) {
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05002549 if (strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0) continue;
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05002550
Ethan Yonker66a19492015-12-10 10:19:45 -06002551 dir = parent;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002552 dir.append(de->d_name);
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002553 if (wipe_exclusions.check_skip_dirs(dir)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002554 LOGINFO("skipped '%s'\n", dir.c_str());
2555 continue;
2556 }
Dees_Troyce675462013-01-09 19:48:21 +00002557 if (de->d_type == DT_DIR) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002558 dir.append("/");
2559 if (!Wipe_Data_Without_Wiping_Media_Func(dir)) {
2560 closedir(d);
2561 return false;
2562 }
2563 rmdir(dir.c_str());
bigbiff bigbiff98f1f902013-01-19 18:46:13 -05002564 } else if (de->d_type == DT_REG || de->d_type == DT_LNK || de->d_type == DT_FIFO || de->d_type == DT_SOCK) {
nkk719efbe762017-06-13 19:49:05 +03002565 if (unlink(dir.c_str()) != 0)
Ethan Yonker79f88bd2016-12-09 14:52:12 -06002566 LOGINFO("Unable to unlink '%s': %s\n", dir.c_str(), strerror(errno));
Dees_Troyce675462013-01-09 19:48:21 +00002567 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002568 }
2569 closedir(d);
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05002570
Dees_Troy16b74352012-11-14 22:27:31 +00002571 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -04002572 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002573 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy16b74352012-11-14 22:27:31 +00002574 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002575}
2576
dianlujitao4879b372018-12-03 18:45:47 +08002577void TWPartition::Wipe_Crypto_Key() {
2578 Find_Actual_Block_Device();
2579 if (Crypto_Key_Location.empty())
2580 return;
2581 else if (Crypto_Key_Location == "footer") {
2582 int fd = open(Actual_Block_Device.c_str(), O_RDWR);
2583 if (fd < 0) {
2584 gui_print_color("warning", "Unable to open '%s' to wipe crypto key\n", Actual_Block_Device.c_str());
2585 return;
2586 }
2587
2588 unsigned int block_count;
2589 if ((ioctl(fd, BLKGETSIZE, &block_count)) == -1) {
2590 gui_print_color("warning", "Unable to get block size for wiping crypto footer.\n");
2591 } else {
2592 int newlen = Length < 0 ? -Length : CRYPT_FOOTER_OFFSET;
2593 off64_t offset = ((off64_t)block_count * 512) - newlen;
2594 if (lseek64(fd, offset, SEEK_SET) == -1) {
2595 gui_print_color("warning", "Unable to lseek64 for wiping crypto footer.\n");
2596 } else {
2597 void* buffer = malloc(newlen);
2598 if (!buffer) {
2599 gui_print_color("warning", "Failed to malloc for wiping crypto footer.\n");
2600 } else {
2601 memset(buffer, 0, newlen);
2602 int ret = write(fd, buffer, newlen);
2603 if (ret != newlen) {
2604 gui_print_color("warning", "Failed to wipe crypto footer.\n");
2605 } else {
2606 LOGINFO("Successfully wiped crypto footer.\n");
2607 }
2608 free(buffer);
2609 }
2610 }
2611 }
2612 close(fd);
2613 } else {
2614 if (TWFunc::IOCTL_Get_Block_Size(Crypto_Key_Location.c_str()) >= 16384LLU) {
2615 string Command = "dd of='" + Crypto_Key_Location + "' if=/dev/zero bs=16384 count=1";
2616 TWFunc::Exec_Cmd(Command);
2617 } else {
2618 LOGINFO("Crypto key location reports size < 16K so not wiping crypto footer.\n");
2619 }
2620 }
2621}
2622
bigbiffce8f83c2015-12-12 18:30:21 -05002623bool TWPartition::Backup_Tar(PartitionSettings *part_settings, pid_t *tar_fork_pid) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002624 string Full_FileName;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002625 twrpTar tar;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -05002626
Dees_Troy43d8b002012-09-17 16:00:01 -04002627 if (!Mount(true))
2628 return false;
2629
Ian Macdonalda3b25a32019-06-16 22:39:14 +02002630 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Backup_Display_Name, gui_parse_text("{@backing}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002631 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002632
Ethan Yonker472f5062016-02-25 13:47:30 -06002633 DataManager::GetValue(TW_USE_COMPRESSION_VAR, tar.use_compression);
Matt Mowerbb81e5d2014-03-20 18:05:41 -05002634
Dees_Troy83bd4832013-05-04 12:39:56 +00002635#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
Ethan Yonker472f5062016-02-25 13:47:30 -06002636 if (Can_Encrypt_Backup) {
2637 DataManager::GetValue("tw_encrypt_backup", tar.use_encryption);
2638 if (tar.use_encryption) {
2639 if (Use_Userdata_Encryption)
2640 tar.userdata_encryption = tar.use_encryption;
2641 string Password;
2642 DataManager::GetValue("tw_backup_password", Password);
2643 tar.setpassword(Password);
2644 } else {
2645 tar.use_encryption = 0;
2646 }
Dees_Troy83bd4832013-05-04 12:39:56 +00002647 }
2648#endif
Dees_Troy43d8b002012-09-17 16:00:01 -04002649
Ethan Yonker472f5062016-02-25 13:47:30 -06002650 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002651 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker01f4e032017-02-03 15:30:52 -06002652 if (Has_Data_Media)
2653 gui_msg(Msg(msg::kWarning, "backup_storage_warning=Backups of {1} do not include any files in internal storage such as pictures or downloads.")(Display_Name));
Noah Jacobson5a79f672019-04-28 00:10:07 -04002654 if (Mount_Point == "/data" && DataManager::GetIntValue(TW_IS_FBE)) {
2655 std::vector<users_struct>::iterator iter;
2656 std::vector<users_struct>* userList = PartitionManager.Get_Users_List();
2657 for (iter = userList->begin(); iter != userList->end(); iter++) {
2658 if (!(*iter).isDecrypted && (*iter).userId != "0") {
2659 gui_msg(Msg(msg::kWarning,
2660 "backup_storage_undecrypt_warning=Backup will not include some files from user {1} "
2661 "because the user is not decrypted.")((*iter).userId));
2662 backup_exclusions.add_absolute_dir("/data/system_ce/" + (*iter).userId);
2663 backup_exclusions.add_absolute_dir("/data/misc_ce/" + (*iter).userId);
2664 backup_exclusions.add_absolute_dir("/data/vendor_ce/" + (*iter).userId);
2665 backup_exclusions.add_absolute_dir("/data/media/" + (*iter).userId);
2666 backup_exclusions.add_absolute_dir("/data/user/" + (*iter).userId);
2667 }
2668 }
2669 }
bigbiffce8f83c2015-12-12 18:30:21 -05002670 tar.part_settings = part_settings;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002671 tar.backup_exclusions = &backup_exclusions;
Dees Troye0a433a2013-12-02 04:10:37 +00002672 tar.setdir(Backup_Path);
2673 tar.setfn(Full_FileName);
2674 tar.setsize(Backup_Size);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002675 tar.partition_name = Backup_Name;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002676 tar.backup_folder = part_settings->Backup_Folder;
bigbiffce8f83c2015-12-12 18:30:21 -05002677 if (tar.createTarFork(tar_fork_pid) != 0)
Dees Troye0a433a2013-12-02 04:10:37 +00002678 return false;
Dees_Troy43d8b002012-09-17 16:00:01 -04002679 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002680}
2681
bigbiffce8f83c2015-12-12 18:30:21 -05002682bool TWPartition::Backup_Image(PartitionSettings *part_settings) {
2683 string Full_FileName, adb_file_name;
igoriok87e3d932013-01-31 21:03:53 +02002684
Ethan Yonker74db1572015-10-28 12:44:49 -05002685 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, gui_parse_text("{@backing}"));
2686 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002687
Ethan Yonker472f5062016-02-25 13:47:30 -06002688 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Dees_Troy43d8b002012-09-17 16:00:01 -04002689
bigbiffce8f83c2015-12-12 18:30:21 -05002690 if (part_settings->adbbackup) {
2691 Full_FileName = TW_ADB_BACKUP;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002692 adb_file_name = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002693 }
2694 else
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002695 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002696
2697 part_settings->total_restore_size = Backup_Size;
2698
2699 if (part_settings->adbbackup) {
2700 if (!twadbbu::Write_TWIMG(adb_file_name, Backup_Size))
2701 return false;
2702 }
2703
2704 if (!Raw_Read_Write(part_settings))
Ethan Yonker472f5062016-02-25 13:47:30 -06002705 return false;
2706
bigbiffce8f83c2015-12-12 18:30:21 -05002707 if (part_settings->adbbackup) {
2708 if (!twadbbu::Write_TWEOF())
2709 return false;
Dees_Troy7c2dec82012-09-26 09:49:14 -04002710 }
Dees_Troy43d8b002012-09-17 16:00:01 -04002711 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002712}
2713
bigbiffce8f83c2015-12-12 18:30:21 -05002714bool TWPartition::Raw_Read_Write(PartitionSettings *part_settings) {
2715 unsigned long long RW_Block_Size, Remain = Backup_Size;
2716 int src_fd = -1, dest_fd = -1;
2717 ssize_t bs;
Ethan Yonker472f5062016-02-25 13:47:30 -06002718 bool ret = false;
2719 void* buffer = NULL;
2720 unsigned long long backedup_size = 0;
bigbiffce8f83c2015-12-12 18:30:21 -05002721 string srcfn, destfn;
Ethan Yonker472f5062016-02-25 13:47:30 -06002722
bigbiffce8f83c2015-12-12 18:30:21 -05002723 if (part_settings->PM_Method == PM_BACKUP) {
2724 srcfn = Actual_Block_Device;
2725 if (part_settings->adbbackup)
2726 destfn = TW_ADB_BACKUP;
bigbiff bigbiff38b83c12017-12-28 19:58:52 -05002727 else {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002728 destfn = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiff bigbiff38b83c12017-12-28 19:58:52 -05002729 }
bigbiffce8f83c2015-12-12 18:30:21 -05002730 }
2731 else {
2732 destfn = Actual_Block_Device;
2733 if (part_settings->adbbackup) {
2734 srcfn = TW_ADB_RESTORE;
2735 } else {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002736 srcfn = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002737 Remain = TWFunc::Get_File_Size(srcfn);
2738 }
2739 }
Ethan Yonker472f5062016-02-25 13:47:30 -06002740
bigbiffce8f83c2015-12-12 18:30:21 -05002741 src_fd = open(srcfn.c_str(), O_RDONLY | O_LARGEFILE);
Ethan Yonker472f5062016-02-25 13:47:30 -06002742 if (src_fd < 0) {
bigbiffce8f83c2015-12-12 18:30:21 -05002743 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(srcfn.c_str())(strerror(errno)));
Ethan Yonker472f5062016-02-25 13:47:30 -06002744 return false;
2745 }
bigbiffce8f83c2015-12-12 18:30:21 -05002746
2747 dest_fd = open(destfn.c_str(), O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE, S_IRUSR | S_IWUSR);
Ethan Yonker472f5062016-02-25 13:47:30 -06002748 if (dest_fd < 0) {
bigbiffce8f83c2015-12-12 18:30:21 -05002749 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(destfn.c_str())(strerror(errno)));
Ethan Yonker472f5062016-02-25 13:47:30 -06002750 goto exit;
2751 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002752
bigbiffce8f83c2015-12-12 18:30:21 -05002753 LOGINFO("Reading '%s', writing '%s'\n", srcfn.c_str(), destfn.c_str());
2754
2755 if (part_settings->adbbackup) {
2756 RW_Block_Size = MAX_ADB_READ;
2757 bs = MAX_ADB_READ;
2758 }
2759 else {
2760 RW_Block_Size = 1048576LLU; // 1MB
2761 bs = (ssize_t)(RW_Block_Size);
2762 }
2763
Ethan Yonker472f5062016-02-25 13:47:30 -06002764 buffer = malloc((size_t)bs);
2765 if (!buffer) {
2766 LOGINFO("Raw_Read_Write failed to malloc\n");
2767 goto exit;
2768 }
bigbiffce8f83c2015-12-12 18:30:21 -05002769
2770 if (part_settings->progress)
2771 part_settings->progress->SetPartitionSize(part_settings->total_restore_size);
2772
Ethan Yonker472f5062016-02-25 13:47:30 -06002773 while (Remain > 0) {
2774 if (Remain < RW_Block_Size)
bigbiffce8f83c2015-12-12 18:30:21 -05002775 bs = (ssize_t)(Remain);
Matt Mowera8a89d12016-12-30 18:10:37 -06002776 if (read(src_fd, buffer, bs) != bs) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002777 LOGINFO("Error reading source fd (%s)\n", strerror(errno));
2778 goto exit;
2779 }
2780 if (write(dest_fd, buffer, bs) != bs) {
2781 LOGINFO("Error writing destination fd (%s)\n", strerror(errno));
2782 goto exit;
2783 }
2784 backedup_size += (unsigned long long)(bs);
Matt Mower029a82d2017-01-08 13:12:38 -06002785 Remain -= (unsigned long long)(bs);
bigbiffce8f83c2015-12-12 18:30:21 -05002786 if (part_settings->progress)
2787 part_settings->progress->UpdateSize(backedup_size);
Ethan Yonker472f5062016-02-25 13:47:30 -06002788 if (PartitionManager.Check_Backup_Cancel() != 0)
2789 goto exit;
2790 }
bigbiffce8f83c2015-12-12 18:30:21 -05002791 if (part_settings->progress)
2792 part_settings->progress->UpdateDisplayDetails(true);
Ethan Yonker472f5062016-02-25 13:47:30 -06002793 fsync(dest_fd);
nailyka083dc62016-11-11 21:41:28 +01002794
2795 if (!part_settings->adbbackup && part_settings->PM_Method == PM_BACKUP) {
2796 tw_set_default_metadata(destfn.c_str());
2797 LOGINFO("Restored default metadata for %s\n", destfn.c_str());
2798 }
2799
Ethan Yonker472f5062016-02-25 13:47:30 -06002800 ret = true;
2801exit:
2802 if (src_fd >= 0)
2803 close(src_fd);
2804 if (dest_fd >= 0)
2805 close(dest_fd);
2806 if (buffer)
2807 free(buffer);
2808 return ret;
2809}
2810
bigbiffce8f83c2015-12-12 18:30:21 -05002811bool TWPartition::Backup_Dump_Image(PartitionSettings *part_settings) {
Vojtech Bocek05534202013-09-11 08:11:56 +02002812 string Full_FileName, Command;
Dees_Troy43d8b002012-09-17 16:00:01 -04002813
Ethan Yonker74db1572015-10-28 12:44:49 -05002814 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, gui_parse_text("{@backing}"));
2815 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002816
bigbiffce8f83c2015-12-12 18:30:21 -05002817 if (part_settings->progress)
2818 part_settings->progress->SetPartitionSize(Backup_Size);
Dees_Troy43d8b002012-09-17 16:00:01 -04002819
Ethan Yonker472f5062016-02-25 13:47:30 -06002820 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002821 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Dees_Troy43d8b002012-09-17 16:00:01 -04002822
2823 Command = "dump_image " + MTD_Name + " '" + Full_FileName + "'";
bigbiffce8f83c2015-12-12 18:30:21 -05002824
Dees_Troy2673cec2013-04-02 20:22:16 +00002825 LOGINFO("Backup command: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002826 TWFunc::Exec_Cmd(Command);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06002827 tw_set_default_metadata(Full_FileName.c_str());
Dees_Troy7c2dec82012-09-26 09:49:14 -04002828 if (TWFunc::Get_File_Size(Full_FileName) == 0) {
2829 // Actual size may not match backup size due to bad blocks on MTD devices so just check for 0 bytes
Matt Mower3c366972015-12-25 19:28:31 -06002830 gui_msg(Msg(msg::kError, "backup_size=Backup file size for '{1}' is 0 bytes.")(Full_FileName));
Dees_Troy7c2dec82012-09-26 09:49:14 -04002831 return false;
2832 }
bigbiffce8f83c2015-12-12 18:30:21 -05002833 if (part_settings->progress)
2834 part_settings->progress->UpdateSize(Backup_Size);
2835
Dees_Troy43d8b002012-09-17 16:00:01 -04002836 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002837}
2838
bigbiffce8f83c2015-12-12 18:30:21 -05002839unsigned long long TWPartition::Get_Restore_Size(PartitionSettings *part_settings) {
2840 if (!part_settings->adbbackup) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002841 InfoManager restore_info(part_settings->Backup_Folder + "/" + Backup_Name + ".info");
bigbiffce8f83c2015-12-12 18:30:21 -05002842 if (restore_info.LoadValues() == 0) {
2843 if (restore_info.GetValue("backup_size", Restore_Size) == 0) {
2844 LOGINFO("Read info file, restore size is %llu\n", Restore_Size);
2845 return Restore_Size;
2846 }
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002847 }
2848 }
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002849
Matt Mower029a82d2017-01-08 13:12:38 -06002850 string Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
2851 string Restore_File_System = Get_Restore_File_System(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002852
2853 if (Is_Image(Restore_File_System)) {
2854 Restore_Size = TWFunc::Get_File_Size(Full_FileName);
2855 return Restore_Size;
2856 }
2857
2858 twrpTar tar;
2859 tar.setdir(Backup_Path);
2860 tar.setfn(Full_FileName);
bigbiffce8f83c2015-12-12 18:30:21 -05002861 tar.backup_name = Full_FileName;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002862#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
2863 string Password;
2864 DataManager::GetValue("tw_restore_password", Password);
2865 if (!Password.empty())
2866 tar.setpassword(Password);
2867#endif
2868 tar.partition_name = Backup_Name;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002869 tar.backup_folder = part_settings->Backup_Folder;
bigbiffce8f83c2015-12-12 18:30:21 -05002870 tar.part_settings = part_settings;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002871 Restore_Size = tar.get_size();
2872 return Restore_Size;
2873}
2874
bigbiffce8f83c2015-12-12 18:30:21 -05002875bool TWPartition::Restore_Tar(PartitionSettings *part_settings) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002876 string Full_FileName;
Dees Troy4159aed2014-02-28 17:24:43 +00002877 bool ret = false;
bigbiffce8f83c2015-12-12 18:30:21 -05002878 string Restore_File_System = Get_Restore_File_System(part_settings);
Dees_Troy43d8b002012-09-17 16:00:01 -04002879
Dees_Troye58d5262012-09-21 12:27:57 -04002880 if (Has_Android_Secure) {
Dees_Troye58d5262012-09-21 12:27:57 -04002881 if (!Wipe_AndSec())
2882 return false;
Gary Peck43acadf2012-11-21 21:19:01 -08002883 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002884 gui_msg(Msg("wiping=Wiping {1}")(Backup_Display_Name));
Ethan Yonker5eac2222014-06-11 12:22:55 -05002885 if (Has_Data_Media && Mount_Point == "/data" && Restore_File_System != Current_File_System) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002886 gui_msg(Msg(msg::kWarning, "datamedia_fs_restore=WARNING: This /data backup was made with {1} file system! The backup may not boot unless you change back to {1}.")(Restore_File_System));
Ethan Yonker5eac2222014-06-11 12:22:55 -05002887 if (!Wipe_Data_Without_Wiping_Media())
2888 return false;
2889 } else {
2890 if (!Wipe(Restore_File_System))
2891 return false;
2892 }
Dees_Troye58d5262012-09-21 12:27:57 -04002893 }
Matt Mower3c366972015-12-25 19:28:31 -06002894 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Backup_Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002895 gui_msg(Msg("restoring=Restoring {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002896
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05002897 // Remount as read/write as needed so we can restore the backup
2898 if (!ReMount_RW(true))
Dees_Troy43d8b002012-09-17 16:00:01 -04002899 return false;
2900
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002901 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker87af5632014-02-10 11:56:35 -06002902 twrpTar tar;
bigbiffce8f83c2015-12-12 18:30:21 -05002903 tar.part_settings = part_settings;
Ethan Yonker87af5632014-02-10 11:56:35 -06002904 tar.setdir(Backup_Path);
2905 tar.setfn(Full_FileName);
2906 tar.backup_name = Backup_Name;
2907#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
2908 string Password;
2909 DataManager::GetValue("tw_restore_password", Password);
2910 if (!Password.empty())
2911 tar.setpassword(Password);
2912#endif
bigbiffce8f83c2015-12-12 18:30:21 -05002913 part_settings->progress->SetPartitionSize(Get_Restore_Size(part_settings));
2914 if (tar.extractTarFork() != 0)
Dees Troy4159aed2014-02-28 17:24:43 +00002915 ret = false;
2916 else
2917 ret = true;
2918#ifdef HAVE_CAPABILITIES
2919 // Restore capabilities to the run-as binary
Captain Throwback9d6feb52018-07-27 10:05:24 -04002920 if (Mount_Point == PartitionManager.Get_Android_Root_Path() && Mount(true) && TWFunc::Path_Exists("/system/bin/run-as")) {
Dees Troy4159aed2014-02-28 17:24:43 +00002921 struct vfs_cap_data cap_data;
2922 uint64_t capabilities = (1 << CAP_SETUID) | (1 << CAP_SETGID);
2923
2924 memset(&cap_data, 0, sizeof(cap_data));
2925 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
2926 cap_data.data[0].permitted = (uint32_t) (capabilities & 0xffffffff);
2927 cap_data.data[0].inheritable = 0;
2928 cap_data.data[1].permitted = (uint32_t) (capabilities >> 32);
2929 cap_data.data[1].inheritable = 0;
2930 if (setxattr("/system/bin/run-as", XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
2931 LOGINFO("Failed to reset capabilities of /system/bin/run-as binary.\n");
2932 } else {
2933 LOGINFO("Reset capabilities of /system/bin/run-as binary successful.\n");
2934 }
2935 }
2936#endif
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05002937 if (Mount_Read_Only || Mount_Flags & MS_RDONLY)
2938 // Remount as read only when restoration is complete
2939 ReMount(true);
2940
Dees Troy4159aed2014-02-28 17:24:43 +00002941 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04002942}
2943
bigbiffce8f83c2015-12-12 18:30:21 -05002944bool TWPartition::Restore_Image(PartitionSettings *part_settings) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06002945 string Full_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002946 string Restore_File_System = Get_Restore_File_System(part_settings);
Dees_Troy43d8b002012-09-17 16:00:01 -04002947
Matt Mower3c366972015-12-25 19:28:31 -06002948 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Backup_Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002949 gui_msg(Msg("restoring=Restoring {1}...")(Backup_Display_Name));
bigbiffce8f83c2015-12-12 18:30:21 -05002950
2951 if (part_settings->adbbackup)
2952 Full_FileName = TW_ADB_RESTORE;
2953 else
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002954 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Gary Peck15e623d2012-11-21 21:07:58 -08002955
Ethan Yonker96af84a2015-01-05 14:58:36 -06002956 if (Restore_File_System == "emmc") {
bigbiffce8f83c2015-12-12 18:30:21 -05002957 if (!part_settings->adbbackup)
2958 part_settings->total_restore_size = (uint64_t)(TWFunc::Get_File_Size(Full_FileName));
2959 if (!Raw_Read_Write(part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002960 return false;
2961 } else if (Restore_File_System == "mtd" || Restore_File_System == "bml") {
bigbiffce8f83c2015-12-12 18:30:21 -05002962 if (!Flash_Image_FI(Full_FileName, part_settings->progress))
2963 return false;
2964 }
2965
2966 if (part_settings->adbbackup) {
2967 if (!twadbbu::Write_TWEOF())
Ethan Yonker96af84a2015-01-05 14:58:36 -06002968 return false;
Gary Peck15e623d2012-11-21 21:07:58 -08002969 }
Dees_Troy43d8b002012-09-17 16:00:01 -04002970 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002971}
Dees_Troy5bf43922012-09-07 16:07:55 -04002972
2973bool TWPartition::Update_Size(bool Display_Error) {
Dees_Troy0550cfb2012-10-13 11:56:13 -04002974 bool ret = false, Was_Already_Mounted = false;
Dees_Troy51127312012-09-08 13:08:49 -04002975
Ethan Yonker1b190162016-12-05 15:25:19 -06002976 Find_Actual_Block_Device();
2977
2978 if (!Can_Be_Mounted && !Is_Encrypted) {
2979 if (TWFunc::Path_Exists(Actual_Block_Device) && Find_Partition_Size()) {
2980 Used = Size;
2981 Backup_Size = Size;
2982 return true;
2983 }
Dees_Troy5bf43922012-09-07 16:07:55 -04002984 return false;
Ethan Yonker1b190162016-12-05 15:25:19 -06002985 }
Dees_Troy5bf43922012-09-07 16:07:55 -04002986
Dees_Troy0550cfb2012-10-13 11:56:13 -04002987 Was_Already_Mounted = Is_Mounted();
Dees_Troy38bd7602012-09-14 13:33:53 -04002988 if (Removable || Is_Encrypted) {
2989 if (!Mount(false))
2990 return true;
2991 } else if (!Mount(Display_Error))
Dees_Troy5bf43922012-09-07 16:07:55 -04002992 return false;
Dees_Troy51127312012-09-08 13:08:49 -04002993
2994 ret = Get_Size_Via_statfs(Display_Error);
Dees_Troy0550cfb2012-10-13 11:56:13 -04002995 if (!ret || Size == 0) {
2996 if (!Get_Size_Via_df(Display_Error)) {
2997 if (!Was_Already_Mounted)
2998 UnMount(false);
Dees_Troy51127312012-09-08 13:08:49 -04002999 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04003000 }
3001 }
Dees_Troy51127312012-09-08 13:08:49 -04003002
Dees_Troy5bf43922012-09-07 16:07:55 -04003003 if (Has_Data_Media) {
3004 if (Mount(Display_Error)) {
Ethan Yonker3fdcda42016-11-30 12:29:37 -06003005 Used = backup_exclusions.Get_Folder_Size(Mount_Point);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05003006 Backup_Size = Used;
3007 int bak = (int)(Used / 1048576LLU);
Dees_Troy51127312012-09-08 13:08:49 -04003008 int fre = (int)(Free / 1048576LLU);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05003009 LOGINFO("Data backup size is %iMB, free: %iMB.\n", bak, fre);
Dees_Troy0550cfb2012-10-13 11:56:13 -04003010 } else {
3011 if (!Was_Already_Mounted)
3012 UnMount(false);
Dees_Troy5bf43922012-09-07 16:07:55 -04003013 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04003014 }
Dees_Troye58d5262012-09-21 12:27:57 -04003015 } else if (Has_Android_Secure) {
3016 if (Mount(Display_Error))
Ethan Yonker3fdcda42016-11-30 12:29:37 -06003017 Backup_Size = backup_exclusions.Get_Folder_Size(Backup_Path);
Dees_Troy0550cfb2012-10-13 11:56:13 -04003018 else {
3019 if (!Was_Already_Mounted)
3020 UnMount(false);
Dees_Troye58d5262012-09-21 12:27:57 -04003021 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04003022 }
Dees_Troy5bf43922012-09-07 16:07:55 -04003023 }
Dees_Troy0550cfb2012-10-13 11:56:13 -04003024 if (!Was_Already_Mounted)
3025 UnMount(false);
Dees_Troy5bf43922012-09-07 16:07:55 -04003026 return true;
Dees_Troy51127312012-09-08 13:08:49 -04003027}
Dees_Troy38bd7602012-09-14 13:33:53 -04003028
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003029bool TWPartition::Find_Wildcard_Block_Devices(const string& Device) {
3030 int mount_point_index = 0; // we will need to create separate mount points for each partition found and we use this index to name each one
3031 string Path = TWFunc::Get_Path(Device);
3032 string Dev = TWFunc::Get_Filename(Device);
3033 size_t wildcard_index = Dev.find("*");
3034 if (wildcard_index != string::npos)
3035 Dev = Dev.substr(0, wildcard_index);
3036 wildcard_index = Dev.size();
3037 DIR* d = opendir(Path.c_str());
3038 if (d == NULL) {
3039 LOGINFO("Error opening '%s': %s\n", Path.c_str(), strerror(errno));
3040 return false;
3041 }
3042 struct dirent* de;
3043 while ((de = readdir(d)) != NULL) {
3044 if (de->d_type != DT_BLK || strlen(de->d_name) <= wildcard_index || strncmp(de->d_name, Dev.c_str(), wildcard_index) != 0)
3045 continue;
3046
3047 string item = Path + "/";
3048 item.append(de->d_name);
3049 if (PartitionManager.Find_Partition_By_Block_Device(item))
3050 continue;
3051 TWPartition *part = new TWPartition;
3052 char buffer[MAX_FSTAB_LINE_LENGTH];
3053 sprintf(buffer, "%s %s-%i auto defaults defaults", item.c_str(), Mount_Point.c_str(), ++mount_point_index);
Chaosmasterf6e42ce2020-01-27 00:17:04 +01003054 part->Process_Fstab_Line(buffer, false, NULL, false);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003055 char display[MAX_FSTAB_LINE_LENGTH];
3056 sprintf(display, "%s %i", Storage_Name.c_str(), mount_point_index);
3057 part->Storage_Name = display;
3058 part->Display_Name = display;
3059 part->Primary_Block_Device = item;
3060 part->Wildcard_Block_Device = false;
3061 part->Is_SubPartition = true;
3062 part->SubPartition_Of = Mount_Point;
3063 part->Is_Storage = Is_Storage;
3064 part->Can_Be_Mounted = true;
3065 part->Removable = true;
3066 part->Can_Be_Wiped = Can_Be_Wiped;
3067 part->Wipe_Available_in_GUI = Wipe_Available_in_GUI;
3068 part->Find_Actual_Block_Device();
3069 part->Update_Size(false);
3070 Has_SubPartition = true;
3071 PartitionManager.Output_Partition(part);
3072 PartitionManager.Add_Partition(part);
3073 }
3074 closedir(d);
3075 return (mount_point_index > 0);
3076}
3077
Dees_Troy38bd7602012-09-14 13:33:53 -04003078void TWPartition::Find_Actual_Block_Device(void) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003079 if (!Sysfs_Entry.empty() && Primary_Block_Device.empty() && Decrypted_Block_Device.empty()) {
3080 /* Sysfs_Entry.empty() indicates if this is a sysfs entry that begins with /device/
3081 * If we have a syfs entry then we are looking for this device from a uevent add.
3082 * The uevent add will set the primary block device based on the data we receive from
3083 * after checking for adopted storage. If the device ends up being adopted, then the
3084 * decrypted block device will be set instead of the primary block device. */
3085 Is_Present = false;
3086 return;
3087 }
3088 if (Wildcard_Block_Device && !Is_Adopted_Storage) {
3089 Is_Present = false;
3090 Actual_Block_Device = "";
3091 Can_Be_Mounted = false;
3092 if (!Find_Wildcard_Block_Devices(Primary_Block_Device)) {
3093 string Dev = Primary_Block_Device.substr(0, Primary_Block_Device.find("*"));
3094 if (TWFunc::Path_Exists(Dev)) {
3095 Is_Present = true;
3096 Can_Be_Mounted = true;
3097 Actual_Block_Device = Dev;
3098 }
3099 }
3100 return;
3101 } else if (Is_Decrypted && !Decrypted_Block_Device.empty()) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003102 Actual_Block_Device = Decrypted_Block_Device;
Ethan Yonker1b190162016-12-05 15:25:19 -06003103 if (TWFunc::Path_Exists(Decrypted_Block_Device)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003104 Is_Present = true;
Ethan Yonker1b190162016-12-05 15:25:19 -06003105 return;
3106 }
3107 } else if (SlotSelect && TWFunc::Path_Exists(Primary_Block_Device + PartitionManager.Get_Active_Slot_Suffix())) {
3108 Actual_Block_Device = Primary_Block_Device + PartitionManager.Get_Active_Slot_Suffix();
3109 unlink(Primary_Block_Device.c_str());
3110 symlink(Actual_Block_Device.c_str(), Primary_Block_Device.c_str()); // we create a non-slot symlink pointing to the currently selected slot which may assist zips with installing
3111 Is_Present = true;
3112 return;
Dees_Troy43d8b002012-09-17 16:00:01 -04003113 } else if (TWFunc::Path_Exists(Primary_Block_Device)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003114 Is_Present = true;
3115 Actual_Block_Device = Primary_Block_Device;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003116 return;
3117 }
Ethan Yonker1b190162016-12-05 15:25:19 -06003118 if (!Alternate_Block_Device.empty() && TWFunc::Path_Exists(Alternate_Block_Device)) {
Dees_Troy3f04d032012-10-07 18:20:09 -04003119 Actual_Block_Device = Alternate_Block_Device;
Dees_Troy38bd7602012-09-14 13:33:53 -04003120 Is_Present = true;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003121 } else {
Dees_Troy38bd7602012-09-14 13:33:53 -04003122 Is_Present = false;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003123 }
Dees_Troy38bd7602012-09-14 13:33:53 -04003124}
3125
3126void TWPartition::Recreate_Media_Folder(void) {
3127 string Command;
Ethan Yonker66a19492015-12-10 10:19:45 -06003128 string Media_Path = Mount_Point + "/media";
Dees_Troy38bd7602012-09-14 13:33:53 -04003129
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06003130 if (Is_FBE) {
3131 LOGINFO("Not recreating media folder on FBE\n");
3132 return;
3133 }
Dees_Troy38bd7602012-09-14 13:33:53 -04003134 if (!Mount(true)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003135 gui_msg(Msg(msg::kError, "recreate_folder_err=Unable to recreate {1} folder.")(Media_Path));
3136 } else if (!TWFunc::Path_Exists(Media_Path)) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003137 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Ethan Yonker66a19492015-12-10 10:19:45 -06003138 LOGINFO("Recreating %s folder.\n", Media_Path.c_str());
3139 mkdir(Media_Path.c_str(), 0770);
xiaolu9416f4f2015-06-04 08:22:23 +08003140 string Internal_path = DataManager::GetStrValue("tw_internal_path");
3141 if (!Internal_path.empty()) {
3142 LOGINFO("Recreating %s folder.\n", Internal_path.c_str());
3143 mkdir(Internal_path.c_str(), 0770);
3144 }
3145#ifdef TW_INTERNAL_STORAGE_PATH
3146 mkdir(EXPAND(TW_INTERNAL_STORAGE_PATH), 0770);
3147#endif
Matt Mower87413642017-01-17 21:14:46 -06003148
thata3d31fb2014-12-21 22:27:40 +01003149 // Afterwards, we will try to set the
3150 // default metadata that we were hopefully able to get during
3151 // early boot.
Ethan Yonker66a19492015-12-10 10:19:45 -06003152 tw_set_default_metadata(Media_Path.c_str());
xiaolu9416f4f2015-06-04 08:22:23 +08003153 if (!Internal_path.empty())
3154 tw_set_default_metadata(Internal_path.c_str());
Matt Mower87413642017-01-17 21:14:46 -06003155
Ethan Yonker5eac2222014-06-11 12:22:55 -05003156 // Toggle mount to ensure that "internal sdcard" gets mounted
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003157 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Ethan Yonker5eac2222014-06-11 12:22:55 -05003158 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Dees_Troy38bd7602012-09-14 13:33:53 -04003159 }
Dees_Troy43d8b002012-09-17 16:00:01 -04003160}
Dees_Troye58d5262012-09-21 12:27:57 -04003161
3162void TWPartition::Recreate_AndSec_Folder(void) {
Dees_Troye58d5262012-09-21 12:27:57 -04003163 if (!Has_Android_Secure)
3164 return;
Dees_Troy2673cec2013-04-02 20:22:16 +00003165 LOGINFO("Creating %s: %s\n", Backup_Display_Name.c_str(), Symlink_Path.c_str());
Dees_Troye58d5262012-09-21 12:27:57 -04003166 if (!Mount(true)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003167 gui_msg(Msg(msg::kError, "recreate_folder_err=Unable to recreate {1} folder.")(Backup_Name));
Dees_Troye58d5262012-09-21 12:27:57 -04003168 } else if (!TWFunc::Path_Exists(Symlink_Path)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00003169 LOGINFO("Recreating %s folder.\n", Backup_Name.c_str());
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003170 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05003171 mkdir(Symlink_Path.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003172 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04003173 }
3174}
bigbiff7cb4c332014-11-26 20:36:07 -05003175
3176uint64_t TWPartition::Get_Max_FileSize() {
3177 uint64_t maxFileSize = 0;
3178 const uint64_t constGB = (uint64_t) 1024 * 1024 * 1024;
3179 const uint64_t constTB = (uint64_t) constGB * 1024;
3180 const uint64_t constPB = (uint64_t) constTB * 1024;
bigbiff0c532032014-12-21 13:41:26 -05003181 if (Current_File_System == "ext4")
3182 maxFileSize = 16 * constTB; //16 TB
3183 else if (Current_File_System == "vfat")
3184 maxFileSize = 4 * constGB; //4 GB
3185 else if (Current_File_System == "ntfs")
3186 maxFileSize = 256 * constTB; //256 TB
3187 else if (Current_File_System == "exfat")
3188 maxFileSize = 16 * constPB; //16 PB
3189 else if (Current_File_System == "ext3")
3190 maxFileSize = 2 * constTB; //2 TB
3191 else if (Current_File_System == "f2fs")
3192 maxFileSize = 3.94 * constTB; //3.94 TB
bigbiff7cb4c332014-11-26 20:36:07 -05003193 else
3194 maxFileSize = 100000000L;
3195 return maxFileSize - 1;
3196}
3197
bigbiffce8f83c2015-12-12 18:30:21 -05003198bool TWPartition::Flash_Image(PartitionSettings *part_settings) {
3199 string Restore_File_System, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003200
Ethan Yonkere080c1f2016-09-19 13:50:25 -05003201 full_filename = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003202
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05003203 LOGINFO("Image filename is: %s\n", Backup_FileName.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05003204
3205 if (Backup_Method == BM_FILES) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06003206 LOGERR("Cannot flash images to file systems\n");
3207 return false;
3208 } else if (!Can_Flash_Img) {
3209 LOGERR("Cannot flash images to partitions %s\n", Display_Name.c_str());
3210 return false;
3211 } else {
3212 if (!Find_Partition_Size()) {
3213 LOGERR("Unable to find partition size for '%s'\n", Mount_Point.c_str());
3214 return false;
3215 }
bigbiffce8f83c2015-12-12 18:30:21 -05003216 unsigned long long image_size = TWFunc::Get_File_Size(full_filename);
Ethan Yonker96af84a2015-01-05 14:58:36 -06003217 if (image_size > Size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003218 LOGINFO("Size (%llu bytes) of image '%s' is larger than target device '%s' (%llu bytes)\n",
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05003219 image_size, Backup_FileName.c_str(), Actual_Block_Device.c_str(), Size);
Ethan Yonker74db1572015-10-28 12:44:49 -05003220 gui_err("img_size_err=Size of image is larger than target device");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003221 return false;
3222 }
bigbiffce8f83c2015-12-12 18:30:21 -05003223 if (Backup_Method == BM_DD) {
3224 if (!part_settings->adbbackup) {
3225 if (Is_Sparse_Image(full_filename)) {
3226 return Flash_Sparse_Image(full_filename);
3227 }
Ethan Yonker472f5062016-02-25 13:47:30 -06003228 }
bigbiffce8f83c2015-12-12 18:30:21 -05003229 return Raw_Read_Write(part_settings);
3230 } else if (Backup_Method == BM_FLASH_UTILS) {
3231 return Flash_Image_FI(full_filename, NULL);
Ethan Yonker472f5062016-02-25 13:47:30 -06003232 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06003233 }
3234
3235 LOGERR("Unknown flash method for '%s'\n", Mount_Point.c_str());
3236 return false;
3237}
3238
Ethan Yonker472f5062016-02-25 13:47:30 -06003239bool TWPartition::Is_Sparse_Image(const string& Filename) {
HashBanged974bb2016-01-30 14:20:09 -05003240 uint32_t magic = 0;
3241 int fd = open(Filename.c_str(), O_RDONLY);
3242 if (fd < 0) {
3243 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Filename)(strerror(errno)));
3244 return false;
3245 }
bigbiffce8f83c2015-12-12 18:30:21 -05003246
HashBanged974bb2016-01-30 14:20:09 -05003247 if (read(fd, &magic, sizeof(magic)) != sizeof(magic)) {
3248 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Filename)(strerror(errno)));
3249 close(fd);
3250 return false;
3251 }
3252 close(fd);
Ethan Yonker472f5062016-02-25 13:47:30 -06003253 if (magic == SPARSE_HEADER_MAGIC)
3254 return true;
3255 return false;
3256}
3257
3258bool TWPartition::Flash_Sparse_Image(const string& Filename) {
3259 string Command;
3260
3261 gui_msg(Msg("flashing=Flashing {1}...")(Display_Name));
3262
3263 Command = "simg2img '" + Filename + "' '" + Actual_Block_Device + "'";
Ethan Yonker96af84a2015-01-05 14:58:36 -06003264 LOGINFO("Flash command: '%s'\n", Command.c_str());
3265 TWFunc::Exec_Cmd(Command);
3266 return true;
3267}
3268
Ethan Yonker472f5062016-02-25 13:47:30 -06003269bool TWPartition::Flash_Image_FI(const string& Filename, ProgressTracking *progress) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06003270 string Command;
Ethan Yonker472f5062016-02-25 13:47:30 -06003271 unsigned long long file_size;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003272
Ethan Yonker74db1572015-10-28 12:44:49 -05003273 gui_msg(Msg("flashing=Flashing {1}...")(Display_Name));
Ethan Yonker472f5062016-02-25 13:47:30 -06003274 if (progress) {
3275 file_size = (unsigned long long)(TWFunc::Get_File_Size(Filename));
3276 progress->SetPartitionSize(file_size);
3277 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06003278 // Sometimes flash image doesn't like to flash due to the first 2KB matching, so we erase first to ensure that it flashes
3279 Command = "erase_image " + MTD_Name;
3280 LOGINFO("Erase command: '%s'\n", Command.c_str());
3281 TWFunc::Exec_Cmd(Command);
3282 Command = "flash_image " + MTD_Name + " '" + Filename + "'";
3283 LOGINFO("Flash command: '%s'\n", Command.c_str());
3284 TWFunc::Exec_Cmd(Command);
Ethan Yonker472f5062016-02-25 13:47:30 -06003285 if (progress)
3286 progress->UpdateSize(file_size);
Ethan Yonker96af84a2015-01-05 14:58:36 -06003287 return true;
3288}
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003289
3290void TWPartition::Change_Mount_Read_Only(bool new_value) {
3291 Mount_Read_Only = new_value;
3292}
3293
bigbiffce8f83c2015-12-12 18:30:21 -05003294bool TWPartition::Is_Read_Only() {
3295 return Mount_Read_Only;
3296}
3297
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003298int TWPartition::Check_Lifetime_Writes() {
3299 bool original_read_only = Mount_Read_Only;
3300 int ret = 1;
3301
3302 Mount_Read_Only = true;
3303 if (Mount(false)) {
3304 Find_Actual_Block_Device();
Ethan Yonker54970bb2019-01-17 16:19:24 -06003305 string temp = Actual_Block_Device;
3306 Find_Real_Block_Device(temp, false);
3307 string block = basename(temp.c_str());
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003308 string file = "/sys/fs/" + Current_File_System + "/" + block + "/lifetime_write_kbytes";
3309 string result;
3310 if (TWFunc::Path_Exists(file)) {
3311 if (TWFunc::read_file(file, result) != 0) {
3312 LOGINFO("Check_Lifetime_Writes of '%s' failed to read_file\n", file.c_str());
3313 } else {
3314 LOGINFO("Check_Lifetime_Writes result: '%s'\n", result.c_str());
3315 if (result == "0") {
3316 ret = 0;
3317 }
3318 }
3319 } else {
3320 LOGINFO("Check_Lifetime_Writes file does not exist '%s'\n", file.c_str());
3321 }
3322 UnMount(true);
3323 } else {
3324 LOGINFO("Check_Lifetime_Writes failed to mount '%s'\n", Mount_Point.c_str());
3325 }
3326 Mount_Read_Only = original_read_only;
3327 return ret;
3328}
Ethan Yonker66a19492015-12-10 10:19:45 -06003329
3330int TWPartition::Decrypt_Adopted() {
3331#ifdef TW_INCLUDE_CRYPTO
3332 int ret = 1;
3333 Is_Adopted_Storage = false;
3334 string Adopted_Key_File = "";
3335
3336 if (!Removable)
3337 return ret;
3338
3339 int fd = open(Alternate_Block_Device.c_str(), O_RDONLY);
3340 if (fd < 0) {
3341 LOGINFO("failed to open '%s'\n", Alternate_Block_Device.c_str());
3342 return ret;
3343 }
3344 char type_guid[80];
3345 char part_guid[80];
3346
3347 if (gpt_disk_get_partition_info(fd, 2, type_guid, part_guid) == 0) {
3348 LOGINFO("type: '%s'\n", type_guid);
3349 LOGINFO("part: '%s'\n", part_guid);
3350 Adopted_GUID = part_guid;
3351 LOGINFO("Adopted_GUID '%s'\n", Adopted_GUID.c_str());
3352 if (strcmp(type_guid, TWGptAndroidExpand) == 0) {
3353 LOGINFO("android_expand found\n");
3354 Adopted_Key_File = "/data/misc/vold/expand_";
3355 Adopted_Key_File += part_guid;
3356 Adopted_Key_File += ".key";
3357 if (TWFunc::Path_Exists(Adopted_Key_File)) {
3358 Is_Adopted_Storage = true;
3359 /* Until we find a use case for this, I think it is safe
3360 * to disable USB Mass Storage whenever adopted storage
3361 * is present.
3362 */
3363 LOGINFO("Detected adopted storage, disabling USB mass storage mode\n");
3364 DataManager::SetValue("tw_has_usb_storage", 0);
3365 }
3366 }
3367 }
3368
3369 if (Is_Adopted_Storage) {
3370 string Adopted_Block_Device = Alternate_Block_Device + "p2";
3371 if (!TWFunc::Path_Exists(Adopted_Block_Device)) {
3372 Adopted_Block_Device = Alternate_Block_Device + "2";
3373 if (!TWFunc::Path_Exists(Adopted_Block_Device)) {
3374 LOGINFO("Adopted block device does not exist\n");
3375 goto exit;
3376 }
3377 }
3378 LOGINFO("key file is '%s', block device '%s'\n", Adopted_Key_File.c_str(), Adopted_Block_Device.c_str());
3379 char crypto_blkdev[MAXPATHLEN];
3380 std::string thekey;
3381 int fdkey = open(Adopted_Key_File.c_str(), O_RDONLY);
3382 if (fdkey < 0) {
3383 LOGINFO("failed to open key file\n");
3384 goto exit;
3385 }
3386 char buf[512];
3387 ssize_t n;
3388 while ((n = read(fdkey, &buf[0], sizeof(buf))) > 0) {
3389 thekey.append(buf, n);
3390 }
3391 close(fdkey);
3392 unsigned char* key = (unsigned char*) thekey.data();
3393 cryptfs_revert_ext_volume(part_guid);
3394
3395 ret = cryptfs_setup_ext_volume(part_guid, Adopted_Block_Device.c_str(), key, thekey.size(), crypto_blkdev);
3396 if (ret == 0) {
3397 LOGINFO("adopted storage new block device: '%s'\n", crypto_blkdev);
3398 Decrypted_Block_Device = crypto_blkdev;
3399 Is_Decrypted = true;
3400 Is_Encrypted = true;
3401 Find_Actual_Block_Device();
Kjell Braden3126a112016-06-19 16:58:15 +00003402 if (!Mount_Storage_Retry(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003403 LOGERR("Failed to mount decrypted adopted storage device\n");
3404 Is_Decrypted = false;
3405 Is_Encrypted = false;
3406 cryptfs_revert_ext_volume(part_guid);
3407 ret = 1;
3408 } else {
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003409 UnMount(false);
3410 Has_Android_Secure = false;
3411 Symlink_Path = "";
3412 Symlink_Mount_Point = "";
3413 Backup_Name = Mount_Point.substr(1);
3414 Backup_Path = Mount_Point;
3415 TWPartition* sdext = PartitionManager.Find_Partition_By_Path("/sd-ext");
3416 if (sdext && sdext->Actual_Block_Device == Adopted_Block_Device) {
3417 LOGINFO("Removing /sd-ext from partition list due to adopted storage\n");
3418 PartitionManager.Remove_Partition_By_Path("/sd-ext");
3419 }
Ethan Yonker66a19492015-12-10 10:19:45 -06003420 Setup_Data_Media();
3421 Recreate_Media_Folder();
3422 Wipe_Available_in_GUI = true;
3423 Wipe_During_Factory_Reset = true;
3424 Can_Be_Backed_Up = true;
3425 Can_Encrypt_Backup = true;
3426 Use_Userdata_Encryption = true;
3427 Is_Storage = true;
3428 Storage_Name = "Adopted Storage";
3429 Is_SubPartition = true;
3430 SubPartition_Of = "/data";
3431 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
3432 DataManager::SetValue("tw_has_adopted_storage", 1);
3433 }
3434 } else {
3435 LOGERR("Failed to setup adopted storage decryption\n");
3436 }
3437 }
3438exit:
Matt Mower06543e32017-01-06 15:25:26 -06003439 close(fd);
Ethan Yonker66a19492015-12-10 10:19:45 -06003440 return ret;
3441#else
3442 LOGINFO("Decrypt_Adopted: no crypto support\n");
3443 return 1;
3444#endif
3445}
3446
3447void TWPartition::Revert_Adopted() {
3448#ifdef TW_INCLUDE_CRYPTO
3449 if (!Adopted_GUID.empty()) {
3450 PartitionManager.Remove_MTP_Storage(Mount_Point);
3451 UnMount(false);
3452 cryptfs_revert_ext_volume(Adopted_GUID.c_str());
3453 Is_Adopted_Storage = false;
3454 Is_Encrypted = false;
3455 Is_Decrypted = false;
3456 Decrypted_Block_Device = "";
3457 Find_Actual_Block_Device();
3458 Wipe_During_Factory_Reset = false;
3459 Can_Be_Backed_Up = false;
3460 Can_Encrypt_Backup = false;
3461 Use_Userdata_Encryption = false;
3462 Is_SubPartition = false;
3463 SubPartition_Of = "";
3464 Has_Data_Media = false;
3465 Storage_Path = Mount_Point;
3466 if (!Symlink_Mount_Point.empty()) {
3467 TWPartition* Dat = PartitionManager.Find_Partition_By_Path("/data");
3468 if (Dat) {
3469 Dat->UnMount(false);
3470 Dat->Symlink_Mount_Point = Symlink_Mount_Point;
3471 }
3472 Symlink_Mount_Point = "";
3473 }
3474 }
3475#else
3476 LOGINFO("Revert_Adopted: no crypto support\n");
3477#endif
3478}
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04003479
3480void TWPartition::Set_Backup_FileName(string fname) {
3481 Backup_FileName = fname;
3482}
3483
3484string TWPartition::Get_Backup_Name() {
3485 return Backup_Name;
3486}
bigbiff56b02eb2020-07-06 20:24:34 -04003487
3488std::string TWPartition::Get_Backup_FileName() {
3489 return Backup_FileName;
3490}
3491
3492std::string TWPartition::Get_Display_Name() {
3493 return Display_Name;
3494}
3495
3496bool TWPartition::Is_SlotSelect() {
3497 return SlotSelect;
3498
3499}