blob: 7e0cb2c5be85a85a036aa63ce55dbd06a5a60c75 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffaed1bdf2021-08-03 18:21:39 -04002 Copyright 2013 to 2021 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
bigbiff7ba75002020-04-11 20:47:09 -040022
Dees_Troy5bf43922012-09-07 16:07:55 -040023#include <sys/mount.h>
bigbiff7ba75002020-04-11 20:47:09 -040024#include <sys/param.h>
25#include <sys/stat.h>
26#include <sys/types.h>
27#include <sys/vfs.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040028#include <unistd.h>
Dees_Troy51127312012-09-08 13:08:49 -040029#include <dirent.h>
Ethan Yonker472f5062016-02-25 13:47:30 -060030#include <fcntl.h>
bigbiff7ba75002020-04-11 20:47:09 -040031#include <iostream>
32#include <libgen.h>
bigbiff7ba75002020-04-11 20:47:09 -040033#include <zlib.h>
34#include <sstream>
bigbiffcfa875c2021-06-20 16:20:27 -040035#include <android-base/properties.h>
Darth9cc683e72022-08-09 12:54:40 +010036#include <android-base/strings.h>
bigbiffcfa875c2021-06-20 16:20:27 -040037#include <libsnapshot/snapshot.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040038
Ethan Yonker007de982018-08-31 14:23:16 -050039#include "cutils/properties.h"
bigbiff7b4c7a62015-01-01 19:44:14 -050040#include "libblkid/include/blkid.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040041#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000042#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040043#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040044#include "data.hpp"
Dees_Troy43d8b002012-09-17 16:00:01 -040045#include "twrp-functions.hpp"
bigbiff bigbiff9c754052013-01-09 09:09:08 -050046#include "twrpTar.hpp"
Ethan Yonker3fdcda42016-11-30 12:29:37 -060047#include "exclude.hpp"
Ethan Yonker1b7a31b2014-07-03 15:09:22 -050048#include "infomanager.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060049#include "set_metadata.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050050#include "gui/gui.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050051#include "adbbu/libtwadbbu.hpp"
Ethan Yonker98661c12018-10-17 08:39:28 -050052#ifdef TW_INCLUDE_CRYPTO
bigbiffdf53b6c2022-01-17 19:31:52 -050053 // #include "crypto/fde/cryptfs.h"
54 #include "cryptfs.h"
bigbiffa957f072021-03-07 18:20:29 -050055 #include "Decrypt.h"
Ethan Yonker98661c12018-10-17 08:39:28 -050056#endif
Dees_Troy5bf43922012-09-07 16:07:55 -040057extern "C" {
Dees_Troy38bd7602012-09-14 13:33:53 -040058 #include "mtdutils/mtdutils.h"
59 #include "mtdutils/mounts.h"
Dees_Troya95f55c2013-08-17 13:14:43 +000060#ifdef USE_EXT4
Ethan Yonker8373cfe2017-09-08 06:50:54 -050061 // #include "make_ext4fs.h" TODO need ifdef for android8
62 #include <ext4_utils/make_ext4fs.h>
Dees_Troya95f55c2013-08-17 13:14:43 +000063#endif
Ethan Yonker71413f42014-02-26 13:36:08 -060064#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker66a19492015-12-10 10:19:45 -060065 #include "gpt/gpt.h"
Ethan Yonker71413f42014-02-26 13:36:08 -060066#endif
Dees_Troy5bf43922012-09-07 16:07:55 -040067}
Matt Mower87413642017-01-17 21:14:46 -060068#include <selinux/selinux.h>
Ethan Yonkerf27497f2014-02-09 11:48:33 -060069#include <selinux/label.h>
Dees Troy4159aed2014-02-28 17:24:43 +000070#ifdef HAVE_CAPABILITIES
71#include <sys/capability.h>
72#include <sys/xattr.h>
73#include <linux/xattr.h>
74#endif
HashBanged974bb2016-01-30 14:20:09 -050075#include <sparse_format.h>
Ethan Yonker472f5062016-02-25 13:47:30 -060076#include "progresstracking.hpp"
Dees_Troy51a0e822012-09-05 15:24:24 -040077
bigbiffdf53b6c2022-01-17 19:31:52 -050078#define CRYPT_FOOTER_OFFSET 0x4000
79
bigbiff bigbiff9c754052013-01-09 09:09:08 -050080using namespace std;
81
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060082static 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
83
Dees_Troya95f55c2013-08-17 13:14:43 +000084extern struct selabel_handle *selinux_handle;
Ethan Yonker6277c792014-09-15 14:54:30 -050085extern bool datamedia;
Dees_Troya95f55c2013-08-17 13:14:43 +000086
Hashcode62bd9e02013-11-19 21:59:42 -080087struct flag_list {
88 const char *name;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060089 unsigned long flag;
Hashcode62bd9e02013-11-19 21:59:42 -080090};
91
Matt Mower4ab42b12016-04-21 13:52:18 -050092const struct flag_list mount_flags[] = {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -060093 { "noatime", MS_NOATIME },
94 { "noexec", MS_NOEXEC },
95 { "nosuid", MS_NOSUID },
96 { "nodev", MS_NODEV },
97 { "nodiratime", MS_NODIRATIME },
98 { "ro", MS_RDONLY },
99 { "rw", 0 },
100 { "remount", MS_REMOUNT },
101 { "bind", MS_BIND },
102 { "rec", MS_REC },
Dees Troyc4bc30e2014-02-03 15:04:19 +0000103#ifdef MS_UNBINDABLE
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600104 { "unbindable", MS_UNBINDABLE },
Dees Troyc4bc30e2014-02-03 15:04:19 +0000105#endif
106#ifdef MS_PRIVATE
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600107 { "private", MS_PRIVATE },
Dees Troyc4bc30e2014-02-03 15:04:19 +0000108#endif
109#ifdef MS_SLAVE
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600110 { "slave", MS_SLAVE },
Dees Troyc4bc30e2014-02-03 15:04:19 +0000111#endif
112#ifdef MS_SHARED
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600113 { "shared", MS_SHARED },
Dees Troyc4bc30e2014-02-03 15:04:19 +0000114#endif
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600115 { "sync", MS_SYNCHRONOUS },
116 { 0, 0 },
117};
118
119const char *ignored_mount_items[] = {
120 "defaults=",
121 "errors=",
Ethan Yonker93382822018-11-01 15:25:31 -0500122 "latemount",
123 "sysfs_path=",
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600124 NULL
Hashcode62bd9e02013-11-19 21:59:42 -0800125};
126
Matt Mower2416a502016-04-12 19:54:46 -0500127enum TW_FSTAB_FLAGS {
128 TWFLAG_DEFAULTS, // Retain position
129 TWFLAG_ANDSEC,
130 TWFLAG_BACKUP,
131 TWFLAG_BACKUPNAME,
132 TWFLAG_BLOCKSIZE,
133 TWFLAG_CANBEWIPED,
134 TWFLAG_CANENCRYPTBACKUP,
135 TWFLAG_DISPLAY,
136 TWFLAG_ENCRYPTABLE,
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500137 TWFLAG_FILEENCRYPTION,
Captain Throwbackf74fe4f2022-02-08 12:45:01 -0500138 TWFLAG_METADATA_ENCRYPTION,
Matt Mower2416a502016-04-12 19:54:46 -0500139 TWFLAG_FLASHIMG,
140 TWFLAG_FORCEENCRYPT,
141 TWFLAG_FSFLAGS,
142 TWFLAG_IGNOREBLKID,
143 TWFLAG_LENGTH,
144 TWFLAG_MOUNTTODECRYPT,
Captain Throwback8d97d422022-02-08 15:31:44 -0500145 TWFLAG_QUOTA,
Matt Mower2416a502016-04-12 19:54:46 -0500146 TWFLAG_REMOVABLE,
Matt Mower2416a502016-04-12 19:54:46 -0500147 TWFLAG_SETTINGSSTORAGE,
148 TWFLAG_STORAGE,
149 TWFLAG_STORAGENAME,
150 TWFLAG_SUBPARTITIONOF,
151 TWFLAG_SYMLINK,
152 TWFLAG_USERDATAENCRYPTBACKUP,
153 TWFLAG_USERMRF,
154 TWFLAG_WIPEDURINGFACTORYRESET,
155 TWFLAG_WIPEINGUI,
Ethan Yonker1b190162016-12-05 15:25:19 -0600156 TWFLAG_SLOTSELECT,
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600157 TWFLAG_WAIT,
158 TWFLAG_VERIFY,
159 TWFLAG_CHECK,
160 TWFLAG_ALTDEVICE,
161 TWFLAG_NOTRIM,
162 TWFLAG_VOLDMANAGED,
163 TWFLAG_FORMATTABLE,
164 TWFLAG_RESIZE,
Ethan Yonker93382822018-11-01 15:25:31 -0500165 TWFLAG_KEYDIRECTORY,
Peter Cai28ea7b02019-05-24 11:38:54 +0800166 TWFLAG_WRAPPEDKEY,
Peter Cai439d60c2019-10-17 08:49:10 +0800167 TWFLAG_ADOPTED_MOUNT_DELAY,
Peter Caid68e6412019-11-02 19:22:38 +0800168 TWFLAG_DM_USE_ORIGINAL_PATH,
Darth99fb13af2023-04-07 23:32:45 +0100169 TWFLAG_FS_COMPRESS,
bigbiff998f8392021-08-06 19:19:33 -0400170 TWFLAG_LOGICAL,
Matt Mower2416a502016-04-12 19:54:46 -0500171};
172
173/* Flags without a trailing '=' are considered dual format flags and can be
174 * written as either 'flagname' or 'flagname=', where the character following
175 * the '=' is Y,y,1 for true and false otherwise.
176 */
177const struct flag_list tw_flags[] = {
178 { "andsec", TWFLAG_ANDSEC },
179 { "backup", TWFLAG_BACKUP },
180 { "backupname=", TWFLAG_BACKUPNAME },
181 { "blocksize=", TWFLAG_BLOCKSIZE },
182 { "canbewiped", TWFLAG_CANBEWIPED },
183 { "canencryptbackup", TWFLAG_CANENCRYPTBACKUP },
184 { "defaults", TWFLAG_DEFAULTS },
185 { "display=", TWFLAG_DISPLAY },
186 { "encryptable=", TWFLAG_ENCRYPTABLE },
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500187 { "fileencryption=", TWFLAG_FILEENCRYPTION },
Captain Throwbackf74fe4f2022-02-08 12:45:01 -0500188 { "metadata_encryption=", TWFLAG_METADATA_ENCRYPTION },
Matt Mower2416a502016-04-12 19:54:46 -0500189 { "flashimg", TWFLAG_FLASHIMG },
190 { "forceencrypt=", TWFLAG_FORCEENCRYPT },
191 { "fsflags=", TWFLAG_FSFLAGS },
192 { "ignoreblkid", TWFLAG_IGNOREBLKID },
193 { "length=", TWFLAG_LENGTH },
194 { "mounttodecrypt", TWFLAG_MOUNTTODECRYPT },
Captain Throwback8d97d422022-02-08 15:31:44 -0500195 { "quota", TWFLAG_QUOTA },
Matt Mower2416a502016-04-12 19:54:46 -0500196 { "removable", TWFLAG_REMOVABLE },
Matt Mower2416a502016-04-12 19:54:46 -0500197 { "settingsstorage", TWFLAG_SETTINGSSTORAGE },
198 { "storage", TWFLAG_STORAGE },
199 { "storagename=", TWFLAG_STORAGENAME },
200 { "subpartitionof=", TWFLAG_SUBPARTITIONOF },
201 { "symlink=", TWFLAG_SYMLINK },
202 { "userdataencryptbackup", TWFLAG_USERDATAENCRYPTBACKUP },
203 { "usermrf", TWFLAG_USERMRF },
204 { "wipeduringfactoryreset", TWFLAG_WIPEDURINGFACTORYRESET },
205 { "wipeingui", TWFLAG_WIPEINGUI },
Ethan Yonker1b190162016-12-05 15:25:19 -0600206 { "slotselect", TWFLAG_SLOTSELECT },
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600207 { "wait", TWFLAG_WAIT },
208 { "verify", TWFLAG_VERIFY },
209 { "check", TWFLAG_CHECK },
210 { "altdevice", TWFLAG_ALTDEVICE },
211 { "notrim", TWFLAG_NOTRIM },
212 { "voldmanaged=", TWFLAG_VOLDMANAGED },
213 { "formattable", TWFLAG_FORMATTABLE },
214 { "resize", TWFLAG_RESIZE },
Ethan Yonker93382822018-11-01 15:25:31 -0500215 { "keydirectory=", TWFLAG_KEYDIRECTORY },
Peter Cai28ea7b02019-05-24 11:38:54 +0800216 { "wrappedkey", TWFLAG_WRAPPEDKEY },
Peter Cai439d60c2019-10-17 08:49:10 +0800217 { "adopted_mount_delay=", TWFLAG_ADOPTED_MOUNT_DELAY },
Peter Caid68e6412019-11-02 19:22:38 +0800218 { "dm_use_original_path", TWFLAG_DM_USE_ORIGINAL_PATH },
Darth99fb13af2023-04-07 23:32:45 +0100219 { "fscompress", TWFLAG_FS_COMPRESS },
bigbiff998f8392021-08-06 19:19:33 -0400220 { "logical", TWFLAG_LOGICAL },
Matt Mower2416a502016-04-12 19:54:46 -0500221 { 0, 0 },
222};
223
that9e0593e2014-10-08 00:01:24 +0200224TWPartition::TWPartition() {
Dees_Troy51a0e822012-09-05 15:24:24 -0400225 Can_Be_Mounted = false;
226 Can_Be_Wiped = false;
Dees_Troya13d74f2013-03-24 08:54:55 -0500227 Can_Be_Backed_Up = false;
Vojtech Bocek1dc30982013-08-30 21:49:30 +0200228 Use_Rm_Rf = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400229 Wipe_During_Factory_Reset = false;
230 Wipe_Available_in_GUI = false;
231 Is_SubPartition = false;
Dees_Troy2691f9d2012-09-24 11:15:49 -0400232 Has_SubPartition = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400233 SubPartition_Of = "";
234 Symlink_Path = "";
235 Symlink_Mount_Point = "";
236 Mount_Point = "";
Dees_Troye58d5262012-09-21 12:27:57 -0400237 Backup_Path = "";
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600238 Wildcard_Block_Device = false;
239 Sysfs_Entry = "";
Dees_Troy38bd7602012-09-14 13:33:53 -0400240 Actual_Block_Device = "";
241 Primary_Block_Device = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400242 Alternate_Block_Device = "";
243 Removable = false;
244 Is_Present = false;
245 Length = 0;
246 Size = 0;
247 Used = 0;
248 Free = 0;
249 Backup_Size = 0;
250 Can_Be_Encrypted = false;
251 Is_Encrypted = false;
252 Is_Decrypted = false;
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600253 Is_FBE = false;
Ethan Yonker253368a2014-11-25 15:00:52 -0600254 Mount_To_Decrypt = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400255 Decrypted_Block_Device = "";
256 Display_Name = "";
Dees_Troya13d74f2013-03-24 08:54:55 -0500257 Backup_Display_Name = "";
258 Storage_Name = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400259 Backup_Name = "";
Dees_Troy63c8df72012-09-10 14:02:05 -0400260 Backup_FileName = "";
Dees_Troy38bd7602012-09-14 13:33:53 -0400261 MTD_Name = "";
bigbiffce8f83c2015-12-12 18:30:21 -0500262 Backup_Method = BM_NONE;
Dees_Troy83bd4832013-05-04 12:39:56 +0000263 Can_Encrypt_Backup = false;
264 Use_Userdata_Encryption = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400265 Has_Data_Media = false;
Dees_Troye58d5262012-09-21 12:27:57 -0400266 Has_Android_Secure = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400267 Is_Storage = false;
Dees_Troya13d74f2013-03-24 08:54:55 -0500268 Is_Settings_Storage = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400269 Storage_Path = "";
270 Current_File_System = "";
271 Fstab_File_System = "";
Hashcode62bd9e02013-11-19 21:59:42 -0800272 Mount_Flags = 0;
273 Mount_Options = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400274 Format_Block_Size = 0;
Dees_Troy68cab492012-12-12 19:29:35 +0000275 Ignore_Blkid = false;
dianlujitao4879b372018-12-03 18:45:47 +0800276 Crypto_Key_Location = "";
Ethan Yonker726a0202014-12-16 20:01:38 -0600277 MTP_Storage_ID = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600278 Can_Flash_Img = false;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500279 Mount_Read_Only = false;
Ethan Yonker66a19492015-12-10 10:19:45 -0600280 Is_Adopted_Storage = false;
281 Adopted_GUID = "";
Ethan Yonker1b190162016-12-05 15:25:19 -0600282 SlotSelect = false;
Ethan Yonker93382822018-11-01 15:25:31 -0500283 Key_Directory = "";
bigbiffee7b7ff2020-03-23 15:08:27 -0400284 Is_Super = false;
Peter Cai439d60c2019-10-17 08:49:10 +0800285 Adopted_Mount_Delay = 0;
Peter Caid68e6412019-11-02 19:22:38 +0800286 Original_Path = "";
287 Use_Original_Path = false;
Darth99fb13af2023-04-07 23:32:45 +0100288 Needs_Fs_Compress = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400289}
290
291TWPartition::~TWPartition(void) {
292 // Do nothing
293}
294
bigbiff8da46fa2020-09-08 16:42:34 -0400295bool TWPartition::Process_Fstab_Line(const char *fstab_line, bool Display_Error, std::map<string, Flags_Map> *twrp_flags) {
Matt Mower2b2dd152016-04-26 11:24:08 -0500296 char full_line[MAX_FSTAB_LINE_LENGTH];
Matt Mower2416a502016-04-12 19:54:46 -0500297 char twflags[MAX_FSTAB_LINE_LENGTH] = "";
Dees_Troy5bf43922012-09-07 16:07:55 -0400298 char* ptr;
Matt Mower2b2dd152016-04-26 11:24:08 -0500299 int line_len = strlen(fstab_line), index = 0, item_index = 0;
Dees_Troya13d74f2013-03-24 08:54:55 -0500300 bool skip = false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600301 int fstab_version = 1, mount_point_index = 0, fs_index = 1, block_device_index = 2;
302 TWPartition *additional_entry = NULL;
303 std::map<string, Flags_Map>::iterator it;
Dees_Troy5bf43922012-09-07 16:07:55 -0400304
Matt Mower2b2dd152016-04-26 11:24:08 -0500305 strlcpy(full_line, fstab_line, sizeof(full_line));
bigbiffee7b7ff2020-03-23 15:08:27 -0400306
Dees_Troy51127312012-09-08 13:08:49 -0400307 for (index = 0; index < line_len; index++) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500308 if (full_line[index] == 34)
309 skip = !skip;
310 if (!skip && full_line[index] <= 32)
Dees_Troy5bf43922012-09-07 16:07:55 -0400311 full_line[index] = '\0';
Dees_Troy5bf43922012-09-07 16:07:55 -0400312 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600313 if (line_len < 10)
314 return false; // There can't possibly be a valid fstab line that is less than 10 chars
bigbiff998f8392021-08-06 19:19:33 -0400315 if (fstab_line[0] == '#')
316 return false; // skip comments
317
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600318 if (strncmp(fstab_line, "/dev/", strlen("/dev/")) == 0 || strncmp(fstab_line, "/devices/", strlen("/devices/")) == 0) {
319 fstab_version = 2;
320 block_device_index = 0;
321 mount_point_index = 1;
322 fs_index = 2;
323 }
324
bigbiff998f8392021-08-06 19:19:33 -0400325 if (fstab_line[0] != '/') {
bigbiffee7b7ff2020-03-23 15:08:27 -0400326 block_device_index = 0;
327 fstab_version = 2;
328 mount_point_index = 1;
329 fs_index = 2;
330 }
331
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600332 index = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -0400333 while (index < line_len) {
334 while (index < line_len && full_line[index] == '\0')
335 index++;
336 if (index >= line_len)
337 continue;
338 ptr = full_line + index;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600339 if (item_index == mount_point_index) {
340 Mount_Point = ptr;
bigbiffee7b7ff2020-03-23 15:08:27 -0400341 if (fstab_version == 2 && Is_Super == false) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600342 additional_entry = PartitionManager.Find_Partition_By_Path(Mount_Point);
bigbiff8da46fa2020-09-08 16:42:34 -0400343 if (additional_entry) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600344 LOGINFO("Found an additional entry for '%s'\n", Mount_Point.c_str());
345 }
346 }
bigbiff8da46fa2020-09-08 16:42:34 -0400347 LOGINFO("Processing '%s'\n", Mount_Point.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600348 Backup_Path = Mount_Point;
349 Storage_Path = Mount_Point;
350 Display_Name = ptr + 1;
351 Backup_Display_Name = Display_Name;
352 Storage_Name = Display_Name;
353 item_index++;
354 } else if (item_index == fs_index) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400355 // File System
356 Fstab_File_System = ptr;
357 Current_File_System = ptr;
358 item_index++;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600359 } else if (item_index == block_device_index) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400360 // Primary Block Device
Dees_Troy38bd7602012-09-14 13:33:53 -0400361 if (Fstab_File_System == "mtd" || Fstab_File_System == "yaffs2") {
Dees_Troy094207a2012-09-26 12:00:39 -0400362 MTD_Name = ptr;
363 Find_MTD_Block_Device(MTD_Name);
Dees_Troy5fcd8f92012-10-16 12:22:05 -0400364 } else if (Fstab_File_System == "bml") {
365 if (Mount_Point == "/boot")
366 MTD_Name = "boot";
367 else if (Mount_Point == "/recovery")
368 MTD_Name = "recovery";
369 Primary_Block_Device = ptr;
370 if (*ptr != '/')
Dees_Troy2673cec2013-04-02 20:22:16 +0000371 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 -0400372 } else {
373 Primary_Block_Device = ptr;
bigbiff998f8392021-08-06 19:19:33 -0400374 if (*ptr == '/')
375 Find_Real_Block_Device(Primary_Block_Device, Display_Error);
Dees_Troy5bf43922012-09-07 16:07:55 -0400376 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400377 item_index++;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600378 } else if (item_index > 2) {
379 if (fstab_version == 2) {
380 if (item_index == 3) {
381 Process_FS_Flags(ptr);
382 if (additional_entry) {
383 additional_entry->Save_FS_Flags(Fstab_File_System, Mount_Flags, Mount_Options);
384 return false; // We save the extra fs flags in the other partition entry and by returning false, this entry will be deleted
385 }
386 } else {
387 strlcpy(twflags, ptr, sizeof(twflags));
388 }
389 item_index++;
390 } else if (*ptr == '/') { // v2 fstab does not allow alternate block devices
Dees_Troy5bf43922012-09-07 16:07:55 -0400391 // Alternate Block Device
392 Alternate_Block_Device = ptr;
393 Find_Real_Block_Device(Alternate_Block_Device, Display_Error);
394 } else if (strlen(ptr) > 7 && strncmp(ptr, "length=", 7) == 0) {
395 // Partition length
396 ptr += 7;
397 Length = atoi(ptr);
Dees_Troy51127312012-09-08 13:08:49 -0400398 } else if (strlen(ptr) > 6 && strncmp(ptr, "flags=", 6) == 0) {
399 // Custom flags, save for later so that new values aren't overwritten by defaults
400 ptr += 6;
Matt Mower2416a502016-04-12 19:54:46 -0500401 strlcpy(twflags, ptr, sizeof(twflags));
Dees_Troy38bd7602012-09-14 13:33:53 -0400402 } else if (strlen(ptr) == 4 && (strncmp(ptr, "NULL", 4) == 0 || strncmp(ptr, "null", 4) == 0 || strncmp(ptr, "null", 4) == 0)) {
403 // Do nothing
Dees_Troy5bf43922012-09-07 16:07:55 -0400404 } else {
405 // Unhandled data
Matt Mower2b2dd152016-04-26 11:24:08 -0500406 LOGINFO("Unhandled fstab information '%s' in fstab line '%s'\n", ptr, fstab_line);
Dees_Troy5bf43922012-09-07 16:07:55 -0400407 }
408 }
409 while (index < line_len && full_line[index] != '\0')
410 index++;
411 }
412
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600413 // override block devices from the v2 fstab with the ones we read from the twrp.flags file in case they are different
414 if (fstab_version == 2 && twrp_flags && twrp_flags->size() > 0) {
415 it = twrp_flags->find(Mount_Point);
416 if (it != twrp_flags->end()) {
417 if (!it->second.Primary_Block_Device.empty()) {
418 Primary_Block_Device = it->second.Primary_Block_Device;
419 Find_Real_Block_Device(Primary_Block_Device, Display_Error);
420 }
421 if (!it->second.Alternate_Block_Device.empty()) {
422 Alternate_Block_Device = it->second.Alternate_Block_Device;
423 Find_Real_Block_Device(Alternate_Block_Device, Display_Error);
424 }
425 }
426 }
427
428 if (strncmp(fstab_line, "/devices/", strlen("/devices/")) == 0) {
429 Sysfs_Entry = Primary_Block_Device;
430 Primary_Block_Device = "";
431 Is_Storage = true;
432 Removable = true;
433 Wipe_Available_in_GUI = true;
434 Wildcard_Block_Device = true;
435 }
436 if (Primary_Block_Device.find("*") != string::npos)
437 Wildcard_Block_Device = true;
438
bigbiff8da46fa2020-09-08 16:42:34 -0400439 if (Mount_Point == "auto") {
440 Mount_Point = "/auto";
441 char autoi[5];
442 sprintf(autoi, "%i", auto_index);
443 Mount_Point += autoi;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600444 Backup_Path = Mount_Point;
445 Storage_Path = Mount_Point;
dianlujitaob76a73a2020-04-30 20:33:20 +0800446 Backup_Name = Mount_Point.substr(1);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600447 auto_index++;
448 Setup_File_System(Display_Error);
449 Display_Name = "Storage";
450 Backup_Display_Name = Display_Name;
451 Storage_Name = Display_Name;
452 Can_Be_Backed_Up = false;
453 Wipe_Available_in_GUI = true;
454 Is_Storage = true;
455 Removable = true;
456 Wipe_Available_in_GUI = true;
457 } else if (!Is_File_System(Fstab_File_System) && !Is_Image(Fstab_File_System)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400458 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000459 LOGERR("Unknown File System: '%s'\n", Fstab_File_System.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400460 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000461 LOGINFO("Unknown File System: '%s'\n", Fstab_File_System.c_str());
Matt Mower72c87ce2016-04-26 14:34:56 -0500462 return false;
Dees_Troy5bf43922012-09-07 16:07:55 -0400463 } else if (Is_File_System(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400464 Find_Actual_Block_Device();
Dees_Troy5bf43922012-09-07 16:07:55 -0400465 Setup_File_System(Display_Error);
dianlujitaob76a73a2020-04-30 20:33:20 +0800466 Backup_Name = Display_Name = Mount_Point.substr(1, Mount_Point.size() - 1);
Chaosmaster3b682732020-01-25 21:09:28 +0100467 if (Mount_Point == "/" || Mount_Point == "/system" || Mount_Point == "/system_root") {
bigbiff8da46fa2020-09-08 16:42:34 -0400468 Mount_Point = PartitionManager.Get_Android_Root_Path();
469 Backup_Path = Mount_Point;
470 Storage_Path = Mount_Point;
Dees_Troy5bf43922012-09-07 16:07:55 -0400471 Display_Name = "System";
dianlujitaob76a73a2020-04-30 20:33:20 +0800472 Backup_Name = "system";
Dees_Troya13d74f2013-03-24 08:54:55 -0500473 Backup_Display_Name = Display_Name;
474 Storage_Name = Display_Name;
bigbiff8da46fa2020-09-08 16:42:34 -0400475 Wipe_Available_in_GUI = false;
476 Can_Be_Backed_Up = false;
477 Can_Be_Wiped = false;
bigbiff8da46fa2020-09-08 16:42:34 -0400478 Make_Dir(PartitionManager.Get_Android_Root_Path(), true);
me-cafebabe701e9ab2022-07-29 06:34:45 +0800479 } else if (Mount_Point == "/system_ext") {
480 Display_Name = "System_EXT";
481 Backup_Name = "System_EXT";
482 Backup_Display_Name = Display_Name;
483 Storage_Name = Display_Name;
484 Can_Be_Backed_Up = Wipe_Available_in_GUI = Is_Super ? false : true;
Mohd Faraze3948ec2020-08-14 01:40:59 +0000485 } else if (Mount_Point == "/product") {
486 Display_Name = "Product";
487 Backup_Name = "Product";
488 Backup_Display_Name = Display_Name;
489 Storage_Name = Display_Name;
490 Can_Be_Backed_Up = Wipe_Available_in_GUI = Is_Super ? false : true;
Mohd Faraze3948ec2020-08-14 01:40:59 +0000491 } else if (Mount_Point == "/odm") {
492 Display_Name = "ODM";
493 Backup_Name = "ODM";
494 Backup_Display_Name = Display_Name;
495 Storage_Name = Display_Name;
496 Can_Be_Backed_Up = Wipe_Available_in_GUI = Is_Super ? false : true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400497 } else if (Mount_Point == "/data") {
498 Display_Name = "Data";
Dees_Troya13d74f2013-03-24 08:54:55 -0500499 Backup_Display_Name = Display_Name;
500 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400501 Wipe_Available_in_GUI = true;
Dees_Troy51127312012-09-08 13:08:49 -0400502 Wipe_During_Factory_Reset = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500503 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000504 Can_Encrypt_Backup = true;
505 Use_Userdata_Encryption = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400506 } else if (Mount_Point == "/cache") {
507 Display_Name = "Cache";
Dees_Troya13d74f2013-03-24 08:54:55 -0500508 Backup_Display_Name = Display_Name;
509 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400510 Wipe_Available_in_GUI = true;
Dees_Troy51127312012-09-08 13:08:49 -0400511 Wipe_During_Factory_Reset = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500512 Can_Be_Backed_Up = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400513 } else if (Mount_Point == "/datadata") {
Dees_Troy51127312012-09-08 13:08:49 -0400514 Wipe_During_Factory_Reset = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400515 Display_Name = "DataData";
Dees_Troya13d74f2013-03-24 08:54:55 -0500516 Backup_Display_Name = Display_Name;
517 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400518 Is_SubPartition = true;
519 SubPartition_Of = "/data";
Dees_Troy5bf43922012-09-07 16:07:55 -0400520 DataManager::SetValue(TW_HAS_DATADATA, 1);
Dees_Troya13d74f2013-03-24 08:54:55 -0500521 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000522 Can_Encrypt_Backup = true;
523 Use_Userdata_Encryption = false; // This whole partition should be encrypted
Dees_Troy5bf43922012-09-07 16:07:55 -0400524 } else if (Mount_Point == "/sd-ext") {
Dees_Troy51127312012-09-08 13:08:49 -0400525 Wipe_During_Factory_Reset = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400526 Display_Name = "SD-Ext";
Dees_Troya13d74f2013-03-24 08:54:55 -0500527 Backup_Display_Name = Display_Name;
528 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400529 Wipe_Available_in_GUI = true;
Dees_Troyc51f1f92012-09-20 15:32:13 -0400530 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500531 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000532 Can_Encrypt_Backup = true;
533 Use_Userdata_Encryption = true;
Dees_Troy2c50e182012-09-26 20:05:28 -0400534 } else if (Mount_Point == "/boot") {
535 Display_Name = "Boot";
Dees_Troya13d74f2013-03-24 08:54:55 -0500536 Backup_Display_Name = Display_Name;
Dees_Troy2c50e182012-09-26 20:05:28 -0400537 DataManager::SetValue("tw_boot_is_mountable", 1);
Dees_Troya13d74f2013-03-24 08:54:55 -0500538 Can_Be_Backed_Up = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500539 } else if (Mount_Point == "/vendor") {
540 Display_Name = "Vendor";
541 Backup_Display_Name = Display_Name;
542 Storage_Name = Display_Name;
Dees_Troy8170a922012-09-18 15:40:25 -0400543 }
544#ifdef TW_EXTERNAL_STORAGE_PATH
545 if (Mount_Point == EXPAND(TW_EXTERNAL_STORAGE_PATH)) {
546 Is_Storage = true;
547 Storage_Path = EXPAND(TW_EXTERNAL_STORAGE_PATH);
Dees_Troyc51f1f92012-09-20 15:32:13 -0400548 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500549 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400550#else
Dees_Troy70737fa2013-04-08 13:19:20 +0000551 if (Mount_Point == "/sdcard" || Mount_Point == "/external_sd" || Mount_Point == "/external_sdcard") {
Dees_Troy8170a922012-09-18 15:40:25 -0400552 Is_Storage = true;
Dees_Troyc51f1f92012-09-20 15:32:13 -0400553 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500554 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400555#endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000556 }
Dees_Troy8170a922012-09-18 15:40:25 -0400557#ifdef TW_INTERNAL_STORAGE_PATH
558 if (Mount_Point == EXPAND(TW_INTERNAL_STORAGE_PATH)) {
559 Is_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500560 Is_Settings_Storage = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400561 Storage_Path = EXPAND(TW_INTERNAL_STORAGE_PATH);
Dees_Troya13d74f2013-03-24 08:54:55 -0500562 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400563 }
564#else
Dees_Troy70737fa2013-04-08 13:19:20 +0000565 if (Mount_Point == "/emmc" || Mount_Point == "/internal_sd" || Mount_Point == "/internal_sdcard") {
Dees_Troy8170a922012-09-18 15:40:25 -0400566 Is_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500567 Is_Settings_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500568 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400569 }
570#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400571 } else if (Is_Image(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400572 Find_Actual_Block_Device();
Ethan Yonker1b190162016-12-05 15:25:19 -0600573 Setup_Image();
Dees_Troya13d74f2013-03-24 08:54:55 -0500574 if (Mount_Point == "/boot") {
575 Display_Name = "Boot";
576 Backup_Display_Name = Display_Name;
577 Can_Be_Backed_Up = true;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600578 Can_Flash_Img = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500579 } else if (Mount_Point == "/recovery") {
580 Display_Name = "Recovery";
581 Backup_Display_Name = Display_Name;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600582 Can_Flash_Img = true;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500583 } else if (Mount_Point == "/system_image") {
584 Display_Name = "System Image";
585 Backup_Display_Name = Display_Name;
HashBanged974bb2016-01-30 14:20:09 -0500586 Can_Flash_Img = true;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500587 Can_Be_Backed_Up = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500588 } else if (Mount_Point == "/vendor_image") {
589 Display_Name = "Vendor Image";
590 Backup_Display_Name = Display_Name;
HashBanged974bb2016-01-30 14:20:09 -0500591 Can_Flash_Img = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500592 Can_Be_Backed_Up = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500593 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400594 }
595
Matt Mower2416a502016-04-12 19:54:46 -0500596 // Process TWRP fstab flags
597 if (strlen(twflags) > 0) {
598 string Prev_Display_Name = Display_Name;
599 string Prev_Storage_Name = Storage_Name;
600 string Prev_Backup_Display_Name = Backup_Display_Name;
601 Display_Name = "";
602 Storage_Name = "";
603 Backup_Display_Name = "";
604
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600605 Process_TW_Flags(twflags, (fstab_version == 1), fstab_version);
606 Save_FS_Flags(Fstab_File_System, Mount_Flags, Mount_Options);
Matt Mower2416a502016-04-12 19:54:46 -0500607
608 bool has_display_name = !Display_Name.empty();
609 bool has_storage_name = !Storage_Name.empty();
610 bool has_backup_name = !Backup_Display_Name.empty();
611 if (!has_display_name) Display_Name = Prev_Display_Name;
612 if (!has_storage_name) Storage_Name = Prev_Storage_Name;
613 if (!has_backup_name) Backup_Display_Name = Prev_Backup_Display_Name;
614
615 if (has_display_name && !has_storage_name)
616 Storage_Name = Display_Name;
617 if (!has_display_name && has_storage_name)
618 Display_Name = Storage_Name;
619 if (has_display_name && !has_backup_name && Backup_Display_Name != "Android Secure")
620 Backup_Display_Name = Display_Name;
621 if (!has_display_name && has_backup_name)
622 Display_Name = Backup_Display_Name;
623 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600624
625 if (fstab_version == 2 && twrp_flags && twrp_flags->size() > 0) {
626 it = twrp_flags->find(Mount_Point);
627 if (it != twrp_flags->end()) {
628 char twrpflags[MAX_FSTAB_LINE_LENGTH] = "";
629 int skip = 0;
630 string Flags = it->second.Flags;
631 strcpy(twrpflags, Flags.c_str());
632 if (strlen(twrpflags) > strlen("flags=") && strncmp(twrpflags, "flags=", strlen("flags=")) == 0)
633 skip += strlen("flags=");
634 char* flagptr = twrpflags;
635 flagptr += skip;
636 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
637 }
638 }
nkk7198fc3992017-12-16 16:26:42 +0200639
640 if (Mount_Point == "/persist" && Can_Be_Mounted) {
641 bool mounted = Is_Mounted();
642 if (mounted || Mount(false)) {
nkk7198fc3992017-12-16 16:26:42 +0200643 TWFunc::Fixup_Time_On_Boot("/persist/time/");
644 if (!mounted)
645 UnMount(false);
646 }
647 }
648
Dees_Troy51127312012-09-08 13:08:49 -0400649 return true;
650}
651
Matt Mower72c87ce2016-04-26 14:34:56 -0500652void TWPartition::Partition_Post_Processing(bool Display_Error) {
653 if (Mount_Point == "/data")
654 Setup_Data_Partition(Display_Error);
655 else if (Mount_Point == "/cache")
656 Setup_Cache_Partition(Display_Error);
657}
658
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600659void TWPartition::ExcludeAll(const string& path) {
660 backup_exclusions.add_absolute_dir(path);
661 wipe_exclusions.add_absolute_dir(path);
662}
663
Matt Mower72c87ce2016-04-26 14:34:56 -0500664void TWPartition::Setup_Data_Partition(bool Display_Error) {
665 if (Mount_Point != "/data")
666 return;
667
668 // Ensure /data is not mounted as tmpfs for qcom hardware decrypt
669 UnMount(false);
670
671#ifdef TW_INCLUDE_CRYPTO
Darth99ab7cf52023-02-05 23:41:03 +0000672 #ifdef TW_PREPARE_DATA_MEDIA_EARLY
673 if (datamedia)
674 Setup_Data_Media();
675 #endif
Matt Mower72c87ce2016-04-26 14:34:56 -0500676 Can_Be_Encrypted = true;
677 char crypto_blkdev[255];
678 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
679 if (strcmp(crypto_blkdev, "error") != 0) {
bigbiff7ba75002020-04-11 20:47:09 -0400680 Set_FBE_Status();
Matt Mower72c87ce2016-04-26 14:34:56 -0500681 Decrypted_Block_Device = crypto_blkdev;
682 LOGINFO("Data already decrypted, new block device: '%s'\n", crypto_blkdev);
Darth99ab7cf52023-02-05 23:41:03 +0000683 #ifndef TW_PREPARE_DATA_MEDIA_EARLY
bigbiff4fa02b52021-12-30 17:01:44 -0500684 if (datamedia)
685 Setup_Data_Media();
Darth99ab7cf52023-02-05 23:41:03 +0000686 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400687 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
Matt Mower72c87ce2016-04-26 14:34:56 -0500688 } else if (!Mount(false)) {
689 if (Is_Present) {
me-cafebabeb0aab752022-06-10 01:45:40 +0800690 if (Key_Directory.empty()) {
691 set_partition_data(Use_Original_Path ? Original_Path.c_str() : Actual_Block_Device.c_str(), Crypto_Key_Location.c_str());
692 if (cryptfs_check_footer() == 0) {
693 Is_Encrypted = true;
694 Is_Decrypted = false;
695 Can_Be_Mounted = false;
696 Current_File_System = "emmc";
697 Setup_Image();
698 DataManager::SetValue(TW_CRYPTO_PWTYPE, cryptfs_get_password_type());
699 DataManager::SetValue("tw_crypto_pwtype_0", cryptfs_get_password_type());
700 DataManager::SetValue(TW_CRYPTO_PASSWORD, "");
701 DataManager::SetValue("tw_crypto_display", "");
702 if (datamedia)
703 Setup_Data_Media();
704 } else {
705 gui_err("mount_data_footer=Could not mount /data and unable to find crypto footer.");
706 }
707 } else {
708 Is_Encrypted = true;
709 Is_Decrypted = false;
710 if (datamedia)
711 Setup_Data_Media();
712 }
Ethan Yonker93382822018-11-01 15:25:31 -0500713 } else if (Key_Directory.empty()) {
Noah Jacobson81d638d2019-04-28 00:10:07 -0400714 LOGERR("Primary block device '%s' for mount point '%s' is not present!\n",
715 Primary_Block_Device.c_str(), Mount_Point.c_str());
Matt Mower72c87ce2016-04-26 14:34:56 -0500716 }
717 } else {
bigbiff7ba75002020-04-11 20:47:09 -0400718 Set_FBE_Status();
Captain Throwbackacc7f0f2020-12-29 15:54:33 -0500719 int is_device_fbe;
720 DataManager::GetValue(TW_IS_FBE, is_device_fbe);
Captain Throwback8a8e56c2021-10-01 15:12:24 -0400721 char crypto_state[255];
722 property_get("ro.crypto.state", crypto_state, "error");
723 if (!Decrypt_FBE_DE() && strcmp(crypto_state, "error") != 0) {
724 if (is_device_fbe == 1)
725 LOGERR("Unable to decrypt FBE device\n");
726 } else {
727 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
Darth99ab7cf52023-02-05 23:41:03 +0000728 #ifndef TW_PREPARE_DATA_MEDIA_EARLY
bigbiff4fa02b52021-12-30 17:01:44 -0500729 if (datamedia)
730 Setup_Data_Media();
Darth99ab7cf52023-02-05 23:41:03 +0000731 #endif
mauronofrio9bf73352019-11-23 22:27:34 +0100732 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500733 }
734 if (datamedia && (!Is_Encrypted || (Is_Encrypted && Is_Decrypted))) {
735 Setup_Data_Media();
bigbiff25d25b92020-06-19 16:07:38 -0400736 Recreate_Media_Folder();
Matt Mower72c87ce2016-04-26 14:34:56 -0500737 }
738#else
739 if (datamedia) {
740 Setup_Data_Media();
741 Recreate_Media_Folder();
742 }
743#endif
744}
745
bigbiff7ba75002020-04-11 20:47:09 -0400746void TWPartition::Set_FBE_Status() {
747 DataManager::SetValue(TW_IS_DECRYPTED, 1);
748 Is_Encrypted = true;
749 Is_Decrypted = true;
bigbiff7ba75002020-04-11 20:47:09 -0400750 if (Key_Directory.empty()) {
751 Is_FBE = false;
752 DataManager::SetValue(TW_IS_FBE, 0);
753 } else {
Captain Throwbackb5af4f82020-12-29 16:01:10 -0500754 LOGINFO("Setup_Data_Partition::Key_Directory::%s\n", Key_Directory.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400755 Is_FBE = true;
756 DataManager::SetValue(TW_IS_FBE, 1);
757 }
758}
759
Ethan Yonker93382822018-11-01 15:25:31 -0500760bool TWPartition::Decrypt_FBE_DE() {
bigbiff7ba75002020-04-11 20:47:09 -0400761 if (TWFunc::Path_Exists("/data/unencrypted/key/version")) {
Captain Throwback87d73d62020-02-17 16:44:50 -0500762 DataManager::SetValue(TW_IS_FBE, 1);
Captain Throwback37c3aef2021-10-06 11:38:18 -0400763 PartitionManager.Set_Crypto_State();
764 PartitionManager.Set_Crypto_Type("file");
Ethan Yonker93382822018-11-01 15:25:31 -0500765 LOGINFO("File Based Encryption is present\n");
766#ifdef TW_INCLUDE_FBE
Noah Jacobson81d638d2019-04-28 00:10:07 -0400767 Is_FBE = true;
768 ExcludeAll(Mount_Point + "/convert_fbe");
769 ExcludeAll(Mount_Point + "/unencrypted");
770 ExcludeAll(Mount_Point + "/misc/vold/user_keys");
771 ExcludeAll(Mount_Point + "/misc/vold/volume_keys");
772 ExcludeAll(Mount_Point + "/system/gatekeeper.password.key");
773 ExcludeAll(Mount_Point + "/system/gatekeeper.pattern.key");
774 ExcludeAll(Mount_Point + "/system/locksettings.db");
775 ExcludeAll(Mount_Point + "/system/locksettings.db-wal");
776 ExcludeAll(Mount_Point + "/misc/gatekeeper");
777 ExcludeAll(Mount_Point + "/misc/keystore");
778 ExcludeAll(Mount_Point + "/drm/kek.dat");
bigbiffa957f072021-03-07 18:20:29 -0500779 ExcludeAll(Mount_Point + "/system_de/0/spblob"); // contains data needed to decrypt synthetic password
micky3872ec1df42021-10-14 14:53:06 +0200780 ExcludeAll(Mount_Point + "/system/users/0/gatekeeper.password.key");
781 ExcludeAll(Mount_Point + "/system/users/0/gatekeeper.pattern.key");
Noah Jacobson81d638d2019-04-28 00:10:07 -0400782 ExcludeAll(Mount_Point + "/cache");
783 ExcludeAll(Mount_Point + "/per_boot"); // removed each boot by init
bigbiffa15d02f2021-06-29 20:04:54 -0400784 ExcludeAll(Mount_Point + "/gsi"); // cow devices
785
Noah Jacobson81d638d2019-04-28 00:10:07 -0400786 int retry_count = 3;
bigbiffdf53b6c2022-01-17 19:31:52 -0500787 while (!android::keystore::Decrypt_DE() && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -0400788 usleep(2000);
789 if (retry_count > 0) {
Captain Throwback37c3aef2021-10-06 11:38:18 -0400790 PartitionManager.Set_Crypto_State();
Noah Jacobson81d638d2019-04-28 00:10:07 -0400791 Is_Encrypted = true;
792 Is_Decrypted = false;
793 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
794 string filename;
bigbiffdf53b6c2022-01-17 19:31:52 -0500795 int pwd_type = android::keystore::Get_Password_Type(0, filename);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400796 if (pwd_type < 0) {
797 LOGERR("This TWRP does not have synthetic password decrypt support\n");
798 pwd_type = 0; // default password
Ethan Yonker93382822018-11-01 15:25:31 -0500799 }
Noah Jacobson81d638d2019-04-28 00:10:07 -0400800 PartitionManager.Parse_Users(); // after load_all_de_keys() to parse_users
801 std::vector<users_struct>::iterator iter;
802 std::vector<users_struct>* userList = PartitionManager.Get_Users_List();
803 for (iter = userList->begin(); iter != userList->end(); iter++) {
804 if (atoi((*iter).userId.c_str()) != 0) {
805 ExcludeAll(Mount_Point + "/system_de/" + (*iter).userId + "/spblob");
806 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/gatekeeper.password.key");
807 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/gatekeeper.pattern.key");
808 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/locksettings.db");
809 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/locksettings.db-wal");
810 }
811 }
812 DataManager::SetValue(TW_CRYPTO_PWTYPE, pwd_type);
813 DataManager::SetValue("tw_crypto_pwtype_0", pwd_type);
814 DataManager::SetValue(TW_CRYPTO_PASSWORD, "");
815 DataManager::SetValue("tw_crypto_display", "");
816 return true;
817 }
Ethan Yonker93382822018-11-01 15:25:31 -0500818#else
819 LOGERR("FBE found but FBE support not present in TWRP\n");
820#endif
821 }
Captain Throwback87d73d62020-02-17 16:44:50 -0500822 DataManager::SetValue(TW_IS_FBE, 0);
Ethan Yonker93382822018-11-01 15:25:31 -0500823 return false;
824}
825
Matt Mower72c87ce2016-04-26 14:34:56 -0500826void TWPartition::Setup_Cache_Partition(bool Display_Error __unused) {
827 if (Mount_Point != "/cache")
828 return;
829
830 if (!Mount(true))
831 return;
832
833 if (!TWFunc::Path_Exists("/cache/recovery/.")) {
834 LOGINFO("Recreating /cache/recovery folder\n");
835 if (mkdir("/cache/recovery", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0)
836 LOGERR("Could not create /cache/recovery\n");
837 }
838}
839
Matt Mower4ab42b12016-04-21 13:52:18 -0500840void TWPartition::Process_FS_Flags(const char *str) {
841 char *options = strdup(str);
842 char *ptr, *savep;
Hashcode62bd9e02013-11-19 21:59:42 -0800843
Matt Mower4ab42b12016-04-21 13:52:18 -0500844 Mount_Options = "";
Hashcode62bd9e02013-11-19 21:59:42 -0800845
Matt Mower4ab42b12016-04-21 13:52:18 -0500846 // Avoid issues with potentially nested strtok by using strtok_r
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600847 for (ptr = strtok_r(options, ",", &savep); ptr; ptr = strtok_r(NULL, ",", &savep)) {
848 char *equals = strstr(ptr, "=");
849 size_t name_len;
Matt Mower4ab42b12016-04-21 13:52:18 -0500850
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600851 if (!equals)
852 name_len = strlen(ptr);
853 else
854 name_len = equals - ptr;
855
856 // There are some flags that we want to ignore in TWRP
857 bool found_match = false;
858 for (const char** ignored_mount_item = ignored_mount_items; *ignored_mount_item; ignored_mount_item++) {
859 if (strncmp(ptr, *ignored_mount_item, name_len) == 0) {
860 found_match = true;
Hashcode62bd9e02013-11-19 21:59:42 -0800861 break;
862 }
863 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600864 if (found_match)
865 continue;
Hashcode62bd9e02013-11-19 21:59:42 -0800866
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600867 // mount_flags are never postfixed by '='
868 if (!equals) {
869 const struct flag_list* mount_flag = mount_flags;
870 for (; mount_flag->name; mount_flag++) {
871 if (strcmp(ptr, mount_flag->name) == 0) {
872 if (mount_flag->flag == MS_RDONLY)
873 Mount_Read_Only = true;
874 else
875 Mount_Flags |= (unsigned)mount_flag->flag;
876 found_match = true;
877 break;
878 }
879 }
880 if (found_match)
881 continue;
Matt Mower4ab42b12016-04-21 13:52:18 -0500882 }
883
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600884 // If we aren't ignoring this flag and it's not a mount flag, then it must be a mount option
885 if (!Mount_Options.empty())
886 Mount_Options += ",";
887 Mount_Options += ptr;
Matt Mower4ab42b12016-04-21 13:52:18 -0500888 }
889 free(options);
Hashcode62bd9e02013-11-19 21:59:42 -0800890}
891
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600892void TWPartition::Save_FS_Flags(const string& local_File_System, int local_Mount_Flags, const string& local_Mount_Options) {
893 partition_fs_flags_struct flags;
894 flags.File_System = local_File_System;
895 flags.Mount_Flags = local_Mount_Flags;
896 flags.Mount_Options = local_Mount_Options;
897 fs_flags.push_back(flags);
898}
899
Matt Mower2416a502016-04-12 19:54:46 -0500900void TWPartition::Apply_TW_Flag(const unsigned flag, const char* str, const bool val) {
901 switch (flag) {
902 case TWFLAG_ANDSEC:
903 Has_Android_Secure = val;
904 break;
905 case TWFLAG_BACKUP:
906 Can_Be_Backed_Up = val;
907 break;
908 case TWFLAG_BACKUPNAME:
909 Backup_Display_Name = str;
910 break;
911 case TWFLAG_BLOCKSIZE:
912 Format_Block_Size = (unsigned long)(atol(str));
913 break;
914 case TWFLAG_CANBEWIPED:
915 Can_Be_Wiped = val;
916 break;
917 case TWFLAG_CANENCRYPTBACKUP:
918 Can_Encrypt_Backup = val;
919 break;
920 case TWFLAG_DEFAULTS:
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600921 case TWFLAG_WAIT:
922 case TWFLAG_VERIFY:
923 case TWFLAG_CHECK:
924 case TWFLAG_NOTRIM:
925 case TWFLAG_VOLDMANAGED:
926 case TWFLAG_RESIZE:
Matt Mower2416a502016-04-12 19:54:46 -0500927 // Do nothing
928 break;
929 case TWFLAG_DISPLAY:
930 Display_Name = str;
931 break;
932 case TWFLAG_ENCRYPTABLE:
933 case TWFLAG_FORCEENCRYPT:
934 Crypto_Key_Location = str;
935 break;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500936 case TWFLAG_FILEENCRYPTION:
937 // This flag isn't used by TWRP but is needed in 9.0 FBE decrypt
938 // fileencryption=ice:aes-256-heh
939 {
940 std::string FBE = str;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500941 size_t colon_loc = FBE.find(":");
942 if (colon_loc == std::string::npos) {
Ethan Yonker93382822018-11-01 15:25:31 -0500943 property_set("fbe.contents", FBE.c_str());
944 property_set("fbe.filenames", "");
945 LOGINFO("FBE contents '%s', filenames ''\n", FBE.c_str());
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500946 break;
947 }
Ethan Yonker93382822018-11-01 15:25:31 -0500948 std::string FBE_contents, FBE_filenames;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500949 FBE_contents = FBE.substr(0, colon_loc);
950 FBE_filenames = FBE.substr(colon_loc + 1);
951 property_set("fbe.contents", FBE_contents.c_str());
952 property_set("fbe.filenames", FBE_filenames.c_str());
953 LOGINFO("FBE contents '%s', filenames '%s'\n", FBE_contents.c_str(), FBE_filenames.c_str());
954 }
955 break;
Captain Throwbackf74fe4f2022-02-08 12:45:01 -0500956 case TWFLAG_METADATA_ENCRYPTION:
957 // This flag isn't used by TWRP but is needed for FBEv2 metadata decryption
958 // metadata_encryption=aes-256-xts:wrappedkey_v0
959 {
960 std::string META = str;
961 size_t colon_loc = META.find(":");
962 if (colon_loc == std::string::npos) {
963 property_set("metadata.contents", META.c_str());
964 property_set("metadata.filenames", "");
965 LOGINFO("Metadata contents '%s', filenames ''\n", META.c_str());
966 break;
967 }
968 std::string META_contents, META_filenames;
969 META_contents = META.substr(0, colon_loc);
970 META_filenames = META.substr(colon_loc + 1);
971 property_set("metadata.contents", META_contents.c_str());
972 property_set("metadata.filenames", META_filenames.c_str());
973 LOGINFO("Metadata contents '%s', filenames '%s'\n", META_contents.c_str(), META_filenames.c_str());
974 }
975 break;
Peter Cai28ea7b02019-05-24 11:38:54 +0800976 case TWFLAG_WRAPPEDKEY:
bigbiff437d86f2021-09-26 16:57:14 -0400977 // no more processing needed. leaving it here in case we want to do something in the future
Peter Cai28ea7b02019-05-24 11:38:54 +0800978 break;
Matt Mower2416a502016-04-12 19:54:46 -0500979 case TWFLAG_FLASHIMG:
980 Can_Flash_Img = val;
981 break;
982 case TWFLAG_FSFLAGS:
Matt Mower4ab42b12016-04-21 13:52:18 -0500983 Process_FS_Flags(str);
Matt Mower2416a502016-04-12 19:54:46 -0500984 break;
985 case TWFLAG_IGNOREBLKID:
986 Ignore_Blkid = val;
987 break;
988 case TWFLAG_LENGTH:
989 Length = atoi(str);
990 break;
991 case TWFLAG_MOUNTTODECRYPT:
992 Mount_To_Decrypt = val;
993 break;
Captain Throwback8d97d422022-02-08 15:31:44 -0500994 case TWFLAG_QUOTA:
995 // Filesystem flag - TWRP does not need to process
996 break;
Matt Mower2416a502016-04-12 19:54:46 -0500997 case TWFLAG_REMOVABLE:
998 Removable = val;
999 break;
Matt Mower2416a502016-04-12 19:54:46 -05001000 case TWFLAG_SETTINGSSTORAGE:
1001 Is_Settings_Storage = val;
1002 if (Is_Settings_Storage)
1003 Is_Storage = true;
1004 break;
1005 case TWFLAG_STORAGE:
1006 Is_Storage = val;
1007 break;
1008 case TWFLAG_STORAGENAME:
1009 Storage_Name = str;
1010 break;
1011 case TWFLAG_SUBPARTITIONOF:
1012 Is_SubPartition = true;
1013 SubPartition_Of = str;
1014 break;
1015 case TWFLAG_SYMLINK:
1016 Symlink_Path = str;
1017 break;
1018 case TWFLAG_USERDATAENCRYPTBACKUP:
1019 Use_Userdata_Encryption = val;
1020 if (Use_Userdata_Encryption)
1021 Can_Encrypt_Backup = true;
1022 break;
1023 case TWFLAG_USERMRF:
1024 Use_Rm_Rf = val;
1025 break;
1026 case TWFLAG_WIPEDURINGFACTORYRESET:
1027 Wipe_During_Factory_Reset = val;
1028 if (Wipe_During_Factory_Reset) {
1029 Can_Be_Wiped = true;
1030 Wipe_Available_in_GUI = true;
1031 }
1032 break;
1033 case TWFLAG_WIPEINGUI:
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001034 case TWFLAG_FORMATTABLE:
Matt Mower2416a502016-04-12 19:54:46 -05001035 Wipe_Available_in_GUI = val;
1036 if (Wipe_Available_in_GUI)
1037 Can_Be_Wiped = true;
1038 break;
Ethan Yonker1b190162016-12-05 15:25:19 -06001039 case TWFLAG_SLOTSELECT:
1040 SlotSelect = true;
1041 break;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001042 case TWFLAG_ALTDEVICE:
1043 Alternate_Block_Device = str;
1044 break;
Peter Cai439d60c2019-10-17 08:49:10 +08001045 case TWFLAG_ADOPTED_MOUNT_DELAY:
1046 Adopted_Mount_Delay = atoi(str);
1047 break;
Ethan Yonker93382822018-11-01 15:25:31 -05001048 case TWFLAG_KEYDIRECTORY:
1049 Key_Directory = str;
bigbiffa957f072021-03-07 18:20:29 -05001050 LOGINFO("setting Key_Directory to: %s\n", Key_Directory.c_str());
bigbiffd58ba182020-03-23 10:02:29 -04001051 break;
Peter Caid68e6412019-11-02 19:22:38 +08001052 case TWFLAG_DM_USE_ORIGINAL_PATH:
1053 Use_Original_Path = true;
1054 break;
bigbiff998f8392021-08-06 19:19:33 -04001055 case TWFLAG_LOGICAL:
1056 Is_Super = true;
1057 break;
Darth99fb13af2023-04-07 23:32:45 +01001058 case TWFLAG_FS_COMPRESS:
1059 #ifdef TW_ENABLE_FS_COMPRESSION
1060 Needs_Fs_Compress = true;
1061 LOGINFO("Enabling 'fs compression'\n");
1062 #else
1063 LOGINFO("Ignoring the 'fscompress' fstab flag\n");
1064 #endif
1065 break;
Matt Mower2416a502016-04-12 19:54:46 -05001066 default:
1067 // Should not get here
1068 LOGINFO("Flag identified for processing, but later unmatched: %i\n", flag);
1069 break;
1070 }
1071}
Dees_Troy51127312012-09-08 13:08:49 -04001072
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001073void TWPartition::Process_TW_Flags(char *flags, bool Display_Error, int fstab_ver) {
Matt Mower2416a502016-04-12 19:54:46 -05001074 char separator[2] = {'\n', 0};
1075 char *ptr, *savep;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001076 char source_separator = ';';
1077
1078 if (fstab_ver == 2)
1079 source_separator = ',';
Matt Mower2416a502016-04-12 19:54:46 -05001080
1081 // Semicolons within double-quotes are not forbidden, so replace
1082 // only the semicolons intended as separators with '\n' for strtok
1083 for (unsigned i = 0, skip = 0; i < strlen(flags); i++) {
1084 if (flags[i] == '\"')
Dees_Troya13d74f2013-03-24 08:54:55 -05001085 skip = !skip;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001086 if (!skip && flags[i] == source_separator)
Matt Mower2416a502016-04-12 19:54:46 -05001087 flags[i] = separator[0];
Dees_Troy51127312012-09-08 13:08:49 -04001088 }
1089
Matt Mower2416a502016-04-12 19:54:46 -05001090 // Avoid issues with potentially nested strtok by using strtok_r
1091 ptr = strtok_r(flags, separator, &savep);
1092 while (ptr) {
1093 int ptr_len = strlen(ptr);
1094 const struct flag_list* tw_flag = tw_flags;
Hashcode62bd9e02013-11-19 21:59:42 -08001095
Matt Mower2416a502016-04-12 19:54:46 -05001096 for (; tw_flag->name; tw_flag++) {
1097 int flag_len = strlen(tw_flag->name);
1098
1099 if (strncmp(ptr, tw_flag->name, flag_len) == 0) {
1100 bool flag_val = false;
1101
1102 if (ptr_len > flag_len && (tw_flag->name)[flag_len-1] != '='
1103 && ptr[flag_len] != '=') {
1104 // Handle flags with same starting string
1105 // (e.g. backup and backupname)
1106 continue;
1107 } else if (ptr_len > flag_len && ptr[flag_len] == '=') {
1108 // Handle flags with dual format: Part 1
1109 // (e.g. backup and backup=y. backup=y handled here)
1110 ptr += flag_len + 1;
1111 TWFunc::Strip_Quotes(ptr);
1112 // Skip flags with empty argument
1113 // (e.g. backup=)
1114 if (strlen(ptr) == 0) {
1115 LOGINFO("Flag missing argument or should not include '=': %s=\n", tw_flag->name);
1116 break;
1117 }
1118 flag_val = strchr("yY1", *ptr) != NULL;
1119 } else if (ptr_len == flag_len
1120 && (tw_flag->name)[flag_len-1] == '=') {
1121 // Skip flags missing argument after =
1122 // (e.g. backupname=)
1123 LOGINFO("Flag missing argument: %s\n", tw_flag->name);
1124 break;
1125 } else if (ptr_len > flag_len
1126 && (tw_flag->name)[flag_len-1] == '=') {
1127 // Handle arguments to flags
1128 // (e.g. backupname="My Stuff")
1129 ptr += flag_len;
1130 TWFunc::Strip_Quotes(ptr);
1131 // Skip flags with empty argument
1132 // (e.g. backupname="")
1133 if (strlen(ptr) == 0) {
1134 LOGINFO("Flag missing argument: %s\n", tw_flag->name);
1135 break;
1136 }
1137 } else if (ptr_len == flag_len) {
1138 // Handle flags with dual format: Part 2
1139 // (e.g. backup and backup=y. backup handled here)
1140 flag_val = true;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001141 } else {
Matt Mower2416a502016-04-12 19:54:46 -05001142 LOGINFO("Flag matched, but could not be processed: %s\n", ptr);
1143 break;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001144 }
Matt Mower2416a502016-04-12 19:54:46 -05001145
1146 Apply_TW_Flag(tw_flag->flag, ptr, flag_val);
1147 break;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001148 }
Matt Mower2416a502016-04-12 19:54:46 -05001149 }
1150 if (tw_flag->name == 0) {
Dees_Troy51127312012-09-08 13:08:49 -04001151 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001152 LOGERR("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -04001153 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001154 LOGINFO("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -04001155 }
Matt Mower2416a502016-04-12 19:54:46 -05001156 ptr = strtok_r(NULL, separator, &savep);
Dees_Troy51127312012-09-08 13:08:49 -04001157 }
Dees_Troy51a0e822012-09-05 15:24:24 -04001158}
1159
Dees_Troy5bf43922012-09-07 16:07:55 -04001160bool TWPartition::Is_File_System(string File_System) {
1161 if (File_System == "ext2" ||
Dees_Troy63c8df72012-09-10 14:02:05 -04001162 File_System == "ext3" ||
Dees_Troy5bf43922012-09-07 16:07:55 -04001163 File_System == "ext4" ||
1164 File_System == "vfat" ||
1165 File_System == "ntfs" ||
1166 File_System == "yaffs2" ||
bigbiff bigbiff3e146522012-11-14 14:32:59 -05001167 File_System == "exfat" ||
Dees_Troye5017042013-08-29 16:38:55 +00001168 File_System == "f2fs" ||
GarfieldHanc60a2082021-11-21 23:46:20 +08001169 File_System == "erofs" ||
Erfan Abdib859e912019-02-05 18:18:46 +02001170 File_System == "squashfs" ||
Dees_Troy5bf43922012-09-07 16:07:55 -04001171 File_System == "auto")
1172 return true;
1173 else
1174 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001175}
1176
Dees_Troy5bf43922012-09-07 16:07:55 -04001177bool TWPartition::Is_Image(string File_System) {
Dees_Troy5fcd8f92012-10-16 12:22:05 -04001178 if (File_System == "emmc" || File_System == "mtd" || File_System == "bml")
Dees_Troy5bf43922012-09-07 16:07:55 -04001179 return true;
1180 else
1181 return false;
1182}
1183
Dees_Troy51127312012-09-08 13:08:49 -04001184bool TWPartition::Make_Dir(string Path, bool Display_Error) {
Ethan Yonker93ac7a02016-11-07 22:05:58 -06001185 if (TWFunc::Get_D_Type_From_Stat(Path) != S_IFDIR)
1186 unlink(Path.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001187 if (!TWFunc::Path_Exists(Path)) {
Dees_Troy51127312012-09-08 13:08:49 -04001188 if (mkdir(Path.c_str(), 0777) == -1) {
1189 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001190 gui_msg(Msg(msg::kError, "create_folder_strerr=Can not create '{1}' folder ({2}).")(Path)(strerror(errno)));
Dees_Troy51127312012-09-08 13:08:49 -04001191 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001192 LOGINFO("Can not create '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001193 return false;
1194 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001195 LOGINFO("Created '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001196 return true;
1197 }
1198 }
1199 return true;
1200}
1201
Dees_Troy5bf43922012-09-07 16:07:55 -04001202void TWPartition::Setup_File_System(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001203 Can_Be_Mounted = true;
1204 Can_Be_Wiped = true;
1205
Dees_Troy5bf43922012-09-07 16:07:55 -04001206 // Make the mount point folder if it doesn't exist
Dees_Troy51127312012-09-08 13:08:49 -04001207 Make_Dir(Mount_Point, Display_Error);
bigbiffce8f83c2015-12-12 18:30:21 -05001208 Backup_Method = BM_FILES;
Dees_Troy5bf43922012-09-07 16:07:55 -04001209}
1210
Ethan Yonker1b190162016-12-05 15:25:19 -06001211void TWPartition::Setup_Image() {
Dees_Troy5bf43922012-09-07 16:07:55 -04001212 Display_Name = Mount_Point.substr(1, Mount_Point.size() - 1);
1213 Backup_Name = Display_Name;
Gary Peck82599a82012-11-21 16:23:12 -08001214 if (Current_File_System == "emmc")
bigbiffce8f83c2015-12-12 18:30:21 -05001215 Backup_Method = BM_DD;
Gary Peck82599a82012-11-21 16:23:12 -08001216 else if (Current_File_System == "mtd" || Current_File_System == "bml")
bigbiffce8f83c2015-12-12 18:30:21 -05001217 Backup_Method = BM_FLASH_UTILS;
Dees_Troy5bf43922012-09-07 16:07:55 -04001218 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001219 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 -04001220}
1221
Dees_Troye58d5262012-09-21 12:27:57 -04001222void TWPartition::Setup_AndSec(void) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001223 Backup_Display_Name = "Android Secure";
Dees_Troye58d5262012-09-21 12:27:57 -04001224 Backup_Name = "and-sec";
Dees_Troya13d74f2013-03-24 08:54:55 -05001225 Can_Be_Backed_Up = true;
Dees_Troye58d5262012-09-21 12:27:57 -04001226 Has_Android_Secure = true;
1227 Symlink_Path = Mount_Point + "/.android_secure";
1228 Symlink_Mount_Point = "/and-sec";
1229 Backup_Path = Symlink_Mount_Point;
1230 Make_Dir("/and-sec", true);
1231 Recreate_AndSec_Folder();
Kjell Braden3126a112016-06-19 16:58:15 +00001232 Mount_Storage_Retry(true);
Dees_Troye58d5262012-09-21 12:27:57 -04001233}
1234
that9e0593e2014-10-08 00:01:24 +02001235void TWPartition::Setup_Data_Media() {
Ethan Yonker6277c792014-09-15 14:54:30 -05001236 LOGINFO("Setting up '%s' as data/media emulated storage.\n", Mount_Point.c_str());
Ethan Yonker66a19492015-12-10 10:19:45 -06001237 if (Storage_Name.empty() || Storage_Name == "Data")
1238 Storage_Name = "Internal Storage";
Ethan Yonker6277c792014-09-15 14:54:30 -05001239 Has_Data_Media = true;
1240 Is_Storage = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06001241 Storage_Path = Mount_Point + "/media";
Ethan Yonker6277c792014-09-15 14:54:30 -05001242 Symlink_Path = Storage_Path;
Ethan Yonker66a19492015-12-10 10:19:45 -06001243 if (Mount_Point == "/data") {
1244 Is_Settings_Storage = true;
1245 if (strcmp(EXPAND(TW_EXTERNAL_STORAGE_PATH), "/sdcard") == 0) {
1246 Make_Dir("/emmc", false);
1247 Symlink_Mount_Point = "/emmc";
1248 } else {
1249 Make_Dir("/sdcard", false);
1250 Symlink_Mount_Point = "/sdcard";
1251 }
Darth99ab7cf52023-02-05 23:41:03 +00001252 #ifdef TW_PREPARE_DATA_MEDIA_EARLY
1253 if (Mount(false) && TWFunc::Path_Exists(Mount_Point + "/media/0")) {
1254 #else
bigbiff4fa02b52021-12-30 17:01:44 -05001255 Mount(false);
1256 if (TWFunc::Path_Exists(Mount_Point + "/media/0")) {
Darth99ab7cf52023-02-05 23:41:03 +00001257 #endif
Ethan Yonker66a19492015-12-10 10:19:45 -06001258 Storage_Path = Mount_Point + "/media/0";
1259 Symlink_Path = Storage_Path;
1260 DataManager::SetValue(TW_INTERNAL_PATH, Mount_Point + "/media/0");
1261 UnMount(true);
1262 }
1263 DataManager::SetValue("tw_has_internal", 1);
1264 DataManager::SetValue("tw_has_data_media", 1);
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001265 backup_exclusions.add_absolute_dir("/data/data/com.google.android.music/files");
bigbiff25d25b92020-06-19 16:07:38 -04001266 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
DarthJabba943d70f42020-08-04 10:31:27 +01001267 backup_exclusions.add_absolute_dir("/data/vendor/dumpsys");
bigbiff25d25b92020-06-19 16:07:38 -04001268 backup_exclusions.add_absolute_dir("/data/cache");
nijel87e5bc9b2022-01-14 10:01:32 -05001269 backup_exclusions.add_absolute_dir("/data/misc/apexdata/com.android.art"); // exclude this dir to prevent "error 255" on AOSP Android 12
sekaiacg05ca8762022-07-06 11:19:45 +08001270 backup_exclusions.add_absolute_dir("/data/extm"); //exclude this dir to prevent "error 255" on MIUI
Ethan Yonker6355b562017-05-01 09:42:17 -05001271 wipe_exclusions.add_absolute_dir(Mount_Point + "/misc/vold"); // adopted storage keys
Ethan Yonker79f88bd2016-12-09 14:52:12 -06001272 ExcludeAll(Mount_Point + "/system/storage.xml");
Darth9cc683e72022-08-09 12:54:40 +01001273
Darth92fa94a72023-03-16 17:14:08 +00001274 backup_exclusions.add_absolute_dir("/data/system/users/0/package-restrictions.xml");
1275
Darth9cc683e72022-08-09 12:54:40 +01001276 // board-customisable exclusions
1277 #ifdef TW_BACKUP_EXCLUSIONS
1278 std::vector<std::string> user_extra_exclusions = TWFunc::Split_String(TW_BACKUP_EXCLUSIONS, ",");
1279 std::string s1;
1280 for (const std::string& extra_x : user_extra_exclusions) {
1281 s1 = android::base::Trim(extra_x);
1282 if (!s1.empty()) {
1283 backup_exclusions.add_absolute_dir(s1);
1284 LOGINFO("Adding user-defined path '%s' to the backup exclusions\n", s1.c_str());
1285 }
1286 }
1287 #endif
Ethan Yonker6277c792014-09-15 14:54:30 -05001288 } else {
nkk717aa6fc62017-03-24 18:28:03 +02001289 int i;
1290 string path;
1291 for (i = 2; i <= 9; i++) {
1292 path = "/sdcard" + TWFunc::to_string(i);
1293 if (!TWFunc::Path_Exists(path)) {
1294 Make_Dir(path, false);
1295 Symlink_Mount_Point = path;
1296 LOGINFO("'%s' data/media emulated storage symlinked to %s.\n", Mount_Point.c_str(), Symlink_Mount_Point.c_str());
1297 break;
1298 }
1299 }
Ethan Yonker66a19492015-12-10 10:19:45 -06001300 if (Mount(true) && TWFunc::Path_Exists(Mount_Point + "/media/0")) {
1301 Storage_Path = Mount_Point + "/media/0";
1302 Symlink_Path = Storage_Path;
1303 UnMount(true);
1304 }
Ethan Yonker6277c792014-09-15 14:54:30 -05001305 }
Ethan Yonker79f88bd2016-12-09 14:52:12 -06001306 ExcludeAll(Mount_Point + "/media");
Ethan Yonker6277c792014-09-15 14:54:30 -05001307}
1308
Dees_Troy5bf43922012-09-07 16:07:55 -04001309void TWPartition::Find_Real_Block_Device(string& Block, bool Display_Error) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001310 char device[PATH_MAX], realDevice[PATH_MAX];
Dees_Troy5bf43922012-09-07 16:07:55 -04001311
Peter Caid68e6412019-11-02 19:22:38 +08001312 Original_Path = Block;
1313
Dees_Troy5bf43922012-09-07 16:07:55 -04001314 strcpy(device, Block.c_str());
1315 memset(realDevice, 0, sizeof(realDevice));
1316 while (readlink(device, realDevice, sizeof(realDevice)) > 0)
1317 {
1318 strcpy(device, realDevice);
1319 memset(realDevice, 0, sizeof(realDevice));
1320 }
1321
bigbiff998f8392021-08-06 19:19:33 -04001322 Block = device;
1323 return;
Dees_Troy5bf43922012-09-07 16:07:55 -04001324}
1325
Kjell Braden3126a112016-06-19 16:58:15 +00001326bool TWPartition::Mount_Storage_Retry(bool Display_Error) {
Dees_Troy8e337f32012-10-13 22:07:49 -04001327 // On some devices, storage doesn't want to mount right away, retry and sleep
Kjell Braden3126a112016-06-19 16:58:15 +00001328 if (!Mount(Display_Error)) {
Dees_Troy8e337f32012-10-13 22:07:49 -04001329 int retry_count = 5;
1330 while (retry_count > 0 && !Mount(false)) {
1331 usleep(500000);
1332 retry_count--;
1333 }
Kjell Braden3126a112016-06-19 16:58:15 +00001334 return Mount(Display_Error);
Dees_Troy8e337f32012-10-13 22:07:49 -04001335 }
Kjell Braden3126a112016-06-19 16:58:15 +00001336 return true;
Dees_Troy8e337f32012-10-13 22:07:49 -04001337}
1338
Dees_Troy38bd7602012-09-14 13:33:53 -04001339bool TWPartition::Find_MTD_Block_Device(string MTD_Name) {
1340 FILE *fp = NULL;
1341 char line[255];
1342
1343 fp = fopen("/proc/mtd", "rt");
1344 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001345 LOGERR("Device does not support /proc/mtd\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001346 return false;
1347 }
1348
1349 while (fgets(line, sizeof(line), fp) != NULL)
1350 {
1351 char device[32], label[32];
1352 unsigned long size = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -04001353 int deviceId;
1354
1355 sscanf(line, "%s %lx %*s %*c%s", device, &size, label);
1356
1357 // Skip header and blank lines
1358 if ((strcmp(device, "dev:") == 0) || (strlen(line) < 8))
1359 continue;
1360
1361 // Strip off the trailing " from the label
1362 label[strlen(label)-1] = '\0';
1363
1364 if (strcmp(label, MTD_Name.c_str()) == 0) {
1365 // We found our device
1366 // Strip off the trailing : from the device
1367 device[strlen(device)-1] = '\0';
1368 if (sscanf(device,"mtd%d", &deviceId) == 1) {
1369 sprintf(device, "/dev/block/mtdblock%d", deviceId);
1370 Primary_Block_Device = device;
Dees_Troy76543db2013-06-19 16:24:30 +00001371 fclose(fp);
1372 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -04001373 }
1374 }
1375 }
1376 fclose(fp);
1377
1378 return false;
1379}
1380
Dees_Troy51127312012-09-08 13:08:49 -04001381bool TWPartition::Get_Size_Via_statfs(bool Display_Error) {
1382 struct statfs st;
1383 string Local_Path = Mount_Point + "/.";
1384
1385 if (!Mount(Display_Error))
1386 return false;
1387
1388 if (statfs(Local_Path.c_str(), &st) != 0) {
1389 if (!Removable) {
1390 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001391 LOGERR("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001392 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001393 LOGINFO("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001394 }
1395 return false;
1396 }
1397 Size = (st.f_blocks * st.f_bsize);
1398 Used = ((st.f_blocks - st.f_bfree) * st.f_bsize);
1399 Free = (st.f_bfree * st.f_bsize);
1400 Backup_Size = Used;
1401 return true;
1402}
1403
1404bool TWPartition::Get_Size_Via_df(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001405 FILE* fp;
1406 char command[255], line[512];
1407 int include_block = 1;
1408 unsigned int min_len;
1409
1410 if (!Mount(Display_Error))
1411 return false;
1412
Dees_Troy38bd7602012-09-14 13:33:53 -04001413 min_len = Actual_Block_Device.size() + 2;
Dees_Troy51127312012-09-08 13:08:49 -04001414 sprintf(command, "df %s > /tmp/dfoutput.txt", Mount_Point.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001415 TWFunc::Exec_Cmd(command);
Dees_Troy51127312012-09-08 13:08:49 -04001416 fp = fopen("/tmp/dfoutput.txt", "rt");
1417 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001418 LOGINFO("Unable to open /tmp/dfoutput.txt.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001419 return false;
Dees_Troy51127312012-09-08 13:08:49 -04001420 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001421
1422 while (fgets(line, sizeof(line), fp) != NULL)
1423 {
1424 unsigned long blocks, used, available;
1425 char device[64];
1426 char tmpString[64];
1427
1428 if (strncmp(line, "Filesystem", 10) == 0)
1429 continue;
1430 if (strlen(line) < min_len) {
1431 include_block = 0;
1432 continue;
1433 }
1434 if (include_block) {
1435 sscanf(line, "%s %lu %lu %lu", device, &blocks, &used, &available);
1436 } else {
1437 // The device block string is so long that the df information is on the next line
1438 int space_count = 0;
Dees_Troye58d5262012-09-21 12:27:57 -04001439 sprintf(tmpString, "/dev/block/%s", Actual_Block_Device.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001440 while (tmpString[space_count] == 32)
1441 space_count++;
1442 sscanf(line + space_count, "%lu %lu %lu", &blocks, &used, &available);
1443 }
1444
1445 // Adjust block size to byte size
1446 Size = blocks * 1024ULL;
1447 Used = used * 1024ULL;
1448 Free = available * 1024ULL;
1449 Backup_Size = Used;
1450 }
1451 fclose(fp);
1452 return true;
1453}
1454
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001455unsigned long long TWPartition::IOCTL_Get_Block_Size() {
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001456 Find_Actual_Block_Device();
Ethan Yonker483e9f42016-01-11 22:21:18 -06001457
1458 return TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001459}
1460
Dees_Troy5bf43922012-09-07 16:07:55 -04001461bool TWPartition::Find_Partition_Size(void) {
1462 FILE* fp;
1463 char line[512];
1464 string tmpdevice;
1465
igoriok87e3d932013-01-31 21:03:53 +02001466 fp = fopen("/proc/dumchar_info", "rt");
1467 if (fp != NULL) {
1468 while (fgets(line, sizeof(line), fp) != NULL)
1469 {
1470 char label[32], device[32];
1471 unsigned long size = 0;
1472
thatd43bf2d2014-09-21 23:13:02 +02001473 sscanf(line, "%s %lx %*x %*u %s", label, &size, device);
igoriok87e3d932013-01-31 21:03:53 +02001474
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05001475 // Skip header, annotation and blank lines
igoriok87e3d932013-01-31 21:03:53 +02001476 if ((strncmp(device, "/dev/", 5) != 0) || (strlen(line) < 8))
1477 continue;
1478
1479 tmpdevice = "/dev/";
1480 tmpdevice += label;
1481 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
1482 Size = size;
1483 fclose(fp);
1484 return true;
1485 }
1486 }
1487 }
1488
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001489 unsigned long long ioctl_size = IOCTL_Get_Block_Size();
1490 if (ioctl_size) {
1491 Size = ioctl_size;
1492 return true;
1493 }
1494
Dees_Troy5bf43922012-09-07 16:07:55 -04001495 // In this case, we'll first get the partitions we care about (with labels)
1496 fp = fopen("/proc/partitions", "rt");
1497 if (fp == NULL)
1498 return false;
1499
1500 while (fgets(line, sizeof(line), fp) != NULL)
1501 {
1502 unsigned long major, minor, blocks;
1503 char device[512];
Dees_Troy5bf43922012-09-07 16:07:55 -04001504
Dees_Troy63c8df72012-09-10 14:02:05 -04001505 if (strlen(line) < 7 || line[0] == 'm') continue;
Dees_Troy5bf43922012-09-07 16:07:55 -04001506 sscanf(line + 1, "%lu %lu %lu %s", &major, &minor, &blocks, device);
1507
1508 tmpdevice = "/dev/block/";
1509 tmpdevice += device;
Dees_Troy38bd7602012-09-14 13:33:53 -04001510 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001511 // Adjust block size to byte size
1512 Size = blocks * 1024ULL;
1513 fclose(fp);
1514 return true;
1515 }
1516 }
1517 fclose(fp);
1518 return false;
1519}
1520
Dees_Troy5bf43922012-09-07 16:07:55 -04001521bool TWPartition::Is_Mounted(void) {
1522 if (!Can_Be_Mounted)
1523 return false;
1524
1525 struct stat st1, st2;
1526 string test_path;
1527
1528 // Check to see if the mount point directory exists
1529 test_path = Mount_Point + "/.";
1530 if (stat(test_path.c_str(), &st1) != 0) return false;
1531
1532 // Check to see if the directory above the mount point exists
1533 test_path = Mount_Point + "/../.";
1534 if (stat(test_path.c_str(), &st2) != 0) return false;
1535
1536 // Compare the device IDs -- if they match then we're (probably) using tmpfs instead of an actual device
1537 int ret = (st1.st_dev != st2.st_dev) ? true : false;
Dees_Troy5bf43922012-09-07 16:07:55 -04001538 return ret;
1539}
1540
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05001541bool TWPartition::Is_File_System_Writable(void) {
1542 if (!Is_File_System(Current_File_System) || !Is_Mounted())
1543 return false;
1544
1545 string test_path = Mount_Point + "/.";
1546 return (access(test_path.c_str(), W_OK) == 0);
1547}
1548
Dees_Troy5bf43922012-09-07 16:07:55 -04001549bool TWPartition::Mount(bool Display_Error) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001550 int exfat_mounted = 0;
Martin Dünkelmann6d843782018-12-27 23:40:28 +01001551 unsigned int flags = Mount_Flags;
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001552
Dees_Troy5bf43922012-09-07 16:07:55 -04001553 if (Is_Mounted()) {
1554 return true;
1555 } else if (!Can_Be_Mounted) {
1556 return false;
1557 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001558
1559 Find_Actual_Block_Device();
1560
1561 // Check the current file system before mounting
1562 Check_FS_Type();
bigbiffad58e1b2020-07-06 20:24:34 -04001563 if (Current_File_System == "exfat" && TWFunc::Path_Exists("/system/bin/exfat-fuse")) {
1564 string cmd = "/system/bin/exfat-fuse -o big_writes,max_read=131072,max_write=131072 " + Actual_Block_Device + " " + Mount_Point;
Dees_Troy2673cec2013-04-02 20:22:16 +00001565 LOGINFO("cmd: %s\n", cmd.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001566 string result;
bigbiffad58e1b2020-07-06 20:24:34 -04001567 if (TWFunc::Exec_Cmd(cmd, result, false) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001568 LOGINFO("exfat-fuse failed to mount with result '%s', trying vfat\n", result.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001569 Current_File_System = "vfat";
1570 } else {
1571#ifdef TW_NO_EXFAT_FUSE
1572 UnMount(false);
1573 // We'll let the kernel handle it but using exfat-fuse to detect if the file system is actually exfat
1574 // Some kernels let us mount vfat as exfat which doesn't work out too well
1575#else
1576 exfat_mounted = 1;
1577#endif
1578 }
1579 }
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001580
Captain Throwback47bf7202020-10-06 17:39:39 -04001581 if (Current_File_System == "ntfs" && !TWFunc::Path_Exists("/sys/module/tntfs") && (TWFunc::Path_Exists("/system/bin/ntfs-3g") || TWFunc::Path_Exists("/system/bin/mount.ntfs"))) {
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001582 string cmd;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001583 string Ntfsmount_Binary = "";
1584
bigbiffad58e1b2020-07-06 20:24:34 -04001585 if (TWFunc::Path_Exists("/system/bin/ntfs-3g"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001586 Ntfsmount_Binary = "ntfs-3g";
bigbiffad58e1b2020-07-06 20:24:34 -04001587 else if (TWFunc::Path_Exists("/system/bin/mount.ntfs"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001588 Ntfsmount_Binary = "mount.ntfs";
1589
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001590 if (Mount_Read_Only)
bigbiffad58e1b2020-07-06 20:24:34 -04001591 cmd = "/system/bin/" + Ntfsmount_Binary + " -o ro " + Actual_Block_Device + " " + Mount_Point;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001592 else
bigbiffad58e1b2020-07-06 20:24:34 -04001593 cmd = "/system/bin/" + Ntfsmount_Binary + " " + Actual_Block_Device + " " + Mount_Point;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001594 LOGINFO("cmd: '%s'\n", cmd.c_str());
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001595
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001596 if (TWFunc::Exec_Cmd(cmd) == 0) {
1597 return true;
1598 } else {
1599 LOGINFO("ntfs-3g failed to mount, trying regular mount method.\n");
1600 }
Captain Throwback47bf7202020-10-06 17:39:39 -04001601 } else {
1602 if (Current_File_System == "ntfs" && TWFunc::Path_Exists("/sys/module/tntfs"))
1603 Current_File_System = "tntfs";
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001604 }
1605
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001606 if (Mount_Read_Only)
1607 flags |= MS_RDONLY;
1608
Dees_Troy22042032012-12-18 21:23:08 +00001609 if (Fstab_File_System == "yaffs2") {
1610 // mount an MTD partition as a YAFFS2 filesystem.
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001611 flags = MS_NOATIME | MS_NODEV | MS_NODIRATIME;
1612 if (Mount_Read_Only)
1613 flags |= MS_RDONLY;
Dees_Troy76543db2013-06-19 16:24:30 +00001614 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags, NULL) < 0) {
1615 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags | MS_RDONLY, NULL) < 0) {
1616 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001617 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy76543db2013-06-19 16:24:30 +00001618 else
1619 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
1620 return false;
1621 } else {
1622 LOGINFO("Mounted '%s' (MTD) as RO\n", Mount_Point.c_str());
1623 return true;
1624 }
1625 } else {
1626 struct stat st;
1627 string test_path = Mount_Point;
1628 if (stat(test_path.c_str(), &st) < 0) {
1629 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001630 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy76543db2013-06-19 16:24:30 +00001631 else
1632 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
1633 return false;
1634 }
1635 mode_t new_mode = st.st_mode | S_IXUSR | S_IXGRP | S_IXOTH;
1636 if (new_mode != st.st_mode) {
1637 LOGINFO("Fixing execute permissions for %s\n", Mount_Point.c_str());
1638 if (chmod(Mount_Point.c_str(), new_mode) < 0) {
1639 if (Display_Error)
1640 LOGERR("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
1641 else
1642 LOGINFO("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
1643 return false;
1644 }
1645 }
Dees_Troy22042032012-12-18 21:23:08 +00001646 return true;
Dees_Troy76543db2013-06-19 16:24:30 +00001647 }
thatc7572eb2015-03-31 18:55:30 +02001648 }
1649
1650 string mount_fs = Current_File_System;
1651 if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sys/module/texfat"))
1652 mount_fs = "texfat";
1653
1654 if (!exfat_mounted &&
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001655 mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), mount_fs.c_str(), flags, Mount_Options.c_str()) != 0 &&
1656 mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), mount_fs.c_str(), flags, NULL) != 0) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001657#ifdef TW_NO_EXFAT_FUSE
1658 if (Current_File_System == "exfat") {
Dees_Troy2673cec2013-04-02 20:22:16 +00001659 LOGINFO("Mounting exfat failed, trying vfat...\n");
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001660 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), "vfat", 0, NULL) != 0) {
Dees_Troy85f44ed2013-01-09 18:42:36 +00001661 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001662 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy85f44ed2013-01-09 18:42:36 +00001663 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001664 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001665 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 +00001666 return false;
Dees_Troy85f44ed2013-01-09 18:42:36 +00001667 }
Dees_Troyb05ddee2013-01-28 20:24:50 +00001668 } else {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001669#endif
bigbiff bigbiff26774a02014-03-29 18:22:00 -04001670 if (!Removable && Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001671 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001672 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001673 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
1674 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 +00001675 return false;
1676#ifdef TW_NO_EXFAT_FUSE
Dees_Troy85f44ed2013-01-09 18:42:36 +00001677 }
1678#endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001679 }
Ethan Yonker253368a2014-11-25 15:00:52 -06001680
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001681 if (Removable)
1682 Update_Size(Display_Error);
1683
bigbiff4fa02b52021-12-30 17:01:44 -05001684 if (!Symlink_Mount_Point.empty()) {
bigbiffbe4f46c2021-04-24 11:48:54 -04001685 if (!Bind_Mount(false))
1686 return false;
1687 }
1688 return true;
1689}
1690
1691bool TWPartition::Bind_Mount(bool Display_Error) {
1692 if (TWFunc::Path_Exists(Symlink_Path)) {
1693 if (mount(Symlink_Path.c_str(), Symlink_Mount_Point.c_str(), "", MS_BIND, NULL) < 0) {
1694 return false;
1695 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001696 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001697 return true;
1698}
1699
1700bool TWPartition::UnMount(bool Display_Error) {
1701 if (Is_Mounted()) {
1702 int never_unmount_system;
1703
1704 DataManager::GetValue(TW_DONT_UNMOUNT_SYSTEM, never_unmount_system);
Captain Throwback9d6feb52018-07-27 10:05:24 -04001705 if (never_unmount_system == 1 && Mount_Point == PartitionManager.Get_Android_Root_Path())
Dees_Troy5bf43922012-09-07 16:07:55 -04001706 return true; // Never unmount system if you're not supposed to unmount it
1707
Matt Mowera8e6d832017-02-14 20:20:59 -06001708 if (Is_Storage && MTP_Storage_ID > 0)
Ethan Yonker726a0202014-12-16 20:01:38 -06001709 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001710
Dees_Troy38bd7602012-09-14 13:33:53 -04001711 if (!Symlink_Mount_Point.empty())
1712 umount(Symlink_Mount_Point.c_str());
1713
Dees_Troyb05ddee2013-01-28 20:24:50 +00001714 umount(Mount_Point.c_str());
1715 if (Is_Mounted()) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001716 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001717 gui_msg(Msg(msg::kError, "fail_unmount=Failed to unmount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy5bf43922012-09-07 16:07:55 -04001718 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001719 LOGINFO("Unable to unmount '%s'\n", Mount_Point.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001720 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001721 } else {
Dees_Troy5bf43922012-09-07 16:07:55 -04001722 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001723 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001724 } else {
1725 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001726 }
1727}
1728
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05001729bool TWPartition::ReMount(bool Display_Error) {
1730 if (UnMount(Display_Error))
1731 return Mount(Display_Error);
1732 return false;
1733}
1734
1735bool TWPartition::ReMount_RW(bool Display_Error) {
1736 // No need to remount if already mounted rw
1737 if (Is_File_System_Writable())
1738 return true;
1739
1740 bool ro = Mount_Read_Only;
1741 int flags = Mount_Flags;
1742
1743 Mount_Read_Only = false;
1744 Mount_Flags &= ~MS_RDONLY;
1745
1746 bool ret = ReMount(Display_Error);
1747
1748 Mount_Read_Only = ro;
1749 Mount_Flags = flags;
1750
1751 return ret;
1752}
1753
Gary Peck43acadf2012-11-21 21:19:01 -08001754bool TWPartition::Wipe(string New_File_System) {
Ethan Yonker726a0202014-12-16 20:01:38 -06001755 bool wiped = false, update_crypt = false, recreate_media = true;
Dees_Troy16c2b312013-01-15 16:51:18 +00001756 int check;
Dees_Troy16c2b312013-01-15 16:51:18 +00001757
Dees_Troy38bd7602012-09-14 13:33:53 -04001758 if (!Can_Be_Wiped) {
Matt Mower3c366972015-12-25 19:28:31 -06001759 gui_msg(Msg(msg::kError, "cannot_wipe=Partition {1} cannot be wiped.")(Display_Name));
Dees_Troy38bd7602012-09-14 13:33:53 -04001760 return false;
1761 }
1762
Dees_Troyc51f1f92012-09-20 15:32:13 -04001763 if (Mount_Point == "/cache")
Dees_Troy2673cec2013-04-02 20:22:16 +00001764 Log_Offset = 0;
Dees_Troyc51f1f92012-09-20 15:32:13 -04001765
bigbiff4a60bee2021-01-23 14:08:03 -05001766 if (Mount_Point == PartitionManager.Get_Android_Root_Path()) {
1767 if (tw_get_default_metadata(PartitionManager.Get_Android_Root_Path().c_str()) != 0) {
1768 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(PartitionManager.Get_Android_Root_Path()));
1769 }
1770 }
1771
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001772 if (Has_Data_Media && Current_File_System == New_File_System) {
Dees_Troy16c2b312013-01-15 16:51:18 +00001773 wiped = Wipe_Data_Without_Wiping_Media();
bigbiff25d25b92020-06-19 16:07:38 -04001774 if (Mount_Point == "/data" && TWFunc::get_log_dir() == DATA_LOGS_DIR) {
1775 bool created = PartitionManager.Recreate_Logs_Dir();
1776 if (!created)
1777 LOGERR("Unable to create log directory for TWRP\n");
bigbiff7ba75002020-04-11 20:47:09 -04001778 }
Ethan Yonker5eac2222014-06-11 12:22:55 -05001779 recreate_media = false;
Dees_Troy16c2b312013-01-15 16:51:18 +00001780 } else {
Dees_Troy16c2b312013-01-15 16:51:18 +00001781 DataManager::GetValue(TW_RM_RF_VAR, check);
Hashcodedabfd492013-08-29 22:45:30 -07001782 if (check || Use_Rm_Rf)
Dees_Troy16c2b312013-01-15 16:51:18 +00001783 wiped = Wipe_RMRF();
1784 else if (New_File_System == "ext4")
1785 wiped = Wipe_EXT4();
1786 else if (New_File_System == "ext2" || New_File_System == "ext3")
dianlujitao4879b372018-12-03 18:45:47 +08001787 wiped = Wipe_EXTFS(New_File_System);
Dees_Troy16c2b312013-01-15 16:51:18 +00001788 else if (New_File_System == "exfat")
1789 wiped = Wipe_EXFAT();
Captain Throwback47bf7202020-10-06 17:39:39 -04001790 else if (New_File_System == "ntfs" || Current_File_System == "tntfs")
1791 wiped = Wipe_NTFS();
Dees_Troy16c2b312013-01-15 16:51:18 +00001792 else if (New_File_System == "yaffs2")
1793 wiped = Wipe_MTD();
Dees_Troye5017042013-08-29 16:38:55 +00001794 else if (New_File_System == "f2fs")
1795 wiped = Wipe_F2FS();
Captain Throwback47bf7202020-10-06 17:39:39 -04001796 else if (New_File_System == "vfat")
1797 wiped = Wipe_FAT();
Dees_Troy16c2b312013-01-15 16:51:18 +00001798 else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001799 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 +00001800 return false;
1801 }
1802 update_crypt = wiped;
bigbiff7ba75002020-04-11 20:47:09 -04001803 update_crypt = false;
Gary Pecke8bc5d72012-12-21 06:45:25 -08001804 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001805
Gary Pecke8bc5d72012-12-21 06:45:25 -08001806 if (wiped) {
Mohd Faraze1d72622020-06-15 00:28:32 +05301807 if (Mount_Point == "/cache" && TWFunc::get_log_dir() != DATA_LOGS_DIR)
1808 DataManager::Output_Version();
1809
bigbiff4a60bee2021-01-23 14:08:03 -05001810 if (Mount_Point == PartitionManager.Get_Android_Root_Path()) {
1811 tw_set_default_metadata(PartitionManager.Get_Android_Root_Path().c_str());
1812 }
Dees_Troy16c2b312013-01-15 16:51:18 +00001813 if (update_crypt) {
1814 Setup_File_System(false);
1815 if (Is_Encrypted && !Is_Decrypted) {
1816 // just wiped an encrypted partition back to its unencrypted state
1817 Is_Encrypted = false;
1818 Is_Decrypted = false;
1819 Decrypted_Block_Device = "";
1820 if (Mount_Point == "/data") {
1821 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
1822 DataManager::SetValue(TW_IS_DECRYPTED, 0);
1823 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08001824 }
1825 }
Ethan Yonker5eac2222014-06-11 12:22:55 -05001826
Captain Throwback63573b52021-10-02 20:47:33 -04001827 if (Is_Storage && Mount(false) && !Is_FBE)
bigbiffbe4f46c2021-04-24 11:48:54 -04001828 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Gary Pecke8bc5d72012-12-21 06:45:25 -08001829 }
Matt Mower209c9632016-01-20 12:08:35 -06001830
Gary Pecke8bc5d72012-12-21 06:45:25 -08001831 return wiped;
Dees_Troy51a0e822012-09-05 15:24:24 -04001832}
1833
Gary Peck43acadf2012-11-21 21:19:01 -08001834bool TWPartition::Wipe() {
Gary Peck82599a82012-11-21 16:23:12 -08001835 if (Is_File_System(Current_File_System))
1836 return Wipe(Current_File_System);
1837 else
1838 return Wipe(Fstab_File_System);
Gary Peck43acadf2012-11-21 21:19:01 -08001839}
1840
Dees_Troye58d5262012-09-21 12:27:57 -04001841bool TWPartition::Wipe_AndSec(void) {
1842 if (!Has_Android_Secure)
1843 return false;
1844
Dees_Troye58d5262012-09-21 12:27:57 -04001845 if (!Mount(true))
1846 return false;
1847
Ethan Yonker74db1572015-10-28 12:44:49 -05001848 gui_msg(Msg("wiping=Wiping {1}")(Backup_Display_Name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001849 TWFunc::removeDir(Mount_Point + "/.android_secure/", true);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001850 return true;
Dees_Troye58d5262012-09-21 12:27:57 -04001851}
1852
bigbiffaed1bdf2021-08-03 18:21:39 -04001853bool TWPartition::Wipe_Data_Cache(void) {
1854 if (!Mount(true))
1855 return false;
1856 gui_msg(Msg("wiping=Wiping {1}")(Mount_Point + "/cache/"));
1857 TWFunc::removeDir(Mount_Point + "/cache/", true);
1858 return true;
1859}
1860
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001861bool TWPartition::Can_Repair() {
Ethan Yonkera2719152015-05-28 09:44:41 -05001862 if (Mount_Read_Only)
1863 return false;
bigbiffad58e1b2020-07-06 20:24:34 -04001864 if (Current_File_System == "vfat" && TWFunc::Path_Exists("/system/bin/fsck.fat"))
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001865 return true;
bigbiffad58e1b2020-07-06 20:24:34 -04001866 else if ((Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") && TWFunc::Path_Exists("/system/bin/e2fsck"))
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001867 return true;
bigbiffad58e1b2020-07-06 20:24:34 -04001868 else if (Current_File_System == "exfat" && TWFunc::Path_Exists("/system/bin/fsck.exfat"))
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001869 return true;
bigbiffad58e1b2020-07-06 20:24:34 -04001870 else if (Current_File_System == "f2fs" && TWFunc::Path_Exists("/system/bin/fsck.f2fs"))
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001871 return true;
Captain Throwback47bf7202020-10-06 17:39:39 -04001872 else if ((Current_File_System == "ntfs" || Current_File_System == "tntfs") && (TWFunc::Path_Exists("/system/bin/ntfsfix") || TWFunc::Path_Exists("/system/bin/fsck.ntfs")))
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001873 return true;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001874 return false;
1875}
1876
1877bool TWPartition::Repair() {
1878 string command;
1879
1880 if (Current_File_System == "vfat") {
bigbiffad58e1b2020-07-06 20:24:34 -04001881 if (!TWFunc::Path_Exists("/system/bin/fsck.fat")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001882 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.fat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001883 return false;
1884 }
1885 if (!UnMount(true))
1886 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001887 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.fat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001888 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04001889 command = "/system/bin/fsck.fat -y " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001890 LOGINFO("Repair command: %s\n", command.c_str());
1891 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001892 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001893 return true;
1894 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001895 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001896 return false;
1897 }
1898 }
1899 if (Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") {
bigbiffad58e1b2020-07-06 20:24:34 -04001900 if (!TWFunc::Path_Exists("/system/bin/e2fsck")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001901 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("e2fsck"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001902 return false;
1903 }
1904 if (!UnMount(true))
1905 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001906 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("e2fsck"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001907 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04001908 command = "/system/bin/e2fsck -fp " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001909 LOGINFO("Repair command: %s\n", command.c_str());
1910 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001911 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001912 return true;
1913 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001914 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001915 return false;
1916 }
1917 }
1918 if (Current_File_System == "exfat") {
bigbiffad58e1b2020-07-06 20:24:34 -04001919 if (!TWFunc::Path_Exists("/system/bin/fsck.exfat")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001920 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.exfat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001921 return false;
1922 }
1923 if (!UnMount(true))
1924 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001925 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.exfat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001926 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04001927 command = "/system/bin/fsck.exfat " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001928 LOGINFO("Repair command: %s\n", command.c_str());
1929 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001930 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001931 return true;
1932 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001933 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001934 return false;
1935 }
1936 }
1937 if (Current_File_System == "f2fs") {
bigbiffad58e1b2020-07-06 20:24:34 -04001938 if (!TWFunc::Path_Exists("/system/bin/fsck.f2fs")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001939 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.f2fs"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001940 return false;
1941 }
1942 if (!UnMount(true))
1943 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001944 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.f2fs"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001945 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04001946 command = "/system/bin/fsck.f2fs " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001947 LOGINFO("Repair command: %s\n", command.c_str());
1948 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001949 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001950 return true;
1951 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001952 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001953 return false;
1954 }
1955 }
Captain Throwback47bf7202020-10-06 17:39:39 -04001956 if (Current_File_System == "ntfs" || Current_File_System == "tntfs") {
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001957 string Ntfsfix_Binary;
bigbiffad58e1b2020-07-06 20:24:34 -04001958 if (TWFunc::Path_Exists("/system/bin/ntfsfix"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001959 Ntfsfix_Binary = "ntfsfix";
bigbiffad58e1b2020-07-06 20:24:34 -04001960 else if (TWFunc::Path_Exists("/system/bin/fsck.ntfs"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001961 Ntfsfix_Binary = "fsck.ntfs";
1962 else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001963 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("ntfsfix"));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001964 return false;
1965 }
1966 if (!UnMount(true))
1967 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001968 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)(Ntfsfix_Binary));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001969 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04001970 command = "/system/bin/" + Ntfsfix_Binary + " " + Actual_Block_Device;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001971 LOGINFO("Repair command: %s\n", command.c_str());
1972 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001973 gui_msg("done=Done.");
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001974 return true;
1975 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001976 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001977 return false;
1978 }
1979 }
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001980 return false;
1981}
1982
Ethan Yonkera2719152015-05-28 09:44:41 -05001983bool TWPartition::Can_Resize() {
1984 if (Mount_Read_Only)
1985 return false;
bigbiffad58e1b2020-07-06 20:24:34 -04001986 if ((Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") && TWFunc::Path_Exists("/system/bin/resize2fs"))
Ethan Yonkera2719152015-05-28 09:44:41 -05001987 return true;
1988 return false;
1989}
1990
1991bool TWPartition::Resize() {
1992 string command;
1993
1994 if (Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") {
1995 if (!Can_Repair()) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001996 LOGINFO("Cannot resize %s because %s cannot be repaired before resizing.\n", Display_Name.c_str(), Display_Name.c_str());
1997 gui_msg(Msg(msg::kError, "cannot_resize=Cannot resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001998 return false;
1999 }
bigbiffad58e1b2020-07-06 20:24:34 -04002000 if (!TWFunc::Path_Exists("/system/bin/resize2fs")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002001 LOGINFO("resize2fs does not exist! Cannot resize!\n");
2002 gui_msg(Msg(msg::kError, "cannot_resize=Cannot resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05002003 return false;
2004 }
2005 // Repair will unmount so no need to do it twice
Ethan Yonker74db1572015-10-28 12:44:49 -05002006 gui_msg(Msg("repair_resize=Repairing {1} before resizing.")( Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05002007 if (!Repair())
2008 return false;
Ethan Yonker74db1572015-10-28 12:44:49 -05002009 gui_msg(Msg("resizing=Resizing {1} using {2}...")(Display_Name)("resize2fs"));
Ethan Yonkera2719152015-05-28 09:44:41 -05002010 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04002011 command = "/system/bin/resize2fs " + Actual_Block_Device;
Ethan Yonkera2719152015-05-28 09:44:41 -05002012 if (Length != 0) {
Ethan Yonkerd18a8212015-12-14 10:17:00 -06002013 unsigned long long Actual_Size = IOCTL_Get_Block_Size();
2014 if (Actual_Size == 0)
2015 return false;
Ethan Yonkera2719152015-05-28 09:44:41 -05002016
Ethan Yonkera2719152015-05-28 09:44:41 -05002017 unsigned long long Block_Count;
2018 if (Length < 0) {
2019 // Reduce overall size by this length
2020 Block_Count = (Actual_Size / 1024LLU) - ((unsigned long long)(Length * -1) / 1024LLU);
2021 } else {
2022 // This is the size, not a size reduction
2023 Block_Count = ((unsigned long long)(Length) / 1024LLU);
2024 }
2025 char temp[256];
2026 sprintf(temp, "%llu", Block_Count);
2027 command += " ";
2028 command += temp;
2029 command += "K";
2030 }
2031 LOGINFO("Resize command: %s\n", command.c_str());
2032 if (TWFunc::Exec_Cmd(command) == 0) {
2033 Update_Size(true);
Ethan Yonker74db1572015-10-28 12:44:49 -05002034 gui_msg("done=Done.");
Ethan Yonkera2719152015-05-28 09:44:41 -05002035 return true;
2036 } else {
2037 Update_Size(true);
Ethan Yonker74db1572015-10-28 12:44:49 -05002038 gui_msg(Msg(msg::kError, "unable_resize=Unable to resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05002039 return false;
2040 }
2041 }
2042 return false;
2043}
2044
bigbiffce8f83c2015-12-12 18:30:21 -05002045bool TWPartition::Backup(PartitionSettings *part_settings, pid_t *tar_fork_pid) {
2046 if (Backup_Method == BM_FILES)
2047 return Backup_Tar(part_settings, tar_fork_pid);
2048 else if (Backup_Method == BM_DD)
2049 return Backup_Image(part_settings);
2050 else if (Backup_Method == BM_FLASH_UTILS)
2051 return Backup_Dump_Image(part_settings);
Dees_Troy2673cec2013-04-02 20:22:16 +00002052 LOGERR("Unknown backup method for '%s'\n", Mount_Point.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04002053 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002054}
2055
bigbiffce8f83c2015-12-12 18:30:21 -05002056bool TWPartition::Restore(PartitionSettings *part_settings) {
Matt Mower3c366972015-12-25 19:28:31 -06002057 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002058 LOGINFO("Restore filename is: %s/%s\n", part_settings->Backup_Folder.c_str(), Backup_FileName.c_str());
Gary Peck43acadf2012-11-21 21:19:01 -08002059
bigbiffce8f83c2015-12-12 18:30:21 -05002060 string Restore_File_System = Get_Restore_File_System(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002061
2062 if (Is_File_System(Restore_File_System))
bigbiffce8f83c2015-12-12 18:30:21 -05002063 return Restore_Tar(part_settings);
2064 else if (Is_Image(Restore_File_System))
2065 return Restore_Image(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002066
2067 LOGERR("Unknown restore method for '%s'\n", Mount_Point.c_str());
2068 return false;
2069}
2070
bigbiffce8f83c2015-12-12 18:30:21 -05002071string TWPartition::Get_Restore_File_System(PartitionSettings *part_settings) {
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002072 size_t first_period, second_period;
2073 string Restore_File_System;
2074
Gary Peck43acadf2012-11-21 21:19:01 -08002075 // Parse backup filename to extract the file system before wiping
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002076 first_period = Backup_FileName.find(".");
Gary Peck43acadf2012-11-21 21:19:01 -08002077 if (first_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002078 LOGERR("Unable to find file system (first period).\n");
thatd43bf2d2014-09-21 23:13:02 +02002079 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08002080 }
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002081 Restore_File_System = Backup_FileName.substr(first_period + 1, Backup_FileName.size() - first_period - 1);
Gary Peck43acadf2012-11-21 21:19:01 -08002082 second_period = Restore_File_System.find(".");
2083 if (second_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002084 LOGERR("Unable to find file system (second period).\n");
thatd43bf2d2014-09-21 23:13:02 +02002085 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08002086 }
2087 Restore_File_System.resize(second_period);
Matt Mowera0cd91d2016-12-30 18:21:42 -06002088 LOGINFO("Restore file system is: '%s'.\n", Restore_File_System.c_str());
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002089 return Restore_File_System;
Dees_Troy51a0e822012-09-05 15:24:24 -04002090}
2091
2092string TWPartition::Backup_Method_By_Name() {
bigbiffce8f83c2015-12-12 18:30:21 -05002093 if (Backup_Method == BM_NONE)
Dees_Troy38bd7602012-09-14 13:33:53 -04002094 return "none";
bigbiffce8f83c2015-12-12 18:30:21 -05002095 else if (Backup_Method == BM_FILES)
Dees_Troy38bd7602012-09-14 13:33:53 -04002096 return "files";
bigbiffce8f83c2015-12-12 18:30:21 -05002097 else if (Backup_Method == BM_DD)
Dees_Troy38bd7602012-09-14 13:33:53 -04002098 return "dd";
bigbiffce8f83c2015-12-12 18:30:21 -05002099 else if (Backup_Method == BM_FLASH_UTILS)
Dees_Troy38bd7602012-09-14 13:33:53 -04002100 return "flash_utils";
2101 else
2102 return "undefined";
2103 return "ERROR!";
Dees_Troy51a0e822012-09-05 15:24:24 -04002104}
2105
2106bool TWPartition::Decrypt(string Password) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002107 LOGINFO("STUB TWPartition::Decrypt, password: '%s'\n", Password.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04002108 // Is this needed?
Dees_Troy51a0e822012-09-05 15:24:24 -04002109 return 1;
2110}
2111
2112bool TWPartition::Wipe_Encryption() {
Dees_Troy38bd7602012-09-14 13:33:53 -04002113 bool Save_Data_Media = Has_Data_Media;
Ethan Yonker93382822018-11-01 15:25:31 -05002114 bool ret = false;
2115 BasePartition* base_partition = make_partition();
2116
2117 if (!base_partition->PreWipeEncryption())
2118 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002119
dianlujitao4879b372018-12-03 18:45:47 +08002120 Find_Actual_Block_Device();
2121 if (!Is_Present) {
2122 LOGINFO("Block device not present, cannot format %s.\n", Display_Name.c_str());
2123 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2124 return false;
2125 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002126
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002127#ifdef TW_INCLUDE_CRYPTO
bigbiff7ba75002020-04-11 20:47:09 -04002128 if (!UnMount(true))
2129 return false;
Ethan Yonker1b190162016-12-05 15:25:19 -06002130 if (Is_Decrypted && !Decrypted_Block_Device.empty()) {
Matt Mower2b18a532015-02-20 16:58:05 -06002131 if (delete_crypto_blk_dev((char*)("userdata")) != 0) {
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002132 LOGERR("Error deleting crypto block device, continuing anyway.\n");
2133 }
2134 }
2135#endif
dianlujitao4879b372018-12-03 18:45:47 +08002136 Has_Data_Media = false;
Ethan Yonker93382822018-11-01 15:25:31 -05002137 Decrypted_Block_Device = "";
Dees_Troy74fb2e92013-04-15 14:35:47 +00002138 Is_Decrypted = false;
2139 Is_Encrypted = false;
Gary Pecke8bc5d72012-12-21 06:45:25 -08002140 if (Wipe(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04002141 Has_Data_Media = Save_Data_Media;
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002142 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
Ethan Yonker83e82572014-04-04 10:59:28 -05002143#ifndef TW_OEM_BUILD
bigbiff25d25b92020-06-19 16:07:38 -04002144 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 -05002145#endif
bigbiff2d548672021-07-09 20:08:44 -04002146 if (Is_FBE) {
2147 gui_msg(Msg(msg::kWarning, "data_media_fbe_msg=TWRP will not recreate /data/media on an FBE device. Please reboot into your rom to create /data/media."));
Captain Throwback63573b52021-10-02 20:47:33 -04002148 } else {
2149 if (Has_Data_Media && !Symlink_Mount_Point.empty()) {
2150 if (Mount(false))
2151 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
2152 }
bigbiff2d548672021-07-09 20:08:44 -04002153 }
2154
Ethan Yonker93382822018-11-01 15:25:31 -05002155 ret = true;
2156 if (!Key_Directory.empty())
2157 ret = PartitionManager.Wipe_By_Path(Key_Directory);
2158 if (ret)
2159 ret = base_partition->PostWipeEncryption();
2160 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002161 } else {
2162 Has_Data_Media = Save_Data_Media;
Ethan Yonker74db1572015-10-28 12:44:49 -05002163 gui_err("format_data_err=Unable to format to remove encryption.");
Ethan Yonker726a0202014-12-16 20:01:38 -06002164 if (Has_Data_Media && Mount(false))
2165 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -05002166 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002167 }
Ethan Yonker93382822018-11-01 15:25:31 -05002168exit:
2169 delete base_partition;
2170 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04002171}
2172
2173void TWPartition::Check_FS_Type() {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002174 const char* type;
2175 blkid_probe pr;
Dees_Troy5bf43922012-09-07 16:07:55 -04002176
Dees_Troy68cab492012-12-12 19:29:35 +00002177 if (Fstab_File_System == "yaffs2" || Fstab_File_System == "mtd" || Fstab_File_System == "bml" || Ignore_Blkid)
2178 return; // Running blkid on some mtd devices causes a massive crash or needs to be skipped
Dees_Troy5bf43922012-09-07 16:07:55 -04002179
Dees_Troy38bd7602012-09-14 13:33:53 -04002180 Find_Actual_Block_Device();
Dees_Troy8170a922012-09-18 15:40:25 -04002181 if (!Is_Present)
2182 return;
Dees_Troy51127312012-09-08 13:08:49 -04002183
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002184 pr = blkid_new_probe_from_filename(Actual_Block_Device.c_str());
2185 if (blkid_do_fullprobe(pr)) {
2186 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00002187 LOGINFO("Can't probe device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002188 return;
Dees_Troy5bf43922012-09-07 16:07:55 -04002189 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002190
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05002191 if (blkid_probe_lookup_value(pr, "TYPE", &type, NULL) < 0) {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002192 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00002193 LOGINFO("can't find filesystem on device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002194 return;
2195 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002196
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002197 Current_File_System = type;
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002198 blkid_free_probe(pr);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002199 if (fs_flags.size() > 1) {
2200 std::vector<partition_fs_flags_struct>::iterator iter;
2201 std::vector<partition_fs_flags_struct>::iterator found = fs_flags.begin();
2202
2203 for (iter = fs_flags.begin(); iter != fs_flags.end(); iter++) {
2204 if (iter->File_System == Current_File_System) {
2205 found = iter;
2206 break;
2207 }
2208 }
2209 // If we don't find a match, we default the flags to the first set of flags that we received from the fstab
2210 if (Mount_Flags != found->Mount_Flags || Mount_Options != found->Mount_Options) {
2211 Mount_Flags = found->Mount_Flags;
2212 Mount_Options = found->Mount_Options;
2213 LOGINFO("Mount_Flags: %i, Mount_Options: %s\n", Mount_Flags, Mount_Options.c_str());
2214 }
2215 }
Dees_Troy51a0e822012-09-05 15:24:24 -04002216}
2217
dianlujitao4879b372018-12-03 18:45:47 +08002218bool TWPartition::Wipe_EXTFS(string File_System) {
bigbiff7ba75002020-04-11 20:47:09 -04002219 if (!UnMount(true))
2220 return false;
2221
dianlujitao4879b372018-12-03 18:45:47 +08002222#if PLATFORM_SDK_VERSION < 28
bigbiffad58e1b2020-07-06 20:24:34 -04002223 if (!TWFunc::Path_Exists("/system/bin/mke2fs"))
dianlujitao4879b372018-12-03 18:45:47 +08002224#else
bigbiffad58e1b2020-07-06 20:24:34 -04002225 if (!TWFunc::Path_Exists("/system/bin/mke2fs") || !TWFunc::Path_Exists("/system/bin/e2fsdroid"))
dianlujitao4879b372018-12-03 18:45:47 +08002226#endif
Dees_Troy38bd7602012-09-14 13:33:53 -04002227 return Wipe_RMRF();
2228
dianlujitao4879b372018-12-03 18:45:47 +08002229 int ret;
2230 bool NeedPreserveFooter = true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002231
Ethan Yonker25f20c12014-10-14 09:04:43 -05002232 Find_Actual_Block_Device();
2233 if (!Is_Present) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002234 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2235 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Ethan Yonker25f20c12014-10-14 09:04:43 -05002236 return false;
2237 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002238
dianlujitao4879b372018-12-03 18:45:47 +08002239 /**
2240 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2241 * so there's no need to preserve footer.
2242 */
2243 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2244 Crypto_Key_Location != "footer") {
2245 NeedPreserveFooter = false;
2246 }
2247
2248 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2249 if (!dev_sz)
2250 return false;
2251
2252 if (NeedPreserveFooter)
2253 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2254
Dees Troy9a4d7402019-03-21 14:17:28 -04002255 char dout[16];
2256 sprintf(dout, "%llu", dev_sz / 4096);
2257
2258 //string size_str =to_string(dev_sz / 4096);
2259 string size_str = dout;
dianlujitao4879b372018-12-03 18:45:47 +08002260 string Command;
2261
2262 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mke2fs"));
2263
2264 // Execute mke2fs to create empty ext4 filesystem
2265 Command = "mke2fs -t " + File_System + " -b 4096 " + Actual_Block_Device + " " + size_str;
2266 LOGINFO("mke2fs command: %s\n", Command.c_str());
2267 ret = TWFunc::Exec_Cmd(Command);
2268 if (ret) {
2269 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2270 return false;
2271 }
2272
bigbiffad58e1b2020-07-06 20:24:34 -04002273 if (TWFunc::Path_Exists("/system/bin/e2fsdroid")) {
dianlujitao3cf05a52019-05-15 15:33:27 +08002274 const string& File_Contexts_Entry = (Mount_Point == "/system_root" ? "/" : Mount_Point);
2275 char *secontext = NULL;
2276 if (!selinux_handle || selabel_lookup(selinux_handle, &secontext, File_Contexts_Entry.c_str(), S_IFDIR) < 0) {
2277 LOGINFO("Cannot lookup security context for '%s'\n", Mount_Point.c_str());
2278 } else {
2279 // Execute e2fsdroid to initialize selinux context
bigbiff5b911ca2020-07-18 10:46:09 -04002280 if (Mount_Point == "/persist") {
2281 Mount(true);
2282 TWFunc::removeDir("/persist/lost+found", false);
2283 UnMount(true);
2284 }
dianlujitao3cf05a52019-05-15 15:33:27 +08002285 Command = "e2fsdroid -e -S /file_contexts -a " + File_Contexts_Entry + " " + Actual_Block_Device;
2286 LOGINFO("e2fsdroid command: %s\n", Command.c_str());
2287 ret = TWFunc::Exec_Cmd(Command);
2288 if (ret) {
2289 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2290 return false;
2291 }
dianlujitao4879b372018-12-03 18:45:47 +08002292 }
2293 } else {
2294 LOGINFO("e2fsdroid not present\n");
2295 }
2296
2297 if (NeedPreserveFooter)
2298 Wipe_Crypto_Key();
2299 Current_File_System = File_System;
2300 Recreate_AndSec_Folder();
2301 gui_msg("done=Done.");
2302 return true;
2303}
2304
2305bool TWPartition::Wipe_EXT4() {
2306#ifdef USE_EXT4
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002307 int ret;
dianlujitao4879b372018-12-03 18:45:47 +08002308 bool NeedPreserveFooter = true;
2309
bigbiff7ba75002020-04-11 20:47:09 -04002310 if (!UnMount(true))
2311 return false;
2312
dianlujitao4879b372018-12-03 18:45:47 +08002313 Find_Actual_Block_Device();
2314 if (!Is_Present) {
2315 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2316 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2317 return false;
2318 }
dianlujitao4879b372018-12-03 18:45:47 +08002319
2320 /**
2321 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2322 * so there's no need to preserve footer.
2323 */
2324 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2325 Crypto_Key_Location != "footer") {
2326 NeedPreserveFooter = false;
2327 }
2328
2329 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2330 if (!dev_sz)
2331 return false;
2332
2333 if (NeedPreserveFooter)
2334 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2335
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002336 char *secontext = NULL;
2337
Greg Wallace4b44fef2015-12-29 15:33:24 -05002338 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("make_ext4fs"));
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002339
Dees Troy99c8dbf2014-03-10 16:53:58 +00002340 if (!selinux_handle || selabel_lookup(selinux_handle, &secontext, Mount_Point.c_str(), S_IFDIR) < 0) {
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002341 LOGINFO("Cannot lookup security context for '%s'\n", Mount_Point.c_str());
dianlujitao4879b372018-12-03 18:45:47 +08002342 ret = make_ext4fs(Actual_Block_Device.c_str(), dev_sz, Mount_Point.c_str(), NULL);
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002343 } else {
dianlujitao4879b372018-12-03 18:45:47 +08002344 ret = make_ext4fs(Actual_Block_Device.c_str(), dev_sz, Mount_Point.c_str(), selinux_handle);
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002345 }
2346 if (ret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002347 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troya95f55c2013-08-17 13:14:43 +00002348 return false;
2349 } else {
dianlujitao4879b372018-12-03 18:45:47 +08002350 if (NeedPreserveFooter)
2351 Wipe_Crypto_Key();
bigbiff bigbiffc49d7062013-10-11 20:28:00 -04002352 string sedir = Mount_Point + "/lost+found";
2353 PartitionManager.Mount_By_Path(sedir.c_str(), true);
2354 rmdir(sedir.c_str());
2355 mkdir(sedir.c_str(), S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP);
Dees_Troya95f55c2013-08-17 13:14:43 +00002356 return true;
2357 }
2358#else
dianlujitao4879b372018-12-03 18:45:47 +08002359 return Wipe_EXTFS("ext4");
Dees_Troya95f55c2013-08-17 13:14:43 +00002360#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002361}
2362
2363bool TWPartition::Wipe_FAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002364 string command;
Dees_Troy38bd7602012-09-14 13:33:53 -04002365
bigbiff7ba75002020-04-11 20:47:09 -04002366 if (!UnMount(true))
2367 return false;
Dees_Troy38bd7602012-09-14 13:33:53 -04002368
bigbiffad58e1b2020-07-06 20:24:34 -04002369 if (TWFunc::Path_Exists("/system/bin/mkfs.fat")) {
Greg Wallace4b44fef2015-12-29 15:33:24 -05002370 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkfs.fat"));
Dees_Troy38bd7602012-09-14 13:33:53 -04002371 Find_Actual_Block_Device();
Matt Mower18794c82015-11-11 16:22:45 -06002372 command = "mkfs.fat " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02002373 if (TWFunc::Exec_Cmd(command) == 0) {
Gary Pecke8bc5d72012-12-21 06:45:25 -08002374 Current_File_System = "vfat";
Dees_Troye58d5262012-09-21 12:27:57 -04002375 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002376 gui_msg("done=Done.");
Dees_Troy38bd7602012-09-14 13:33:53 -04002377 return true;
2378 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002379 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troy38bd7602012-09-14 13:33:53 -04002380 return false;
2381 }
2382 return true;
2383 }
2384 else
2385 return Wipe_RMRF();
2386
2387 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002388}
2389
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002390bool TWPartition::Wipe_EXFAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002391 string command;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002392
bigbiff7ba75002020-04-11 20:47:09 -04002393 if (!UnMount(true))
2394 return false;
bigbiffad58e1b2020-07-06 20:24:34 -04002395 if (TWFunc::Path_Exists("/system/bin/mkexfatfs")) {
Greg Wallace4b44fef2015-12-29 15:33:24 -05002396 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkexfatfs"));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002397 Find_Actual_Block_Device();
2398 command = "mkexfatfs " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02002399 if (TWFunc::Exec_Cmd(command) == 0) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002400 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002401 gui_msg("done=Done.");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002402 return true;
2403 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002404 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002405 return false;
2406 }
2407 return true;
2408 }
2409 return false;
2410}
2411
Dees_Troy38bd7602012-09-14 13:33:53 -04002412bool TWPartition::Wipe_MTD() {
2413 if (!UnMount(true))
2414 return false;
2415
Greg Wallace4b44fef2015-12-29 15:33:24 -05002416 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("MTD"));
Dees_Troy38bd7602012-09-14 13:33:53 -04002417
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002418 mtd_scan_partitions();
2419 const MtdPartition* mtd = mtd_find_partition_by_name(MTD_Name.c_str());
2420 if (mtd == NULL) {
2421 LOGERR("No mtd partition named '%s'", MTD_Name.c_str());
2422 return false;
2423 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002424
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002425 MtdWriteContext* ctx = mtd_write_partition(mtd);
2426 if (ctx == NULL) {
2427 LOGERR("Can't write '%s', failed to format.", MTD_Name.c_str());
2428 return false;
2429 }
2430 if (mtd_erase_blocks(ctx, -1) == -1) {
2431 mtd_write_close(ctx);
2432 LOGERR("Failed to format '%s'", MTD_Name.c_str());
2433 return false;
2434 }
2435 if (mtd_write_close(ctx) != 0) {
2436 LOGERR("Failed to close '%s'", MTD_Name.c_str());
2437 return false;
2438 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08002439 Current_File_System = "yaffs2";
Dees_Troye58d5262012-09-21 12:27:57 -04002440 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002441 gui_msg("done=Done.");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002442 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002443}
2444
2445bool TWPartition::Wipe_RMRF() {
Dees_Troy38bd7602012-09-14 13:33:53 -04002446 if (!Mount(true))
2447 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002448 // This is the only wipe that leaves the partition mounted, so we
2449 // must manually remove the partition from MTP if it is a storage
2450 // partition.
2451 if (Is_Storage)
2452 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04002453
Ethan Yonker74db1572015-10-28 12:44:49 -05002454 gui_msg(Msg("remove_all=Removing all files under '{1}'")(Mount_Point));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002455 TWFunc::removeDir(Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04002456 Recreate_AndSec_Folder();
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002457 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002458}
2459
Dees_Troye5017042013-08-29 16:38:55 +00002460bool TWPartition::Wipe_F2FS() {
systemaddb475c92021-08-12 20:33:20 +02002461 std::string f2fs_command;
Dees_Troye5017042013-08-29 16:38:55 +00002462
bigbiff7ba75002020-04-11 20:47:09 -04002463 if (!UnMount(true))
2464 return false;
dianlujitao4879b372018-12-03 18:45:47 +08002465
bigbiffad58e1b2020-07-06 20:24:34 -04002466 if (TWFunc::Path_Exists("/system/bin/mkfs.f2fs"))
systemaddb475c92021-08-12 20:33:20 +02002467 f2fs_command = "/system/bin/mkfs.f2fs";
bigbiffad58e1b2020-07-06 20:24:34 -04002468 else if (TWFunc::Path_Exists("/system/bin/make_f2fs"))
systemaddb475c92021-08-12 20:33:20 +02002469 f2fs_command = "/system/bin/make_f2fs -g android";
bigbiff7ba75002020-04-11 20:47:09 -04002470 else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002471 LOGINFO("mkfs.f2fs binary not found, using rm -rf to wipe.\n");
Dees_Troye5017042013-08-29 16:38:55 +00002472 return Wipe_RMRF();
2473 }
bigbiff7ba75002020-04-11 20:47:09 -04002474
2475 bool NeedPreserveFooter = true;
systemaddb475c92021-08-12 20:33:20 +02002476 bool needs_casefold = false;
2477 bool needs_projid = false;
bigbiff7ba75002020-04-11 20:47:09 -04002478
2479 Find_Actual_Block_Device();
2480 if (!Is_Present) {
2481 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2482 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2483 return false;
2484 }
systemaddb475c92021-08-12 20:33:20 +02002485
2486 needs_casefold = android::base::GetBoolProperty("external_storage.casefold.enabled", false);
Captain Throwback88338682022-05-21 10:44:13 -04002487 needs_projid = android::base::GetBoolProperty("external_storage.projid.enabled", false);
bigbiff7ba75002020-04-11 20:47:09 -04002488 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2489 if (!dev_sz)
2490 return false;
2491
2492 if (NeedPreserveFooter)
2493 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
bigbiff7ba75002020-04-11 20:47:09 -04002494 char dev_sz_str[48];
2495 sprintf(dev_sz_str, "%llu", (dev_sz / 4096));
systemaddb475c92021-08-12 20:33:20 +02002496 if(needs_projid)
2497 f2fs_command += " -O project_quota,extra_attr";
2498
2499 if(needs_casefold)
2500 f2fs_command += " -O casefold -C utf8";
2501
Darth99fb13af2023-04-07 23:32:45 +01002502 if (Needs_Fs_Compress)
2503 f2fs_command += " -O compression,extra_attr";
2504
systemaddb475c92021-08-12 20:33:20 +02002505 f2fs_command += " " + Actual_Block_Device + " " + dev_sz_str;
2506
Captain Throwback88338682022-05-21 10:44:13 -04002507 if (TWFunc::Path_Exists("/system/bin/sload_f2fs")) {
2508 f2fs_command += " && sload_f2fs -t /data " + Actual_Block_Device;
bigbiff7ba75002020-04-11 20:47:09 -04002509 }
2510
2511 /**
2512 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2513 * so there's no need to preserve footer.
2514 */
2515 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2516 Crypto_Key_Location != "footer") {
2517 NeedPreserveFooter = false;
2518 }
systemaddb475c92021-08-12 20:33:20 +02002519 LOGINFO("mkfs.f2fs command: %s\n", f2fs_command.c_str());
2520 if (TWFunc::Exec_Cmd(f2fs_command) == 0) {
bigbiff7ba75002020-04-11 20:47:09 -04002521 if (NeedPreserveFooter)
2522 Wipe_Crypto_Key();
2523 Recreate_AndSec_Folder();
2524 gui_msg("done=Done.");
2525 return true;
2526 } else {
2527 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2528 return false;
2529 }
2530 return true;
Dees_Troye5017042013-08-29 16:38:55 +00002531}
2532
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002533bool TWPartition::Wipe_NTFS() {
2534 string command;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002535 string Ntfsmake_Binary;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002536
bigbiff7ba75002020-04-11 20:47:09 -04002537 if (!UnMount(true))
2538 return false;
2539
bigbiffad58e1b2020-07-06 20:24:34 -04002540 if (TWFunc::Path_Exists("/system/bin/mkntfs"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002541 Ntfsmake_Binary = "mkntfs";
bigbiffad58e1b2020-07-06 20:24:34 -04002542 else if (TWFunc::Path_Exists("/system/bin/mkfs.ntfs"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002543 Ntfsmake_Binary = "mkfs.ntfs";
2544 else
2545 return false;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002546
Greg Wallace4b44fef2015-12-29 15:33:24 -05002547 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)(Ntfsmake_Binary));
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002548 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04002549 command = "/system/bin/" + Ntfsmake_Binary + " " + Actual_Block_Device;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002550 if (TWFunc::Exec_Cmd(command) == 0) {
2551 Recreate_AndSec_Folder();
2552 gui_msg("done=Done.");
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002553 return true;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002554 } else {
2555 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2556 return false;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002557 }
2558 return false;
2559}
2560
Dees_Troy51a0e822012-09-05 15:24:24 -04002561bool TWPartition::Wipe_Data_Without_Wiping_Media() {
Ethan Yonker83e82572014-04-04 10:59:28 -05002562#ifdef TW_OEM_BUILD
2563 // In an OEM Build we want to do a full format
2564 return Wipe_Encryption();
2565#else
Ethan Yonker66a19492015-12-10 10:19:45 -06002566 bool ret = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04002567
Dees_Troy38bd7602012-09-14 13:33:53 -04002568 if (!Mount(true))
2569 return false;
2570
Ethan Yonker74db1572015-10-28 12:44:49 -05002571 gui_msg("wiping_data=Wiping data without wiping /data/media ...");
Ethan Yonker66a19492015-12-10 10:19:45 -06002572 ret = Wipe_Data_Without_Wiping_Media_Func(Mount_Point + "/");
2573 if (ret)
2574 gui_msg("done=Done.");
2575 return ret;
2576#endif // ifdef TW_OEM_BUILD
2577}
2578
2579bool TWPartition::Wipe_Data_Without_Wiping_Media_Func(const string& parent __unused) {
2580 string dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04002581
2582 DIR* d;
Ethan Yonker66a19492015-12-10 10:19:45 -06002583 d = opendir(parent.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +00002584 if (d != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04002585 struct dirent* de;
2586 while ((de = readdir(d)) != NULL) {
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05002587 if (strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0) continue;
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05002588
Ethan Yonker66a19492015-12-10 10:19:45 -06002589 dir = parent;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002590 dir.append(de->d_name);
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002591 if (wipe_exclusions.check_skip_dirs(dir)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002592 LOGINFO("skipped '%s'\n", dir.c_str());
2593 continue;
2594 }
Dees_Troyce675462013-01-09 19:48:21 +00002595 if (de->d_type == DT_DIR) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002596 dir.append("/");
2597 if (!Wipe_Data_Without_Wiping_Media_Func(dir)) {
2598 closedir(d);
2599 return false;
2600 }
2601 rmdir(dir.c_str());
bigbiff bigbiff98f1f902013-01-19 18:46:13 -05002602 } 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 +03002603 if (unlink(dir.c_str()) != 0)
Ethan Yonker79f88bd2016-12-09 14:52:12 -06002604 LOGINFO("Unable to unlink '%s': %s\n", dir.c_str(), strerror(errno));
Dees_Troyce675462013-01-09 19:48:21 +00002605 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002606 }
2607 closedir(d);
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05002608
Dees_Troy16b74352012-11-14 22:27:31 +00002609 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -04002610 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002611 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy16b74352012-11-14 22:27:31 +00002612 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002613}
2614
dianlujitao4879b372018-12-03 18:45:47 +08002615void TWPartition::Wipe_Crypto_Key() {
2616 Find_Actual_Block_Device();
2617 if (Crypto_Key_Location.empty())
2618 return;
2619 else if (Crypto_Key_Location == "footer") {
2620 int fd = open(Actual_Block_Device.c_str(), O_RDWR);
2621 if (fd < 0) {
2622 gui_print_color("warning", "Unable to open '%s' to wipe crypto key\n", Actual_Block_Device.c_str());
2623 return;
2624 }
2625
2626 unsigned int block_count;
2627 if ((ioctl(fd, BLKGETSIZE, &block_count)) == -1) {
2628 gui_print_color("warning", "Unable to get block size for wiping crypto footer.\n");
2629 } else {
2630 int newlen = Length < 0 ? -Length : CRYPT_FOOTER_OFFSET;
2631 off64_t offset = ((off64_t)block_count * 512) - newlen;
2632 if (lseek64(fd, offset, SEEK_SET) == -1) {
2633 gui_print_color("warning", "Unable to lseek64 for wiping crypto footer.\n");
2634 } else {
2635 void* buffer = malloc(newlen);
2636 if (!buffer) {
2637 gui_print_color("warning", "Failed to malloc for wiping crypto footer.\n");
2638 } else {
2639 memset(buffer, 0, newlen);
2640 int ret = write(fd, buffer, newlen);
2641 if (ret != newlen) {
2642 gui_print_color("warning", "Failed to wipe crypto footer.\n");
2643 } else {
2644 LOGINFO("Successfully wiped crypto footer.\n");
2645 }
2646 free(buffer);
2647 }
2648 }
2649 }
2650 close(fd);
2651 } else {
2652 if (TWFunc::IOCTL_Get_Block_Size(Crypto_Key_Location.c_str()) >= 16384LLU) {
2653 string Command = "dd of='" + Crypto_Key_Location + "' if=/dev/zero bs=16384 count=1";
2654 TWFunc::Exec_Cmd(Command);
2655 } else {
2656 LOGINFO("Crypto key location reports size < 16K so not wiping crypto footer.\n");
2657 }
2658 }
2659}
2660
bigbiffce8f83c2015-12-12 18:30:21 -05002661bool TWPartition::Backup_Tar(PartitionSettings *part_settings, pid_t *tar_fork_pid) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002662 string Full_FileName;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002663 twrpTar tar;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -05002664
Dees_Troy43d8b002012-09-17 16:00:01 -04002665 if (!Mount(true))
2666 return false;
2667
Ian Macdonalda3b25a32019-06-16 22:39:14 +02002668 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Backup_Display_Name, gui_parse_text("{@backing}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002669 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002670
Ethan Yonker472f5062016-02-25 13:47:30 -06002671 DataManager::GetValue(TW_USE_COMPRESSION_VAR, tar.use_compression);
Matt Mowerbb81e5d2014-03-20 18:05:41 -05002672
Dees_Troy83bd4832013-05-04 12:39:56 +00002673#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
Ethan Yonker472f5062016-02-25 13:47:30 -06002674 if (Can_Encrypt_Backup) {
2675 DataManager::GetValue("tw_encrypt_backup", tar.use_encryption);
2676 if (tar.use_encryption) {
2677 if (Use_Userdata_Encryption)
2678 tar.userdata_encryption = tar.use_encryption;
2679 string Password;
2680 DataManager::GetValue("tw_backup_password", Password);
2681 tar.setpassword(Password);
2682 } else {
2683 tar.use_encryption = 0;
2684 }
Dees_Troy83bd4832013-05-04 12:39:56 +00002685 }
2686#endif
Dees_Troy43d8b002012-09-17 16:00:01 -04002687
Ethan Yonker472f5062016-02-25 13:47:30 -06002688 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002689 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker01f4e032017-02-03 15:30:52 -06002690 if (Has_Data_Media)
2691 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 Jacobson81d638d2019-04-28 00:10:07 -04002692 if (Mount_Point == "/data" && DataManager::GetIntValue(TW_IS_FBE)) {
2693 std::vector<users_struct>::iterator iter;
2694 std::vector<users_struct>* userList = PartitionManager.Get_Users_List();
2695 for (iter = userList->begin(); iter != userList->end(); iter++) {
2696 if (!(*iter).isDecrypted && (*iter).userId != "0") {
2697 gui_msg(Msg(msg::kWarning,
2698 "backup_storage_undecrypt_warning=Backup will not include some files from user {1} "
2699 "because the user is not decrypted.")((*iter).userId));
2700 backup_exclusions.add_absolute_dir("/data/system_ce/" + (*iter).userId);
2701 backup_exclusions.add_absolute_dir("/data/misc_ce/" + (*iter).userId);
2702 backup_exclusions.add_absolute_dir("/data/vendor_ce/" + (*iter).userId);
2703 backup_exclusions.add_absolute_dir("/data/media/" + (*iter).userId);
2704 backup_exclusions.add_absolute_dir("/data/user/" + (*iter).userId);
2705 }
2706 }
2707 }
bigbiffce8f83c2015-12-12 18:30:21 -05002708 tar.part_settings = part_settings;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002709 tar.backup_exclusions = &backup_exclusions;
Dees Troye0a433a2013-12-02 04:10:37 +00002710 tar.setdir(Backup_Path);
2711 tar.setfn(Full_FileName);
2712 tar.setsize(Backup_Size);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002713 tar.partition_name = Backup_Name;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002714 tar.backup_folder = part_settings->Backup_Folder;
bigbiffce8f83c2015-12-12 18:30:21 -05002715 if (tar.createTarFork(tar_fork_pid) != 0)
Dees Troye0a433a2013-12-02 04:10:37 +00002716 return false;
Dees_Troy43d8b002012-09-17 16:00:01 -04002717 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002718}
2719
bigbiffce8f83c2015-12-12 18:30:21 -05002720bool TWPartition::Backup_Image(PartitionSettings *part_settings) {
2721 string Full_FileName, adb_file_name;
igoriok87e3d932013-01-31 21:03:53 +02002722
Ethan Yonker74db1572015-10-28 12:44:49 -05002723 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, gui_parse_text("{@backing}"));
2724 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002725
Ethan Yonker472f5062016-02-25 13:47:30 -06002726 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Dees_Troy43d8b002012-09-17 16:00:01 -04002727
bigbiffce8f83c2015-12-12 18:30:21 -05002728 if (part_settings->adbbackup) {
2729 Full_FileName = TW_ADB_BACKUP;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002730 adb_file_name = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002731 }
2732 else
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002733 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002734
2735 part_settings->total_restore_size = Backup_Size;
2736
2737 if (part_settings->adbbackup) {
2738 if (!twadbbu::Write_TWIMG(adb_file_name, Backup_Size))
2739 return false;
2740 }
2741
2742 if (!Raw_Read_Write(part_settings))
Ethan Yonker472f5062016-02-25 13:47:30 -06002743 return false;
2744
bigbiffce8f83c2015-12-12 18:30:21 -05002745 if (part_settings->adbbackup) {
2746 if (!twadbbu::Write_TWEOF())
2747 return false;
Dees_Troy7c2dec82012-09-26 09:49:14 -04002748 }
Dees_Troy43d8b002012-09-17 16:00:01 -04002749 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002750}
2751
bigbiffce8f83c2015-12-12 18:30:21 -05002752bool TWPartition::Raw_Read_Write(PartitionSettings *part_settings) {
2753 unsigned long long RW_Block_Size, Remain = Backup_Size;
2754 int src_fd = -1, dest_fd = -1;
2755 ssize_t bs;
Ethan Yonker472f5062016-02-25 13:47:30 -06002756 bool ret = false;
2757 void* buffer = NULL;
2758 unsigned long long backedup_size = 0;
bigbiffce8f83c2015-12-12 18:30:21 -05002759 string srcfn, destfn;
Ethan Yonker472f5062016-02-25 13:47:30 -06002760
bigbiffce8f83c2015-12-12 18:30:21 -05002761 if (part_settings->PM_Method == PM_BACKUP) {
2762 srcfn = Actual_Block_Device;
2763 if (part_settings->adbbackup)
2764 destfn = TW_ADB_BACKUP;
bigbiff bigbiff38b83c12017-12-28 19:58:52 -05002765 else {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002766 destfn = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiff bigbiff38b83c12017-12-28 19:58:52 -05002767 }
bigbiffce8f83c2015-12-12 18:30:21 -05002768 }
2769 else {
2770 destfn = Actual_Block_Device;
2771 if (part_settings->adbbackup) {
2772 srcfn = TW_ADB_RESTORE;
2773 } else {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002774 srcfn = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002775 Remain = TWFunc::Get_File_Size(srcfn);
2776 }
2777 }
Ethan Yonker472f5062016-02-25 13:47:30 -06002778
bigbiffce8f83c2015-12-12 18:30:21 -05002779 src_fd = open(srcfn.c_str(), O_RDONLY | O_LARGEFILE);
Ethan Yonker472f5062016-02-25 13:47:30 -06002780 if (src_fd < 0) {
bigbiffce8f83c2015-12-12 18:30:21 -05002781 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(srcfn.c_str())(strerror(errno)));
Ethan Yonker472f5062016-02-25 13:47:30 -06002782 return false;
2783 }
bigbiffce8f83c2015-12-12 18:30:21 -05002784
2785 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 -06002786 if (dest_fd < 0) {
bigbiffce8f83c2015-12-12 18:30:21 -05002787 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(destfn.c_str())(strerror(errno)));
Ethan Yonker472f5062016-02-25 13:47:30 -06002788 goto exit;
2789 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002790
bigbiffce8f83c2015-12-12 18:30:21 -05002791 LOGINFO("Reading '%s', writing '%s'\n", srcfn.c_str(), destfn.c_str());
2792
2793 if (part_settings->adbbackup) {
2794 RW_Block_Size = MAX_ADB_READ;
2795 bs = MAX_ADB_READ;
2796 }
2797 else {
2798 RW_Block_Size = 1048576LLU; // 1MB
2799 bs = (ssize_t)(RW_Block_Size);
2800 }
2801
Ethan Yonker472f5062016-02-25 13:47:30 -06002802 buffer = malloc((size_t)bs);
2803 if (!buffer) {
2804 LOGINFO("Raw_Read_Write failed to malloc\n");
2805 goto exit;
2806 }
bigbiffce8f83c2015-12-12 18:30:21 -05002807
2808 if (part_settings->progress)
2809 part_settings->progress->SetPartitionSize(part_settings->total_restore_size);
2810
Ethan Yonker472f5062016-02-25 13:47:30 -06002811 while (Remain > 0) {
2812 if (Remain < RW_Block_Size)
bigbiffce8f83c2015-12-12 18:30:21 -05002813 bs = (ssize_t)(Remain);
Matt Mowera8a89d12016-12-30 18:10:37 -06002814 if (read(src_fd, buffer, bs) != bs) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002815 LOGINFO("Error reading source fd (%s)\n", strerror(errno));
2816 goto exit;
2817 }
2818 if (write(dest_fd, buffer, bs) != bs) {
2819 LOGINFO("Error writing destination fd (%s)\n", strerror(errno));
2820 goto exit;
2821 }
2822 backedup_size += (unsigned long long)(bs);
Matt Mower029a82d2017-01-08 13:12:38 -06002823 Remain -= (unsigned long long)(bs);
bigbiffce8f83c2015-12-12 18:30:21 -05002824 if (part_settings->progress)
2825 part_settings->progress->UpdateSize(backedup_size);
Ethan Yonker472f5062016-02-25 13:47:30 -06002826 if (PartitionManager.Check_Backup_Cancel() != 0)
2827 goto exit;
2828 }
bigbiffce8f83c2015-12-12 18:30:21 -05002829 if (part_settings->progress)
2830 part_settings->progress->UpdateDisplayDetails(true);
Ethan Yonker472f5062016-02-25 13:47:30 -06002831 fsync(dest_fd);
nailyka083dc62016-11-11 21:41:28 +01002832
2833 if (!part_settings->adbbackup && part_settings->PM_Method == PM_BACKUP) {
2834 tw_set_default_metadata(destfn.c_str());
2835 LOGINFO("Restored default metadata for %s\n", destfn.c_str());
2836 }
2837
Ethan Yonker472f5062016-02-25 13:47:30 -06002838 ret = true;
2839exit:
2840 if (src_fd >= 0)
2841 close(src_fd);
2842 if (dest_fd >= 0)
2843 close(dest_fd);
2844 if (buffer)
2845 free(buffer);
2846 return ret;
2847}
2848
bigbiffce8f83c2015-12-12 18:30:21 -05002849bool TWPartition::Backup_Dump_Image(PartitionSettings *part_settings) {
Vojtech Bocek05534202013-09-11 08:11:56 +02002850 string Full_FileName, Command;
Dees_Troy43d8b002012-09-17 16:00:01 -04002851
Ethan Yonker74db1572015-10-28 12:44:49 -05002852 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, gui_parse_text("{@backing}"));
2853 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002854
bigbiffce8f83c2015-12-12 18:30:21 -05002855 if (part_settings->progress)
2856 part_settings->progress->SetPartitionSize(Backup_Size);
Dees_Troy43d8b002012-09-17 16:00:01 -04002857
Ethan Yonker472f5062016-02-25 13:47:30 -06002858 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002859 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Dees_Troy43d8b002012-09-17 16:00:01 -04002860
2861 Command = "dump_image " + MTD_Name + " '" + Full_FileName + "'";
bigbiffce8f83c2015-12-12 18:30:21 -05002862
Dees_Troy2673cec2013-04-02 20:22:16 +00002863 LOGINFO("Backup command: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002864 TWFunc::Exec_Cmd(Command);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06002865 tw_set_default_metadata(Full_FileName.c_str());
Dees_Troy7c2dec82012-09-26 09:49:14 -04002866 if (TWFunc::Get_File_Size(Full_FileName) == 0) {
2867 // 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 -06002868 gui_msg(Msg(msg::kError, "backup_size=Backup file size for '{1}' is 0 bytes.")(Full_FileName));
Dees_Troy7c2dec82012-09-26 09:49:14 -04002869 return false;
2870 }
bigbiffce8f83c2015-12-12 18:30:21 -05002871 if (part_settings->progress)
2872 part_settings->progress->UpdateSize(Backup_Size);
2873
Dees_Troy43d8b002012-09-17 16:00:01 -04002874 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002875}
2876
bigbiffce8f83c2015-12-12 18:30:21 -05002877unsigned long long TWPartition::Get_Restore_Size(PartitionSettings *part_settings) {
2878 if (!part_settings->adbbackup) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002879 InfoManager restore_info(part_settings->Backup_Folder + "/" + Backup_Name + ".info");
bigbiffce8f83c2015-12-12 18:30:21 -05002880 if (restore_info.LoadValues() == 0) {
2881 if (restore_info.GetValue("backup_size", Restore_Size) == 0) {
2882 LOGINFO("Read info file, restore size is %llu\n", Restore_Size);
2883 return Restore_Size;
2884 }
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002885 }
2886 }
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002887
Matt Mower029a82d2017-01-08 13:12:38 -06002888 string Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
2889 string Restore_File_System = Get_Restore_File_System(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002890
2891 if (Is_Image(Restore_File_System)) {
2892 Restore_Size = TWFunc::Get_File_Size(Full_FileName);
2893 return Restore_Size;
2894 }
2895
2896 twrpTar tar;
2897 tar.setdir(Backup_Path);
2898 tar.setfn(Full_FileName);
bigbiffce8f83c2015-12-12 18:30:21 -05002899 tar.backup_name = Full_FileName;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002900#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
2901 string Password;
2902 DataManager::GetValue("tw_restore_password", Password);
2903 if (!Password.empty())
2904 tar.setpassword(Password);
2905#endif
2906 tar.partition_name = Backup_Name;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002907 tar.backup_folder = part_settings->Backup_Folder;
bigbiffce8f83c2015-12-12 18:30:21 -05002908 tar.part_settings = part_settings;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002909 Restore_Size = tar.get_size();
2910 return Restore_Size;
2911}
2912
bigbiffce8f83c2015-12-12 18:30:21 -05002913bool TWPartition::Restore_Tar(PartitionSettings *part_settings) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002914 string Full_FileName;
Dees Troy4159aed2014-02-28 17:24:43 +00002915 bool ret = false;
bigbiffce8f83c2015-12-12 18:30:21 -05002916 string Restore_File_System = Get_Restore_File_System(part_settings);
Dees_Troy43d8b002012-09-17 16:00:01 -04002917
Dees_Troye58d5262012-09-21 12:27:57 -04002918 if (Has_Android_Secure) {
Dees_Troye58d5262012-09-21 12:27:57 -04002919 if (!Wipe_AndSec())
2920 return false;
Gary Peck43acadf2012-11-21 21:19:01 -08002921 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002922 gui_msg(Msg("wiping=Wiping {1}")(Backup_Display_Name));
Ethan Yonker5eac2222014-06-11 12:22:55 -05002923 if (Has_Data_Media && Mount_Point == "/data" && Restore_File_System != Current_File_System) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002924 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 -05002925 if (!Wipe_Data_Without_Wiping_Media())
2926 return false;
2927 } else {
2928 if (!Wipe(Restore_File_System))
2929 return false;
2930 }
Dees_Troye58d5262012-09-21 12:27:57 -04002931 }
Matt Mower3c366972015-12-25 19:28:31 -06002932 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Backup_Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002933 gui_msg(Msg("restoring=Restoring {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002934
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05002935 // Remount as read/write as needed so we can restore the backup
2936 if (!ReMount_RW(true))
Dees_Troy43d8b002012-09-17 16:00:01 -04002937 return false;
2938
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002939 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker87af5632014-02-10 11:56:35 -06002940 twrpTar tar;
bigbiffce8f83c2015-12-12 18:30:21 -05002941 tar.part_settings = part_settings;
Ethan Yonker87af5632014-02-10 11:56:35 -06002942 tar.setdir(Backup_Path);
2943 tar.setfn(Full_FileName);
2944 tar.backup_name = Backup_Name;
2945#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
2946 string Password;
2947 DataManager::GetValue("tw_restore_password", Password);
2948 if (!Password.empty())
2949 tar.setpassword(Password);
2950#endif
bigbiffce8f83c2015-12-12 18:30:21 -05002951 part_settings->progress->SetPartitionSize(Get_Restore_Size(part_settings));
2952 if (tar.extractTarFork() != 0)
Dees Troy4159aed2014-02-28 17:24:43 +00002953 ret = false;
2954 else
2955 ret = true;
2956#ifdef HAVE_CAPABILITIES
2957 // Restore capabilities to the run-as binary
Captain Throwback9d6feb52018-07-27 10:05:24 -04002958 if (Mount_Point == PartitionManager.Get_Android_Root_Path() && Mount(true) && TWFunc::Path_Exists("/system/bin/run-as")) {
Dees Troy4159aed2014-02-28 17:24:43 +00002959 struct vfs_cap_data cap_data;
2960 uint64_t capabilities = (1 << CAP_SETUID) | (1 << CAP_SETGID);
2961
2962 memset(&cap_data, 0, sizeof(cap_data));
2963 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
2964 cap_data.data[0].permitted = (uint32_t) (capabilities & 0xffffffff);
2965 cap_data.data[0].inheritable = 0;
2966 cap_data.data[1].permitted = (uint32_t) (capabilities >> 32);
2967 cap_data.data[1].inheritable = 0;
2968 if (setxattr("/system/bin/run-as", XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
2969 LOGINFO("Failed to reset capabilities of /system/bin/run-as binary.\n");
2970 } else {
2971 LOGINFO("Reset capabilities of /system/bin/run-as binary successful.\n");
2972 }
2973 }
2974#endif
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05002975 if (Mount_Read_Only || Mount_Flags & MS_RDONLY)
2976 // Remount as read only when restoration is complete
2977 ReMount(true);
2978
Dees Troy4159aed2014-02-28 17:24:43 +00002979 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04002980}
2981
bigbiffce8f83c2015-12-12 18:30:21 -05002982bool TWPartition::Restore_Image(PartitionSettings *part_settings) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06002983 string Full_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002984 string Restore_File_System = Get_Restore_File_System(part_settings);
Dees_Troy43d8b002012-09-17 16:00:01 -04002985
Matt Mower3c366972015-12-25 19:28:31 -06002986 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Backup_Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002987 gui_msg(Msg("restoring=Restoring {1}...")(Backup_Display_Name));
bigbiffce8f83c2015-12-12 18:30:21 -05002988
2989 if (part_settings->adbbackup)
2990 Full_FileName = TW_ADB_RESTORE;
2991 else
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002992 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Gary Peck15e623d2012-11-21 21:07:58 -08002993
Ethan Yonker96af84a2015-01-05 14:58:36 -06002994 if (Restore_File_System == "emmc") {
bigbiffce8f83c2015-12-12 18:30:21 -05002995 if (!part_settings->adbbackup)
2996 part_settings->total_restore_size = (uint64_t)(TWFunc::Get_File_Size(Full_FileName));
2997 if (!Raw_Read_Write(part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002998 return false;
2999 } else if (Restore_File_System == "mtd" || Restore_File_System == "bml") {
bigbiffce8f83c2015-12-12 18:30:21 -05003000 if (!Flash_Image_FI(Full_FileName, part_settings->progress))
3001 return false;
3002 }
3003
3004 if (part_settings->adbbackup) {
3005 if (!twadbbu::Write_TWEOF())
Ethan Yonker96af84a2015-01-05 14:58:36 -06003006 return false;
Gary Peck15e623d2012-11-21 21:07:58 -08003007 }
Dees_Troy43d8b002012-09-17 16:00:01 -04003008 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04003009}
Dees_Troy5bf43922012-09-07 16:07:55 -04003010
3011bool TWPartition::Update_Size(bool Display_Error) {
me-cafebabeb52a4812022-07-28 03:45:22 +08003012 bool ret = false, Was_Already_Mounted = false, ro = false;
Dees_Troy51127312012-09-08 13:08:49 -04003013
Ethan Yonker1b190162016-12-05 15:25:19 -06003014 Find_Actual_Block_Device();
3015
bigbiffee7b7ff2020-03-23 15:08:27 -04003016 if (Actual_Block_Device.empty())
3017 return false;
3018
me-cafebabeb52a4812022-07-28 03:45:22 +08003019 ro = Mount_Read_Only;
3020 Mount_Read_Only = true;
3021
Ethan Yonker1b190162016-12-05 15:25:19 -06003022 if (!Can_Be_Mounted && !Is_Encrypted) {
3023 if (TWFunc::Path_Exists(Actual_Block_Device) && Find_Partition_Size()) {
3024 Used = Size;
3025 Backup_Size = Size;
me-cafebabeb52a4812022-07-28 03:45:22 +08003026 goto success;
Ethan Yonker1b190162016-12-05 15:25:19 -06003027 }
me-cafebabeb52a4812022-07-28 03:45:22 +08003028 goto fail;
Ethan Yonker1b190162016-12-05 15:25:19 -06003029 }
Dees_Troy5bf43922012-09-07 16:07:55 -04003030
Dees_Troy0550cfb2012-10-13 11:56:13 -04003031 Was_Already_Mounted = Is_Mounted();
bigbiffee7b7ff2020-03-23 15:08:27 -04003032
Dees_Troy38bd7602012-09-14 13:33:53 -04003033 if (Removable || Is_Encrypted) {
3034 if (!Mount(false))
me-cafebabeb52a4812022-07-28 03:45:22 +08003035 goto success;
Dees_Troy38bd7602012-09-14 13:33:53 -04003036 } else if (!Mount(Display_Error))
me-cafebabeb52a4812022-07-28 03:45:22 +08003037 goto fail;
Dees_Troy51127312012-09-08 13:08:49 -04003038
3039 ret = Get_Size_Via_statfs(Display_Error);
Dees_Troy0550cfb2012-10-13 11:56:13 -04003040 if (!ret || Size == 0) {
3041 if (!Get_Size_Via_df(Display_Error)) {
3042 if (!Was_Already_Mounted)
3043 UnMount(false);
me-cafebabeb52a4812022-07-28 03:45:22 +08003044 goto fail;
Dees_Troy0550cfb2012-10-13 11:56:13 -04003045 }
3046 }
Dees_Troy51127312012-09-08 13:08:49 -04003047
Dees_Troy5bf43922012-09-07 16:07:55 -04003048 if (Has_Data_Media) {
3049 if (Mount(Display_Error)) {
Ethan Yonker3fdcda42016-11-30 12:29:37 -06003050 Used = backup_exclusions.Get_Folder_Size(Mount_Point);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05003051 Backup_Size = Used;
3052 int bak = (int)(Used / 1048576LLU);
Dees_Troy51127312012-09-08 13:08:49 -04003053 int fre = (int)(Free / 1048576LLU);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05003054 LOGINFO("Data backup size is %iMB, free: %iMB.\n", bak, fre);
Dees_Troy0550cfb2012-10-13 11:56:13 -04003055 } else {
3056 if (!Was_Already_Mounted)
3057 UnMount(false);
me-cafebabeb52a4812022-07-28 03:45:22 +08003058 goto fail;
Dees_Troy0550cfb2012-10-13 11:56:13 -04003059 }
Dees_Troye58d5262012-09-21 12:27:57 -04003060 } else if (Has_Android_Secure) {
3061 if (Mount(Display_Error))
Ethan Yonker3fdcda42016-11-30 12:29:37 -06003062 Backup_Size = backup_exclusions.Get_Folder_Size(Backup_Path);
Dees_Troy0550cfb2012-10-13 11:56:13 -04003063 else {
3064 if (!Was_Already_Mounted)
3065 UnMount(false);
me-cafebabeb52a4812022-07-28 03:45:22 +08003066 goto fail;
Dees_Troy0550cfb2012-10-13 11:56:13 -04003067 }
Dees_Troy5bf43922012-09-07 16:07:55 -04003068 }
Dees_Troy0550cfb2012-10-13 11:56:13 -04003069 if (!Was_Already_Mounted)
3070 UnMount(false);
me-cafebabeb52a4812022-07-28 03:45:22 +08003071success:
3072 Mount_Read_Only = ro;
Dees_Troy5bf43922012-09-07 16:07:55 -04003073 return true;
me-cafebabeb52a4812022-07-28 03:45:22 +08003074fail:
3075 Mount_Read_Only = ro;
3076 return false;
Dees_Troy51127312012-09-08 13:08:49 -04003077}
Dees_Troy38bd7602012-09-14 13:33:53 -04003078
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003079bool TWPartition::Find_Wildcard_Block_Devices(const string& Device) {
3080 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
3081 string Path = TWFunc::Get_Path(Device);
3082 string Dev = TWFunc::Get_Filename(Device);
3083 size_t wildcard_index = Dev.find("*");
3084 if (wildcard_index != string::npos)
3085 Dev = Dev.substr(0, wildcard_index);
3086 wildcard_index = Dev.size();
3087 DIR* d = opendir(Path.c_str());
3088 if (d == NULL) {
3089 LOGINFO("Error opening '%s': %s\n", Path.c_str(), strerror(errno));
3090 return false;
3091 }
3092 struct dirent* de;
3093 while ((de = readdir(d)) != NULL) {
3094 if (de->d_type != DT_BLK || strlen(de->d_name) <= wildcard_index || strncmp(de->d_name, Dev.c_str(), wildcard_index) != 0)
3095 continue;
3096
3097 string item = Path + "/";
3098 item.append(de->d_name);
3099 if (PartitionManager.Find_Partition_By_Block_Device(item))
3100 continue;
3101 TWPartition *part = new TWPartition;
3102 char buffer[MAX_FSTAB_LINE_LENGTH];
3103 sprintf(buffer, "%s %s-%i auto defaults defaults", item.c_str(), Mount_Point.c_str(), ++mount_point_index);
bigbiff8da46fa2020-09-08 16:42:34 -04003104 part->Process_Fstab_Line(buffer, false, NULL);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003105 char display[MAX_FSTAB_LINE_LENGTH];
3106 sprintf(display, "%s %i", Storage_Name.c_str(), mount_point_index);
3107 part->Storage_Name = display;
3108 part->Display_Name = display;
3109 part->Primary_Block_Device = item;
3110 part->Wildcard_Block_Device = false;
3111 part->Is_SubPartition = true;
3112 part->SubPartition_Of = Mount_Point;
3113 part->Is_Storage = Is_Storage;
3114 part->Can_Be_Mounted = true;
3115 part->Removable = true;
3116 part->Can_Be_Wiped = Can_Be_Wiped;
3117 part->Wipe_Available_in_GUI = Wipe_Available_in_GUI;
3118 part->Find_Actual_Block_Device();
3119 part->Update_Size(false);
3120 Has_SubPartition = true;
3121 PartitionManager.Output_Partition(part);
3122 PartitionManager.Add_Partition(part);
3123 }
3124 closedir(d);
3125 return (mount_point_index > 0);
3126}
3127
Dees_Troy38bd7602012-09-14 13:33:53 -04003128void TWPartition::Find_Actual_Block_Device(void) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003129 if (!Sysfs_Entry.empty() && Primary_Block_Device.empty() && Decrypted_Block_Device.empty()) {
3130 /* Sysfs_Entry.empty() indicates if this is a sysfs entry that begins with /device/
3131 * If we have a syfs entry then we are looking for this device from a uevent add.
3132 * The uevent add will set the primary block device based on the data we receive from
3133 * after checking for adopted storage. If the device ends up being adopted, then the
3134 * decrypted block device will be set instead of the primary block device. */
3135 Is_Present = false;
3136 return;
3137 }
3138 if (Wildcard_Block_Device && !Is_Adopted_Storage) {
3139 Is_Present = false;
3140 Actual_Block_Device = "";
3141 Can_Be_Mounted = false;
3142 if (!Find_Wildcard_Block_Devices(Primary_Block_Device)) {
3143 string Dev = Primary_Block_Device.substr(0, Primary_Block_Device.find("*"));
3144 if (TWFunc::Path_Exists(Dev)) {
3145 Is_Present = true;
3146 Can_Be_Mounted = true;
3147 Actual_Block_Device = Dev;
3148 }
3149 }
3150 return;
3151 } else if (Is_Decrypted && !Decrypted_Block_Device.empty()) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003152 Actual_Block_Device = Decrypted_Block_Device;
Ethan Yonker1b190162016-12-05 15:25:19 -06003153 if (TWFunc::Path_Exists(Decrypted_Block_Device)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003154 Is_Present = true;
Ethan Yonker1b190162016-12-05 15:25:19 -06003155 return;
3156 }
3157 } else if (SlotSelect && TWFunc::Path_Exists(Primary_Block_Device + PartitionManager.Get_Active_Slot_Suffix())) {
3158 Actual_Block_Device = Primary_Block_Device + PartitionManager.Get_Active_Slot_Suffix();
3159 unlink(Primary_Block_Device.c_str());
3160 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
3161 Is_Present = true;
3162 return;
Dees_Troy43d8b002012-09-17 16:00:01 -04003163 } else if (TWFunc::Path_Exists(Primary_Block_Device)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003164 Is_Present = true;
3165 Actual_Block_Device = Primary_Block_Device;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003166 return;
3167 }
Ethan Yonker1b190162016-12-05 15:25:19 -06003168 if (!Alternate_Block_Device.empty() && TWFunc::Path_Exists(Alternate_Block_Device)) {
Dees_Troy3f04d032012-10-07 18:20:09 -04003169 Actual_Block_Device = Alternate_Block_Device;
Dees_Troy38bd7602012-09-14 13:33:53 -04003170 Is_Present = true;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003171 } else {
Dees_Troy38bd7602012-09-14 13:33:53 -04003172 Is_Present = false;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003173 }
Dees_Troy38bd7602012-09-14 13:33:53 -04003174}
3175
3176void TWPartition::Recreate_Media_Folder(void) {
3177 string Command;
Ethan Yonker66a19492015-12-10 10:19:45 -06003178 string Media_Path = Mount_Point + "/media";
Dees_Troy38bd7602012-09-14 13:33:53 -04003179
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06003180 if (Is_FBE) {
3181 LOGINFO("Not recreating media folder on FBE\n");
3182 return;
3183 }
Dees_Troy38bd7602012-09-14 13:33:53 -04003184 if (!Mount(true)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003185 gui_msg(Msg(msg::kError, "recreate_folder_err=Unable to recreate {1} folder.")(Media_Path));
3186 } else if (!TWFunc::Path_Exists(Media_Path)) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003187 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Ethan Yonker66a19492015-12-10 10:19:45 -06003188 LOGINFO("Recreating %s folder.\n", Media_Path.c_str());
3189 mkdir(Media_Path.c_str(), 0770);
xiaolu9416f4f2015-06-04 08:22:23 +08003190 string Internal_path = DataManager::GetStrValue("tw_internal_path");
3191 if (!Internal_path.empty()) {
3192 LOGINFO("Recreating %s folder.\n", Internal_path.c_str());
3193 mkdir(Internal_path.c_str(), 0770);
3194 }
3195#ifdef TW_INTERNAL_STORAGE_PATH
3196 mkdir(EXPAND(TW_INTERNAL_STORAGE_PATH), 0770);
3197#endif
Matt Mower87413642017-01-17 21:14:46 -06003198
thata3d31fb2014-12-21 22:27:40 +01003199 // Afterwards, we will try to set the
3200 // default metadata that we were hopefully able to get during
3201 // early boot.
Ethan Yonker66a19492015-12-10 10:19:45 -06003202 tw_set_default_metadata(Media_Path.c_str());
xiaolu9416f4f2015-06-04 08:22:23 +08003203 if (!Internal_path.empty())
3204 tw_set_default_metadata(Internal_path.c_str());
Matt Mower87413642017-01-17 21:14:46 -06003205
Ethan Yonker5eac2222014-06-11 12:22:55 -05003206 // Toggle mount to ensure that "internal sdcard" gets mounted
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003207 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Ethan Yonker5eac2222014-06-11 12:22:55 -05003208 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Dees_Troy38bd7602012-09-14 13:33:53 -04003209 }
Dees_Troy43d8b002012-09-17 16:00:01 -04003210}
Dees_Troye58d5262012-09-21 12:27:57 -04003211
3212void TWPartition::Recreate_AndSec_Folder(void) {
Dees_Troye58d5262012-09-21 12:27:57 -04003213 if (!Has_Android_Secure)
3214 return;
Dees_Troy2673cec2013-04-02 20:22:16 +00003215 LOGINFO("Creating %s: %s\n", Backup_Display_Name.c_str(), Symlink_Path.c_str());
Dees_Troye58d5262012-09-21 12:27:57 -04003216 if (!Mount(true)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003217 gui_msg(Msg(msg::kError, "recreate_folder_err=Unable to recreate {1} folder.")(Backup_Name));
Dees_Troye58d5262012-09-21 12:27:57 -04003218 } else if (!TWFunc::Path_Exists(Symlink_Path)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00003219 LOGINFO("Recreating %s folder.\n", Backup_Name.c_str());
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003220 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05003221 mkdir(Symlink_Path.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003222 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04003223 }
3224}
bigbiff7cb4c332014-11-26 20:36:07 -05003225
3226uint64_t TWPartition::Get_Max_FileSize() {
3227 uint64_t maxFileSize = 0;
3228 const uint64_t constGB = (uint64_t) 1024 * 1024 * 1024;
3229 const uint64_t constTB = (uint64_t) constGB * 1024;
3230 const uint64_t constPB = (uint64_t) constTB * 1024;
bigbiff0c532032014-12-21 13:41:26 -05003231 if (Current_File_System == "ext4")
3232 maxFileSize = 16 * constTB; //16 TB
3233 else if (Current_File_System == "vfat")
3234 maxFileSize = 4 * constGB; //4 GB
Captain Throwback47bf7202020-10-06 17:39:39 -04003235 else if (Current_File_System == "ntfs" || Current_File_System == "tntfs")
bigbiff0c532032014-12-21 13:41:26 -05003236 maxFileSize = 256 * constTB; //256 TB
3237 else if (Current_File_System == "exfat")
3238 maxFileSize = 16 * constPB; //16 PB
3239 else if (Current_File_System == "ext3")
3240 maxFileSize = 2 * constTB; //2 TB
3241 else if (Current_File_System == "f2fs")
3242 maxFileSize = 3.94 * constTB; //3.94 TB
bigbiff7cb4c332014-11-26 20:36:07 -05003243 else
3244 maxFileSize = 100000000L;
3245 return maxFileSize - 1;
3246}
3247
bigbiffce8f83c2015-12-12 18:30:21 -05003248bool TWPartition::Flash_Image(PartitionSettings *part_settings) {
3249 string Restore_File_System, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003250
Ethan Yonkere080c1f2016-09-19 13:50:25 -05003251 full_filename = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003252
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05003253 LOGINFO("Image filename is: %s\n", Backup_FileName.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05003254
3255 if (Backup_Method == BM_FILES) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06003256 LOGERR("Cannot flash images to file systems\n");
3257 return false;
3258 } else if (!Can_Flash_Img) {
3259 LOGERR("Cannot flash images to partitions %s\n", Display_Name.c_str());
3260 return false;
3261 } else {
3262 if (!Find_Partition_Size()) {
3263 LOGERR("Unable to find partition size for '%s'\n", Mount_Point.c_str());
3264 return false;
3265 }
bigbiffce8f83c2015-12-12 18:30:21 -05003266 unsigned long long image_size = TWFunc::Get_File_Size(full_filename);
Ethan Yonker96af84a2015-01-05 14:58:36 -06003267 if (image_size > Size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003268 LOGINFO("Size (%llu bytes) of image '%s' is larger than target device '%s' (%llu bytes)\n",
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05003269 image_size, Backup_FileName.c_str(), Actual_Block_Device.c_str(), Size);
Ethan Yonker74db1572015-10-28 12:44:49 -05003270 gui_err("img_size_err=Size of image is larger than target device");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003271 return false;
3272 }
bigbiffce8f83c2015-12-12 18:30:21 -05003273 if (Backup_Method == BM_DD) {
3274 if (!part_settings->adbbackup) {
3275 if (Is_Sparse_Image(full_filename)) {
3276 return Flash_Sparse_Image(full_filename);
3277 }
Ethan Yonker472f5062016-02-25 13:47:30 -06003278 }
bigbiffce8f83c2015-12-12 18:30:21 -05003279 return Raw_Read_Write(part_settings);
3280 } else if (Backup_Method == BM_FLASH_UTILS) {
3281 return Flash_Image_FI(full_filename, NULL);
Ethan Yonker472f5062016-02-25 13:47:30 -06003282 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06003283 }
3284
3285 LOGERR("Unknown flash method for '%s'\n", Mount_Point.c_str());
3286 return false;
3287}
3288
Ethan Yonker472f5062016-02-25 13:47:30 -06003289bool TWPartition::Is_Sparse_Image(const string& Filename) {
HashBanged974bb2016-01-30 14:20:09 -05003290 uint32_t magic = 0;
3291 int fd = open(Filename.c_str(), O_RDONLY);
3292 if (fd < 0) {
3293 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Filename)(strerror(errno)));
3294 return false;
3295 }
bigbiffce8f83c2015-12-12 18:30:21 -05003296
HashBanged974bb2016-01-30 14:20:09 -05003297 if (read(fd, &magic, sizeof(magic)) != sizeof(magic)) {
3298 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Filename)(strerror(errno)));
3299 close(fd);
3300 return false;
3301 }
3302 close(fd);
Ethan Yonker472f5062016-02-25 13:47:30 -06003303 if (magic == SPARSE_HEADER_MAGIC)
3304 return true;
3305 return false;
3306}
3307
3308bool TWPartition::Flash_Sparse_Image(const string& Filename) {
3309 string Command;
3310
3311 gui_msg(Msg("flashing=Flashing {1}...")(Display_Name));
3312
3313 Command = "simg2img '" + Filename + "' '" + Actual_Block_Device + "'";
Ethan Yonker96af84a2015-01-05 14:58:36 -06003314 LOGINFO("Flash command: '%s'\n", Command.c_str());
3315 TWFunc::Exec_Cmd(Command);
3316 return true;
3317}
3318
Ethan Yonker472f5062016-02-25 13:47:30 -06003319bool TWPartition::Flash_Image_FI(const string& Filename, ProgressTracking *progress) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06003320 string Command;
Ethan Yonker472f5062016-02-25 13:47:30 -06003321 unsigned long long file_size;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003322
Ethan Yonker74db1572015-10-28 12:44:49 -05003323 gui_msg(Msg("flashing=Flashing {1}...")(Display_Name));
Ethan Yonker472f5062016-02-25 13:47:30 -06003324 if (progress) {
3325 file_size = (unsigned long long)(TWFunc::Get_File_Size(Filename));
3326 progress->SetPartitionSize(file_size);
3327 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06003328 // Sometimes flash image doesn't like to flash due to the first 2KB matching, so we erase first to ensure that it flashes
3329 Command = "erase_image " + MTD_Name;
3330 LOGINFO("Erase command: '%s'\n", Command.c_str());
3331 TWFunc::Exec_Cmd(Command);
3332 Command = "flash_image " + MTD_Name + " '" + Filename + "'";
3333 LOGINFO("Flash command: '%s'\n", Command.c_str());
3334 TWFunc::Exec_Cmd(Command);
Ethan Yonker472f5062016-02-25 13:47:30 -06003335 if (progress)
3336 progress->UpdateSize(file_size);
Ethan Yonker96af84a2015-01-05 14:58:36 -06003337 return true;
3338}
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003339
3340void TWPartition::Change_Mount_Read_Only(bool new_value) {
3341 Mount_Read_Only = new_value;
3342}
3343
bigbiffce8f83c2015-12-12 18:30:21 -05003344bool TWPartition::Is_Read_Only() {
3345 return Mount_Read_Only;
3346}
3347
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003348int TWPartition::Check_Lifetime_Writes() {
3349 bool original_read_only = Mount_Read_Only;
3350 int ret = 1;
3351
3352 Mount_Read_Only = true;
3353 if (Mount(false)) {
3354 Find_Actual_Block_Device();
Ethan Yonker54970bb2019-01-17 16:19:24 -06003355 string temp = Actual_Block_Device;
3356 Find_Real_Block_Device(temp, false);
3357 string block = basename(temp.c_str());
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003358 string file = "/sys/fs/" + Current_File_System + "/" + block + "/lifetime_write_kbytes";
3359 string result;
3360 if (TWFunc::Path_Exists(file)) {
3361 if (TWFunc::read_file(file, result) != 0) {
3362 LOGINFO("Check_Lifetime_Writes of '%s' failed to read_file\n", file.c_str());
3363 } else {
3364 LOGINFO("Check_Lifetime_Writes result: '%s'\n", result.c_str());
3365 if (result == "0") {
3366 ret = 0;
3367 }
3368 }
3369 } else {
3370 LOGINFO("Check_Lifetime_Writes file does not exist '%s'\n", file.c_str());
3371 }
3372 UnMount(true);
3373 } else {
3374 LOGINFO("Check_Lifetime_Writes failed to mount '%s'\n", Mount_Point.c_str());
3375 }
3376 Mount_Read_Only = original_read_only;
3377 return ret;
3378}
Ethan Yonker66a19492015-12-10 10:19:45 -06003379
3380int TWPartition::Decrypt_Adopted() {
3381#ifdef TW_INCLUDE_CRYPTO
3382 int ret = 1;
3383 Is_Adopted_Storage = false;
3384 string Adopted_Key_File = "";
3385
3386 if (!Removable)
3387 return ret;
3388
3389 int fd = open(Alternate_Block_Device.c_str(), O_RDONLY);
3390 if (fd < 0) {
3391 LOGINFO("failed to open '%s'\n", Alternate_Block_Device.c_str());
3392 return ret;
3393 }
3394 char type_guid[80];
3395 char part_guid[80];
3396
nkk717aa6fc62017-03-24 18:28:03 +02003397 uint32_t p_num;
3398 size_t last_digit = Primary_Block_Device.find_last_not_of("0123456789");
3399 if ((last_digit != string::npos) && (last_digit != Primary_Block_Device.length()-1))
3400 p_num = atoi(Primary_Block_Device.substr(last_digit + 1).c_str()) + 1;
3401 else
3402 p_num = 2;
3403
3404 if (gpt_disk_get_partition_info(fd, p_num, type_guid, part_guid) == 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003405 LOGINFO("type: '%s'\n", type_guid);
3406 LOGINFO("part: '%s'\n", part_guid);
3407 Adopted_GUID = part_guid;
3408 LOGINFO("Adopted_GUID '%s'\n", Adopted_GUID.c_str());
3409 if (strcmp(type_guid, TWGptAndroidExpand) == 0) {
3410 LOGINFO("android_expand found\n");
3411 Adopted_Key_File = "/data/misc/vold/expand_";
3412 Adopted_Key_File += part_guid;
3413 Adopted_Key_File += ".key";
3414 if (TWFunc::Path_Exists(Adopted_Key_File)) {
3415 Is_Adopted_Storage = true;
3416 /* Until we find a use case for this, I think it is safe
3417 * to disable USB Mass Storage whenever adopted storage
3418 * is present.
3419 */
nkk717aa6fc62017-03-24 18:28:03 +02003420 if (p_num == 2) {
3421 // TODO: Properly detect mixed vs fully adopted storage. Maybe this
3422 // should be moved to partitionmanager instead, and disable after
3423 // checking all partitions. Also the presence of adopted storage does
3424 // not necessarily mean it's being used as Internal Storage
3425 LOGINFO("Detected adopted storage, disabling USB mass storage mode\n");
3426 DataManager::SetValue("tw_has_usb_storage", 0);
3427 }
Ethan Yonker66a19492015-12-10 10:19:45 -06003428 }
3429 }
3430 }
3431
3432 if (Is_Adopted_Storage) {
nkk717aa6fc62017-03-24 18:28:03 +02003433 string Adopted_Block_Device = Alternate_Block_Device + "p" + TWFunc::to_string(p_num);
Ethan Yonker66a19492015-12-10 10:19:45 -06003434 if (!TWFunc::Path_Exists(Adopted_Block_Device)) {
nkk717aa6fc62017-03-24 18:28:03 +02003435 Adopted_Block_Device = Alternate_Block_Device + TWFunc::to_string(p_num);
Ethan Yonker66a19492015-12-10 10:19:45 -06003436 if (!TWFunc::Path_Exists(Adopted_Block_Device)) {
3437 LOGINFO("Adopted block device does not exist\n");
3438 goto exit;
3439 }
3440 }
3441 LOGINFO("key file is '%s', block device '%s'\n", Adopted_Key_File.c_str(), Adopted_Block_Device.c_str());
3442 char crypto_blkdev[MAXPATHLEN];
3443 std::string thekey;
3444 int fdkey = open(Adopted_Key_File.c_str(), O_RDONLY);
3445 if (fdkey < 0) {
3446 LOGINFO("failed to open key file\n");
3447 goto exit;
3448 }
3449 char buf[512];
3450 ssize_t n;
3451 while ((n = read(fdkey, &buf[0], sizeof(buf))) > 0) {
3452 thekey.append(buf, n);
3453 }
3454 close(fdkey);
bigbiffdf53b6c2022-01-17 19:31:52 -05003455 // unsigned char* key = (unsigned char*) thekey.data();
3456 // cryptfs_revert_ext_volume(part_guid);
Ethan Yonker66a19492015-12-10 10:19:45 -06003457
bigbiffdf53b6c2022-01-17 19:31:52 -05003458 // ret = cryptfs_setup_ext_volume(part_guid, Adopted_Block_Device.c_str(), key, thekey.size(), crypto_blkdev);
Ethan Yonker66a19492015-12-10 10:19:45 -06003459 if (ret == 0) {
3460 LOGINFO("adopted storage new block device: '%s'\n", crypto_blkdev);
3461 Decrypted_Block_Device = crypto_blkdev;
3462 Is_Decrypted = true;
3463 Is_Encrypted = true;
3464 Find_Actual_Block_Device();
Kjell Braden3126a112016-06-19 16:58:15 +00003465 if (!Mount_Storage_Retry(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003466 LOGERR("Failed to mount decrypted adopted storage device\n");
3467 Is_Decrypted = false;
3468 Is_Encrypted = false;
bigbiffdf53b6c2022-01-17 19:31:52 -05003469 // cryptfs_revert_ext_volume(part_guid);
Ethan Yonker66a19492015-12-10 10:19:45 -06003470 ret = 1;
3471 } else {
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003472 UnMount(false);
3473 Has_Android_Secure = false;
3474 Symlink_Path = "";
3475 Symlink_Mount_Point = "";
3476 Backup_Name = Mount_Point.substr(1);
3477 Backup_Path = Mount_Point;
3478 TWPartition* sdext = PartitionManager.Find_Partition_By_Path("/sd-ext");
3479 if (sdext && sdext->Actual_Block_Device == Adopted_Block_Device) {
3480 LOGINFO("Removing /sd-ext from partition list due to adopted storage\n");
3481 PartitionManager.Remove_Partition_By_Path("/sd-ext");
3482 }
Ethan Yonker66a19492015-12-10 10:19:45 -06003483 Setup_Data_Media();
Ethan Yonker66a19492015-12-10 10:19:45 -06003484 Wipe_Available_in_GUI = true;
3485 Wipe_During_Factory_Reset = true;
3486 Can_Be_Backed_Up = true;
3487 Can_Encrypt_Backup = true;
3488 Use_Userdata_Encryption = true;
3489 Is_Storage = true;
3490 Storage_Name = "Adopted Storage";
3491 Is_SubPartition = true;
3492 SubPartition_Of = "/data";
3493 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
3494 DataManager::SetValue("tw_has_adopted_storage", 1);
3495 }
3496 } else {
3497 LOGERR("Failed to setup adopted storage decryption\n");
3498 }
3499 }
3500exit:
Matt Mower06543e32017-01-06 15:25:26 -06003501 close(fd);
Ethan Yonker66a19492015-12-10 10:19:45 -06003502 return ret;
3503#else
3504 LOGINFO("Decrypt_Adopted: no crypto support\n");
3505 return 1;
3506#endif
3507}
3508
3509void TWPartition::Revert_Adopted() {
3510#ifdef TW_INCLUDE_CRYPTO
3511 if (!Adopted_GUID.empty()) {
3512 PartitionManager.Remove_MTP_Storage(Mount_Point);
3513 UnMount(false);
bigbiffdf53b6c2022-01-17 19:31:52 -05003514 // cryptfs_revert_ext_volume(Adopted_GUID.c_str());
Ethan Yonker66a19492015-12-10 10:19:45 -06003515 Is_Adopted_Storage = false;
3516 Is_Encrypted = false;
3517 Is_Decrypted = false;
3518 Decrypted_Block_Device = "";
3519 Find_Actual_Block_Device();
3520 Wipe_During_Factory_Reset = false;
3521 Can_Be_Backed_Up = false;
3522 Can_Encrypt_Backup = false;
3523 Use_Userdata_Encryption = false;
3524 Is_SubPartition = false;
3525 SubPartition_Of = "";
3526 Has_Data_Media = false;
3527 Storage_Path = Mount_Point;
3528 if (!Symlink_Mount_Point.empty()) {
3529 TWPartition* Dat = PartitionManager.Find_Partition_By_Path("/data");
3530 if (Dat) {
3531 Dat->UnMount(false);
3532 Dat->Symlink_Mount_Point = Symlink_Mount_Point;
3533 }
3534 Symlink_Mount_Point = "";
3535 }
3536 }
3537#else
3538 LOGINFO("Revert_Adopted: no crypto support\n");
3539#endif
3540}
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04003541
3542void TWPartition::Set_Backup_FileName(string fname) {
3543 Backup_FileName = fname;
3544}
3545
3546string TWPartition::Get_Backup_Name() {
3547 return Backup_Name;
3548}
bigbiffee7b7ff2020-03-23 15:08:27 -04003549
3550string TWPartition::Get_Mount_Point() {
3551 return Mount_Point;
3552}
3553
3554void TWPartition::Set_Block_Device(std::string block_device) {
3555 Primary_Block_Device = Actual_Block_Device = block_device;
3556}
3557
3558bool TWPartition::Get_Super_Status() {
3559 return Is_Super;
3560}
3561
3562void TWPartition::Set_Can_Be_Backed_Up(bool val) {
3563 Can_Be_Backed_Up = val;
3564}
3565
3566void TWPartition::Set_Can_Be_Wiped(bool val) {
3567 Can_Be_Wiped = val;
3568 Wipe_Available_in_GUI = val;
bigbiffad58e1b2020-07-06 20:24:34 -04003569}
3570
3571std::string TWPartition::Get_Backup_FileName() {
3572 return Backup_FileName;
3573}
3574
3575std::string TWPartition::Get_Display_Name() {
3576 return Display_Name;
3577}
3578
3579bool TWPartition::Is_SlotSelect() {
3580 return SlotSelect;
Mohd Faraz815e2402020-09-19 19:31:52 +05303581}