blob: 2361dc3c912447a0c4f17cf6e95bb1525cee03e6 [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,
bigbiff998f8392021-08-06 19:19:33 -0400169 TWFLAG_LOGICAL,
Matt Mower2416a502016-04-12 19:54:46 -0500170};
171
172/* Flags without a trailing '=' are considered dual format flags and can be
173 * written as either 'flagname' or 'flagname=', where the character following
174 * the '=' is Y,y,1 for true and false otherwise.
175 */
176const struct flag_list tw_flags[] = {
177 { "andsec", TWFLAG_ANDSEC },
178 { "backup", TWFLAG_BACKUP },
179 { "backupname=", TWFLAG_BACKUPNAME },
180 { "blocksize=", TWFLAG_BLOCKSIZE },
181 { "canbewiped", TWFLAG_CANBEWIPED },
182 { "canencryptbackup", TWFLAG_CANENCRYPTBACKUP },
183 { "defaults", TWFLAG_DEFAULTS },
184 { "display=", TWFLAG_DISPLAY },
185 { "encryptable=", TWFLAG_ENCRYPTABLE },
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500186 { "fileencryption=", TWFLAG_FILEENCRYPTION },
Captain Throwbackf74fe4f2022-02-08 12:45:01 -0500187 { "metadata_encryption=", TWFLAG_METADATA_ENCRYPTION },
Matt Mower2416a502016-04-12 19:54:46 -0500188 { "flashimg", TWFLAG_FLASHIMG },
189 { "forceencrypt=", TWFLAG_FORCEENCRYPT },
190 { "fsflags=", TWFLAG_FSFLAGS },
191 { "ignoreblkid", TWFLAG_IGNOREBLKID },
192 { "length=", TWFLAG_LENGTH },
193 { "mounttodecrypt", TWFLAG_MOUNTTODECRYPT },
Captain Throwback8d97d422022-02-08 15:31:44 -0500194 { "quota", TWFLAG_QUOTA },
Matt Mower2416a502016-04-12 19:54:46 -0500195 { "removable", TWFLAG_REMOVABLE },
Matt Mower2416a502016-04-12 19:54:46 -0500196 { "settingsstorage", TWFLAG_SETTINGSSTORAGE },
197 { "storage", TWFLAG_STORAGE },
198 { "storagename=", TWFLAG_STORAGENAME },
199 { "subpartitionof=", TWFLAG_SUBPARTITIONOF },
200 { "symlink=", TWFLAG_SYMLINK },
201 { "userdataencryptbackup", TWFLAG_USERDATAENCRYPTBACKUP },
202 { "usermrf", TWFLAG_USERMRF },
203 { "wipeduringfactoryreset", TWFLAG_WIPEDURINGFACTORYRESET },
204 { "wipeingui", TWFLAG_WIPEINGUI },
Ethan Yonker1b190162016-12-05 15:25:19 -0600205 { "slotselect", TWFLAG_SLOTSELECT },
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600206 { "wait", TWFLAG_WAIT },
207 { "verify", TWFLAG_VERIFY },
208 { "check", TWFLAG_CHECK },
209 { "altdevice", TWFLAG_ALTDEVICE },
210 { "notrim", TWFLAG_NOTRIM },
211 { "voldmanaged=", TWFLAG_VOLDMANAGED },
212 { "formattable", TWFLAG_FORMATTABLE },
213 { "resize", TWFLAG_RESIZE },
Ethan Yonker93382822018-11-01 15:25:31 -0500214 { "keydirectory=", TWFLAG_KEYDIRECTORY },
Peter Cai28ea7b02019-05-24 11:38:54 +0800215 { "wrappedkey", TWFLAG_WRAPPEDKEY },
Peter Cai439d60c2019-10-17 08:49:10 +0800216 { "adopted_mount_delay=", TWFLAG_ADOPTED_MOUNT_DELAY },
Peter Caid68e6412019-11-02 19:22:38 +0800217 { "dm_use_original_path", TWFLAG_DM_USE_ORIGINAL_PATH },
bigbiff998f8392021-08-06 19:19:33 -0400218 { "logical", TWFLAG_LOGICAL },
Matt Mower2416a502016-04-12 19:54:46 -0500219 { 0, 0 },
220};
221
that9e0593e2014-10-08 00:01:24 +0200222TWPartition::TWPartition() {
Dees_Troy51a0e822012-09-05 15:24:24 -0400223 Can_Be_Mounted = false;
224 Can_Be_Wiped = false;
Dees_Troya13d74f2013-03-24 08:54:55 -0500225 Can_Be_Backed_Up = false;
Vojtech Bocek1dc30982013-08-30 21:49:30 +0200226 Use_Rm_Rf = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400227 Wipe_During_Factory_Reset = false;
228 Wipe_Available_in_GUI = false;
229 Is_SubPartition = false;
Dees_Troy2691f9d2012-09-24 11:15:49 -0400230 Has_SubPartition = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400231 SubPartition_Of = "";
232 Symlink_Path = "";
233 Symlink_Mount_Point = "";
234 Mount_Point = "";
Dees_Troye58d5262012-09-21 12:27:57 -0400235 Backup_Path = "";
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600236 Wildcard_Block_Device = false;
237 Sysfs_Entry = "";
Dees_Troy38bd7602012-09-14 13:33:53 -0400238 Actual_Block_Device = "";
239 Primary_Block_Device = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400240 Alternate_Block_Device = "";
241 Removable = false;
242 Is_Present = false;
243 Length = 0;
244 Size = 0;
245 Used = 0;
246 Free = 0;
247 Backup_Size = 0;
248 Can_Be_Encrypted = false;
249 Is_Encrypted = false;
250 Is_Decrypted = false;
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600251 Is_FBE = false;
Ethan Yonker253368a2014-11-25 15:00:52 -0600252 Mount_To_Decrypt = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400253 Decrypted_Block_Device = "";
254 Display_Name = "";
Dees_Troya13d74f2013-03-24 08:54:55 -0500255 Backup_Display_Name = "";
256 Storage_Name = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400257 Backup_Name = "";
Dees_Troy63c8df72012-09-10 14:02:05 -0400258 Backup_FileName = "";
Dees_Troy38bd7602012-09-14 13:33:53 -0400259 MTD_Name = "";
bigbiffce8f83c2015-12-12 18:30:21 -0500260 Backup_Method = BM_NONE;
Dees_Troy83bd4832013-05-04 12:39:56 +0000261 Can_Encrypt_Backup = false;
262 Use_Userdata_Encryption = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400263 Has_Data_Media = false;
Dees_Troye58d5262012-09-21 12:27:57 -0400264 Has_Android_Secure = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400265 Is_Storage = false;
Dees_Troya13d74f2013-03-24 08:54:55 -0500266 Is_Settings_Storage = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400267 Storage_Path = "";
268 Current_File_System = "";
269 Fstab_File_System = "";
Hashcode62bd9e02013-11-19 21:59:42 -0800270 Mount_Flags = 0;
271 Mount_Options = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400272 Format_Block_Size = 0;
Dees_Troy68cab492012-12-12 19:29:35 +0000273 Ignore_Blkid = false;
dianlujitao4879b372018-12-03 18:45:47 +0800274 Crypto_Key_Location = "";
Ethan Yonker726a0202014-12-16 20:01:38 -0600275 MTP_Storage_ID = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600276 Can_Flash_Img = false;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500277 Mount_Read_Only = false;
Ethan Yonker66a19492015-12-10 10:19:45 -0600278 Is_Adopted_Storage = false;
279 Adopted_GUID = "";
Ethan Yonker1b190162016-12-05 15:25:19 -0600280 SlotSelect = false;
Ethan Yonker93382822018-11-01 15:25:31 -0500281 Key_Directory = "";
bigbiffee7b7ff2020-03-23 15:08:27 -0400282 Is_Super = false;
Peter Cai439d60c2019-10-17 08:49:10 +0800283 Adopted_Mount_Delay = 0;
Peter Caid68e6412019-11-02 19:22:38 +0800284 Original_Path = "";
285 Use_Original_Path = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400286}
287
288TWPartition::~TWPartition(void) {
289 // Do nothing
290}
291
bigbiff8da46fa2020-09-08 16:42:34 -0400292bool 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 -0500293 char full_line[MAX_FSTAB_LINE_LENGTH];
Matt Mower2416a502016-04-12 19:54:46 -0500294 char twflags[MAX_FSTAB_LINE_LENGTH] = "";
Dees_Troy5bf43922012-09-07 16:07:55 -0400295 char* ptr;
Matt Mower2b2dd152016-04-26 11:24:08 -0500296 int line_len = strlen(fstab_line), index = 0, item_index = 0;
Dees_Troya13d74f2013-03-24 08:54:55 -0500297 bool skip = false;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600298 int fstab_version = 1, mount_point_index = 0, fs_index = 1, block_device_index = 2;
299 TWPartition *additional_entry = NULL;
300 std::map<string, Flags_Map>::iterator it;
Dees_Troy5bf43922012-09-07 16:07:55 -0400301
Matt Mower2b2dd152016-04-26 11:24:08 -0500302 strlcpy(full_line, fstab_line, sizeof(full_line));
bigbiffee7b7ff2020-03-23 15:08:27 -0400303
Dees_Troy51127312012-09-08 13:08:49 -0400304 for (index = 0; index < line_len; index++) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500305 if (full_line[index] == 34)
306 skip = !skip;
307 if (!skip && full_line[index] <= 32)
Dees_Troy5bf43922012-09-07 16:07:55 -0400308 full_line[index] = '\0';
Dees_Troy5bf43922012-09-07 16:07:55 -0400309 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600310 if (line_len < 10)
311 return false; // There can't possibly be a valid fstab line that is less than 10 chars
bigbiff998f8392021-08-06 19:19:33 -0400312 if (fstab_line[0] == '#')
313 return false; // skip comments
314
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600315 if (strncmp(fstab_line, "/dev/", strlen("/dev/")) == 0 || strncmp(fstab_line, "/devices/", strlen("/devices/")) == 0) {
316 fstab_version = 2;
317 block_device_index = 0;
318 mount_point_index = 1;
319 fs_index = 2;
320 }
321
bigbiff998f8392021-08-06 19:19:33 -0400322 if (fstab_line[0] != '/') {
bigbiffee7b7ff2020-03-23 15:08:27 -0400323 block_device_index = 0;
324 fstab_version = 2;
325 mount_point_index = 1;
326 fs_index = 2;
327 }
328
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600329 index = 0;
Dees_Troy5bf43922012-09-07 16:07:55 -0400330 while (index < line_len) {
331 while (index < line_len && full_line[index] == '\0')
332 index++;
333 if (index >= line_len)
334 continue;
335 ptr = full_line + index;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600336 if (item_index == mount_point_index) {
337 Mount_Point = ptr;
bigbiffee7b7ff2020-03-23 15:08:27 -0400338 if (fstab_version == 2 && Is_Super == false) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600339 additional_entry = PartitionManager.Find_Partition_By_Path(Mount_Point);
bigbiff8da46fa2020-09-08 16:42:34 -0400340 if (additional_entry) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600341 LOGINFO("Found an additional entry for '%s'\n", Mount_Point.c_str());
342 }
343 }
bigbiff8da46fa2020-09-08 16:42:34 -0400344 LOGINFO("Processing '%s'\n", Mount_Point.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600345 Backup_Path = Mount_Point;
346 Storage_Path = Mount_Point;
347 Display_Name = ptr + 1;
348 Backup_Display_Name = Display_Name;
349 Storage_Name = Display_Name;
350 item_index++;
351 } else if (item_index == fs_index) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400352 // File System
353 Fstab_File_System = ptr;
354 Current_File_System = ptr;
355 item_index++;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600356 } else if (item_index == block_device_index) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400357 // Primary Block Device
Dees_Troy38bd7602012-09-14 13:33:53 -0400358 if (Fstab_File_System == "mtd" || Fstab_File_System == "yaffs2") {
Dees_Troy094207a2012-09-26 12:00:39 -0400359 MTD_Name = ptr;
360 Find_MTD_Block_Device(MTD_Name);
Dees_Troy5fcd8f92012-10-16 12:22:05 -0400361 } else if (Fstab_File_System == "bml") {
362 if (Mount_Point == "/boot")
363 MTD_Name = "boot";
364 else if (Mount_Point == "/recovery")
365 MTD_Name = "recovery";
366 Primary_Block_Device = ptr;
367 if (*ptr != '/')
Dees_Troy2673cec2013-04-02 20:22:16 +0000368 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 -0400369 } else {
370 Primary_Block_Device = ptr;
bigbiff998f8392021-08-06 19:19:33 -0400371 if (*ptr == '/')
372 Find_Real_Block_Device(Primary_Block_Device, Display_Error);
Dees_Troy5bf43922012-09-07 16:07:55 -0400373 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400374 item_index++;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600375 } else if (item_index > 2) {
376 if (fstab_version == 2) {
377 if (item_index == 3) {
378 Process_FS_Flags(ptr);
379 if (additional_entry) {
380 additional_entry->Save_FS_Flags(Fstab_File_System, Mount_Flags, Mount_Options);
381 return false; // We save the extra fs flags in the other partition entry and by returning false, this entry will be deleted
382 }
383 } else {
384 strlcpy(twflags, ptr, sizeof(twflags));
385 }
386 item_index++;
387 } else if (*ptr == '/') { // v2 fstab does not allow alternate block devices
Dees_Troy5bf43922012-09-07 16:07:55 -0400388 // Alternate Block Device
389 Alternate_Block_Device = ptr;
390 Find_Real_Block_Device(Alternate_Block_Device, Display_Error);
391 } else if (strlen(ptr) > 7 && strncmp(ptr, "length=", 7) == 0) {
392 // Partition length
393 ptr += 7;
394 Length = atoi(ptr);
Dees_Troy51127312012-09-08 13:08:49 -0400395 } else if (strlen(ptr) > 6 && strncmp(ptr, "flags=", 6) == 0) {
396 // Custom flags, save for later so that new values aren't overwritten by defaults
397 ptr += 6;
Matt Mower2416a502016-04-12 19:54:46 -0500398 strlcpy(twflags, ptr, sizeof(twflags));
Dees_Troy38bd7602012-09-14 13:33:53 -0400399 } else if (strlen(ptr) == 4 && (strncmp(ptr, "NULL", 4) == 0 || strncmp(ptr, "null", 4) == 0 || strncmp(ptr, "null", 4) == 0)) {
400 // Do nothing
Dees_Troy5bf43922012-09-07 16:07:55 -0400401 } else {
402 // Unhandled data
Matt Mower2b2dd152016-04-26 11:24:08 -0500403 LOGINFO("Unhandled fstab information '%s' in fstab line '%s'\n", ptr, fstab_line);
Dees_Troy5bf43922012-09-07 16:07:55 -0400404 }
405 }
406 while (index < line_len && full_line[index] != '\0')
407 index++;
408 }
409
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600410 // override block devices from the v2 fstab with the ones we read from the twrp.flags file in case they are different
411 if (fstab_version == 2 && twrp_flags && twrp_flags->size() > 0) {
412 it = twrp_flags->find(Mount_Point);
413 if (it != twrp_flags->end()) {
414 if (!it->second.Primary_Block_Device.empty()) {
415 Primary_Block_Device = it->second.Primary_Block_Device;
416 Find_Real_Block_Device(Primary_Block_Device, Display_Error);
417 }
418 if (!it->second.Alternate_Block_Device.empty()) {
419 Alternate_Block_Device = it->second.Alternate_Block_Device;
420 Find_Real_Block_Device(Alternate_Block_Device, Display_Error);
421 }
422 }
423 }
424
425 if (strncmp(fstab_line, "/devices/", strlen("/devices/")) == 0) {
426 Sysfs_Entry = Primary_Block_Device;
427 Primary_Block_Device = "";
428 Is_Storage = true;
429 Removable = true;
430 Wipe_Available_in_GUI = true;
431 Wildcard_Block_Device = true;
432 }
433 if (Primary_Block_Device.find("*") != string::npos)
434 Wildcard_Block_Device = true;
435
bigbiff8da46fa2020-09-08 16:42:34 -0400436 if (Mount_Point == "auto") {
437 Mount_Point = "/auto";
438 char autoi[5];
439 sprintf(autoi, "%i", auto_index);
440 Mount_Point += autoi;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600441 Backup_Path = Mount_Point;
442 Storage_Path = Mount_Point;
dianlujitaob76a73a2020-04-30 20:33:20 +0800443 Backup_Name = Mount_Point.substr(1);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600444 auto_index++;
445 Setup_File_System(Display_Error);
446 Display_Name = "Storage";
447 Backup_Display_Name = Display_Name;
448 Storage_Name = Display_Name;
449 Can_Be_Backed_Up = false;
450 Wipe_Available_in_GUI = true;
451 Is_Storage = true;
452 Removable = true;
453 Wipe_Available_in_GUI = true;
454 } else if (!Is_File_System(Fstab_File_System) && !Is_Image(Fstab_File_System)) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400455 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000456 LOGERR("Unknown File System: '%s'\n", Fstab_File_System.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400457 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000458 LOGINFO("Unknown File System: '%s'\n", Fstab_File_System.c_str());
Matt Mower72c87ce2016-04-26 14:34:56 -0500459 return false;
Dees_Troy5bf43922012-09-07 16:07:55 -0400460 } else if (Is_File_System(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400461 Find_Actual_Block_Device();
Dees_Troy5bf43922012-09-07 16:07:55 -0400462 Setup_File_System(Display_Error);
dianlujitaob76a73a2020-04-30 20:33:20 +0800463 Backup_Name = Display_Name = Mount_Point.substr(1, Mount_Point.size() - 1);
Chaosmaster3b682732020-01-25 21:09:28 +0100464 if (Mount_Point == "/" || Mount_Point == "/system" || Mount_Point == "/system_root") {
bigbiff8da46fa2020-09-08 16:42:34 -0400465 Mount_Point = PartitionManager.Get_Android_Root_Path();
466 Backup_Path = Mount_Point;
467 Storage_Path = Mount_Point;
Dees_Troy5bf43922012-09-07 16:07:55 -0400468 Display_Name = "System";
dianlujitaob76a73a2020-04-30 20:33:20 +0800469 Backup_Name = "system";
Dees_Troya13d74f2013-03-24 08:54:55 -0500470 Backup_Display_Name = Display_Name;
471 Storage_Name = Display_Name;
bigbiff8da46fa2020-09-08 16:42:34 -0400472 Wipe_Available_in_GUI = false;
473 Can_Be_Backed_Up = false;
474 Can_Be_Wiped = false;
bigbiff8da46fa2020-09-08 16:42:34 -0400475 Make_Dir(PartitionManager.Get_Android_Root_Path(), true);
me-cafebabe701e9ab2022-07-29 06:34:45 +0800476 } else if (Mount_Point == "/system_ext") {
477 Display_Name = "System_EXT";
478 Backup_Name = "System_EXT";
479 Backup_Display_Name = Display_Name;
480 Storage_Name = Display_Name;
481 Can_Be_Backed_Up = Wipe_Available_in_GUI = Is_Super ? false : true;
Mohd Faraze3948ec2020-08-14 01:40:59 +0000482 } else if (Mount_Point == "/product") {
483 Display_Name = "Product";
484 Backup_Name = "Product";
485 Backup_Display_Name = Display_Name;
486 Storage_Name = Display_Name;
487 Can_Be_Backed_Up = Wipe_Available_in_GUI = Is_Super ? false : true;
Mohd Faraze3948ec2020-08-14 01:40:59 +0000488 } else if (Mount_Point == "/odm") {
489 Display_Name = "ODM";
490 Backup_Name = "ODM";
491 Backup_Display_Name = Display_Name;
492 Storage_Name = Display_Name;
493 Can_Be_Backed_Up = Wipe_Available_in_GUI = Is_Super ? false : true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400494 } else if (Mount_Point == "/data") {
495 Display_Name = "Data";
Dees_Troya13d74f2013-03-24 08:54:55 -0500496 Backup_Display_Name = Display_Name;
497 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400498 Wipe_Available_in_GUI = true;
Dees_Troy51127312012-09-08 13:08:49 -0400499 Wipe_During_Factory_Reset = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500500 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000501 Can_Encrypt_Backup = true;
502 Use_Userdata_Encryption = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400503 } else if (Mount_Point == "/cache") {
504 Display_Name = "Cache";
Dees_Troya13d74f2013-03-24 08:54:55 -0500505 Backup_Display_Name = Display_Name;
506 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400507 Wipe_Available_in_GUI = true;
Dees_Troy51127312012-09-08 13:08:49 -0400508 Wipe_During_Factory_Reset = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500509 Can_Be_Backed_Up = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400510 } else if (Mount_Point == "/datadata") {
Dees_Troy51127312012-09-08 13:08:49 -0400511 Wipe_During_Factory_Reset = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400512 Display_Name = "DataData";
Dees_Troya13d74f2013-03-24 08:54:55 -0500513 Backup_Display_Name = Display_Name;
514 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400515 Is_SubPartition = true;
516 SubPartition_Of = "/data";
Dees_Troy5bf43922012-09-07 16:07:55 -0400517 DataManager::SetValue(TW_HAS_DATADATA, 1);
Dees_Troya13d74f2013-03-24 08:54:55 -0500518 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000519 Can_Encrypt_Backup = true;
520 Use_Userdata_Encryption = false; // This whole partition should be encrypted
Dees_Troy5bf43922012-09-07 16:07:55 -0400521 } else if (Mount_Point == "/sd-ext") {
Dees_Troy51127312012-09-08 13:08:49 -0400522 Wipe_During_Factory_Reset = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400523 Display_Name = "SD-Ext";
Dees_Troya13d74f2013-03-24 08:54:55 -0500524 Backup_Display_Name = Display_Name;
525 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400526 Wipe_Available_in_GUI = true;
Dees_Troyc51f1f92012-09-20 15:32:13 -0400527 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500528 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000529 Can_Encrypt_Backup = true;
530 Use_Userdata_Encryption = true;
Dees_Troy2c50e182012-09-26 20:05:28 -0400531 } else if (Mount_Point == "/boot") {
532 Display_Name = "Boot";
Dees_Troya13d74f2013-03-24 08:54:55 -0500533 Backup_Display_Name = Display_Name;
Dees_Troy2c50e182012-09-26 20:05:28 -0400534 DataManager::SetValue("tw_boot_is_mountable", 1);
Dees_Troya13d74f2013-03-24 08:54:55 -0500535 Can_Be_Backed_Up = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500536 } else if (Mount_Point == "/vendor") {
537 Display_Name = "Vendor";
538 Backup_Display_Name = Display_Name;
539 Storage_Name = Display_Name;
Dees_Troy8170a922012-09-18 15:40:25 -0400540 }
541#ifdef TW_EXTERNAL_STORAGE_PATH
542 if (Mount_Point == EXPAND(TW_EXTERNAL_STORAGE_PATH)) {
543 Is_Storage = true;
544 Storage_Path = EXPAND(TW_EXTERNAL_STORAGE_PATH);
Dees_Troyc51f1f92012-09-20 15:32:13 -0400545 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500546 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400547#else
Dees_Troy70737fa2013-04-08 13:19:20 +0000548 if (Mount_Point == "/sdcard" || Mount_Point == "/external_sd" || Mount_Point == "/external_sdcard") {
Dees_Troy8170a922012-09-18 15:40:25 -0400549 Is_Storage = true;
Dees_Troyc51f1f92012-09-20 15:32:13 -0400550 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500551 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400552#endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000553 }
Dees_Troy8170a922012-09-18 15:40:25 -0400554#ifdef TW_INTERNAL_STORAGE_PATH
555 if (Mount_Point == EXPAND(TW_INTERNAL_STORAGE_PATH)) {
556 Is_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500557 Is_Settings_Storage = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400558 Storage_Path = EXPAND(TW_INTERNAL_STORAGE_PATH);
Dees_Troya13d74f2013-03-24 08:54:55 -0500559 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400560 }
561#else
Dees_Troy70737fa2013-04-08 13:19:20 +0000562 if (Mount_Point == "/emmc" || Mount_Point == "/internal_sd" || Mount_Point == "/internal_sdcard") {
Dees_Troy8170a922012-09-18 15:40:25 -0400563 Is_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500564 Is_Settings_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500565 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400566 }
567#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400568 } else if (Is_Image(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400569 Find_Actual_Block_Device();
Ethan Yonker1b190162016-12-05 15:25:19 -0600570 Setup_Image();
Dees_Troya13d74f2013-03-24 08:54:55 -0500571 if (Mount_Point == "/boot") {
572 Display_Name = "Boot";
573 Backup_Display_Name = Display_Name;
574 Can_Be_Backed_Up = true;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600575 Can_Flash_Img = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500576 } else if (Mount_Point == "/recovery") {
577 Display_Name = "Recovery";
578 Backup_Display_Name = Display_Name;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600579 Can_Flash_Img = true;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500580 } else if (Mount_Point == "/system_image") {
581 Display_Name = "System Image";
582 Backup_Display_Name = Display_Name;
HashBanged974bb2016-01-30 14:20:09 -0500583 Can_Flash_Img = true;
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500584 Can_Be_Backed_Up = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500585 } else if (Mount_Point == "/vendor_image") {
586 Display_Name = "Vendor Image";
587 Backup_Display_Name = Display_Name;
HashBanged974bb2016-01-30 14:20:09 -0500588 Can_Flash_Img = true;
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500589 Can_Be_Backed_Up = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500590 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400591 }
592
Matt Mower2416a502016-04-12 19:54:46 -0500593 // Process TWRP fstab flags
594 if (strlen(twflags) > 0) {
595 string Prev_Display_Name = Display_Name;
596 string Prev_Storage_Name = Storage_Name;
597 string Prev_Backup_Display_Name = Backup_Display_Name;
598 Display_Name = "";
599 Storage_Name = "";
600 Backup_Display_Name = "";
601
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600602 Process_TW_Flags(twflags, (fstab_version == 1), fstab_version);
603 Save_FS_Flags(Fstab_File_System, Mount_Flags, Mount_Options);
Matt Mower2416a502016-04-12 19:54:46 -0500604
605 bool has_display_name = !Display_Name.empty();
606 bool has_storage_name = !Storage_Name.empty();
607 bool has_backup_name = !Backup_Display_Name.empty();
608 if (!has_display_name) Display_Name = Prev_Display_Name;
609 if (!has_storage_name) Storage_Name = Prev_Storage_Name;
610 if (!has_backup_name) Backup_Display_Name = Prev_Backup_Display_Name;
611
612 if (has_display_name && !has_storage_name)
613 Storage_Name = Display_Name;
614 if (!has_display_name && has_storage_name)
615 Display_Name = Storage_Name;
616 if (has_display_name && !has_backup_name && Backup_Display_Name != "Android Secure")
617 Backup_Display_Name = Display_Name;
618 if (!has_display_name && has_backup_name)
619 Display_Name = Backup_Display_Name;
620 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600621
622 if (fstab_version == 2 && twrp_flags && twrp_flags->size() > 0) {
623 it = twrp_flags->find(Mount_Point);
624 if (it != twrp_flags->end()) {
625 char twrpflags[MAX_FSTAB_LINE_LENGTH] = "";
626 int skip = 0;
627 string Flags = it->second.Flags;
628 strcpy(twrpflags, Flags.c_str());
629 if (strlen(twrpflags) > strlen("flags=") && strncmp(twrpflags, "flags=", strlen("flags=")) == 0)
630 skip += strlen("flags=");
631 char* flagptr = twrpflags;
632 flagptr += skip;
633 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
634 }
635 }
nkk7198fc3992017-12-16 16:26:42 +0200636
637 if (Mount_Point == "/persist" && Can_Be_Mounted) {
638 bool mounted = Is_Mounted();
639 if (mounted || Mount(false)) {
nkk7198fc3992017-12-16 16:26:42 +0200640 TWFunc::Fixup_Time_On_Boot("/persist/time/");
641 if (!mounted)
642 UnMount(false);
643 }
644 }
645
Dees_Troy51127312012-09-08 13:08:49 -0400646 return true;
647}
648
Matt Mower72c87ce2016-04-26 14:34:56 -0500649void TWPartition::Partition_Post_Processing(bool Display_Error) {
650 if (Mount_Point == "/data")
651 Setup_Data_Partition(Display_Error);
652 else if (Mount_Point == "/cache")
653 Setup_Cache_Partition(Display_Error);
654}
655
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600656void TWPartition::ExcludeAll(const string& path) {
657 backup_exclusions.add_absolute_dir(path);
658 wipe_exclusions.add_absolute_dir(path);
659}
660
Matt Mower72c87ce2016-04-26 14:34:56 -0500661void TWPartition::Setup_Data_Partition(bool Display_Error) {
662 if (Mount_Point != "/data")
663 return;
664
665 // Ensure /data is not mounted as tmpfs for qcom hardware decrypt
666 UnMount(false);
667
668#ifdef TW_INCLUDE_CRYPTO
Darth99ab7cf52023-02-05 23:41:03 +0000669 #ifdef TW_PREPARE_DATA_MEDIA_EARLY
670 if (datamedia)
671 Setup_Data_Media();
672 #endif
Matt Mower72c87ce2016-04-26 14:34:56 -0500673 Can_Be_Encrypted = true;
674 char crypto_blkdev[255];
675 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
676 if (strcmp(crypto_blkdev, "error") != 0) {
bigbiff7ba75002020-04-11 20:47:09 -0400677 Set_FBE_Status();
Matt Mower72c87ce2016-04-26 14:34:56 -0500678 Decrypted_Block_Device = crypto_blkdev;
679 LOGINFO("Data already decrypted, new block device: '%s'\n", crypto_blkdev);
Darth99ab7cf52023-02-05 23:41:03 +0000680 #ifndef TW_PREPARE_DATA_MEDIA_EARLY
bigbiff4fa02b52021-12-30 17:01:44 -0500681 if (datamedia)
682 Setup_Data_Media();
Darth99ab7cf52023-02-05 23:41:03 +0000683 #endif
bigbiff7ba75002020-04-11 20:47:09 -0400684 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
Matt Mower72c87ce2016-04-26 14:34:56 -0500685 } else if (!Mount(false)) {
686 if (Is_Present) {
me-cafebabeb0aab752022-06-10 01:45:40 +0800687 if (Key_Directory.empty()) {
688 set_partition_data(Use_Original_Path ? Original_Path.c_str() : Actual_Block_Device.c_str(), Crypto_Key_Location.c_str());
689 if (cryptfs_check_footer() == 0) {
690 Is_Encrypted = true;
691 Is_Decrypted = false;
692 Can_Be_Mounted = false;
693 Current_File_System = "emmc";
694 Setup_Image();
695 DataManager::SetValue(TW_CRYPTO_PWTYPE, cryptfs_get_password_type());
696 DataManager::SetValue("tw_crypto_pwtype_0", cryptfs_get_password_type());
697 DataManager::SetValue(TW_CRYPTO_PASSWORD, "");
698 DataManager::SetValue("tw_crypto_display", "");
699 if (datamedia)
700 Setup_Data_Media();
701 } else {
702 gui_err("mount_data_footer=Could not mount /data and unable to find crypto footer.");
703 }
704 } else {
705 Is_Encrypted = true;
706 Is_Decrypted = false;
707 if (datamedia)
708 Setup_Data_Media();
709 }
Ethan Yonker93382822018-11-01 15:25:31 -0500710 } else if (Key_Directory.empty()) {
Noah Jacobson81d638d2019-04-28 00:10:07 -0400711 LOGERR("Primary block device '%s' for mount point '%s' is not present!\n",
712 Primary_Block_Device.c_str(), Mount_Point.c_str());
Matt Mower72c87ce2016-04-26 14:34:56 -0500713 }
714 } else {
bigbiff7ba75002020-04-11 20:47:09 -0400715 Set_FBE_Status();
Captain Throwbackacc7f0f2020-12-29 15:54:33 -0500716 int is_device_fbe;
717 DataManager::GetValue(TW_IS_FBE, is_device_fbe);
Captain Throwback8a8e56c2021-10-01 15:12:24 -0400718 char crypto_state[255];
719 property_get("ro.crypto.state", crypto_state, "error");
720 if (!Decrypt_FBE_DE() && strcmp(crypto_state, "error") != 0) {
721 if (is_device_fbe == 1)
722 LOGERR("Unable to decrypt FBE device\n");
723 } else {
724 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
Darth99ab7cf52023-02-05 23:41:03 +0000725 #ifndef TW_PREPARE_DATA_MEDIA_EARLY
bigbiff4fa02b52021-12-30 17:01:44 -0500726 if (datamedia)
727 Setup_Data_Media();
Darth99ab7cf52023-02-05 23:41:03 +0000728 #endif
mauronofrio9bf73352019-11-23 22:27:34 +0100729 }
Matt Mower72c87ce2016-04-26 14:34:56 -0500730 }
731 if (datamedia && (!Is_Encrypted || (Is_Encrypted && Is_Decrypted))) {
732 Setup_Data_Media();
bigbiff25d25b92020-06-19 16:07:38 -0400733 Recreate_Media_Folder();
Matt Mower72c87ce2016-04-26 14:34:56 -0500734 }
735#else
736 if (datamedia) {
737 Setup_Data_Media();
738 Recreate_Media_Folder();
739 }
740#endif
741}
742
bigbiff7ba75002020-04-11 20:47:09 -0400743void TWPartition::Set_FBE_Status() {
744 DataManager::SetValue(TW_IS_DECRYPTED, 1);
745 Is_Encrypted = true;
746 Is_Decrypted = true;
bigbiff7ba75002020-04-11 20:47:09 -0400747 if (Key_Directory.empty()) {
748 Is_FBE = false;
749 DataManager::SetValue(TW_IS_FBE, 0);
750 } else {
Captain Throwbackb5af4f82020-12-29 16:01:10 -0500751 LOGINFO("Setup_Data_Partition::Key_Directory::%s\n", Key_Directory.c_str());
bigbiff7ba75002020-04-11 20:47:09 -0400752 Is_FBE = true;
753 DataManager::SetValue(TW_IS_FBE, 1);
754 }
755}
756
Ethan Yonker93382822018-11-01 15:25:31 -0500757bool TWPartition::Decrypt_FBE_DE() {
bigbiff7ba75002020-04-11 20:47:09 -0400758 if (TWFunc::Path_Exists("/data/unencrypted/key/version")) {
Captain Throwback87d73d62020-02-17 16:44:50 -0500759 DataManager::SetValue(TW_IS_FBE, 1);
Captain Throwback37c3aef2021-10-06 11:38:18 -0400760 PartitionManager.Set_Crypto_State();
761 PartitionManager.Set_Crypto_Type("file");
Ethan Yonker93382822018-11-01 15:25:31 -0500762 LOGINFO("File Based Encryption is present\n");
763#ifdef TW_INCLUDE_FBE
Noah Jacobson81d638d2019-04-28 00:10:07 -0400764 Is_FBE = true;
765 ExcludeAll(Mount_Point + "/convert_fbe");
766 ExcludeAll(Mount_Point + "/unencrypted");
767 ExcludeAll(Mount_Point + "/misc/vold/user_keys");
768 ExcludeAll(Mount_Point + "/misc/vold/volume_keys");
769 ExcludeAll(Mount_Point + "/system/gatekeeper.password.key");
770 ExcludeAll(Mount_Point + "/system/gatekeeper.pattern.key");
771 ExcludeAll(Mount_Point + "/system/locksettings.db");
772 ExcludeAll(Mount_Point + "/system/locksettings.db-wal");
773 ExcludeAll(Mount_Point + "/misc/gatekeeper");
774 ExcludeAll(Mount_Point + "/misc/keystore");
775 ExcludeAll(Mount_Point + "/drm/kek.dat");
bigbiffa957f072021-03-07 18:20:29 -0500776 ExcludeAll(Mount_Point + "/system_de/0/spblob"); // contains data needed to decrypt synthetic password
micky3872ec1df42021-10-14 14:53:06 +0200777 ExcludeAll(Mount_Point + "/system/users/0/gatekeeper.password.key");
778 ExcludeAll(Mount_Point + "/system/users/0/gatekeeper.pattern.key");
Noah Jacobson81d638d2019-04-28 00:10:07 -0400779 ExcludeAll(Mount_Point + "/cache");
780 ExcludeAll(Mount_Point + "/per_boot"); // removed each boot by init
bigbiffa15d02f2021-06-29 20:04:54 -0400781 ExcludeAll(Mount_Point + "/gsi"); // cow devices
782
Noah Jacobson81d638d2019-04-28 00:10:07 -0400783 int retry_count = 3;
bigbiffdf53b6c2022-01-17 19:31:52 -0500784 while (!android::keystore::Decrypt_DE() && --retry_count)
Noah Jacobson81d638d2019-04-28 00:10:07 -0400785 usleep(2000);
786 if (retry_count > 0) {
Captain Throwback37c3aef2021-10-06 11:38:18 -0400787 PartitionManager.Set_Crypto_State();
Noah Jacobson81d638d2019-04-28 00:10:07 -0400788 Is_Encrypted = true;
789 Is_Decrypted = false;
790 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
791 string filename;
bigbiffdf53b6c2022-01-17 19:31:52 -0500792 int pwd_type = android::keystore::Get_Password_Type(0, filename);
Noah Jacobson81d638d2019-04-28 00:10:07 -0400793 if (pwd_type < 0) {
794 LOGERR("This TWRP does not have synthetic password decrypt support\n");
795 pwd_type = 0; // default password
Ethan Yonker93382822018-11-01 15:25:31 -0500796 }
Noah Jacobson81d638d2019-04-28 00:10:07 -0400797 PartitionManager.Parse_Users(); // after load_all_de_keys() to parse_users
798 std::vector<users_struct>::iterator iter;
799 std::vector<users_struct>* userList = PartitionManager.Get_Users_List();
800 for (iter = userList->begin(); iter != userList->end(); iter++) {
801 if (atoi((*iter).userId.c_str()) != 0) {
802 ExcludeAll(Mount_Point + "/system_de/" + (*iter).userId + "/spblob");
803 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/gatekeeper.password.key");
804 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/gatekeeper.pattern.key");
805 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/locksettings.db");
806 ExcludeAll(Mount_Point + "/system/users/" + (*iter).userId + "/locksettings.db-wal");
807 }
808 }
809 DataManager::SetValue(TW_CRYPTO_PWTYPE, pwd_type);
810 DataManager::SetValue("tw_crypto_pwtype_0", pwd_type);
811 DataManager::SetValue(TW_CRYPTO_PASSWORD, "");
812 DataManager::SetValue("tw_crypto_display", "");
813 return true;
814 }
Ethan Yonker93382822018-11-01 15:25:31 -0500815#else
816 LOGERR("FBE found but FBE support not present in TWRP\n");
817#endif
818 }
Captain Throwback87d73d62020-02-17 16:44:50 -0500819 DataManager::SetValue(TW_IS_FBE, 0);
Ethan Yonker93382822018-11-01 15:25:31 -0500820 return false;
821}
822
Matt Mower72c87ce2016-04-26 14:34:56 -0500823void TWPartition::Setup_Cache_Partition(bool Display_Error __unused) {
824 if (Mount_Point != "/cache")
825 return;
826
827 if (!Mount(true))
828 return;
829
830 if (!TWFunc::Path_Exists("/cache/recovery/.")) {
831 LOGINFO("Recreating /cache/recovery folder\n");
832 if (mkdir("/cache/recovery", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0)
833 LOGERR("Could not create /cache/recovery\n");
834 }
835}
836
Matt Mower4ab42b12016-04-21 13:52:18 -0500837void TWPartition::Process_FS_Flags(const char *str) {
838 char *options = strdup(str);
839 char *ptr, *savep;
Hashcode62bd9e02013-11-19 21:59:42 -0800840
Matt Mower4ab42b12016-04-21 13:52:18 -0500841 Mount_Options = "";
Hashcode62bd9e02013-11-19 21:59:42 -0800842
Matt Mower4ab42b12016-04-21 13:52:18 -0500843 // Avoid issues with potentially nested strtok by using strtok_r
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600844 for (ptr = strtok_r(options, ",", &savep); ptr; ptr = strtok_r(NULL, ",", &savep)) {
845 char *equals = strstr(ptr, "=");
846 size_t name_len;
Matt Mower4ab42b12016-04-21 13:52:18 -0500847
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600848 if (!equals)
849 name_len = strlen(ptr);
850 else
851 name_len = equals - ptr;
852
853 // There are some flags that we want to ignore in TWRP
854 bool found_match = false;
855 for (const char** ignored_mount_item = ignored_mount_items; *ignored_mount_item; ignored_mount_item++) {
856 if (strncmp(ptr, *ignored_mount_item, name_len) == 0) {
857 found_match = true;
Hashcode62bd9e02013-11-19 21:59:42 -0800858 break;
859 }
860 }
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600861 if (found_match)
862 continue;
Hashcode62bd9e02013-11-19 21:59:42 -0800863
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600864 // mount_flags are never postfixed by '='
865 if (!equals) {
866 const struct flag_list* mount_flag = mount_flags;
867 for (; mount_flag->name; mount_flag++) {
868 if (strcmp(ptr, mount_flag->name) == 0) {
869 if (mount_flag->flag == MS_RDONLY)
870 Mount_Read_Only = true;
871 else
872 Mount_Flags |= (unsigned)mount_flag->flag;
873 found_match = true;
874 break;
875 }
876 }
877 if (found_match)
878 continue;
Matt Mower4ab42b12016-04-21 13:52:18 -0500879 }
880
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600881 // If we aren't ignoring this flag and it's not a mount flag, then it must be a mount option
882 if (!Mount_Options.empty())
883 Mount_Options += ",";
884 Mount_Options += ptr;
Matt Mower4ab42b12016-04-21 13:52:18 -0500885 }
886 free(options);
Hashcode62bd9e02013-11-19 21:59:42 -0800887}
888
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600889void TWPartition::Save_FS_Flags(const string& local_File_System, int local_Mount_Flags, const string& local_Mount_Options) {
890 partition_fs_flags_struct flags;
891 flags.File_System = local_File_System;
892 flags.Mount_Flags = local_Mount_Flags;
893 flags.Mount_Options = local_Mount_Options;
894 fs_flags.push_back(flags);
895}
896
Matt Mower2416a502016-04-12 19:54:46 -0500897void TWPartition::Apply_TW_Flag(const unsigned flag, const char* str, const bool val) {
898 switch (flag) {
899 case TWFLAG_ANDSEC:
900 Has_Android_Secure = val;
901 break;
902 case TWFLAG_BACKUP:
903 Can_Be_Backed_Up = val;
904 break;
905 case TWFLAG_BACKUPNAME:
906 Backup_Display_Name = str;
907 break;
908 case TWFLAG_BLOCKSIZE:
909 Format_Block_Size = (unsigned long)(atol(str));
910 break;
911 case TWFLAG_CANBEWIPED:
912 Can_Be_Wiped = val;
913 break;
914 case TWFLAG_CANENCRYPTBACKUP:
915 Can_Encrypt_Backup = val;
916 break;
917 case TWFLAG_DEFAULTS:
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600918 case TWFLAG_WAIT:
919 case TWFLAG_VERIFY:
920 case TWFLAG_CHECK:
921 case TWFLAG_NOTRIM:
922 case TWFLAG_VOLDMANAGED:
923 case TWFLAG_RESIZE:
Matt Mower2416a502016-04-12 19:54:46 -0500924 // Do nothing
925 break;
926 case TWFLAG_DISPLAY:
927 Display_Name = str;
928 break;
929 case TWFLAG_ENCRYPTABLE:
930 case TWFLAG_FORCEENCRYPT:
931 Crypto_Key_Location = str;
932 break;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500933 case TWFLAG_FILEENCRYPTION:
934 // This flag isn't used by TWRP but is needed in 9.0 FBE decrypt
935 // fileencryption=ice:aes-256-heh
936 {
937 std::string FBE = str;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500938 size_t colon_loc = FBE.find(":");
939 if (colon_loc == std::string::npos) {
Ethan Yonker93382822018-11-01 15:25:31 -0500940 property_set("fbe.contents", FBE.c_str());
941 property_set("fbe.filenames", "");
942 LOGINFO("FBE contents '%s', filenames ''\n", FBE.c_str());
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500943 break;
944 }
Ethan Yonker93382822018-11-01 15:25:31 -0500945 std::string FBE_contents, FBE_filenames;
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500946 FBE_contents = FBE.substr(0, colon_loc);
947 FBE_filenames = FBE.substr(colon_loc + 1);
948 property_set("fbe.contents", FBE_contents.c_str());
949 property_set("fbe.filenames", FBE_filenames.c_str());
950 LOGINFO("FBE contents '%s', filenames '%s'\n", FBE_contents.c_str(), FBE_filenames.c_str());
951 }
952 break;
Captain Throwbackf74fe4f2022-02-08 12:45:01 -0500953 case TWFLAG_METADATA_ENCRYPTION:
954 // This flag isn't used by TWRP but is needed for FBEv2 metadata decryption
955 // metadata_encryption=aes-256-xts:wrappedkey_v0
956 {
957 std::string META = str;
958 size_t colon_loc = META.find(":");
959 if (colon_loc == std::string::npos) {
960 property_set("metadata.contents", META.c_str());
961 property_set("metadata.filenames", "");
962 LOGINFO("Metadata contents '%s', filenames ''\n", META.c_str());
963 break;
964 }
965 std::string META_contents, META_filenames;
966 META_contents = META.substr(0, colon_loc);
967 META_filenames = META.substr(colon_loc + 1);
968 property_set("metadata.contents", META_contents.c_str());
969 property_set("metadata.filenames", META_filenames.c_str());
970 LOGINFO("Metadata contents '%s', filenames '%s'\n", META_contents.c_str(), META_filenames.c_str());
971 }
972 break;
Peter Cai28ea7b02019-05-24 11:38:54 +0800973 case TWFLAG_WRAPPEDKEY:
bigbiff437d86f2021-09-26 16:57:14 -0400974 // no more processing needed. leaving it here in case we want to do something in the future
Peter Cai28ea7b02019-05-24 11:38:54 +0800975 break;
Matt Mower2416a502016-04-12 19:54:46 -0500976 case TWFLAG_FLASHIMG:
977 Can_Flash_Img = val;
978 break;
979 case TWFLAG_FSFLAGS:
Matt Mower4ab42b12016-04-21 13:52:18 -0500980 Process_FS_Flags(str);
Matt Mower2416a502016-04-12 19:54:46 -0500981 break;
982 case TWFLAG_IGNOREBLKID:
983 Ignore_Blkid = val;
984 break;
985 case TWFLAG_LENGTH:
986 Length = atoi(str);
987 break;
988 case TWFLAG_MOUNTTODECRYPT:
989 Mount_To_Decrypt = val;
990 break;
Captain Throwback8d97d422022-02-08 15:31:44 -0500991 case TWFLAG_QUOTA:
992 // Filesystem flag - TWRP does not need to process
993 break;
Matt Mower2416a502016-04-12 19:54:46 -0500994 case TWFLAG_REMOVABLE:
995 Removable = val;
996 break;
Matt Mower2416a502016-04-12 19:54:46 -0500997 case TWFLAG_SETTINGSSTORAGE:
998 Is_Settings_Storage = val;
999 if (Is_Settings_Storage)
1000 Is_Storage = true;
1001 break;
1002 case TWFLAG_STORAGE:
1003 Is_Storage = val;
1004 break;
1005 case TWFLAG_STORAGENAME:
1006 Storage_Name = str;
1007 break;
1008 case TWFLAG_SUBPARTITIONOF:
1009 Is_SubPartition = true;
1010 SubPartition_Of = str;
1011 break;
1012 case TWFLAG_SYMLINK:
1013 Symlink_Path = str;
1014 break;
1015 case TWFLAG_USERDATAENCRYPTBACKUP:
1016 Use_Userdata_Encryption = val;
1017 if (Use_Userdata_Encryption)
1018 Can_Encrypt_Backup = true;
1019 break;
1020 case TWFLAG_USERMRF:
1021 Use_Rm_Rf = val;
1022 break;
1023 case TWFLAG_WIPEDURINGFACTORYRESET:
1024 Wipe_During_Factory_Reset = val;
1025 if (Wipe_During_Factory_Reset) {
1026 Can_Be_Wiped = true;
1027 Wipe_Available_in_GUI = true;
1028 }
1029 break;
1030 case TWFLAG_WIPEINGUI:
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001031 case TWFLAG_FORMATTABLE:
Matt Mower2416a502016-04-12 19:54:46 -05001032 Wipe_Available_in_GUI = val;
1033 if (Wipe_Available_in_GUI)
1034 Can_Be_Wiped = true;
1035 break;
Ethan Yonker1b190162016-12-05 15:25:19 -06001036 case TWFLAG_SLOTSELECT:
1037 SlotSelect = true;
1038 break;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001039 case TWFLAG_ALTDEVICE:
1040 Alternate_Block_Device = str;
1041 break;
Peter Cai439d60c2019-10-17 08:49:10 +08001042 case TWFLAG_ADOPTED_MOUNT_DELAY:
1043 Adopted_Mount_Delay = atoi(str);
1044 break;
Ethan Yonker93382822018-11-01 15:25:31 -05001045 case TWFLAG_KEYDIRECTORY:
1046 Key_Directory = str;
bigbiffa957f072021-03-07 18:20:29 -05001047 LOGINFO("setting Key_Directory to: %s\n", Key_Directory.c_str());
bigbiffd58ba182020-03-23 10:02:29 -04001048 break;
Peter Caid68e6412019-11-02 19:22:38 +08001049 case TWFLAG_DM_USE_ORIGINAL_PATH:
1050 Use_Original_Path = true;
1051 break;
bigbiff998f8392021-08-06 19:19:33 -04001052 case TWFLAG_LOGICAL:
1053 Is_Super = true;
1054 break;
Matt Mower2416a502016-04-12 19:54:46 -05001055 default:
1056 // Should not get here
1057 LOGINFO("Flag identified for processing, but later unmatched: %i\n", flag);
1058 break;
1059 }
1060}
Dees_Troy51127312012-09-08 13:08:49 -04001061
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001062void TWPartition::Process_TW_Flags(char *flags, bool Display_Error, int fstab_ver) {
Matt Mower2416a502016-04-12 19:54:46 -05001063 char separator[2] = {'\n', 0};
1064 char *ptr, *savep;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001065 char source_separator = ';';
1066
1067 if (fstab_ver == 2)
1068 source_separator = ',';
Matt Mower2416a502016-04-12 19:54:46 -05001069
1070 // Semicolons within double-quotes are not forbidden, so replace
1071 // only the semicolons intended as separators with '\n' for strtok
1072 for (unsigned i = 0, skip = 0; i < strlen(flags); i++) {
1073 if (flags[i] == '\"')
Dees_Troya13d74f2013-03-24 08:54:55 -05001074 skip = !skip;
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001075 if (!skip && flags[i] == source_separator)
Matt Mower2416a502016-04-12 19:54:46 -05001076 flags[i] = separator[0];
Dees_Troy51127312012-09-08 13:08:49 -04001077 }
1078
Matt Mower2416a502016-04-12 19:54:46 -05001079 // Avoid issues with potentially nested strtok by using strtok_r
1080 ptr = strtok_r(flags, separator, &savep);
1081 while (ptr) {
1082 int ptr_len = strlen(ptr);
1083 const struct flag_list* tw_flag = tw_flags;
Hashcode62bd9e02013-11-19 21:59:42 -08001084
Matt Mower2416a502016-04-12 19:54:46 -05001085 for (; tw_flag->name; tw_flag++) {
1086 int flag_len = strlen(tw_flag->name);
1087
1088 if (strncmp(ptr, tw_flag->name, flag_len) == 0) {
1089 bool flag_val = false;
1090
1091 if (ptr_len > flag_len && (tw_flag->name)[flag_len-1] != '='
1092 && ptr[flag_len] != '=') {
1093 // Handle flags with same starting string
1094 // (e.g. backup and backupname)
1095 continue;
1096 } else if (ptr_len > flag_len && ptr[flag_len] == '=') {
1097 // Handle flags with dual format: Part 1
1098 // (e.g. backup and backup=y. backup=y handled here)
1099 ptr += flag_len + 1;
1100 TWFunc::Strip_Quotes(ptr);
1101 // Skip flags with empty argument
1102 // (e.g. backup=)
1103 if (strlen(ptr) == 0) {
1104 LOGINFO("Flag missing argument or should not include '=': %s=\n", tw_flag->name);
1105 break;
1106 }
1107 flag_val = strchr("yY1", *ptr) != NULL;
1108 } else if (ptr_len == flag_len
1109 && (tw_flag->name)[flag_len-1] == '=') {
1110 // Skip flags missing argument after =
1111 // (e.g. backupname=)
1112 LOGINFO("Flag missing argument: %s\n", tw_flag->name);
1113 break;
1114 } else if (ptr_len > flag_len
1115 && (tw_flag->name)[flag_len-1] == '=') {
1116 // Handle arguments to flags
1117 // (e.g. backupname="My Stuff")
1118 ptr += flag_len;
1119 TWFunc::Strip_Quotes(ptr);
1120 // Skip flags with empty argument
1121 // (e.g. backupname="")
1122 if (strlen(ptr) == 0) {
1123 LOGINFO("Flag missing argument: %s\n", tw_flag->name);
1124 break;
1125 }
1126 } else if (ptr_len == flag_len) {
1127 // Handle flags with dual format: Part 2
1128 // (e.g. backup and backup=y. backup handled here)
1129 flag_val = true;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001130 } else {
Matt Mower2416a502016-04-12 19:54:46 -05001131 LOGINFO("Flag matched, but could not be processed: %s\n", ptr);
1132 break;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001133 }
Matt Mower2416a502016-04-12 19:54:46 -05001134
1135 Apply_TW_Flag(tw_flag->flag, ptr, flag_val);
1136 break;
Ethan Yonker96af84a2015-01-05 14:58:36 -06001137 }
Matt Mower2416a502016-04-12 19:54:46 -05001138 }
1139 if (tw_flag->name == 0) {
Dees_Troy51127312012-09-08 13:08:49 -04001140 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001141 LOGERR("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -04001142 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001143 LOGINFO("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -04001144 }
Matt Mower2416a502016-04-12 19:54:46 -05001145 ptr = strtok_r(NULL, separator, &savep);
Dees_Troy51127312012-09-08 13:08:49 -04001146 }
Dees_Troy51a0e822012-09-05 15:24:24 -04001147}
1148
Dees_Troy5bf43922012-09-07 16:07:55 -04001149bool TWPartition::Is_File_System(string File_System) {
1150 if (File_System == "ext2" ||
Dees_Troy63c8df72012-09-10 14:02:05 -04001151 File_System == "ext3" ||
Dees_Troy5bf43922012-09-07 16:07:55 -04001152 File_System == "ext4" ||
1153 File_System == "vfat" ||
1154 File_System == "ntfs" ||
1155 File_System == "yaffs2" ||
bigbiff bigbiff3e146522012-11-14 14:32:59 -05001156 File_System == "exfat" ||
Dees_Troye5017042013-08-29 16:38:55 +00001157 File_System == "f2fs" ||
GarfieldHanc60a2082021-11-21 23:46:20 +08001158 File_System == "erofs" ||
Erfan Abdib859e912019-02-05 18:18:46 +02001159 File_System == "squashfs" ||
Dees_Troy5bf43922012-09-07 16:07:55 -04001160 File_System == "auto")
1161 return true;
1162 else
1163 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001164}
1165
Dees_Troy5bf43922012-09-07 16:07:55 -04001166bool TWPartition::Is_Image(string File_System) {
Dees_Troy5fcd8f92012-10-16 12:22:05 -04001167 if (File_System == "emmc" || File_System == "mtd" || File_System == "bml")
Dees_Troy5bf43922012-09-07 16:07:55 -04001168 return true;
1169 else
1170 return false;
1171}
1172
Dees_Troy51127312012-09-08 13:08:49 -04001173bool TWPartition::Make_Dir(string Path, bool Display_Error) {
Ethan Yonker93ac7a02016-11-07 22:05:58 -06001174 if (TWFunc::Get_D_Type_From_Stat(Path) != S_IFDIR)
1175 unlink(Path.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001176 if (!TWFunc::Path_Exists(Path)) {
Dees_Troy51127312012-09-08 13:08:49 -04001177 if (mkdir(Path.c_str(), 0777) == -1) {
1178 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001179 gui_msg(Msg(msg::kError, "create_folder_strerr=Can not create '{1}' folder ({2}).")(Path)(strerror(errno)));
Dees_Troy51127312012-09-08 13:08:49 -04001180 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001181 LOGINFO("Can not create '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001182 return false;
1183 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001184 LOGINFO("Created '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001185 return true;
1186 }
1187 }
1188 return true;
1189}
1190
Dees_Troy5bf43922012-09-07 16:07:55 -04001191void TWPartition::Setup_File_System(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001192 Can_Be_Mounted = true;
1193 Can_Be_Wiped = true;
1194
Dees_Troy5bf43922012-09-07 16:07:55 -04001195 // Make the mount point folder if it doesn't exist
Dees_Troy51127312012-09-08 13:08:49 -04001196 Make_Dir(Mount_Point, Display_Error);
bigbiffce8f83c2015-12-12 18:30:21 -05001197 Backup_Method = BM_FILES;
Dees_Troy5bf43922012-09-07 16:07:55 -04001198}
1199
Ethan Yonker1b190162016-12-05 15:25:19 -06001200void TWPartition::Setup_Image() {
Dees_Troy5bf43922012-09-07 16:07:55 -04001201 Display_Name = Mount_Point.substr(1, Mount_Point.size() - 1);
1202 Backup_Name = Display_Name;
Gary Peck82599a82012-11-21 16:23:12 -08001203 if (Current_File_System == "emmc")
bigbiffce8f83c2015-12-12 18:30:21 -05001204 Backup_Method = BM_DD;
Gary Peck82599a82012-11-21 16:23:12 -08001205 else if (Current_File_System == "mtd" || Current_File_System == "bml")
bigbiffce8f83c2015-12-12 18:30:21 -05001206 Backup_Method = BM_FLASH_UTILS;
Dees_Troy5bf43922012-09-07 16:07:55 -04001207 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001208 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 -04001209}
1210
Dees_Troye58d5262012-09-21 12:27:57 -04001211void TWPartition::Setup_AndSec(void) {
Dees_Troya13d74f2013-03-24 08:54:55 -05001212 Backup_Display_Name = "Android Secure";
Dees_Troye58d5262012-09-21 12:27:57 -04001213 Backup_Name = "and-sec";
Dees_Troya13d74f2013-03-24 08:54:55 -05001214 Can_Be_Backed_Up = true;
Dees_Troye58d5262012-09-21 12:27:57 -04001215 Has_Android_Secure = true;
1216 Symlink_Path = Mount_Point + "/.android_secure";
1217 Symlink_Mount_Point = "/and-sec";
1218 Backup_Path = Symlink_Mount_Point;
1219 Make_Dir("/and-sec", true);
1220 Recreate_AndSec_Folder();
Kjell Braden3126a112016-06-19 16:58:15 +00001221 Mount_Storage_Retry(true);
Dees_Troye58d5262012-09-21 12:27:57 -04001222}
1223
that9e0593e2014-10-08 00:01:24 +02001224void TWPartition::Setup_Data_Media() {
Ethan Yonker6277c792014-09-15 14:54:30 -05001225 LOGINFO("Setting up '%s' as data/media emulated storage.\n", Mount_Point.c_str());
Ethan Yonker66a19492015-12-10 10:19:45 -06001226 if (Storage_Name.empty() || Storage_Name == "Data")
1227 Storage_Name = "Internal Storage";
Ethan Yonker6277c792014-09-15 14:54:30 -05001228 Has_Data_Media = true;
1229 Is_Storage = true;
Ethan Yonker66a19492015-12-10 10:19:45 -06001230 Storage_Path = Mount_Point + "/media";
Ethan Yonker6277c792014-09-15 14:54:30 -05001231 Symlink_Path = Storage_Path;
Ethan Yonker66a19492015-12-10 10:19:45 -06001232 if (Mount_Point == "/data") {
1233 Is_Settings_Storage = true;
1234 if (strcmp(EXPAND(TW_EXTERNAL_STORAGE_PATH), "/sdcard") == 0) {
1235 Make_Dir("/emmc", false);
1236 Symlink_Mount_Point = "/emmc";
1237 } else {
1238 Make_Dir("/sdcard", false);
1239 Symlink_Mount_Point = "/sdcard";
1240 }
Darth99ab7cf52023-02-05 23:41:03 +00001241 #ifdef TW_PREPARE_DATA_MEDIA_EARLY
1242 if (Mount(false) && TWFunc::Path_Exists(Mount_Point + "/media/0")) {
1243 #else
bigbiff4fa02b52021-12-30 17:01:44 -05001244 Mount(false);
1245 if (TWFunc::Path_Exists(Mount_Point + "/media/0")) {
Darth99ab7cf52023-02-05 23:41:03 +00001246 #endif
Ethan Yonker66a19492015-12-10 10:19:45 -06001247 Storage_Path = Mount_Point + "/media/0";
1248 Symlink_Path = Storage_Path;
1249 DataManager::SetValue(TW_INTERNAL_PATH, Mount_Point + "/media/0");
1250 UnMount(true);
1251 }
1252 DataManager::SetValue("tw_has_internal", 1);
1253 DataManager::SetValue("tw_has_data_media", 1);
Ethan Yonker3fdcda42016-11-30 12:29:37 -06001254 backup_exclusions.add_absolute_dir("/data/data/com.google.android.music/files");
bigbiff25d25b92020-06-19 16:07:38 -04001255 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 +01001256 backup_exclusions.add_absolute_dir("/data/vendor/dumpsys");
bigbiff25d25b92020-06-19 16:07:38 -04001257 backup_exclusions.add_absolute_dir("/data/cache");
nijel87e5bc9b2022-01-14 10:01:32 -05001258 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 +08001259 backup_exclusions.add_absolute_dir("/data/extm"); //exclude this dir to prevent "error 255" on MIUI
Ethan Yonker6355b562017-05-01 09:42:17 -05001260 wipe_exclusions.add_absolute_dir(Mount_Point + "/misc/vold"); // adopted storage keys
Ethan Yonker79f88bd2016-12-09 14:52:12 -06001261 ExcludeAll(Mount_Point + "/system/storage.xml");
Darth9cc683e72022-08-09 12:54:40 +01001262
Darth92fa94a72023-03-16 17:14:08 +00001263 backup_exclusions.add_absolute_dir("/data/system/users/0/package-restrictions.xml");
1264
Darth9cc683e72022-08-09 12:54:40 +01001265 // board-customisable exclusions
1266 #ifdef TW_BACKUP_EXCLUSIONS
1267 std::vector<std::string> user_extra_exclusions = TWFunc::Split_String(TW_BACKUP_EXCLUSIONS, ",");
1268 std::string s1;
1269 for (const std::string& extra_x : user_extra_exclusions) {
1270 s1 = android::base::Trim(extra_x);
1271 if (!s1.empty()) {
1272 backup_exclusions.add_absolute_dir(s1);
1273 LOGINFO("Adding user-defined path '%s' to the backup exclusions\n", s1.c_str());
1274 }
1275 }
1276 #endif
Ethan Yonker6277c792014-09-15 14:54:30 -05001277 } else {
nkk717aa6fc62017-03-24 18:28:03 +02001278 int i;
1279 string path;
1280 for (i = 2; i <= 9; i++) {
1281 path = "/sdcard" + TWFunc::to_string(i);
1282 if (!TWFunc::Path_Exists(path)) {
1283 Make_Dir(path, false);
1284 Symlink_Mount_Point = path;
1285 LOGINFO("'%s' data/media emulated storage symlinked to %s.\n", Mount_Point.c_str(), Symlink_Mount_Point.c_str());
1286 break;
1287 }
1288 }
Ethan Yonker66a19492015-12-10 10:19:45 -06001289 if (Mount(true) && TWFunc::Path_Exists(Mount_Point + "/media/0")) {
1290 Storage_Path = Mount_Point + "/media/0";
1291 Symlink_Path = Storage_Path;
1292 UnMount(true);
1293 }
Ethan Yonker6277c792014-09-15 14:54:30 -05001294 }
Ethan Yonker79f88bd2016-12-09 14:52:12 -06001295 ExcludeAll(Mount_Point + "/media");
Ethan Yonker6277c792014-09-15 14:54:30 -05001296}
1297
Dees_Troy5bf43922012-09-07 16:07:55 -04001298void TWPartition::Find_Real_Block_Device(string& Block, bool Display_Error) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001299 char device[PATH_MAX], realDevice[PATH_MAX];
Dees_Troy5bf43922012-09-07 16:07:55 -04001300
Peter Caid68e6412019-11-02 19:22:38 +08001301 Original_Path = Block;
1302
Dees_Troy5bf43922012-09-07 16:07:55 -04001303 strcpy(device, Block.c_str());
1304 memset(realDevice, 0, sizeof(realDevice));
1305 while (readlink(device, realDevice, sizeof(realDevice)) > 0)
1306 {
1307 strcpy(device, realDevice);
1308 memset(realDevice, 0, sizeof(realDevice));
1309 }
1310
bigbiff998f8392021-08-06 19:19:33 -04001311 Block = device;
1312 return;
Dees_Troy5bf43922012-09-07 16:07:55 -04001313}
1314
Kjell Braden3126a112016-06-19 16:58:15 +00001315bool TWPartition::Mount_Storage_Retry(bool Display_Error) {
Dees_Troy8e337f32012-10-13 22:07:49 -04001316 // On some devices, storage doesn't want to mount right away, retry and sleep
Kjell Braden3126a112016-06-19 16:58:15 +00001317 if (!Mount(Display_Error)) {
Dees_Troy8e337f32012-10-13 22:07:49 -04001318 int retry_count = 5;
1319 while (retry_count > 0 && !Mount(false)) {
1320 usleep(500000);
1321 retry_count--;
1322 }
Kjell Braden3126a112016-06-19 16:58:15 +00001323 return Mount(Display_Error);
Dees_Troy8e337f32012-10-13 22:07:49 -04001324 }
Kjell Braden3126a112016-06-19 16:58:15 +00001325 return true;
Dees_Troy8e337f32012-10-13 22:07:49 -04001326}
1327
Dees_Troy38bd7602012-09-14 13:33:53 -04001328bool TWPartition::Find_MTD_Block_Device(string MTD_Name) {
1329 FILE *fp = NULL;
1330 char line[255];
1331
1332 fp = fopen("/proc/mtd", "rt");
1333 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001334 LOGERR("Device does not support /proc/mtd\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001335 return false;
1336 }
1337
1338 while (fgets(line, sizeof(line), fp) != NULL)
1339 {
1340 char device[32], label[32];
1341 unsigned long size = 0;
Dees_Troy38bd7602012-09-14 13:33:53 -04001342 int deviceId;
1343
1344 sscanf(line, "%s %lx %*s %*c%s", device, &size, label);
1345
1346 // Skip header and blank lines
1347 if ((strcmp(device, "dev:") == 0) || (strlen(line) < 8))
1348 continue;
1349
1350 // Strip off the trailing " from the label
1351 label[strlen(label)-1] = '\0';
1352
1353 if (strcmp(label, MTD_Name.c_str()) == 0) {
1354 // We found our device
1355 // Strip off the trailing : from the device
1356 device[strlen(device)-1] = '\0';
1357 if (sscanf(device,"mtd%d", &deviceId) == 1) {
1358 sprintf(device, "/dev/block/mtdblock%d", deviceId);
1359 Primary_Block_Device = device;
Dees_Troy76543db2013-06-19 16:24:30 +00001360 fclose(fp);
1361 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -04001362 }
1363 }
1364 }
1365 fclose(fp);
1366
1367 return false;
1368}
1369
Dees_Troy51127312012-09-08 13:08:49 -04001370bool TWPartition::Get_Size_Via_statfs(bool Display_Error) {
1371 struct statfs st;
1372 string Local_Path = Mount_Point + "/.";
1373
1374 if (!Mount(Display_Error))
1375 return false;
1376
1377 if (statfs(Local_Path.c_str(), &st) != 0) {
1378 if (!Removable) {
1379 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001380 LOGERR("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001381 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001382 LOGINFO("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -04001383 }
1384 return false;
1385 }
1386 Size = (st.f_blocks * st.f_bsize);
1387 Used = ((st.f_blocks - st.f_bfree) * st.f_bsize);
1388 Free = (st.f_bfree * st.f_bsize);
1389 Backup_Size = Used;
1390 return true;
1391}
1392
1393bool TWPartition::Get_Size_Via_df(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001394 FILE* fp;
1395 char command[255], line[512];
1396 int include_block = 1;
1397 unsigned int min_len;
1398
1399 if (!Mount(Display_Error))
1400 return false;
1401
Dees_Troy38bd7602012-09-14 13:33:53 -04001402 min_len = Actual_Block_Device.size() + 2;
Dees_Troy51127312012-09-08 13:08:49 -04001403 sprintf(command, "df %s > /tmp/dfoutput.txt", Mount_Point.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001404 TWFunc::Exec_Cmd(command);
Dees_Troy51127312012-09-08 13:08:49 -04001405 fp = fopen("/tmp/dfoutput.txt", "rt");
1406 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001407 LOGINFO("Unable to open /tmp/dfoutput.txt.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -04001408 return false;
Dees_Troy51127312012-09-08 13:08:49 -04001409 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001410
1411 while (fgets(line, sizeof(line), fp) != NULL)
1412 {
1413 unsigned long blocks, used, available;
1414 char device[64];
1415 char tmpString[64];
1416
1417 if (strncmp(line, "Filesystem", 10) == 0)
1418 continue;
1419 if (strlen(line) < min_len) {
1420 include_block = 0;
1421 continue;
1422 }
1423 if (include_block) {
1424 sscanf(line, "%s %lu %lu %lu", device, &blocks, &used, &available);
1425 } else {
1426 // The device block string is so long that the df information is on the next line
1427 int space_count = 0;
Dees_Troye58d5262012-09-21 12:27:57 -04001428 sprintf(tmpString, "/dev/block/%s", Actual_Block_Device.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001429 while (tmpString[space_count] == 32)
1430 space_count++;
1431 sscanf(line + space_count, "%lu %lu %lu", &blocks, &used, &available);
1432 }
1433
1434 // Adjust block size to byte size
1435 Size = blocks * 1024ULL;
1436 Used = used * 1024ULL;
1437 Free = available * 1024ULL;
1438 Backup_Size = Used;
1439 }
1440 fclose(fp);
1441 return true;
1442}
1443
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001444unsigned long long TWPartition::IOCTL_Get_Block_Size() {
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001445 Find_Actual_Block_Device();
Ethan Yonker483e9f42016-01-11 22:21:18 -06001446
1447 return TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001448}
1449
Dees_Troy5bf43922012-09-07 16:07:55 -04001450bool TWPartition::Find_Partition_Size(void) {
1451 FILE* fp;
1452 char line[512];
1453 string tmpdevice;
1454
igoriok87e3d932013-01-31 21:03:53 +02001455 fp = fopen("/proc/dumchar_info", "rt");
1456 if (fp != NULL) {
1457 while (fgets(line, sizeof(line), fp) != NULL)
1458 {
1459 char label[32], device[32];
1460 unsigned long size = 0;
1461
thatd43bf2d2014-09-21 23:13:02 +02001462 sscanf(line, "%s %lx %*x %*u %s", label, &size, device);
igoriok87e3d932013-01-31 21:03:53 +02001463
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05001464 // Skip header, annotation and blank lines
igoriok87e3d932013-01-31 21:03:53 +02001465 if ((strncmp(device, "/dev/", 5) != 0) || (strlen(line) < 8))
1466 continue;
1467
1468 tmpdevice = "/dev/";
1469 tmpdevice += label;
1470 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
1471 Size = size;
1472 fclose(fp);
1473 return true;
1474 }
1475 }
1476 }
1477
Ethan Yonkerd18a8212015-12-14 10:17:00 -06001478 unsigned long long ioctl_size = IOCTL_Get_Block_Size();
1479 if (ioctl_size) {
1480 Size = ioctl_size;
1481 return true;
1482 }
1483
Dees_Troy5bf43922012-09-07 16:07:55 -04001484 // In this case, we'll first get the partitions we care about (with labels)
1485 fp = fopen("/proc/partitions", "rt");
1486 if (fp == NULL)
1487 return false;
1488
1489 while (fgets(line, sizeof(line), fp) != NULL)
1490 {
1491 unsigned long major, minor, blocks;
1492 char device[512];
Dees_Troy5bf43922012-09-07 16:07:55 -04001493
Dees_Troy63c8df72012-09-10 14:02:05 -04001494 if (strlen(line) < 7 || line[0] == 'm') continue;
Dees_Troy5bf43922012-09-07 16:07:55 -04001495 sscanf(line + 1, "%lu %lu %lu %s", &major, &minor, &blocks, device);
1496
1497 tmpdevice = "/dev/block/";
1498 tmpdevice += device;
Dees_Troy38bd7602012-09-14 13:33:53 -04001499 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001500 // Adjust block size to byte size
1501 Size = blocks * 1024ULL;
1502 fclose(fp);
1503 return true;
1504 }
1505 }
1506 fclose(fp);
1507 return false;
1508}
1509
Dees_Troy5bf43922012-09-07 16:07:55 -04001510bool TWPartition::Is_Mounted(void) {
1511 if (!Can_Be_Mounted)
1512 return false;
1513
1514 struct stat st1, st2;
1515 string test_path;
1516
1517 // Check to see if the mount point directory exists
1518 test_path = Mount_Point + "/.";
1519 if (stat(test_path.c_str(), &st1) != 0) return false;
1520
1521 // Check to see if the directory above the mount point exists
1522 test_path = Mount_Point + "/../.";
1523 if (stat(test_path.c_str(), &st2) != 0) return false;
1524
1525 // Compare the device IDs -- if they match then we're (probably) using tmpfs instead of an actual device
1526 int ret = (st1.st_dev != st2.st_dev) ? true : false;
Dees_Troy5bf43922012-09-07 16:07:55 -04001527 return ret;
1528}
1529
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05001530bool TWPartition::Is_File_System_Writable(void) {
1531 if (!Is_File_System(Current_File_System) || !Is_Mounted())
1532 return false;
1533
1534 string test_path = Mount_Point + "/.";
1535 return (access(test_path.c_str(), W_OK) == 0);
1536}
1537
Dees_Troy5bf43922012-09-07 16:07:55 -04001538bool TWPartition::Mount(bool Display_Error) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001539 int exfat_mounted = 0;
Martin Dünkelmann6d843782018-12-27 23:40:28 +01001540 unsigned int flags = Mount_Flags;
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001541
Dees_Troy5bf43922012-09-07 16:07:55 -04001542 if (Is_Mounted()) {
1543 return true;
1544 } else if (!Can_Be_Mounted) {
1545 return false;
1546 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001547
1548 Find_Actual_Block_Device();
1549
1550 // Check the current file system before mounting
1551 Check_FS_Type();
bigbiffad58e1b2020-07-06 20:24:34 -04001552 if (Current_File_System == "exfat" && TWFunc::Path_Exists("/system/bin/exfat-fuse")) {
1553 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 +00001554 LOGINFO("cmd: %s\n", cmd.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001555 string result;
bigbiffad58e1b2020-07-06 20:24:34 -04001556 if (TWFunc::Exec_Cmd(cmd, result, false) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001557 LOGINFO("exfat-fuse failed to mount with result '%s', trying vfat\n", result.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001558 Current_File_System = "vfat";
1559 } else {
1560#ifdef TW_NO_EXFAT_FUSE
1561 UnMount(false);
1562 // We'll let the kernel handle it but using exfat-fuse to detect if the file system is actually exfat
1563 // Some kernels let us mount vfat as exfat which doesn't work out too well
1564#else
1565 exfat_mounted = 1;
1566#endif
1567 }
1568 }
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001569
Captain Throwback47bf7202020-10-06 17:39:39 -04001570 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 -05001571 string cmd;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001572 string Ntfsmount_Binary = "";
1573
bigbiffad58e1b2020-07-06 20:24:34 -04001574 if (TWFunc::Path_Exists("/system/bin/ntfs-3g"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001575 Ntfsmount_Binary = "ntfs-3g";
bigbiffad58e1b2020-07-06 20:24:34 -04001576 else if (TWFunc::Path_Exists("/system/bin/mount.ntfs"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001577 Ntfsmount_Binary = "mount.ntfs";
1578
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001579 if (Mount_Read_Only)
bigbiffad58e1b2020-07-06 20:24:34 -04001580 cmd = "/system/bin/" + Ntfsmount_Binary + " -o ro " + Actual_Block_Device + " " + Mount_Point;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001581 else
bigbiffad58e1b2020-07-06 20:24:34 -04001582 cmd = "/system/bin/" + Ntfsmount_Binary + " " + Actual_Block_Device + " " + Mount_Point;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001583 LOGINFO("cmd: '%s'\n", cmd.c_str());
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001584
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001585 if (TWFunc::Exec_Cmd(cmd) == 0) {
1586 return true;
1587 } else {
1588 LOGINFO("ntfs-3g failed to mount, trying regular mount method.\n");
1589 }
Captain Throwback47bf7202020-10-06 17:39:39 -04001590 } else {
1591 if (Current_File_System == "ntfs" && TWFunc::Path_Exists("/sys/module/tntfs"))
1592 Current_File_System = "tntfs";
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001593 }
1594
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001595 if (Mount_Read_Only)
1596 flags |= MS_RDONLY;
1597
Dees_Troy22042032012-12-18 21:23:08 +00001598 if (Fstab_File_System == "yaffs2") {
1599 // mount an MTD partition as a YAFFS2 filesystem.
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001600 flags = MS_NOATIME | MS_NODEV | MS_NODIRATIME;
1601 if (Mount_Read_Only)
1602 flags |= MS_RDONLY;
Dees_Troy76543db2013-06-19 16:24:30 +00001603 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags, NULL) < 0) {
1604 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags | MS_RDONLY, NULL) < 0) {
1605 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001606 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy76543db2013-06-19 16:24:30 +00001607 else
1608 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
1609 return false;
1610 } else {
1611 LOGINFO("Mounted '%s' (MTD) as RO\n", Mount_Point.c_str());
1612 return true;
1613 }
1614 } else {
1615 struct stat st;
1616 string test_path = Mount_Point;
1617 if (stat(test_path.c_str(), &st) < 0) {
1618 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001619 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy76543db2013-06-19 16:24:30 +00001620 else
1621 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
1622 return false;
1623 }
1624 mode_t new_mode = st.st_mode | S_IXUSR | S_IXGRP | S_IXOTH;
1625 if (new_mode != st.st_mode) {
1626 LOGINFO("Fixing execute permissions for %s\n", Mount_Point.c_str());
1627 if (chmod(Mount_Point.c_str(), new_mode) < 0) {
1628 if (Display_Error)
1629 LOGERR("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
1630 else
1631 LOGINFO("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
1632 return false;
1633 }
1634 }
Dees_Troy22042032012-12-18 21:23:08 +00001635 return true;
Dees_Troy76543db2013-06-19 16:24:30 +00001636 }
thatc7572eb2015-03-31 18:55:30 +02001637 }
1638
1639 string mount_fs = Current_File_System;
1640 if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sys/module/texfat"))
1641 mount_fs = "texfat";
1642
1643 if (!exfat_mounted &&
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001644 mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), mount_fs.c_str(), flags, Mount_Options.c_str()) != 0 &&
1645 mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), mount_fs.c_str(), flags, NULL) != 0) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001646#ifdef TW_NO_EXFAT_FUSE
1647 if (Current_File_System == "exfat") {
Dees_Troy2673cec2013-04-02 20:22:16 +00001648 LOGINFO("Mounting exfat failed, trying vfat...\n");
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001649 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), "vfat", 0, NULL) != 0) {
Dees_Troy85f44ed2013-01-09 18:42:36 +00001650 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001651 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy85f44ed2013-01-09 18:42:36 +00001652 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001653 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001654 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 +00001655 return false;
Dees_Troy85f44ed2013-01-09 18:42:36 +00001656 }
Dees_Troyb05ddee2013-01-28 20:24:50 +00001657 } else {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001658#endif
bigbiff bigbiff26774a02014-03-29 18:22:00 -04001659 if (!Removable && Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001660 gui_msg(Msg(msg::kError, "fail_mount=Failed to mount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001661 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001662 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
1663 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 +00001664 return false;
1665#ifdef TW_NO_EXFAT_FUSE
Dees_Troy85f44ed2013-01-09 18:42:36 +00001666 }
1667#endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001668 }
Ethan Yonker253368a2014-11-25 15:00:52 -06001669
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001670 if (Removable)
1671 Update_Size(Display_Error);
1672
bigbiff4fa02b52021-12-30 17:01:44 -05001673 if (!Symlink_Mount_Point.empty()) {
bigbiffbe4f46c2021-04-24 11:48:54 -04001674 if (!Bind_Mount(false))
1675 return false;
1676 }
1677 return true;
1678}
1679
1680bool TWPartition::Bind_Mount(bool Display_Error) {
1681 if (TWFunc::Path_Exists(Symlink_Path)) {
1682 if (mount(Symlink_Path.c_str(), Symlink_Mount_Point.c_str(), "", MS_BIND, NULL) < 0) {
1683 return false;
1684 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001685 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001686 return true;
1687}
1688
1689bool TWPartition::UnMount(bool Display_Error) {
1690 if (Is_Mounted()) {
1691 int never_unmount_system;
1692
1693 DataManager::GetValue(TW_DONT_UNMOUNT_SYSTEM, never_unmount_system);
Captain Throwback9d6feb52018-07-27 10:05:24 -04001694 if (never_unmount_system == 1 && Mount_Point == PartitionManager.Get_Android_Root_Path())
Dees_Troy5bf43922012-09-07 16:07:55 -04001695 return true; // Never unmount system if you're not supposed to unmount it
1696
Matt Mowera8e6d832017-02-14 20:20:59 -06001697 if (Is_Storage && MTP_Storage_ID > 0)
Ethan Yonker726a0202014-12-16 20:01:38 -06001698 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001699
Dees_Troy38bd7602012-09-14 13:33:53 -04001700 if (!Symlink_Mount_Point.empty())
1701 umount(Symlink_Mount_Point.c_str());
1702
Dees_Troyb05ddee2013-01-28 20:24:50 +00001703 umount(Mount_Point.c_str());
1704 if (Is_Mounted()) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001705 if (Display_Error)
Ethan Yonker74db1572015-10-28 12:44:49 -05001706 gui_msg(Msg(msg::kError, "fail_unmount=Failed to unmount '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy5bf43922012-09-07 16:07:55 -04001707 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001708 LOGINFO("Unable to unmount '%s'\n", Mount_Point.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001709 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001710 } else {
Dees_Troy5bf43922012-09-07 16:07:55 -04001711 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001712 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001713 } else {
1714 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001715 }
1716}
1717
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05001718bool TWPartition::ReMount(bool Display_Error) {
1719 if (UnMount(Display_Error))
1720 return Mount(Display_Error);
1721 return false;
1722}
1723
1724bool TWPartition::ReMount_RW(bool Display_Error) {
1725 // No need to remount if already mounted rw
1726 if (Is_File_System_Writable())
1727 return true;
1728
1729 bool ro = Mount_Read_Only;
1730 int flags = Mount_Flags;
1731
1732 Mount_Read_Only = false;
1733 Mount_Flags &= ~MS_RDONLY;
1734
1735 bool ret = ReMount(Display_Error);
1736
1737 Mount_Read_Only = ro;
1738 Mount_Flags = flags;
1739
1740 return ret;
1741}
1742
Gary Peck43acadf2012-11-21 21:19:01 -08001743bool TWPartition::Wipe(string New_File_System) {
Ethan Yonker726a0202014-12-16 20:01:38 -06001744 bool wiped = false, update_crypt = false, recreate_media = true;
Dees_Troy16c2b312013-01-15 16:51:18 +00001745 int check;
Dees_Troy16c2b312013-01-15 16:51:18 +00001746
Dees_Troy38bd7602012-09-14 13:33:53 -04001747 if (!Can_Be_Wiped) {
Matt Mower3c366972015-12-25 19:28:31 -06001748 gui_msg(Msg(msg::kError, "cannot_wipe=Partition {1} cannot be wiped.")(Display_Name));
Dees_Troy38bd7602012-09-14 13:33:53 -04001749 return false;
1750 }
1751
Dees_Troyc51f1f92012-09-20 15:32:13 -04001752 if (Mount_Point == "/cache")
Dees_Troy2673cec2013-04-02 20:22:16 +00001753 Log_Offset = 0;
Dees_Troyc51f1f92012-09-20 15:32:13 -04001754
bigbiff4a60bee2021-01-23 14:08:03 -05001755 if (Mount_Point == PartitionManager.Get_Android_Root_Path()) {
1756 if (tw_get_default_metadata(PartitionManager.Get_Android_Root_Path().c_str()) != 0) {
1757 gui_msg(Msg(msg::kWarning, "restore_system_context=Unable to get default context for {1} -- Android may not boot.")(PartitionManager.Get_Android_Root_Path()));
1758 }
1759 }
1760
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001761 if (Has_Data_Media && Current_File_System == New_File_System) {
Dees_Troy16c2b312013-01-15 16:51:18 +00001762 wiped = Wipe_Data_Without_Wiping_Media();
bigbiff25d25b92020-06-19 16:07:38 -04001763 if (Mount_Point == "/data" && TWFunc::get_log_dir() == DATA_LOGS_DIR) {
1764 bool created = PartitionManager.Recreate_Logs_Dir();
1765 if (!created)
1766 LOGERR("Unable to create log directory for TWRP\n");
bigbiff7ba75002020-04-11 20:47:09 -04001767 }
Ethan Yonker5eac2222014-06-11 12:22:55 -05001768 recreate_media = false;
Dees_Troy16c2b312013-01-15 16:51:18 +00001769 } else {
Dees_Troy16c2b312013-01-15 16:51:18 +00001770 DataManager::GetValue(TW_RM_RF_VAR, check);
Hashcodedabfd492013-08-29 22:45:30 -07001771 if (check || Use_Rm_Rf)
Dees_Troy16c2b312013-01-15 16:51:18 +00001772 wiped = Wipe_RMRF();
1773 else if (New_File_System == "ext4")
1774 wiped = Wipe_EXT4();
1775 else if (New_File_System == "ext2" || New_File_System == "ext3")
dianlujitao4879b372018-12-03 18:45:47 +08001776 wiped = Wipe_EXTFS(New_File_System);
Dees_Troy16c2b312013-01-15 16:51:18 +00001777 else if (New_File_System == "exfat")
1778 wiped = Wipe_EXFAT();
Captain Throwback47bf7202020-10-06 17:39:39 -04001779 else if (New_File_System == "ntfs" || Current_File_System == "tntfs")
1780 wiped = Wipe_NTFS();
Dees_Troy16c2b312013-01-15 16:51:18 +00001781 else if (New_File_System == "yaffs2")
1782 wiped = Wipe_MTD();
Dees_Troye5017042013-08-29 16:38:55 +00001783 else if (New_File_System == "f2fs")
1784 wiped = Wipe_F2FS();
Captain Throwback47bf7202020-10-06 17:39:39 -04001785 else if (New_File_System == "vfat")
1786 wiped = Wipe_FAT();
Dees_Troy16c2b312013-01-15 16:51:18 +00001787 else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001788 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 +00001789 return false;
1790 }
1791 update_crypt = wiped;
bigbiff7ba75002020-04-11 20:47:09 -04001792 update_crypt = false;
Gary Pecke8bc5d72012-12-21 06:45:25 -08001793 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001794
Gary Pecke8bc5d72012-12-21 06:45:25 -08001795 if (wiped) {
Mohd Faraze1d72622020-06-15 00:28:32 +05301796 if (Mount_Point == "/cache" && TWFunc::get_log_dir() != DATA_LOGS_DIR)
1797 DataManager::Output_Version();
1798
bigbiff4a60bee2021-01-23 14:08:03 -05001799 if (Mount_Point == PartitionManager.Get_Android_Root_Path()) {
1800 tw_set_default_metadata(PartitionManager.Get_Android_Root_Path().c_str());
1801 }
Dees_Troy16c2b312013-01-15 16:51:18 +00001802 if (update_crypt) {
1803 Setup_File_System(false);
1804 if (Is_Encrypted && !Is_Decrypted) {
1805 // just wiped an encrypted partition back to its unencrypted state
1806 Is_Encrypted = false;
1807 Is_Decrypted = false;
1808 Decrypted_Block_Device = "";
1809 if (Mount_Point == "/data") {
1810 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
1811 DataManager::SetValue(TW_IS_DECRYPTED, 0);
1812 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08001813 }
1814 }
Ethan Yonker5eac2222014-06-11 12:22:55 -05001815
Captain Throwback63573b52021-10-02 20:47:33 -04001816 if (Is_Storage && Mount(false) && !Is_FBE)
bigbiffbe4f46c2021-04-24 11:48:54 -04001817 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Gary Pecke8bc5d72012-12-21 06:45:25 -08001818 }
Matt Mower209c9632016-01-20 12:08:35 -06001819
Gary Pecke8bc5d72012-12-21 06:45:25 -08001820 return wiped;
Dees_Troy51a0e822012-09-05 15:24:24 -04001821}
1822
Gary Peck43acadf2012-11-21 21:19:01 -08001823bool TWPartition::Wipe() {
Gary Peck82599a82012-11-21 16:23:12 -08001824 if (Is_File_System(Current_File_System))
1825 return Wipe(Current_File_System);
1826 else
1827 return Wipe(Fstab_File_System);
Gary Peck43acadf2012-11-21 21:19:01 -08001828}
1829
Dees_Troye58d5262012-09-21 12:27:57 -04001830bool TWPartition::Wipe_AndSec(void) {
1831 if (!Has_Android_Secure)
1832 return false;
1833
Dees_Troye58d5262012-09-21 12:27:57 -04001834 if (!Mount(true))
1835 return false;
1836
Ethan Yonker74db1572015-10-28 12:44:49 -05001837 gui_msg(Msg("wiping=Wiping {1}")(Backup_Display_Name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001838 TWFunc::removeDir(Mount_Point + "/.android_secure/", true);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001839 return true;
Dees_Troye58d5262012-09-21 12:27:57 -04001840}
1841
bigbiffaed1bdf2021-08-03 18:21:39 -04001842bool TWPartition::Wipe_Data_Cache(void) {
1843 if (!Mount(true))
1844 return false;
1845 gui_msg(Msg("wiping=Wiping {1}")(Mount_Point + "/cache/"));
1846 TWFunc::removeDir(Mount_Point + "/cache/", true);
1847 return true;
1848}
1849
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001850bool TWPartition::Can_Repair() {
Ethan Yonkera2719152015-05-28 09:44:41 -05001851 if (Mount_Read_Only)
1852 return false;
bigbiffad58e1b2020-07-06 20:24:34 -04001853 if (Current_File_System == "vfat" && TWFunc::Path_Exists("/system/bin/fsck.fat"))
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001854 return true;
bigbiffad58e1b2020-07-06 20:24:34 -04001855 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 -05001856 return true;
bigbiffad58e1b2020-07-06 20:24:34 -04001857 else if (Current_File_System == "exfat" && TWFunc::Path_Exists("/system/bin/fsck.exfat"))
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001858 return true;
bigbiffad58e1b2020-07-06 20:24:34 -04001859 else if (Current_File_System == "f2fs" && TWFunc::Path_Exists("/system/bin/fsck.f2fs"))
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001860 return true;
Captain Throwback47bf7202020-10-06 17:39:39 -04001861 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 -05001862 return true;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001863 return false;
1864}
1865
1866bool TWPartition::Repair() {
1867 string command;
1868
1869 if (Current_File_System == "vfat") {
bigbiffad58e1b2020-07-06 20:24:34 -04001870 if (!TWFunc::Path_Exists("/system/bin/fsck.fat")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001871 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.fat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001872 return false;
1873 }
1874 if (!UnMount(true))
1875 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001876 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.fat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001877 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04001878 command = "/system/bin/fsck.fat -y " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001879 LOGINFO("Repair command: %s\n", command.c_str());
1880 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001881 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001882 return true;
1883 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001884 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001885 return false;
1886 }
1887 }
1888 if (Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") {
bigbiffad58e1b2020-07-06 20:24:34 -04001889 if (!TWFunc::Path_Exists("/system/bin/e2fsck")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001890 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("e2fsck"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001891 return false;
1892 }
1893 if (!UnMount(true))
1894 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001895 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("e2fsck"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001896 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04001897 command = "/system/bin/e2fsck -fp " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001898 LOGINFO("Repair command: %s\n", command.c_str());
1899 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001900 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001901 return true;
1902 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001903 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001904 return false;
1905 }
1906 }
1907 if (Current_File_System == "exfat") {
bigbiffad58e1b2020-07-06 20:24:34 -04001908 if (!TWFunc::Path_Exists("/system/bin/fsck.exfat")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001909 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.exfat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001910 return false;
1911 }
1912 if (!UnMount(true))
1913 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001914 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.exfat"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001915 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04001916 command = "/system/bin/fsck.exfat " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001917 LOGINFO("Repair command: %s\n", command.c_str());
1918 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001919 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001920 return true;
1921 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001922 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001923 return false;
1924 }
1925 }
1926 if (Current_File_System == "f2fs") {
bigbiffad58e1b2020-07-06 20:24:34 -04001927 if (!TWFunc::Path_Exists("/system/bin/fsck.f2fs")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001928 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("fsck.f2fs"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001929 return false;
1930 }
1931 if (!UnMount(true))
1932 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001933 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)("fsck.f2fs"));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001934 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04001935 command = "/system/bin/fsck.f2fs " + Actual_Block_Device;
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001936 LOGINFO("Repair command: %s\n", command.c_str());
1937 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001938 gui_msg("done=Done.");
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001939 return true;
1940 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001941 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001942 return false;
1943 }
1944 }
Captain Throwback47bf7202020-10-06 17:39:39 -04001945 if (Current_File_System == "ntfs" || Current_File_System == "tntfs") {
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001946 string Ntfsfix_Binary;
bigbiffad58e1b2020-07-06 20:24:34 -04001947 if (TWFunc::Path_Exists("/system/bin/ntfsfix"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001948 Ntfsfix_Binary = "ntfsfix";
bigbiffad58e1b2020-07-06 20:24:34 -04001949 else if (TWFunc::Path_Exists("/system/bin/fsck.ntfs"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05001950 Ntfsfix_Binary = "fsck.ntfs";
1951 else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001952 gui_msg(Msg(msg::kError, "repair_not_exist={1} does not exist! Cannot repair!")("ntfsfix"));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001953 return false;
1954 }
1955 if (!UnMount(true))
1956 return false;
Greg Wallace2d653402015-12-29 14:19:21 -05001957 gui_msg(Msg("repairing_using=Repairing {1} using {2}...")(Display_Name)(Ntfsfix_Binary));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001958 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04001959 command = "/system/bin/" + Ntfsfix_Binary + " " + Actual_Block_Device;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001960 LOGINFO("Repair command: %s\n", command.c_str());
1961 if (TWFunc::Exec_Cmd(command) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001962 gui_msg("done=Done.");
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001963 return true;
1964 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001965 gui_msg(Msg(msg::kError, "unable_repair=Unable to repair {1}.")(Display_Name));
Ethan Yonkerb81d9052015-07-09 13:20:53 -05001966 return false;
1967 }
1968 }
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001969 return false;
1970}
1971
Ethan Yonkera2719152015-05-28 09:44:41 -05001972bool TWPartition::Can_Resize() {
1973 if (Mount_Read_Only)
1974 return false;
bigbiffad58e1b2020-07-06 20:24:34 -04001975 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 -05001976 return true;
1977 return false;
1978}
1979
1980bool TWPartition::Resize() {
1981 string command;
1982
1983 if (Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") {
1984 if (!Can_Repair()) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001985 LOGINFO("Cannot resize %s because %s cannot be repaired before resizing.\n", Display_Name.c_str(), Display_Name.c_str());
1986 gui_msg(Msg(msg::kError, "cannot_resize=Cannot resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001987 return false;
1988 }
bigbiffad58e1b2020-07-06 20:24:34 -04001989 if (!TWFunc::Path_Exists("/system/bin/resize2fs")) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001990 LOGINFO("resize2fs does not exist! Cannot resize!\n");
1991 gui_msg(Msg(msg::kError, "cannot_resize=Cannot resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001992 return false;
1993 }
1994 // Repair will unmount so no need to do it twice
Ethan Yonker74db1572015-10-28 12:44:49 -05001995 gui_msg(Msg("repair_resize=Repairing {1} before resizing.")( Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05001996 if (!Repair())
1997 return false;
Ethan Yonker74db1572015-10-28 12:44:49 -05001998 gui_msg(Msg("resizing=Resizing {1} using {2}...")(Display_Name)("resize2fs"));
Ethan Yonkera2719152015-05-28 09:44:41 -05001999 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04002000 command = "/system/bin/resize2fs " + Actual_Block_Device;
Ethan Yonkera2719152015-05-28 09:44:41 -05002001 if (Length != 0) {
Ethan Yonkerd18a8212015-12-14 10:17:00 -06002002 unsigned long long Actual_Size = IOCTL_Get_Block_Size();
2003 if (Actual_Size == 0)
2004 return false;
Ethan Yonkera2719152015-05-28 09:44:41 -05002005
Ethan Yonkera2719152015-05-28 09:44:41 -05002006 unsigned long long Block_Count;
2007 if (Length < 0) {
2008 // Reduce overall size by this length
2009 Block_Count = (Actual_Size / 1024LLU) - ((unsigned long long)(Length * -1) / 1024LLU);
2010 } else {
2011 // This is the size, not a size reduction
2012 Block_Count = ((unsigned long long)(Length) / 1024LLU);
2013 }
2014 char temp[256];
2015 sprintf(temp, "%llu", Block_Count);
2016 command += " ";
2017 command += temp;
2018 command += "K";
2019 }
2020 LOGINFO("Resize command: %s\n", command.c_str());
2021 if (TWFunc::Exec_Cmd(command) == 0) {
2022 Update_Size(true);
Ethan Yonker74db1572015-10-28 12:44:49 -05002023 gui_msg("done=Done.");
Ethan Yonkera2719152015-05-28 09:44:41 -05002024 return true;
2025 } else {
2026 Update_Size(true);
Ethan Yonker74db1572015-10-28 12:44:49 -05002027 gui_msg(Msg(msg::kError, "unable_resize=Unable to resize {1}.")(Display_Name));
Ethan Yonkera2719152015-05-28 09:44:41 -05002028 return false;
2029 }
2030 }
2031 return false;
2032}
2033
bigbiffce8f83c2015-12-12 18:30:21 -05002034bool TWPartition::Backup(PartitionSettings *part_settings, pid_t *tar_fork_pid) {
2035 if (Backup_Method == BM_FILES)
2036 return Backup_Tar(part_settings, tar_fork_pid);
2037 else if (Backup_Method == BM_DD)
2038 return Backup_Image(part_settings);
2039 else if (Backup_Method == BM_FLASH_UTILS)
2040 return Backup_Dump_Image(part_settings);
Dees_Troy2673cec2013-04-02 20:22:16 +00002041 LOGERR("Unknown backup method for '%s'\n", Mount_Point.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04002042 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002043}
2044
bigbiffce8f83c2015-12-12 18:30:21 -05002045bool TWPartition::Restore(PartitionSettings *part_settings) {
Matt Mower3c366972015-12-25 19:28:31 -06002046 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002047 LOGINFO("Restore filename is: %s/%s\n", part_settings->Backup_Folder.c_str(), Backup_FileName.c_str());
Gary Peck43acadf2012-11-21 21:19:01 -08002048
bigbiffce8f83c2015-12-12 18:30:21 -05002049 string Restore_File_System = Get_Restore_File_System(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002050
2051 if (Is_File_System(Restore_File_System))
bigbiffce8f83c2015-12-12 18:30:21 -05002052 return Restore_Tar(part_settings);
2053 else if (Is_Image(Restore_File_System))
2054 return Restore_Image(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002055
2056 LOGERR("Unknown restore method for '%s'\n", Mount_Point.c_str());
2057 return false;
2058}
2059
bigbiffce8f83c2015-12-12 18:30:21 -05002060string TWPartition::Get_Restore_File_System(PartitionSettings *part_settings) {
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002061 size_t first_period, second_period;
2062 string Restore_File_System;
2063
Gary Peck43acadf2012-11-21 21:19:01 -08002064 // Parse backup filename to extract the file system before wiping
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002065 first_period = Backup_FileName.find(".");
Gary Peck43acadf2012-11-21 21:19:01 -08002066 if (first_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002067 LOGERR("Unable to find file system (first period).\n");
thatd43bf2d2014-09-21 23:13:02 +02002068 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08002069 }
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002070 Restore_File_System = Backup_FileName.substr(first_period + 1, Backup_FileName.size() - first_period - 1);
Gary Peck43acadf2012-11-21 21:19:01 -08002071 second_period = Restore_File_System.find(".");
2072 if (second_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002073 LOGERR("Unable to find file system (second period).\n");
thatd43bf2d2014-09-21 23:13:02 +02002074 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08002075 }
2076 Restore_File_System.resize(second_period);
Matt Mowera0cd91d2016-12-30 18:21:42 -06002077 LOGINFO("Restore file system is: '%s'.\n", Restore_File_System.c_str());
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002078 return Restore_File_System;
Dees_Troy51a0e822012-09-05 15:24:24 -04002079}
2080
2081string TWPartition::Backup_Method_By_Name() {
bigbiffce8f83c2015-12-12 18:30:21 -05002082 if (Backup_Method == BM_NONE)
Dees_Troy38bd7602012-09-14 13:33:53 -04002083 return "none";
bigbiffce8f83c2015-12-12 18:30:21 -05002084 else if (Backup_Method == BM_FILES)
Dees_Troy38bd7602012-09-14 13:33:53 -04002085 return "files";
bigbiffce8f83c2015-12-12 18:30:21 -05002086 else if (Backup_Method == BM_DD)
Dees_Troy38bd7602012-09-14 13:33:53 -04002087 return "dd";
bigbiffce8f83c2015-12-12 18:30:21 -05002088 else if (Backup_Method == BM_FLASH_UTILS)
Dees_Troy38bd7602012-09-14 13:33:53 -04002089 return "flash_utils";
2090 else
2091 return "undefined";
2092 return "ERROR!";
Dees_Troy51a0e822012-09-05 15:24:24 -04002093}
2094
2095bool TWPartition::Decrypt(string Password) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002096 LOGINFO("STUB TWPartition::Decrypt, password: '%s'\n", Password.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04002097 // Is this needed?
Dees_Troy51a0e822012-09-05 15:24:24 -04002098 return 1;
2099}
2100
2101bool TWPartition::Wipe_Encryption() {
Dees_Troy38bd7602012-09-14 13:33:53 -04002102 bool Save_Data_Media = Has_Data_Media;
Ethan Yonker93382822018-11-01 15:25:31 -05002103 bool ret = false;
2104 BasePartition* base_partition = make_partition();
2105
2106 if (!base_partition->PreWipeEncryption())
2107 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002108
dianlujitao4879b372018-12-03 18:45:47 +08002109 Find_Actual_Block_Device();
2110 if (!Is_Present) {
2111 LOGINFO("Block device not present, cannot format %s.\n", Display_Name.c_str());
2112 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2113 return false;
2114 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002115
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002116#ifdef TW_INCLUDE_CRYPTO
bigbiff7ba75002020-04-11 20:47:09 -04002117 if (!UnMount(true))
2118 return false;
Ethan Yonker1b190162016-12-05 15:25:19 -06002119 if (Is_Decrypted && !Decrypted_Block_Device.empty()) {
Matt Mower2b18a532015-02-20 16:58:05 -06002120 if (delete_crypto_blk_dev((char*)("userdata")) != 0) {
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002121 LOGERR("Error deleting crypto block device, continuing anyway.\n");
2122 }
2123 }
2124#endif
dianlujitao4879b372018-12-03 18:45:47 +08002125 Has_Data_Media = false;
Ethan Yonker93382822018-11-01 15:25:31 -05002126 Decrypted_Block_Device = "";
Dees_Troy74fb2e92013-04-15 14:35:47 +00002127 Is_Decrypted = false;
2128 Is_Encrypted = false;
Gary Pecke8bc5d72012-12-21 06:45:25 -08002129 if (Wipe(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04002130 Has_Data_Media = Save_Data_Media;
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06002131 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
Ethan Yonker83e82572014-04-04 10:59:28 -05002132#ifndef TW_OEM_BUILD
bigbiff25d25b92020-06-19 16:07:38 -04002133 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 -05002134#endif
bigbiff2d548672021-07-09 20:08:44 -04002135 if (Is_FBE) {
2136 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 -04002137 } else {
2138 if (Has_Data_Media && !Symlink_Mount_Point.empty()) {
2139 if (Mount(false))
2140 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
2141 }
bigbiff2d548672021-07-09 20:08:44 -04002142 }
2143
Ethan Yonker93382822018-11-01 15:25:31 -05002144 ret = true;
2145 if (!Key_Directory.empty())
2146 ret = PartitionManager.Wipe_By_Path(Key_Directory);
2147 if (ret)
2148 ret = base_partition->PostWipeEncryption();
2149 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002150 } else {
2151 Has_Data_Media = Save_Data_Media;
Ethan Yonker74db1572015-10-28 12:44:49 -05002152 gui_err("format_data_err=Unable to format to remove encryption.");
Ethan Yonker726a0202014-12-16 20:01:38 -06002153 if (Has_Data_Media && Mount(false))
2154 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Ethan Yonker93382822018-11-01 15:25:31 -05002155 goto exit;
Dees_Troy38bd7602012-09-14 13:33:53 -04002156 }
Ethan Yonker93382822018-11-01 15:25:31 -05002157exit:
2158 delete base_partition;
2159 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04002160}
2161
2162void TWPartition::Check_FS_Type() {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002163 const char* type;
2164 blkid_probe pr;
Dees_Troy5bf43922012-09-07 16:07:55 -04002165
Dees_Troy68cab492012-12-12 19:29:35 +00002166 if (Fstab_File_System == "yaffs2" || Fstab_File_System == "mtd" || Fstab_File_System == "bml" || Ignore_Blkid)
2167 return; // Running blkid on some mtd devices causes a massive crash or needs to be skipped
Dees_Troy5bf43922012-09-07 16:07:55 -04002168
Dees_Troy38bd7602012-09-14 13:33:53 -04002169 Find_Actual_Block_Device();
Dees_Troy8170a922012-09-18 15:40:25 -04002170 if (!Is_Present)
2171 return;
Dees_Troy51127312012-09-08 13:08:49 -04002172
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002173 pr = blkid_new_probe_from_filename(Actual_Block_Device.c_str());
2174 if (blkid_do_fullprobe(pr)) {
2175 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00002176 LOGINFO("Can't probe device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002177 return;
Dees_Troy5bf43922012-09-07 16:07:55 -04002178 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002179
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05002180 if (blkid_probe_lookup_value(pr, "TYPE", &type, NULL) < 0) {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002181 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00002182 LOGINFO("can't find filesystem on device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002183 return;
2184 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002185
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05002186 Current_File_System = type;
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02002187 blkid_free_probe(pr);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06002188 if (fs_flags.size() > 1) {
2189 std::vector<partition_fs_flags_struct>::iterator iter;
2190 std::vector<partition_fs_flags_struct>::iterator found = fs_flags.begin();
2191
2192 for (iter = fs_flags.begin(); iter != fs_flags.end(); iter++) {
2193 if (iter->File_System == Current_File_System) {
2194 found = iter;
2195 break;
2196 }
2197 }
2198 // If we don't find a match, we default the flags to the first set of flags that we received from the fstab
2199 if (Mount_Flags != found->Mount_Flags || Mount_Options != found->Mount_Options) {
2200 Mount_Flags = found->Mount_Flags;
2201 Mount_Options = found->Mount_Options;
2202 LOGINFO("Mount_Flags: %i, Mount_Options: %s\n", Mount_Flags, Mount_Options.c_str());
2203 }
2204 }
Dees_Troy51a0e822012-09-05 15:24:24 -04002205}
2206
dianlujitao4879b372018-12-03 18:45:47 +08002207bool TWPartition::Wipe_EXTFS(string File_System) {
bigbiff7ba75002020-04-11 20:47:09 -04002208 if (!UnMount(true))
2209 return false;
2210
dianlujitao4879b372018-12-03 18:45:47 +08002211#if PLATFORM_SDK_VERSION < 28
bigbiffad58e1b2020-07-06 20:24:34 -04002212 if (!TWFunc::Path_Exists("/system/bin/mke2fs"))
dianlujitao4879b372018-12-03 18:45:47 +08002213#else
bigbiffad58e1b2020-07-06 20:24:34 -04002214 if (!TWFunc::Path_Exists("/system/bin/mke2fs") || !TWFunc::Path_Exists("/system/bin/e2fsdroid"))
dianlujitao4879b372018-12-03 18:45:47 +08002215#endif
Dees_Troy38bd7602012-09-14 13:33:53 -04002216 return Wipe_RMRF();
2217
dianlujitao4879b372018-12-03 18:45:47 +08002218 int ret;
2219 bool NeedPreserveFooter = true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002220
Ethan Yonker25f20c12014-10-14 09:04:43 -05002221 Find_Actual_Block_Device();
2222 if (!Is_Present) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002223 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2224 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Ethan Yonker25f20c12014-10-14 09:04:43 -05002225 return false;
2226 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002227
dianlujitao4879b372018-12-03 18:45:47 +08002228 /**
2229 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2230 * so there's no need to preserve footer.
2231 */
2232 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2233 Crypto_Key_Location != "footer") {
2234 NeedPreserveFooter = false;
2235 }
2236
2237 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2238 if (!dev_sz)
2239 return false;
2240
2241 if (NeedPreserveFooter)
2242 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2243
Dees Troy9a4d7402019-03-21 14:17:28 -04002244 char dout[16];
2245 sprintf(dout, "%llu", dev_sz / 4096);
2246
2247 //string size_str =to_string(dev_sz / 4096);
2248 string size_str = dout;
dianlujitao4879b372018-12-03 18:45:47 +08002249 string Command;
2250
2251 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mke2fs"));
2252
2253 // Execute mke2fs to create empty ext4 filesystem
2254 Command = "mke2fs -t " + File_System + " -b 4096 " + Actual_Block_Device + " " + size_str;
2255 LOGINFO("mke2fs command: %s\n", Command.c_str());
2256 ret = TWFunc::Exec_Cmd(Command);
2257 if (ret) {
2258 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2259 return false;
2260 }
2261
bigbiffad58e1b2020-07-06 20:24:34 -04002262 if (TWFunc::Path_Exists("/system/bin/e2fsdroid")) {
dianlujitao3cf05a52019-05-15 15:33:27 +08002263 const string& File_Contexts_Entry = (Mount_Point == "/system_root" ? "/" : Mount_Point);
2264 char *secontext = NULL;
2265 if (!selinux_handle || selabel_lookup(selinux_handle, &secontext, File_Contexts_Entry.c_str(), S_IFDIR) < 0) {
2266 LOGINFO("Cannot lookup security context for '%s'\n", Mount_Point.c_str());
2267 } else {
2268 // Execute e2fsdroid to initialize selinux context
bigbiff5b911ca2020-07-18 10:46:09 -04002269 if (Mount_Point == "/persist") {
2270 Mount(true);
2271 TWFunc::removeDir("/persist/lost+found", false);
2272 UnMount(true);
2273 }
dianlujitao3cf05a52019-05-15 15:33:27 +08002274 Command = "e2fsdroid -e -S /file_contexts -a " + File_Contexts_Entry + " " + Actual_Block_Device;
2275 LOGINFO("e2fsdroid command: %s\n", Command.c_str());
2276 ret = TWFunc::Exec_Cmd(Command);
2277 if (ret) {
2278 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2279 return false;
2280 }
dianlujitao4879b372018-12-03 18:45:47 +08002281 }
2282 } else {
2283 LOGINFO("e2fsdroid not present\n");
2284 }
2285
2286 if (NeedPreserveFooter)
2287 Wipe_Crypto_Key();
2288 Current_File_System = File_System;
2289 Recreate_AndSec_Folder();
2290 gui_msg("done=Done.");
2291 return true;
2292}
2293
2294bool TWPartition::Wipe_EXT4() {
2295#ifdef USE_EXT4
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002296 int ret;
dianlujitao4879b372018-12-03 18:45:47 +08002297 bool NeedPreserveFooter = true;
2298
bigbiff7ba75002020-04-11 20:47:09 -04002299 if (!UnMount(true))
2300 return false;
2301
dianlujitao4879b372018-12-03 18:45:47 +08002302 Find_Actual_Block_Device();
2303 if (!Is_Present) {
2304 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2305 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2306 return false;
2307 }
dianlujitao4879b372018-12-03 18:45:47 +08002308
2309 /**
2310 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2311 * so there's no need to preserve footer.
2312 */
2313 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2314 Crypto_Key_Location != "footer") {
2315 NeedPreserveFooter = false;
2316 }
2317
2318 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2319 if (!dev_sz)
2320 return false;
2321
2322 if (NeedPreserveFooter)
2323 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
2324
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002325 char *secontext = NULL;
2326
Greg Wallace4b44fef2015-12-29 15:33:24 -05002327 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("make_ext4fs"));
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002328
Dees Troy99c8dbf2014-03-10 16:53:58 +00002329 if (!selinux_handle || selabel_lookup(selinux_handle, &secontext, Mount_Point.c_str(), S_IFDIR) < 0) {
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002330 LOGINFO("Cannot lookup security context for '%s'\n", Mount_Point.c_str());
dianlujitao4879b372018-12-03 18:45:47 +08002331 ret = make_ext4fs(Actual_Block_Device.c_str(), dev_sz, Mount_Point.c_str(), NULL);
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002332 } else {
dianlujitao4879b372018-12-03 18:45:47 +08002333 ret = make_ext4fs(Actual_Block_Device.c_str(), dev_sz, Mount_Point.c_str(), selinux_handle);
Ethan Yonkerf27497f2014-02-09 11:48:33 -06002334 }
2335 if (ret != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002336 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troya95f55c2013-08-17 13:14:43 +00002337 return false;
2338 } else {
dianlujitao4879b372018-12-03 18:45:47 +08002339 if (NeedPreserveFooter)
2340 Wipe_Crypto_Key();
bigbiff bigbiffc49d7062013-10-11 20:28:00 -04002341 string sedir = Mount_Point + "/lost+found";
2342 PartitionManager.Mount_By_Path(sedir.c_str(), true);
2343 rmdir(sedir.c_str());
2344 mkdir(sedir.c_str(), S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP);
Dees_Troya95f55c2013-08-17 13:14:43 +00002345 return true;
2346 }
2347#else
dianlujitao4879b372018-12-03 18:45:47 +08002348 return Wipe_EXTFS("ext4");
Dees_Troya95f55c2013-08-17 13:14:43 +00002349#endif
Dees_Troy51a0e822012-09-05 15:24:24 -04002350}
2351
2352bool TWPartition::Wipe_FAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002353 string command;
Dees_Troy38bd7602012-09-14 13:33:53 -04002354
bigbiff7ba75002020-04-11 20:47:09 -04002355 if (!UnMount(true))
2356 return false;
Dees_Troy38bd7602012-09-14 13:33:53 -04002357
bigbiffad58e1b2020-07-06 20:24:34 -04002358 if (TWFunc::Path_Exists("/system/bin/mkfs.fat")) {
Greg Wallace4b44fef2015-12-29 15:33:24 -05002359 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkfs.fat"));
Dees_Troy38bd7602012-09-14 13:33:53 -04002360 Find_Actual_Block_Device();
Matt Mower18794c82015-11-11 16:22:45 -06002361 command = "mkfs.fat " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02002362 if (TWFunc::Exec_Cmd(command) == 0) {
Gary Pecke8bc5d72012-12-21 06:45:25 -08002363 Current_File_System = "vfat";
Dees_Troye58d5262012-09-21 12:27:57 -04002364 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002365 gui_msg("done=Done.");
Dees_Troy38bd7602012-09-14 13:33:53 -04002366 return true;
2367 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002368 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
Dees_Troy38bd7602012-09-14 13:33:53 -04002369 return false;
2370 }
2371 return true;
2372 }
2373 else
2374 return Wipe_RMRF();
2375
2376 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002377}
2378
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002379bool TWPartition::Wipe_EXFAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02002380 string command;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002381
bigbiff7ba75002020-04-11 20:47:09 -04002382 if (!UnMount(true))
2383 return false;
bigbiffad58e1b2020-07-06 20:24:34 -04002384 if (TWFunc::Path_Exists("/system/bin/mkexfatfs")) {
Greg Wallace4b44fef2015-12-29 15:33:24 -05002385 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("mkexfatfs"));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002386 Find_Actual_Block_Device();
2387 command = "mkexfatfs " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02002388 if (TWFunc::Exec_Cmd(command) == 0) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002389 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002390 gui_msg("done=Done.");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002391 return true;
2392 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002393 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002394 return false;
2395 }
2396 return true;
2397 }
2398 return false;
2399}
2400
Dees_Troy38bd7602012-09-14 13:33:53 -04002401bool TWPartition::Wipe_MTD() {
2402 if (!UnMount(true))
2403 return false;
2404
Greg Wallace4b44fef2015-12-29 15:33:24 -05002405 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)("MTD"));
Dees_Troy38bd7602012-09-14 13:33:53 -04002406
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002407 mtd_scan_partitions();
2408 const MtdPartition* mtd = mtd_find_partition_by_name(MTD_Name.c_str());
2409 if (mtd == NULL) {
2410 LOGERR("No mtd partition named '%s'", MTD_Name.c_str());
2411 return false;
2412 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002413
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002414 MtdWriteContext* ctx = mtd_write_partition(mtd);
2415 if (ctx == NULL) {
2416 LOGERR("Can't write '%s', failed to format.", MTD_Name.c_str());
2417 return false;
2418 }
2419 if (mtd_erase_blocks(ctx, -1) == -1) {
2420 mtd_write_close(ctx);
2421 LOGERR("Failed to format '%s'", MTD_Name.c_str());
2422 return false;
2423 }
2424 if (mtd_write_close(ctx) != 0) {
2425 LOGERR("Failed to close '%s'", MTD_Name.c_str());
2426 return false;
2427 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08002428 Current_File_System = "yaffs2";
Dees_Troye58d5262012-09-21 12:27:57 -04002429 Recreate_AndSec_Folder();
Ethan Yonker74db1572015-10-28 12:44:49 -05002430 gui_msg("done=Done.");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02002431 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002432}
2433
2434bool TWPartition::Wipe_RMRF() {
Dees_Troy38bd7602012-09-14 13:33:53 -04002435 if (!Mount(true))
2436 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06002437 // This is the only wipe that leaves the partition mounted, so we
2438 // must manually remove the partition from MTP if it is a storage
2439 // partition.
2440 if (Is_Storage)
2441 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04002442
Ethan Yonker74db1572015-10-28 12:44:49 -05002443 gui_msg(Msg("remove_all=Removing all files under '{1}'")(Mount_Point));
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002444 TWFunc::removeDir(Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04002445 Recreate_AndSec_Folder();
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002446 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002447}
2448
Dees_Troye5017042013-08-29 16:38:55 +00002449bool TWPartition::Wipe_F2FS() {
systemaddb475c92021-08-12 20:33:20 +02002450 std::string f2fs_command;
Dees_Troye5017042013-08-29 16:38:55 +00002451
bigbiff7ba75002020-04-11 20:47:09 -04002452 if (!UnMount(true))
2453 return false;
dianlujitao4879b372018-12-03 18:45:47 +08002454
bigbiffad58e1b2020-07-06 20:24:34 -04002455 if (TWFunc::Path_Exists("/system/bin/mkfs.f2fs"))
systemaddb475c92021-08-12 20:33:20 +02002456 f2fs_command = "/system/bin/mkfs.f2fs";
bigbiffad58e1b2020-07-06 20:24:34 -04002457 else if (TWFunc::Path_Exists("/system/bin/make_f2fs"))
systemaddb475c92021-08-12 20:33:20 +02002458 f2fs_command = "/system/bin/make_f2fs -g android";
bigbiff7ba75002020-04-11 20:47:09 -04002459 else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002460 LOGINFO("mkfs.f2fs binary not found, using rm -rf to wipe.\n");
Dees_Troye5017042013-08-29 16:38:55 +00002461 return Wipe_RMRF();
2462 }
bigbiff7ba75002020-04-11 20:47:09 -04002463
2464 bool NeedPreserveFooter = true;
systemaddb475c92021-08-12 20:33:20 +02002465 bool needs_casefold = false;
2466 bool needs_projid = false;
bigbiff7ba75002020-04-11 20:47:09 -04002467
2468 Find_Actual_Block_Device();
2469 if (!Is_Present) {
2470 LOGINFO("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
2471 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2472 return false;
2473 }
systemaddb475c92021-08-12 20:33:20 +02002474
2475 needs_casefold = android::base::GetBoolProperty("external_storage.casefold.enabled", false);
Captain Throwback88338682022-05-21 10:44:13 -04002476 needs_projid = android::base::GetBoolProperty("external_storage.projid.enabled", false);
bigbiff7ba75002020-04-11 20:47:09 -04002477 unsigned long long dev_sz = TWFunc::IOCTL_Get_Block_Size(Actual_Block_Device.c_str());
2478 if (!dev_sz)
2479 return false;
2480
2481 if (NeedPreserveFooter)
2482 Length < 0 ? dev_sz += Length : dev_sz -= CRYPT_FOOTER_OFFSET;
bigbiff7ba75002020-04-11 20:47:09 -04002483 char dev_sz_str[48];
2484 sprintf(dev_sz_str, "%llu", (dev_sz / 4096));
systemaddb475c92021-08-12 20:33:20 +02002485 if(needs_projid)
2486 f2fs_command += " -O project_quota,extra_attr";
2487
2488 if(needs_casefold)
2489 f2fs_command += " -O casefold -C utf8";
2490
2491 f2fs_command += " " + Actual_Block_Device + " " + dev_sz_str;
2492
Captain Throwback88338682022-05-21 10:44:13 -04002493 if (TWFunc::Path_Exists("/system/bin/sload_f2fs")) {
2494 f2fs_command += " && sload_f2fs -t /data " + Actual_Block_Device;
bigbiff7ba75002020-04-11 20:47:09 -04002495 }
2496
2497 /**
2498 * On decrypted devices, IOCTL_Get_Block_Size calculates size on device mapper,
2499 * so there's no need to preserve footer.
2500 */
2501 if ((Is_Decrypted && !Decrypted_Block_Device.empty()) ||
2502 Crypto_Key_Location != "footer") {
2503 NeedPreserveFooter = false;
2504 }
systemaddb475c92021-08-12 20:33:20 +02002505 LOGINFO("mkfs.f2fs command: %s\n", f2fs_command.c_str());
2506 if (TWFunc::Exec_Cmd(f2fs_command) == 0) {
bigbiff7ba75002020-04-11 20:47:09 -04002507 if (NeedPreserveFooter)
2508 Wipe_Crypto_Key();
2509 Recreate_AndSec_Folder();
2510 gui_msg("done=Done.");
2511 return true;
2512 } else {
2513 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2514 return false;
2515 }
2516 return true;
Dees_Troye5017042013-08-29 16:38:55 +00002517}
2518
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002519bool TWPartition::Wipe_NTFS() {
2520 string command;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002521 string Ntfsmake_Binary;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002522
bigbiff7ba75002020-04-11 20:47:09 -04002523 if (!UnMount(true))
2524 return false;
2525
bigbiffad58e1b2020-07-06 20:24:34 -04002526 if (TWFunc::Path_Exists("/system/bin/mkntfs"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002527 Ntfsmake_Binary = "mkntfs";
bigbiffad58e1b2020-07-06 20:24:34 -04002528 else if (TWFunc::Path_Exists("/system/bin/mkfs.ntfs"))
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002529 Ntfsmake_Binary = "mkfs.ntfs";
2530 else
2531 return false;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002532
Greg Wallace4b44fef2015-12-29 15:33:24 -05002533 gui_msg(Msg("formatting_using=Formatting {1} using {2}...")(Display_Name)(Ntfsmake_Binary));
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002534 Find_Actual_Block_Device();
bigbiffad58e1b2020-07-06 20:24:34 -04002535 command = "/system/bin/" + Ntfsmake_Binary + " " + Actual_Block_Device;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002536 if (TWFunc::Exec_Cmd(command) == 0) {
2537 Recreate_AndSec_Folder();
2538 gui_msg("done=Done.");
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002539 return true;
Greg Wallaceb39e6c62015-12-29 00:55:26 -05002540 } else {
2541 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(Display_Name));
2542 return false;
Ethan Yonkerb81d9052015-07-09 13:20:53 -05002543 }
2544 return false;
2545}
2546
Dees_Troy51a0e822012-09-05 15:24:24 -04002547bool TWPartition::Wipe_Data_Without_Wiping_Media() {
Ethan Yonker83e82572014-04-04 10:59:28 -05002548#ifdef TW_OEM_BUILD
2549 // In an OEM Build we want to do a full format
2550 return Wipe_Encryption();
2551#else
Ethan Yonker66a19492015-12-10 10:19:45 -06002552 bool ret = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04002553
Dees_Troy38bd7602012-09-14 13:33:53 -04002554 if (!Mount(true))
2555 return false;
2556
Ethan Yonker74db1572015-10-28 12:44:49 -05002557 gui_msg("wiping_data=Wiping data without wiping /data/media ...");
Ethan Yonker66a19492015-12-10 10:19:45 -06002558 ret = Wipe_Data_Without_Wiping_Media_Func(Mount_Point + "/");
2559 if (ret)
2560 gui_msg("done=Done.");
2561 return ret;
2562#endif // ifdef TW_OEM_BUILD
2563}
2564
2565bool TWPartition::Wipe_Data_Without_Wiping_Media_Func(const string& parent __unused) {
2566 string dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04002567
2568 DIR* d;
Ethan Yonker66a19492015-12-10 10:19:45 -06002569 d = opendir(parent.c_str());
Dees_Troy16b74352012-11-14 22:27:31 +00002570 if (d != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04002571 struct dirent* de;
2572 while ((de = readdir(d)) != NULL) {
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05002573 if (strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0) continue;
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05002574
Ethan Yonker66a19492015-12-10 10:19:45 -06002575 dir = parent;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002576 dir.append(de->d_name);
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002577 if (wipe_exclusions.check_skip_dirs(dir)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002578 LOGINFO("skipped '%s'\n", dir.c_str());
2579 continue;
2580 }
Dees_Troyce675462013-01-09 19:48:21 +00002581 if (de->d_type == DT_DIR) {
Ethan Yonker66a19492015-12-10 10:19:45 -06002582 dir.append("/");
2583 if (!Wipe_Data_Without_Wiping_Media_Func(dir)) {
2584 closedir(d);
2585 return false;
2586 }
2587 rmdir(dir.c_str());
bigbiff bigbiff98f1f902013-01-19 18:46:13 -05002588 } 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 +03002589 if (unlink(dir.c_str()) != 0)
Ethan Yonker79f88bd2016-12-09 14:52:12 -06002590 LOGINFO("Unable to unlink '%s': %s\n", dir.c_str(), strerror(errno));
Dees_Troyce675462013-01-09 19:48:21 +00002591 }
Dees_Troy38bd7602012-09-14 13:33:53 -04002592 }
2593 closedir(d);
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05002594
Dees_Troy16b74352012-11-14 22:27:31 +00002595 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -04002596 }
Ethan Yonker74db1572015-10-28 12:44:49 -05002597 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Mount_Point)(strerror(errno)));
Dees_Troy16b74352012-11-14 22:27:31 +00002598 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04002599}
2600
dianlujitao4879b372018-12-03 18:45:47 +08002601void TWPartition::Wipe_Crypto_Key() {
2602 Find_Actual_Block_Device();
2603 if (Crypto_Key_Location.empty())
2604 return;
2605 else if (Crypto_Key_Location == "footer") {
2606 int fd = open(Actual_Block_Device.c_str(), O_RDWR);
2607 if (fd < 0) {
2608 gui_print_color("warning", "Unable to open '%s' to wipe crypto key\n", Actual_Block_Device.c_str());
2609 return;
2610 }
2611
2612 unsigned int block_count;
2613 if ((ioctl(fd, BLKGETSIZE, &block_count)) == -1) {
2614 gui_print_color("warning", "Unable to get block size for wiping crypto footer.\n");
2615 } else {
2616 int newlen = Length < 0 ? -Length : CRYPT_FOOTER_OFFSET;
2617 off64_t offset = ((off64_t)block_count * 512) - newlen;
2618 if (lseek64(fd, offset, SEEK_SET) == -1) {
2619 gui_print_color("warning", "Unable to lseek64 for wiping crypto footer.\n");
2620 } else {
2621 void* buffer = malloc(newlen);
2622 if (!buffer) {
2623 gui_print_color("warning", "Failed to malloc for wiping crypto footer.\n");
2624 } else {
2625 memset(buffer, 0, newlen);
2626 int ret = write(fd, buffer, newlen);
2627 if (ret != newlen) {
2628 gui_print_color("warning", "Failed to wipe crypto footer.\n");
2629 } else {
2630 LOGINFO("Successfully wiped crypto footer.\n");
2631 }
2632 free(buffer);
2633 }
2634 }
2635 }
2636 close(fd);
2637 } else {
2638 if (TWFunc::IOCTL_Get_Block_Size(Crypto_Key_Location.c_str()) >= 16384LLU) {
2639 string Command = "dd of='" + Crypto_Key_Location + "' if=/dev/zero bs=16384 count=1";
2640 TWFunc::Exec_Cmd(Command);
2641 } else {
2642 LOGINFO("Crypto key location reports size < 16K so not wiping crypto footer.\n");
2643 }
2644 }
2645}
2646
bigbiffce8f83c2015-12-12 18:30:21 -05002647bool TWPartition::Backup_Tar(PartitionSettings *part_settings, pid_t *tar_fork_pid) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002648 string Full_FileName;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002649 twrpTar tar;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -05002650
Dees_Troy43d8b002012-09-17 16:00:01 -04002651 if (!Mount(true))
2652 return false;
2653
Ian Macdonalda3b25a32019-06-16 22:39:14 +02002654 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Backup_Display_Name, gui_parse_text("{@backing}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002655 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002656
Ethan Yonker472f5062016-02-25 13:47:30 -06002657 DataManager::GetValue(TW_USE_COMPRESSION_VAR, tar.use_compression);
Matt Mowerbb81e5d2014-03-20 18:05:41 -05002658
Dees_Troy83bd4832013-05-04 12:39:56 +00002659#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
Ethan Yonker472f5062016-02-25 13:47:30 -06002660 if (Can_Encrypt_Backup) {
2661 DataManager::GetValue("tw_encrypt_backup", tar.use_encryption);
2662 if (tar.use_encryption) {
2663 if (Use_Userdata_Encryption)
2664 tar.userdata_encryption = tar.use_encryption;
2665 string Password;
2666 DataManager::GetValue("tw_backup_password", Password);
2667 tar.setpassword(Password);
2668 } else {
2669 tar.use_encryption = 0;
2670 }
Dees_Troy83bd4832013-05-04 12:39:56 +00002671 }
2672#endif
Dees_Troy43d8b002012-09-17 16:00:01 -04002673
Ethan Yonker472f5062016-02-25 13:47:30 -06002674 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002675 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker01f4e032017-02-03 15:30:52 -06002676 if (Has_Data_Media)
2677 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 -04002678 if (Mount_Point == "/data" && DataManager::GetIntValue(TW_IS_FBE)) {
2679 std::vector<users_struct>::iterator iter;
2680 std::vector<users_struct>* userList = PartitionManager.Get_Users_List();
2681 for (iter = userList->begin(); iter != userList->end(); iter++) {
2682 if (!(*iter).isDecrypted && (*iter).userId != "0") {
2683 gui_msg(Msg(msg::kWarning,
2684 "backup_storage_undecrypt_warning=Backup will not include some files from user {1} "
2685 "because the user is not decrypted.")((*iter).userId));
2686 backup_exclusions.add_absolute_dir("/data/system_ce/" + (*iter).userId);
2687 backup_exclusions.add_absolute_dir("/data/misc_ce/" + (*iter).userId);
2688 backup_exclusions.add_absolute_dir("/data/vendor_ce/" + (*iter).userId);
2689 backup_exclusions.add_absolute_dir("/data/media/" + (*iter).userId);
2690 backup_exclusions.add_absolute_dir("/data/user/" + (*iter).userId);
2691 }
2692 }
2693 }
bigbiffce8f83c2015-12-12 18:30:21 -05002694 tar.part_settings = part_settings;
Ethan Yonker3fdcda42016-11-30 12:29:37 -06002695 tar.backup_exclusions = &backup_exclusions;
Dees Troye0a433a2013-12-02 04:10:37 +00002696 tar.setdir(Backup_Path);
2697 tar.setfn(Full_FileName);
2698 tar.setsize(Backup_Size);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002699 tar.partition_name = Backup_Name;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002700 tar.backup_folder = part_settings->Backup_Folder;
bigbiffce8f83c2015-12-12 18:30:21 -05002701 if (tar.createTarFork(tar_fork_pid) != 0)
Dees Troye0a433a2013-12-02 04:10:37 +00002702 return false;
Dees_Troy43d8b002012-09-17 16:00:01 -04002703 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002704}
2705
bigbiffce8f83c2015-12-12 18:30:21 -05002706bool TWPartition::Backup_Image(PartitionSettings *part_settings) {
2707 string Full_FileName, adb_file_name;
igoriok87e3d932013-01-31 21:03:53 +02002708
Ethan Yonker74db1572015-10-28 12:44:49 -05002709 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, gui_parse_text("{@backing}"));
2710 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002711
Ethan Yonker472f5062016-02-25 13:47:30 -06002712 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Dees_Troy43d8b002012-09-17 16:00:01 -04002713
bigbiffce8f83c2015-12-12 18:30:21 -05002714 if (part_settings->adbbackup) {
2715 Full_FileName = TW_ADB_BACKUP;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002716 adb_file_name = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002717 }
2718 else
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002719 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002720
2721 part_settings->total_restore_size = Backup_Size;
2722
2723 if (part_settings->adbbackup) {
2724 if (!twadbbu::Write_TWIMG(adb_file_name, Backup_Size))
2725 return false;
2726 }
2727
2728 if (!Raw_Read_Write(part_settings))
Ethan Yonker472f5062016-02-25 13:47:30 -06002729 return false;
2730
bigbiffce8f83c2015-12-12 18:30:21 -05002731 if (part_settings->adbbackup) {
2732 if (!twadbbu::Write_TWEOF())
2733 return false;
Dees_Troy7c2dec82012-09-26 09:49:14 -04002734 }
Dees_Troy43d8b002012-09-17 16:00:01 -04002735 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002736}
2737
bigbiffce8f83c2015-12-12 18:30:21 -05002738bool TWPartition::Raw_Read_Write(PartitionSettings *part_settings) {
2739 unsigned long long RW_Block_Size, Remain = Backup_Size;
2740 int src_fd = -1, dest_fd = -1;
2741 ssize_t bs;
Ethan Yonker472f5062016-02-25 13:47:30 -06002742 bool ret = false;
2743 void* buffer = NULL;
2744 unsigned long long backedup_size = 0;
bigbiffce8f83c2015-12-12 18:30:21 -05002745 string srcfn, destfn;
Ethan Yonker472f5062016-02-25 13:47:30 -06002746
bigbiffce8f83c2015-12-12 18:30:21 -05002747 if (part_settings->PM_Method == PM_BACKUP) {
2748 srcfn = Actual_Block_Device;
2749 if (part_settings->adbbackup)
2750 destfn = TW_ADB_BACKUP;
bigbiff bigbiff38b83c12017-12-28 19:58:52 -05002751 else {
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002752 destfn = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiff bigbiff38b83c12017-12-28 19:58:52 -05002753 }
bigbiffce8f83c2015-12-12 18:30:21 -05002754 }
2755 else {
2756 destfn = Actual_Block_Device;
2757 if (part_settings->adbbackup) {
2758 srcfn = TW_ADB_RESTORE;
2759 } else {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002760 srcfn = part_settings->Backup_Folder + "/" + Backup_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002761 Remain = TWFunc::Get_File_Size(srcfn);
2762 }
2763 }
Ethan Yonker472f5062016-02-25 13:47:30 -06002764
bigbiffce8f83c2015-12-12 18:30:21 -05002765 src_fd = open(srcfn.c_str(), O_RDONLY | O_LARGEFILE);
Ethan Yonker472f5062016-02-25 13:47:30 -06002766 if (src_fd < 0) {
bigbiffce8f83c2015-12-12 18:30:21 -05002767 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(srcfn.c_str())(strerror(errno)));
Ethan Yonker472f5062016-02-25 13:47:30 -06002768 return false;
2769 }
bigbiffce8f83c2015-12-12 18:30:21 -05002770
2771 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 -06002772 if (dest_fd < 0) {
bigbiffce8f83c2015-12-12 18:30:21 -05002773 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(destfn.c_str())(strerror(errno)));
Ethan Yonker472f5062016-02-25 13:47:30 -06002774 goto exit;
2775 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002776
bigbiffce8f83c2015-12-12 18:30:21 -05002777 LOGINFO("Reading '%s', writing '%s'\n", srcfn.c_str(), destfn.c_str());
2778
2779 if (part_settings->adbbackup) {
2780 RW_Block_Size = MAX_ADB_READ;
2781 bs = MAX_ADB_READ;
2782 }
2783 else {
2784 RW_Block_Size = 1048576LLU; // 1MB
2785 bs = (ssize_t)(RW_Block_Size);
2786 }
2787
Ethan Yonker472f5062016-02-25 13:47:30 -06002788 buffer = malloc((size_t)bs);
2789 if (!buffer) {
2790 LOGINFO("Raw_Read_Write failed to malloc\n");
2791 goto exit;
2792 }
bigbiffce8f83c2015-12-12 18:30:21 -05002793
2794 if (part_settings->progress)
2795 part_settings->progress->SetPartitionSize(part_settings->total_restore_size);
2796
Ethan Yonker472f5062016-02-25 13:47:30 -06002797 while (Remain > 0) {
2798 if (Remain < RW_Block_Size)
bigbiffce8f83c2015-12-12 18:30:21 -05002799 bs = (ssize_t)(Remain);
Matt Mowera8a89d12016-12-30 18:10:37 -06002800 if (read(src_fd, buffer, bs) != bs) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002801 LOGINFO("Error reading source fd (%s)\n", strerror(errno));
2802 goto exit;
2803 }
2804 if (write(dest_fd, buffer, bs) != bs) {
2805 LOGINFO("Error writing destination fd (%s)\n", strerror(errno));
2806 goto exit;
2807 }
2808 backedup_size += (unsigned long long)(bs);
Matt Mower029a82d2017-01-08 13:12:38 -06002809 Remain -= (unsigned long long)(bs);
bigbiffce8f83c2015-12-12 18:30:21 -05002810 if (part_settings->progress)
2811 part_settings->progress->UpdateSize(backedup_size);
Ethan Yonker472f5062016-02-25 13:47:30 -06002812 if (PartitionManager.Check_Backup_Cancel() != 0)
2813 goto exit;
2814 }
bigbiffce8f83c2015-12-12 18:30:21 -05002815 if (part_settings->progress)
2816 part_settings->progress->UpdateDisplayDetails(true);
Ethan Yonker472f5062016-02-25 13:47:30 -06002817 fsync(dest_fd);
nailyka083dc62016-11-11 21:41:28 +01002818
2819 if (!part_settings->adbbackup && part_settings->PM_Method == PM_BACKUP) {
2820 tw_set_default_metadata(destfn.c_str());
2821 LOGINFO("Restored default metadata for %s\n", destfn.c_str());
2822 }
2823
Ethan Yonker472f5062016-02-25 13:47:30 -06002824 ret = true;
2825exit:
2826 if (src_fd >= 0)
2827 close(src_fd);
2828 if (dest_fd >= 0)
2829 close(dest_fd);
2830 if (buffer)
2831 free(buffer);
2832 return ret;
2833}
2834
bigbiffce8f83c2015-12-12 18:30:21 -05002835bool TWPartition::Backup_Dump_Image(PartitionSettings *part_settings) {
Vojtech Bocek05534202013-09-11 08:11:56 +02002836 string Full_FileName, Command;
Dees_Troy43d8b002012-09-17 16:00:01 -04002837
Ethan Yonker74db1572015-10-28 12:44:49 -05002838 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, gui_parse_text("{@backing}"));
2839 gui_msg(Msg("backing_up=Backing up {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002840
bigbiffce8f83c2015-12-12 18:30:21 -05002841 if (part_settings->progress)
2842 part_settings->progress->SetPartitionSize(Backup_Size);
Dees_Troy43d8b002012-09-17 16:00:01 -04002843
Ethan Yonker472f5062016-02-25 13:47:30 -06002844 Backup_FileName = Backup_Name + "." + Current_File_System + ".win";
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002845 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Dees_Troy43d8b002012-09-17 16:00:01 -04002846
2847 Command = "dump_image " + MTD_Name + " '" + Full_FileName + "'";
bigbiffce8f83c2015-12-12 18:30:21 -05002848
Dees_Troy2673cec2013-04-02 20:22:16 +00002849 LOGINFO("Backup command: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02002850 TWFunc::Exec_Cmd(Command);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06002851 tw_set_default_metadata(Full_FileName.c_str());
Dees_Troy7c2dec82012-09-26 09:49:14 -04002852 if (TWFunc::Get_File_Size(Full_FileName) == 0) {
2853 // 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 -06002854 gui_msg(Msg(msg::kError, "backup_size=Backup file size for '{1}' is 0 bytes.")(Full_FileName));
Dees_Troy7c2dec82012-09-26 09:49:14 -04002855 return false;
2856 }
bigbiffce8f83c2015-12-12 18:30:21 -05002857 if (part_settings->progress)
2858 part_settings->progress->UpdateSize(Backup_Size);
2859
Dees_Troy43d8b002012-09-17 16:00:01 -04002860 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002861}
2862
bigbiffce8f83c2015-12-12 18:30:21 -05002863unsigned long long TWPartition::Get_Restore_Size(PartitionSettings *part_settings) {
2864 if (!part_settings->adbbackup) {
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002865 InfoManager restore_info(part_settings->Backup_Folder + "/" + Backup_Name + ".info");
bigbiffce8f83c2015-12-12 18:30:21 -05002866 if (restore_info.LoadValues() == 0) {
2867 if (restore_info.GetValue("backup_size", Restore_Size) == 0) {
2868 LOGINFO("Read info file, restore size is %llu\n", Restore_Size);
2869 return Restore_Size;
2870 }
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002871 }
2872 }
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002873
Matt Mower029a82d2017-01-08 13:12:38 -06002874 string Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
2875 string Restore_File_System = Get_Restore_File_System(part_settings);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002876
2877 if (Is_Image(Restore_File_System)) {
2878 Restore_Size = TWFunc::Get_File_Size(Full_FileName);
2879 return Restore_Size;
2880 }
2881
2882 twrpTar tar;
2883 tar.setdir(Backup_Path);
2884 tar.setfn(Full_FileName);
bigbiffce8f83c2015-12-12 18:30:21 -05002885 tar.backup_name = Full_FileName;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002886#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
2887 string Password;
2888 DataManager::GetValue("tw_restore_password", Password);
2889 if (!Password.empty())
2890 tar.setpassword(Password);
2891#endif
2892 tar.partition_name = Backup_Name;
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002893 tar.backup_folder = part_settings->Backup_Folder;
bigbiffce8f83c2015-12-12 18:30:21 -05002894 tar.part_settings = part_settings;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05002895 Restore_Size = tar.get_size();
2896 return Restore_Size;
2897}
2898
bigbiffce8f83c2015-12-12 18:30:21 -05002899bool TWPartition::Restore_Tar(PartitionSettings *part_settings) {
Ethan Yonker472f5062016-02-25 13:47:30 -06002900 string Full_FileName;
Dees Troy4159aed2014-02-28 17:24:43 +00002901 bool ret = false;
bigbiffce8f83c2015-12-12 18:30:21 -05002902 string Restore_File_System = Get_Restore_File_System(part_settings);
Dees_Troy43d8b002012-09-17 16:00:01 -04002903
Dees_Troye58d5262012-09-21 12:27:57 -04002904 if (Has_Android_Secure) {
Dees_Troye58d5262012-09-21 12:27:57 -04002905 if (!Wipe_AndSec())
2906 return false;
Gary Peck43acadf2012-11-21 21:19:01 -08002907 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05002908 gui_msg(Msg("wiping=Wiping {1}")(Backup_Display_Name));
Ethan Yonker5eac2222014-06-11 12:22:55 -05002909 if (Has_Data_Media && Mount_Point == "/data" && Restore_File_System != Current_File_System) {
Ethan Yonker74db1572015-10-28 12:44:49 -05002910 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 -05002911 if (!Wipe_Data_Without_Wiping_Media())
2912 return false;
2913 } else {
2914 if (!Wipe(Restore_File_System))
2915 return false;
2916 }
Dees_Troye58d5262012-09-21 12:27:57 -04002917 }
Matt Mower3c366972015-12-25 19:28:31 -06002918 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Backup_Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002919 gui_msg(Msg("restoring=Restoring {1}...")(Backup_Display_Name));
Dees_Troy43d8b002012-09-17 16:00:01 -04002920
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05002921 // Remount as read/write as needed so we can restore the backup
2922 if (!ReMount_RW(true))
Dees_Troy43d8b002012-09-17 16:00:01 -04002923 return false;
2924
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05002925 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker87af5632014-02-10 11:56:35 -06002926 twrpTar tar;
bigbiffce8f83c2015-12-12 18:30:21 -05002927 tar.part_settings = part_settings;
Ethan Yonker87af5632014-02-10 11:56:35 -06002928 tar.setdir(Backup_Path);
2929 tar.setfn(Full_FileName);
2930 tar.backup_name = Backup_Name;
2931#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
2932 string Password;
2933 DataManager::GetValue("tw_restore_password", Password);
2934 if (!Password.empty())
2935 tar.setpassword(Password);
2936#endif
bigbiffce8f83c2015-12-12 18:30:21 -05002937 part_settings->progress->SetPartitionSize(Get_Restore_Size(part_settings));
2938 if (tar.extractTarFork() != 0)
Dees Troy4159aed2014-02-28 17:24:43 +00002939 ret = false;
2940 else
2941 ret = true;
2942#ifdef HAVE_CAPABILITIES
2943 // Restore capabilities to the run-as binary
Captain Throwback9d6feb52018-07-27 10:05:24 -04002944 if (Mount_Point == PartitionManager.Get_Android_Root_Path() && Mount(true) && TWFunc::Path_Exists("/system/bin/run-as")) {
Dees Troy4159aed2014-02-28 17:24:43 +00002945 struct vfs_cap_data cap_data;
2946 uint64_t capabilities = (1 << CAP_SETUID) | (1 << CAP_SETGID);
2947
2948 memset(&cap_data, 0, sizeof(cap_data));
2949 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
2950 cap_data.data[0].permitted = (uint32_t) (capabilities & 0xffffffff);
2951 cap_data.data[0].inheritable = 0;
2952 cap_data.data[1].permitted = (uint32_t) (capabilities >> 32);
2953 cap_data.data[1].inheritable = 0;
2954 if (setxattr("/system/bin/run-as", XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
2955 LOGINFO("Failed to reset capabilities of /system/bin/run-as binary.\n");
2956 } else {
2957 LOGINFO("Reset capabilities of /system/bin/run-as binary successful.\n");
2958 }
2959 }
2960#endif
James Christopher Adduonod6f94ac2016-02-29 04:26:04 -05002961 if (Mount_Read_Only || Mount_Flags & MS_RDONLY)
2962 // Remount as read only when restoration is complete
2963 ReMount(true);
2964
Dees Troy4159aed2014-02-28 17:24:43 +00002965 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04002966}
2967
bigbiffce8f83c2015-12-12 18:30:21 -05002968bool TWPartition::Restore_Image(PartitionSettings *part_settings) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06002969 string Full_FileName;
bigbiffce8f83c2015-12-12 18:30:21 -05002970 string Restore_File_System = Get_Restore_File_System(part_settings);
Dees_Troy43d8b002012-09-17 16:00:01 -04002971
Matt Mower3c366972015-12-25 19:28:31 -06002972 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Backup_Display_Name, gui_parse_text("{@restoring_hdr}"));
Ethan Yonker74db1572015-10-28 12:44:49 -05002973 gui_msg(Msg("restoring=Restoring {1}...")(Backup_Display_Name));
bigbiffce8f83c2015-12-12 18:30:21 -05002974
2975 if (part_settings->adbbackup)
2976 Full_FileName = TW_ADB_RESTORE;
2977 else
Ethan Yonkere080c1f2016-09-19 13:50:25 -05002978 Full_FileName = part_settings->Backup_Folder + "/" + Backup_FileName;
Gary Peck15e623d2012-11-21 21:07:58 -08002979
Ethan Yonker96af84a2015-01-05 14:58:36 -06002980 if (Restore_File_System == "emmc") {
bigbiffce8f83c2015-12-12 18:30:21 -05002981 if (!part_settings->adbbackup)
2982 part_settings->total_restore_size = (uint64_t)(TWFunc::Get_File_Size(Full_FileName));
2983 if (!Raw_Read_Write(part_settings))
Ethan Yonker96af84a2015-01-05 14:58:36 -06002984 return false;
2985 } else if (Restore_File_System == "mtd" || Restore_File_System == "bml") {
bigbiffce8f83c2015-12-12 18:30:21 -05002986 if (!Flash_Image_FI(Full_FileName, part_settings->progress))
2987 return false;
2988 }
2989
2990 if (part_settings->adbbackup) {
2991 if (!twadbbu::Write_TWEOF())
Ethan Yonker96af84a2015-01-05 14:58:36 -06002992 return false;
Gary Peck15e623d2012-11-21 21:07:58 -08002993 }
Dees_Troy43d8b002012-09-17 16:00:01 -04002994 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04002995}
Dees_Troy5bf43922012-09-07 16:07:55 -04002996
2997bool TWPartition::Update_Size(bool Display_Error) {
me-cafebabeb52a4812022-07-28 03:45:22 +08002998 bool ret = false, Was_Already_Mounted = false, ro = false;
Dees_Troy51127312012-09-08 13:08:49 -04002999
Ethan Yonker1b190162016-12-05 15:25:19 -06003000 Find_Actual_Block_Device();
3001
bigbiffee7b7ff2020-03-23 15:08:27 -04003002 if (Actual_Block_Device.empty())
3003 return false;
3004
me-cafebabeb52a4812022-07-28 03:45:22 +08003005 ro = Mount_Read_Only;
3006 Mount_Read_Only = true;
3007
Ethan Yonker1b190162016-12-05 15:25:19 -06003008 if (!Can_Be_Mounted && !Is_Encrypted) {
3009 if (TWFunc::Path_Exists(Actual_Block_Device) && Find_Partition_Size()) {
3010 Used = Size;
3011 Backup_Size = Size;
me-cafebabeb52a4812022-07-28 03:45:22 +08003012 goto success;
Ethan Yonker1b190162016-12-05 15:25:19 -06003013 }
me-cafebabeb52a4812022-07-28 03:45:22 +08003014 goto fail;
Ethan Yonker1b190162016-12-05 15:25:19 -06003015 }
Dees_Troy5bf43922012-09-07 16:07:55 -04003016
Dees_Troy0550cfb2012-10-13 11:56:13 -04003017 Was_Already_Mounted = Is_Mounted();
bigbiffee7b7ff2020-03-23 15:08:27 -04003018
Dees_Troy38bd7602012-09-14 13:33:53 -04003019 if (Removable || Is_Encrypted) {
3020 if (!Mount(false))
me-cafebabeb52a4812022-07-28 03:45:22 +08003021 goto success;
Dees_Troy38bd7602012-09-14 13:33:53 -04003022 } else if (!Mount(Display_Error))
me-cafebabeb52a4812022-07-28 03:45:22 +08003023 goto fail;
Dees_Troy51127312012-09-08 13:08:49 -04003024
3025 ret = Get_Size_Via_statfs(Display_Error);
Dees_Troy0550cfb2012-10-13 11:56:13 -04003026 if (!ret || Size == 0) {
3027 if (!Get_Size_Via_df(Display_Error)) {
3028 if (!Was_Already_Mounted)
3029 UnMount(false);
me-cafebabeb52a4812022-07-28 03:45:22 +08003030 goto fail;
Dees_Troy0550cfb2012-10-13 11:56:13 -04003031 }
3032 }
Dees_Troy51127312012-09-08 13:08:49 -04003033
Dees_Troy5bf43922012-09-07 16:07:55 -04003034 if (Has_Data_Media) {
3035 if (Mount(Display_Error)) {
Ethan Yonker3fdcda42016-11-30 12:29:37 -06003036 Used = backup_exclusions.Get_Folder_Size(Mount_Point);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05003037 Backup_Size = Used;
3038 int bak = (int)(Used / 1048576LLU);
Dees_Troy51127312012-09-08 13:08:49 -04003039 int fre = (int)(Free / 1048576LLU);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05003040 LOGINFO("Data backup size is %iMB, free: %iMB.\n", bak, fre);
Dees_Troy0550cfb2012-10-13 11:56:13 -04003041 } else {
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 }
Dees_Troye58d5262012-09-21 12:27:57 -04003046 } else if (Has_Android_Secure) {
3047 if (Mount(Display_Error))
Ethan Yonker3fdcda42016-11-30 12:29:37 -06003048 Backup_Size = backup_exclusions.Get_Folder_Size(Backup_Path);
Dees_Troy0550cfb2012-10-13 11:56:13 -04003049 else {
3050 if (!Was_Already_Mounted)
3051 UnMount(false);
me-cafebabeb52a4812022-07-28 03:45:22 +08003052 goto fail;
Dees_Troy0550cfb2012-10-13 11:56:13 -04003053 }
Dees_Troy5bf43922012-09-07 16:07:55 -04003054 }
Dees_Troy0550cfb2012-10-13 11:56:13 -04003055 if (!Was_Already_Mounted)
3056 UnMount(false);
me-cafebabeb52a4812022-07-28 03:45:22 +08003057success:
3058 Mount_Read_Only = ro;
Dees_Troy5bf43922012-09-07 16:07:55 -04003059 return true;
me-cafebabeb52a4812022-07-28 03:45:22 +08003060fail:
3061 Mount_Read_Only = ro;
3062 return false;
Dees_Troy51127312012-09-08 13:08:49 -04003063}
Dees_Troy38bd7602012-09-14 13:33:53 -04003064
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003065bool TWPartition::Find_Wildcard_Block_Devices(const string& Device) {
3066 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
3067 string Path = TWFunc::Get_Path(Device);
3068 string Dev = TWFunc::Get_Filename(Device);
3069 size_t wildcard_index = Dev.find("*");
3070 if (wildcard_index != string::npos)
3071 Dev = Dev.substr(0, wildcard_index);
3072 wildcard_index = Dev.size();
3073 DIR* d = opendir(Path.c_str());
3074 if (d == NULL) {
3075 LOGINFO("Error opening '%s': %s\n", Path.c_str(), strerror(errno));
3076 return false;
3077 }
3078 struct dirent* de;
3079 while ((de = readdir(d)) != NULL) {
3080 if (de->d_type != DT_BLK || strlen(de->d_name) <= wildcard_index || strncmp(de->d_name, Dev.c_str(), wildcard_index) != 0)
3081 continue;
3082
3083 string item = Path + "/";
3084 item.append(de->d_name);
3085 if (PartitionManager.Find_Partition_By_Block_Device(item))
3086 continue;
3087 TWPartition *part = new TWPartition;
3088 char buffer[MAX_FSTAB_LINE_LENGTH];
3089 sprintf(buffer, "%s %s-%i auto defaults defaults", item.c_str(), Mount_Point.c_str(), ++mount_point_index);
bigbiff8da46fa2020-09-08 16:42:34 -04003090 part->Process_Fstab_Line(buffer, false, NULL);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003091 char display[MAX_FSTAB_LINE_LENGTH];
3092 sprintf(display, "%s %i", Storage_Name.c_str(), mount_point_index);
3093 part->Storage_Name = display;
3094 part->Display_Name = display;
3095 part->Primary_Block_Device = item;
3096 part->Wildcard_Block_Device = false;
3097 part->Is_SubPartition = true;
3098 part->SubPartition_Of = Mount_Point;
3099 part->Is_Storage = Is_Storage;
3100 part->Can_Be_Mounted = true;
3101 part->Removable = true;
3102 part->Can_Be_Wiped = Can_Be_Wiped;
3103 part->Wipe_Available_in_GUI = Wipe_Available_in_GUI;
3104 part->Find_Actual_Block_Device();
3105 part->Update_Size(false);
3106 Has_SubPartition = true;
3107 PartitionManager.Output_Partition(part);
3108 PartitionManager.Add_Partition(part);
3109 }
3110 closedir(d);
3111 return (mount_point_index > 0);
3112}
3113
Dees_Troy38bd7602012-09-14 13:33:53 -04003114void TWPartition::Find_Actual_Block_Device(void) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06003115 if (!Sysfs_Entry.empty() && Primary_Block_Device.empty() && Decrypted_Block_Device.empty()) {
3116 /* Sysfs_Entry.empty() indicates if this is a sysfs entry that begins with /device/
3117 * If we have a syfs entry then we are looking for this device from a uevent add.
3118 * The uevent add will set the primary block device based on the data we receive from
3119 * after checking for adopted storage. If the device ends up being adopted, then the
3120 * decrypted block device will be set instead of the primary block device. */
3121 Is_Present = false;
3122 return;
3123 }
3124 if (Wildcard_Block_Device && !Is_Adopted_Storage) {
3125 Is_Present = false;
3126 Actual_Block_Device = "";
3127 Can_Be_Mounted = false;
3128 if (!Find_Wildcard_Block_Devices(Primary_Block_Device)) {
3129 string Dev = Primary_Block_Device.substr(0, Primary_Block_Device.find("*"));
3130 if (TWFunc::Path_Exists(Dev)) {
3131 Is_Present = true;
3132 Can_Be_Mounted = true;
3133 Actual_Block_Device = Dev;
3134 }
3135 }
3136 return;
3137 } else if (Is_Decrypted && !Decrypted_Block_Device.empty()) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003138 Actual_Block_Device = Decrypted_Block_Device;
Ethan Yonker1b190162016-12-05 15:25:19 -06003139 if (TWFunc::Path_Exists(Decrypted_Block_Device)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003140 Is_Present = true;
Ethan Yonker1b190162016-12-05 15:25:19 -06003141 return;
3142 }
3143 } else if (SlotSelect && TWFunc::Path_Exists(Primary_Block_Device + PartitionManager.Get_Active_Slot_Suffix())) {
3144 Actual_Block_Device = Primary_Block_Device + PartitionManager.Get_Active_Slot_Suffix();
3145 unlink(Primary_Block_Device.c_str());
3146 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
3147 Is_Present = true;
3148 return;
Dees_Troy43d8b002012-09-17 16:00:01 -04003149 } else if (TWFunc::Path_Exists(Primary_Block_Device)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04003150 Is_Present = true;
3151 Actual_Block_Device = Primary_Block_Device;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003152 return;
3153 }
Ethan Yonker1b190162016-12-05 15:25:19 -06003154 if (!Alternate_Block_Device.empty() && TWFunc::Path_Exists(Alternate_Block_Device)) {
Dees_Troy3f04d032012-10-07 18:20:09 -04003155 Actual_Block_Device = Alternate_Block_Device;
Dees_Troy38bd7602012-09-14 13:33:53 -04003156 Is_Present = true;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003157 } else {
Dees_Troy38bd7602012-09-14 13:33:53 -04003158 Is_Present = false;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003159 }
Dees_Troy38bd7602012-09-14 13:33:53 -04003160}
3161
3162void TWPartition::Recreate_Media_Folder(void) {
3163 string Command;
Ethan Yonker66a19492015-12-10 10:19:45 -06003164 string Media_Path = Mount_Point + "/media";
Dees_Troy38bd7602012-09-14 13:33:53 -04003165
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06003166 if (Is_FBE) {
3167 LOGINFO("Not recreating media folder on FBE\n");
3168 return;
3169 }
Dees_Troy38bd7602012-09-14 13:33:53 -04003170 if (!Mount(true)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003171 gui_msg(Msg(msg::kError, "recreate_folder_err=Unable to recreate {1} folder.")(Media_Path));
3172 } else if (!TWFunc::Path_Exists(Media_Path)) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003173 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Ethan Yonker66a19492015-12-10 10:19:45 -06003174 LOGINFO("Recreating %s folder.\n", Media_Path.c_str());
3175 mkdir(Media_Path.c_str(), 0770);
xiaolu9416f4f2015-06-04 08:22:23 +08003176 string Internal_path = DataManager::GetStrValue("tw_internal_path");
3177 if (!Internal_path.empty()) {
3178 LOGINFO("Recreating %s folder.\n", Internal_path.c_str());
3179 mkdir(Internal_path.c_str(), 0770);
3180 }
3181#ifdef TW_INTERNAL_STORAGE_PATH
3182 mkdir(EXPAND(TW_INTERNAL_STORAGE_PATH), 0770);
3183#endif
Matt Mower87413642017-01-17 21:14:46 -06003184
thata3d31fb2014-12-21 22:27:40 +01003185 // Afterwards, we will try to set the
3186 // default metadata that we were hopefully able to get during
3187 // early boot.
Ethan Yonker66a19492015-12-10 10:19:45 -06003188 tw_set_default_metadata(Media_Path.c_str());
xiaolu9416f4f2015-06-04 08:22:23 +08003189 if (!Internal_path.empty())
3190 tw_set_default_metadata(Internal_path.c_str());
Matt Mower87413642017-01-17 21:14:46 -06003191
Ethan Yonker5eac2222014-06-11 12:22:55 -05003192 // Toggle mount to ensure that "internal sdcard" gets mounted
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003193 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Ethan Yonker5eac2222014-06-11 12:22:55 -05003194 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Dees_Troy38bd7602012-09-14 13:33:53 -04003195 }
Dees_Troy43d8b002012-09-17 16:00:01 -04003196}
Dees_Troye58d5262012-09-21 12:27:57 -04003197
3198void TWPartition::Recreate_AndSec_Folder(void) {
Dees_Troye58d5262012-09-21 12:27:57 -04003199 if (!Has_Android_Secure)
3200 return;
Dees_Troy2673cec2013-04-02 20:22:16 +00003201 LOGINFO("Creating %s: %s\n", Backup_Display_Name.c_str(), Symlink_Path.c_str());
Dees_Troye58d5262012-09-21 12:27:57 -04003202 if (!Mount(true)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003203 gui_msg(Msg(msg::kError, "recreate_folder_err=Unable to recreate {1} folder.")(Backup_Name));
Dees_Troye58d5262012-09-21 12:27:57 -04003204 } else if (!TWFunc::Path_Exists(Symlink_Path)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00003205 LOGINFO("Recreating %s folder.\n", Backup_Name.c_str());
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003206 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05003207 mkdir(Symlink_Path.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05003208 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04003209 }
3210}
bigbiff7cb4c332014-11-26 20:36:07 -05003211
3212uint64_t TWPartition::Get_Max_FileSize() {
3213 uint64_t maxFileSize = 0;
3214 const uint64_t constGB = (uint64_t) 1024 * 1024 * 1024;
3215 const uint64_t constTB = (uint64_t) constGB * 1024;
3216 const uint64_t constPB = (uint64_t) constTB * 1024;
bigbiff0c532032014-12-21 13:41:26 -05003217 if (Current_File_System == "ext4")
3218 maxFileSize = 16 * constTB; //16 TB
3219 else if (Current_File_System == "vfat")
3220 maxFileSize = 4 * constGB; //4 GB
Captain Throwback47bf7202020-10-06 17:39:39 -04003221 else if (Current_File_System == "ntfs" || Current_File_System == "tntfs")
bigbiff0c532032014-12-21 13:41:26 -05003222 maxFileSize = 256 * constTB; //256 TB
3223 else if (Current_File_System == "exfat")
3224 maxFileSize = 16 * constPB; //16 PB
3225 else if (Current_File_System == "ext3")
3226 maxFileSize = 2 * constTB; //2 TB
3227 else if (Current_File_System == "f2fs")
3228 maxFileSize = 3.94 * constTB; //3.94 TB
bigbiff7cb4c332014-11-26 20:36:07 -05003229 else
3230 maxFileSize = 100000000L;
3231 return maxFileSize - 1;
3232}
3233
bigbiffce8f83c2015-12-12 18:30:21 -05003234bool TWPartition::Flash_Image(PartitionSettings *part_settings) {
3235 string Restore_File_System, full_filename;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003236
Ethan Yonkere080c1f2016-09-19 13:50:25 -05003237 full_filename = part_settings->Backup_Folder + "/" + Backup_FileName;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003238
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05003239 LOGINFO("Image filename is: %s\n", Backup_FileName.c_str());
bigbiffce8f83c2015-12-12 18:30:21 -05003240
3241 if (Backup_Method == BM_FILES) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06003242 LOGERR("Cannot flash images to file systems\n");
3243 return false;
3244 } else if (!Can_Flash_Img) {
3245 LOGERR("Cannot flash images to partitions %s\n", Display_Name.c_str());
3246 return false;
3247 } else {
3248 if (!Find_Partition_Size()) {
3249 LOGERR("Unable to find partition size for '%s'\n", Mount_Point.c_str());
3250 return false;
3251 }
bigbiffce8f83c2015-12-12 18:30:21 -05003252 unsigned long long image_size = TWFunc::Get_File_Size(full_filename);
Ethan Yonker96af84a2015-01-05 14:58:36 -06003253 if (image_size > Size) {
Ethan Yonker74db1572015-10-28 12:44:49 -05003254 LOGINFO("Size (%llu bytes) of image '%s' is larger than target device '%s' (%llu bytes)\n",
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05003255 image_size, Backup_FileName.c_str(), Actual_Block_Device.c_str(), Size);
Ethan Yonker74db1572015-10-28 12:44:49 -05003256 gui_err("img_size_err=Size of image is larger than target device");
Ethan Yonker96af84a2015-01-05 14:58:36 -06003257 return false;
3258 }
bigbiffce8f83c2015-12-12 18:30:21 -05003259 if (Backup_Method == BM_DD) {
3260 if (!part_settings->adbbackup) {
3261 if (Is_Sparse_Image(full_filename)) {
3262 return Flash_Sparse_Image(full_filename);
3263 }
Ethan Yonker472f5062016-02-25 13:47:30 -06003264 }
bigbiffce8f83c2015-12-12 18:30:21 -05003265 return Raw_Read_Write(part_settings);
3266 } else if (Backup_Method == BM_FLASH_UTILS) {
3267 return Flash_Image_FI(full_filename, NULL);
Ethan Yonker472f5062016-02-25 13:47:30 -06003268 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06003269 }
3270
3271 LOGERR("Unknown flash method for '%s'\n", Mount_Point.c_str());
3272 return false;
3273}
3274
Ethan Yonker472f5062016-02-25 13:47:30 -06003275bool TWPartition::Is_Sparse_Image(const string& Filename) {
HashBanged974bb2016-01-30 14:20:09 -05003276 uint32_t magic = 0;
3277 int fd = open(Filename.c_str(), O_RDONLY);
3278 if (fd < 0) {
3279 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Filename)(strerror(errno)));
3280 return false;
3281 }
bigbiffce8f83c2015-12-12 18:30:21 -05003282
HashBanged974bb2016-01-30 14:20:09 -05003283 if (read(fd, &magic, sizeof(magic)) != sizeof(magic)) {
3284 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Filename)(strerror(errno)));
3285 close(fd);
3286 return false;
3287 }
3288 close(fd);
Ethan Yonker472f5062016-02-25 13:47:30 -06003289 if (magic == SPARSE_HEADER_MAGIC)
3290 return true;
3291 return false;
3292}
3293
3294bool TWPartition::Flash_Sparse_Image(const string& Filename) {
3295 string Command;
3296
3297 gui_msg(Msg("flashing=Flashing {1}...")(Display_Name));
3298
3299 Command = "simg2img '" + Filename + "' '" + Actual_Block_Device + "'";
Ethan Yonker96af84a2015-01-05 14:58:36 -06003300 LOGINFO("Flash command: '%s'\n", Command.c_str());
3301 TWFunc::Exec_Cmd(Command);
3302 return true;
3303}
3304
Ethan Yonker472f5062016-02-25 13:47:30 -06003305bool TWPartition::Flash_Image_FI(const string& Filename, ProgressTracking *progress) {
Ethan Yonker96af84a2015-01-05 14:58:36 -06003306 string Command;
Ethan Yonker472f5062016-02-25 13:47:30 -06003307 unsigned long long file_size;
Ethan Yonker96af84a2015-01-05 14:58:36 -06003308
Ethan Yonker74db1572015-10-28 12:44:49 -05003309 gui_msg(Msg("flashing=Flashing {1}...")(Display_Name));
Ethan Yonker472f5062016-02-25 13:47:30 -06003310 if (progress) {
3311 file_size = (unsigned long long)(TWFunc::Get_File_Size(Filename));
3312 progress->SetPartitionSize(file_size);
3313 }
Ethan Yonker96af84a2015-01-05 14:58:36 -06003314 // Sometimes flash image doesn't like to flash due to the first 2KB matching, so we erase first to ensure that it flashes
3315 Command = "erase_image " + MTD_Name;
3316 LOGINFO("Erase command: '%s'\n", Command.c_str());
3317 TWFunc::Exec_Cmd(Command);
3318 Command = "flash_image " + MTD_Name + " '" + Filename + "'";
3319 LOGINFO("Flash command: '%s'\n", Command.c_str());
3320 TWFunc::Exec_Cmd(Command);
Ethan Yonker472f5062016-02-25 13:47:30 -06003321 if (progress)
3322 progress->UpdateSize(file_size);
Ethan Yonker96af84a2015-01-05 14:58:36 -06003323 return true;
3324}
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003325
3326void TWPartition::Change_Mount_Read_Only(bool new_value) {
3327 Mount_Read_Only = new_value;
3328}
3329
bigbiffce8f83c2015-12-12 18:30:21 -05003330bool TWPartition::Is_Read_Only() {
3331 return Mount_Read_Only;
3332}
3333
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003334int TWPartition::Check_Lifetime_Writes() {
3335 bool original_read_only = Mount_Read_Only;
3336 int ret = 1;
3337
3338 Mount_Read_Only = true;
3339 if (Mount(false)) {
3340 Find_Actual_Block_Device();
Ethan Yonker54970bb2019-01-17 16:19:24 -06003341 string temp = Actual_Block_Device;
3342 Find_Real_Block_Device(temp, false);
3343 string block = basename(temp.c_str());
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05003344 string file = "/sys/fs/" + Current_File_System + "/" + block + "/lifetime_write_kbytes";
3345 string result;
3346 if (TWFunc::Path_Exists(file)) {
3347 if (TWFunc::read_file(file, result) != 0) {
3348 LOGINFO("Check_Lifetime_Writes of '%s' failed to read_file\n", file.c_str());
3349 } else {
3350 LOGINFO("Check_Lifetime_Writes result: '%s'\n", result.c_str());
3351 if (result == "0") {
3352 ret = 0;
3353 }
3354 }
3355 } else {
3356 LOGINFO("Check_Lifetime_Writes file does not exist '%s'\n", file.c_str());
3357 }
3358 UnMount(true);
3359 } else {
3360 LOGINFO("Check_Lifetime_Writes failed to mount '%s'\n", Mount_Point.c_str());
3361 }
3362 Mount_Read_Only = original_read_only;
3363 return ret;
3364}
Ethan Yonker66a19492015-12-10 10:19:45 -06003365
3366int TWPartition::Decrypt_Adopted() {
3367#ifdef TW_INCLUDE_CRYPTO
3368 int ret = 1;
3369 Is_Adopted_Storage = false;
3370 string Adopted_Key_File = "";
3371
3372 if (!Removable)
3373 return ret;
3374
3375 int fd = open(Alternate_Block_Device.c_str(), O_RDONLY);
3376 if (fd < 0) {
3377 LOGINFO("failed to open '%s'\n", Alternate_Block_Device.c_str());
3378 return ret;
3379 }
3380 char type_guid[80];
3381 char part_guid[80];
3382
nkk717aa6fc62017-03-24 18:28:03 +02003383 uint32_t p_num;
3384 size_t last_digit = Primary_Block_Device.find_last_not_of("0123456789");
3385 if ((last_digit != string::npos) && (last_digit != Primary_Block_Device.length()-1))
3386 p_num = atoi(Primary_Block_Device.substr(last_digit + 1).c_str()) + 1;
3387 else
3388 p_num = 2;
3389
3390 if (gpt_disk_get_partition_info(fd, p_num, type_guid, part_guid) == 0) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003391 LOGINFO("type: '%s'\n", type_guid);
3392 LOGINFO("part: '%s'\n", part_guid);
3393 Adopted_GUID = part_guid;
3394 LOGINFO("Adopted_GUID '%s'\n", Adopted_GUID.c_str());
3395 if (strcmp(type_guid, TWGptAndroidExpand) == 0) {
3396 LOGINFO("android_expand found\n");
3397 Adopted_Key_File = "/data/misc/vold/expand_";
3398 Adopted_Key_File += part_guid;
3399 Adopted_Key_File += ".key";
3400 if (TWFunc::Path_Exists(Adopted_Key_File)) {
3401 Is_Adopted_Storage = true;
3402 /* Until we find a use case for this, I think it is safe
3403 * to disable USB Mass Storage whenever adopted storage
3404 * is present.
3405 */
nkk717aa6fc62017-03-24 18:28:03 +02003406 if (p_num == 2) {
3407 // TODO: Properly detect mixed vs fully adopted storage. Maybe this
3408 // should be moved to partitionmanager instead, and disable after
3409 // checking all partitions. Also the presence of adopted storage does
3410 // not necessarily mean it's being used as Internal Storage
3411 LOGINFO("Detected adopted storage, disabling USB mass storage mode\n");
3412 DataManager::SetValue("tw_has_usb_storage", 0);
3413 }
Ethan Yonker66a19492015-12-10 10:19:45 -06003414 }
3415 }
3416 }
3417
3418 if (Is_Adopted_Storage) {
nkk717aa6fc62017-03-24 18:28:03 +02003419 string Adopted_Block_Device = Alternate_Block_Device + "p" + TWFunc::to_string(p_num);
Ethan Yonker66a19492015-12-10 10:19:45 -06003420 if (!TWFunc::Path_Exists(Adopted_Block_Device)) {
nkk717aa6fc62017-03-24 18:28:03 +02003421 Adopted_Block_Device = Alternate_Block_Device + TWFunc::to_string(p_num);
Ethan Yonker66a19492015-12-10 10:19:45 -06003422 if (!TWFunc::Path_Exists(Adopted_Block_Device)) {
3423 LOGINFO("Adopted block device does not exist\n");
3424 goto exit;
3425 }
3426 }
3427 LOGINFO("key file is '%s', block device '%s'\n", Adopted_Key_File.c_str(), Adopted_Block_Device.c_str());
3428 char crypto_blkdev[MAXPATHLEN];
3429 std::string thekey;
3430 int fdkey = open(Adopted_Key_File.c_str(), O_RDONLY);
3431 if (fdkey < 0) {
3432 LOGINFO("failed to open key file\n");
3433 goto exit;
3434 }
3435 char buf[512];
3436 ssize_t n;
3437 while ((n = read(fdkey, &buf[0], sizeof(buf))) > 0) {
3438 thekey.append(buf, n);
3439 }
3440 close(fdkey);
bigbiffdf53b6c2022-01-17 19:31:52 -05003441 // unsigned char* key = (unsigned char*) thekey.data();
3442 // cryptfs_revert_ext_volume(part_guid);
Ethan Yonker66a19492015-12-10 10:19:45 -06003443
bigbiffdf53b6c2022-01-17 19:31:52 -05003444 // ret = cryptfs_setup_ext_volume(part_guid, Adopted_Block_Device.c_str(), key, thekey.size(), crypto_blkdev);
Ethan Yonker66a19492015-12-10 10:19:45 -06003445 if (ret == 0) {
3446 LOGINFO("adopted storage new block device: '%s'\n", crypto_blkdev);
3447 Decrypted_Block_Device = crypto_blkdev;
3448 Is_Decrypted = true;
3449 Is_Encrypted = true;
3450 Find_Actual_Block_Device();
Kjell Braden3126a112016-06-19 16:58:15 +00003451 if (!Mount_Storage_Retry(false)) {
Ethan Yonker66a19492015-12-10 10:19:45 -06003452 LOGERR("Failed to mount decrypted adopted storage device\n");
3453 Is_Decrypted = false;
3454 Is_Encrypted = false;
bigbiffdf53b6c2022-01-17 19:31:52 -05003455 // cryptfs_revert_ext_volume(part_guid);
Ethan Yonker66a19492015-12-10 10:19:45 -06003456 ret = 1;
3457 } else {
Ethan Yonkerfcf3f242016-02-16 12:30:26 -06003458 UnMount(false);
3459 Has_Android_Secure = false;
3460 Symlink_Path = "";
3461 Symlink_Mount_Point = "";
3462 Backup_Name = Mount_Point.substr(1);
3463 Backup_Path = Mount_Point;
3464 TWPartition* sdext = PartitionManager.Find_Partition_By_Path("/sd-ext");
3465 if (sdext && sdext->Actual_Block_Device == Adopted_Block_Device) {
3466 LOGINFO("Removing /sd-ext from partition list due to adopted storage\n");
3467 PartitionManager.Remove_Partition_By_Path("/sd-ext");
3468 }
Ethan Yonker66a19492015-12-10 10:19:45 -06003469 Setup_Data_Media();
Ethan Yonker66a19492015-12-10 10:19:45 -06003470 Wipe_Available_in_GUI = true;
3471 Wipe_During_Factory_Reset = true;
3472 Can_Be_Backed_Up = true;
3473 Can_Encrypt_Backup = true;
3474 Use_Userdata_Encryption = true;
3475 Is_Storage = true;
3476 Storage_Name = "Adopted Storage";
3477 Is_SubPartition = true;
3478 SubPartition_Of = "/data";
3479 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
3480 DataManager::SetValue("tw_has_adopted_storage", 1);
3481 }
3482 } else {
3483 LOGERR("Failed to setup adopted storage decryption\n");
3484 }
3485 }
3486exit:
Matt Mower06543e32017-01-06 15:25:26 -06003487 close(fd);
Ethan Yonker66a19492015-12-10 10:19:45 -06003488 return ret;
3489#else
3490 LOGINFO("Decrypt_Adopted: no crypto support\n");
3491 return 1;
3492#endif
3493}
3494
3495void TWPartition::Revert_Adopted() {
3496#ifdef TW_INCLUDE_CRYPTO
3497 if (!Adopted_GUID.empty()) {
3498 PartitionManager.Remove_MTP_Storage(Mount_Point);
3499 UnMount(false);
bigbiffdf53b6c2022-01-17 19:31:52 -05003500 // cryptfs_revert_ext_volume(Adopted_GUID.c_str());
Ethan Yonker66a19492015-12-10 10:19:45 -06003501 Is_Adopted_Storage = false;
3502 Is_Encrypted = false;
3503 Is_Decrypted = false;
3504 Decrypted_Block_Device = "";
3505 Find_Actual_Block_Device();
3506 Wipe_During_Factory_Reset = false;
3507 Can_Be_Backed_Up = false;
3508 Can_Encrypt_Backup = false;
3509 Use_Userdata_Encryption = false;
3510 Is_SubPartition = false;
3511 SubPartition_Of = "";
3512 Has_Data_Media = false;
3513 Storage_Path = Mount_Point;
3514 if (!Symlink_Mount_Point.empty()) {
3515 TWPartition* Dat = PartitionManager.Find_Partition_By_Path("/data");
3516 if (Dat) {
3517 Dat->UnMount(false);
3518 Dat->Symlink_Mount_Point = Symlink_Mount_Point;
3519 }
3520 Symlink_Mount_Point = "";
3521 }
3522 }
3523#else
3524 LOGINFO("Revert_Adopted: no crypto support\n");
3525#endif
3526}
bigbiff bigbiffb5ecaad2017-03-20 18:53:53 -04003527
3528void TWPartition::Set_Backup_FileName(string fname) {
3529 Backup_FileName = fname;
3530}
3531
3532string TWPartition::Get_Backup_Name() {
3533 return Backup_Name;
3534}
bigbiffee7b7ff2020-03-23 15:08:27 -04003535
3536string TWPartition::Get_Mount_Point() {
3537 return Mount_Point;
3538}
3539
3540void TWPartition::Set_Block_Device(std::string block_device) {
3541 Primary_Block_Device = Actual_Block_Device = block_device;
3542}
3543
3544bool TWPartition::Get_Super_Status() {
3545 return Is_Super;
3546}
3547
3548void TWPartition::Set_Can_Be_Backed_Up(bool val) {
3549 Can_Be_Backed_Up = val;
3550}
3551
3552void TWPartition::Set_Can_Be_Wiped(bool val) {
3553 Can_Be_Wiped = val;
3554 Wipe_Available_in_GUI = val;
bigbiffad58e1b2020-07-06 20:24:34 -04003555}
3556
3557std::string TWPartition::Get_Backup_FileName() {
3558 return Backup_FileName;
3559}
3560
3561std::string TWPartition::Get_Display_Name() {
3562 return Display_Name;
3563}
3564
3565bool TWPartition::Is_SlotSelect() {
3566 return SlotSelect;
Mohd Faraz815e2402020-09-19 19:31:52 +05303567}