blob: 1471bd686db54e760f9e7d9bfb48c449c1fa92d3 [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,
Matt Mower2416a502016-04-12 19:54:46 -0500165};
166
167/* Flags without a trailing '=' are considered dual format flags and can be
168 * written as either 'flagname' or 'flagname=', where the character following
169 * the '=' is Y,y,1 for true and false otherwise.
170 */
171const struct flag_list tw_flags[] = {
172 { "andsec", TWFLAG_ANDSEC },
173 { "backup", TWFLAG_BACKUP },
174 { "backupname=", TWFLAG_BACKUPNAME },
175 { "blocksize=", TWFLAG_BLOCKSIZE },
176 { "canbewiped", TWFLAG_CANBEWIPED },
177 { "canencryptbackup", TWFLAG_CANENCRYPTBACKUP },
178 { "defaults", TWFLAG_DEFAULTS },
179 { "display=", TWFLAG_DISPLAY },
180 { "encryptable=", TWFLAG_ENCRYPTABLE },
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500181 { "fileencryption=", TWFLAG_FILEENCRYPTION },
Matt Mower2416a502016-04-12 19:54:46 -0500182 { "flashimg", TWFLAG_FLASHIMG },
183 { "forceencrypt=", TWFLAG_FORCEENCRYPT },
184 { "fsflags=", TWFLAG_FSFLAGS },
185 { "ignoreblkid", TWFLAG_IGNOREBLKID },
186 { "length=", TWFLAG_LENGTH },
187 { "mounttodecrypt", TWFLAG_MOUNTTODECRYPT },
188 { "removable", TWFLAG_REMOVABLE },
189 { "retainlayoutversion", TWFLAG_RETAINLAYOUTVERSION },
190 { "settingsstorage", TWFLAG_SETTINGSSTORAGE },
191 { "storage", TWFLAG_STORAGE },
192 { "storagename=", TWFLAG_STORAGENAME },
193 { "subpartitionof=", TWFLAG_SUBPARTITIONOF },
194 { "symlink=", TWFLAG_SYMLINK },
195 { "userdataencryptbackup", TWFLAG_USERDATAENCRYPTBACKUP },
196 { "usermrf", TWFLAG_USERMRF },
197 { "wipeduringfactoryreset", TWFLAG_WIPEDURINGFACTORYRESET },
198 { "wipeingui", TWFLAG_WIPEINGUI },
Ethan Yonker1b190162016-12-05 15:25:19 -0600199 { "slotselect", TWFLAG_SLOTSELECT },
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600200 { "wait", TWFLAG_WAIT },
201 { "verify", TWFLAG_VERIFY },
202 { "check", TWFLAG_CHECK },
203 { "altdevice", TWFLAG_ALTDEVICE },
204 { "notrim", TWFLAG_NOTRIM },
205 { "voldmanaged=", TWFLAG_VOLDMANAGED },
206 { "formattable", TWFLAG_FORMATTABLE },
207 { "resize", TWFLAG_RESIZE },
Ethan Yonker93382822018-11-01 15:25:31 -0500208 { "keydirectory=", TWFLAG_KEYDIRECTORY },
Peter Cai40ed06e2019-05-24 11:38:54 +0800209 { "wrappedkey", TWFLAG_WRAPPEDKEY },
Matt Mower2416a502016-04-12 19:54:46 -0500210 { 0, 0 },
211};
212
that9e0593e2014-10-08 00:01:24 +0200213TWPartition::TWPartition() {
Dees_Troy51a0e822012-09-05 15:24:24 -0400214 Can_Be_Mounted = false;
215 Can_Be_Wiped = false;
Dees_Troya13d74f2013-03-24 08:54:55 -0500216 Can_Be_Backed_Up = false;
Vojtech Bocek1dc30982013-08-30 21:49:30 +0200217 Use_Rm_Rf = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400218 Wipe_During_Factory_Reset = false;
219 Wipe_Available_in_GUI = false;
220 Is_SubPartition = false;
Dees_Troy2691f9d2012-09-24 11:15:49 -0400221 Has_SubPartition = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400222 SubPartition_Of = "";
223 Symlink_Path = "";
224 Symlink_Mount_Point = "";
225 Mount_Point = "";
Dees_Troye58d5262012-09-21 12:27:57 -0400226 Backup_Path = "";
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600227 Wildcard_Block_Device = false;
228 Sysfs_Entry = "";
Dees_Troy38bd7602012-09-14 13:33:53 -0400229 Actual_Block_Device = "";
230 Primary_Block_Device = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400231 Alternate_Block_Device = "";
232 Removable = false;
233 Is_Present = false;
234 Length = 0;
235 Size = 0;
236 Used = 0;
237 Free = 0;
238 Backup_Size = 0;
239 Can_Be_Encrypted = false;
240 Is_Encrypted = false;
241 Is_Decrypted = false;
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600242 Is_FBE = false;
Ethan Yonker253368a2014-11-25 15:00:52 -0600243 Mount_To_Decrypt = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400244 Decrypted_Block_Device = "";
245 Display_Name = "";
Dees_Troya13d74f2013-03-24 08:54:55 -0500246 Backup_Display_Name = "";
247 Storage_Name = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400248 Backup_Name = "";
Dees_Troy63c8df72012-09-10 14:02:05 -0400249 Backup_FileName = "";
Dees_Troy38bd7602012-09-14 13:33:53 -0400250 MTD_Name = "";
bigbiffce8f83c2015-12-12 18:30:21 -0500251 Backup_Method = BM_NONE;
Dees_Troy83bd4832013-05-04 12:39:56 +0000252 Can_Encrypt_Backup = false;
253 Use_Userdata_Encryption = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400254 Has_Data_Media = false;
Dees_Troye58d5262012-09-21 12:27:57 -0400255 Has_Android_Secure = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400256 Is_Storage = false;
Dees_Troya13d74f2013-03-24 08:54:55 -0500257 Is_Settings_Storage = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400258 Storage_Path = "";
259 Current_File_System = "";
260 Fstab_File_System = "";
Hashcode62bd9e02013-11-19 21:59:42 -0800261 Mount_Flags = 0;
262 Mount_Options = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400263 Format_Block_Size = 0;
Dees_Troy68cab492012-12-12 19:29:35 +0000264 Ignore_Blkid = false;
Dees_Troy16c2b312013-01-15 16:51:18 +0000265 Retain_Layout_Version = false;
dianlujitao4879b372018-12-03 18:45:47 +0800266 Crypto_Key_Location = "";
Ethan Yonker726a0202014-12-16 20:01:38 -0600267 MTP_Storage_ID = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600268 Can_Flash_Img = false;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500269 Mount_Read_Only = false;
Ethan Yonker66a19492015-12-10 10:19:45 -0600270 Is_Adopted_Storage = false;
271 Adopted_GUID = "";
Ethan Yonker1b190162016-12-05 15:25:19 -0600272 SlotSelect = false;
Ethan Yonker93382822018-11-01 15:25:31 -0500273 Key_Directory = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400274}
275
276TWPartition::~TWPartition(void) {
277 // Do nothing
278}
279
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100280bool 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 -0500281 char full_line[MAX_FSTAB_LINE_LENGTH];
Matt Mower2416a502016-04-12 19:54:46 -0500282 char twflags[MAX_FSTAB_LINE_LENGTH] = "";
Dees_Troy5bf43922012-09-07 16:07:55 -0400283 char* ptr;
Matt Mower2b2dd152016-04-26 11:24:08 -0500284 int line_len = strlen(fstab_line), index = 0, item_index = 0;
Dees_Troya13d74f2013-03-24 08:54:55 -0500285 bool skip = false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600286 int fstab_version = 1, mount_point_index = 0, fs_index = 1, block_device_index = 2;
287 TWPartition *additional_entry = NULL;
288 std::map<string, Flags_Map>::iterator it;
Dees_Troy5bf43922012-09-07 16:07:55 -0400289
Matt Mower2b2dd152016-04-26 11:24:08 -0500290 strlcpy(full_line, fstab_line, sizeof(full_line));
Dees_Troy51127312012-09-08 13:08:49 -0400291 for (index = 0; index < line_len; index++) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500292 if (full_line[index] == 34)
293 skip = !skip;
294 if (!skip && full_line[index] <= 32)
Dees_Troy5bf43922012-09-07 16:07:55 -0400295 full_line[index] = '\0';
Dees_Troy5bf43922012-09-07 16:07:55 -0400296 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600297 if (line_len < 10)
298 return false; // There can't possibly be a valid fstab line that is less than 10 chars
299 if (strncmp(fstab_line, "/dev/", strlen("/dev/")) == 0 || strncmp(fstab_line, "/devices/", strlen("/devices/")) == 0) {
300 fstab_version = 2;
301 block_device_index = 0;
302 mount_point_index = 1;
303 fs_index = 2;
304 }
305
306 index = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -0400307 while (index < line_len) {
308 while (index < line_len && full_line[index] == '\0')
309 index++;
310 if (index >= line_len)
311 continue;
312 ptr = full_line + index;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600313 if (item_index == mount_point_index) {
314 Mount_Point = ptr;
315 if (fstab_version == 2) {
316 additional_entry = PartitionManager.Find_Partition_By_Path(Mount_Point);
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100317 if (!Sar_Detect && additional_entry) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600318 LOGINFO("Found an additional entry for '%s'\n", Mount_Point.c_str());
319 }
320 }
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100321 if(!Sar_Detect)
322 LOGINFO("Processing '%s'\n", Mount_Point.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600323 Backup_Path = Mount_Point;
324 Storage_Path = Mount_Point;
325 Display_Name = ptr + 1;
326 Backup_Display_Name = Display_Name;
327 Storage_Name = Display_Name;
328 item_index++;
329 } else if (item_index == fs_index) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400330 // File System
331 Fstab_File_System = ptr;
332 Current_File_System = ptr;
333 item_index++;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600334 } else if (item_index == block_device_index) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400335 // Primary Block Device
Dees_Troy38bd7602012-09-14 13:33:53 -0400336 if (Fstab_File_System == "mtd" || Fstab_File_System == "yaffs2") {
Dees_Troy094207a2012-09-26 12:00:39 -0400337 MTD_Name = ptr;
338 Find_MTD_Block_Device(MTD_Name);
Dees_Troy5fcd8f92012-10-16 12:22:05 -0400339 } else if (Fstab_File_System == "bml") {
340 if (Mount_Point == "/boot")
341 MTD_Name = "boot";
342 else if (Mount_Point == "/recovery")
343 MTD_Name = "recovery";
344 Primary_Block_Device = ptr;
345 if (*ptr != '/')
Dees_Troy2673cec2013-04-02 20:22:16 +0000346 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 -0400347 } else if (*ptr != '/') {
Dees_Troy5bf43922012-09-07 16:07:55 -0400348 if (Display_Error)
Matt Mower2b2dd152016-04-26 11:24:08 -0500349 LOGERR("Invalid block device '%s' in fstab line '%s'", ptr, fstab_line);
Dees_Troy5bf43922012-09-07 16:07:55 -0400350 else
Matt Mower2b2dd152016-04-26 11:24:08 -0500351 LOGINFO("Invalid block device '%s' in fstab line '%s'", ptr, fstab_line);
Matt Mower72c87ce2016-04-26 14:34:56 -0500352 return false;
Dees_Troy38bd7602012-09-14 13:33:53 -0400353 } else {
354 Primary_Block_Device = ptr;
355 Find_Real_Block_Device(Primary_Block_Device, Display_Error);
Dees_Troy5bf43922012-09-07 16:07:55 -0400356 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400357 item_index++;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600358 } else if (item_index > 2) {
359 if (fstab_version == 2) {
360 if (item_index == 3) {
361 Process_FS_Flags(ptr);
362 if (additional_entry) {
363 additional_entry->Save_FS_Flags(Fstab_File_System, Mount_Flags, Mount_Options);
364 return false; // We save the extra fs flags in the other partition entry and by returning false, this entry will be deleted
365 }
366 } else {
367 strlcpy(twflags, ptr, sizeof(twflags));
368 }
369 item_index++;
370 } else if (*ptr == '/') { // v2 fstab does not allow alternate block devices
Dees_Troy5bf43922012-09-07 16:07:55 -0400371 // Alternate Block Device
372 Alternate_Block_Device = ptr;
373 Find_Real_Block_Device(Alternate_Block_Device, Display_Error);
374 } else if (strlen(ptr) > 7 && strncmp(ptr, "length=", 7) == 0) {
375 // Partition length
376 ptr += 7;
377 Length = atoi(ptr);
Dees_Troy51127312012-09-08 13:08:49 -0400378 } else if (strlen(ptr) > 6 && strncmp(ptr, "flags=", 6) == 0) {
379 // Custom flags, save for later so that new values aren't overwritten by defaults
380 ptr += 6;
Matt Mower2416a502016-04-12 19:54:46 -0500381 strlcpy(twflags, ptr, sizeof(twflags));
Dees_Troy38bd7602012-09-14 13:33:53 -0400382 } else if (strlen(ptr) == 4 && (strncmp(ptr, "NULL", 4) == 0 || strncmp(ptr, "null", 4) == 0 || strncmp(ptr, "null", 4) == 0)) {
383 // Do nothing
Dees_Troy5bf43922012-09-07 16:07:55 -0400384 } else {
385 // Unhandled data
Matt Mower2b2dd152016-04-26 11:24:08 -0500386 LOGINFO("Unhandled fstab information '%s' in fstab line '%s'\n", ptr, fstab_line);
Dees_Troy5bf43922012-09-07 16:07:55 -0400387 }
388 }
389 while (index < line_len && full_line[index] != '\0')
390 index++;
391 }
392
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600393 // override block devices from the v2 fstab with the ones we read from the twrp.flags file in case they are different
394 if (fstab_version == 2 && twrp_flags && twrp_flags->size() > 0) {
395 it = twrp_flags->find(Mount_Point);
396 if (it != twrp_flags->end()) {
397 if (!it->second.Primary_Block_Device.empty()) {
398 Primary_Block_Device = it->second.Primary_Block_Device;
399 Find_Real_Block_Device(Primary_Block_Device, Display_Error);
400 }
401 if (!it->second.Alternate_Block_Device.empty()) {
402 Alternate_Block_Device = it->second.Alternate_Block_Device;
403 Find_Real_Block_Device(Alternate_Block_Device, Display_Error);
404 }
405 }
406 }
407
408 if (strncmp(fstab_line, "/devices/", strlen("/devices/")) == 0) {
409 Sysfs_Entry = Primary_Block_Device;
410 Primary_Block_Device = "";
411 Is_Storage = true;
412 Removable = true;
413 Wipe_Available_in_GUI = true;
414 Wildcard_Block_Device = true;
415 }
416 if (Primary_Block_Device.find("*") != string::npos)
417 Wildcard_Block_Device = true;
418
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100419 if (Sar_Detect) {
420 if(Is_File_System(Fstab_File_System) && (Mount_Point == "/" || Mount_Point == "/system" || Mount_Point == "/system_root"))
421 Find_Actual_Block_Device();
422 else
423 return true;
424 } else if (Mount_Point == "auto") {
Captain Throwback4e379532020-06-05 20:42:16 -0400425 Mount_Point = "/auto";
426 char autoi[5];
427 sprintf(autoi, "%i", auto_index);
428 Mount_Point += autoi;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600429 Backup_Path = Mount_Point;
430 Storage_Path = Mount_Point;
dianlujitaob76a73a2020-04-30 20:33:20 +0800431 Backup_Name = Mount_Point.substr(1);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600432 auto_index++;
433 Setup_File_System(Display_Error);
434 Display_Name = "Storage";
435 Backup_Display_Name = Display_Name;
436 Storage_Name = Display_Name;
437 Can_Be_Backed_Up = false;
438 Wipe_Available_in_GUI = true;
439 Is_Storage = true;
440 Removable = true;
441 Wipe_Available_in_GUI = true;
442 } else if (!Is_File_System(Fstab_File_System) && !Is_Image(Fstab_File_System)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400443 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000444 LOGERR("Unknown File System: '%s'\n", Fstab_File_System.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400445 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000446 LOGINFO("Unknown File System: '%s'\n", Fstab_File_System.c_str());
Matt Mower72c87ce2016-04-26 14:34:56 -0500447 return false;
Dees_Troy5bf43922012-09-07 16:07:55 -0400448 } else if (Is_File_System(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400449 Find_Actual_Block_Device();
Dees_Troy5bf43922012-09-07 16:07:55 -0400450 Setup_File_System(Display_Error);
dianlujitaob76a73a2020-04-30 20:33:20 +0800451 Backup_Name = Display_Name = Mount_Point.substr(1, Mount_Point.size() - 1);
Chaosmaster3b682732020-01-25 21:09:28 +0100452 if (Mount_Point == "/" || Mount_Point == "/system" || Mount_Point == "/system_root") {
Dees_Troy5bf43922012-09-07 16:07:55 -0400453 Display_Name = "System";
dianlujitaob76a73a2020-04-30 20:33:20 +0800454 Backup_Name = "system";
Dees_Troya13d74f2013-03-24 08:54:55 -0500455 Backup_Display_Name = Display_Name;
456 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400457 Wipe_Available_in_GUI = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500458 Can_Be_Backed_Up = true;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500459 Mount_Read_Only = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400460 } else if (Mount_Point == "/data") {
461 Display_Name = "Data";
Dees_Troya13d74f2013-03-24 08:54:55 -0500462 Backup_Display_Name = Display_Name;
463 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400464 Wipe_Available_in_GUI = true;
Dees_Troy51127312012-09-08 13:08:49 -0400465 Wipe_During_Factory_Reset = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500466 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000467 Can_Encrypt_Backup = true;
468 Use_Userdata_Encryption = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400469 } else if (Mount_Point == "/cache") {
470 Display_Name = "Cache";
Dees_Troya13d74f2013-03-24 08:54:55 -0500471 Backup_Display_Name = Display_Name;
472 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400473 Wipe_Available_in_GUI = true;
Dees_Troy51127312012-09-08 13:08:49 -0400474 Wipe_During_Factory_Reset = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500475 Can_Be_Backed_Up = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400476 } else if (Mount_Point == "/datadata") {
Dees_Troy51127312012-09-08 13:08:49 -0400477 Wipe_During_Factory_Reset = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400478 Display_Name = "DataData";
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 Is_SubPartition = true;
482 SubPartition_Of = "/data";
Dees_Troy5bf43922012-09-07 16:07:55 -0400483 DataManager::SetValue(TW_HAS_DATADATA, 1);
Dees_Troya13d74f2013-03-24 08:54:55 -0500484 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000485 Can_Encrypt_Backup = true;
486 Use_Userdata_Encryption = false; // This whole partition should be encrypted
Dees_Troy5bf43922012-09-07 16:07:55 -0400487 } else if (Mount_Point == "/sd-ext") {
Dees_Troy51127312012-09-08 13:08:49 -0400488 Wipe_During_Factory_Reset = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400489 Display_Name = "SD-Ext";
Dees_Troya13d74f2013-03-24 08:54:55 -0500490 Backup_Display_Name = Display_Name;
491 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400492 Wipe_Available_in_GUI = true;
Dees_Troyc51f1f92012-09-20 15:32:13 -0400493 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500494 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000495 Can_Encrypt_Backup = true;
496 Use_Userdata_Encryption = true;
Dees_Troy2c50e182012-09-26 20:05:28 -0400497 } else if (Mount_Point == "/boot") {
498 Display_Name = "Boot";
Dees_Troya13d74f2013-03-24 08:54:55 -0500499 Backup_Display_Name = Display_Name;
Dees_Troy2c50e182012-09-26 20:05:28 -0400500 DataManager::SetValue("tw_boot_is_mountable", 1);
Dees_Troya13d74f2013-03-24 08:54:55 -0500501 Can_Be_Backed_Up = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500502 } else if (Mount_Point == "/vendor") {
503 Display_Name = "Vendor";
504 Backup_Display_Name = Display_Name;
505 Storage_Name = Display_Name;
506 Mount_Read_Only = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400507 }
508#ifdef TW_EXTERNAL_STORAGE_PATH
509 if (Mount_Point == EXPAND(TW_EXTERNAL_STORAGE_PATH)) {
510 Is_Storage = true;
511 Storage_Path = EXPAND(TW_EXTERNAL_STORAGE_PATH);
Dees_Troyc51f1f92012-09-20 15:32:13 -0400512 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500513 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400514#else
Dees_Troy70737fa2013-04-08 13:19:20 +0000515 if (Mount_Point == "/sdcard" || Mount_Point == "/external_sd" || Mount_Point == "/external_sdcard") {
Dees_Troy8170a922012-09-18 15:40:25 -0400516 Is_Storage = true;
Dees_Troyc51f1f92012-09-20 15:32:13 -0400517 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500518 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400519#endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000520 }
Dees_Troy8170a922012-09-18 15:40:25 -0400521#ifdef TW_INTERNAL_STORAGE_PATH
522 if (Mount_Point == EXPAND(TW_INTERNAL_STORAGE_PATH)) {
523 Is_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500524 Is_Settings_Storage = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400525 Storage_Path = EXPAND(TW_INTERNAL_STORAGE_PATH);
Dees_Troya13d74f2013-03-24 08:54:55 -0500526 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400527 }
528#else
Dees_Troy70737fa2013-04-08 13:19:20 +0000529 if (Mount_Point == "/emmc" || Mount_Point == "/internal_sd" || Mount_Point == "/internal_sdcard") {
Dees_Troy8170a922012-09-18 15:40:25 -0400530 Is_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500531 Is_Settings_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500532 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400533 }
534#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400535 } else if (Is_Image(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400536 Find_Actual_Block_Device();
Ethan Yonker1b190162016-12-05 15:25:19 -0600537 Setup_Image();
Dees_Troya13d74f2013-03-24 08:54:55 -0500538 if (Mount_Point == "/boot") {
539 Display_Name = "Boot";
540 Backup_Display_Name = Display_Name;
541 Can_Be_Backed_Up = true;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600542 Can_Flash_Img = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500543 } else if (Mount_Point == "/recovery") {
544 Display_Name = "Recovery";
545 Backup_Display_Name = Display_Name;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600546 Can_Flash_Img = true;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500547 } else if (Mount_Point == "/system_image") {
548 Display_Name = "System Image";
549 Backup_Display_Name = Display_Name;
HashBanged974bb2016-01-30 14:20:09 -0500550 Can_Flash_Img = true;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500551 Can_Be_Backed_Up = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500552 } else if (Mount_Point == "/vendor_image") {
553 Display_Name = "Vendor Image";
554 Backup_Display_Name = Display_Name;
HashBanged974bb2016-01-30 14:20:09 -0500555 Can_Flash_Img = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500556 Can_Be_Backed_Up = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500557 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400558 }
559
Matt Mower2416a502016-04-12 19:54:46 -0500560 // Process TWRP fstab flags
561 if (strlen(twflags) > 0) {
562 string Prev_Display_Name = Display_Name;
563 string Prev_Storage_Name = Storage_Name;
564 string Prev_Backup_Display_Name = Backup_Display_Name;
565 Display_Name = "";
566 Storage_Name = "";
567 Backup_Display_Name = "";
568
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600569 Process_TW_Flags(twflags, (fstab_version == 1), fstab_version);
570 Save_FS_Flags(Fstab_File_System, Mount_Flags, Mount_Options);
Matt Mower2416a502016-04-12 19:54:46 -0500571
572 bool has_display_name = !Display_Name.empty();
573 bool has_storage_name = !Storage_Name.empty();
574 bool has_backup_name = !Backup_Display_Name.empty();
575 if (!has_display_name) Display_Name = Prev_Display_Name;
576 if (!has_storage_name) Storage_Name = Prev_Storage_Name;
577 if (!has_backup_name) Backup_Display_Name = Prev_Backup_Display_Name;
578
579 if (has_display_name && !has_storage_name)
580 Storage_Name = Display_Name;
581 if (!has_display_name && has_storage_name)
582 Display_Name = Storage_Name;
583 if (has_display_name && !has_backup_name && Backup_Display_Name != "Android Secure")
584 Backup_Display_Name = Display_Name;
585 if (!has_display_name && has_backup_name)
586 Display_Name = Backup_Display_Name;
587 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600588
589 if (fstab_version == 2 && twrp_flags && twrp_flags->size() > 0) {
590 it = twrp_flags->find(Mount_Point);
591 if (it != twrp_flags->end()) {
592 char twrpflags[MAX_FSTAB_LINE_LENGTH] = "";
593 int skip = 0;
594 string Flags = it->second.Flags;
595 strcpy(twrpflags, Flags.c_str());
596 if (strlen(twrpflags) > strlen("flags=") && strncmp(twrpflags, "flags=", strlen("flags=")) == 0)
597 skip += strlen("flags=");
598 char* flagptr = twrpflags;
599 flagptr += skip;
600 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
601 }
602 }
nkk7198fc3992017-12-16 16:26:42 +0200603
604 if (Mount_Point == "/persist" && Can_Be_Mounted) {
605 bool mounted = Is_Mounted();
606 if (mounted || Mount(false)) {
607 // Read the backup settings file
608 DataManager::LoadPersistValues();
609 TWFunc::Fixup_Time_On_Boot("/persist/time/");
610 if (!mounted)
611 UnMount(false);
612 }
613 }
614
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100615 if (Is_File_System(Fstab_File_System) && (Mount_Point == "/" || Mount_Point == "/system" || Mount_Point == "/system_root")) {
616 if (Sar_Detect) {
617 Mount_Point = "/s";
618 Mount_Read_Only = true;
619 Can_Be_Mounted = true;
620 } else {
621 Mount_Point = PartitionManager.Get_Android_Root_Path();
622 Backup_Path = Mount_Point;
623 Storage_Path = Mount_Point;
624 Make_Dir(Mount_Point, Display_Error);
625 }
626 }
627
Dees_Troy51127312012-09-08 13:08:49 -0400628 return true;
629}
630
Matt Mower72c87ce2016-04-26 14:34:56 -0500631void TWPartition::Partition_Post_Processing(bool Display_Error) {
632 if (Mount_Point == "/data")
633 Setup_Data_Partition(Display_Error);
634 else if (Mount_Point == "/cache")
635 Setup_Cache_Partition(Display_Error);
636}
637
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600638void TWPartition::ExcludeAll(const string& path) {
639 backup_exclusions.add_absolute_dir(path);
640 wipe_exclusions.add_absolute_dir(path);
641}
642
Matt Mower72c87ce2016-04-26 14:34:56 -0500643void TWPartition::Setup_Data_Partition(bool Display_Error) {
644 if (Mount_Point != "/data")
645 return;
646
647 // Ensure /data is not mounted as tmpfs for qcom hardware decrypt
648 UnMount(false);
649
650#ifdef TW_INCLUDE_CRYPTO
651 if (datamedia)
652 Setup_Data_Media();
653 Can_Be_Encrypted = true;
654 char crypto_blkdev[255];
655 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
656 if (strcmp(crypto_blkdev, "error") != 0) {
657 DataManager::SetValue(TW_IS_DECRYPTED, 1);
658 Is_Encrypted = true;
659 Is_Decrypted = true;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400660 if (Key_Directory.empty()) {
Ethan Yonker93382822018-11-01 15:25:31 -0500661 Is_FBE = false;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400662 DataManager::SetValue(TW_IS_FBE, 0);
663 } else {
Ethan Yonker93382822018-11-01 15:25:31 -0500664 Is_FBE = true;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400665 DataManager::SetValue(TW_IS_FBE, 1);
666 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500667 Decrypted_Block_Device = crypto_blkdev;
668 LOGINFO("Data already decrypted, new block device: '%s'\n", crypto_blkdev);
669 } else if (!Mount(false)) {
670 if (Is_Present) {
Ethan Yonker93382822018-11-01 15:25:31 -0500671 if (Key_Directory.empty()) {
Noah Jacobson5a79f672019-04-28 00:10:07 -0400672 set_partition_data(Actual_Block_Device.c_str(), Crypto_Key_Location.c_str(),
673 Fstab_File_System.c_str());
Ethan Yonker93382822018-11-01 15:25:31 -0500674 if (cryptfs_check_footer() == 0) {
675 Is_Encrypted = true;
676 Is_Decrypted = false;
677 Can_Be_Mounted = false;
678 Current_File_System = "emmc";
679 Setup_Image();
680 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
681 DataManager::SetValue(TW_CRYPTO_PWTYPE, cryptfs_get_password_type());
Noah Jacobson5a79f672019-04-28 00:10:07 -0400682 DataManager::SetValue("tw_crypto_pwtype_0", cryptfs_get_password_type());
Ethan Yonker93382822018-11-01 15:25:31 -0500683 DataManager::SetValue(TW_CRYPTO_PASSWORD, "");
684 DataManager::SetValue("tw_crypto_display", "");
685 } else {
686 gui_err("mount_data_footer=Could not mount /data and unable to find crypto footer.");
687 }
688 } else {
Matt Mower72c87ce2016-04-26 14:34:56 -0500689 Is_Encrypted = true;
690 Is_Decrypted = false;
Matt Mower72c87ce2016-04-26 14:34:56 -0500691 }
Ethan Yonker93382822018-11-01 15:25:31 -0500692 } else if (Key_Directory.empty()) {
Noah Jacobson5a79f672019-04-28 00:10:07 -0400693 LOGERR("Primary block device '%s' for mount point '%s' is not present!\n",
694 Primary_Block_Device.c_str(), Mount_Point.c_str());
Matt Mower72c87ce2016-04-26 14:34:56 -0500695 }
696 } else {
mauronofrio9bf73352019-11-23 22:27:34 +0100697 if (!Decrypt_FBE_DE()) {
mauronofrio1db94322019-11-23 23:13:04 +0100698 char wrappedvalue[PROPERTY_VALUE_MAX];
699 property_get("fbe.data.wrappedkey", wrappedvalue, "");
700 std::string wrappedkeyvalue(wrappedvalue);
701 if (wrappedkeyvalue == "true") {
702 LOGERR("Unable to decrypt FBE device\n");
703 } else {
704 LOGINFO("Trying wrapped key.\n");
705 property_set("fbe.data.wrappedkey", "true");
mauronofrio9bf73352019-11-23 22:27:34 +0100706 if (!Decrypt_FBE_DE()) {
Mauronofrio Matarrese6d5d08a2019-12-03 14:25:25 +0100707 LOGINFO("Unable to decrypt device\n");
mauronofrio9bf73352019-11-23 22:27:34 +0100708 }
mauronofrio1db94322019-11-23 23:13:04 +0100709 }
mauronofrio9bf73352019-11-23 22:27:34 +0100710 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500711 }
712 if (datamedia && (!Is_Encrypted || (Is_Encrypted && Is_Decrypted))) {
713 Setup_Data_Media();
714 Recreate_Media_Folder();
715 }
716#else
717 if (datamedia) {
718 Setup_Data_Media();
719 Recreate_Media_Folder();
720 }
721#endif
722}
723
Ethan Yonker93382822018-11-01 15:25:31 -0500724bool TWPartition::Decrypt_FBE_DE() {
725if (TWFunc::Path_Exists("/data/unencrypted/key/version")) {
Captain Throwbackcf0dffc2020-02-17 16:44:50 -0500726 DataManager::SetValue(TW_IS_FBE, 1);
Ethan Yonker93382822018-11-01 15:25:31 -0500727 LOGINFO("File Based Encryption is present\n");
728#ifdef TW_INCLUDE_FBE
Noah Jacobson5a79f672019-04-28 00:10:07 -0400729 Is_FBE = true;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400730 ExcludeAll(Mount_Point + "/convert_fbe");
731 ExcludeAll(Mount_Point + "/unencrypted");
732 ExcludeAll(Mount_Point + "/misc/vold/user_keys");
733 ExcludeAll(Mount_Point + "/system/gatekeeper.password.key");
734 ExcludeAll(Mount_Point + "/system/gatekeeper.pattern.key");
735 ExcludeAll(Mount_Point + "/system/locksettings.db");
736 ExcludeAll(Mount_Point + "/system/locksettings.db-wal");
737 ExcludeAll(Mount_Point + "/misc/gatekeeper");
738 ExcludeAll(Mount_Point + "/misc/keystore");
739 ExcludeAll(Mount_Point + "/drm/kek.dat");
740 ExcludeAll(Mount_Point + "/system_de/0/spblob"); // contains data needed to decrypt pixel 2
741 ExcludeAll(Mount_Point + "/system/users/0/gatekeeper.password.key");
742 ExcludeAll(Mount_Point + "/system/users/0/gatekeeper.pattern.key");
743 ExcludeAll(Mount_Point + "/cache");
744 int retry_count = 3;
745 while (!Decrypt_DE() && --retry_count)
746 usleep(2000);
Noah Jacobson5a79f672019-04-28 00:10:07 -0400747 if (retry_count > 0) {
748 property_set("ro.crypto.state", "encrypted");
749 Is_Encrypted = true;
750 Is_Decrypted = false;
751 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
752 string filename;
753 int pwd_type = Get_Password_Type(0, filename);
754 if (pwd_type < 0) {
755 LOGERR("This TWRP does not have synthetic password decrypt support\n");
756 pwd_type = 0; // default password
757 }
Noah Jacobsonbf0b0fb2020-06-05 12:47:20 -0400758 PartitionManager.Parse_Users(); // after load_all_de_keys() to parse_users
759 std::vector<users_struct>::iterator iter;
760 std::vector<users_struct>* userList = PartitionManager.Get_Users_List();
761 for (iter = userList->begin(); iter != userList->end(); iter++) {
762 if (atoi((*iter).userId.c_str()) != 0) {
763 ExcludeAll(Mount_Point + "/system_de/" + (*iter).userId + "/spblob");
764 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/gatekeeper.password.key");
765 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/gatekeeper.pattern.key");
766 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/locksettings.db");
767 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/locksettings.db-wal");
768 }
769 }
Noah Jacobson5a79f672019-04-28 00:10:07 -0400770 DataManager::SetValue(TW_CRYPTO_PWTYPE, pwd_type);
771 DataManager::SetValue("tw_crypto_pwtype_0", pwd_type);
772 DataManager::SetValue(TW_CRYPTO_PASSWORD, "");
773 DataManager::SetValue("tw_crypto_display", "");
774 return true;
775 }
Ethan Yonker93382822018-11-01 15:25:31 -0500776#else
777 LOGERR("FBE found but FBE support not present in TWRP\n");
778#endif
779 }
Captain Throwbackcf0dffc2020-02-17 16:44:50 -0500780 DataManager::SetValue(TW_IS_FBE, 0);
Ethan Yonker93382822018-11-01 15:25:31 -0500781 return false;
782}
783
Matt Mower72c87ce2016-04-26 14:34:56 -0500784void TWPartition::Setup_Cache_Partition(bool Display_Error __unused) {
785 if (Mount_Point != "/cache")
786 return;
787
788 if (!Mount(true))
789 return;
790
791 if (!TWFunc::Path_Exists("/cache/recovery/.")) {
792 LOGINFO("Recreating /cache/recovery folder\n");
793 if (mkdir("/cache/recovery", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0)
794 LOGERR("Could not create /cache/recovery\n");
795 }
796}
797
Matt Mower4ab42b12016-04-21 13:52:18 -0500798void TWPartition::Process_FS_Flags(const char *str) {
799 char *options = strdup(str);
800 char *ptr, *savep;
Hashcode62bd9e02013-11-19 21:59:42 -0800801
Matt Mower4ab42b12016-04-21 13:52:18 -0500802 Mount_Options = "";
Hashcode62bd9e02013-11-19 21:59:42 -0800803
Matt Mower4ab42b12016-04-21 13:52:18 -0500804 // Avoid issues with potentially nested strtok by using strtok_r
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600805 for (ptr = strtok_r(options, ",", &savep); ptr; ptr = strtok_r(NULL, ",", &savep)) {
806 char *equals = strstr(ptr, "=");
807 size_t name_len;
Matt Mower4ab42b12016-04-21 13:52:18 -0500808
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600809 if (!equals)
810 name_len = strlen(ptr);
811 else
812 name_len = equals - ptr;
813
814 // There are some flags that we want to ignore in TWRP
815 bool found_match = false;
816 for (const char** ignored_mount_item = ignored_mount_items; *ignored_mount_item; ignored_mount_item++) {
817 if (strncmp(ptr, *ignored_mount_item, name_len) == 0) {
818 found_match = true;
Hashcode62bd9e02013-11-19 21:59:42 -0800819 break;
820 }
821 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600822 if (found_match)
823 continue;
Hashcode62bd9e02013-11-19 21:59:42 -0800824
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600825 // mount_flags are never postfixed by '='
826 if (!equals) {
827 const struct flag_list* mount_flag = mount_flags;
828 for (; mount_flag->name; mount_flag++) {
829 if (strcmp(ptr, mount_flag->name) == 0) {
830 if (mount_flag->flag == MS_RDONLY)
831 Mount_Read_Only = true;
832 else
833 Mount_Flags |= (unsigned)mount_flag->flag;
834 found_match = true;
835 break;
836 }
837 }
838 if (found_match)
839 continue;
Matt Mower4ab42b12016-04-21 13:52:18 -0500840 }
841
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600842 // If we aren't ignoring this flag and it's not a mount flag, then it must be a mount option
843 if (!Mount_Options.empty())
844 Mount_Options += ",";
845 Mount_Options += ptr;
Matt Mower4ab42b12016-04-21 13:52:18 -0500846 }
847 free(options);
Hashcode62bd9e02013-11-19 21:59:42 -0800848}
849
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600850void TWPartition::Save_FS_Flags(const string& local_File_System, int local_Mount_Flags, const string& local_Mount_Options) {
851 partition_fs_flags_struct flags;
852 flags.File_System = local_File_System;
853 flags.Mount_Flags = local_Mount_Flags;
854 flags.Mount_Options = local_Mount_Options;
855 fs_flags.push_back(flags);
856}
857
Matt Mower2416a502016-04-12 19:54:46 -0500858void TWPartition::Apply_TW_Flag(const unsigned flag, const char* str, const bool val) {
859 switch (flag) {
860 case TWFLAG_ANDSEC:
861 Has_Android_Secure = val;
862 break;
863 case TWFLAG_BACKUP:
864 Can_Be_Backed_Up = val;
865 break;
866 case TWFLAG_BACKUPNAME:
867 Backup_Display_Name = str;
868 break;
869 case TWFLAG_BLOCKSIZE:
870 Format_Block_Size = (unsigned long)(atol(str));
871 break;
872 case TWFLAG_CANBEWIPED:
873 Can_Be_Wiped = val;
874 break;
875 case TWFLAG_CANENCRYPTBACKUP:
876 Can_Encrypt_Backup = val;
877 break;
878 case TWFLAG_DEFAULTS:
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600879 case TWFLAG_WAIT:
880 case TWFLAG_VERIFY:
881 case TWFLAG_CHECK:
882 case TWFLAG_NOTRIM:
883 case TWFLAG_VOLDMANAGED:
884 case TWFLAG_RESIZE:
Matt Mower2416a502016-04-12 19:54:46 -0500885 // Do nothing
886 break;
887 case TWFLAG_DISPLAY:
888 Display_Name = str;
889 break;
890 case TWFLAG_ENCRYPTABLE:
891 case TWFLAG_FORCEENCRYPT:
892 Crypto_Key_Location = str;
893 break;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500894 case TWFLAG_FILEENCRYPTION:
895 // This flag isn't used by TWRP but is needed in 9.0 FBE decrypt
896 // fileencryption=ice:aes-256-heh
897 {
898 std::string FBE = str;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500899 size_t colon_loc = FBE.find(":");
900 if (colon_loc == std::string::npos) {
Ethan Yonker93382822018-11-01 15:25:31 -0500901 property_set("fbe.contents", FBE.c_str());
902 property_set("fbe.filenames", "");
903 LOGINFO("FBE contents '%s', filenames ''\n", FBE.c_str());
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500904 break;
905 }
Ethan Yonker93382822018-11-01 15:25:31 -0500906 std::string FBE_contents, FBE_filenames;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500907 FBE_contents = FBE.substr(0, colon_loc);
908 FBE_filenames = FBE.substr(colon_loc + 1);
909 property_set("fbe.contents", FBE_contents.c_str());
910 property_set("fbe.filenames", FBE_filenames.c_str());
911 LOGINFO("FBE contents '%s', filenames '%s'\n", FBE_contents.c_str(), FBE_filenames.c_str());
912 }
913 break;
Peter Cai40ed06e2019-05-24 11:38:54 +0800914 case TWFLAG_WRAPPEDKEY:
915 // Set fbe.data.wrappedkey to true
916 {
917 property_set("fbe.data.wrappedkey", "true");
918 LOGINFO("FBE wrapped key enabled\n");
919 }
920 break;
Matt Mower2416a502016-04-12 19:54:46 -0500921 case TWFLAG_FLASHIMG:
922 Can_Flash_Img = val;
923 break;
924 case TWFLAG_FSFLAGS:
Matt Mower4ab42b12016-04-21 13:52:18 -0500925 Process_FS_Flags(str);
Matt Mower2416a502016-04-12 19:54:46 -0500926 break;
927 case TWFLAG_IGNOREBLKID:
928 Ignore_Blkid = val;
929 break;
930 case TWFLAG_LENGTH:
931 Length = atoi(str);
932 break;
933 case TWFLAG_MOUNTTODECRYPT:
934 Mount_To_Decrypt = val;
935 break;
936 case TWFLAG_REMOVABLE:
937 Removable = val;
938 break;
939 case TWFLAG_RETAINLAYOUTVERSION:
940 Retain_Layout_Version = val;
941 break;
942 case TWFLAG_SETTINGSSTORAGE:
943 Is_Settings_Storage = val;
944 if (Is_Settings_Storage)
945 Is_Storage = true;
946 break;
947 case TWFLAG_STORAGE:
948 Is_Storage = val;
949 break;
950 case TWFLAG_STORAGENAME:
951 Storage_Name = str;
952 break;
953 case TWFLAG_SUBPARTITIONOF:
954 Is_SubPartition = true;
955 SubPartition_Of = str;
956 break;
957 case TWFLAG_SYMLINK:
958 Symlink_Path = str;
959 break;
960 case TWFLAG_USERDATAENCRYPTBACKUP:
961 Use_Userdata_Encryption = val;
962 if (Use_Userdata_Encryption)
963 Can_Encrypt_Backup = true;
964 break;
965 case TWFLAG_USERMRF:
966 Use_Rm_Rf = val;
967 break;
968 case TWFLAG_WIPEDURINGFACTORYRESET:
969 Wipe_During_Factory_Reset = val;
970 if (Wipe_During_Factory_Reset) {
971 Can_Be_Wiped = true;
972 Wipe_Available_in_GUI = true;
973 }
974 break;
975 case TWFLAG_WIPEINGUI:
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600976 case TWFLAG_FORMATTABLE:
Matt Mower2416a502016-04-12 19:54:46 -0500977 Wipe_Available_in_GUI = val;
978 if (Wipe_Available_in_GUI)
979 Can_Be_Wiped = true;
980 break;
Ethan Yonker1b190162016-12-05 15:25:19 -0600981 case TWFLAG_SLOTSELECT:
982 SlotSelect = true;
983 break;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600984 case TWFLAG_ALTDEVICE:
985 Alternate_Block_Device = str;
986 break;
Ethan Yonker93382822018-11-01 15:25:31 -0500987 case TWFLAG_KEYDIRECTORY:
988 Key_Directory = str;
Matt Mower2416a502016-04-12 19:54:46 -0500989 default:
990 // Should not get here
991 LOGINFO("Flag identified for processing, but later unmatched: %i\n", flag);
992 break;
993 }
994}
Dees_Troy51127312012-09-08 13:08:49 -0400995
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600996void TWPartition::Process_TW_Flags(char *flags, bool Display_Error, int fstab_ver) {
Matt Mower2416a502016-04-12 19:54:46 -0500997 char separator[2] = {'\n', 0};
998 char *ptr, *savep;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600999 char source_separator = ';';
1000
1001 if (fstab_ver == 2)
1002 source_separator = ',';
Matt Mower2416a502016-04-12 19:54:46 -05001003
1004 // Semicolons within double-quotes are not forbidden, so replace
1005 // only the semicolons intended as separators with '\n' for strtok
1006 for (unsigned i = 0, skip = 0; i < strlen(flags); i++) {
1007 if (flags[i] == '\"')
Dees_Troya13d74f2013-03-24 08:54:55 -05001008 skip = !skip;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001009 if (!skip && flags[i] == source_separator)
Matt Mower2416a502016-04-12 19:54:46 -05001010 flags[i] = separator[0];
Dees_Troy51127312012-09-08 13:08:49 -04001011 }
1012
Matt Mower2416a502016-04-12 19:54:46 -05001013 // Avoid issues with potentially nested strtok by using strtok_r
1014 ptr = strtok_r(flags, separator, &savep);
1015 while (ptr) {
1016 int ptr_len = strlen(ptr);
1017 const struct flag_list* tw_flag = tw_flags;
Hashcode62bd9e02013-11-19 21:59:42 -08001018
Matt Mower2416a502016-04-12 19:54:46 -05001019 for (; tw_flag->name; tw_flag++) {
1020 int flag_len = strlen(tw_flag->name);
1021
1022 if (strncmp(ptr, tw_flag->name, flag_len) == 0) {
1023 bool flag_val = false;
1024
1025 if (ptr_len > flag_len && (tw_flag->name)[flag_len-1] != '='
1026 && ptr[flag_len] != '=') {
1027 // Handle flags with same starting string
1028 // (e.g. backup and backupname)
1029 continue;
1030 } else if (ptr_len > flag_len && ptr[flag_len] == '=') {
1031 // Handle flags with dual format: Part 1
1032 // (e.g. backup and backup=y. backup=y handled here)
1033 ptr += flag_len + 1;
1034 TWFunc::Strip_Quotes(ptr);
1035 // Skip flags with empty argument
1036 // (e.g. backup=)
1037 if (strlen(ptr) == 0) {
1038 LOGINFO("Flag missing argument or should not include '=': %s=\n", tw_flag->name);
1039 break;
1040 }
1041 flag_val = strchr("yY1", *ptr) != NULL;
1042 } else if (ptr_len == flag_len
1043 && (tw_flag->name)[flag_len-1] == '=') {
1044 // Skip flags missing argument after =
1045 // (e.g. backupname=)
1046 LOGINFO("Flag missing argument: %s\n", tw_flag->name);
1047 break;
1048 } else if (ptr_len > flag_len
1049 && (tw_flag->name)[flag_len-1] == '=') {
1050 // Handle arguments to flags
1051 // (e.g. backupname="My Stuff")
1052 ptr += flag_len;
1053 TWFunc::Strip_Quotes(ptr);
1054 // Skip flags with empty argument
1055 // (e.g. backupname="")
1056 if (strlen(ptr) == 0) {
1057 LOGINFO("Flag missing argument: %s\n", tw_flag->name);
1058 break;
1059 }
1060 } else if (ptr_len == flag_len) {
1061 // Handle flags with dual format: Part 2
1062 // (e.g. backup and backup=y. backup handled here)
1063 flag_val = true;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001064 } else {
Matt Mower2416a502016-04-12 19:54:46 -05001065 LOGINFO("Flag matched, but could not be processed: %s\n", ptr);
1066 break;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001067 }
Matt Mower2416a502016-04-12 19:54:46 -05001068
1069 Apply_TW_Flag(tw_flag->flag, ptr, flag_val);
1070 break;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001071 }
Matt Mower2416a502016-04-12 19:54:46 -05001072 }
1073 if (tw_flag->name == 0) {
Dees_Troy51127312012-09-08 13:08:49 -04001074 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001075 LOGERR("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -04001076 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001077 LOGINFO("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -04001078 }
Matt Mower2416a502016-04-12 19:54:46 -05001079 ptr = strtok_r(NULL, separator, &savep);
Dees_Troy51127312012-09-08 13:08:49 -04001080 }
Dees_Troy51a0e822012-09-05 15:24:24 -04001081}
1082
Dees_Troy5bf43922012-09-07 16:07:55 -04001083bool TWPartition::Is_File_System(string File_System) {
1084 if (File_System == "ext2" ||
Dees_Troy63c8df72012-09-10 14:02:05 -04001085 File_System == "ext3" ||
Dees_Troy5bf43922012-09-07 16:07:55 -04001086 File_System == "ext4" ||
1087 File_System == "vfat" ||
1088 File_System == "ntfs" ||
1089 File_System == "yaffs2" ||
bigbiff bigbiff3e146522012-11-14 14:32:59 -05001090 File_System == "exfat" ||
Dees_Troye5017042013-08-29 16:38:55 +00001091 File_System == "f2fs" ||
Erfan Abdib859e912019-02-05 18:18:46 +02001092 File_System == "squashfs" ||
Dees_Troy5bf43922012-09-07 16:07:55 -04001093 File_System == "auto")
1094 return true;
1095 else
1096 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001097}
1098
Dees_Troy5bf43922012-09-07 16:07:55 -04001099bool TWPartition::Is_Image(string File_System) {
Dees_Troy5fcd8f92012-10-16 12:22:05 -04001100 if (File_System == "emmc" || File_System == "mtd" || File_System == "bml")
Dees_Troy5bf43922012-09-07 16:07:55 -04001101 return true;
1102 else
1103 return false;
1104}
1105
Dees_Troy51127312012-09-08 13:08:49 -04001106bool TWPartition::Make_Dir(string Path, bool Display_Error) {
Ethan Yonker93ac7a02016-11-07 22:05:58 -06001107 if (TWFunc::Get_D_Type_From_Stat(Path) != S_IFDIR)
1108 unlink(Path.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001109 if (!TWFunc::Path_Exists(Path)) {
Dees_Troy51127312012-09-08 13:08:49 -04001110 if (mkdir(Path.c_str(), 0777) == -1) {
1111 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001112 gui_msg(Msg(msg::kError, "create_folder_strerr=Can not create '{1}' folder ({2}).")(Path)(strerror(errno)));
Dees_Troy51127312012-09-08 13:08:49 -04001113 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001114 LOGINFO("Can not create '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001115 return false;
1116 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001117 LOGINFO("Created '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001118 return true;
1119 }
1120 }
1121 return true;
1122}
1123
Dees_Troy5bf43922012-09-07 16:07:55 -04001124void TWPartition::Setup_File_System(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001125 Can_Be_Mounted = true;
1126 Can_Be_Wiped = true;
1127
Dees_Troy5bf43922012-09-07 16:07:55 -04001128 // Make the mount point folder if it doesn't exist
Dees_Troy51127312012-09-08 13:08:49 -04001129 Make_Dir(Mount_Point, Display_Error);
bigbiffce8f83c2015-12-12 18:30:21 -05001130 Backup_Method = BM_FILES;
Dees_Troy5bf43922012-09-07 16:07:55 -04001131}
1132
Ethan Yonker1b190162016-12-05 15:25:19 -06001133void TWPartition::Setup_Image() {
Dees_Troy5bf43922012-09-07 16:07:55 -04001134 Display_Name = Mount_Point.substr(1, Mount_Point.size() - 1);
1135 Backup_Name = Display_Name;
Gary Peck82599a82012-11-21 16:23:12 -08001136 if (Current_File_System == "emmc")
bigbiffce8f83c2015-12-12 18:30:21 -05001137 Backup_Method = BM_DD;
Gary Peck82599a82012-11-21 16:23:12 -08001138 else if (Current_File_System == "mtd" || Current_File_System == "bml")
bigbiffce8f83c2015-12-12 18:30:21 -05001139 Backup_Method = BM_FLASH_UTILS;
Dees_Troy5bf43922012-09-07 16:07:55 -04001140 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001141 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 -04001142}
1143
Dees_Troye58d5262012-09-21 12:27:57 -04001144void TWPartition::Setup_AndSec(void) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001145 Backup_Display_Name = "Android Secure";
Dees_Troye58d5262012-09-21 12:27:57 -04001146 Backup_Name = "and-sec";
Dees_Troya13d74f2013-03-24 08:54:55 -05001147 Can_Be_Backed_Up = true;
Dees_Troye58d5262012-09-21 12:27:57 -04001148 Has_Android_Secure = true;
1149 Symlink_Path = Mount_Point + "/.android_secure";
1150 Symlink_Mount_Point = "/and-sec";
1151 Backup_Path = Symlink_Mount_Point;
1152 Make_Dir("/and-sec", true);
1153 Recreate_AndSec_Folder();
Kjell Braden3126a112016-06-19 16:58:15 +00001154 Mount_Storage_Retry(true);
Dees_Troye58d5262012-09-21 12:27:57 -04001155}
1156
that9e0593e2014-10-08 00:01:24 +02001157void TWPartition::Setup_Data_Media() {
Ethan Yonker6277c792014-09-15 14:54:30 -05001158 LOGINFO("Setting up '%s' as data/media emulated storage.\n", Mount_Point.c_str());
Ethan Yonker66a19492015-12-10 10:19:45 -06001159 if (Storage_Name.empty() || Storage_Name == "Data")
1160 Storage_Name = "Internal Storage";
Ethan Yonker6277c792014-09-15 14:54:30 -05001161 Has_Data_Media = true;
1162 Is_Storage = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06001163 Storage_Path = Mount_Point + "/media";
Ethan Yonker6277c792014-09-15 14:54:30 -05001164 Symlink_Path = Storage_Path;
Ethan Yonker66a19492015-12-10 10:19:45 -06001165 if (Mount_Point == "/data") {
1166 Is_Settings_Storage = true;
1167 if (strcmp(EXPAND(TW_EXTERNAL_STORAGE_PATH), "/sdcard") == 0) {
1168 Make_Dir("/emmc", false);
1169 Symlink_Mount_Point = "/emmc";
1170 } else {
1171 Make_Dir("/sdcard", false);
1172 Symlink_Mount_Point = "/sdcard";
1173 }
1174 if (Mount(false) && TWFunc::Path_Exists(Mount_Point + "/media/0")) {
1175 Storage_Path = Mount_Point + "/media/0";
1176 Symlink_Path = Storage_Path;
1177 DataManager::SetValue(TW_INTERNAL_PATH, Mount_Point + "/media/0");
1178 UnMount(true);
1179 }
1180 DataManager::SetValue("tw_has_internal", 1);
1181 DataManager::SetValue("tw_has_data_media", 1);
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001182 backup_exclusions.add_absolute_dir("/data/data/com.google.android.music/files");
Darth90864aa52020-01-14 20:58:16 +00001183 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
Ethan Yonker6355b562017-05-01 09:42:17 -05001184 wipe_exclusions.add_absolute_dir(Mount_Point + "/misc/vold"); // adopted storage keys
Ethan Yonker79f88bd2016-12-09 14:52:12 -06001185 ExcludeAll(Mount_Point + "/.layout_version");
1186 ExcludeAll(Mount_Point + "/system/storage.xml");
Ethan Yonker6277c792014-09-15 14:54:30 -05001187 } else {
Ethan Yonker66a19492015-12-10 10:19:45 -06001188 if (Mount(true) && TWFunc::Path_Exists(Mount_Point + "/media/0")) {
1189 Storage_Path = Mount_Point + "/media/0";
1190 Symlink_Path = Storage_Path;
1191 UnMount(true);
1192 }
Ethan Yonker6277c792014-09-15 14:54:30 -05001193 }
Ethan Yonker79f88bd2016-12-09 14:52:12 -06001194 ExcludeAll(Mount_Point + "/media");
Ethan Yonker6277c792014-09-15 14:54:30 -05001195}
1196
Dees_Troy5bf43922012-09-07 16:07:55 -04001197void TWPartition::Find_Real_Block_Device(string& Block, bool Display_Error) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001198 char device[PATH_MAX], realDevice[PATH_MAX];
Dees_Troy5bf43922012-09-07 16:07:55 -04001199
1200 strcpy(device, Block.c_str());
1201 memset(realDevice, 0, sizeof(realDevice));
1202 while (readlink(device, realDevice, sizeof(realDevice)) > 0)
1203 {
1204 strcpy(device, realDevice);
1205 memset(realDevice, 0, sizeof(realDevice));
1206 }
1207
1208 if (device[0] != '/') {
1209 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001210 LOGERR("Invalid symlink path '%s' found on block device '%s'\n", device, Block.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001211 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001212 LOGINFO("Invalid symlink path '%s' found on block device '%s'\n", device, Block.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001213 return;
Dees_Troy51a0e822012-09-05 15:24:24 -04001214 } else {
Dees_Troy5bf43922012-09-07 16:07:55 -04001215 Block = device;
1216 return;
1217 }
1218}
1219
Kjell Braden3126a112016-06-19 16:58:15 +00001220bool TWPartition::Mount_Storage_Retry(bool Display_Error) {
Dees_Troy8e337f32012-10-13 22:07:49 -04001221 // On some devices, storage doesn't want to mount right away, retry and sleep
Kjell Braden3126a112016-06-19 16:58:15 +00001222 if (!Mount(Display_Error)) {
Dees_Troy8e337f32012-10-13 22:07:49 -04001223 int retry_count = 5;
1224 while (retry_count > 0 && !Mount(false)) {
1225 usleep(500000);
1226 retry_count--;
1227 }
Kjell Braden3126a112016-06-19 16:58:15 +00001228 return Mount(Display_Error);
Dees_Troy8e337f32012-10-13 22:07:49 -04001229 }
Kjell Braden3126a112016-06-19 16:58:15 +00001230 return true;
Dees_Troy8e337f32012-10-13 22:07:49 -04001231}
1232
Dees_Troy38bd7602012-09-14 13:33:53 -04001233bool TWPartition::Find_MTD_Block_Device(string MTD_Name) {
1234 FILE *fp = NULL;
1235 char line[255];
1236
1237 fp = fopen("/proc/mtd", "rt");
1238 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001239 LOGERR("Device does not support /proc/mtd\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001240 return false;
1241 }
1242
1243 while (fgets(line, sizeof(line), fp) != NULL)
1244 {
1245 char device[32], label[32];
1246 unsigned long size = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -04001247 int deviceId;
1248
1249 sscanf(line, "%s %lx %*s %*c%s", device, &size, label);
1250
1251 // Skip header and blank lines
1252 if ((strcmp(device, "dev:") == 0) || (strlen(line) < 8))
1253 continue;
1254
1255 // Strip off the trailing " from the label
1256 label[strlen(label)-1] = '\0';
1257
1258 if (strcmp(label, MTD_Name.c_str()) == 0) {
1259 // We found our device
1260 // Strip off the trailing : from the device
1261 device[strlen(device)-1] = '\0';
1262 if (sscanf(device,"mtd%d", &deviceId) == 1) {
1263 sprintf(device, "/dev/block/mtdblock%d", deviceId);
1264 Primary_Block_Device = device;
Dees_Troy76543db2013-06-19 16:24:30 +00001265 fclose(fp);
1266 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -04001267 }
1268 }
1269 }
1270 fclose(fp);
1271
1272 return false;
1273}
1274
Dees_Troy51127312012-09-08 13:08:49 -04001275bool TWPartition::Get_Size_Via_statfs(bool Display_Error) {
1276 struct statfs st;
1277 string Local_Path = Mount_Point + "/.";
1278
1279 if (!Mount(Display_Error))
1280 return false;
1281
1282 if (statfs(Local_Path.c_str(), &st) != 0) {
1283 if (!Removable) {
1284 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001285 LOGERR("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001286 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001287 LOGINFO("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001288 }
1289 return false;
1290 }
1291 Size = (st.f_blocks * st.f_bsize);
1292 Used = ((st.f_blocks - st.f_bfree) * st.f_bsize);
1293 Free = (st.f_bfree * st.f_bsize);
1294 Backup_Size = Used;
1295 return true;
1296}
1297
1298bool TWPartition::Get_Size_Via_df(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001299 FILE* fp;
1300 char command[255], line[512];
1301 int include_block = 1;
1302 unsigned int min_len;
1303
1304 if (!Mount(Display_Error))
1305 return false;
1306
Dees_Troy38bd7602012-09-14 13:33:53 -04001307 min_len = Actual_Block_Device.size() + 2;
Dees_Troy51127312012-09-08 13:08:49 -04001308 sprintf(command, "df %s > /tmp/dfoutput.txt", Mount_Point.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001309 TWFunc::Exec_Cmd(command);
Dees_Troy51127312012-09-08 13:08:49 -04001310 fp = fopen("/tmp/dfoutput.txt", "rt");
1311 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001312 LOGINFO("Unable to open /tmp/dfoutput.txt.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001313 return false;
Dees_Troy51127312012-09-08 13:08:49 -04001314 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001315
1316 while (fgets(line, sizeof(line), fp) != NULL)
1317 {
1318 unsigned long blocks, used, available;
1319 char device[64];
1320 char tmpString[64];
1321
1322 if (strncmp(line, "Filesystem", 10) == 0)
1323 continue;
1324 if (strlen(line) < min_len) {
1325 include_block = 0;
1326 continue;
1327 }
1328 if (include_block) {
1329 sscanf(line, "%s %lu %lu %lu", device, &blocks, &used, &available);
1330 } else {
1331 // The device block string is so long that the df information is on the next line
1332 int space_count = 0;
Dees_Troye58d5262012-09-21 12:27:57 -04001333 sprintf(tmpString, "/dev/block/%s", Actual_Block_Device.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001334 while (tmpString[space_count] == 32)
1335 space_count++;
1336 sscanf(line + space_count, "%lu %lu %lu", &blocks, &used, &available);
1337 }
1338
1339 // Adjust block size to byte size
1340 Size = blocks * 1024ULL;
1341 Used = used * 1024ULL;
1342 Free = available * 1024ULL;
1343 Backup_Size = Used;
1344 }
1345 fclose(fp);
1346 return true;
1347}
1348
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001349unsigned long long TWPartition::IOCTL_Get_Block_Size() {
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001350 Find_Actual_Block_Device();
Ethan Yonker483e9f42016-01-11 22:21:18 -06001351
1352 return TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001353}
1354
Dees_Troy5bf43922012-09-07 16:07:55 -04001355bool TWPartition::Find_Partition_Size(void) {
1356 FILE* fp;
1357 char line[512];
1358 string tmpdevice;
1359
igoriok87e3d932013-01-31 21:03:53 +02001360 fp = fopen("/proc/dumchar_info", "rt");
1361 if (fp != NULL) {
1362 while (fgets(line, sizeof(line), fp) != NULL)
1363 {
1364 char label[32], device[32];
1365 unsigned long size = 0;
1366
thatd43bf2d2014-09-21 23:13:02 +02001367 sscanf(line, "%s %lx %*x %*u %s", label, &size, device);
igoriok87e3d932013-01-31 21:03:53 +02001368
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05001369 // Skip header, annotation and blank lines
igoriok87e3d932013-01-31 21:03:53 +02001370 if ((strncmp(device, "/dev/", 5) != 0) || (strlen(line) < 8))
1371 continue;
1372
1373 tmpdevice = "/dev/";
1374 tmpdevice += label;
1375 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
1376 Size = size;
1377 fclose(fp);
1378 return true;
1379 }
1380 }
1381 }
1382
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001383 unsigned long long ioctl_size = IOCTL_Get_Block_Size();
1384 if (ioctl_size) {
1385 Size = ioctl_size;
1386 return true;
1387 }
1388
Dees_Troy5bf43922012-09-07 16:07:55 -04001389 // In this case, we'll first get the partitions we care about (with labels)
1390 fp = fopen("/proc/partitions", "rt");
1391 if (fp == NULL)
1392 return false;
1393
1394 while (fgets(line, sizeof(line), fp) != NULL)
1395 {
1396 unsigned long major, minor, blocks;
1397 char device[512];
Dees_Troy5bf43922012-09-07 16:07:55 -04001398
Dees_Troy63c8df72012-09-10 14:02:05 -04001399 if (strlen(line) < 7 || line[0] == 'm') continue;
Dees_Troy5bf43922012-09-07 16:07:55 -04001400 sscanf(line + 1, "%lu %lu %lu %s", &major, &minor, &blocks, device);
1401
1402 tmpdevice = "/dev/block/";
1403 tmpdevice += device;
Dees_Troy38bd7602012-09-14 13:33:53 -04001404 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001405 // Adjust block size to byte size
1406 Size = blocks * 1024ULL;
1407 fclose(fp);
1408 return true;
1409 }
1410 }
1411 fclose(fp);
1412 return false;
1413}
1414
Dees_Troy5bf43922012-09-07 16:07:55 -04001415bool TWPartition::Is_Mounted(void) {
1416 if (!Can_Be_Mounted)
1417 return false;
1418
1419 struct stat st1, st2;
1420 string test_path;
1421
1422 // Check to see if the mount point directory exists
1423 test_path = Mount_Point + "/.";
1424 if (stat(test_path.c_str(), &st1) != 0) return false;
1425
1426 // Check to see if the directory above the mount point exists
1427 test_path = Mount_Point + "/../.";
1428 if (stat(test_path.c_str(), &st2) != 0) return false;
1429
1430 // Compare the device IDs -- if they match then we're (probably) using tmpfs instead of an actual device
1431 int ret = (st1.st_dev != st2.st_dev) ? true : false;
1432
1433 return ret;
1434}
1435
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05001436bool TWPartition::Is_File_System_Writable(void) {
1437 if (!Is_File_System(Current_File_System) || !Is_Mounted())
1438 return false;
1439
1440 string test_path = Mount_Point + "/.";
1441 return (access(test_path.c_str(), W_OK) == 0);
1442}
1443
Dees_Troy5bf43922012-09-07 16:07:55 -04001444bool TWPartition::Mount(bool Display_Error) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001445 int exfat_mounted = 0;
Martin Dünkelmann6d843782018-12-27 23:40:28 +01001446 unsigned int flags = Mount_Flags;
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001447
Dees_Troy5bf43922012-09-07 16:07:55 -04001448 if (Is_Mounted()) {
1449 return true;
1450 } else if (!Can_Be_Mounted) {
1451 return false;
1452 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001453
1454 Find_Actual_Block_Device();
1455
1456 // Check the current file system before mounting
1457 Check_FS_Type();
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001458 if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sbin/exfat-fuse")) {
Dees_Troye34c1332013-02-06 19:13:00 +00001459 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 +00001460 LOGINFO("cmd: %s\n", cmd.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001461 string result;
1462 if (TWFunc::Exec_Cmd(cmd, result) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001463 LOGINFO("exfat-fuse failed to mount with result '%s', trying vfat\n", result.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001464 Current_File_System = "vfat";
1465 } else {
1466#ifdef TW_NO_EXFAT_FUSE
1467 UnMount(false);
1468 // We'll let the kernel handle it but using exfat-fuse to detect if the file system is actually exfat
1469 // Some kernels let us mount vfat as exfat which doesn't work out too well
1470#else
1471 exfat_mounted = 1;
1472#endif
1473 }
1474 }
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001475
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001476 if (Current_File_System == "ntfs" && (TWFunc::Path_Exists("/sbin/ntfs-3g") || TWFunc::Path_Exists("/sbin/mount.ntfs"))) {
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001477 string cmd;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001478 string Ntfsmount_Binary = "";
1479
1480 if (TWFunc::Path_Exists("/sbin/ntfs-3g"))
1481 Ntfsmount_Binary = "ntfs-3g";
1482 else if (TWFunc::Path_Exists("/sbin/mount.ntfs"))
1483 Ntfsmount_Binary = "mount.ntfs";
1484
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001485 if (Mount_Read_Only)
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001486 cmd = "/sbin/" + Ntfsmount_Binary + " -o ro " + Actual_Block_Device + " " + Mount_Point;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001487 else
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001488 cmd = "/sbin/" + Ntfsmount_Binary + " " + Actual_Block_Device + " " + Mount_Point;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001489 LOGINFO("cmd: '%s'\n", cmd.c_str());
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001490
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001491 if (TWFunc::Exec_Cmd(cmd) == 0) {
1492 return true;
1493 } else {
1494 LOGINFO("ntfs-3g failed to mount, trying regular mount method.\n");
1495 }
1496 }
1497
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001498 if (Mount_Read_Only)
1499 flags |= MS_RDONLY;
1500
Dees_Troy22042032012-12-18 21:23:08 +00001501 if (Fstab_File_System == "yaffs2") {
1502 // mount an MTD partition as a YAFFS2 filesystem.
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001503 flags = MS_NOATIME | MS_NODEV | MS_NODIRATIME;
1504 if (Mount_Read_Only)
1505 flags |= MS_RDONLY;
Dees_Troy76543db2013-06-19 16:24:30 +00001506 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags, NULL) < 0) {
1507 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags | MS_RDONLY, NULL) < 0) {
1508 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001509 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy76543db2013-06-19 16:24:30 +00001510 else
1511 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
1512 return false;
1513 } else {
1514 LOGINFO("Mounted '%s' (MTD) as RO\n", Mount_Point.c_str());
1515 return true;
1516 }
1517 } else {
1518 struct stat st;
1519 string test_path = Mount_Point;
1520 if (stat(test_path.c_str(), &st) < 0) {
1521 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001522 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy76543db2013-06-19 16:24:30 +00001523 else
1524 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
1525 return false;
1526 }
1527 mode_t new_mode = st.st_mode | S_IXUSR | S_IXGRP | S_IXOTH;
1528 if (new_mode != st.st_mode) {
1529 LOGINFO("Fixing execute permissions for %s\n", Mount_Point.c_str());
1530 if (chmod(Mount_Point.c_str(), new_mode) < 0) {
1531 if (Display_Error)
1532 LOGERR("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
1533 else
1534 LOGINFO("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
1535 return false;
1536 }
1537 }
Dees_Troy22042032012-12-18 21:23:08 +00001538 return true;
Dees_Troy76543db2013-06-19 16:24:30 +00001539 }
thatc7572eb2015-03-31 18:55:30 +02001540 }
1541
1542 string mount_fs = Current_File_System;
1543 if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sys/module/texfat"))
1544 mount_fs = "texfat";
1545
1546 if (!exfat_mounted &&
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001547 mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), mount_fs.c_str(), flags, Mount_Options.c_str()) != 0 &&
1548 mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), mount_fs.c_str(), flags, NULL) != 0) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001549#ifdef TW_NO_EXFAT_FUSE
1550 if (Current_File_System == "exfat") {
Dees_Troy2673cec2013-04-02 20:22:16 +00001551 LOGINFO("Mounting exfat failed, trying vfat...\n");
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001552 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), "vfat", 0, NULL) != 0) {
Dees_Troy85f44ed2013-01-09 18:42:36 +00001553 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001554 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy85f44ed2013-01-09 18:42:36 +00001555 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001556 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001557 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 +00001558 return false;
Dees_Troy85f44ed2013-01-09 18:42:36 +00001559 }
Dees_Troyb05ddee2013-01-28 20:24:50 +00001560 } else {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001561#endif
bigbiff bigbiff26774a02014-03-29 18:22:00 -04001562 if (!Removable && Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001563 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001564 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001565 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
1566 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 +00001567 return false;
1568#ifdef TW_NO_EXFAT_FUSE
Dees_Troy85f44ed2013-01-09 18:42:36 +00001569 }
1570#endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001571 }
Ethan Yonker253368a2014-11-25 15:00:52 -06001572
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001573 if (Removable)
1574 Update_Size(Display_Error);
1575
xiaolu9416f4f2015-06-04 08:22:23 +08001576 if (!Symlink_Mount_Point.empty() && TWFunc::Path_Exists(Symlink_Path)) {
codelover2a3d4ce2015-03-14 20:26:49 +08001577 string Command = "mount -o bind '" + Symlink_Path + "' '" + Symlink_Mount_Point + "'";
Vojtech Bocek05534202013-09-11 08:11:56 +02001578 TWFunc::Exec_Cmd(Command);
Dees_Troy5bf43922012-09-07 16:07:55 -04001579 }
Chaosmasterda974802020-01-26 21:09:28 +01001580
1581 if (Mount_Point == "/system_root") {
1582 unlink("/system");
1583 mkdir("/system", 0755);
1584 mount("/system_root/system", "/system", "auto", MS_BIND, NULL);
1585 }
1586
Dees_Troy5bf43922012-09-07 16:07:55 -04001587 return true;
1588}
1589
1590bool TWPartition::UnMount(bool Display_Error) {
Chaosmasterda974802020-01-26 21:09:28 +01001591 if (Mount_Point == "/system_root") {
1592 if (umount("/system") == -1)
1593 umount2("/system", MNT_DETACH);
1594 rmdir("/system");
1595 symlink("/system_root/system", "/system");
1596 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001597 if (Is_Mounted()) {
1598 int never_unmount_system;
1599
1600 DataManager::GetValue(TW_DONT_UNMOUNT_SYSTEM, never_unmount_system);
Captain Throwback9d6feb52018-07-27 10:05:24 -04001601 if (never_unmount_system == 1 && Mount_Point == PartitionManager.Get_Android_Root_Path())
Dees_Troy5bf43922012-09-07 16:07:55 -04001602 return true; // Never unmount system if you're not supposed to unmount it
1603
Matt Mowera8e6d832017-02-14 20:20:59 -06001604 if (Is_Storage && MTP_Storage_ID > 0)
Ethan Yonker726a0202014-12-16 20:01:38 -06001605 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001606
Dees_Troy38bd7602012-09-14 13:33:53 -04001607 if (!Symlink_Mount_Point.empty())
1608 umount(Symlink_Mount_Point.c_str());
1609
Dees_Troyb05ddee2013-01-28 20:24:50 +00001610 umount(Mount_Point.c_str());
1611 if (Is_Mounted()) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001612 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001613 gui_msg(Msg(msg::kError, "fail_unmount=Failed to unmount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy5bf43922012-09-07 16:07:55 -04001614 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001615 LOGINFO("Unable to unmount '%s'\n", Mount_Point.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001616 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001617 } else {
Dees_Troy5bf43922012-09-07 16:07:55 -04001618 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001619 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001620 } else {
1621 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001622 }
1623}
1624
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05001625bool TWPartition::ReMount(bool Display_Error) {
1626 if (UnMount(Display_Error))
1627 return Mount(Display_Error);
1628 return false;
1629}
1630
1631bool TWPartition::ReMount_RW(bool Display_Error) {
1632 // No need to remount if already mounted rw
1633 if (Is_File_System_Writable())
1634 return true;
1635
1636 bool ro = Mount_Read_Only;
1637 int flags = Mount_Flags;
1638
1639 Mount_Read_Only = false;
1640 Mount_Flags &= ~MS_RDONLY;
1641
1642 bool ret = ReMount(Display_Error);
1643
1644 Mount_Read_Only = ro;
1645 Mount_Flags = flags;
1646
1647 return ret;
1648}
1649
Gary Peck43acadf2012-11-21 21:19:01 -08001650bool TWPartition::Wipe(string New_File_System) {
Ethan Yonker726a0202014-12-16 20:01:38 -06001651 bool wiped = false, update_crypt = false, recreate_media = true;
Dees_Troy16c2b312013-01-15 16:51:18 +00001652 int check;
1653 string Layout_Filename = Mount_Point + "/.layout_version";
bigbiffa2bd7b72020-05-07 21:45:34 -04001654 ext4_encryption_policy policy;
1655
1656 if (Mount_Point == "/data" && TWFunc::get_cache_dir() == AB_CACHE_DIR && Is_Decrypted) {
1657 TWFunc::Get_Encryption_Policy(policy, AB_CACHE_DIR);
1658 }
Dees_Troy16c2b312013-01-15 16:51:18 +00001659
Dees_Troy38bd7602012-09-14 13:33:53 -04001660 if (!Can_Be_Wiped) {
Matt Mower3c366972015-12-25 19:28:31 -06001661 gui_msg(Msg(msg::kError, "cannot_wipe=Partition {1} cannot be wiped.")(Display_Name));
Dees_Troy38bd7602012-09-14 13:33:53 -04001662 return false;
1663 }
1664
Dees_Troyc51f1f92012-09-20 15:32:13 -04001665 if (Mount_Point == "/cache")
Dees_Troy2673cec2013-04-02 20:22:16 +00001666 Log_Offset = 0;
Dees_Troyc51f1f92012-09-20 15:32:13 -04001667
Dees_Troy16c2b312013-01-15 16:51:18 +00001668 if (Retain_Layout_Version && Mount(false) && TWFunc::Path_Exists(Layout_Filename))
1669 TWFunc::copy_file(Layout_Filename, "/.layout_version", 0600);
1670 else
1671 unlink("/.layout_version");
Dees_Troy38bd7602012-09-14 13:33:53 -04001672
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001673 if (Has_Data_Media && Current_File_System == New_File_System) {
Dees_Troy16c2b312013-01-15 16:51:18 +00001674 wiped = Wipe_Data_Without_Wiping_Media();
bigbiffa2bd7b72020-05-07 21:45:34 -04001675 if (Mount_Point == "/data" && TWFunc::get_cache_dir() == AB_CACHE_DIR) {
1676 bool created = Recreate_AB_Cache_Dir(policy);
1677 if (created)
1678 gui_msg(Msg(msg::kWarning, "fbe_wipe_msg=WARNING: {1} wiped. FBE device should be booted into Android and not Recovery to set initial FBE policy after wipe.")(TWFunc::get_cache_dir()));
1679 }
Ethan Yonker5eac2222014-06-11 12:22:55 -05001680 recreate_media = false;
Dees_Troy16c2b312013-01-15 16:51:18 +00001681 } else {
Dees_Troy16c2b312013-01-15 16:51:18 +00001682 DataManager::GetValue(TW_RM_RF_VAR, check);
1683
Hashcodedabfd492013-08-29 22:45:30 -07001684 if (check || Use_Rm_Rf)
Dees_Troy16c2b312013-01-15 16:51:18 +00001685 wiped = Wipe_RMRF();
1686 else if (New_File_System == "ext4")
1687 wiped = Wipe_EXT4();
1688 else if (New_File_System == "ext2" || New_File_System == "ext3")
dianlujitao4879b372018-12-03 18:45:47 +08001689 wiped = Wipe_EXTFS(New_File_System);
Dees_Troy16c2b312013-01-15 16:51:18 +00001690 else if (New_File_System == "vfat")
1691 wiped = Wipe_FAT();
1692 else if (New_File_System == "exfat")
1693 wiped = Wipe_EXFAT();
1694 else if (New_File_System == "yaffs2")
1695 wiped = Wipe_MTD();
Dees_Troye5017042013-08-29 16:38:55 +00001696 else if (New_File_System == "f2fs")
1697 wiped = Wipe_F2FS();
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001698 else if (New_File_System == "ntfs")
1699 wiped = Wipe_NTFS();
Dees_Troy16c2b312013-01-15 16:51:18 +00001700 else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001701 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 +00001702 unlink("/.layout_version");
1703 return false;
1704 }
1705 update_crypt = wiped;
Gary Pecke8bc5d72012-12-21 06:45:25 -08001706 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001707
Gary Pecke8bc5d72012-12-21 06:45:25 -08001708 if (wiped) {
Dees_Troy16c2b312013-01-15 16:51:18 +00001709 if (TWFunc::Path_Exists("/.layout_version") && Mount(false))
1710 TWFunc::copy_file("/.layout_version", Layout_Filename, 0600);
1711
1712 if (update_crypt) {
1713 Setup_File_System(false);
1714 if (Is_Encrypted && !Is_Decrypted) {
1715 // just wiped an encrypted partition back to its unencrypted state
1716 Is_Encrypted = false;
1717 Is_Decrypted = false;
1718 Decrypted_Block_Device = "";
1719 if (Mount_Point == "/data") {
1720 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
1721 DataManager::SetValue(TW_IS_DECRYPTED, 0);
1722 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08001723 }
1724 }
Ethan Yonker5eac2222014-06-11 12:22:55 -05001725
Ethan Yonker66a19492015-12-10 10:19:45 -06001726 if (Has_Data_Media && recreate_media) {
Ethan Yonker5eac2222014-06-11 12:22:55 -05001727 Recreate_Media_Folder();
1728 }
Matt Mower209c9632016-01-20 12:08:35 -06001729 if (Is_Storage && Mount(false))
1730 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Gary Pecke8bc5d72012-12-21 06:45:25 -08001731 }
Matt Mower209c9632016-01-20 12:08:35 -06001732
Gary Pecke8bc5d72012-12-21 06:45:25 -08001733 return wiped;
Dees_Troy51a0e822012-09-05 15:24:24 -04001734}
1735
Gary Peck43acadf2012-11-21 21:19:01 -08001736bool TWPartition::Wipe() {
Gary Peck82599a82012-11-21 16:23:12 -08001737 if (Is_File_System(Current_File_System))
1738 return Wipe(Current_File_System);
1739 else
1740 return Wipe(Fstab_File_System);
Gary Peck43acadf2012-11-21 21:19:01 -08001741}
1742
Dees_Troye58d5262012-09-21 12:27:57 -04001743bool TWPartition::Wipe_AndSec(void) {
1744 if (!Has_Android_Secure)
1745 return false;
1746
Dees_Troye58d5262012-09-21 12:27:57 -04001747 if (!Mount(true))
1748 return false;
1749
Ethan Yonker74db1572015-10-28 12:44:49 -05001750 gui_msg(Msg("wiping=Wiping {1}")(Backup_Display_Name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001751 TWFunc::removeDir(Mount_Point + "/.android_secure/", true);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001752 return true;
Dees_Troye58d5262012-09-21 12:27:57 -04001753}
1754
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001755bool TWPartition::Can_Repair() {
Ethan Yonkera2719152015-05-28 09:44:41 -05001756 if (Mount_Read_Only)
1757 return false;
Matt Mower18794c82015-11-11 16:22:45 -06001758 if (Current_File_System == "vfat" && TWFunc::Path_Exists("/sbin/fsck.fat"))
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001759 return true;
1760 else if ((Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") && TWFunc::Path_Exists("/sbin/e2fsck"))
1761 return true;
1762 else if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sbin/fsck.exfat"))
1763 return true;
1764 else if (Current_File_System == "f2fs" && TWFunc::Path_Exists("/sbin/fsck.f2fs"))
1765 return true;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001766 else if (Current_File_System == "ntfs" && (TWFunc::Path_Exists("/sbin/ntfsfix") || TWFunc::Path_Exists("/sbin/fsck.ntfs")))
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001767 return true;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001768 return false;
1769}
1770
1771bool TWPartition::Repair() {
1772 string command;
1773
1774 if (Current_File_System == "vfat") {
Matt Mower18794c82015-11-11 16:22:45 -06001775 if (!TWFunc::Path_Exists("/sbin/fsck.fat")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001776 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.fat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001777 return false;
1778 }
1779 if (!UnMount(true))
1780 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001781 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.fat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001782 Find_Actual_Block_Device();
Matt Mower18794c82015-11-11 16:22:45 -06001783 command = "/sbin/fsck.fat -y " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001784 LOGINFO("Repair command: %s\n", command.c_str());
1785 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001786 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001787 return true;
1788 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001789 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001790 return false;
1791 }
1792 }
1793 if (Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") {
1794 if (!TWFunc::Path_Exists("/sbin/e2fsck")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001795 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("e2fsck"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001796 return false;
1797 }
1798 if (!UnMount(true))
1799 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001800 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("e2fsck"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001801 Find_Actual_Block_Device();
Ethan Yonkera2719152015-05-28 09:44:41 -05001802 command = "/sbin/e2fsck -fp " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001803 LOGINFO("Repair command: %s\n", command.c_str());
1804 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001805 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001806 return true;
1807 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001808 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001809 return false;
1810 }
1811 }
1812 if (Current_File_System == "exfat") {
1813 if (!TWFunc::Path_Exists("/sbin/fsck.exfat")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001814 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.exfat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001815 return false;
1816 }
1817 if (!UnMount(true))
1818 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001819 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.exfat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001820 Find_Actual_Block_Device();
1821 command = "/sbin/fsck.exfat " + Actual_Block_Device;
1822 LOGINFO("Repair command: %s\n", command.c_str());
1823 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001824 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001825 return true;
1826 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001827 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001828 return false;
1829 }
1830 }
1831 if (Current_File_System == "f2fs") {
1832 if (!TWFunc::Path_Exists("/sbin/fsck.f2fs")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001833 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.f2fs"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001834 return false;
1835 }
1836 if (!UnMount(true))
1837 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001838 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.f2fs"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001839 Find_Actual_Block_Device();
1840 command = "/sbin/fsck.f2fs " + Actual_Block_Device;
1841 LOGINFO("Repair command: %s\n", command.c_str());
1842 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001843 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001844 return true;
1845 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001846 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001847 return false;
1848 }
1849 }
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001850 if (Current_File_System == "ntfs") {
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001851 string Ntfsfix_Binary;
1852 if (TWFunc::Path_Exists("/sbin/ntfsfix"))
1853 Ntfsfix_Binary = "ntfsfix";
1854 else if (TWFunc::Path_Exists("/sbin/fsck.ntfs"))
1855 Ntfsfix_Binary = "fsck.ntfs";
1856 else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001857 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("ntfsfix"));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001858 return false;
1859 }
1860 if (!UnMount(true))
1861 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001862 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)(Ntfsfix_Binary));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001863 Find_Actual_Block_Device();
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001864 command = "/sbin/" + Ntfsfix_Binary + " " + Actual_Block_Device;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001865 LOGINFO("Repair command: %s\n", command.c_str());
1866 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001867 gui_msg("done=Done.");
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001868 return true;
1869 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001870 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001871 return false;
1872 }
1873 }
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001874 return false;
1875}
1876
Ethan Yonkera2719152015-05-28 09:44:41 -05001877bool TWPartition::Can_Resize() {
1878 if (Mount_Read_Only)
1879 return false;
1880 if ((Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") && TWFunc::Path_Exists("/sbin/resize2fs"))
1881 return true;
1882 return false;
1883}
1884
1885bool TWPartition::Resize() {
1886 string command;
1887
1888 if (Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") {
1889 if (!Can_Repair()) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001890 LOGINFO("Cannot resize %s because %s cannot be repaired before resizing.\n", Display_Name.c_str(), Display_Name.c_str());
1891 gui_msg(Msg(msg::kError, "cannot_resize=Cannot resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001892 return false;
1893 }
1894 if (!TWFunc::Path_Exists("/sbin/resize2fs")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001895 LOGINFO("resize2fs does not exist! Cannot resize!\n");
1896 gui_msg(Msg(msg::kError, "cannot_resize=Cannot resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001897 return false;
1898 }
1899 // Repair will unmount so no need to do it twice
Ethan Yonker74db1572015-10-28 12:44:49 -05001900 gui_msg(Msg("repair_resize=Repairing {1} before resizing.")( Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001901 if (!Repair())
1902 return false;
Ethan Yonker74db1572015-10-28 12:44:49 -05001903 gui_msg(Msg("resizing=Resizing {1} using {2}...")(Display_Name)("resize2fs"));
Ethan Yonkera2719152015-05-28 09:44:41 -05001904 Find_Actual_Block_Device();
1905 command = "/sbin/resize2fs " + Actual_Block_Device;
1906 if (Length != 0) {
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001907 unsigned long long Actual_Size = IOCTL_Get_Block_Size();
1908 if (Actual_Size == 0)
1909 return false;
Ethan Yonkera2719152015-05-28 09:44:41 -05001910
Ethan Yonkera2719152015-05-28 09:44:41 -05001911 unsigned long long Block_Count;
1912 if (Length < 0) {
1913 // Reduce overall size by this length
1914 Block_Count = (Actual_Size / 1024LLU) - ((unsigned long long)(Length * -1) / 1024LLU);
1915 } else {
1916 // This is the size, not a size reduction
1917 Block_Count = ((unsigned long long)(Length) / 1024LLU);
1918 }
1919 char temp[256];
1920 sprintf(temp, "%llu", Block_Count);
1921 command += " ";
1922 command += temp;
1923 command += "K";
1924 }
1925 LOGINFO("Resize command: %s\n", command.c_str());
1926 if (TWFunc::Exec_Cmd(command) == 0) {
1927 Update_Size(true);
Ethan Yonker74db1572015-10-28 12:44:49 -05001928 gui_msg("done=Done.");
Ethan Yonkera2719152015-05-28 09:44:41 -05001929 return true;
1930 } else {
1931 Update_Size(true);
Ethan Yonker74db1572015-10-28 12:44:49 -05001932 gui_msg(Msg(msg::kError, "unable_resize=Unable to resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001933 return false;
1934 }
1935 }
1936 return false;
1937}
1938
bigbiffce8f83c2015-12-12 18:30:21 -05001939bool TWPartition::Backup(PartitionSettings *part_settings, pid_t *tar_fork_pid) {
1940 if (Backup_Method == BM_FILES)
1941 return Backup_Tar(part_settings, tar_fork_pid);
1942 else if (Backup_Method == BM_DD)
1943 return Backup_Image(part_settings);
1944 else if (Backup_Method == BM_FLASH_UTILS)
1945 return Backup_Dump_Image(part_settings);
Dees_Troy2673cec2013-04-02 20:22:16 +00001946 LOGERR("Unknown backup method for '%s'\n", Mount_Point.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001947 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001948}
1949
bigbiffce8f83c2015-12-12 18:30:21 -05001950bool TWPartition::Restore(PartitionSettings *part_settings) {
Matt Mower3c366972015-12-25 19:28:31 -06001951 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001952 LOGINFO("Restore filename is: %s/%s\n", part_settings->Backup_Folder.c_str(), Backup_FileName.c_str());
Gary Peck43acadf2012-11-21 21:19:01 -08001953
bigbiffce8f83c2015-12-12 18:30:21 -05001954 string Restore_File_System = Get_Restore_File_System(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001955
1956 if (Is_File_System(Restore_File_System))
bigbiffce8f83c2015-12-12 18:30:21 -05001957 return Restore_Tar(part_settings);
1958 else if (Is_Image(Restore_File_System))
1959 return Restore_Image(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001960
1961 LOGERR("Unknown restore method for '%s'\n", Mount_Point.c_str());
1962 return false;
1963}
1964
bigbiffce8f83c2015-12-12 18:30:21 -05001965string TWPartition::Get_Restore_File_System(PartitionSettings *part_settings) {
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001966 size_t first_period, second_period;
1967 string Restore_File_System;
1968
Gary Peck43acadf2012-11-21 21:19:01 -08001969 // Parse backup filename to extract the file system before wiping
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001970 first_period = Backup_FileName.find(".");
Gary Peck43acadf2012-11-21 21:19:01 -08001971 if (first_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001972 LOGERR("Unable to find file system (first period).\n");
thatd43bf2d2014-09-21 23:13:02 +02001973 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08001974 }
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001975 Restore_File_System = Backup_FileName.substr(first_period + 1, Backup_FileName.size() - first_period - 1);
Gary Peck43acadf2012-11-21 21:19:01 -08001976 second_period = Restore_File_System.find(".");
1977 if (second_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001978 LOGERR("Unable to find file system (second period).\n");
thatd43bf2d2014-09-21 23:13:02 +02001979 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08001980 }
1981 Restore_File_System.resize(second_period);
Matt Mowera0cd91d2016-12-30 18:21:42 -06001982 LOGINFO("Restore file system is: '%s'.\n", Restore_File_System.c_str());
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001983 return Restore_File_System;
Dees_Troy51a0e822012-09-05 15:24:24 -04001984}
1985
1986string TWPartition::Backup_Method_By_Name() {
bigbiffce8f83c2015-12-12 18:30:21 -05001987 if (Backup_Method == BM_NONE)
Dees_Troy38bd7602012-09-14 13:33:53 -04001988 return "none";
bigbiffce8f83c2015-12-12 18:30:21 -05001989 else if (Backup_Method == BM_FILES)
Dees_Troy38bd7602012-09-14 13:33:53 -04001990 return "files";
bigbiffce8f83c2015-12-12 18:30:21 -05001991 else if (Backup_Method == BM_DD)
Dees_Troy38bd7602012-09-14 13:33:53 -04001992 return "dd";
bigbiffce8f83c2015-12-12 18:30:21 -05001993 else if (Backup_Method == BM_FLASH_UTILS)
Dees_Troy38bd7602012-09-14 13:33:53 -04001994 return "flash_utils";
1995 else
1996 return "undefined";
1997 return "ERROR!";
Dees_Troy51a0e822012-09-05 15:24:24 -04001998}
1999
2000bool TWPartition::Decrypt(string Password) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002001 LOGINFO("STUB TWPartition::Decrypt, password: '%s'\n", Password.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04002002 // Is this needed?
Dees_Troy51a0e822012-09-05 15:24:24 -04002003 return 1;
2004}
2005
2006bool TWPartition::Wipe_Encryption() {
Dees_Troy38bd7602012-09-14 13:33:53 -04002007 bool Save_Data_Media = Has_Data_Media;
Ethan Yonker93382822018-11-01 15:25:31 -05002008 bool ret = false;
2009 BasePartition* base_partition = make_partition();
2010
2011 if (!base_partition->PreWipeEncryption())
2012 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002013
dianlujitao4879b372018-12-03 18:45:47 +08002014 Find_Actual_Block_Device();
2015 if (!Is_Present) {
2016 LOGINFO("Block device not present, cannot format %s.\n", Display_Name.c_str());
2017 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2018 return false;
2019 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002020
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002021#ifdef TW_INCLUDE_CRYPTO
bigbiffa2bd7b72020-05-07 21:45:34 -04002022 if (!UnMount(true))
2023 return false;
Ethan Yonker1b190162016-12-05 15:25:19 -06002024 if (Is_Decrypted && !Decrypted_Block_Device.empty()) {
Matt Mower2b18a532015-02-20 16:58:05 -06002025 if (delete_crypto_blk_dev((char*)("userdata")) != 0) {
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002026 LOGERR("Error deleting crypto block device, continuing anyway.\n");
2027 }
2028 }
2029#endif
dianlujitao4879b372018-12-03 18:45:47 +08002030 Has_Data_Media = false;
Ethan Yonker93382822018-11-01 15:25:31 -05002031 Decrypted_Block_Device = "";
Dees_Troy74fb2e92013-04-15 14:35:47 +00002032 Is_Decrypted = false;
2033 Is_Encrypted = false;
Gary Pecke8bc5d72012-12-21 06:45:25 -08002034 if (Wipe(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04002035 Has_Data_Media = Save_Data_Media;
2036 if (Has_Data_Media && !Symlink_Mount_Point.empty()) {
2037 Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06002038 if (Mount(false))
2039 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04002040 }
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002041 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
Ethan Yonker83e82572014-04-04 10:59:28 -05002042#ifndef TW_OEM_BUILD
bigbiffa2bd7b72020-05-07 21:45:34 -04002043 if (Is_FBE)
2044 gui_msg(Msg(msg::kWarning, "fbe_wipe_msg=WARNING: {1} wiped. FBE device should be booted into Android and not Recovery to set initial FBE policy after wipe.")(TWFunc::get_cache_dir()));
2045 else
2046 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 -05002047#endif
Ethan Yonker93382822018-11-01 15:25:31 -05002048 ret = true;
2049 if (!Key_Directory.empty())
2050 ret = PartitionManager.Wipe_By_Path(Key_Directory);
2051 if (ret)
2052 ret = base_partition->PostWipeEncryption();
2053 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002054 } else {
2055 Has_Data_Media = Save_Data_Media;
Ethan Yonker74db1572015-10-28 12:44:49 -05002056 gui_err("format_data_err=Unable to format to remove encryption.");
Ethan Yonker726a0202014-12-16 20:01:38 -06002057 if (Has_Data_Media && Mount(false))
2058 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -05002059 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002060 }
Ethan Yonker93382822018-11-01 15:25:31 -05002061exit:
2062 delete base_partition;
2063 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04002064}
2065
2066void TWPartition::Check_FS_Type() {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002067 const char* type;
2068 blkid_probe pr;
Dees_Troy5bf43922012-09-07 16:07:55 -04002069
Dees_Troy68cab492012-12-12 19:29:35 +00002070 if (Fstab_File_System == "yaffs2" || Fstab_File_System == "mtd" || Fstab_File_System == "bml" || Ignore_Blkid)
2071 return; // Running blkid on some mtd devices causes a massive crash or needs to be skipped
Dees_Troy5bf43922012-09-07 16:07:55 -04002072
Dees_Troy38bd7602012-09-14 13:33:53 -04002073 Find_Actual_Block_Device();
Dees_Troy8170a922012-09-18 15:40:25 -04002074 if (!Is_Present)
2075 return;
Dees_Troy51127312012-09-08 13:08:49 -04002076
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002077 pr = blkid_new_probe_from_filename(Actual_Block_Device.c_str());
2078 if (blkid_do_fullprobe(pr)) {
2079 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00002080 LOGINFO("Can't probe device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002081 return;
Dees_Troy5bf43922012-09-07 16:07:55 -04002082 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002083
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05002084 if (blkid_probe_lookup_value(pr, "TYPE", &type, NULL) < 0) {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002085 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00002086 LOGINFO("can't find filesystem on device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002087 return;
2088 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002089
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002090 Current_File_System = type;
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002091 blkid_free_probe(pr);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002092 if (fs_flags.size() > 1) {
2093 std::vector<partition_fs_flags_struct>::iterator iter;
2094 std::vector<partition_fs_flags_struct>::iterator found = fs_flags.begin();
2095
2096 for (iter = fs_flags.begin(); iter != fs_flags.end(); iter++) {
2097 if (iter->File_System == Current_File_System) {
2098 found = iter;
2099 break;
2100 }
2101 }
2102 // If we don't find a match, we default the flags to the first set of flags that we received from the fstab
2103 if (Mount_Flags != found->Mount_Flags || Mount_Options != found->Mount_Options) {
2104 Mount_Flags = found->Mount_Flags;
2105 Mount_Options = found->Mount_Options;
2106 LOGINFO("Mount_Flags: %i, Mount_Options: %s\n", Mount_Flags, Mount_Options.c_str());
2107 }
2108 }
Dees_Troy51a0e822012-09-05 15:24:24 -04002109}
2110
dianlujitao4879b372018-12-03 18:45:47 +08002111bool TWPartition::Wipe_EXTFS(string File_System) {
bigbiffa2bd7b72020-05-07 21:45:34 -04002112 if (!UnMount(true))
2113 return false;
2114
dianlujitao4879b372018-12-03 18:45:47 +08002115#if PLATFORM_SDK_VERSION < 28
2116 if (!TWFunc::Path_Exists("/sbin/mke2fs"))
2117#else
2118 if (!TWFunc::Path_Exists("/sbin/mke2fs") || !TWFunc::Path_Exists("/sbin/e2fsdroid"))
2119#endif
Dees_Troy38bd7602012-09-14 13:33:53 -04002120 return Wipe_RMRF();
2121
dianlujitao4879b372018-12-03 18:45:47 +08002122 int ret;
2123 bool NeedPreserveFooter = true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002124
Ethan Yonker25f20c12014-10-14 09:04:43 -05002125 Find_Actual_Block_Device();
2126 if (!Is_Present) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002127 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2128 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Ethan Yonker25f20c12014-10-14 09:04:43 -05002129 return false;
2130 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002131 if (!UnMount(true))
2132 return false;
2133
dianlujitao4879b372018-12-03 18:45:47 +08002134 /**
2135 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2136 * so there's no need to preserve footer.
2137 */
2138 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2139 Crypto_Key_Location != "footer") {
2140 NeedPreserveFooter = false;
2141 }
2142
2143 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2144 if (!dev_sz)
2145 return false;
2146
2147 if (NeedPreserveFooter)
2148 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2149
Dees Troy9a4d7402019-03-21 14:17:28 -04002150 char dout[16];
2151 sprintf(dout, "%llu", dev_sz / 4096);
2152
2153 //string size_str =to_string(dev_sz / 4096);
2154 string size_str = dout;
dianlujitao4879b372018-12-03 18:45:47 +08002155 string Command;
2156
2157 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mke2fs"));
2158
2159 // Execute mke2fs to create empty ext4 filesystem
2160 Command = "mke2fs -t " + File_System + " -b 4096 " + Actual_Block_Device + " " + size_str;
2161 LOGINFO("mke2fs command: %s\n", Command.c_str());
2162 ret = TWFunc::Exec_Cmd(Command);
2163 if (ret) {
2164 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2165 return false;
2166 }
2167
2168 if (TWFunc::Path_Exists("/sbin/e2fsdroid")) {
dianlujitao3cf05a52019-05-15 15:33:27 +08002169 const string& File_Contexts_Entry = (Mount_Point == "/system_root" ? "/" : Mount_Point);
2170 char *secontext = NULL;
2171 if (!selinux_handle || selabel_lookup(selinux_handle, &secontext, File_Contexts_Entry.c_str(), S_IFDIR) < 0) {
2172 LOGINFO("Cannot lookup security context for '%s'\n", Mount_Point.c_str());
2173 } else {
2174 // Execute e2fsdroid to initialize selinux context
2175 Command = "e2fsdroid -e -S /file_contexts -a " + File_Contexts_Entry + " " + Actual_Block_Device;
2176 LOGINFO("e2fsdroid command: %s\n", Command.c_str());
2177 ret = TWFunc::Exec_Cmd(Command);
2178 if (ret) {
2179 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2180 return false;
2181 }
dianlujitao4879b372018-12-03 18:45:47 +08002182 }
2183 } else {
2184 LOGINFO("e2fsdroid not present\n");
2185 }
2186
2187 if (NeedPreserveFooter)
2188 Wipe_Crypto_Key();
2189 Current_File_System = File_System;
2190 Recreate_AndSec_Folder();
2191 gui_msg("done=Done.");
2192 return true;
2193}
2194
2195bool TWPartition::Wipe_EXT4() {
2196#ifdef USE_EXT4
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002197 int ret;
dianlujitao4879b372018-12-03 18:45:47 +08002198 bool NeedPreserveFooter = true;
2199
2200 Find_Actual_Block_Device();
2201 if (!Is_Present) {
2202 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2203 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2204 return false;
2205 }
2206 if (!UnMount(true))
2207 return false;
2208
2209 /**
2210 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2211 * so there's no need to preserve footer.
2212 */
2213 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2214 Crypto_Key_Location != "footer") {
2215 NeedPreserveFooter = false;
2216 }
2217
2218 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2219 if (!dev_sz)
2220 return false;
2221
2222 if (NeedPreserveFooter)
2223 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2224
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002225 char *secontext = NULL;
2226
Greg Wallace4b44fef2015-12-29 15:33:24 -05002227 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("make_ext4fs"));
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002228
Dees Troy99c8dbf2014-03-10 16:53:58 +00002229 if (!selinux_handle || selabel_lookup(selinux_handle, &secontext, Mount_Point.c_str(), S_IFDIR) < 0) {
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002230 LOGINFO("Cannot lookup security context for '%s'\n", Mount_Point.c_str());
dianlujitao4879b372018-12-03 18:45:47 +08002231 ret = make_ext4fs(Actual_Block_Device.c_str(), dev_sz, Mount_Point.c_str(), NULL);
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002232 } else {
dianlujitao4879b372018-12-03 18:45:47 +08002233 ret = make_ext4fs(Actual_Block_Device.c_str(), dev_sz, Mount_Point.c_str(), selinux_handle);
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002234 }
2235 if (ret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002236 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troya95f55c2013-08-17 13:14:43 +00002237 return false;
2238 } else {
dianlujitao4879b372018-12-03 18:45:47 +08002239 if (NeedPreserveFooter)
2240 Wipe_Crypto_Key();
bigbiff bigbiffc49d7062013-10-11 20:28:00 -04002241 string sedir = Mount_Point + "/lost+found";
2242 PartitionManager.Mount_By_Path(sedir.c_str(), true);
2243 rmdir(sedir.c_str());
2244 mkdir(sedir.c_str(), S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP);
Dees_Troya95f55c2013-08-17 13:14:43 +00002245 return true;
2246 }
2247#else
dianlujitao4879b372018-12-03 18:45:47 +08002248 return Wipe_EXTFS("ext4");
Dees_Troya95f55c2013-08-17 13:14:43 +00002249#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002250}
2251
2252bool TWPartition::Wipe_FAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002253 string command;
bigbiffa2bd7b72020-05-07 21:45:34 -04002254 if (!UnMount(true))
2255 return false;
Dees_Troy38bd7602012-09-14 13:33:53 -04002256
Matt Mower18794c82015-11-11 16:22:45 -06002257 if (TWFunc::Path_Exists("/sbin/mkfs.fat")) {
Greg Wallace4b44fef2015-12-29 15:33:24 -05002258 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkfs.fat"));
Dees_Troy38bd7602012-09-14 13:33:53 -04002259 Find_Actual_Block_Device();
Matt Mower18794c82015-11-11 16:22:45 -06002260 command = "mkfs.fat " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02002261 if (TWFunc::Exec_Cmd(command) == 0) {
Gary Pecke8bc5d72012-12-21 06:45:25 -08002262 Current_File_System = "vfat";
Dees_Troye58d5262012-09-21 12:27:57 -04002263 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002264 gui_msg("done=Done.");
Dees_Troy38bd7602012-09-14 13:33:53 -04002265 return true;
2266 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002267 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troy38bd7602012-09-14 13:33:53 -04002268 return false;
2269 }
2270 return true;
2271 }
2272 else
2273 return Wipe_RMRF();
2274
2275 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002276}
2277
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002278bool TWPartition::Wipe_EXFAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002279 string command;
bigbiffa2bd7b72020-05-07 21:45:34 -04002280 if (!UnMount(true))
2281 return false;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002282
2283 if (TWFunc::Path_Exists("/sbin/mkexfatfs")) {
Greg Wallace4b44fef2015-12-29 15:33:24 -05002284 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkexfatfs"));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002285 Find_Actual_Block_Device();
2286 command = "mkexfatfs " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02002287 if (TWFunc::Exec_Cmd(command) == 0) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002288 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002289 gui_msg("done=Done.");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002290 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));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002293 return false;
2294 }
2295 return true;
2296 }
2297 return false;
2298}
2299
Dees_Troy38bd7602012-09-14 13:33:53 -04002300bool TWPartition::Wipe_MTD() {
2301 if (!UnMount(true))
2302 return false;
2303
Greg Wallace4b44fef2015-12-29 15:33:24 -05002304 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("MTD"));
Dees_Troy38bd7602012-09-14 13:33:53 -04002305
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002306 mtd_scan_partitions();
2307 const MtdPartition* mtd = mtd_find_partition_by_name(MTD_Name.c_str());
2308 if (mtd == NULL) {
2309 LOGERR("No mtd partition named '%s'", MTD_Name.c_str());
2310 return false;
2311 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002312
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002313 MtdWriteContext* ctx = mtd_write_partition(mtd);
2314 if (ctx == NULL) {
2315 LOGERR("Can't write '%s', failed to format.", MTD_Name.c_str());
2316 return false;
2317 }
2318 if (mtd_erase_blocks(ctx, -1) == -1) {
2319 mtd_write_close(ctx);
2320 LOGERR("Failed to format '%s'", MTD_Name.c_str());
2321 return false;
2322 }
2323 if (mtd_write_close(ctx) != 0) {
2324 LOGERR("Failed to close '%s'", MTD_Name.c_str());
2325 return false;
2326 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08002327 Current_File_System = "yaffs2";
Dees_Troye58d5262012-09-21 12:27:57 -04002328 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002329 gui_msg("done=Done.");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002330 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002331}
2332
2333bool TWPartition::Wipe_RMRF() {
Dees_Troy38bd7602012-09-14 13:33:53 -04002334 if (!Mount(true))
2335 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002336 // This is the only wipe that leaves the partition mounted, so we
2337 // must manually remove the partition from MTP if it is a storage
2338 // partition.
2339 if (Is_Storage)
2340 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04002341
Ethan Yonker74db1572015-10-28 12:44:49 -05002342 gui_msg(Msg("remove_all=Removing all files under '{1}'")(Mount_Point));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002343 TWFunc::removeDir(Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04002344 Recreate_AndSec_Folder();
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002345 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002346}
2347
Dees_Troye5017042013-08-29 16:38:55 +00002348bool TWPartition::Wipe_F2FS() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002349 string command;
bigbiffa2bd7b72020-05-07 21:45:34 -04002350 if (!UnMount(true))
2351 return false;
Dees_Troye5017042013-08-29 16:38:55 +00002352
2353 if (TWFunc::Path_Exists("/sbin/mkfs.f2fs")) {
dianlujitao4879b372018-12-03 18:45:47 +08002354 bool NeedPreserveFooter = true;
2355
2356 Find_Actual_Block_Device();
2357 if (!Is_Present) {
2358 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2359 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2360 return false;
2361 }
Dees_Troye5017042013-08-29 16:38:55 +00002362
dianlujitao4879b372018-12-03 18:45:47 +08002363 /**
2364 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2365 * so there's no need to preserve footer.
2366 */
2367 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2368 Crypto_Key_Location != "footer") {
2369 NeedPreserveFooter = false;
dhacker29a3fa75f2015-01-17 19:42:33 -05002370 }
dianlujitao4879b372018-12-03 18:45:47 +08002371
dianlujitao4879b372018-12-03 18:45:47 +08002372 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkfs.f2fs"));
Ethan Yonker7e941582019-03-22 08:18:21 -05002373 // First determine if we have the old mkfs.f2fs that uses "-r reserved_bytes"
2374 // or the new mkfs.f2fs that expects the number of sectors as the optional last argument
2375 // Note: some 7.1 trees have the old and some have the new.
2376 command = "mkfs.f2fs | grep \"reserved\" > /tmp/f2fsversiontest";
2377 TWFunc::Exec_Cmd(command, false); // no help argument so printing usage exits with an error code
2378 if (!TWFunc::Path_Exists("/tmp/f2fsversiontest")) {
2379 LOGINFO("Error determining mkfs.f2fs version\n");
2380 return false;
2381 }
2382 if (TWFunc::Get_File_Size("/tmp/f2fsversiontest") <= 0) {
2383 LOGINFO("Using newer mkfs.f2fs\n");
2384 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2385 if (!dev_sz)
2386 return false;
2387
2388 if (NeedPreserveFooter)
2389 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2390
2391 char dev_sz_str[48];
2392 sprintf(dev_sz_str, "%llu", (dev_sz / 4096));
2393 command = "mkfs.f2fs -d1 -f -O encrypt -O quota -O verity -w 4096 " + Actual_Block_Device + " " + dev_sz_str;
2394 if (TWFunc::Path_Exists("/sbin/sload.f2fs")) {
2395 command += " && sload.f2fs -t /data " + Actual_Block_Device;
2396 }
2397 } else {
2398 LOGINFO("Using older mkfs.f2fs\n");
2399 command = "mkfs.f2fs -t 0";
2400 if (NeedPreserveFooter) {
2401 // Only use length if we're not decrypted
2402 char len[32];
2403 int mod_length = Length;
2404 if (Length < 0)
2405 mod_length *= -1;
2406 sprintf(len, "%i", mod_length);
2407 command += " -r ";
2408 command += len;
2409 }
2410 command += " " + Actual_Block_Device;
dianlujitao4879b372018-12-03 18:45:47 +08002411 }
2412 LOGINFO("mkfs.f2fs command: %s\n", command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002413 if (TWFunc::Exec_Cmd(command) == 0) {
dianlujitao4879b372018-12-03 18:45:47 +08002414 if (NeedPreserveFooter)
2415 Wipe_Crypto_Key();
Dees_Troye5017042013-08-29 16:38:55 +00002416 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002417 gui_msg("done=Done.");
Dees_Troye5017042013-08-29 16:38:55 +00002418 return true;
2419 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002420 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troye5017042013-08-29 16:38:55 +00002421 return false;
2422 }
2423 return true;
2424 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002425 LOGINFO("mkfs.f2fs binary not found, using rm -rf to wipe.\n");
Dees_Troye5017042013-08-29 16:38:55 +00002426 return Wipe_RMRF();
2427 }
2428 return false;
2429}
2430
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002431bool TWPartition::Wipe_NTFS() {
2432 string command;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002433 string Ntfsmake_Binary;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002434
bigbiffa2bd7b72020-05-07 21:45:34 -04002435 if (!UnMount(true))
2436 return false;
2437
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002438 if (TWFunc::Path_Exists("/sbin/mkntfs"))
2439 Ntfsmake_Binary = "mkntfs";
2440 else if (TWFunc::Path_Exists("/sbin/mkfs.ntfs"))
2441 Ntfsmake_Binary = "mkfs.ntfs";
2442 else
2443 return false;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002444
Greg Wallace4b44fef2015-12-29 15:33:24 -05002445 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)(Ntfsmake_Binary));
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002446 Find_Actual_Block_Device();
2447 command = "/sbin/" + Ntfsmake_Binary + " " + Actual_Block_Device;
2448 if (TWFunc::Exec_Cmd(command) == 0) {
2449 Recreate_AndSec_Folder();
2450 gui_msg("done=Done.");
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002451 return true;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002452 } else {
2453 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2454 return false;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002455 }
2456 return false;
2457}
2458
Dees_Troy51a0e822012-09-05 15:24:24 -04002459bool TWPartition::Wipe_Data_Without_Wiping_Media() {
Ethan Yonker83e82572014-04-04 10:59:28 -05002460#ifdef TW_OEM_BUILD
2461 // In an OEM Build we want to do a full format
2462 return Wipe_Encryption();
2463#else
Ethan Yonker66a19492015-12-10 10:19:45 -06002464 bool ret = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04002465
Dees_Troy38bd7602012-09-14 13:33:53 -04002466 if (!Mount(true))
2467 return false;
Ethan Yonker74db1572015-10-28 12:44:49 -05002468 gui_msg("wiping_data=Wiping data without wiping /data/media ...");
Ethan Yonker66a19492015-12-10 10:19:45 -06002469 ret = Wipe_Data_Without_Wiping_Media_Func(Mount_Point + "/");
2470 if (ret)
2471 gui_msg("done=Done.");
2472 return ret;
2473#endif // ifdef TW_OEM_BUILD
2474}
2475
bigbiffa2bd7b72020-05-07 21:45:34 -04002476bool TWPartition::Recreate_AB_Cache_Dir(const ext4_encryption_policy &policy) {
bigbifff62d2492020-05-20 10:15:34 -04002477#ifdef TW_INCLUDE_FBE
bigbiffa2bd7b72020-05-07 21:45:34 -04002478 struct passwd pd;
2479 struct passwd *pwdptr = &pd;
2480 struct passwd *tempPd;
2481 char pwdBuf[512];
2482 int uid = 0, gid = 0;
2483
2484 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
2485 LOGERR("unable to get system user id\n");
2486 return false;
2487 } else {
2488 struct group grp;
2489 struct group *grpptr = &grp;
2490 struct group *tempGrp;
2491 char grpBuf[512];
2492
2493 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
2494 LOGERR("unable to get cache group id\n");
2495 return false;
2496 } else {
2497 uid = pd.pw_uid;
2498 gid = grp.gr_gid;
2499
2500 if (!TWFunc::Create_Dir_Recursive(AB_CACHE_DIR, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
2501 LOGERR("Unable to recreate %s\n", AB_CACHE_DIR);
2502 return false;
2503 }
2504 if (setfilecon(AB_CACHE_DIR, "u:object_r:cache_file:s0") != 0) {
2505 LOGERR("Unable to set contexts for %s\n", AB_CACHE_DIR);
2506 return false;
2507 }
2508 char policy_hex[EXT4_KEY_DESCRIPTOR_SIZE_HEX];
2509 policy_to_hex(policy.master_key_descriptor, policy_hex);
2510 LOGINFO("setting policy for %s: %s\n", policy_hex, AB_CACHE_DIR);
2511 if (sizeof(policy.master_key_descriptor) > 0) {
2512 if (!TWFunc::Set_Encryption_Policy(AB_CACHE_DIR, policy)) {
2513 LOGERR("Unable to set encryption policy for %s\n", AB_CACHE_DIR);
2514 LOGINFO("Removing %s\n", AB_CACHE_DIR);
2515 int ret = TWFunc::removeDir(AB_CACHE_DIR, true);
2516 if (ret == -1) {
2517 LOGERR("Unable to remove %s\n", AB_CACHE_DIR);
2518 }
2519 return false;
2520 }
2521 } else {
2522 LOGERR("Not setting empty policy to %s\n", AB_CACHE_DIR);
2523 return false;
2524 }
2525 }
2526 }
bigbifff62d2492020-05-20 10:15:34 -04002527#endif
bigbiffa2bd7b72020-05-07 21:45:34 -04002528 return true;
2529}
2530
Ethan Yonker66a19492015-12-10 10:19:45 -06002531bool TWPartition::Wipe_Data_Without_Wiping_Media_Func(const string& parent __unused) {
2532 string dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04002533
2534 DIR* d;
Ethan Yonker66a19492015-12-10 10:19:45 -06002535 d = opendir(parent.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +00002536 if (d != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04002537 struct dirent* de;
2538 while ((de = readdir(d)) != NULL) {
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05002539 if (strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0) continue;
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05002540
Ethan Yonker66a19492015-12-10 10:19:45 -06002541 dir = parent;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002542 dir.append(de->d_name);
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002543 if (wipe_exclusions.check_skip_dirs(dir)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002544 LOGINFO("skipped '%s'\n", dir.c_str());
2545 continue;
2546 }
Dees_Troyce675462013-01-09 19:48:21 +00002547 if (de->d_type == DT_DIR) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002548 dir.append("/");
2549 if (!Wipe_Data_Without_Wiping_Media_Func(dir)) {
2550 closedir(d);
2551 return false;
2552 }
2553 rmdir(dir.c_str());
bigbiff bigbiff98f1f902013-01-19 18:46:13 -05002554 } 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 +03002555 if (unlink(dir.c_str()) != 0)
Ethan Yonker79f88bd2016-12-09 14:52:12 -06002556 LOGINFO("Unable to unlink '%s': %s\n", dir.c_str(), strerror(errno));
Dees_Troyce675462013-01-09 19:48:21 +00002557 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002558 }
2559 closedir(d);
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05002560
Dees_Troy16b74352012-11-14 22:27:31 +00002561 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -04002562 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002563 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy16b74352012-11-14 22:27:31 +00002564 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002565}
2566
dianlujitao4879b372018-12-03 18:45:47 +08002567void TWPartition::Wipe_Crypto_Key() {
2568 Find_Actual_Block_Device();
2569 if (Crypto_Key_Location.empty())
2570 return;
2571 else if (Crypto_Key_Location == "footer") {
2572 int fd = open(Actual_Block_Device.c_str(), O_RDWR);
2573 if (fd < 0) {
2574 gui_print_color("warning", "Unable to open '%s' to wipe crypto key\n", Actual_Block_Device.c_str());
2575 return;
2576 }
2577
2578 unsigned int block_count;
2579 if ((ioctl(fd, BLKGETSIZE, &block_count)) == -1) {
2580 gui_print_color("warning", "Unable to get block size for wiping crypto footer.\n");
2581 } else {
2582 int newlen = Length < 0 ? -Length : CRYPT_FOOTER_OFFSET;
2583 off64_t offset = ((off64_t)block_count * 512) - newlen;
2584 if (lseek64(fd, offset, SEEK_SET) == -1) {
2585 gui_print_color("warning", "Unable to lseek64 for wiping crypto footer.\n");
2586 } else {
2587 void* buffer = malloc(newlen);
2588 if (!buffer) {
2589 gui_print_color("warning", "Failed to malloc for wiping crypto footer.\n");
2590 } else {
2591 memset(buffer, 0, newlen);
2592 int ret = write(fd, buffer, newlen);
2593 if (ret != newlen) {
2594 gui_print_color("warning", "Failed to wipe crypto footer.\n");
2595 } else {
2596 LOGINFO("Successfully wiped crypto footer.\n");
2597 }
2598 free(buffer);
2599 }
2600 }
2601 }
2602 close(fd);
2603 } else {
2604 if (TWFunc::IOCTL_Get_Block_Size(Crypto_Key_Location.c_str()) >= 16384LLU) {
2605 string Command = "dd of='" + Crypto_Key_Location + "' if=/dev/zero bs=16384 count=1";
2606 TWFunc::Exec_Cmd(Command);
2607 } else {
2608 LOGINFO("Crypto key location reports size < 16K so not wiping crypto footer.\n");
2609 }
2610 }
2611}
2612
bigbiffce8f83c2015-12-12 18:30:21 -05002613bool TWPartition::Backup_Tar(PartitionSettings *part_settings, pid_t *tar_fork_pid) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002614 string Full_FileName;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002615 twrpTar tar;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -05002616
Dees_Troy43d8b002012-09-17 16:00:01 -04002617 if (!Mount(true))
2618 return false;
2619
Ian Macdonalda3b25a32019-06-16 22:39:14 +02002620 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Backup_Display_Name, gui_parse_text("{@backing}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002621 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002622
Ethan Yonker472f5062016-02-25 13:47:30 -06002623 DataManager::GetValue(TW_USE_COMPRESSION_VAR, tar.use_compression);
Matt Mowerbb81e5d2014-03-20 18:05:41 -05002624
Dees_Troy83bd4832013-05-04 12:39:56 +00002625#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
Ethan Yonker472f5062016-02-25 13:47:30 -06002626 if (Can_Encrypt_Backup) {
2627 DataManager::GetValue("tw_encrypt_backup", tar.use_encryption);
2628 if (tar.use_encryption) {
2629 if (Use_Userdata_Encryption)
2630 tar.userdata_encryption = tar.use_encryption;
2631 string Password;
2632 DataManager::GetValue("tw_backup_password", Password);
2633 tar.setpassword(Password);
2634 } else {
2635 tar.use_encryption = 0;
2636 }
Dees_Troy83bd4832013-05-04 12:39:56 +00002637 }
2638#endif
Dees_Troy43d8b002012-09-17 16:00:01 -04002639
Ethan Yonker472f5062016-02-25 13:47:30 -06002640 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002641 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker01f4e032017-02-03 15:30:52 -06002642 if (Has_Data_Media)
2643 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 -04002644 if (Mount_Point == "/data" && DataManager::GetIntValue(TW_IS_FBE)) {
2645 std::vector<users_struct>::iterator iter;
2646 std::vector<users_struct>* userList = PartitionManager.Get_Users_List();
2647 for (iter = userList->begin(); iter != userList->end(); iter++) {
2648 if (!(*iter).isDecrypted && (*iter).userId != "0") {
2649 gui_msg(Msg(msg::kWarning,
2650 "backup_storage_undecrypt_warning=Backup will not include some files from user {1} "
2651 "because the user is not decrypted.")((*iter).userId));
2652 backup_exclusions.add_absolute_dir("/data/system_ce/" + (*iter).userId);
2653 backup_exclusions.add_absolute_dir("/data/misc_ce/" + (*iter).userId);
2654 backup_exclusions.add_absolute_dir("/data/vendor_ce/" + (*iter).userId);
2655 backup_exclusions.add_absolute_dir("/data/media/" + (*iter).userId);
2656 backup_exclusions.add_absolute_dir("/data/user/" + (*iter).userId);
2657 }
2658 }
2659 }
bigbiffce8f83c2015-12-12 18:30:21 -05002660 tar.part_settings = part_settings;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002661 tar.backup_exclusions = &backup_exclusions;
Dees Troye0a433a2013-12-02 04:10:37 +00002662 tar.setdir(Backup_Path);
2663 tar.setfn(Full_FileName);
2664 tar.setsize(Backup_Size);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002665 tar.partition_name = Backup_Name;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002666 tar.backup_folder = part_settings->Backup_Folder;
bigbiffce8f83c2015-12-12 18:30:21 -05002667 if (tar.createTarFork(tar_fork_pid) != 0)
Dees Troye0a433a2013-12-02 04:10:37 +00002668 return false;
Dees_Troy43d8b002012-09-17 16:00:01 -04002669 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002670}
2671
bigbiffce8f83c2015-12-12 18:30:21 -05002672bool TWPartition::Backup_Image(PartitionSettings *part_settings) {
2673 string Full_FileName, adb_file_name;
igoriok87e3d932013-01-31 21:03:53 +02002674
Ethan Yonker74db1572015-10-28 12:44:49 -05002675 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, gui_parse_text("{@backing}"));
2676 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002677
Ethan Yonker472f5062016-02-25 13:47:30 -06002678 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Dees_Troy43d8b002012-09-17 16:00:01 -04002679
bigbiffce8f83c2015-12-12 18:30:21 -05002680 if (part_settings->adbbackup) {
2681 Full_FileName = TW_ADB_BACKUP;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002682 adb_file_name = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002683 }
2684 else
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002685 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002686
2687 part_settings->total_restore_size = Backup_Size;
2688
2689 if (part_settings->adbbackup) {
2690 if (!twadbbu::Write_TWIMG(adb_file_name, Backup_Size))
2691 return false;
2692 }
2693
2694 if (!Raw_Read_Write(part_settings))
Ethan Yonker472f5062016-02-25 13:47:30 -06002695 return false;
2696
bigbiffce8f83c2015-12-12 18:30:21 -05002697 if (part_settings->adbbackup) {
2698 if (!twadbbu::Write_TWEOF())
2699 return false;
Dees_Troy7c2dec82012-09-26 09:49:14 -04002700 }
Dees_Troy43d8b002012-09-17 16:00:01 -04002701 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002702}
2703
bigbiffce8f83c2015-12-12 18:30:21 -05002704bool TWPartition::Raw_Read_Write(PartitionSettings *part_settings) {
2705 unsigned long long RW_Block_Size, Remain = Backup_Size;
2706 int src_fd = -1, dest_fd = -1;
2707 ssize_t bs;
Ethan Yonker472f5062016-02-25 13:47:30 -06002708 bool ret = false;
2709 void* buffer = NULL;
2710 unsigned long long backedup_size = 0;
bigbiffce8f83c2015-12-12 18:30:21 -05002711 string srcfn, destfn;
Ethan Yonker472f5062016-02-25 13:47:30 -06002712
bigbiffce8f83c2015-12-12 18:30:21 -05002713 if (part_settings->PM_Method == PM_BACKUP) {
2714 srcfn = Actual_Block_Device;
2715 if (part_settings->adbbackup)
2716 destfn = TW_ADB_BACKUP;
bigbiff bigbiff38b83c12017-12-28 19:58:52 -05002717 else {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002718 destfn = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiff bigbiff38b83c12017-12-28 19:58:52 -05002719 }
bigbiffce8f83c2015-12-12 18:30:21 -05002720 }
2721 else {
2722 destfn = Actual_Block_Device;
2723 if (part_settings->adbbackup) {
2724 srcfn = TW_ADB_RESTORE;
2725 } else {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002726 srcfn = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002727 Remain = TWFunc::Get_File_Size(srcfn);
2728 }
2729 }
Ethan Yonker472f5062016-02-25 13:47:30 -06002730
bigbiffce8f83c2015-12-12 18:30:21 -05002731 src_fd = open(srcfn.c_str(), O_RDONLY | O_LARGEFILE);
Ethan Yonker472f5062016-02-25 13:47:30 -06002732 if (src_fd < 0) {
bigbiffce8f83c2015-12-12 18:30:21 -05002733 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(srcfn.c_str())(strerror(errno)));
Ethan Yonker472f5062016-02-25 13:47:30 -06002734 return false;
2735 }
bigbiffce8f83c2015-12-12 18:30:21 -05002736
2737 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 -06002738 if (dest_fd < 0) {
bigbiffce8f83c2015-12-12 18:30:21 -05002739 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(destfn.c_str())(strerror(errno)));
Ethan Yonker472f5062016-02-25 13:47:30 -06002740 goto exit;
2741 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002742
bigbiffce8f83c2015-12-12 18:30:21 -05002743 LOGINFO("Reading '%s', writing '%s'\n", srcfn.c_str(), destfn.c_str());
2744
2745 if (part_settings->adbbackup) {
2746 RW_Block_Size = MAX_ADB_READ;
2747 bs = MAX_ADB_READ;
2748 }
2749 else {
2750 RW_Block_Size = 1048576LLU; // 1MB
2751 bs = (ssize_t)(RW_Block_Size);
2752 }
2753
Ethan Yonker472f5062016-02-25 13:47:30 -06002754 buffer = malloc((size_t)bs);
2755 if (!buffer) {
2756 LOGINFO("Raw_Read_Write failed to malloc\n");
2757 goto exit;
2758 }
bigbiffce8f83c2015-12-12 18:30:21 -05002759
2760 if (part_settings->progress)
2761 part_settings->progress->SetPartitionSize(part_settings->total_restore_size);
2762
Ethan Yonker472f5062016-02-25 13:47:30 -06002763 while (Remain > 0) {
2764 if (Remain < RW_Block_Size)
bigbiffce8f83c2015-12-12 18:30:21 -05002765 bs = (ssize_t)(Remain);
Matt Mowera8a89d12016-12-30 18:10:37 -06002766 if (read(src_fd, buffer, bs) != bs) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002767 LOGINFO("Error reading source fd (%s)\n", strerror(errno));
2768 goto exit;
2769 }
2770 if (write(dest_fd, buffer, bs) != bs) {
2771 LOGINFO("Error writing destination fd (%s)\n", strerror(errno));
2772 goto exit;
2773 }
2774 backedup_size += (unsigned long long)(bs);
Matt Mower029a82d2017-01-08 13:12:38 -06002775 Remain -= (unsigned long long)(bs);
bigbiffce8f83c2015-12-12 18:30:21 -05002776 if (part_settings->progress)
2777 part_settings->progress->UpdateSize(backedup_size);
Ethan Yonker472f5062016-02-25 13:47:30 -06002778 if (PartitionManager.Check_Backup_Cancel() != 0)
2779 goto exit;
2780 }
bigbiffce8f83c2015-12-12 18:30:21 -05002781 if (part_settings->progress)
2782 part_settings->progress->UpdateDisplayDetails(true);
Ethan Yonker472f5062016-02-25 13:47:30 -06002783 fsync(dest_fd);
nailyka083dc62016-11-11 21:41:28 +01002784
2785 if (!part_settings->adbbackup && part_settings->PM_Method == PM_BACKUP) {
2786 tw_set_default_metadata(destfn.c_str());
2787 LOGINFO("Restored default metadata for %s\n", destfn.c_str());
2788 }
2789
Ethan Yonker472f5062016-02-25 13:47:30 -06002790 ret = true;
2791exit:
2792 if (src_fd >= 0)
2793 close(src_fd);
2794 if (dest_fd >= 0)
2795 close(dest_fd);
2796 if (buffer)
2797 free(buffer);
2798 return ret;
2799}
2800
bigbiffce8f83c2015-12-12 18:30:21 -05002801bool TWPartition::Backup_Dump_Image(PartitionSettings *part_settings) {
Vojtech Bocek05534202013-09-11 08:11:56 +02002802 string Full_FileName, Command;
Dees_Troy43d8b002012-09-17 16:00:01 -04002803
Ethan Yonker74db1572015-10-28 12:44:49 -05002804 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, gui_parse_text("{@backing}"));
2805 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002806
bigbiffce8f83c2015-12-12 18:30:21 -05002807 if (part_settings->progress)
2808 part_settings->progress->SetPartitionSize(Backup_Size);
Dees_Troy43d8b002012-09-17 16:00:01 -04002809
Ethan Yonker472f5062016-02-25 13:47:30 -06002810 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002811 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Dees_Troy43d8b002012-09-17 16:00:01 -04002812
2813 Command = "dump_image " + MTD_Name + " '" + Full_FileName + "'";
bigbiffce8f83c2015-12-12 18:30:21 -05002814
Dees_Troy2673cec2013-04-02 20:22:16 +00002815 LOGINFO("Backup command: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002816 TWFunc::Exec_Cmd(Command);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06002817 tw_set_default_metadata(Full_FileName.c_str());
Dees_Troy7c2dec82012-09-26 09:49:14 -04002818 if (TWFunc::Get_File_Size(Full_FileName) == 0) {
2819 // 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 -06002820 gui_msg(Msg(msg::kError, "backup_size=Backup file size for '{1}' is 0 bytes.")(Full_FileName));
Dees_Troy7c2dec82012-09-26 09:49:14 -04002821 return false;
2822 }
bigbiffce8f83c2015-12-12 18:30:21 -05002823 if (part_settings->progress)
2824 part_settings->progress->UpdateSize(Backup_Size);
2825
Dees_Troy43d8b002012-09-17 16:00:01 -04002826 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002827}
2828
bigbiffce8f83c2015-12-12 18:30:21 -05002829unsigned long long TWPartition::Get_Restore_Size(PartitionSettings *part_settings) {
2830 if (!part_settings->adbbackup) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002831 InfoManager restore_info(part_settings->Backup_Folder + "/" + Backup_Name + ".info");
bigbiffce8f83c2015-12-12 18:30:21 -05002832 if (restore_info.LoadValues() == 0) {
2833 if (restore_info.GetValue("backup_size", Restore_Size) == 0) {
2834 LOGINFO("Read info file, restore size is %llu\n", Restore_Size);
2835 return Restore_Size;
2836 }
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002837 }
2838 }
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002839
Matt Mower029a82d2017-01-08 13:12:38 -06002840 string Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
2841 string Restore_File_System = Get_Restore_File_System(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002842
2843 if (Is_Image(Restore_File_System)) {
2844 Restore_Size = TWFunc::Get_File_Size(Full_FileName);
2845 return Restore_Size;
2846 }
2847
2848 twrpTar tar;
2849 tar.setdir(Backup_Path);
2850 tar.setfn(Full_FileName);
bigbiffce8f83c2015-12-12 18:30:21 -05002851 tar.backup_name = Full_FileName;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002852#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
2853 string Password;
2854 DataManager::GetValue("tw_restore_password", Password);
2855 if (!Password.empty())
2856 tar.setpassword(Password);
2857#endif
2858 tar.partition_name = Backup_Name;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002859 tar.backup_folder = part_settings->Backup_Folder;
bigbiffce8f83c2015-12-12 18:30:21 -05002860 tar.part_settings = part_settings;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002861 Restore_Size = tar.get_size();
2862 return Restore_Size;
2863}
2864
bigbiffce8f83c2015-12-12 18:30:21 -05002865bool TWPartition::Restore_Tar(PartitionSettings *part_settings) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002866 string Full_FileName;
Dees Troy4159aed2014-02-28 17:24:43 +00002867 bool ret = false;
bigbiffce8f83c2015-12-12 18:30:21 -05002868 string Restore_File_System = Get_Restore_File_System(part_settings);
Dees_Troy43d8b002012-09-17 16:00:01 -04002869
Dees_Troye58d5262012-09-21 12:27:57 -04002870 if (Has_Android_Secure) {
Dees_Troye58d5262012-09-21 12:27:57 -04002871 if (!Wipe_AndSec())
2872 return false;
Gary Peck43acadf2012-11-21 21:19:01 -08002873 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002874 gui_msg(Msg("wiping=Wiping {1}")(Backup_Display_Name));
Ethan Yonker5eac2222014-06-11 12:22:55 -05002875 if (Has_Data_Media && Mount_Point == "/data" && Restore_File_System != Current_File_System) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002876 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 -05002877 if (!Wipe_Data_Without_Wiping_Media())
2878 return false;
2879 } else {
2880 if (!Wipe(Restore_File_System))
2881 return false;
2882 }
Dees_Troye58d5262012-09-21 12:27:57 -04002883 }
Matt Mower3c366972015-12-25 19:28:31 -06002884 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Backup_Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002885 gui_msg(Msg("restoring=Restoring {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002886
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05002887 // Remount as read/write as needed so we can restore the backup
2888 if (!ReMount_RW(true))
Dees_Troy43d8b002012-09-17 16:00:01 -04002889 return false;
2890
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002891 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker87af5632014-02-10 11:56:35 -06002892 twrpTar tar;
bigbiffce8f83c2015-12-12 18:30:21 -05002893 tar.part_settings = part_settings;
Ethan Yonker87af5632014-02-10 11:56:35 -06002894 tar.setdir(Backup_Path);
2895 tar.setfn(Full_FileName);
2896 tar.backup_name = Backup_Name;
2897#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
2898 string Password;
2899 DataManager::GetValue("tw_restore_password", Password);
2900 if (!Password.empty())
2901 tar.setpassword(Password);
2902#endif
bigbiffce8f83c2015-12-12 18:30:21 -05002903 part_settings->progress->SetPartitionSize(Get_Restore_Size(part_settings));
2904 if (tar.extractTarFork() != 0)
Dees Troy4159aed2014-02-28 17:24:43 +00002905 ret = false;
2906 else
2907 ret = true;
2908#ifdef HAVE_CAPABILITIES
2909 // Restore capabilities to the run-as binary
Captain Throwback9d6feb52018-07-27 10:05:24 -04002910 if (Mount_Point == PartitionManager.Get_Android_Root_Path() && Mount(true) && TWFunc::Path_Exists("/system/bin/run-as")) {
Dees Troy4159aed2014-02-28 17:24:43 +00002911 struct vfs_cap_data cap_data;
2912 uint64_t capabilities = (1 << CAP_SETUID) | (1 << CAP_SETGID);
2913
2914 memset(&cap_data, 0, sizeof(cap_data));
2915 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
2916 cap_data.data[0].permitted = (uint32_t) (capabilities & 0xffffffff);
2917 cap_data.data[0].inheritable = 0;
2918 cap_data.data[1].permitted = (uint32_t) (capabilities >> 32);
2919 cap_data.data[1].inheritable = 0;
2920 if (setxattr("/system/bin/run-as", XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
2921 LOGINFO("Failed to reset capabilities of /system/bin/run-as binary.\n");
2922 } else {
2923 LOGINFO("Reset capabilities of /system/bin/run-as binary successful.\n");
2924 }
2925 }
2926#endif
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05002927 if (Mount_Read_Only || Mount_Flags & MS_RDONLY)
2928 // Remount as read only when restoration is complete
2929 ReMount(true);
2930
Dees Troy4159aed2014-02-28 17:24:43 +00002931 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04002932}
2933
bigbiffce8f83c2015-12-12 18:30:21 -05002934bool TWPartition::Restore_Image(PartitionSettings *part_settings) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06002935 string Full_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002936 string Restore_File_System = Get_Restore_File_System(part_settings);
Dees_Troy43d8b002012-09-17 16:00:01 -04002937
Matt Mower3c366972015-12-25 19:28:31 -06002938 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Backup_Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002939 gui_msg(Msg("restoring=Restoring {1}...")(Backup_Display_Name));
bigbiffce8f83c2015-12-12 18:30:21 -05002940
2941 if (part_settings->adbbackup)
2942 Full_FileName = TW_ADB_RESTORE;
2943 else
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002944 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Gary Peck15e623d2012-11-21 21:07:58 -08002945
Ethan Yonker96af84a2015-01-05 14:58:36 -06002946 if (Restore_File_System == "emmc") {
bigbiffce8f83c2015-12-12 18:30:21 -05002947 if (!part_settings->adbbackup)
2948 part_settings->total_restore_size = (uint64_t)(TWFunc::Get_File_Size(Full_FileName));
2949 if (!Raw_Read_Write(part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002950 return false;
2951 } else if (Restore_File_System == "mtd" || Restore_File_System == "bml") {
bigbiffce8f83c2015-12-12 18:30:21 -05002952 if (!Flash_Image_FI(Full_FileName, part_settings->progress))
2953 return false;
2954 }
2955
2956 if (part_settings->adbbackup) {
2957 if (!twadbbu::Write_TWEOF())
Ethan Yonker96af84a2015-01-05 14:58:36 -06002958 return false;
Gary Peck15e623d2012-11-21 21:07:58 -08002959 }
Dees_Troy43d8b002012-09-17 16:00:01 -04002960 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002961}
Dees_Troy5bf43922012-09-07 16:07:55 -04002962
2963bool TWPartition::Update_Size(bool Display_Error) {
Dees_Troy0550cfb2012-10-13 11:56:13 -04002964 bool ret = false, Was_Already_Mounted = false;
Dees_Troy51127312012-09-08 13:08:49 -04002965
Ethan Yonker1b190162016-12-05 15:25:19 -06002966 Find_Actual_Block_Device();
2967
2968 if (!Can_Be_Mounted && !Is_Encrypted) {
2969 if (TWFunc::Path_Exists(Actual_Block_Device) && Find_Partition_Size()) {
2970 Used = Size;
2971 Backup_Size = Size;
2972 return true;
2973 }
Dees_Troy5bf43922012-09-07 16:07:55 -04002974 return false;
Ethan Yonker1b190162016-12-05 15:25:19 -06002975 }
Dees_Troy5bf43922012-09-07 16:07:55 -04002976
Dees_Troy0550cfb2012-10-13 11:56:13 -04002977 Was_Already_Mounted = Is_Mounted();
Dees_Troy38bd7602012-09-14 13:33:53 -04002978 if (Removable || Is_Encrypted) {
2979 if (!Mount(false))
2980 return true;
2981 } else if (!Mount(Display_Error))
Dees_Troy5bf43922012-09-07 16:07:55 -04002982 return false;
Dees_Troy51127312012-09-08 13:08:49 -04002983
2984 ret = Get_Size_Via_statfs(Display_Error);
Dees_Troy0550cfb2012-10-13 11:56:13 -04002985 if (!ret || Size == 0) {
2986 if (!Get_Size_Via_df(Display_Error)) {
2987 if (!Was_Already_Mounted)
2988 UnMount(false);
Dees_Troy51127312012-09-08 13:08:49 -04002989 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04002990 }
2991 }
Dees_Troy51127312012-09-08 13:08:49 -04002992
Dees_Troy5bf43922012-09-07 16:07:55 -04002993 if (Has_Data_Media) {
2994 if (Mount(Display_Error)) {
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002995 Used = backup_exclusions.Get_Folder_Size(Mount_Point);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05002996 Backup_Size = Used;
2997 int bak = (int)(Used / 1048576LLU);
Dees_Troy51127312012-09-08 13:08:49 -04002998 int fre = (int)(Free / 1048576LLU);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05002999 LOGINFO("Data backup size is %iMB, free: %iMB.\n", bak, fre);
Dees_Troy0550cfb2012-10-13 11:56:13 -04003000 } else {
3001 if (!Was_Already_Mounted)
3002 UnMount(false);
Dees_Troy5bf43922012-09-07 16:07:55 -04003003 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04003004 }
Dees_Troye58d5262012-09-21 12:27:57 -04003005 } else if (Has_Android_Secure) {
3006 if (Mount(Display_Error))
Ethan Yonker3fdcda42016-11-30 12:29:37 -06003007 Backup_Size = backup_exclusions.Get_Folder_Size(Backup_Path);
Dees_Troy0550cfb2012-10-13 11:56:13 -04003008 else {
3009 if (!Was_Already_Mounted)
3010 UnMount(false);
Dees_Troye58d5262012-09-21 12:27:57 -04003011 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04003012 }
Dees_Troy5bf43922012-09-07 16:07:55 -04003013 }
Dees_Troy0550cfb2012-10-13 11:56:13 -04003014 if (!Was_Already_Mounted)
3015 UnMount(false);
Dees_Troy5bf43922012-09-07 16:07:55 -04003016 return true;
Dees_Troy51127312012-09-08 13:08:49 -04003017}
Dees_Troy38bd7602012-09-14 13:33:53 -04003018
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003019bool TWPartition::Find_Wildcard_Block_Devices(const string& Device) {
3020 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
3021 string Path = TWFunc::Get_Path(Device);
3022 string Dev = TWFunc::Get_Filename(Device);
3023 size_t wildcard_index = Dev.find("*");
3024 if (wildcard_index != string::npos)
3025 Dev = Dev.substr(0, wildcard_index);
3026 wildcard_index = Dev.size();
3027 DIR* d = opendir(Path.c_str());
3028 if (d == NULL) {
3029 LOGINFO("Error opening '%s': %s\n", Path.c_str(), strerror(errno));
3030 return false;
3031 }
3032 struct dirent* de;
3033 while ((de = readdir(d)) != NULL) {
3034 if (de->d_type != DT_BLK || strlen(de->d_name) <= wildcard_index || strncmp(de->d_name, Dev.c_str(), wildcard_index) != 0)
3035 continue;
3036
3037 string item = Path + "/";
3038 item.append(de->d_name);
3039 if (PartitionManager.Find_Partition_By_Block_Device(item))
3040 continue;
3041 TWPartition *part = new TWPartition;
3042 char buffer[MAX_FSTAB_LINE_LENGTH];
3043 sprintf(buffer, "%s %s-%i auto defaults defaults", item.c_str(), Mount_Point.c_str(), ++mount_point_index);
Chaosmasterf6e42ce2020-01-27 00:17:04 +01003044 part->Process_Fstab_Line(buffer, false, NULL, false);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003045 char display[MAX_FSTAB_LINE_LENGTH];
3046 sprintf(display, "%s %i", Storage_Name.c_str(), mount_point_index);
3047 part->Storage_Name = display;
3048 part->Display_Name = display;
3049 part->Primary_Block_Device = item;
3050 part->Wildcard_Block_Device = false;
3051 part->Is_SubPartition = true;
3052 part->SubPartition_Of = Mount_Point;
3053 part->Is_Storage = Is_Storage;
3054 part->Can_Be_Mounted = true;
3055 part->Removable = true;
3056 part->Can_Be_Wiped = Can_Be_Wiped;
3057 part->Wipe_Available_in_GUI = Wipe_Available_in_GUI;
3058 part->Find_Actual_Block_Device();
3059 part->Update_Size(false);
3060 Has_SubPartition = true;
3061 PartitionManager.Output_Partition(part);
3062 PartitionManager.Add_Partition(part);
3063 }
3064 closedir(d);
3065 return (mount_point_index > 0);
3066}
3067
Dees_Troy38bd7602012-09-14 13:33:53 -04003068void TWPartition::Find_Actual_Block_Device(void) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003069 if (!Sysfs_Entry.empty() && Primary_Block_Device.empty() && Decrypted_Block_Device.empty()) {
3070 /* Sysfs_Entry.empty() indicates if this is a sysfs entry that begins with /device/
3071 * If we have a syfs entry then we are looking for this device from a uevent add.
3072 * The uevent add will set the primary block device based on the data we receive from
3073 * after checking for adopted storage. If the device ends up being adopted, then the
3074 * decrypted block device will be set instead of the primary block device. */
3075 Is_Present = false;
3076 return;
3077 }
3078 if (Wildcard_Block_Device && !Is_Adopted_Storage) {
3079 Is_Present = false;
3080 Actual_Block_Device = "";
3081 Can_Be_Mounted = false;
3082 if (!Find_Wildcard_Block_Devices(Primary_Block_Device)) {
3083 string Dev = Primary_Block_Device.substr(0, Primary_Block_Device.find("*"));
3084 if (TWFunc::Path_Exists(Dev)) {
3085 Is_Present = true;
3086 Can_Be_Mounted = true;
3087 Actual_Block_Device = Dev;
3088 }
3089 }
3090 return;
3091 } else if (Is_Decrypted && !Decrypted_Block_Device.empty()) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003092 Actual_Block_Device = Decrypted_Block_Device;
Ethan Yonker1b190162016-12-05 15:25:19 -06003093 if (TWFunc::Path_Exists(Decrypted_Block_Device)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003094 Is_Present = true;
Ethan Yonker1b190162016-12-05 15:25:19 -06003095 return;
3096 }
3097 } else if (SlotSelect && TWFunc::Path_Exists(Primary_Block_Device + PartitionManager.Get_Active_Slot_Suffix())) {
3098 Actual_Block_Device = Primary_Block_Device + PartitionManager.Get_Active_Slot_Suffix();
3099 unlink(Primary_Block_Device.c_str());
3100 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
3101 Is_Present = true;
3102 return;
Dees_Troy43d8b002012-09-17 16:00:01 -04003103 } else if (TWFunc::Path_Exists(Primary_Block_Device)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003104 Is_Present = true;
3105 Actual_Block_Device = Primary_Block_Device;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003106 return;
3107 }
Ethan Yonker1b190162016-12-05 15:25:19 -06003108 if (!Alternate_Block_Device.empty() && TWFunc::Path_Exists(Alternate_Block_Device)) {
Dees_Troy3f04d032012-10-07 18:20:09 -04003109 Actual_Block_Device = Alternate_Block_Device;
Dees_Troy38bd7602012-09-14 13:33:53 -04003110 Is_Present = true;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003111 } else {
Dees_Troy38bd7602012-09-14 13:33:53 -04003112 Is_Present = false;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003113 }
Dees_Troy38bd7602012-09-14 13:33:53 -04003114}
3115
3116void TWPartition::Recreate_Media_Folder(void) {
3117 string Command;
Ethan Yonker66a19492015-12-10 10:19:45 -06003118 string Media_Path = Mount_Point + "/media";
Dees_Troy38bd7602012-09-14 13:33:53 -04003119
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06003120 if (Is_FBE) {
3121 LOGINFO("Not recreating media folder on FBE\n");
3122 return;
3123 }
Dees_Troy38bd7602012-09-14 13:33:53 -04003124 if (!Mount(true)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003125 gui_msg(Msg(msg::kError, "recreate_folder_err=Unable to recreate {1} folder.")(Media_Path));
3126 } else if (!TWFunc::Path_Exists(Media_Path)) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003127 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Ethan Yonker66a19492015-12-10 10:19:45 -06003128 LOGINFO("Recreating %s folder.\n", Media_Path.c_str());
3129 mkdir(Media_Path.c_str(), 0770);
xiaolu9416f4f2015-06-04 08:22:23 +08003130 string Internal_path = DataManager::GetStrValue("tw_internal_path");
3131 if (!Internal_path.empty()) {
3132 LOGINFO("Recreating %s folder.\n", Internal_path.c_str());
3133 mkdir(Internal_path.c_str(), 0770);
3134 }
3135#ifdef TW_INTERNAL_STORAGE_PATH
3136 mkdir(EXPAND(TW_INTERNAL_STORAGE_PATH), 0770);
3137#endif
Matt Mower87413642017-01-17 21:14:46 -06003138
thata3d31fb2014-12-21 22:27:40 +01003139 // Afterwards, we will try to set the
3140 // default metadata that we were hopefully able to get during
3141 // early boot.
Ethan Yonker66a19492015-12-10 10:19:45 -06003142 tw_set_default_metadata(Media_Path.c_str());
xiaolu9416f4f2015-06-04 08:22:23 +08003143 if (!Internal_path.empty())
3144 tw_set_default_metadata(Internal_path.c_str());
Matt Mower87413642017-01-17 21:14:46 -06003145
Ethan Yonker5eac2222014-06-11 12:22:55 -05003146 // Toggle mount to ensure that "internal sdcard" gets mounted
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003147 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Ethan Yonker5eac2222014-06-11 12:22:55 -05003148 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Dees_Troy38bd7602012-09-14 13:33:53 -04003149 }
Dees_Troy43d8b002012-09-17 16:00:01 -04003150}
Dees_Troye58d5262012-09-21 12:27:57 -04003151
3152void TWPartition::Recreate_AndSec_Folder(void) {
Dees_Troye58d5262012-09-21 12:27:57 -04003153 if (!Has_Android_Secure)
3154 return;
Dees_Troy2673cec2013-04-02 20:22:16 +00003155 LOGINFO("Creating %s: %s\n", Backup_Display_Name.c_str(), Symlink_Path.c_str());
Dees_Troye58d5262012-09-21 12:27:57 -04003156 if (!Mount(true)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003157 gui_msg(Msg(msg::kError, "recreate_folder_err=Unable to recreate {1} folder.")(Backup_Name));
Dees_Troye58d5262012-09-21 12:27:57 -04003158 } else if (!TWFunc::Path_Exists(Symlink_Path)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00003159 LOGINFO("Recreating %s folder.\n", Backup_Name.c_str());
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003160 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05003161 mkdir(Symlink_Path.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003162 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04003163 }
3164}
bigbiff7cb4c332014-11-26 20:36:07 -05003165
3166uint64_t TWPartition::Get_Max_FileSize() {
3167 uint64_t maxFileSize = 0;
3168 const uint64_t constGB = (uint64_t) 1024 * 1024 * 1024;
3169 const uint64_t constTB = (uint64_t) constGB * 1024;
3170 const uint64_t constPB = (uint64_t) constTB * 1024;
bigbiff0c532032014-12-21 13:41:26 -05003171 if (Current_File_System == "ext4")
3172 maxFileSize = 16 * constTB; //16 TB
3173 else if (Current_File_System == "vfat")
3174 maxFileSize = 4 * constGB; //4 GB
3175 else if (Current_File_System == "ntfs")
3176 maxFileSize = 256 * constTB; //256 TB
3177 else if (Current_File_System == "exfat")
3178 maxFileSize = 16 * constPB; //16 PB
3179 else if (Current_File_System == "ext3")
3180 maxFileSize = 2 * constTB; //2 TB
3181 else if (Current_File_System == "f2fs")
3182 maxFileSize = 3.94 * constTB; //3.94 TB
bigbiff7cb4c332014-11-26 20:36:07 -05003183 else
3184 maxFileSize = 100000000L;
3185 return maxFileSize - 1;
3186}
3187
bigbiffce8f83c2015-12-12 18:30:21 -05003188bool TWPartition::Flash_Image(PartitionSettings *part_settings) {
3189 string Restore_File_System, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003190
Ethan Yonkere080c1f2016-09-19 13:50:25 -05003191 full_filename = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003192
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05003193 LOGINFO("Image filename is: %s\n", Backup_FileName.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05003194
3195 if (Backup_Method == BM_FILES) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06003196 LOGERR("Cannot flash images to file systems\n");
3197 return false;
3198 } else if (!Can_Flash_Img) {
3199 LOGERR("Cannot flash images to partitions %s\n", Display_Name.c_str());
3200 return false;
3201 } else {
3202 if (!Find_Partition_Size()) {
3203 LOGERR("Unable to find partition size for '%s'\n", Mount_Point.c_str());
3204 return false;
3205 }
bigbiffce8f83c2015-12-12 18:30:21 -05003206 unsigned long long image_size = TWFunc::Get_File_Size(full_filename);
Ethan Yonker96af84a2015-01-05 14:58:36 -06003207 if (image_size > Size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003208 LOGINFO("Size (%llu bytes) of image '%s' is larger than target device '%s' (%llu bytes)\n",
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05003209 image_size, Backup_FileName.c_str(), Actual_Block_Device.c_str(), Size);
Ethan Yonker74db1572015-10-28 12:44:49 -05003210 gui_err("img_size_err=Size of image is larger than target device");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003211 return false;
3212 }
bigbiffce8f83c2015-12-12 18:30:21 -05003213 if (Backup_Method == BM_DD) {
3214 if (!part_settings->adbbackup) {
3215 if (Is_Sparse_Image(full_filename)) {
3216 return Flash_Sparse_Image(full_filename);
3217 }
Ethan Yonker472f5062016-02-25 13:47:30 -06003218 }
bigbiffce8f83c2015-12-12 18:30:21 -05003219 return Raw_Read_Write(part_settings);
3220 } else if (Backup_Method == BM_FLASH_UTILS) {
3221 return Flash_Image_FI(full_filename, NULL);
Ethan Yonker472f5062016-02-25 13:47:30 -06003222 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06003223 }
3224
3225 LOGERR("Unknown flash method for '%s'\n", Mount_Point.c_str());
3226 return false;
3227}
3228
Ethan Yonker472f5062016-02-25 13:47:30 -06003229bool TWPartition::Is_Sparse_Image(const string& Filename) {
HashBanged974bb2016-01-30 14:20:09 -05003230 uint32_t magic = 0;
3231 int fd = open(Filename.c_str(), O_RDONLY);
3232 if (fd < 0) {
3233 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Filename)(strerror(errno)));
3234 return false;
3235 }
bigbiffce8f83c2015-12-12 18:30:21 -05003236
HashBanged974bb2016-01-30 14:20:09 -05003237 if (read(fd, &magic, sizeof(magic)) != sizeof(magic)) {
3238 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Filename)(strerror(errno)));
3239 close(fd);
3240 return false;
3241 }
3242 close(fd);
Ethan Yonker472f5062016-02-25 13:47:30 -06003243 if (magic == SPARSE_HEADER_MAGIC)
3244 return true;
3245 return false;
3246}
3247
3248bool TWPartition::Flash_Sparse_Image(const string& Filename) {
3249 string Command;
3250
3251 gui_msg(Msg("flashing=Flashing {1}...")(Display_Name));
3252
3253 Command = "simg2img '" + Filename + "' '" + Actual_Block_Device + "'";
Ethan Yonker96af84a2015-01-05 14:58:36 -06003254 LOGINFO("Flash command: '%s'\n", Command.c_str());
3255 TWFunc::Exec_Cmd(Command);
3256 return true;
3257}
3258
Ethan Yonker472f5062016-02-25 13:47:30 -06003259bool TWPartition::Flash_Image_FI(const string& Filename, ProgressTracking *progress) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06003260 string Command;
Ethan Yonker472f5062016-02-25 13:47:30 -06003261 unsigned long long file_size;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003262
Ethan Yonker74db1572015-10-28 12:44:49 -05003263 gui_msg(Msg("flashing=Flashing {1}...")(Display_Name));
Ethan Yonker472f5062016-02-25 13:47:30 -06003264 if (progress) {
3265 file_size = (unsigned long long)(TWFunc::Get_File_Size(Filename));
3266 progress->SetPartitionSize(file_size);
3267 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06003268 // Sometimes flash image doesn't like to flash due to the first 2KB matching, so we erase first to ensure that it flashes
3269 Command = "erase_image " + MTD_Name;
3270 LOGINFO("Erase command: '%s'\n", Command.c_str());
3271 TWFunc::Exec_Cmd(Command);
3272 Command = "flash_image " + MTD_Name + " '" + Filename + "'";
3273 LOGINFO("Flash command: '%s'\n", Command.c_str());
3274 TWFunc::Exec_Cmd(Command);
Ethan Yonker472f5062016-02-25 13:47:30 -06003275 if (progress)
3276 progress->UpdateSize(file_size);
Ethan Yonker96af84a2015-01-05 14:58:36 -06003277 return true;
3278}
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003279
3280void TWPartition::Change_Mount_Read_Only(bool new_value) {
3281 Mount_Read_Only = new_value;
3282}
3283
bigbiffce8f83c2015-12-12 18:30:21 -05003284bool TWPartition::Is_Read_Only() {
3285 return Mount_Read_Only;
3286}
3287
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003288int TWPartition::Check_Lifetime_Writes() {
3289 bool original_read_only = Mount_Read_Only;
3290 int ret = 1;
3291
3292 Mount_Read_Only = true;
3293 if (Mount(false)) {
3294 Find_Actual_Block_Device();
Ethan Yonker54970bb2019-01-17 16:19:24 -06003295 string temp = Actual_Block_Device;
3296 Find_Real_Block_Device(temp, false);
3297 string block = basename(temp.c_str());
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003298 string file = "/sys/fs/" + Current_File_System + "/" + block + "/lifetime_write_kbytes";
3299 string result;
3300 if (TWFunc::Path_Exists(file)) {
3301 if (TWFunc::read_file(file, result) != 0) {
3302 LOGINFO("Check_Lifetime_Writes of '%s' failed to read_file\n", file.c_str());
3303 } else {
3304 LOGINFO("Check_Lifetime_Writes result: '%s'\n", result.c_str());
3305 if (result == "0") {
3306 ret = 0;
3307 }
3308 }
3309 } else {
3310 LOGINFO("Check_Lifetime_Writes file does not exist '%s'\n", file.c_str());
3311 }
3312 UnMount(true);
3313 } else {
3314 LOGINFO("Check_Lifetime_Writes failed to mount '%s'\n", Mount_Point.c_str());
3315 }
3316 Mount_Read_Only = original_read_only;
3317 return ret;
3318}
Ethan Yonker66a19492015-12-10 10:19:45 -06003319
3320int TWPartition::Decrypt_Adopted() {
3321#ifdef TW_INCLUDE_CRYPTO
3322 int ret = 1;
3323 Is_Adopted_Storage = false;
3324 string Adopted_Key_File = "";
3325
3326 if (!Removable)
3327 return ret;
3328
3329 int fd = open(Alternate_Block_Device.c_str(), O_RDONLY);
3330 if (fd < 0) {
3331 LOGINFO("failed to open '%s'\n", Alternate_Block_Device.c_str());
3332 return ret;
3333 }
3334 char type_guid[80];
3335 char part_guid[80];
3336
3337 if (gpt_disk_get_partition_info(fd, 2, type_guid, part_guid) == 0) {
3338 LOGINFO("type: '%s'\n", type_guid);
3339 LOGINFO("part: '%s'\n", part_guid);
3340 Adopted_GUID = part_guid;
3341 LOGINFO("Adopted_GUID '%s'\n", Adopted_GUID.c_str());
3342 if (strcmp(type_guid, TWGptAndroidExpand) == 0) {
3343 LOGINFO("android_expand found\n");
3344 Adopted_Key_File = "/data/misc/vold/expand_";
3345 Adopted_Key_File += part_guid;
3346 Adopted_Key_File += ".key";
3347 if (TWFunc::Path_Exists(Adopted_Key_File)) {
3348 Is_Adopted_Storage = true;
3349 /* Until we find a use case for this, I think it is safe
3350 * to disable USB Mass Storage whenever adopted storage
3351 * is present.
3352 */
3353 LOGINFO("Detected adopted storage, disabling USB mass storage mode\n");
3354 DataManager::SetValue("tw_has_usb_storage", 0);
3355 }
3356 }
3357 }
3358
3359 if (Is_Adopted_Storage) {
3360 string Adopted_Block_Device = Alternate_Block_Device + "p2";
3361 if (!TWFunc::Path_Exists(Adopted_Block_Device)) {
3362 Adopted_Block_Device = Alternate_Block_Device + "2";
3363 if (!TWFunc::Path_Exists(Adopted_Block_Device)) {
3364 LOGINFO("Adopted block device does not exist\n");
3365 goto exit;
3366 }
3367 }
3368 LOGINFO("key file is '%s', block device '%s'\n", Adopted_Key_File.c_str(), Adopted_Block_Device.c_str());
3369 char crypto_blkdev[MAXPATHLEN];
3370 std::string thekey;
3371 int fdkey = open(Adopted_Key_File.c_str(), O_RDONLY);
3372 if (fdkey < 0) {
3373 LOGINFO("failed to open key file\n");
3374 goto exit;
3375 }
3376 char buf[512];
3377 ssize_t n;
3378 while ((n = read(fdkey, &buf[0], sizeof(buf))) > 0) {
3379 thekey.append(buf, n);
3380 }
3381 close(fdkey);
3382 unsigned char* key = (unsigned char*) thekey.data();
3383 cryptfs_revert_ext_volume(part_guid);
3384
3385 ret = cryptfs_setup_ext_volume(part_guid, Adopted_Block_Device.c_str(), key, thekey.size(), crypto_blkdev);
3386 if (ret == 0) {
3387 LOGINFO("adopted storage new block device: '%s'\n", crypto_blkdev);
3388 Decrypted_Block_Device = crypto_blkdev;
3389 Is_Decrypted = true;
3390 Is_Encrypted = true;
3391 Find_Actual_Block_Device();
Kjell Braden3126a112016-06-19 16:58:15 +00003392 if (!Mount_Storage_Retry(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003393 LOGERR("Failed to mount decrypted adopted storage device\n");
3394 Is_Decrypted = false;
3395 Is_Encrypted = false;
3396 cryptfs_revert_ext_volume(part_guid);
3397 ret = 1;
3398 } else {
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003399 UnMount(false);
3400 Has_Android_Secure = false;
3401 Symlink_Path = "";
3402 Symlink_Mount_Point = "";
3403 Backup_Name = Mount_Point.substr(1);
3404 Backup_Path = Mount_Point;
3405 TWPartition* sdext = PartitionManager.Find_Partition_By_Path("/sd-ext");
3406 if (sdext && sdext->Actual_Block_Device == Adopted_Block_Device) {
3407 LOGINFO("Removing /sd-ext from partition list due to adopted storage\n");
3408 PartitionManager.Remove_Partition_By_Path("/sd-ext");
3409 }
Ethan Yonker66a19492015-12-10 10:19:45 -06003410 Setup_Data_Media();
3411 Recreate_Media_Folder();
3412 Wipe_Available_in_GUI = true;
3413 Wipe_During_Factory_Reset = true;
3414 Can_Be_Backed_Up = true;
3415 Can_Encrypt_Backup = true;
3416 Use_Userdata_Encryption = true;
3417 Is_Storage = true;
3418 Storage_Name = "Adopted Storage";
3419 Is_SubPartition = true;
3420 SubPartition_Of = "/data";
3421 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
3422 DataManager::SetValue("tw_has_adopted_storage", 1);
3423 }
3424 } else {
3425 LOGERR("Failed to setup adopted storage decryption\n");
3426 }
3427 }
3428exit:
Matt Mower06543e32017-01-06 15:25:26 -06003429 close(fd);
Ethan Yonker66a19492015-12-10 10:19:45 -06003430 return ret;
3431#else
3432 LOGINFO("Decrypt_Adopted: no crypto support\n");
3433 return 1;
3434#endif
3435}
3436
3437void TWPartition::Revert_Adopted() {
3438#ifdef TW_INCLUDE_CRYPTO
3439 if (!Adopted_GUID.empty()) {
3440 PartitionManager.Remove_MTP_Storage(Mount_Point);
3441 UnMount(false);
3442 cryptfs_revert_ext_volume(Adopted_GUID.c_str());
3443 Is_Adopted_Storage = false;
3444 Is_Encrypted = false;
3445 Is_Decrypted = false;
3446 Decrypted_Block_Device = "";
3447 Find_Actual_Block_Device();
3448 Wipe_During_Factory_Reset = false;
3449 Can_Be_Backed_Up = false;
3450 Can_Encrypt_Backup = false;
3451 Use_Userdata_Encryption = false;
3452 Is_SubPartition = false;
3453 SubPartition_Of = "";
3454 Has_Data_Media = false;
3455 Storage_Path = Mount_Point;
3456 if (!Symlink_Mount_Point.empty()) {
3457 TWPartition* Dat = PartitionManager.Find_Partition_By_Path("/data");
3458 if (Dat) {
3459 Dat->UnMount(false);
3460 Dat->Symlink_Mount_Point = Symlink_Mount_Point;
3461 }
3462 Symlink_Mount_Point = "";
3463 }
3464 }
3465#else
3466 LOGINFO("Revert_Adopted: no crypto support\n");
3467#endif
3468}
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04003469
3470void TWPartition::Set_Backup_FileName(string fname) {
3471 Backup_FileName = fname;
3472}
3473
3474string TWPartition::Get_Backup_Name() {
3475 return Backup_Name;
3476}