blob: 17614ffe7ead9aeed120a6f53d3c5fff782615cf [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
nkk7198fc3992017-12-16 16:26:42 +0200608 TWFunc::Fixup_Time_On_Boot("/persist/time/");
609 if (!mounted)
610 UnMount(false);
611 }
612 }
613
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100614 if (Is_File_System(Fstab_File_System) && (Mount_Point == "/" || Mount_Point == "/system" || Mount_Point == "/system_root")) {
615 if (Sar_Detect) {
616 Mount_Point = "/s";
617 Mount_Read_Only = true;
618 Can_Be_Mounted = true;
619 } else {
620 Mount_Point = PartitionManager.Get_Android_Root_Path();
621 Backup_Path = Mount_Point;
622 Storage_Path = Mount_Point;
623 Make_Dir(Mount_Point, Display_Error);
624 }
625 }
626
Dees_Troy51127312012-09-08 13:08:49 -0400627 return true;
628}
629
Matt Mower72c87ce2016-04-26 14:34:56 -0500630void TWPartition::Partition_Post_Processing(bool Display_Error) {
631 if (Mount_Point == "/data")
632 Setup_Data_Partition(Display_Error);
633 else if (Mount_Point == "/cache")
634 Setup_Cache_Partition(Display_Error);
635}
636
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600637void TWPartition::ExcludeAll(const string& path) {
638 backup_exclusions.add_absolute_dir(path);
639 wipe_exclusions.add_absolute_dir(path);
640}
641
Matt Mower72c87ce2016-04-26 14:34:56 -0500642void TWPartition::Setup_Data_Partition(bool Display_Error) {
643 if (Mount_Point != "/data")
644 return;
645
646 // Ensure /data is not mounted as tmpfs for qcom hardware decrypt
647 UnMount(false);
648
649#ifdef TW_INCLUDE_CRYPTO
650 if (datamedia)
651 Setup_Data_Media();
652 Can_Be_Encrypted = true;
653 char crypto_blkdev[255];
654 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
655 if (strcmp(crypto_blkdev, "error") != 0) {
656 DataManager::SetValue(TW_IS_DECRYPTED, 1);
657 Is_Encrypted = true;
658 Is_Decrypted = true;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400659 if (Key_Directory.empty()) {
Ethan Yonker93382822018-11-01 15:25:31 -0500660 Is_FBE = false;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400661 DataManager::SetValue(TW_IS_FBE, 0);
662 } else {
Ethan Yonker93382822018-11-01 15:25:31 -0500663 Is_FBE = true;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400664 DataManager::SetValue(TW_IS_FBE, 1);
665 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500666 Decrypted_Block_Device = crypto_blkdev;
667 LOGINFO("Data already decrypted, new block device: '%s'\n", crypto_blkdev);
668 } else if (!Mount(false)) {
669 if (Is_Present) {
Ethan Yonker93382822018-11-01 15:25:31 -0500670 if (Key_Directory.empty()) {
Noah Jacobson5a79f672019-04-28 00:10:07 -0400671 set_partition_data(Actual_Block_Device.c_str(), Crypto_Key_Location.c_str(),
672 Fstab_File_System.c_str());
Ethan Yonker93382822018-11-01 15:25:31 -0500673 if (cryptfs_check_footer() == 0) {
674 Is_Encrypted = true;
675 Is_Decrypted = false;
676 Can_Be_Mounted = false;
677 Current_File_System = "emmc";
678 Setup_Image();
679 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
680 DataManager::SetValue(TW_CRYPTO_PWTYPE, cryptfs_get_password_type());
Noah Jacobson5a79f672019-04-28 00:10:07 -0400681 DataManager::SetValue("tw_crypto_pwtype_0", cryptfs_get_password_type());
Ethan Yonker93382822018-11-01 15:25:31 -0500682 DataManager::SetValue(TW_CRYPTO_PASSWORD, "");
683 DataManager::SetValue("tw_crypto_display", "");
684 } else {
685 gui_err("mount_data_footer=Could not mount /data and unable to find crypto footer.");
686 }
687 } else {
Matt Mower72c87ce2016-04-26 14:34:56 -0500688 Is_Encrypted = true;
689 Is_Decrypted = false;
Matt Mower72c87ce2016-04-26 14:34:56 -0500690 }
Ethan Yonker93382822018-11-01 15:25:31 -0500691 } else if (Key_Directory.empty()) {
Noah Jacobson5a79f672019-04-28 00:10:07 -0400692 LOGERR("Primary block device '%s' for mount point '%s' is not present!\n",
693 Primary_Block_Device.c_str(), Mount_Point.c_str());
Matt Mower72c87ce2016-04-26 14:34:56 -0500694 }
695 } else {
Captain Throwback83c22342020-12-29 15:54:33 -0500696 int is_device_fbe;
697 DataManager::GetValue(TW_IS_FBE, is_device_fbe);
698 if (!Decrypt_FBE_DE() && is_device_fbe == 1) {
mauronofrio1db94322019-11-23 23:13:04 +0100699 char wrappedvalue[PROPERTY_VALUE_MAX];
700 property_get("fbe.data.wrappedkey", wrappedvalue, "");
701 std::string wrappedkeyvalue(wrappedvalue);
702 if (wrappedkeyvalue == "true") {
703 LOGERR("Unable to decrypt FBE device\n");
704 } else {
705 LOGINFO("Trying wrapped key.\n");
706 property_set("fbe.data.wrappedkey", "true");
mauronofrio9bf73352019-11-23 22:27:34 +0100707 if (!Decrypt_FBE_DE()) {
Mauronofrio Matarrese6d5d08a2019-12-03 14:25:25 +0100708 LOGINFO("Unable to decrypt device\n");
mauronofrio9bf73352019-11-23 22:27:34 +0100709 }
mauronofrio1db94322019-11-23 23:13:04 +0100710 }
mauronofrio9bf73352019-11-23 22:27:34 +0100711 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500712 }
713 if (datamedia && (!Is_Encrypted || (Is_Encrypted && Is_Decrypted))) {
714 Setup_Data_Media();
715 Recreate_Media_Folder();
716 }
717#else
718 if (datamedia) {
719 Setup_Data_Media();
720 Recreate_Media_Folder();
721 }
722#endif
723}
724
Ethan Yonker93382822018-11-01 15:25:31 -0500725bool TWPartition::Decrypt_FBE_DE() {
726if (TWFunc::Path_Exists("/data/unencrypted/key/version")) {
Captain Throwbackcf0dffc2020-02-17 16:44:50 -0500727 DataManager::SetValue(TW_IS_FBE, 1);
Captain Throwback83c22342020-12-29 15:54:33 -0500728 property_set("ro.crypto.state", "encrypted");
nebrassy674bb0c2020-10-24 21:08:20 +0200729 property_set("ro.crypto.type", "file");
Ethan Yonker93382822018-11-01 15:25:31 -0500730 LOGINFO("File Based Encryption is present\n");
731#ifdef TW_INCLUDE_FBE
Noah Jacobson5a79f672019-04-28 00:10:07 -0400732 Is_FBE = true;
Noah Jacobson5a79f672019-04-28 00:10:07 -0400733 ExcludeAll(Mount_Point + "/convert_fbe");
734 ExcludeAll(Mount_Point + "/unencrypted");
735 ExcludeAll(Mount_Point + "/misc/vold/user_keys");
736 ExcludeAll(Mount_Point + "/system/gatekeeper.password.key");
737 ExcludeAll(Mount_Point + "/system/gatekeeper.pattern.key");
738 ExcludeAll(Mount_Point + "/system/locksettings.db");
739 ExcludeAll(Mount_Point + "/system/locksettings.db-wal");
740 ExcludeAll(Mount_Point + "/misc/gatekeeper");
741 ExcludeAll(Mount_Point + "/misc/keystore");
742 ExcludeAll(Mount_Point + "/drm/kek.dat");
743 ExcludeAll(Mount_Point + "/system_de/0/spblob"); // contains data needed to decrypt pixel 2
744 ExcludeAll(Mount_Point + "/system/users/0/gatekeeper.password.key");
745 ExcludeAll(Mount_Point + "/system/users/0/gatekeeper.pattern.key");
Noah Jacobson5a79f672019-04-28 00:10:07 -0400746 int retry_count = 3;
747 while (!Decrypt_DE() && --retry_count)
748 usleep(2000);
Noah Jacobson5a79f672019-04-28 00:10:07 -0400749 if (retry_count > 0) {
750 property_set("ro.crypto.state", "encrypted");
751 Is_Encrypted = true;
752 Is_Decrypted = false;
753 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
754 string filename;
755 int pwd_type = Get_Password_Type(0, filename);
756 if (pwd_type < 0) {
757 LOGERR("This TWRP does not have synthetic password decrypt support\n");
758 pwd_type = 0; // default password
759 }
Noah Jacobsonbf0b0fb2020-06-05 12:47:20 -0400760 PartitionManager.Parse_Users(); // after load_all_de_keys() to parse_users
761 std::vector<users_struct>::iterator iter;
762 std::vector<users_struct>* userList = PartitionManager.Get_Users_List();
763 for (iter = userList->begin(); iter != userList->end(); iter++) {
764 if (atoi((*iter).userId.c_str()) != 0) {
765 ExcludeAll(Mount_Point + "/system_de/" + (*iter).userId + "/spblob");
766 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/gatekeeper.password.key");
767 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/gatekeeper.pattern.key");
768 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/locksettings.db");
769 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/locksettings.db-wal");
770 }
771 }
Noah Jacobson5a79f672019-04-28 00:10:07 -0400772 DataManager::SetValue(TW_CRYPTO_PWTYPE, pwd_type);
773 DataManager::SetValue("tw_crypto_pwtype_0", pwd_type);
774 DataManager::SetValue(TW_CRYPTO_PASSWORD, "");
775 DataManager::SetValue("tw_crypto_display", "");
776 return true;
777 }
Ethan Yonker93382822018-11-01 15:25:31 -0500778#else
779 LOGERR("FBE found but FBE support not present in TWRP\n");
780#endif
781 }
Captain Throwbackcf0dffc2020-02-17 16:44:50 -0500782 DataManager::SetValue(TW_IS_FBE, 0);
Ethan Yonker93382822018-11-01 15:25:31 -0500783 return false;
784}
785
Matt Mower72c87ce2016-04-26 14:34:56 -0500786void TWPartition::Setup_Cache_Partition(bool Display_Error __unused) {
787 if (Mount_Point != "/cache")
788 return;
789
790 if (!Mount(true))
791 return;
792
793 if (!TWFunc::Path_Exists("/cache/recovery/.")) {
794 LOGINFO("Recreating /cache/recovery folder\n");
795 if (mkdir("/cache/recovery", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0)
796 LOGERR("Could not create /cache/recovery\n");
797 }
798}
799
Matt Mower4ab42b12016-04-21 13:52:18 -0500800void TWPartition::Process_FS_Flags(const char *str) {
801 char *options = strdup(str);
802 char *ptr, *savep;
Hashcode62bd9e02013-11-19 21:59:42 -0800803
Matt Mower4ab42b12016-04-21 13:52:18 -0500804 Mount_Options = "";
Hashcode62bd9e02013-11-19 21:59:42 -0800805
Matt Mower4ab42b12016-04-21 13:52:18 -0500806 // Avoid issues with potentially nested strtok by using strtok_r
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600807 for (ptr = strtok_r(options, ",", &savep); ptr; ptr = strtok_r(NULL, ",", &savep)) {
808 char *equals = strstr(ptr, "=");
809 size_t name_len;
Matt Mower4ab42b12016-04-21 13:52:18 -0500810
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600811 if (!equals)
812 name_len = strlen(ptr);
813 else
814 name_len = equals - ptr;
815
816 // There are some flags that we want to ignore in TWRP
817 bool found_match = false;
818 for (const char** ignored_mount_item = ignored_mount_items; *ignored_mount_item; ignored_mount_item++) {
819 if (strncmp(ptr, *ignored_mount_item, name_len) == 0) {
820 found_match = true;
Hashcode62bd9e02013-11-19 21:59:42 -0800821 break;
822 }
823 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600824 if (found_match)
825 continue;
Hashcode62bd9e02013-11-19 21:59:42 -0800826
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600827 // mount_flags are never postfixed by '='
828 if (!equals) {
829 const struct flag_list* mount_flag = mount_flags;
830 for (; mount_flag->name; mount_flag++) {
831 if (strcmp(ptr, mount_flag->name) == 0) {
832 if (mount_flag->flag == MS_RDONLY)
833 Mount_Read_Only = true;
834 else
835 Mount_Flags |= (unsigned)mount_flag->flag;
836 found_match = true;
837 break;
838 }
839 }
840 if (found_match)
841 continue;
Matt Mower4ab42b12016-04-21 13:52:18 -0500842 }
843
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600844 // If we aren't ignoring this flag and it's not a mount flag, then it must be a mount option
845 if (!Mount_Options.empty())
846 Mount_Options += ",";
847 Mount_Options += ptr;
Matt Mower4ab42b12016-04-21 13:52:18 -0500848 }
849 free(options);
Hashcode62bd9e02013-11-19 21:59:42 -0800850}
851
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600852void TWPartition::Save_FS_Flags(const string& local_File_System, int local_Mount_Flags, const string& local_Mount_Options) {
853 partition_fs_flags_struct flags;
854 flags.File_System = local_File_System;
855 flags.Mount_Flags = local_Mount_Flags;
856 flags.Mount_Options = local_Mount_Options;
857 fs_flags.push_back(flags);
858}
859
Matt Mower2416a502016-04-12 19:54:46 -0500860void TWPartition::Apply_TW_Flag(const unsigned flag, const char* str, const bool val) {
861 switch (flag) {
862 case TWFLAG_ANDSEC:
863 Has_Android_Secure = val;
864 break;
865 case TWFLAG_BACKUP:
866 Can_Be_Backed_Up = val;
867 break;
868 case TWFLAG_BACKUPNAME:
869 Backup_Display_Name = str;
870 break;
871 case TWFLAG_BLOCKSIZE:
872 Format_Block_Size = (unsigned long)(atol(str));
873 break;
874 case TWFLAG_CANBEWIPED:
875 Can_Be_Wiped = val;
876 break;
877 case TWFLAG_CANENCRYPTBACKUP:
878 Can_Encrypt_Backup = val;
879 break;
880 case TWFLAG_DEFAULTS:
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600881 case TWFLAG_WAIT:
882 case TWFLAG_VERIFY:
883 case TWFLAG_CHECK:
884 case TWFLAG_NOTRIM:
885 case TWFLAG_VOLDMANAGED:
886 case TWFLAG_RESIZE:
Matt Mower2416a502016-04-12 19:54:46 -0500887 // Do nothing
888 break;
889 case TWFLAG_DISPLAY:
890 Display_Name = str;
891 break;
892 case TWFLAG_ENCRYPTABLE:
893 case TWFLAG_FORCEENCRYPT:
894 Crypto_Key_Location = str;
895 break;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500896 case TWFLAG_FILEENCRYPTION:
897 // This flag isn't used by TWRP but is needed in 9.0 FBE decrypt
898 // fileencryption=ice:aes-256-heh
899 {
900 std::string FBE = str;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500901 size_t colon_loc = FBE.find(":");
902 if (colon_loc == std::string::npos) {
Ethan Yonker93382822018-11-01 15:25:31 -0500903 property_set("fbe.contents", FBE.c_str());
904 property_set("fbe.filenames", "");
905 LOGINFO("FBE contents '%s', filenames ''\n", FBE.c_str());
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500906 break;
907 }
Ethan Yonker93382822018-11-01 15:25:31 -0500908 std::string FBE_contents, FBE_filenames;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500909 FBE_contents = FBE.substr(0, colon_loc);
910 FBE_filenames = FBE.substr(colon_loc + 1);
911 property_set("fbe.contents", FBE_contents.c_str());
912 property_set("fbe.filenames", FBE_filenames.c_str());
913 LOGINFO("FBE contents '%s', filenames '%s'\n", FBE_contents.c_str(), FBE_filenames.c_str());
914 }
915 break;
Peter Cai40ed06e2019-05-24 11:38:54 +0800916 case TWFLAG_WRAPPEDKEY:
917 // Set fbe.data.wrappedkey to true
918 {
919 property_set("fbe.data.wrappedkey", "true");
920 LOGINFO("FBE wrapped key enabled\n");
921 }
922 break;
Matt Mower2416a502016-04-12 19:54:46 -0500923 case TWFLAG_FLASHIMG:
924 Can_Flash_Img = val;
925 break;
926 case TWFLAG_FSFLAGS:
Matt Mower4ab42b12016-04-21 13:52:18 -0500927 Process_FS_Flags(str);
Matt Mower2416a502016-04-12 19:54:46 -0500928 break;
929 case TWFLAG_IGNOREBLKID:
930 Ignore_Blkid = val;
931 break;
932 case TWFLAG_LENGTH:
933 Length = atoi(str);
934 break;
935 case TWFLAG_MOUNTTODECRYPT:
936 Mount_To_Decrypt = val;
937 break;
938 case TWFLAG_REMOVABLE:
939 Removable = val;
940 break;
941 case TWFLAG_RETAINLAYOUTVERSION:
942 Retain_Layout_Version = val;
943 break;
944 case TWFLAG_SETTINGSSTORAGE:
945 Is_Settings_Storage = val;
946 if (Is_Settings_Storage)
947 Is_Storage = true;
948 break;
949 case TWFLAG_STORAGE:
950 Is_Storage = val;
951 break;
952 case TWFLAG_STORAGENAME:
953 Storage_Name = str;
954 break;
955 case TWFLAG_SUBPARTITIONOF:
956 Is_SubPartition = true;
957 SubPartition_Of = str;
958 break;
959 case TWFLAG_SYMLINK:
960 Symlink_Path = str;
961 break;
962 case TWFLAG_USERDATAENCRYPTBACKUP:
963 Use_Userdata_Encryption = val;
964 if (Use_Userdata_Encryption)
965 Can_Encrypt_Backup = true;
966 break;
967 case TWFLAG_USERMRF:
968 Use_Rm_Rf = val;
969 break;
970 case TWFLAG_WIPEDURINGFACTORYRESET:
971 Wipe_During_Factory_Reset = val;
972 if (Wipe_During_Factory_Reset) {
973 Can_Be_Wiped = true;
974 Wipe_Available_in_GUI = true;
975 }
976 break;
977 case TWFLAG_WIPEINGUI:
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600978 case TWFLAG_FORMATTABLE:
Matt Mower2416a502016-04-12 19:54:46 -0500979 Wipe_Available_in_GUI = val;
980 if (Wipe_Available_in_GUI)
981 Can_Be_Wiped = true;
982 break;
Ethan Yonker1b190162016-12-05 15:25:19 -0600983 case TWFLAG_SLOTSELECT:
984 SlotSelect = true;
985 break;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600986 case TWFLAG_ALTDEVICE:
987 Alternate_Block_Device = str;
988 break;
Ethan Yonker93382822018-11-01 15:25:31 -0500989 case TWFLAG_KEYDIRECTORY:
990 Key_Directory = str;
Matt Mower2416a502016-04-12 19:54:46 -0500991 default:
992 // Should not get here
993 LOGINFO("Flag identified for processing, but later unmatched: %i\n", flag);
994 break;
995 }
996}
Dees_Troy51127312012-09-08 13:08:49 -0400997
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600998void TWPartition::Process_TW_Flags(char *flags, bool Display_Error, int fstab_ver) {
Matt Mower2416a502016-04-12 19:54:46 -0500999 char separator[2] = {'\n', 0};
1000 char *ptr, *savep;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001001 char source_separator = ';';
1002
1003 if (fstab_ver == 2)
1004 source_separator = ',';
Matt Mower2416a502016-04-12 19:54:46 -05001005
1006 // Semicolons within double-quotes are not forbidden, so replace
1007 // only the semicolons intended as separators with '\n' for strtok
1008 for (unsigned i = 0, skip = 0; i < strlen(flags); i++) {
1009 if (flags[i] == '\"')
Dees_Troya13d74f2013-03-24 08:54:55 -05001010 skip = !skip;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001011 if (!skip && flags[i] == source_separator)
Matt Mower2416a502016-04-12 19:54:46 -05001012 flags[i] = separator[0];
Dees_Troy51127312012-09-08 13:08:49 -04001013 }
1014
Matt Mower2416a502016-04-12 19:54:46 -05001015 // Avoid issues with potentially nested strtok by using strtok_r
1016 ptr = strtok_r(flags, separator, &savep);
1017 while (ptr) {
1018 int ptr_len = strlen(ptr);
1019 const struct flag_list* tw_flag = tw_flags;
Hashcode62bd9e02013-11-19 21:59:42 -08001020
Matt Mower2416a502016-04-12 19:54:46 -05001021 for (; tw_flag->name; tw_flag++) {
1022 int flag_len = strlen(tw_flag->name);
1023
1024 if (strncmp(ptr, tw_flag->name, flag_len) == 0) {
1025 bool flag_val = false;
1026
1027 if (ptr_len > flag_len && (tw_flag->name)[flag_len-1] != '='
1028 && ptr[flag_len] != '=') {
1029 // Handle flags with same starting string
1030 // (e.g. backup and backupname)
1031 continue;
1032 } else if (ptr_len > flag_len && ptr[flag_len] == '=') {
1033 // Handle flags with dual format: Part 1
1034 // (e.g. backup and backup=y. backup=y handled here)
1035 ptr += flag_len + 1;
1036 TWFunc::Strip_Quotes(ptr);
1037 // Skip flags with empty argument
1038 // (e.g. backup=)
1039 if (strlen(ptr) == 0) {
1040 LOGINFO("Flag missing argument or should not include '=': %s=\n", tw_flag->name);
1041 break;
1042 }
1043 flag_val = strchr("yY1", *ptr) != NULL;
1044 } else if (ptr_len == flag_len
1045 && (tw_flag->name)[flag_len-1] == '=') {
1046 // Skip flags missing argument after =
1047 // (e.g. backupname=)
1048 LOGINFO("Flag missing argument: %s\n", tw_flag->name);
1049 break;
1050 } else if (ptr_len > flag_len
1051 && (tw_flag->name)[flag_len-1] == '=') {
1052 // Handle arguments to flags
1053 // (e.g. backupname="My Stuff")
1054 ptr += flag_len;
1055 TWFunc::Strip_Quotes(ptr);
1056 // Skip flags with empty argument
1057 // (e.g. backupname="")
1058 if (strlen(ptr) == 0) {
1059 LOGINFO("Flag missing argument: %s\n", tw_flag->name);
1060 break;
1061 }
1062 } else if (ptr_len == flag_len) {
1063 // Handle flags with dual format: Part 2
1064 // (e.g. backup and backup=y. backup handled here)
1065 flag_val = true;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001066 } else {
Matt Mower2416a502016-04-12 19:54:46 -05001067 LOGINFO("Flag matched, but could not be processed: %s\n", ptr);
1068 break;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001069 }
Matt Mower2416a502016-04-12 19:54:46 -05001070
1071 Apply_TW_Flag(tw_flag->flag, ptr, flag_val);
1072 break;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001073 }
Matt Mower2416a502016-04-12 19:54:46 -05001074 }
1075 if (tw_flag->name == 0) {
Dees_Troy51127312012-09-08 13:08:49 -04001076 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001077 LOGERR("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -04001078 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001079 LOGINFO("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -04001080 }
Matt Mower2416a502016-04-12 19:54:46 -05001081 ptr = strtok_r(NULL, separator, &savep);
Dees_Troy51127312012-09-08 13:08:49 -04001082 }
Dees_Troy51a0e822012-09-05 15:24:24 -04001083}
1084
Dees_Troy5bf43922012-09-07 16:07:55 -04001085bool TWPartition::Is_File_System(string File_System) {
1086 if (File_System == "ext2" ||
Dees_Troy63c8df72012-09-10 14:02:05 -04001087 File_System == "ext3" ||
Dees_Troy5bf43922012-09-07 16:07:55 -04001088 File_System == "ext4" ||
1089 File_System == "vfat" ||
1090 File_System == "ntfs" ||
1091 File_System == "yaffs2" ||
bigbiff bigbiff3e146522012-11-14 14:32:59 -05001092 File_System == "exfat" ||
Dees_Troye5017042013-08-29 16:38:55 +00001093 File_System == "f2fs" ||
Erfan Abdib859e912019-02-05 18:18:46 +02001094 File_System == "squashfs" ||
Dees_Troy5bf43922012-09-07 16:07:55 -04001095 File_System == "auto")
1096 return true;
1097 else
1098 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001099}
1100
Dees_Troy5bf43922012-09-07 16:07:55 -04001101bool TWPartition::Is_Image(string File_System) {
Dees_Troy5fcd8f92012-10-16 12:22:05 -04001102 if (File_System == "emmc" || File_System == "mtd" || File_System == "bml")
Dees_Troy5bf43922012-09-07 16:07:55 -04001103 return true;
1104 else
1105 return false;
1106}
1107
Dees_Troy51127312012-09-08 13:08:49 -04001108bool TWPartition::Make_Dir(string Path, bool Display_Error) {
Ethan Yonker93ac7a02016-11-07 22:05:58 -06001109 if (TWFunc::Get_D_Type_From_Stat(Path) != S_IFDIR)
1110 unlink(Path.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001111 if (!TWFunc::Path_Exists(Path)) {
Dees_Troy51127312012-09-08 13:08:49 -04001112 if (mkdir(Path.c_str(), 0777) == -1) {
1113 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001114 gui_msg(Msg(msg::kError, "create_folder_strerr=Can not create '{1}' folder ({2}).")(Path)(strerror(errno)));
Dees_Troy51127312012-09-08 13:08:49 -04001115 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001116 LOGINFO("Can not create '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001117 return false;
1118 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001119 LOGINFO("Created '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001120 return true;
1121 }
1122 }
1123 return true;
1124}
1125
Dees_Troy5bf43922012-09-07 16:07:55 -04001126void TWPartition::Setup_File_System(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001127 Can_Be_Mounted = true;
1128 Can_Be_Wiped = true;
1129
Dees_Troy5bf43922012-09-07 16:07:55 -04001130 // Make the mount point folder if it doesn't exist
Dees_Troy51127312012-09-08 13:08:49 -04001131 Make_Dir(Mount_Point, Display_Error);
bigbiffce8f83c2015-12-12 18:30:21 -05001132 Backup_Method = BM_FILES;
Dees_Troy5bf43922012-09-07 16:07:55 -04001133}
1134
Ethan Yonker1b190162016-12-05 15:25:19 -06001135void TWPartition::Setup_Image() {
Dees_Troy5bf43922012-09-07 16:07:55 -04001136 Display_Name = Mount_Point.substr(1, Mount_Point.size() - 1);
1137 Backup_Name = Display_Name;
Gary Peck82599a82012-11-21 16:23:12 -08001138 if (Current_File_System == "emmc")
bigbiffce8f83c2015-12-12 18:30:21 -05001139 Backup_Method = BM_DD;
Gary Peck82599a82012-11-21 16:23:12 -08001140 else if (Current_File_System == "mtd" || Current_File_System == "bml")
bigbiffce8f83c2015-12-12 18:30:21 -05001141 Backup_Method = BM_FLASH_UTILS;
Dees_Troy5bf43922012-09-07 16:07:55 -04001142 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001143 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 -04001144}
1145
Dees_Troye58d5262012-09-21 12:27:57 -04001146void TWPartition::Setup_AndSec(void) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001147 Backup_Display_Name = "Android Secure";
Dees_Troye58d5262012-09-21 12:27:57 -04001148 Backup_Name = "and-sec";
Dees_Troya13d74f2013-03-24 08:54:55 -05001149 Can_Be_Backed_Up = true;
Dees_Troye58d5262012-09-21 12:27:57 -04001150 Has_Android_Secure = true;
1151 Symlink_Path = Mount_Point + "/.android_secure";
1152 Symlink_Mount_Point = "/and-sec";
1153 Backup_Path = Symlink_Mount_Point;
1154 Make_Dir("/and-sec", true);
1155 Recreate_AndSec_Folder();
Kjell Braden3126a112016-06-19 16:58:15 +00001156 Mount_Storage_Retry(true);
Dees_Troye58d5262012-09-21 12:27:57 -04001157}
1158
that9e0593e2014-10-08 00:01:24 +02001159void TWPartition::Setup_Data_Media() {
Ethan Yonker6277c792014-09-15 14:54:30 -05001160 LOGINFO("Setting up '%s' as data/media emulated storage.\n", Mount_Point.c_str());
Ethan Yonker66a19492015-12-10 10:19:45 -06001161 if (Storage_Name.empty() || Storage_Name == "Data")
1162 Storage_Name = "Internal Storage";
Ethan Yonker6277c792014-09-15 14:54:30 -05001163 Has_Data_Media = true;
1164 Is_Storage = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06001165 Storage_Path = Mount_Point + "/media";
Ethan Yonker6277c792014-09-15 14:54:30 -05001166 Symlink_Path = Storage_Path;
Ethan Yonker66a19492015-12-10 10:19:45 -06001167 if (Mount_Point == "/data") {
1168 Is_Settings_Storage = true;
1169 if (strcmp(EXPAND(TW_EXTERNAL_STORAGE_PATH), "/sdcard") == 0) {
1170 Make_Dir("/emmc", false);
1171 Symlink_Mount_Point = "/emmc";
1172 } else {
1173 Make_Dir("/sdcard", false);
1174 Symlink_Mount_Point = "/sdcard";
1175 }
1176 if (Mount(false) && TWFunc::Path_Exists(Mount_Point + "/media/0")) {
1177 Storage_Path = Mount_Point + "/media/0";
1178 Symlink_Path = Storage_Path;
1179 DataManager::SetValue(TW_INTERNAL_PATH, Mount_Point + "/media/0");
1180 UnMount(true);
1181 }
1182 DataManager::SetValue("tw_has_internal", 1);
1183 DataManager::SetValue("tw_has_data_media", 1);
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001184 backup_exclusions.add_absolute_dir("/data/data/com.google.android.music/files");
Darth90864aa52020-01-14 20:58:16 +00001185 backup_exclusions.add_absolute_dir("/data/per_boot"); // DJ9,14Jan2020 - exclude this dir to prevent "error 255" on AOSP ROMs that create and lock it
DarthJabba913b07f82020-08-04 10:31:27 +01001186 backup_exclusions.add_absolute_dir("/data/vendor/dumpsys");
bigbiff349ea552020-06-19 16:07:38 -04001187 backup_exclusions.add_absolute_dir("/data/cache");
Ethan Yonker6355b562017-05-01 09:42:17 -05001188 wipe_exclusions.add_absolute_dir(Mount_Point + "/misc/vold"); // adopted storage keys
Ethan Yonker79f88bd2016-12-09 14:52:12 -06001189 ExcludeAll(Mount_Point + "/.layout_version");
1190 ExcludeAll(Mount_Point + "/system/storage.xml");
Ethan Yonker6277c792014-09-15 14:54:30 -05001191 } else {
Ethan Yonker66a19492015-12-10 10:19:45 -06001192 if (Mount(true) && TWFunc::Path_Exists(Mount_Point + "/media/0")) {
1193 Storage_Path = Mount_Point + "/media/0";
1194 Symlink_Path = Storage_Path;
1195 UnMount(true);
1196 }
Ethan Yonker6277c792014-09-15 14:54:30 -05001197 }
Ethan Yonker79f88bd2016-12-09 14:52:12 -06001198 ExcludeAll(Mount_Point + "/media");
Ethan Yonker6277c792014-09-15 14:54:30 -05001199}
1200
Dees_Troy5bf43922012-09-07 16:07:55 -04001201void TWPartition::Find_Real_Block_Device(string& Block, bool Display_Error) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001202 char device[PATH_MAX], realDevice[PATH_MAX];
Dees_Troy5bf43922012-09-07 16:07:55 -04001203
1204 strcpy(device, Block.c_str());
1205 memset(realDevice, 0, sizeof(realDevice));
1206 while (readlink(device, realDevice, sizeof(realDevice)) > 0)
1207 {
1208 strcpy(device, realDevice);
1209 memset(realDevice, 0, sizeof(realDevice));
1210 }
1211
1212 if (device[0] != '/') {
1213 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001214 LOGERR("Invalid symlink path '%s' found on block device '%s'\n", device, Block.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001215 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001216 LOGINFO("Invalid symlink path '%s' found on block device '%s'\n", device, Block.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001217 return;
Dees_Troy51a0e822012-09-05 15:24:24 -04001218 } else {
Dees_Troy5bf43922012-09-07 16:07:55 -04001219 Block = device;
1220 return;
1221 }
1222}
1223
Kjell Braden3126a112016-06-19 16:58:15 +00001224bool TWPartition::Mount_Storage_Retry(bool Display_Error) {
Dees_Troy8e337f32012-10-13 22:07:49 -04001225 // On some devices, storage doesn't want to mount right away, retry and sleep
Kjell Braden3126a112016-06-19 16:58:15 +00001226 if (!Mount(Display_Error)) {
Dees_Troy8e337f32012-10-13 22:07:49 -04001227 int retry_count = 5;
1228 while (retry_count > 0 && !Mount(false)) {
1229 usleep(500000);
1230 retry_count--;
1231 }
Kjell Braden3126a112016-06-19 16:58:15 +00001232 return Mount(Display_Error);
Dees_Troy8e337f32012-10-13 22:07:49 -04001233 }
Kjell Braden3126a112016-06-19 16:58:15 +00001234 return true;
Dees_Troy8e337f32012-10-13 22:07:49 -04001235}
1236
Dees_Troy38bd7602012-09-14 13:33:53 -04001237bool TWPartition::Find_MTD_Block_Device(string MTD_Name) {
1238 FILE *fp = NULL;
1239 char line[255];
1240
1241 fp = fopen("/proc/mtd", "rt");
1242 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001243 LOGERR("Device does not support /proc/mtd\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001244 return false;
1245 }
1246
1247 while (fgets(line, sizeof(line), fp) != NULL)
1248 {
1249 char device[32], label[32];
1250 unsigned long size = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -04001251 int deviceId;
1252
1253 sscanf(line, "%s %lx %*s %*c%s", device, &size, label);
1254
1255 // Skip header and blank lines
1256 if ((strcmp(device, "dev:") == 0) || (strlen(line) < 8))
1257 continue;
1258
1259 // Strip off the trailing " from the label
1260 label[strlen(label)-1] = '\0';
1261
1262 if (strcmp(label, MTD_Name.c_str()) == 0) {
1263 // We found our device
1264 // Strip off the trailing : from the device
1265 device[strlen(device)-1] = '\0';
1266 if (sscanf(device,"mtd%d", &deviceId) == 1) {
1267 sprintf(device, "/dev/block/mtdblock%d", deviceId);
1268 Primary_Block_Device = device;
Dees_Troy76543db2013-06-19 16:24:30 +00001269 fclose(fp);
1270 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -04001271 }
1272 }
1273 }
1274 fclose(fp);
1275
1276 return false;
1277}
1278
Dees_Troy51127312012-09-08 13:08:49 -04001279bool TWPartition::Get_Size_Via_statfs(bool Display_Error) {
1280 struct statfs st;
1281 string Local_Path = Mount_Point + "/.";
1282
1283 if (!Mount(Display_Error))
1284 return false;
1285
1286 if (statfs(Local_Path.c_str(), &st) != 0) {
1287 if (!Removable) {
1288 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001289 LOGERR("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001290 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001291 LOGINFO("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001292 }
1293 return false;
1294 }
1295 Size = (st.f_blocks * st.f_bsize);
1296 Used = ((st.f_blocks - st.f_bfree) * st.f_bsize);
1297 Free = (st.f_bfree * st.f_bsize);
1298 Backup_Size = Used;
1299 return true;
1300}
1301
1302bool TWPartition::Get_Size_Via_df(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001303 FILE* fp;
1304 char command[255], line[512];
1305 int include_block = 1;
1306 unsigned int min_len;
1307
1308 if (!Mount(Display_Error))
1309 return false;
1310
Dees_Troy38bd7602012-09-14 13:33:53 -04001311 min_len = Actual_Block_Device.size() + 2;
Dees_Troy51127312012-09-08 13:08:49 -04001312 sprintf(command, "df %s > /tmp/dfoutput.txt", Mount_Point.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001313 TWFunc::Exec_Cmd(command);
Dees_Troy51127312012-09-08 13:08:49 -04001314 fp = fopen("/tmp/dfoutput.txt", "rt");
1315 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001316 LOGINFO("Unable to open /tmp/dfoutput.txt.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001317 return false;
Dees_Troy51127312012-09-08 13:08:49 -04001318 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001319
1320 while (fgets(line, sizeof(line), fp) != NULL)
1321 {
1322 unsigned long blocks, used, available;
1323 char device[64];
1324 char tmpString[64];
1325
1326 if (strncmp(line, "Filesystem", 10) == 0)
1327 continue;
1328 if (strlen(line) < min_len) {
1329 include_block = 0;
1330 continue;
1331 }
1332 if (include_block) {
1333 sscanf(line, "%s %lu %lu %lu", device, &blocks, &used, &available);
1334 } else {
1335 // The device block string is so long that the df information is on the next line
1336 int space_count = 0;
Dees_Troye58d5262012-09-21 12:27:57 -04001337 sprintf(tmpString, "/dev/block/%s", Actual_Block_Device.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001338 while (tmpString[space_count] == 32)
1339 space_count++;
1340 sscanf(line + space_count, "%lu %lu %lu", &blocks, &used, &available);
1341 }
1342
1343 // Adjust block size to byte size
1344 Size = blocks * 1024ULL;
1345 Used = used * 1024ULL;
1346 Free = available * 1024ULL;
1347 Backup_Size = Used;
1348 }
1349 fclose(fp);
1350 return true;
1351}
1352
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001353unsigned long long TWPartition::IOCTL_Get_Block_Size() {
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001354 Find_Actual_Block_Device();
Ethan Yonker483e9f42016-01-11 22:21:18 -06001355
1356 return TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001357}
1358
Dees_Troy5bf43922012-09-07 16:07:55 -04001359bool TWPartition::Find_Partition_Size(void) {
1360 FILE* fp;
1361 char line[512];
1362 string tmpdevice;
1363
igoriok87e3d932013-01-31 21:03:53 +02001364 fp = fopen("/proc/dumchar_info", "rt");
1365 if (fp != NULL) {
1366 while (fgets(line, sizeof(line), fp) != NULL)
1367 {
1368 char label[32], device[32];
1369 unsigned long size = 0;
1370
thatd43bf2d2014-09-21 23:13:02 +02001371 sscanf(line, "%s %lx %*x %*u %s", label, &size, device);
igoriok87e3d932013-01-31 21:03:53 +02001372
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05001373 // Skip header, annotation and blank lines
igoriok87e3d932013-01-31 21:03:53 +02001374 if ((strncmp(device, "/dev/", 5) != 0) || (strlen(line) < 8))
1375 continue;
1376
1377 tmpdevice = "/dev/";
1378 tmpdevice += label;
1379 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
1380 Size = size;
1381 fclose(fp);
1382 return true;
1383 }
1384 }
1385 }
1386
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001387 unsigned long long ioctl_size = IOCTL_Get_Block_Size();
1388 if (ioctl_size) {
1389 Size = ioctl_size;
1390 return true;
1391 }
1392
Dees_Troy5bf43922012-09-07 16:07:55 -04001393 // In this case, we'll first get the partitions we care about (with labels)
1394 fp = fopen("/proc/partitions", "rt");
1395 if (fp == NULL)
1396 return false;
1397
1398 while (fgets(line, sizeof(line), fp) != NULL)
1399 {
1400 unsigned long major, minor, blocks;
1401 char device[512];
Dees_Troy5bf43922012-09-07 16:07:55 -04001402
Dees_Troy63c8df72012-09-10 14:02:05 -04001403 if (strlen(line) < 7 || line[0] == 'm') continue;
Dees_Troy5bf43922012-09-07 16:07:55 -04001404 sscanf(line + 1, "%lu %lu %lu %s", &major, &minor, &blocks, device);
1405
1406 tmpdevice = "/dev/block/";
1407 tmpdevice += device;
Dees_Troy38bd7602012-09-14 13:33:53 -04001408 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001409 // Adjust block size to byte size
1410 Size = blocks * 1024ULL;
1411 fclose(fp);
1412 return true;
1413 }
1414 }
1415 fclose(fp);
1416 return false;
1417}
1418
Dees_Troy5bf43922012-09-07 16:07:55 -04001419bool TWPartition::Is_Mounted(void) {
1420 if (!Can_Be_Mounted)
1421 return false;
1422
1423 struct stat st1, st2;
1424 string test_path;
1425
1426 // Check to see if the mount point directory exists
1427 test_path = Mount_Point + "/.";
1428 if (stat(test_path.c_str(), &st1) != 0) return false;
1429
1430 // Check to see if the directory above the mount point exists
1431 test_path = Mount_Point + "/../.";
1432 if (stat(test_path.c_str(), &st2) != 0) return false;
1433
1434 // Compare the device IDs -- if they match then we're (probably) using tmpfs instead of an actual device
1435 int ret = (st1.st_dev != st2.st_dev) ? true : false;
1436
1437 return ret;
1438}
1439
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05001440bool TWPartition::Is_File_System_Writable(void) {
1441 if (!Is_File_System(Current_File_System) || !Is_Mounted())
1442 return false;
1443
1444 string test_path = Mount_Point + "/.";
1445 return (access(test_path.c_str(), W_OK) == 0);
1446}
1447
Dees_Troy5bf43922012-09-07 16:07:55 -04001448bool TWPartition::Mount(bool Display_Error) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001449 int exfat_mounted = 0;
Martin Dünkelmann6d843782018-12-27 23:40:28 +01001450 unsigned int flags = Mount_Flags;
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001451
Dees_Troy5bf43922012-09-07 16:07:55 -04001452 if (Is_Mounted()) {
1453 return true;
1454 } else if (!Can_Be_Mounted) {
1455 return false;
1456 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001457
1458 Find_Actual_Block_Device();
1459
1460 // Check the current file system before mounting
1461 Check_FS_Type();
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001462 if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sbin/exfat-fuse")) {
Dees_Troye34c1332013-02-06 19:13:00 +00001463 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 +00001464 LOGINFO("cmd: %s\n", cmd.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001465 string result;
1466 if (TWFunc::Exec_Cmd(cmd, result) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001467 LOGINFO("exfat-fuse failed to mount with result '%s', trying vfat\n", result.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001468 Current_File_System = "vfat";
1469 } else {
1470#ifdef TW_NO_EXFAT_FUSE
1471 UnMount(false);
1472 // We'll let the kernel handle it but using exfat-fuse to detect if the file system is actually exfat
1473 // Some kernels let us mount vfat as exfat which doesn't work out too well
1474#else
1475 exfat_mounted = 1;
1476#endif
1477 }
1478 }
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001479
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001480 if (Current_File_System == "ntfs" && (TWFunc::Path_Exists("/sbin/ntfs-3g") || TWFunc::Path_Exists("/sbin/mount.ntfs"))) {
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001481 string cmd;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001482 string Ntfsmount_Binary = "";
1483
1484 if (TWFunc::Path_Exists("/sbin/ntfs-3g"))
1485 Ntfsmount_Binary = "ntfs-3g";
1486 else if (TWFunc::Path_Exists("/sbin/mount.ntfs"))
1487 Ntfsmount_Binary = "mount.ntfs";
1488
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001489 if (Mount_Read_Only)
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001490 cmd = "/sbin/" + Ntfsmount_Binary + " -o ro " + Actual_Block_Device + " " + Mount_Point;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001491 else
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001492 cmd = "/sbin/" + Ntfsmount_Binary + " " + Actual_Block_Device + " " + Mount_Point;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001493 LOGINFO("cmd: '%s'\n", cmd.c_str());
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001494
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001495 if (TWFunc::Exec_Cmd(cmd) == 0) {
1496 return true;
1497 } else {
1498 LOGINFO("ntfs-3g failed to mount, trying regular mount method.\n");
1499 }
1500 }
1501
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001502 if (Mount_Read_Only)
1503 flags |= MS_RDONLY;
1504
Dees_Troy22042032012-12-18 21:23:08 +00001505 if (Fstab_File_System == "yaffs2") {
1506 // mount an MTD partition as a YAFFS2 filesystem.
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001507 flags = MS_NOATIME | MS_NODEV | MS_NODIRATIME;
1508 if (Mount_Read_Only)
1509 flags |= MS_RDONLY;
Dees_Troy76543db2013-06-19 16:24:30 +00001510 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags, NULL) < 0) {
1511 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags | MS_RDONLY, NULL) < 0) {
1512 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001513 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy76543db2013-06-19 16:24:30 +00001514 else
1515 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
1516 return false;
1517 } else {
1518 LOGINFO("Mounted '%s' (MTD) as RO\n", Mount_Point.c_str());
1519 return true;
1520 }
1521 } else {
1522 struct stat st;
1523 string test_path = Mount_Point;
1524 if (stat(test_path.c_str(), &st) < 0) {
1525 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001526 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy76543db2013-06-19 16:24:30 +00001527 else
1528 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
1529 return false;
1530 }
1531 mode_t new_mode = st.st_mode | S_IXUSR | S_IXGRP | S_IXOTH;
1532 if (new_mode != st.st_mode) {
1533 LOGINFO("Fixing execute permissions for %s\n", Mount_Point.c_str());
1534 if (chmod(Mount_Point.c_str(), new_mode) < 0) {
1535 if (Display_Error)
1536 LOGERR("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
1537 else
1538 LOGINFO("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
1539 return false;
1540 }
1541 }
Dees_Troy22042032012-12-18 21:23:08 +00001542 return true;
Dees_Troy76543db2013-06-19 16:24:30 +00001543 }
thatc7572eb2015-03-31 18:55:30 +02001544 }
1545
1546 string mount_fs = Current_File_System;
1547 if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sys/module/texfat"))
1548 mount_fs = "texfat";
1549
1550 if (!exfat_mounted &&
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001551 mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), mount_fs.c_str(), flags, Mount_Options.c_str()) != 0 &&
1552 mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), mount_fs.c_str(), flags, NULL) != 0) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001553#ifdef TW_NO_EXFAT_FUSE
1554 if (Current_File_System == "exfat") {
Dees_Troy2673cec2013-04-02 20:22:16 +00001555 LOGINFO("Mounting exfat failed, trying vfat...\n");
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001556 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), "vfat", 0, NULL) != 0) {
Dees_Troy85f44ed2013-01-09 18:42:36 +00001557 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001558 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy85f44ed2013-01-09 18:42:36 +00001559 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001560 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001561 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 +00001562 return false;
Dees_Troy85f44ed2013-01-09 18:42:36 +00001563 }
Dees_Troyb05ddee2013-01-28 20:24:50 +00001564 } else {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001565#endif
bigbiff bigbiff26774a02014-03-29 18:22:00 -04001566 if (!Removable && Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001567 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001568 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001569 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
1570 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 +00001571 return false;
1572#ifdef TW_NO_EXFAT_FUSE
Dees_Troy85f44ed2013-01-09 18:42:36 +00001573 }
1574#endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001575 }
Ethan Yonker253368a2014-11-25 15:00:52 -06001576
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001577 if (Removable)
1578 Update_Size(Display_Error);
1579
xiaolu9416f4f2015-06-04 08:22:23 +08001580 if (!Symlink_Mount_Point.empty() && TWFunc::Path_Exists(Symlink_Path)) {
codelover2a3d4ce2015-03-14 20:26:49 +08001581 string Command = "mount -o bind '" + Symlink_Path + "' '" + Symlink_Mount_Point + "'";
Vojtech Bocek05534202013-09-11 08:11:56 +02001582 TWFunc::Exec_Cmd(Command);
Dees_Troy5bf43922012-09-07 16:07:55 -04001583 }
Chaosmasterda974802020-01-26 21:09:28 +01001584
1585 if (Mount_Point == "/system_root") {
1586 unlink("/system");
1587 mkdir("/system", 0755);
1588 mount("/system_root/system", "/system", "auto", MS_BIND, NULL);
1589 }
1590
Dees_Troy5bf43922012-09-07 16:07:55 -04001591 return true;
1592}
1593
1594bool TWPartition::UnMount(bool Display_Error) {
Chaosmasterda974802020-01-26 21:09:28 +01001595 if (Mount_Point == "/system_root") {
1596 if (umount("/system") == -1)
1597 umount2("/system", MNT_DETACH);
1598 rmdir("/system");
1599 symlink("/system_root/system", "/system");
1600 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001601 if (Is_Mounted()) {
1602 int never_unmount_system;
1603
1604 DataManager::GetValue(TW_DONT_UNMOUNT_SYSTEM, never_unmount_system);
Captain Throwback9d6feb52018-07-27 10:05:24 -04001605 if (never_unmount_system == 1 && Mount_Point == PartitionManager.Get_Android_Root_Path())
Dees_Troy5bf43922012-09-07 16:07:55 -04001606 return true; // Never unmount system if you're not supposed to unmount it
1607
Matt Mowera8e6d832017-02-14 20:20:59 -06001608 if (Is_Storage && MTP_Storage_ID > 0)
Ethan Yonker726a0202014-12-16 20:01:38 -06001609 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001610
Dees_Troy38bd7602012-09-14 13:33:53 -04001611 if (!Symlink_Mount_Point.empty())
1612 umount(Symlink_Mount_Point.c_str());
1613
Dees_Troyb05ddee2013-01-28 20:24:50 +00001614 umount(Mount_Point.c_str());
1615 if (Is_Mounted()) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001616 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001617 gui_msg(Msg(msg::kError, "fail_unmount=Failed to unmount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy5bf43922012-09-07 16:07:55 -04001618 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001619 LOGINFO("Unable to unmount '%s'\n", Mount_Point.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001620 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001621 } else {
Dees_Troy5bf43922012-09-07 16:07:55 -04001622 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001623 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001624 } else {
1625 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001626 }
1627}
1628
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05001629bool TWPartition::ReMount(bool Display_Error) {
1630 if (UnMount(Display_Error))
1631 return Mount(Display_Error);
1632 return false;
1633}
1634
1635bool TWPartition::ReMount_RW(bool Display_Error) {
1636 // No need to remount if already mounted rw
1637 if (Is_File_System_Writable())
1638 return true;
1639
1640 bool ro = Mount_Read_Only;
1641 int flags = Mount_Flags;
1642
1643 Mount_Read_Only = false;
1644 Mount_Flags &= ~MS_RDONLY;
1645
1646 bool ret = ReMount(Display_Error);
1647
1648 Mount_Read_Only = ro;
1649 Mount_Flags = flags;
1650
1651 return ret;
1652}
1653
Gary Peck43acadf2012-11-21 21:19:01 -08001654bool TWPartition::Wipe(string New_File_System) {
Ethan Yonker726a0202014-12-16 20:01:38 -06001655 bool wiped = false, update_crypt = false, recreate_media = true;
Dees_Troy16c2b312013-01-15 16:51:18 +00001656 int check;
1657 string Layout_Filename = Mount_Point + "/.layout_version";
1658
Dees_Troy38bd7602012-09-14 13:33:53 -04001659 if (!Can_Be_Wiped) {
Matt Mower3c366972015-12-25 19:28:31 -06001660 gui_msg(Msg(msg::kError, "cannot_wipe=Partition {1} cannot be wiped.")(Display_Name));
Dees_Troy38bd7602012-09-14 13:33:53 -04001661 return false;
1662 }
1663
Dees_Troyc51f1f92012-09-20 15:32:13 -04001664 if (Mount_Point == "/cache")
Dees_Troy2673cec2013-04-02 20:22:16 +00001665 Log_Offset = 0;
Dees_Troyc51f1f92012-09-20 15:32:13 -04001666
Dees_Troy16c2b312013-01-15 16:51:18 +00001667 if (Retain_Layout_Version && Mount(false) && TWFunc::Path_Exists(Layout_Filename))
1668 TWFunc::copy_file(Layout_Filename, "/.layout_version", 0600);
1669 else
1670 unlink("/.layout_version");
Dees_Troy38bd7602012-09-14 13:33:53 -04001671
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001672 if (Has_Data_Media && Current_File_System == New_File_System) {
Dees_Troy16c2b312013-01-15 16:51:18 +00001673 wiped = Wipe_Data_Without_Wiping_Media();
bigbiff349ea552020-06-19 16:07:38 -04001674 if (Mount_Point == "/data" && TWFunc::get_log_dir() == DATA_LOGS_DIR) {
1675 bool created = Recreate_Logs_Dir();
1676 if (!created)
1677 LOGERR("Unable to create log directory for TWRP\n");
bigbiffa2bd7b72020-05-07 21:45:34 -04001678 }
Ethan Yonker5eac2222014-06-11 12:22:55 -05001679 recreate_media = false;
Dees_Troy16c2b312013-01-15 16:51:18 +00001680 } else {
Dees_Troy16c2b312013-01-15 16:51:18 +00001681 DataManager::GetValue(TW_RM_RF_VAR, check);
1682
Hashcodedabfd492013-08-29 22:45:30 -07001683 if (check || Use_Rm_Rf)
Dees_Troy16c2b312013-01-15 16:51:18 +00001684 wiped = Wipe_RMRF();
1685 else if (New_File_System == "ext4")
1686 wiped = Wipe_EXT4();
1687 else if (New_File_System == "ext2" || New_File_System == "ext3")
dianlujitao4879b372018-12-03 18:45:47 +08001688 wiped = Wipe_EXTFS(New_File_System);
Dees_Troy16c2b312013-01-15 16:51:18 +00001689 else if (New_File_System == "vfat")
1690 wiped = Wipe_FAT();
1691 else if (New_File_System == "exfat")
1692 wiped = Wipe_EXFAT();
1693 else if (New_File_System == "yaffs2")
1694 wiped = Wipe_MTD();
Dees_Troye5017042013-08-29 16:38:55 +00001695 else if (New_File_System == "f2fs")
1696 wiped = Wipe_F2FS();
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001697 else if (New_File_System == "ntfs")
1698 wiped = Wipe_NTFS();
Dees_Troy16c2b312013-01-15 16:51:18 +00001699 else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001700 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 +00001701 unlink("/.layout_version");
1702 return false;
1703 }
1704 update_crypt = wiped;
Gary Pecke8bc5d72012-12-21 06:45:25 -08001705 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001706
Gary Pecke8bc5d72012-12-21 06:45:25 -08001707 if (wiped) {
Mohd Faraz25371a72020-06-15 00:28:32 +05301708 if (Mount_Point == "/cache" && TWFunc::get_log_dir() != DATA_LOGS_DIR)
1709 DataManager::Output_Version();
1710
Dees_Troy16c2b312013-01-15 16:51:18 +00001711 if (TWFunc::Path_Exists("/.layout_version") && Mount(false))
1712 TWFunc::copy_file("/.layout_version", Layout_Filename, 0600);
1713
1714 if (update_crypt) {
1715 Setup_File_System(false);
1716 if (Is_Encrypted && !Is_Decrypted) {
1717 // just wiped an encrypted partition back to its unencrypted state
1718 Is_Encrypted = false;
1719 Is_Decrypted = false;
1720 Decrypted_Block_Device = "";
1721 if (Mount_Point == "/data") {
1722 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
1723 DataManager::SetValue(TW_IS_DECRYPTED, 0);
1724 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08001725 }
1726 }
Ethan Yonker5eac2222014-06-11 12:22:55 -05001727
Ethan Yonker66a19492015-12-10 10:19:45 -06001728 if (Has_Data_Media && recreate_media) {
Ethan Yonker5eac2222014-06-11 12:22:55 -05001729 Recreate_Media_Folder();
1730 }
Matt Mower209c9632016-01-20 12:08:35 -06001731 if (Is_Storage && Mount(false))
1732 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Gary Pecke8bc5d72012-12-21 06:45:25 -08001733 }
Matt Mower209c9632016-01-20 12:08:35 -06001734
Gary Pecke8bc5d72012-12-21 06:45:25 -08001735 return wiped;
Dees_Troy51a0e822012-09-05 15:24:24 -04001736}
1737
Gary Peck43acadf2012-11-21 21:19:01 -08001738bool TWPartition::Wipe() {
Gary Peck82599a82012-11-21 16:23:12 -08001739 if (Is_File_System(Current_File_System))
1740 return Wipe(Current_File_System);
1741 else
1742 return Wipe(Fstab_File_System);
Gary Peck43acadf2012-11-21 21:19:01 -08001743}
1744
Dees_Troye58d5262012-09-21 12:27:57 -04001745bool TWPartition::Wipe_AndSec(void) {
1746 if (!Has_Android_Secure)
1747 return false;
1748
Dees_Troye58d5262012-09-21 12:27:57 -04001749 if (!Mount(true))
1750 return false;
1751
Ethan Yonker74db1572015-10-28 12:44:49 -05001752 gui_msg(Msg("wiping=Wiping {1}")(Backup_Display_Name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001753 TWFunc::removeDir(Mount_Point + "/.android_secure/", true);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001754 return true;
Dees_Troye58d5262012-09-21 12:27:57 -04001755}
1756
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001757bool TWPartition::Can_Repair() {
Ethan Yonkera2719152015-05-28 09:44:41 -05001758 if (Mount_Read_Only)
1759 return false;
Matt Mower18794c82015-11-11 16:22:45 -06001760 if (Current_File_System == "vfat" && TWFunc::Path_Exists("/sbin/fsck.fat"))
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001761 return true;
1762 else if ((Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") && TWFunc::Path_Exists("/sbin/e2fsck"))
1763 return true;
1764 else if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sbin/fsck.exfat"))
1765 return true;
1766 else if (Current_File_System == "f2fs" && TWFunc::Path_Exists("/sbin/fsck.f2fs"))
1767 return true;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001768 else if (Current_File_System == "ntfs" && (TWFunc::Path_Exists("/sbin/ntfsfix") || TWFunc::Path_Exists("/sbin/fsck.ntfs")))
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001769 return true;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001770 return false;
1771}
1772
1773bool TWPartition::Repair() {
1774 string command;
1775
1776 if (Current_File_System == "vfat") {
Matt Mower18794c82015-11-11 16:22:45 -06001777 if (!TWFunc::Path_Exists("/sbin/fsck.fat")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001778 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.fat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001779 return false;
1780 }
1781 if (!UnMount(true))
1782 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001783 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.fat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001784 Find_Actual_Block_Device();
Matt Mower18794c82015-11-11 16:22:45 -06001785 command = "/sbin/fsck.fat -y " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001786 LOGINFO("Repair command: %s\n", command.c_str());
1787 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001788 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001789 return true;
1790 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001791 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001792 return false;
1793 }
1794 }
1795 if (Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") {
1796 if (!TWFunc::Path_Exists("/sbin/e2fsck")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001797 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("e2fsck"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001798 return false;
1799 }
1800 if (!UnMount(true))
1801 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001802 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("e2fsck"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001803 Find_Actual_Block_Device();
Ethan Yonkera2719152015-05-28 09:44:41 -05001804 command = "/sbin/e2fsck -fp " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001805 LOGINFO("Repair command: %s\n", command.c_str());
1806 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001807 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001808 return true;
1809 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001810 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001811 return false;
1812 }
1813 }
1814 if (Current_File_System == "exfat") {
1815 if (!TWFunc::Path_Exists("/sbin/fsck.exfat")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001816 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.exfat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001817 return false;
1818 }
1819 if (!UnMount(true))
1820 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001821 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.exfat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001822 Find_Actual_Block_Device();
1823 command = "/sbin/fsck.exfat " + Actual_Block_Device;
1824 LOGINFO("Repair command: %s\n", command.c_str());
1825 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001826 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001827 return true;
1828 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001829 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001830 return false;
1831 }
1832 }
1833 if (Current_File_System == "f2fs") {
1834 if (!TWFunc::Path_Exists("/sbin/fsck.f2fs")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001835 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.f2fs"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001836 return false;
1837 }
1838 if (!UnMount(true))
1839 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001840 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.f2fs"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001841 Find_Actual_Block_Device();
1842 command = "/sbin/fsck.f2fs " + Actual_Block_Device;
1843 LOGINFO("Repair command: %s\n", command.c_str());
1844 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001845 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001846 return true;
1847 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001848 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001849 return false;
1850 }
1851 }
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001852 if (Current_File_System == "ntfs") {
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001853 string Ntfsfix_Binary;
1854 if (TWFunc::Path_Exists("/sbin/ntfsfix"))
1855 Ntfsfix_Binary = "ntfsfix";
1856 else if (TWFunc::Path_Exists("/sbin/fsck.ntfs"))
1857 Ntfsfix_Binary = "fsck.ntfs";
1858 else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001859 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("ntfsfix"));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001860 return false;
1861 }
1862 if (!UnMount(true))
1863 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001864 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)(Ntfsfix_Binary));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001865 Find_Actual_Block_Device();
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001866 command = "/sbin/" + Ntfsfix_Binary + " " + Actual_Block_Device;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001867 LOGINFO("Repair command: %s\n", command.c_str());
1868 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001869 gui_msg("done=Done.");
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001870 return true;
1871 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001872 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001873 return false;
1874 }
1875 }
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001876 return false;
1877}
1878
Ethan Yonkera2719152015-05-28 09:44:41 -05001879bool TWPartition::Can_Resize() {
1880 if (Mount_Read_Only)
1881 return false;
1882 if ((Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") && TWFunc::Path_Exists("/sbin/resize2fs"))
1883 return true;
1884 return false;
1885}
1886
1887bool TWPartition::Resize() {
1888 string command;
1889
1890 if (Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") {
1891 if (!Can_Repair()) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001892 LOGINFO("Cannot resize %s because %s cannot be repaired before resizing.\n", Display_Name.c_str(), Display_Name.c_str());
1893 gui_msg(Msg(msg::kError, "cannot_resize=Cannot resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001894 return false;
1895 }
1896 if (!TWFunc::Path_Exists("/sbin/resize2fs")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001897 LOGINFO("resize2fs does not exist! Cannot resize!\n");
1898 gui_msg(Msg(msg::kError, "cannot_resize=Cannot resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001899 return false;
1900 }
1901 // Repair will unmount so no need to do it twice
Ethan Yonker74db1572015-10-28 12:44:49 -05001902 gui_msg(Msg("repair_resize=Repairing {1} before resizing.")( Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001903 if (!Repair())
1904 return false;
Ethan Yonker74db1572015-10-28 12:44:49 -05001905 gui_msg(Msg("resizing=Resizing {1} using {2}...")(Display_Name)("resize2fs"));
Ethan Yonkera2719152015-05-28 09:44:41 -05001906 Find_Actual_Block_Device();
1907 command = "/sbin/resize2fs " + Actual_Block_Device;
1908 if (Length != 0) {
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001909 unsigned long long Actual_Size = IOCTL_Get_Block_Size();
1910 if (Actual_Size == 0)
1911 return false;
Ethan Yonkera2719152015-05-28 09:44:41 -05001912
Ethan Yonkera2719152015-05-28 09:44:41 -05001913 unsigned long long Block_Count;
1914 if (Length < 0) {
1915 // Reduce overall size by this length
1916 Block_Count = (Actual_Size / 1024LLU) - ((unsigned long long)(Length * -1) / 1024LLU);
1917 } else {
1918 // This is the size, not a size reduction
1919 Block_Count = ((unsigned long long)(Length) / 1024LLU);
1920 }
1921 char temp[256];
1922 sprintf(temp, "%llu", Block_Count);
1923 command += " ";
1924 command += temp;
1925 command += "K";
1926 }
1927 LOGINFO("Resize command: %s\n", command.c_str());
1928 if (TWFunc::Exec_Cmd(command) == 0) {
1929 Update_Size(true);
Ethan Yonker74db1572015-10-28 12:44:49 -05001930 gui_msg("done=Done.");
Ethan Yonkera2719152015-05-28 09:44:41 -05001931 return true;
1932 } else {
1933 Update_Size(true);
Ethan Yonker74db1572015-10-28 12:44:49 -05001934 gui_msg(Msg(msg::kError, "unable_resize=Unable to resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001935 return false;
1936 }
1937 }
1938 return false;
1939}
1940
bigbiffce8f83c2015-12-12 18:30:21 -05001941bool TWPartition::Backup(PartitionSettings *part_settings, pid_t *tar_fork_pid) {
1942 if (Backup_Method == BM_FILES)
1943 return Backup_Tar(part_settings, tar_fork_pid);
1944 else if (Backup_Method == BM_DD)
1945 return Backup_Image(part_settings);
1946 else if (Backup_Method == BM_FLASH_UTILS)
1947 return Backup_Dump_Image(part_settings);
Dees_Troy2673cec2013-04-02 20:22:16 +00001948 LOGERR("Unknown backup method for '%s'\n", Mount_Point.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001949 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001950}
1951
bigbiffce8f83c2015-12-12 18:30:21 -05001952bool TWPartition::Restore(PartitionSettings *part_settings) {
Matt Mower3c366972015-12-25 19:28:31 -06001953 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001954 LOGINFO("Restore filename is: %s/%s\n", part_settings->Backup_Folder.c_str(), Backup_FileName.c_str());
Gary Peck43acadf2012-11-21 21:19:01 -08001955
bigbiffce8f83c2015-12-12 18:30:21 -05001956 string Restore_File_System = Get_Restore_File_System(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001957
1958 if (Is_File_System(Restore_File_System))
bigbiffce8f83c2015-12-12 18:30:21 -05001959 return Restore_Tar(part_settings);
1960 else if (Is_Image(Restore_File_System))
1961 return Restore_Image(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001962
1963 LOGERR("Unknown restore method for '%s'\n", Mount_Point.c_str());
1964 return false;
1965}
1966
bigbiffce8f83c2015-12-12 18:30:21 -05001967string TWPartition::Get_Restore_File_System(PartitionSettings *part_settings) {
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001968 size_t first_period, second_period;
1969 string Restore_File_System;
1970
Gary Peck43acadf2012-11-21 21:19:01 -08001971 // Parse backup filename to extract the file system before wiping
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001972 first_period = Backup_FileName.find(".");
Gary Peck43acadf2012-11-21 21:19:01 -08001973 if (first_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001974 LOGERR("Unable to find file system (first period).\n");
thatd43bf2d2014-09-21 23:13:02 +02001975 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08001976 }
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001977 Restore_File_System = Backup_FileName.substr(first_period + 1, Backup_FileName.size() - first_period - 1);
Gary Peck43acadf2012-11-21 21:19:01 -08001978 second_period = Restore_File_System.find(".");
1979 if (second_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001980 LOGERR("Unable to find file system (second period).\n");
thatd43bf2d2014-09-21 23:13:02 +02001981 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08001982 }
1983 Restore_File_System.resize(second_period);
Matt Mowera0cd91d2016-12-30 18:21:42 -06001984 LOGINFO("Restore file system is: '%s'.\n", Restore_File_System.c_str());
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001985 return Restore_File_System;
Dees_Troy51a0e822012-09-05 15:24:24 -04001986}
1987
1988string TWPartition::Backup_Method_By_Name() {
bigbiffce8f83c2015-12-12 18:30:21 -05001989 if (Backup_Method == BM_NONE)
Dees_Troy38bd7602012-09-14 13:33:53 -04001990 return "none";
bigbiffce8f83c2015-12-12 18:30:21 -05001991 else if (Backup_Method == BM_FILES)
Dees_Troy38bd7602012-09-14 13:33:53 -04001992 return "files";
bigbiffce8f83c2015-12-12 18:30:21 -05001993 else if (Backup_Method == BM_DD)
Dees_Troy38bd7602012-09-14 13:33:53 -04001994 return "dd";
bigbiffce8f83c2015-12-12 18:30:21 -05001995 else if (Backup_Method == BM_FLASH_UTILS)
Dees_Troy38bd7602012-09-14 13:33:53 -04001996 return "flash_utils";
1997 else
1998 return "undefined";
1999 return "ERROR!";
Dees_Troy51a0e822012-09-05 15:24:24 -04002000}
2001
2002bool TWPartition::Decrypt(string Password) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002003 LOGINFO("STUB TWPartition::Decrypt, password: '%s'\n", Password.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04002004 // Is this needed?
Dees_Troy51a0e822012-09-05 15:24:24 -04002005 return 1;
2006}
2007
2008bool TWPartition::Wipe_Encryption() {
Dees_Troy38bd7602012-09-14 13:33:53 -04002009 bool Save_Data_Media = Has_Data_Media;
Ethan Yonker93382822018-11-01 15:25:31 -05002010 bool ret = false;
2011 BasePartition* base_partition = make_partition();
2012
2013 if (!base_partition->PreWipeEncryption())
2014 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002015
dianlujitao4879b372018-12-03 18:45:47 +08002016 Find_Actual_Block_Device();
2017 if (!Is_Present) {
2018 LOGINFO("Block device not present, cannot format %s.\n", Display_Name.c_str());
2019 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2020 return false;
2021 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002022
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002023#ifdef TW_INCLUDE_CRYPTO
bigbiffa2bd7b72020-05-07 21:45:34 -04002024 if (!UnMount(true))
2025 return false;
Ethan Yonker1b190162016-12-05 15:25:19 -06002026 if (Is_Decrypted && !Decrypted_Block_Device.empty()) {
Matt Mower2b18a532015-02-20 16:58:05 -06002027 if (delete_crypto_blk_dev((char*)("userdata")) != 0) {
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002028 LOGERR("Error deleting crypto block device, continuing anyway.\n");
2029 }
2030 }
2031#endif
dianlujitao4879b372018-12-03 18:45:47 +08002032 Has_Data_Media = false;
Ethan Yonker93382822018-11-01 15:25:31 -05002033 Decrypted_Block_Device = "";
Dees_Troy74fb2e92013-04-15 14:35:47 +00002034 Is_Decrypted = false;
2035 Is_Encrypted = false;
Gary Pecke8bc5d72012-12-21 06:45:25 -08002036 if (Wipe(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04002037 Has_Data_Media = Save_Data_Media;
2038 if (Has_Data_Media && !Symlink_Mount_Point.empty()) {
2039 Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06002040 if (Mount(false))
2041 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04002042 }
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002043 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
Ethan Yonker83e82572014-04-04 10:59:28 -05002044#ifndef TW_OEM_BUILD
bigbiff349ea552020-06-19 16:07:38 -04002045 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 -05002046#endif
Ethan Yonker93382822018-11-01 15:25:31 -05002047 ret = true;
2048 if (!Key_Directory.empty())
2049 ret = PartitionManager.Wipe_By_Path(Key_Directory);
2050 if (ret)
2051 ret = base_partition->PostWipeEncryption();
2052 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002053 } else {
2054 Has_Data_Media = Save_Data_Media;
Ethan Yonker74db1572015-10-28 12:44:49 -05002055 gui_err("format_data_err=Unable to format to remove encryption.");
Ethan Yonker726a0202014-12-16 20:01:38 -06002056 if (Has_Data_Media && Mount(false))
2057 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -05002058 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002059 }
Ethan Yonker93382822018-11-01 15:25:31 -05002060exit:
2061 delete base_partition;
2062 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04002063}
2064
2065void TWPartition::Check_FS_Type() {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002066 const char* type;
2067 blkid_probe pr;
Dees_Troy5bf43922012-09-07 16:07:55 -04002068
Dees_Troy68cab492012-12-12 19:29:35 +00002069 if (Fstab_File_System == "yaffs2" || Fstab_File_System == "mtd" || Fstab_File_System == "bml" || Ignore_Blkid)
2070 return; // Running blkid on some mtd devices causes a massive crash or needs to be skipped
Dees_Troy5bf43922012-09-07 16:07:55 -04002071
Dees_Troy38bd7602012-09-14 13:33:53 -04002072 Find_Actual_Block_Device();
Dees_Troy8170a922012-09-18 15:40:25 -04002073 if (!Is_Present)
2074 return;
Dees_Troy51127312012-09-08 13:08:49 -04002075
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002076 pr = blkid_new_probe_from_filename(Actual_Block_Device.c_str());
2077 if (blkid_do_fullprobe(pr)) {
2078 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00002079 LOGINFO("Can't probe device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002080 return;
Dees_Troy5bf43922012-09-07 16:07:55 -04002081 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002082
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05002083 if (blkid_probe_lookup_value(pr, "TYPE", &type, NULL) < 0) {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002084 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00002085 LOGINFO("can't find filesystem on device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002086 return;
2087 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002088
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002089 Current_File_System = type;
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002090 blkid_free_probe(pr);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002091 if (fs_flags.size() > 1) {
2092 std::vector<partition_fs_flags_struct>::iterator iter;
2093 std::vector<partition_fs_flags_struct>::iterator found = fs_flags.begin();
2094
2095 for (iter = fs_flags.begin(); iter != fs_flags.end(); iter++) {
2096 if (iter->File_System == Current_File_System) {
2097 found = iter;
2098 break;
2099 }
2100 }
2101 // If we don't find a match, we default the flags to the first set of flags that we received from the fstab
2102 if (Mount_Flags != found->Mount_Flags || Mount_Options != found->Mount_Options) {
2103 Mount_Flags = found->Mount_Flags;
2104 Mount_Options = found->Mount_Options;
2105 LOGINFO("Mount_Flags: %i, Mount_Options: %s\n", Mount_Flags, Mount_Options.c_str());
2106 }
2107 }
Dees_Troy51a0e822012-09-05 15:24:24 -04002108}
2109
dianlujitao4879b372018-12-03 18:45:47 +08002110bool TWPartition::Wipe_EXTFS(string File_System) {
bigbiffa2bd7b72020-05-07 21:45:34 -04002111 if (!UnMount(true))
2112 return false;
2113
dianlujitao4879b372018-12-03 18:45:47 +08002114#if PLATFORM_SDK_VERSION < 28
2115 if (!TWFunc::Path_Exists("/sbin/mke2fs"))
2116#else
2117 if (!TWFunc::Path_Exists("/sbin/mke2fs") || !TWFunc::Path_Exists("/sbin/e2fsdroid"))
2118#endif
Dees_Troy38bd7602012-09-14 13:33:53 -04002119 return Wipe_RMRF();
2120
dianlujitao4879b372018-12-03 18:45:47 +08002121 int ret;
2122 bool NeedPreserveFooter = true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002123
Ethan Yonker25f20c12014-10-14 09:04:43 -05002124 Find_Actual_Block_Device();
2125 if (!Is_Present) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002126 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2127 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Ethan Yonker25f20c12014-10-14 09:04:43 -05002128 return false;
2129 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002130 if (!UnMount(true))
2131 return false;
2132
dianlujitao4879b372018-12-03 18:45:47 +08002133 /**
2134 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2135 * so there's no need to preserve footer.
2136 */
2137 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2138 Crypto_Key_Location != "footer") {
2139 NeedPreserveFooter = false;
2140 }
2141
2142 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2143 if (!dev_sz)
2144 return false;
2145
2146 if (NeedPreserveFooter)
2147 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2148
Dees Troy9a4d7402019-03-21 14:17:28 -04002149 char dout[16];
2150 sprintf(dout, "%llu", dev_sz / 4096);
2151
2152 //string size_str =to_string(dev_sz / 4096);
2153 string size_str = dout;
dianlujitao4879b372018-12-03 18:45:47 +08002154 string Command;
2155
2156 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mke2fs"));
2157
2158 // Execute mke2fs to create empty ext4 filesystem
2159 Command = "mke2fs -t " + File_System + " -b 4096 " + Actual_Block_Device + " " + size_str;
2160 LOGINFO("mke2fs command: %s\n", Command.c_str());
2161 ret = TWFunc::Exec_Cmd(Command);
2162 if (ret) {
2163 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2164 return false;
2165 }
2166
2167 if (TWFunc::Path_Exists("/sbin/e2fsdroid")) {
dianlujitao3cf05a52019-05-15 15:33:27 +08002168 const string& File_Contexts_Entry = (Mount_Point == "/system_root" ? "/" : Mount_Point);
2169 char *secontext = NULL;
2170 if (!selinux_handle || selabel_lookup(selinux_handle, &secontext, File_Contexts_Entry.c_str(), S_IFDIR) < 0) {
2171 LOGINFO("Cannot lookup security context for '%s'\n", Mount_Point.c_str());
2172 } else {
2173 // Execute e2fsdroid to initialize selinux context
2174 Command = "e2fsdroid -e -S /file_contexts -a " + File_Contexts_Entry + " " + Actual_Block_Device;
2175 LOGINFO("e2fsdroid command: %s\n", Command.c_str());
2176 ret = TWFunc::Exec_Cmd(Command);
2177 if (ret) {
2178 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2179 return false;
2180 }
dianlujitao4879b372018-12-03 18:45:47 +08002181 }
2182 } else {
2183 LOGINFO("e2fsdroid not present\n");
2184 }
2185
2186 if (NeedPreserveFooter)
2187 Wipe_Crypto_Key();
2188 Current_File_System = File_System;
2189 Recreate_AndSec_Folder();
2190 gui_msg("done=Done.");
2191 return true;
2192}
2193
2194bool TWPartition::Wipe_EXT4() {
2195#ifdef USE_EXT4
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002196 int ret;
dianlujitao4879b372018-12-03 18:45:47 +08002197 bool NeedPreserveFooter = true;
2198
2199 Find_Actual_Block_Device();
2200 if (!Is_Present) {
2201 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2202 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2203 return false;
2204 }
2205 if (!UnMount(true))
2206 return false;
2207
2208 /**
2209 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2210 * so there's no need to preserve footer.
2211 */
2212 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2213 Crypto_Key_Location != "footer") {
2214 NeedPreserveFooter = false;
2215 }
2216
2217 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2218 if (!dev_sz)
2219 return false;
2220
2221 if (NeedPreserveFooter)
2222 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2223
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002224 char *secontext = NULL;
2225
Greg Wallace4b44fef2015-12-29 15:33:24 -05002226 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("make_ext4fs"));
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002227
Dees Troy99c8dbf2014-03-10 16:53:58 +00002228 if (!selinux_handle || selabel_lookup(selinux_handle, &secontext, Mount_Point.c_str(), S_IFDIR) < 0) {
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002229 LOGINFO("Cannot lookup security context for '%s'\n", Mount_Point.c_str());
dianlujitao4879b372018-12-03 18:45:47 +08002230 ret = make_ext4fs(Actual_Block_Device.c_str(), dev_sz, Mount_Point.c_str(), NULL);
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002231 } else {
dianlujitao4879b372018-12-03 18:45:47 +08002232 ret = make_ext4fs(Actual_Block_Device.c_str(), dev_sz, Mount_Point.c_str(), selinux_handle);
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002233 }
2234 if (ret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002235 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troya95f55c2013-08-17 13:14:43 +00002236 return false;
2237 } else {
dianlujitao4879b372018-12-03 18:45:47 +08002238 if (NeedPreserveFooter)
2239 Wipe_Crypto_Key();
bigbiff bigbiffc49d7062013-10-11 20:28:00 -04002240 string sedir = Mount_Point + "/lost+found";
2241 PartitionManager.Mount_By_Path(sedir.c_str(), true);
2242 rmdir(sedir.c_str());
2243 mkdir(sedir.c_str(), S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP);
Dees_Troya95f55c2013-08-17 13:14:43 +00002244 return true;
2245 }
2246#else
dianlujitao4879b372018-12-03 18:45:47 +08002247 return Wipe_EXTFS("ext4");
Dees_Troya95f55c2013-08-17 13:14:43 +00002248#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002249}
2250
2251bool TWPartition::Wipe_FAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002252 string command;
bigbiffa2bd7b72020-05-07 21:45:34 -04002253 if (!UnMount(true))
2254 return false;
Dees_Troy38bd7602012-09-14 13:33:53 -04002255
Matt Mower18794c82015-11-11 16:22:45 -06002256 if (TWFunc::Path_Exists("/sbin/mkfs.fat")) {
Greg Wallace4b44fef2015-12-29 15:33:24 -05002257 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkfs.fat"));
Dees_Troy38bd7602012-09-14 13:33:53 -04002258 Find_Actual_Block_Device();
Matt Mower18794c82015-11-11 16:22:45 -06002259 command = "mkfs.fat " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02002260 if (TWFunc::Exec_Cmd(command) == 0) {
Gary Pecke8bc5d72012-12-21 06:45:25 -08002261 Current_File_System = "vfat";
Dees_Troye58d5262012-09-21 12:27:57 -04002262 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002263 gui_msg("done=Done.");
Dees_Troy38bd7602012-09-14 13:33:53 -04002264 return true;
2265 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002266 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troy38bd7602012-09-14 13:33:53 -04002267 return false;
2268 }
2269 return true;
2270 }
2271 else
2272 return Wipe_RMRF();
2273
2274 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002275}
2276
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002277bool TWPartition::Wipe_EXFAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002278 string command;
bigbiffa2bd7b72020-05-07 21:45:34 -04002279 if (!UnMount(true))
2280 return false;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002281
2282 if (TWFunc::Path_Exists("/sbin/mkexfatfs")) {
Greg Wallace4b44fef2015-12-29 15:33:24 -05002283 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkexfatfs"));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002284 Find_Actual_Block_Device();
2285 command = "mkexfatfs " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02002286 if (TWFunc::Exec_Cmd(command) == 0) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002287 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002288 gui_msg("done=Done.");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002289 return true;
2290 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002291 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002292 return false;
2293 }
2294 return true;
2295 }
2296 return false;
2297}
2298
Dees_Troy38bd7602012-09-14 13:33:53 -04002299bool TWPartition::Wipe_MTD() {
2300 if (!UnMount(true))
2301 return false;
2302
Greg Wallace4b44fef2015-12-29 15:33:24 -05002303 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("MTD"));
Dees_Troy38bd7602012-09-14 13:33:53 -04002304
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002305 mtd_scan_partitions();
2306 const MtdPartition* mtd = mtd_find_partition_by_name(MTD_Name.c_str());
2307 if (mtd == NULL) {
2308 LOGERR("No mtd partition named '%s'", MTD_Name.c_str());
2309 return false;
2310 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002311
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002312 MtdWriteContext* ctx = mtd_write_partition(mtd);
2313 if (ctx == NULL) {
2314 LOGERR("Can't write '%s', failed to format.", MTD_Name.c_str());
2315 return false;
2316 }
2317 if (mtd_erase_blocks(ctx, -1) == -1) {
2318 mtd_write_close(ctx);
2319 LOGERR("Failed to format '%s'", MTD_Name.c_str());
2320 return false;
2321 }
2322 if (mtd_write_close(ctx) != 0) {
2323 LOGERR("Failed to close '%s'", MTD_Name.c_str());
2324 return false;
2325 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08002326 Current_File_System = "yaffs2";
Dees_Troye58d5262012-09-21 12:27:57 -04002327 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002328 gui_msg("done=Done.");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002329 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002330}
2331
2332bool TWPartition::Wipe_RMRF() {
Dees_Troy38bd7602012-09-14 13:33:53 -04002333 if (!Mount(true))
2334 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002335 // This is the only wipe that leaves the partition mounted, so we
2336 // must manually remove the partition from MTP if it is a storage
2337 // partition.
2338 if (Is_Storage)
2339 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04002340
Ethan Yonker74db1572015-10-28 12:44:49 -05002341 gui_msg(Msg("remove_all=Removing all files under '{1}'")(Mount_Point));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002342 TWFunc::removeDir(Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04002343 Recreate_AndSec_Folder();
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002344 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002345}
2346
Dees_Troye5017042013-08-29 16:38:55 +00002347bool TWPartition::Wipe_F2FS() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002348 string command;
bigbiffa2bd7b72020-05-07 21:45:34 -04002349 if (!UnMount(true))
2350 return false;
Dees_Troye5017042013-08-29 16:38:55 +00002351
2352 if (TWFunc::Path_Exists("/sbin/mkfs.f2fs")) {
dianlujitao4879b372018-12-03 18:45:47 +08002353 bool NeedPreserveFooter = true;
2354
2355 Find_Actual_Block_Device();
2356 if (!Is_Present) {
2357 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2358 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2359 return false;
2360 }
Dees_Troye5017042013-08-29 16:38:55 +00002361
dianlujitao4879b372018-12-03 18:45:47 +08002362 /**
2363 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2364 * so there's no need to preserve footer.
2365 */
2366 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2367 Crypto_Key_Location != "footer") {
2368 NeedPreserveFooter = false;
dhacker29a3fa75f2015-01-17 19:42:33 -05002369 }
dianlujitao4879b372018-12-03 18:45:47 +08002370
dianlujitao4879b372018-12-03 18:45:47 +08002371 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkfs.f2fs"));
Ethan Yonker7e941582019-03-22 08:18:21 -05002372 // First determine if we have the old mkfs.f2fs that uses "-r reserved_bytes"
2373 // or the new mkfs.f2fs that expects the number of sectors as the optional last argument
2374 // Note: some 7.1 trees have the old and some have the new.
2375 command = "mkfs.f2fs | grep \"reserved\" > /tmp/f2fsversiontest";
2376 TWFunc::Exec_Cmd(command, false); // no help argument so printing usage exits with an error code
2377 if (!TWFunc::Path_Exists("/tmp/f2fsversiontest")) {
2378 LOGINFO("Error determining mkfs.f2fs version\n");
2379 return false;
2380 }
2381 if (TWFunc::Get_File_Size("/tmp/f2fsversiontest") <= 0) {
2382 LOGINFO("Using newer mkfs.f2fs\n");
2383 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2384 if (!dev_sz)
2385 return false;
2386
2387 if (NeedPreserveFooter)
2388 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2389
2390 char dev_sz_str[48];
2391 sprintf(dev_sz_str, "%llu", (dev_sz / 4096));
2392 command = "mkfs.f2fs -d1 -f -O encrypt -O quota -O verity -w 4096 " + Actual_Block_Device + " " + dev_sz_str;
2393 if (TWFunc::Path_Exists("/sbin/sload.f2fs")) {
2394 command += " && sload.f2fs -t /data " + Actual_Block_Device;
2395 }
2396 } else {
2397 LOGINFO("Using older mkfs.f2fs\n");
2398 command = "mkfs.f2fs -t 0";
2399 if (NeedPreserveFooter) {
2400 // Only use length if we're not decrypted
2401 char len[32];
2402 int mod_length = Length;
2403 if (Length < 0)
2404 mod_length *= -1;
2405 sprintf(len, "%i", mod_length);
2406 command += " -r ";
2407 command += len;
2408 }
2409 command += " " + Actual_Block_Device;
dianlujitao4879b372018-12-03 18:45:47 +08002410 }
2411 LOGINFO("mkfs.f2fs command: %s\n", command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002412 if (TWFunc::Exec_Cmd(command) == 0) {
dianlujitao4879b372018-12-03 18:45:47 +08002413 if (NeedPreserveFooter)
2414 Wipe_Crypto_Key();
Dees_Troye5017042013-08-29 16:38:55 +00002415 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002416 gui_msg("done=Done.");
Dees_Troye5017042013-08-29 16:38:55 +00002417 return true;
2418 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002419 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troye5017042013-08-29 16:38:55 +00002420 return false;
2421 }
2422 return true;
2423 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002424 LOGINFO("mkfs.f2fs binary not found, using rm -rf to wipe.\n");
Dees_Troye5017042013-08-29 16:38:55 +00002425 return Wipe_RMRF();
2426 }
2427 return false;
2428}
2429
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002430bool TWPartition::Wipe_NTFS() {
2431 string command;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002432 string Ntfsmake_Binary;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002433
bigbiffa2bd7b72020-05-07 21:45:34 -04002434 if (!UnMount(true))
2435 return false;
2436
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002437 if (TWFunc::Path_Exists("/sbin/mkntfs"))
2438 Ntfsmake_Binary = "mkntfs";
2439 else if (TWFunc::Path_Exists("/sbin/mkfs.ntfs"))
2440 Ntfsmake_Binary = "mkfs.ntfs";
2441 else
2442 return false;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002443
Greg Wallace4b44fef2015-12-29 15:33:24 -05002444 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)(Ntfsmake_Binary));
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002445 Find_Actual_Block_Device();
2446 command = "/sbin/" + Ntfsmake_Binary + " " + Actual_Block_Device;
2447 if (TWFunc::Exec_Cmd(command) == 0) {
2448 Recreate_AndSec_Folder();
2449 gui_msg("done=Done.");
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002450 return true;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002451 } else {
2452 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2453 return false;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002454 }
2455 return false;
2456}
2457
Dees_Troy51a0e822012-09-05 15:24:24 -04002458bool TWPartition::Wipe_Data_Without_Wiping_Media() {
Ethan Yonker83e82572014-04-04 10:59:28 -05002459#ifdef TW_OEM_BUILD
2460 // In an OEM Build we want to do a full format
2461 return Wipe_Encryption();
2462#else
Ethan Yonker66a19492015-12-10 10:19:45 -06002463 bool ret = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04002464
Dees_Troy38bd7602012-09-14 13:33:53 -04002465 if (!Mount(true))
2466 return false;
Ethan Yonker74db1572015-10-28 12:44:49 -05002467 gui_msg("wiping_data=Wiping data without wiping /data/media ...");
Ethan Yonker66a19492015-12-10 10:19:45 -06002468 ret = Wipe_Data_Without_Wiping_Media_Func(Mount_Point + "/");
2469 if (ret)
2470 gui_msg("done=Done.");
2471 return ret;
2472#endif // ifdef TW_OEM_BUILD
2473}
2474
bigbiff349ea552020-06-19 16:07:38 -04002475bool TWPartition::Recreate_Logs_Dir() {
bigbifff62d2492020-05-20 10:15:34 -04002476#ifdef TW_INCLUDE_FBE
bigbiffa2bd7b72020-05-07 21:45:34 -04002477 struct passwd pd;
2478 struct passwd *pwdptr = &pd;
2479 struct passwd *tempPd;
2480 char pwdBuf[512];
2481 int uid = 0, gid = 0;
2482
2483 if ((getpwnam_r("system", pwdptr, pwdBuf, sizeof(pwdBuf), &tempPd)) != 0) {
2484 LOGERR("unable to get system user id\n");
2485 return false;
2486 } else {
2487 struct group grp;
2488 struct group *grpptr = &grp;
2489 struct group *tempGrp;
2490 char grpBuf[512];
2491
2492 if ((getgrnam_r("cache", grpptr, grpBuf, sizeof(grpBuf), &tempGrp)) != 0) {
2493 LOGERR("unable to get cache group id\n");
2494 return false;
2495 } else {
2496 uid = pd.pw_uid;
2497 gid = grp.gr_gid;
bigbiff349ea552020-06-19 16:07:38 -04002498 std::string abLogsRecoveryDir(DATA_LOGS_DIR);
2499 abLogsRecoveryDir += "/recovery/";
bigbiffa2bd7b72020-05-07 21:45:34 -04002500
bigbiff349ea552020-06-19 16:07:38 -04002501 if (!TWFunc::Create_Dir_Recursive(abLogsRecoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, uid, gid)) {
2502 LOGERR("Unable to recreate %s\n", abLogsRecoveryDir.c_str());
bigbiffa2bd7b72020-05-07 21:45:34 -04002503 return false;
2504 }
bigbiff349ea552020-06-19 16:07:38 -04002505 if (setfilecon(abLogsRecoveryDir.c_str(), "u:object_r:cache_file:s0") != 0) {
2506 LOGERR("Unable to set contexts for %s\n", abLogsRecoveryDir.c_str());
bigbiffa2bd7b72020-05-07 21:45:34 -04002507 return false;
2508 }
2509 }
2510 }
bigbifff62d2492020-05-20 10:15:34 -04002511#endif
bigbiffa2bd7b72020-05-07 21:45:34 -04002512 return true;
2513}
2514
Ethan Yonker66a19492015-12-10 10:19:45 -06002515bool TWPartition::Wipe_Data_Without_Wiping_Media_Func(const string& parent __unused) {
2516 string dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04002517
2518 DIR* d;
Ethan Yonker66a19492015-12-10 10:19:45 -06002519 d = opendir(parent.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +00002520 if (d != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04002521 struct dirent* de;
2522 while ((de = readdir(d)) != NULL) {
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05002523 if (strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0) continue;
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05002524
Ethan Yonker66a19492015-12-10 10:19:45 -06002525 dir = parent;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002526 dir.append(de->d_name);
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002527 if (wipe_exclusions.check_skip_dirs(dir)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002528 LOGINFO("skipped '%s'\n", dir.c_str());
2529 continue;
2530 }
Dees_Troyce675462013-01-09 19:48:21 +00002531 if (de->d_type == DT_DIR) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002532 dir.append("/");
2533 if (!Wipe_Data_Without_Wiping_Media_Func(dir)) {
2534 closedir(d);
2535 return false;
2536 }
2537 rmdir(dir.c_str());
bigbiff bigbiff98f1f902013-01-19 18:46:13 -05002538 } 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 +03002539 if (unlink(dir.c_str()) != 0)
Ethan Yonker79f88bd2016-12-09 14:52:12 -06002540 LOGINFO("Unable to unlink '%s': %s\n", dir.c_str(), strerror(errno));
Dees_Troyce675462013-01-09 19:48:21 +00002541 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002542 }
2543 closedir(d);
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05002544
Dees_Troy16b74352012-11-14 22:27:31 +00002545 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -04002546 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002547 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy16b74352012-11-14 22:27:31 +00002548 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002549}
2550
dianlujitao4879b372018-12-03 18:45:47 +08002551void TWPartition::Wipe_Crypto_Key() {
2552 Find_Actual_Block_Device();
2553 if (Crypto_Key_Location.empty())
2554 return;
2555 else if (Crypto_Key_Location == "footer") {
2556 int fd = open(Actual_Block_Device.c_str(), O_RDWR);
2557 if (fd < 0) {
2558 gui_print_color("warning", "Unable to open '%s' to wipe crypto key\n", Actual_Block_Device.c_str());
2559 return;
2560 }
2561
2562 unsigned int block_count;
2563 if ((ioctl(fd, BLKGETSIZE, &block_count)) == -1) {
2564 gui_print_color("warning", "Unable to get block size for wiping crypto footer.\n");
2565 } else {
2566 int newlen = Length < 0 ? -Length : CRYPT_FOOTER_OFFSET;
2567 off64_t offset = ((off64_t)block_count * 512) - newlen;
2568 if (lseek64(fd, offset, SEEK_SET) == -1) {
2569 gui_print_color("warning", "Unable to lseek64 for wiping crypto footer.\n");
2570 } else {
2571 void* buffer = malloc(newlen);
2572 if (!buffer) {
2573 gui_print_color("warning", "Failed to malloc for wiping crypto footer.\n");
2574 } else {
2575 memset(buffer, 0, newlen);
2576 int ret = write(fd, buffer, newlen);
2577 if (ret != newlen) {
2578 gui_print_color("warning", "Failed to wipe crypto footer.\n");
2579 } else {
2580 LOGINFO("Successfully wiped crypto footer.\n");
2581 }
2582 free(buffer);
2583 }
2584 }
2585 }
2586 close(fd);
2587 } else {
2588 if (TWFunc::IOCTL_Get_Block_Size(Crypto_Key_Location.c_str()) >= 16384LLU) {
2589 string Command = "dd of='" + Crypto_Key_Location + "' if=/dev/zero bs=16384 count=1";
2590 TWFunc::Exec_Cmd(Command);
2591 } else {
2592 LOGINFO("Crypto key location reports size < 16K so not wiping crypto footer.\n");
2593 }
2594 }
2595}
2596
bigbiffce8f83c2015-12-12 18:30:21 -05002597bool TWPartition::Backup_Tar(PartitionSettings *part_settings, pid_t *tar_fork_pid) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002598 string Full_FileName;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002599 twrpTar tar;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -05002600
Dees_Troy43d8b002012-09-17 16:00:01 -04002601 if (!Mount(true))
2602 return false;
2603
Ian Macdonalda3b25a32019-06-16 22:39:14 +02002604 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Backup_Display_Name, gui_parse_text("{@backing}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002605 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002606
Ethan Yonker472f5062016-02-25 13:47:30 -06002607 DataManager::GetValue(TW_USE_COMPRESSION_VAR, tar.use_compression);
Matt Mowerbb81e5d2014-03-20 18:05:41 -05002608
Dees_Troy83bd4832013-05-04 12:39:56 +00002609#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
Ethan Yonker472f5062016-02-25 13:47:30 -06002610 if (Can_Encrypt_Backup) {
2611 DataManager::GetValue("tw_encrypt_backup", tar.use_encryption);
2612 if (tar.use_encryption) {
2613 if (Use_Userdata_Encryption)
2614 tar.userdata_encryption = tar.use_encryption;
2615 string Password;
2616 DataManager::GetValue("tw_backup_password", Password);
2617 tar.setpassword(Password);
2618 } else {
2619 tar.use_encryption = 0;
2620 }
Dees_Troy83bd4832013-05-04 12:39:56 +00002621 }
2622#endif
Dees_Troy43d8b002012-09-17 16:00:01 -04002623
Ethan Yonker472f5062016-02-25 13:47:30 -06002624 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002625 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker01f4e032017-02-03 15:30:52 -06002626 if (Has_Data_Media)
2627 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 -04002628 if (Mount_Point == "/data" && DataManager::GetIntValue(TW_IS_FBE)) {
2629 std::vector<users_struct>::iterator iter;
2630 std::vector<users_struct>* userList = PartitionManager.Get_Users_List();
2631 for (iter = userList->begin(); iter != userList->end(); iter++) {
2632 if (!(*iter).isDecrypted && (*iter).userId != "0") {
2633 gui_msg(Msg(msg::kWarning,
2634 "backup_storage_undecrypt_warning=Backup will not include some files from user {1} "
2635 "because the user is not decrypted.")((*iter).userId));
2636 backup_exclusions.add_absolute_dir("/data/system_ce/" + (*iter).userId);
2637 backup_exclusions.add_absolute_dir("/data/misc_ce/" + (*iter).userId);
2638 backup_exclusions.add_absolute_dir("/data/vendor_ce/" + (*iter).userId);
2639 backup_exclusions.add_absolute_dir("/data/media/" + (*iter).userId);
2640 backup_exclusions.add_absolute_dir("/data/user/" + (*iter).userId);
2641 }
2642 }
2643 }
bigbiffce8f83c2015-12-12 18:30:21 -05002644 tar.part_settings = part_settings;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002645 tar.backup_exclusions = &backup_exclusions;
Dees Troye0a433a2013-12-02 04:10:37 +00002646 tar.setdir(Backup_Path);
2647 tar.setfn(Full_FileName);
2648 tar.setsize(Backup_Size);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002649 tar.partition_name = Backup_Name;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002650 tar.backup_folder = part_settings->Backup_Folder;
bigbiffce8f83c2015-12-12 18:30:21 -05002651 if (tar.createTarFork(tar_fork_pid) != 0)
Dees Troye0a433a2013-12-02 04:10:37 +00002652 return false;
Dees_Troy43d8b002012-09-17 16:00:01 -04002653 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002654}
2655
bigbiffce8f83c2015-12-12 18:30:21 -05002656bool TWPartition::Backup_Image(PartitionSettings *part_settings) {
2657 string Full_FileName, adb_file_name;
igoriok87e3d932013-01-31 21:03:53 +02002658
Ethan Yonker74db1572015-10-28 12:44:49 -05002659 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, gui_parse_text("{@backing}"));
2660 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002661
Ethan Yonker472f5062016-02-25 13:47:30 -06002662 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Dees_Troy43d8b002012-09-17 16:00:01 -04002663
bigbiffce8f83c2015-12-12 18:30:21 -05002664 if (part_settings->adbbackup) {
2665 Full_FileName = TW_ADB_BACKUP;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002666 adb_file_name = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002667 }
2668 else
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002669 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002670
2671 part_settings->total_restore_size = Backup_Size;
2672
2673 if (part_settings->adbbackup) {
2674 if (!twadbbu::Write_TWIMG(adb_file_name, Backup_Size))
2675 return false;
2676 }
2677
2678 if (!Raw_Read_Write(part_settings))
Ethan Yonker472f5062016-02-25 13:47:30 -06002679 return false;
2680
bigbiffce8f83c2015-12-12 18:30:21 -05002681 if (part_settings->adbbackup) {
2682 if (!twadbbu::Write_TWEOF())
2683 return false;
Dees_Troy7c2dec82012-09-26 09:49:14 -04002684 }
Dees_Troy43d8b002012-09-17 16:00:01 -04002685 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002686}
2687
bigbiffce8f83c2015-12-12 18:30:21 -05002688bool TWPartition::Raw_Read_Write(PartitionSettings *part_settings) {
2689 unsigned long long RW_Block_Size, Remain = Backup_Size;
2690 int src_fd = -1, dest_fd = -1;
2691 ssize_t bs;
Ethan Yonker472f5062016-02-25 13:47:30 -06002692 bool ret = false;
2693 void* buffer = NULL;
2694 unsigned long long backedup_size = 0;
bigbiffce8f83c2015-12-12 18:30:21 -05002695 string srcfn, destfn;
Ethan Yonker472f5062016-02-25 13:47:30 -06002696
bigbiffce8f83c2015-12-12 18:30:21 -05002697 if (part_settings->PM_Method == PM_BACKUP) {
2698 srcfn = Actual_Block_Device;
2699 if (part_settings->adbbackup)
2700 destfn = TW_ADB_BACKUP;
bigbiff bigbiff38b83c12017-12-28 19:58:52 -05002701 else {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002702 destfn = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiff bigbiff38b83c12017-12-28 19:58:52 -05002703 }
bigbiffce8f83c2015-12-12 18:30:21 -05002704 }
2705 else {
2706 destfn = Actual_Block_Device;
2707 if (part_settings->adbbackup) {
2708 srcfn = TW_ADB_RESTORE;
2709 } else {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002710 srcfn = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002711 Remain = TWFunc::Get_File_Size(srcfn);
2712 }
2713 }
Ethan Yonker472f5062016-02-25 13:47:30 -06002714
bigbiffce8f83c2015-12-12 18:30:21 -05002715 src_fd = open(srcfn.c_str(), O_RDONLY | O_LARGEFILE);
Ethan Yonker472f5062016-02-25 13:47:30 -06002716 if (src_fd < 0) {
bigbiffce8f83c2015-12-12 18:30:21 -05002717 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(srcfn.c_str())(strerror(errno)));
Ethan Yonker472f5062016-02-25 13:47:30 -06002718 return false;
2719 }
bigbiffce8f83c2015-12-12 18:30:21 -05002720
2721 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 -06002722 if (dest_fd < 0) {
bigbiffce8f83c2015-12-12 18:30:21 -05002723 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(destfn.c_str())(strerror(errno)));
Ethan Yonker472f5062016-02-25 13:47:30 -06002724 goto exit;
2725 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002726
bigbiffce8f83c2015-12-12 18:30:21 -05002727 LOGINFO("Reading '%s', writing '%s'\n", srcfn.c_str(), destfn.c_str());
2728
2729 if (part_settings->adbbackup) {
2730 RW_Block_Size = MAX_ADB_READ;
2731 bs = MAX_ADB_READ;
2732 }
2733 else {
2734 RW_Block_Size = 1048576LLU; // 1MB
2735 bs = (ssize_t)(RW_Block_Size);
2736 }
2737
Ethan Yonker472f5062016-02-25 13:47:30 -06002738 buffer = malloc((size_t)bs);
2739 if (!buffer) {
2740 LOGINFO("Raw_Read_Write failed to malloc\n");
2741 goto exit;
2742 }
bigbiffce8f83c2015-12-12 18:30:21 -05002743
2744 if (part_settings->progress)
2745 part_settings->progress->SetPartitionSize(part_settings->total_restore_size);
2746
Ethan Yonker472f5062016-02-25 13:47:30 -06002747 while (Remain > 0) {
2748 if (Remain < RW_Block_Size)
bigbiffce8f83c2015-12-12 18:30:21 -05002749 bs = (ssize_t)(Remain);
Matt Mowera8a89d12016-12-30 18:10:37 -06002750 if (read(src_fd, buffer, bs) != bs) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002751 LOGINFO("Error reading source fd (%s)\n", strerror(errno));
2752 goto exit;
2753 }
2754 if (write(dest_fd, buffer, bs) != bs) {
2755 LOGINFO("Error writing destination fd (%s)\n", strerror(errno));
2756 goto exit;
2757 }
2758 backedup_size += (unsigned long long)(bs);
Matt Mower029a82d2017-01-08 13:12:38 -06002759 Remain -= (unsigned long long)(bs);
bigbiffce8f83c2015-12-12 18:30:21 -05002760 if (part_settings->progress)
2761 part_settings->progress->UpdateSize(backedup_size);
Ethan Yonker472f5062016-02-25 13:47:30 -06002762 if (PartitionManager.Check_Backup_Cancel() != 0)
2763 goto exit;
2764 }
bigbiffce8f83c2015-12-12 18:30:21 -05002765 if (part_settings->progress)
2766 part_settings->progress->UpdateDisplayDetails(true);
Ethan Yonker472f5062016-02-25 13:47:30 -06002767 fsync(dest_fd);
nailyka083dc62016-11-11 21:41:28 +01002768
2769 if (!part_settings->adbbackup && part_settings->PM_Method == PM_BACKUP) {
2770 tw_set_default_metadata(destfn.c_str());
2771 LOGINFO("Restored default metadata for %s\n", destfn.c_str());
2772 }
2773
Ethan Yonker472f5062016-02-25 13:47:30 -06002774 ret = true;
2775exit:
2776 if (src_fd >= 0)
2777 close(src_fd);
2778 if (dest_fd >= 0)
2779 close(dest_fd);
2780 if (buffer)
2781 free(buffer);
2782 return ret;
2783}
2784
bigbiffce8f83c2015-12-12 18:30:21 -05002785bool TWPartition::Backup_Dump_Image(PartitionSettings *part_settings) {
Vojtech Bocek05534202013-09-11 08:11:56 +02002786 string Full_FileName, Command;
Dees_Troy43d8b002012-09-17 16:00:01 -04002787
Ethan Yonker74db1572015-10-28 12:44:49 -05002788 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, gui_parse_text("{@backing}"));
2789 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002790
bigbiffce8f83c2015-12-12 18:30:21 -05002791 if (part_settings->progress)
2792 part_settings->progress->SetPartitionSize(Backup_Size);
Dees_Troy43d8b002012-09-17 16:00:01 -04002793
Ethan Yonker472f5062016-02-25 13:47:30 -06002794 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002795 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Dees_Troy43d8b002012-09-17 16:00:01 -04002796
2797 Command = "dump_image " + MTD_Name + " '" + Full_FileName + "'";
bigbiffce8f83c2015-12-12 18:30:21 -05002798
Dees_Troy2673cec2013-04-02 20:22:16 +00002799 LOGINFO("Backup command: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002800 TWFunc::Exec_Cmd(Command);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06002801 tw_set_default_metadata(Full_FileName.c_str());
Dees_Troy7c2dec82012-09-26 09:49:14 -04002802 if (TWFunc::Get_File_Size(Full_FileName) == 0) {
2803 // 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 -06002804 gui_msg(Msg(msg::kError, "backup_size=Backup file size for '{1}' is 0 bytes.")(Full_FileName));
Dees_Troy7c2dec82012-09-26 09:49:14 -04002805 return false;
2806 }
bigbiffce8f83c2015-12-12 18:30:21 -05002807 if (part_settings->progress)
2808 part_settings->progress->UpdateSize(Backup_Size);
2809
Dees_Troy43d8b002012-09-17 16:00:01 -04002810 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002811}
2812
bigbiffce8f83c2015-12-12 18:30:21 -05002813unsigned long long TWPartition::Get_Restore_Size(PartitionSettings *part_settings) {
2814 if (!part_settings->adbbackup) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002815 InfoManager restore_info(part_settings->Backup_Folder + "/" + Backup_Name + ".info");
bigbiffce8f83c2015-12-12 18:30:21 -05002816 if (restore_info.LoadValues() == 0) {
2817 if (restore_info.GetValue("backup_size", Restore_Size) == 0) {
2818 LOGINFO("Read info file, restore size is %llu\n", Restore_Size);
2819 return Restore_Size;
2820 }
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002821 }
2822 }
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002823
Matt Mower029a82d2017-01-08 13:12:38 -06002824 string Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
2825 string Restore_File_System = Get_Restore_File_System(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002826
2827 if (Is_Image(Restore_File_System)) {
2828 Restore_Size = TWFunc::Get_File_Size(Full_FileName);
2829 return Restore_Size;
2830 }
2831
2832 twrpTar tar;
2833 tar.setdir(Backup_Path);
2834 tar.setfn(Full_FileName);
bigbiffce8f83c2015-12-12 18:30:21 -05002835 tar.backup_name = Full_FileName;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002836#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
2837 string Password;
2838 DataManager::GetValue("tw_restore_password", Password);
2839 if (!Password.empty())
2840 tar.setpassword(Password);
2841#endif
2842 tar.partition_name = Backup_Name;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002843 tar.backup_folder = part_settings->Backup_Folder;
bigbiffce8f83c2015-12-12 18:30:21 -05002844 tar.part_settings = part_settings;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002845 Restore_Size = tar.get_size();
2846 return Restore_Size;
2847}
2848
bigbiffce8f83c2015-12-12 18:30:21 -05002849bool TWPartition::Restore_Tar(PartitionSettings *part_settings) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002850 string Full_FileName;
Dees Troy4159aed2014-02-28 17:24:43 +00002851 bool ret = false;
bigbiffce8f83c2015-12-12 18:30:21 -05002852 string Restore_File_System = Get_Restore_File_System(part_settings);
Dees_Troy43d8b002012-09-17 16:00:01 -04002853
Dees_Troye58d5262012-09-21 12:27:57 -04002854 if (Has_Android_Secure) {
Dees_Troye58d5262012-09-21 12:27:57 -04002855 if (!Wipe_AndSec())
2856 return false;
Gary Peck43acadf2012-11-21 21:19:01 -08002857 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002858 gui_msg(Msg("wiping=Wiping {1}")(Backup_Display_Name));
Ethan Yonker5eac2222014-06-11 12:22:55 -05002859 if (Has_Data_Media && Mount_Point == "/data" && Restore_File_System != Current_File_System) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002860 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 -05002861 if (!Wipe_Data_Without_Wiping_Media())
2862 return false;
2863 } else {
2864 if (!Wipe(Restore_File_System))
2865 return false;
2866 }
Dees_Troye58d5262012-09-21 12:27:57 -04002867 }
Matt Mower3c366972015-12-25 19:28:31 -06002868 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Backup_Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002869 gui_msg(Msg("restoring=Restoring {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002870
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05002871 // Remount as read/write as needed so we can restore the backup
2872 if (!ReMount_RW(true))
Dees_Troy43d8b002012-09-17 16:00:01 -04002873 return false;
2874
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002875 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker87af5632014-02-10 11:56:35 -06002876 twrpTar tar;
bigbiffce8f83c2015-12-12 18:30:21 -05002877 tar.part_settings = part_settings;
Ethan Yonker87af5632014-02-10 11:56:35 -06002878 tar.setdir(Backup_Path);
2879 tar.setfn(Full_FileName);
2880 tar.backup_name = Backup_Name;
2881#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
2882 string Password;
2883 DataManager::GetValue("tw_restore_password", Password);
2884 if (!Password.empty())
2885 tar.setpassword(Password);
2886#endif
bigbiffce8f83c2015-12-12 18:30:21 -05002887 part_settings->progress->SetPartitionSize(Get_Restore_Size(part_settings));
2888 if (tar.extractTarFork() != 0)
Dees Troy4159aed2014-02-28 17:24:43 +00002889 ret = false;
2890 else
2891 ret = true;
2892#ifdef HAVE_CAPABILITIES
2893 // Restore capabilities to the run-as binary
Captain Throwback9d6feb52018-07-27 10:05:24 -04002894 if (Mount_Point == PartitionManager.Get_Android_Root_Path() && Mount(true) && TWFunc::Path_Exists("/system/bin/run-as")) {
Dees Troy4159aed2014-02-28 17:24:43 +00002895 struct vfs_cap_data cap_data;
2896 uint64_t capabilities = (1 << CAP_SETUID) | (1 << CAP_SETGID);
2897
2898 memset(&cap_data, 0, sizeof(cap_data));
2899 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
2900 cap_data.data[0].permitted = (uint32_t) (capabilities & 0xffffffff);
2901 cap_data.data[0].inheritable = 0;
2902 cap_data.data[1].permitted = (uint32_t) (capabilities >> 32);
2903 cap_data.data[1].inheritable = 0;
2904 if (setxattr("/system/bin/run-as", XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
2905 LOGINFO("Failed to reset capabilities of /system/bin/run-as binary.\n");
2906 } else {
2907 LOGINFO("Reset capabilities of /system/bin/run-as binary successful.\n");
2908 }
2909 }
2910#endif
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05002911 if (Mount_Read_Only || Mount_Flags & MS_RDONLY)
2912 // Remount as read only when restoration is complete
2913 ReMount(true);
2914
Dees Troy4159aed2014-02-28 17:24:43 +00002915 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04002916}
2917
bigbiffce8f83c2015-12-12 18:30:21 -05002918bool TWPartition::Restore_Image(PartitionSettings *part_settings) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06002919 string Full_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002920 string Restore_File_System = Get_Restore_File_System(part_settings);
Dees_Troy43d8b002012-09-17 16:00:01 -04002921
Matt Mower3c366972015-12-25 19:28:31 -06002922 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Backup_Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002923 gui_msg(Msg("restoring=Restoring {1}...")(Backup_Display_Name));
bigbiffce8f83c2015-12-12 18:30:21 -05002924
2925 if (part_settings->adbbackup)
2926 Full_FileName = TW_ADB_RESTORE;
2927 else
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002928 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Gary Peck15e623d2012-11-21 21:07:58 -08002929
Ethan Yonker96af84a2015-01-05 14:58:36 -06002930 if (Restore_File_System == "emmc") {
bigbiffce8f83c2015-12-12 18:30:21 -05002931 if (!part_settings->adbbackup)
2932 part_settings->total_restore_size = (uint64_t)(TWFunc::Get_File_Size(Full_FileName));
2933 if (!Raw_Read_Write(part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002934 return false;
2935 } else if (Restore_File_System == "mtd" || Restore_File_System == "bml") {
bigbiffce8f83c2015-12-12 18:30:21 -05002936 if (!Flash_Image_FI(Full_FileName, part_settings->progress))
2937 return false;
2938 }
2939
2940 if (part_settings->adbbackup) {
2941 if (!twadbbu::Write_TWEOF())
Ethan Yonker96af84a2015-01-05 14:58:36 -06002942 return false;
Gary Peck15e623d2012-11-21 21:07:58 -08002943 }
Dees_Troy43d8b002012-09-17 16:00:01 -04002944 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002945}
Dees_Troy5bf43922012-09-07 16:07:55 -04002946
2947bool TWPartition::Update_Size(bool Display_Error) {
Dees_Troy0550cfb2012-10-13 11:56:13 -04002948 bool ret = false, Was_Already_Mounted = false;
Dees_Troy51127312012-09-08 13:08:49 -04002949
Ethan Yonker1b190162016-12-05 15:25:19 -06002950 Find_Actual_Block_Device();
2951
2952 if (!Can_Be_Mounted && !Is_Encrypted) {
2953 if (TWFunc::Path_Exists(Actual_Block_Device) && Find_Partition_Size()) {
2954 Used = Size;
2955 Backup_Size = Size;
2956 return true;
2957 }
Dees_Troy5bf43922012-09-07 16:07:55 -04002958 return false;
Ethan Yonker1b190162016-12-05 15:25:19 -06002959 }
Dees_Troy5bf43922012-09-07 16:07:55 -04002960
Dees_Troy0550cfb2012-10-13 11:56:13 -04002961 Was_Already_Mounted = Is_Mounted();
Dees_Troy38bd7602012-09-14 13:33:53 -04002962 if (Removable || Is_Encrypted) {
2963 if (!Mount(false))
2964 return true;
2965 } else if (!Mount(Display_Error))
Dees_Troy5bf43922012-09-07 16:07:55 -04002966 return false;
Dees_Troy51127312012-09-08 13:08:49 -04002967
2968 ret = Get_Size_Via_statfs(Display_Error);
Dees_Troy0550cfb2012-10-13 11:56:13 -04002969 if (!ret || Size == 0) {
2970 if (!Get_Size_Via_df(Display_Error)) {
2971 if (!Was_Already_Mounted)
2972 UnMount(false);
Dees_Troy51127312012-09-08 13:08:49 -04002973 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04002974 }
2975 }
Dees_Troy51127312012-09-08 13:08:49 -04002976
Dees_Troy5bf43922012-09-07 16:07:55 -04002977 if (Has_Data_Media) {
2978 if (Mount(Display_Error)) {
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002979 Used = backup_exclusions.Get_Folder_Size(Mount_Point);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05002980 Backup_Size = Used;
2981 int bak = (int)(Used / 1048576LLU);
Dees_Troy51127312012-09-08 13:08:49 -04002982 int fre = (int)(Free / 1048576LLU);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05002983 LOGINFO("Data backup size is %iMB, free: %iMB.\n", bak, fre);
Dees_Troy0550cfb2012-10-13 11:56:13 -04002984 } else {
2985 if (!Was_Already_Mounted)
2986 UnMount(false);
Dees_Troy5bf43922012-09-07 16:07:55 -04002987 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04002988 }
Dees_Troye58d5262012-09-21 12:27:57 -04002989 } else if (Has_Android_Secure) {
2990 if (Mount(Display_Error))
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002991 Backup_Size = backup_exclusions.Get_Folder_Size(Backup_Path);
Dees_Troy0550cfb2012-10-13 11:56:13 -04002992 else {
2993 if (!Was_Already_Mounted)
2994 UnMount(false);
Dees_Troye58d5262012-09-21 12:27:57 -04002995 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04002996 }
Dees_Troy5bf43922012-09-07 16:07:55 -04002997 }
Dees_Troy0550cfb2012-10-13 11:56:13 -04002998 if (!Was_Already_Mounted)
2999 UnMount(false);
Dees_Troy5bf43922012-09-07 16:07:55 -04003000 return true;
Dees_Troy51127312012-09-08 13:08:49 -04003001}
Dees_Troy38bd7602012-09-14 13:33:53 -04003002
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003003bool TWPartition::Find_Wildcard_Block_Devices(const string& Device) {
3004 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
3005 string Path = TWFunc::Get_Path(Device);
3006 string Dev = TWFunc::Get_Filename(Device);
3007 size_t wildcard_index = Dev.find("*");
3008 if (wildcard_index != string::npos)
3009 Dev = Dev.substr(0, wildcard_index);
3010 wildcard_index = Dev.size();
3011 DIR* d = opendir(Path.c_str());
3012 if (d == NULL) {
3013 LOGINFO("Error opening '%s': %s\n", Path.c_str(), strerror(errno));
3014 return false;
3015 }
3016 struct dirent* de;
3017 while ((de = readdir(d)) != NULL) {
3018 if (de->d_type != DT_BLK || strlen(de->d_name) <= wildcard_index || strncmp(de->d_name, Dev.c_str(), wildcard_index) != 0)
3019 continue;
3020
3021 string item = Path + "/";
3022 item.append(de->d_name);
3023 if (PartitionManager.Find_Partition_By_Block_Device(item))
3024 continue;
3025 TWPartition *part = new TWPartition;
3026 char buffer[MAX_FSTAB_LINE_LENGTH];
3027 sprintf(buffer, "%s %s-%i auto defaults defaults", item.c_str(), Mount_Point.c_str(), ++mount_point_index);
Chaosmasterf6e42ce2020-01-27 00:17:04 +01003028 part->Process_Fstab_Line(buffer, false, NULL, false);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003029 char display[MAX_FSTAB_LINE_LENGTH];
3030 sprintf(display, "%s %i", Storage_Name.c_str(), mount_point_index);
3031 part->Storage_Name = display;
3032 part->Display_Name = display;
3033 part->Primary_Block_Device = item;
3034 part->Wildcard_Block_Device = false;
3035 part->Is_SubPartition = true;
3036 part->SubPartition_Of = Mount_Point;
3037 part->Is_Storage = Is_Storage;
3038 part->Can_Be_Mounted = true;
3039 part->Removable = true;
3040 part->Can_Be_Wiped = Can_Be_Wiped;
3041 part->Wipe_Available_in_GUI = Wipe_Available_in_GUI;
3042 part->Find_Actual_Block_Device();
3043 part->Update_Size(false);
3044 Has_SubPartition = true;
3045 PartitionManager.Output_Partition(part);
3046 PartitionManager.Add_Partition(part);
3047 }
3048 closedir(d);
3049 return (mount_point_index > 0);
3050}
3051
Dees_Troy38bd7602012-09-14 13:33:53 -04003052void TWPartition::Find_Actual_Block_Device(void) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003053 if (!Sysfs_Entry.empty() && Primary_Block_Device.empty() && Decrypted_Block_Device.empty()) {
3054 /* Sysfs_Entry.empty() indicates if this is a sysfs entry that begins with /device/
3055 * If we have a syfs entry then we are looking for this device from a uevent add.
3056 * The uevent add will set the primary block device based on the data we receive from
3057 * after checking for adopted storage. If the device ends up being adopted, then the
3058 * decrypted block device will be set instead of the primary block device. */
3059 Is_Present = false;
3060 return;
3061 }
3062 if (Wildcard_Block_Device && !Is_Adopted_Storage) {
3063 Is_Present = false;
3064 Actual_Block_Device = "";
3065 Can_Be_Mounted = false;
3066 if (!Find_Wildcard_Block_Devices(Primary_Block_Device)) {
3067 string Dev = Primary_Block_Device.substr(0, Primary_Block_Device.find("*"));
3068 if (TWFunc::Path_Exists(Dev)) {
3069 Is_Present = true;
3070 Can_Be_Mounted = true;
3071 Actual_Block_Device = Dev;
3072 }
3073 }
3074 return;
3075 } else if (Is_Decrypted && !Decrypted_Block_Device.empty()) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003076 Actual_Block_Device = Decrypted_Block_Device;
Ethan Yonker1b190162016-12-05 15:25:19 -06003077 if (TWFunc::Path_Exists(Decrypted_Block_Device)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003078 Is_Present = true;
Ethan Yonker1b190162016-12-05 15:25:19 -06003079 return;
3080 }
3081 } else if (SlotSelect && TWFunc::Path_Exists(Primary_Block_Device + PartitionManager.Get_Active_Slot_Suffix())) {
3082 Actual_Block_Device = Primary_Block_Device + PartitionManager.Get_Active_Slot_Suffix();
3083 unlink(Primary_Block_Device.c_str());
3084 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
3085 Is_Present = true;
3086 return;
Dees_Troy43d8b002012-09-17 16:00:01 -04003087 } else if (TWFunc::Path_Exists(Primary_Block_Device)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003088 Is_Present = true;
3089 Actual_Block_Device = Primary_Block_Device;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003090 return;
3091 }
Ethan Yonker1b190162016-12-05 15:25:19 -06003092 if (!Alternate_Block_Device.empty() && TWFunc::Path_Exists(Alternate_Block_Device)) {
Dees_Troy3f04d032012-10-07 18:20:09 -04003093 Actual_Block_Device = Alternate_Block_Device;
Dees_Troy38bd7602012-09-14 13:33:53 -04003094 Is_Present = true;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003095 } else {
Dees_Troy38bd7602012-09-14 13:33:53 -04003096 Is_Present = false;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003097 }
Dees_Troy38bd7602012-09-14 13:33:53 -04003098}
3099
3100void TWPartition::Recreate_Media_Folder(void) {
3101 string Command;
Ethan Yonker66a19492015-12-10 10:19:45 -06003102 string Media_Path = Mount_Point + "/media";
Dees_Troy38bd7602012-09-14 13:33:53 -04003103
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06003104 if (Is_FBE) {
3105 LOGINFO("Not recreating media folder on FBE\n");
3106 return;
3107 }
Dees_Troy38bd7602012-09-14 13:33:53 -04003108 if (!Mount(true)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003109 gui_msg(Msg(msg::kError, "recreate_folder_err=Unable to recreate {1} folder.")(Media_Path));
3110 } else if (!TWFunc::Path_Exists(Media_Path)) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003111 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Ethan Yonker66a19492015-12-10 10:19:45 -06003112 LOGINFO("Recreating %s folder.\n", Media_Path.c_str());
3113 mkdir(Media_Path.c_str(), 0770);
xiaolu9416f4f2015-06-04 08:22:23 +08003114 string Internal_path = DataManager::GetStrValue("tw_internal_path");
3115 if (!Internal_path.empty()) {
3116 LOGINFO("Recreating %s folder.\n", Internal_path.c_str());
3117 mkdir(Internal_path.c_str(), 0770);
3118 }
3119#ifdef TW_INTERNAL_STORAGE_PATH
3120 mkdir(EXPAND(TW_INTERNAL_STORAGE_PATH), 0770);
3121#endif
Matt Mower87413642017-01-17 21:14:46 -06003122
thata3d31fb2014-12-21 22:27:40 +01003123 // Afterwards, we will try to set the
3124 // default metadata that we were hopefully able to get during
3125 // early boot.
Ethan Yonker66a19492015-12-10 10:19:45 -06003126 tw_set_default_metadata(Media_Path.c_str());
xiaolu9416f4f2015-06-04 08:22:23 +08003127 if (!Internal_path.empty())
3128 tw_set_default_metadata(Internal_path.c_str());
Matt Mower87413642017-01-17 21:14:46 -06003129
Ethan Yonker5eac2222014-06-11 12:22:55 -05003130 // Toggle mount to ensure that "internal sdcard" gets mounted
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003131 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Ethan Yonker5eac2222014-06-11 12:22:55 -05003132 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Dees_Troy38bd7602012-09-14 13:33:53 -04003133 }
Dees_Troy43d8b002012-09-17 16:00:01 -04003134}
Dees_Troye58d5262012-09-21 12:27:57 -04003135
3136void TWPartition::Recreate_AndSec_Folder(void) {
Dees_Troye58d5262012-09-21 12:27:57 -04003137 if (!Has_Android_Secure)
3138 return;
Dees_Troy2673cec2013-04-02 20:22:16 +00003139 LOGINFO("Creating %s: %s\n", Backup_Display_Name.c_str(), Symlink_Path.c_str());
Dees_Troye58d5262012-09-21 12:27:57 -04003140 if (!Mount(true)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003141 gui_msg(Msg(msg::kError, "recreate_folder_err=Unable to recreate {1} folder.")(Backup_Name));
Dees_Troye58d5262012-09-21 12:27:57 -04003142 } else if (!TWFunc::Path_Exists(Symlink_Path)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00003143 LOGINFO("Recreating %s folder.\n", Backup_Name.c_str());
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003144 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05003145 mkdir(Symlink_Path.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003146 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04003147 }
3148}
bigbiff7cb4c332014-11-26 20:36:07 -05003149
3150uint64_t TWPartition::Get_Max_FileSize() {
3151 uint64_t maxFileSize = 0;
3152 const uint64_t constGB = (uint64_t) 1024 * 1024 * 1024;
3153 const uint64_t constTB = (uint64_t) constGB * 1024;
3154 const uint64_t constPB = (uint64_t) constTB * 1024;
bigbiff0c532032014-12-21 13:41:26 -05003155 if (Current_File_System == "ext4")
3156 maxFileSize = 16 * constTB; //16 TB
3157 else if (Current_File_System == "vfat")
3158 maxFileSize = 4 * constGB; //4 GB
3159 else if (Current_File_System == "ntfs")
3160 maxFileSize = 256 * constTB; //256 TB
3161 else if (Current_File_System == "exfat")
3162 maxFileSize = 16 * constPB; //16 PB
3163 else if (Current_File_System == "ext3")
3164 maxFileSize = 2 * constTB; //2 TB
3165 else if (Current_File_System == "f2fs")
3166 maxFileSize = 3.94 * constTB; //3.94 TB
bigbiff7cb4c332014-11-26 20:36:07 -05003167 else
3168 maxFileSize = 100000000L;
3169 return maxFileSize - 1;
3170}
3171
bigbiffce8f83c2015-12-12 18:30:21 -05003172bool TWPartition::Flash_Image(PartitionSettings *part_settings) {
3173 string Restore_File_System, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003174
Ethan Yonkere080c1f2016-09-19 13:50:25 -05003175 full_filename = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003176
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05003177 LOGINFO("Image filename is: %s\n", Backup_FileName.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05003178
3179 if (Backup_Method == BM_FILES) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06003180 LOGERR("Cannot flash images to file systems\n");
3181 return false;
3182 } else if (!Can_Flash_Img) {
3183 LOGERR("Cannot flash images to partitions %s\n", Display_Name.c_str());
3184 return false;
3185 } else {
3186 if (!Find_Partition_Size()) {
3187 LOGERR("Unable to find partition size for '%s'\n", Mount_Point.c_str());
3188 return false;
3189 }
bigbiffce8f83c2015-12-12 18:30:21 -05003190 unsigned long long image_size = TWFunc::Get_File_Size(full_filename);
Ethan Yonker96af84a2015-01-05 14:58:36 -06003191 if (image_size > Size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003192 LOGINFO("Size (%llu bytes) of image '%s' is larger than target device '%s' (%llu bytes)\n",
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05003193 image_size, Backup_FileName.c_str(), Actual_Block_Device.c_str(), Size);
Ethan Yonker74db1572015-10-28 12:44:49 -05003194 gui_err("img_size_err=Size of image is larger than target device");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003195 return false;
3196 }
bigbiffce8f83c2015-12-12 18:30:21 -05003197 if (Backup_Method == BM_DD) {
3198 if (!part_settings->adbbackup) {
3199 if (Is_Sparse_Image(full_filename)) {
3200 return Flash_Sparse_Image(full_filename);
3201 }
Ethan Yonker472f5062016-02-25 13:47:30 -06003202 }
bigbiffce8f83c2015-12-12 18:30:21 -05003203 return Raw_Read_Write(part_settings);
3204 } else if (Backup_Method == BM_FLASH_UTILS) {
3205 return Flash_Image_FI(full_filename, NULL);
Ethan Yonker472f5062016-02-25 13:47:30 -06003206 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06003207 }
3208
3209 LOGERR("Unknown flash method for '%s'\n", Mount_Point.c_str());
3210 return false;
3211}
3212
Ethan Yonker472f5062016-02-25 13:47:30 -06003213bool TWPartition::Is_Sparse_Image(const string& Filename) {
HashBanged974bb2016-01-30 14:20:09 -05003214 uint32_t magic = 0;
3215 int fd = open(Filename.c_str(), O_RDONLY);
3216 if (fd < 0) {
3217 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Filename)(strerror(errno)));
3218 return false;
3219 }
bigbiffce8f83c2015-12-12 18:30:21 -05003220
HashBanged974bb2016-01-30 14:20:09 -05003221 if (read(fd, &magic, sizeof(magic)) != sizeof(magic)) {
3222 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Filename)(strerror(errno)));
3223 close(fd);
3224 return false;
3225 }
3226 close(fd);
Ethan Yonker472f5062016-02-25 13:47:30 -06003227 if (magic == SPARSE_HEADER_MAGIC)
3228 return true;
3229 return false;
3230}
3231
3232bool TWPartition::Flash_Sparse_Image(const string& Filename) {
3233 string Command;
3234
3235 gui_msg(Msg("flashing=Flashing {1}...")(Display_Name));
3236
3237 Command = "simg2img '" + Filename + "' '" + Actual_Block_Device + "'";
Ethan Yonker96af84a2015-01-05 14:58:36 -06003238 LOGINFO("Flash command: '%s'\n", Command.c_str());
3239 TWFunc::Exec_Cmd(Command);
3240 return true;
3241}
3242
Ethan Yonker472f5062016-02-25 13:47:30 -06003243bool TWPartition::Flash_Image_FI(const string& Filename, ProgressTracking *progress) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06003244 string Command;
Ethan Yonker472f5062016-02-25 13:47:30 -06003245 unsigned long long file_size;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003246
Ethan Yonker74db1572015-10-28 12:44:49 -05003247 gui_msg(Msg("flashing=Flashing {1}...")(Display_Name));
Ethan Yonker472f5062016-02-25 13:47:30 -06003248 if (progress) {
3249 file_size = (unsigned long long)(TWFunc::Get_File_Size(Filename));
3250 progress->SetPartitionSize(file_size);
3251 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06003252 // Sometimes flash image doesn't like to flash due to the first 2KB matching, so we erase first to ensure that it flashes
3253 Command = "erase_image " + MTD_Name;
3254 LOGINFO("Erase command: '%s'\n", Command.c_str());
3255 TWFunc::Exec_Cmd(Command);
3256 Command = "flash_image " + MTD_Name + " '" + Filename + "'";
3257 LOGINFO("Flash command: '%s'\n", Command.c_str());
3258 TWFunc::Exec_Cmd(Command);
Ethan Yonker472f5062016-02-25 13:47:30 -06003259 if (progress)
3260 progress->UpdateSize(file_size);
Ethan Yonker96af84a2015-01-05 14:58:36 -06003261 return true;
3262}
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003263
3264void TWPartition::Change_Mount_Read_Only(bool new_value) {
3265 Mount_Read_Only = new_value;
3266}
3267
bigbiffce8f83c2015-12-12 18:30:21 -05003268bool TWPartition::Is_Read_Only() {
3269 return Mount_Read_Only;
3270}
3271
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003272int TWPartition::Check_Lifetime_Writes() {
3273 bool original_read_only = Mount_Read_Only;
3274 int ret = 1;
3275
3276 Mount_Read_Only = true;
3277 if (Mount(false)) {
3278 Find_Actual_Block_Device();
Ethan Yonker54970bb2019-01-17 16:19:24 -06003279 string temp = Actual_Block_Device;
3280 Find_Real_Block_Device(temp, false);
3281 string block = basename(temp.c_str());
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003282 string file = "/sys/fs/" + Current_File_System + "/" + block + "/lifetime_write_kbytes";
3283 string result;
3284 if (TWFunc::Path_Exists(file)) {
3285 if (TWFunc::read_file(file, result) != 0) {
3286 LOGINFO("Check_Lifetime_Writes of '%s' failed to read_file\n", file.c_str());
3287 } else {
3288 LOGINFO("Check_Lifetime_Writes result: '%s'\n", result.c_str());
3289 if (result == "0") {
3290 ret = 0;
3291 }
3292 }
3293 } else {
3294 LOGINFO("Check_Lifetime_Writes file does not exist '%s'\n", file.c_str());
3295 }
3296 UnMount(true);
3297 } else {
3298 LOGINFO("Check_Lifetime_Writes failed to mount '%s'\n", Mount_Point.c_str());
3299 }
3300 Mount_Read_Only = original_read_only;
3301 return ret;
3302}
Ethan Yonker66a19492015-12-10 10:19:45 -06003303
3304int TWPartition::Decrypt_Adopted() {
3305#ifdef TW_INCLUDE_CRYPTO
3306 int ret = 1;
3307 Is_Adopted_Storage = false;
3308 string Adopted_Key_File = "";
3309
3310 if (!Removable)
3311 return ret;
3312
3313 int fd = open(Alternate_Block_Device.c_str(), O_RDONLY);
3314 if (fd < 0) {
3315 LOGINFO("failed to open '%s'\n", Alternate_Block_Device.c_str());
3316 return ret;
3317 }
3318 char type_guid[80];
3319 char part_guid[80];
3320
3321 if (gpt_disk_get_partition_info(fd, 2, type_guid, part_guid) == 0) {
3322 LOGINFO("type: '%s'\n", type_guid);
3323 LOGINFO("part: '%s'\n", part_guid);
3324 Adopted_GUID = part_guid;
3325 LOGINFO("Adopted_GUID '%s'\n", Adopted_GUID.c_str());
3326 if (strcmp(type_guid, TWGptAndroidExpand) == 0) {
3327 LOGINFO("android_expand found\n");
3328 Adopted_Key_File = "/data/misc/vold/expand_";
3329 Adopted_Key_File += part_guid;
3330 Adopted_Key_File += ".key";
3331 if (TWFunc::Path_Exists(Adopted_Key_File)) {
3332 Is_Adopted_Storage = true;
3333 /* Until we find a use case for this, I think it is safe
3334 * to disable USB Mass Storage whenever adopted storage
3335 * is present.
3336 */
3337 LOGINFO("Detected adopted storage, disabling USB mass storage mode\n");
3338 DataManager::SetValue("tw_has_usb_storage", 0);
3339 }
3340 }
3341 }
3342
3343 if (Is_Adopted_Storage) {
3344 string Adopted_Block_Device = Alternate_Block_Device + "p2";
3345 if (!TWFunc::Path_Exists(Adopted_Block_Device)) {
3346 Adopted_Block_Device = Alternate_Block_Device + "2";
3347 if (!TWFunc::Path_Exists(Adopted_Block_Device)) {
3348 LOGINFO("Adopted block device does not exist\n");
3349 goto exit;
3350 }
3351 }
3352 LOGINFO("key file is '%s', block device '%s'\n", Adopted_Key_File.c_str(), Adopted_Block_Device.c_str());
3353 char crypto_blkdev[MAXPATHLEN];
3354 std::string thekey;
3355 int fdkey = open(Adopted_Key_File.c_str(), O_RDONLY);
3356 if (fdkey < 0) {
3357 LOGINFO("failed to open key file\n");
3358 goto exit;
3359 }
3360 char buf[512];
3361 ssize_t n;
3362 while ((n = read(fdkey, &buf[0], sizeof(buf))) > 0) {
3363 thekey.append(buf, n);
3364 }
3365 close(fdkey);
3366 unsigned char* key = (unsigned char*) thekey.data();
3367 cryptfs_revert_ext_volume(part_guid);
3368
3369 ret = cryptfs_setup_ext_volume(part_guid, Adopted_Block_Device.c_str(), key, thekey.size(), crypto_blkdev);
3370 if (ret == 0) {
3371 LOGINFO("adopted storage new block device: '%s'\n", crypto_blkdev);
3372 Decrypted_Block_Device = crypto_blkdev;
3373 Is_Decrypted = true;
3374 Is_Encrypted = true;
3375 Find_Actual_Block_Device();
Kjell Braden3126a112016-06-19 16:58:15 +00003376 if (!Mount_Storage_Retry(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003377 LOGERR("Failed to mount decrypted adopted storage device\n");
3378 Is_Decrypted = false;
3379 Is_Encrypted = false;
3380 cryptfs_revert_ext_volume(part_guid);
3381 ret = 1;
3382 } else {
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003383 UnMount(false);
3384 Has_Android_Secure = false;
3385 Symlink_Path = "";
3386 Symlink_Mount_Point = "";
3387 Backup_Name = Mount_Point.substr(1);
3388 Backup_Path = Mount_Point;
3389 TWPartition* sdext = PartitionManager.Find_Partition_By_Path("/sd-ext");
3390 if (sdext && sdext->Actual_Block_Device == Adopted_Block_Device) {
3391 LOGINFO("Removing /sd-ext from partition list due to adopted storage\n");
3392 PartitionManager.Remove_Partition_By_Path("/sd-ext");
3393 }
Ethan Yonker66a19492015-12-10 10:19:45 -06003394 Setup_Data_Media();
3395 Recreate_Media_Folder();
3396 Wipe_Available_in_GUI = true;
3397 Wipe_During_Factory_Reset = true;
3398 Can_Be_Backed_Up = true;
3399 Can_Encrypt_Backup = true;
3400 Use_Userdata_Encryption = true;
3401 Is_Storage = true;
3402 Storage_Name = "Adopted Storage";
3403 Is_SubPartition = true;
3404 SubPartition_Of = "/data";
3405 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
3406 DataManager::SetValue("tw_has_adopted_storage", 1);
3407 }
3408 } else {
3409 LOGERR("Failed to setup adopted storage decryption\n");
3410 }
3411 }
3412exit:
Matt Mower06543e32017-01-06 15:25:26 -06003413 close(fd);
Ethan Yonker66a19492015-12-10 10:19:45 -06003414 return ret;
3415#else
3416 LOGINFO("Decrypt_Adopted: no crypto support\n");
3417 return 1;
3418#endif
3419}
3420
3421void TWPartition::Revert_Adopted() {
3422#ifdef TW_INCLUDE_CRYPTO
3423 if (!Adopted_GUID.empty()) {
3424 PartitionManager.Remove_MTP_Storage(Mount_Point);
3425 UnMount(false);
3426 cryptfs_revert_ext_volume(Adopted_GUID.c_str());
3427 Is_Adopted_Storage = false;
3428 Is_Encrypted = false;
3429 Is_Decrypted = false;
3430 Decrypted_Block_Device = "";
3431 Find_Actual_Block_Device();
3432 Wipe_During_Factory_Reset = false;
3433 Can_Be_Backed_Up = false;
3434 Can_Encrypt_Backup = false;
3435 Use_Userdata_Encryption = false;
3436 Is_SubPartition = false;
3437 SubPartition_Of = "";
3438 Has_Data_Media = false;
3439 Storage_Path = Mount_Point;
3440 if (!Symlink_Mount_Point.empty()) {
3441 TWPartition* Dat = PartitionManager.Find_Partition_By_Path("/data");
3442 if (Dat) {
3443 Dat->UnMount(false);
3444 Dat->Symlink_Mount_Point = Symlink_Mount_Point;
3445 }
3446 Symlink_Mount_Point = "";
3447 }
3448 }
3449#else
3450 LOGINFO("Revert_Adopted: no crypto support\n");
3451#endif
3452}
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04003453
3454void TWPartition::Set_Backup_FileName(string fname) {
3455 Backup_FileName = fname;
3456}
3457
3458string TWPartition::Get_Backup_Name() {
3459 return Backup_Name;
3460}