blob: 434115979e09f37a67da1ce70a832d11db9e04c7 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05002 Copyright 2013 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>
22#include <sys/stat.h>
23#include <sys/vfs.h>
Dees_Troy5bf43922012-09-07 16:07:55 -040024#include <sys/mount.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040025#include <unistd.h>
Dees_Troy51127312012-09-08 13:08:49 -040026#include <dirent.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050027#include <iostream>
28#include <sstream>
Dees_Troy51a0e822012-09-05 15:24:24 -040029
Dees_Troy657c3092012-09-10 20:32:10 -040030#ifdef TW_INCLUDE_CRYPTO
31 #include "cutils/properties.h"
32#endif
33
bigbiff7b4c7a62015-01-01 19:44:14 -050034#include "libblkid/include/blkid.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040035#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000036#include "twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040037#include "partitions.hpp"
Dees_Troy5bf43922012-09-07 16:07:55 -040038#include "data.hpp"
Dees_Troy43d8b002012-09-17 16:00:01 -040039#include "twrp-functions.hpp"
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -050040#include "twrpDigest.hpp"
bigbiff bigbiff9c754052013-01-09 09:09:08 -050041#include "twrpTar.hpp"
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050042#include "twrpDU.hpp"
bigbiff bigbiff6b600f92014-01-05 18:13:43 -050043#include "fixPermissions.hpp"
Ethan Yonker1b7a31b2014-07-03 15:09:22 -050044#include "infomanager.hpp"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060045#include "set_metadata.h"
Dees_Troy5bf43922012-09-07 16:07:55 -040046extern "C" {
Dees_Troy38bd7602012-09-14 13:33:53 -040047 #include "mtdutils/mtdutils.h"
48 #include "mtdutils/mounts.h"
Dees_Troya95f55c2013-08-17 13:14:43 +000049#ifdef USE_EXT4
50 #include "make_ext4fs.h"
51#endif
Ethan Yonker71413f42014-02-26 13:36:08 -060052
53#ifdef TW_INCLUDE_CRYPTO
Ethan Yonker253368a2014-11-25 15:00:52 -060054 #include "crypto/lollipop/cryptfs.h"
Ethan Yonker71413f42014-02-26 13:36:08 -060055#endif
Dees_Troy5bf43922012-09-07 16:07:55 -040056}
bigbiff bigbiffc49d7062013-10-11 20:28:00 -040057#ifdef HAVE_SELINUX
58#include "selinux/selinux.h"
Ethan Yonkerf27497f2014-02-09 11:48:33 -060059#include <selinux/label.h>
bigbiff bigbiffc49d7062013-10-11 20:28:00 -040060#endif
Dees Troy4159aed2014-02-28 17:24:43 +000061#ifdef HAVE_CAPABILITIES
62#include <sys/capability.h>
63#include <sys/xattr.h>
64#include <linux/xattr.h>
65#endif
Dees_Troy51a0e822012-09-05 15:24:24 -040066
bigbiff bigbiff9c754052013-01-09 09:09:08 -050067using namespace std;
68
Dees_Troya95f55c2013-08-17 13:14:43 +000069extern struct selabel_handle *selinux_handle;
Ethan Yonker6277c792014-09-15 14:54:30 -050070extern bool datamedia;
Dees_Troya95f55c2013-08-17 13:14:43 +000071
Hashcode62bd9e02013-11-19 21:59:42 -080072struct flag_list {
73 const char *name;
74 unsigned flag;
75};
76
77static struct flag_list mount_flags[] = {
78 { "noatime", MS_NOATIME },
79 { "noexec", MS_NOEXEC },
80 { "nosuid", MS_NOSUID },
81 { "nodev", MS_NODEV },
82 { "nodiratime", MS_NODIRATIME },
83 { "ro", MS_RDONLY },
84 { "rw", 0 },
85 { "remount", MS_REMOUNT },
86 { "bind", MS_BIND },
87 { "rec", MS_REC },
Dees Troyc4bc30e2014-02-03 15:04:19 +000088#ifdef MS_UNBINDABLE
Hashcode62bd9e02013-11-19 21:59:42 -080089 { "unbindable", MS_UNBINDABLE },
Dees Troyc4bc30e2014-02-03 15:04:19 +000090#endif
91#ifdef MS_PRIVATE
Hashcode62bd9e02013-11-19 21:59:42 -080092 { "private", MS_PRIVATE },
Dees Troyc4bc30e2014-02-03 15:04:19 +000093#endif
94#ifdef MS_SLAVE
Hashcode62bd9e02013-11-19 21:59:42 -080095 { "slave", MS_SLAVE },
Dees Troyc4bc30e2014-02-03 15:04:19 +000096#endif
97#ifdef MS_SHARED
Hashcode62bd9e02013-11-19 21:59:42 -080098 { "shared", MS_SHARED },
Dees Troyc4bc30e2014-02-03 15:04:19 +000099#endif
Hashcode62bd9e02013-11-19 21:59:42 -0800100 { "sync", MS_SYNCHRONOUS },
101 { "defaults", 0 },
102 { 0, 0 },
103};
104
that9e0593e2014-10-08 00:01:24 +0200105TWPartition::TWPartition() {
Dees_Troy51a0e822012-09-05 15:24:24 -0400106 Can_Be_Mounted = false;
107 Can_Be_Wiped = false;
Dees_Troya13d74f2013-03-24 08:54:55 -0500108 Can_Be_Backed_Up = false;
Vojtech Bocek1dc30982013-08-30 21:49:30 +0200109 Use_Rm_Rf = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400110 Wipe_During_Factory_Reset = false;
111 Wipe_Available_in_GUI = false;
112 Is_SubPartition = false;
Dees_Troy2691f9d2012-09-24 11:15:49 -0400113 Has_SubPartition = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400114 SubPartition_Of = "";
115 Symlink_Path = "";
116 Symlink_Mount_Point = "";
117 Mount_Point = "";
Dees_Troye58d5262012-09-21 12:27:57 -0400118 Backup_Path = "";
Dees_Troy38bd7602012-09-14 13:33:53 -0400119 Actual_Block_Device = "";
120 Primary_Block_Device = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400121 Alternate_Block_Device = "";
122 Removable = false;
123 Is_Present = false;
124 Length = 0;
125 Size = 0;
126 Used = 0;
127 Free = 0;
128 Backup_Size = 0;
129 Can_Be_Encrypted = false;
130 Is_Encrypted = false;
131 Is_Decrypted = false;
Ethan Yonker253368a2014-11-25 15:00:52 -0600132 Mount_To_Decrypt = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400133 Decrypted_Block_Device = "";
134 Display_Name = "";
Dees_Troya13d74f2013-03-24 08:54:55 -0500135 Backup_Display_Name = "";
136 Storage_Name = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400137 Backup_Name = "";
Dees_Troy63c8df72012-09-10 14:02:05 -0400138 Backup_FileName = "";
Dees_Troy38bd7602012-09-14 13:33:53 -0400139 MTD_Name = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400140 Backup_Method = NONE;
Dees_Troy83bd4832013-05-04 12:39:56 +0000141 Can_Encrypt_Backup = false;
142 Use_Userdata_Encryption = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400143 Has_Data_Media = false;
Dees_Troye58d5262012-09-21 12:27:57 -0400144 Has_Android_Secure = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400145 Is_Storage = false;
Dees_Troya13d74f2013-03-24 08:54:55 -0500146 Is_Settings_Storage = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400147 Storage_Path = "";
148 Current_File_System = "";
149 Fstab_File_System = "";
Hashcode62bd9e02013-11-19 21:59:42 -0800150 Mount_Flags = 0;
151 Mount_Options = "";
Dees_Troy51a0e822012-09-05 15:24:24 -0400152 Format_Block_Size = 0;
Dees_Troy68cab492012-12-12 19:29:35 +0000153 Ignore_Blkid = false;
Dees_Troy16c2b312013-01-15 16:51:18 +0000154 Retain_Layout_Version = false;
Ethan Yonker253368a2014-11-25 15:00:52 -0600155 Crypto_Key_Location = "footer";
Ethan Yonker726a0202014-12-16 20:01:38 -0600156 MTP_Storage_ID = 0;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600157 Can_Flash_Img = false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400158}
159
160TWPartition::~TWPartition(void) {
161 // Do nothing
162}
163
Dees_Troy5bf43922012-09-07 16:07:55 -0400164bool TWPartition::Process_Fstab_Line(string Line, bool Display_Error) {
165 char full_line[MAX_FSTAB_LINE_LENGTH], item[MAX_FSTAB_LINE_LENGTH];
166 int line_len = Line.size(), index = 0, item_index = 0;
167 char* ptr;
Dees_Troy51127312012-09-08 13:08:49 -0400168 string Flags;
Dees_Troy5bf43922012-09-07 16:07:55 -0400169 strncpy(full_line, Line.c_str(), line_len);
Dees_Troya13d74f2013-03-24 08:54:55 -0500170 bool skip = false;
Dees_Troy5bf43922012-09-07 16:07:55 -0400171
Dees_Troy51127312012-09-08 13:08:49 -0400172 for (index = 0; index < line_len; index++) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500173 if (full_line[index] == 34)
174 skip = !skip;
175 if (!skip && full_line[index] <= 32)
Dees_Troy5bf43922012-09-07 16:07:55 -0400176 full_line[index] = '\0';
Dees_Troy5bf43922012-09-07 16:07:55 -0400177 }
Dees_Troy7c2dec82012-09-26 09:49:14 -0400178 Mount_Point = full_line;
Dees_Troy2673cec2013-04-02 20:22:16 +0000179 LOGINFO("Processing '%s'\n", Mount_Point.c_str());
Dees_Troye58d5262012-09-21 12:27:57 -0400180 Backup_Path = Mount_Point;
Dees_Troya13d74f2013-03-24 08:54:55 -0500181 Storage_Path = Mount_Point;
Dees_Troy70737fa2013-04-08 13:19:20 +0000182 Display_Name = full_line + 1;
183 Backup_Display_Name = Display_Name;
184 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400185 index = Mount_Point.size();
186 while (index < line_len) {
187 while (index < line_len && full_line[index] == '\0')
188 index++;
189 if (index >= line_len)
190 continue;
191 ptr = full_line + index;
192 if (item_index == 0) {
193 // File System
194 Fstab_File_System = ptr;
195 Current_File_System = ptr;
196 item_index++;
197 } else if (item_index == 1) {
198 // Primary Block Device
Dees_Troy38bd7602012-09-14 13:33:53 -0400199 if (Fstab_File_System == "mtd" || Fstab_File_System == "yaffs2") {
Dees_Troy094207a2012-09-26 12:00:39 -0400200 MTD_Name = ptr;
201 Find_MTD_Block_Device(MTD_Name);
Dees_Troy5fcd8f92012-10-16 12:22:05 -0400202 } else if (Fstab_File_System == "bml") {
203 if (Mount_Point == "/boot")
204 MTD_Name = "boot";
205 else if (Mount_Point == "/recovery")
206 MTD_Name = "recovery";
207 Primary_Block_Device = ptr;
208 if (*ptr != '/')
Dees_Troy2673cec2013-04-02 20:22:16 +0000209 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 -0400210 } else if (*ptr != '/') {
Dees_Troy5bf43922012-09-07 16:07:55 -0400211 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000212 LOGERR("Invalid block device on '%s', '%s', %i\n", Line.c_str(), ptr, index);
Dees_Troy5bf43922012-09-07 16:07:55 -0400213 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000214 LOGINFO("Invalid block device on '%s', '%s', %i\n", Line.c_str(), ptr, index);
Dees_Troy5bf43922012-09-07 16:07:55 -0400215 return 0;
Dees_Troy38bd7602012-09-14 13:33:53 -0400216 } else {
217 Primary_Block_Device = ptr;
218 Find_Real_Block_Device(Primary_Block_Device, Display_Error);
Dees_Troy5bf43922012-09-07 16:07:55 -0400219 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400220 item_index++;
221 } else if (item_index > 1) {
222 if (*ptr == '/') {
223 // Alternate Block Device
224 Alternate_Block_Device = ptr;
225 Find_Real_Block_Device(Alternate_Block_Device, Display_Error);
226 } else if (strlen(ptr) > 7 && strncmp(ptr, "length=", 7) == 0) {
227 // Partition length
228 ptr += 7;
229 Length = atoi(ptr);
Dees_Troy51127312012-09-08 13:08:49 -0400230 } else if (strlen(ptr) > 6 && strncmp(ptr, "flags=", 6) == 0) {
231 // Custom flags, save for later so that new values aren't overwritten by defaults
232 ptr += 6;
233 Flags = ptr;
Dees_Troy68cab492012-12-12 19:29:35 +0000234 Process_Flags(Flags, Display_Error);
Dees_Troy38bd7602012-09-14 13:33:53 -0400235 } else if (strlen(ptr) == 4 && (strncmp(ptr, "NULL", 4) == 0 || strncmp(ptr, "null", 4) == 0 || strncmp(ptr, "null", 4) == 0)) {
236 // Do nothing
Dees_Troy5bf43922012-09-07 16:07:55 -0400237 } else {
238 // Unhandled data
Dees_Troy2673cec2013-04-02 20:22:16 +0000239 LOGINFO("Unhandled fstab information: '%s', %i, line: '%s'\n", ptr, index, Line.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400240 }
241 }
242 while (index < line_len && full_line[index] != '\0')
243 index++;
244 }
245
246 if (!Is_File_System(Fstab_File_System) && !Is_Image(Fstab_File_System)) {
247 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000248 LOGERR("Unknown File System: '%s'\n", Fstab_File_System.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400249 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000250 LOGINFO("Unknown File System: '%s'\n", Fstab_File_System.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400251 return 0;
252 } else if (Is_File_System(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400253 Find_Actual_Block_Device();
Dees_Troy5bf43922012-09-07 16:07:55 -0400254 Setup_File_System(Display_Error);
255 if (Mount_Point == "/system") {
256 Display_Name = "System";
Dees_Troya13d74f2013-03-24 08:54:55 -0500257 Backup_Display_Name = Display_Name;
258 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400259 Wipe_Available_in_GUI = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500260 Can_Be_Backed_Up = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400261 } else if (Mount_Point == "/data") {
262 Display_Name = "Data";
Dees_Troya13d74f2013-03-24 08:54:55 -0500263 Backup_Display_Name = Display_Name;
264 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400265 Wipe_Available_in_GUI = true;
Dees_Troy51127312012-09-08 13:08:49 -0400266 Wipe_During_Factory_Reset = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500267 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000268 Can_Encrypt_Backup = true;
269 Use_Userdata_Encryption = true;
Ethan Yonker6277c792014-09-15 14:54:30 -0500270 if (datamedia)
that9e0593e2014-10-08 00:01:24 +0200271 Setup_Data_Media();
Dees_Troy5bf43922012-09-07 16:07:55 -0400272#ifdef TW_INCLUDE_CRYPTO
273 Can_Be_Encrypted = true;
Dees_Troy657c3092012-09-10 20:32:10 -0400274 char crypto_blkdev[255];
275 property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, "error");
276 if (strcmp(crypto_blkdev, "error") != 0) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400277 DataManager::SetValue(TW_DATA_BLK_DEVICE, Primary_Block_Device);
Dees_Troy657c3092012-09-10 20:32:10 -0400278 DataManager::SetValue(TW_IS_DECRYPTED, 1);
279 Is_Encrypted = true;
280 Is_Decrypted = true;
281 Decrypted_Block_Device = crypto_blkdev;
Dees_Troy2673cec2013-04-02 20:22:16 +0000282 LOGINFO("Data already decrypted, new block device: '%s'\n", crypto_blkdev);
Dees_Troy657c3092012-09-10 20:32:10 -0400283 } else if (!Mount(false)) {
Ethan Yonker71413f42014-02-26 13:36:08 -0600284 if (Is_Present) {
Ethan Yonker253368a2014-11-25 15:00:52 -0600285 set_partition_data(Actual_Block_Device.c_str(), Crypto_Key_Location.c_str(), Fstab_File_System.c_str());
Ethan Yonker71413f42014-02-26 13:36:08 -0600286 if (cryptfs_check_footer() == 0) {
287 Is_Encrypted = true;
288 Is_Decrypted = false;
289 Can_Be_Mounted = false;
290 Current_File_System = "emmc";
291 Setup_Image(Display_Error);
292 DataManager::SetValue(TW_IS_ENCRYPTED, 1);
293 DataManager::SetValue(TW_CRYPTO_PASSWORD, "");
294 DataManager::SetValue("tw_crypto_display", "");
295 } else {
296 LOGERR("Could not mount /data and unable to find crypto footer.\n");
297 }
298 } else {
299 LOGERR("Primary block device '%s' for mount point '%s' is not present!\n", Primary_Block_Device.c_str(), Mount_Point.c_str());
300 }
Gary Peck82599a82012-11-21 16:23:12 -0800301 } else {
302 // Filesystem is not encrypted and the mount
303 // succeeded, so get it back to the original
304 // unmounted state
305 UnMount(false);
Dees_Troy51127312012-09-08 13:08:49 -0400306 }
Ethan Yonker6277c792014-09-15 14:54:30 -0500307 if (datamedia && (!Is_Encrypted || (Is_Encrypted && Is_Decrypted)))
Dees_Troy9b21af72012-10-01 15:51:46 -0400308 Recreate_Media_Folder();
Dees_Troy9b21af72012-10-01 15:51:46 -0400309#else
Ethan Yonker6277c792014-09-15 14:54:30 -0500310 if (datamedia)
311 Recreate_Media_Folder();
Dees_Troy5bf43922012-09-07 16:07:55 -0400312#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400313 } else if (Mount_Point == "/cache") {
314 Display_Name = "Cache";
Dees_Troya13d74f2013-03-24 08:54:55 -0500315 Backup_Display_Name = Display_Name;
316 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400317 Wipe_Available_in_GUI = true;
Dees_Troy51127312012-09-08 13:08:49 -0400318 Wipe_During_Factory_Reset = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500319 Can_Be_Backed_Up = true;
Dees_Troyce2fe772012-09-28 12:34:33 -0400320 if (Mount(false) && !TWFunc::Path_Exists("/cache/recovery/.")) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000321 LOGINFO("Recreating /cache/recovery folder.\n");
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500322 if (mkdir("/cache/recovery", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0)
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500323 return -1;
Dees_Troyb46a6842012-09-25 11:06:46 -0400324 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400325 } else if (Mount_Point == "/datadata") {
Dees_Troy51127312012-09-08 13:08:49 -0400326 Wipe_During_Factory_Reset = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400327 Display_Name = "DataData";
Dees_Troya13d74f2013-03-24 08:54:55 -0500328 Backup_Display_Name = Display_Name;
329 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400330 Is_SubPartition = true;
331 SubPartition_Of = "/data";
Dees_Troy5bf43922012-09-07 16:07:55 -0400332 DataManager::SetValue(TW_HAS_DATADATA, 1);
Dees_Troya13d74f2013-03-24 08:54:55 -0500333 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000334 Can_Encrypt_Backup = true;
335 Use_Userdata_Encryption = false; // This whole partition should be encrypted
Dees_Troy5bf43922012-09-07 16:07:55 -0400336 } else if (Mount_Point == "/sd-ext") {
Dees_Troy51127312012-09-08 13:08:49 -0400337 Wipe_During_Factory_Reset = true;
Dees_Troy5bf43922012-09-07 16:07:55 -0400338 Display_Name = "SD-Ext";
Dees_Troya13d74f2013-03-24 08:54:55 -0500339 Backup_Display_Name = Display_Name;
340 Storage_Name = Display_Name;
Dees_Troy5bf43922012-09-07 16:07:55 -0400341 Wipe_Available_in_GUI = true;
Dees_Troyc51f1f92012-09-20 15:32:13 -0400342 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500343 Can_Be_Backed_Up = true;
Dees_Troy83bd4832013-05-04 12:39:56 +0000344 Can_Encrypt_Backup = true;
345 Use_Userdata_Encryption = true;
Dees_Troy2c50e182012-09-26 20:05:28 -0400346 } else if (Mount_Point == "/boot") {
347 Display_Name = "Boot";
Dees_Troya13d74f2013-03-24 08:54:55 -0500348 Backup_Display_Name = Display_Name;
Dees_Troy2c50e182012-09-26 20:05:28 -0400349 DataManager::SetValue("tw_boot_is_mountable", 1);
Dees_Troya13d74f2013-03-24 08:54:55 -0500350 Can_Be_Backed_Up = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400351 }
352#ifdef TW_EXTERNAL_STORAGE_PATH
353 if (Mount_Point == EXPAND(TW_EXTERNAL_STORAGE_PATH)) {
354 Is_Storage = true;
355 Storage_Path = EXPAND(TW_EXTERNAL_STORAGE_PATH);
Dees_Troyc51f1f92012-09-20 15:32:13 -0400356 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500357 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400358#else
Dees_Troy70737fa2013-04-08 13:19:20 +0000359 if (Mount_Point == "/sdcard" || Mount_Point == "/external_sd" || Mount_Point == "/external_sdcard") {
Dees_Troy8170a922012-09-18 15:40:25 -0400360 Is_Storage = true;
Dees_Troyc51f1f92012-09-20 15:32:13 -0400361 Removable = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500362 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400363#endif
Dees_Troyb05ddee2013-01-28 20:24:50 +0000364 }
Dees_Troy8170a922012-09-18 15:40:25 -0400365#ifdef TW_INTERNAL_STORAGE_PATH
366 if (Mount_Point == EXPAND(TW_INTERNAL_STORAGE_PATH)) {
367 Is_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500368 Is_Settings_Storage = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400369 Storage_Path = EXPAND(TW_INTERNAL_STORAGE_PATH);
Dees_Troya13d74f2013-03-24 08:54:55 -0500370 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400371 }
372#else
Dees_Troy70737fa2013-04-08 13:19:20 +0000373 if (Mount_Point == "/emmc" || Mount_Point == "/internal_sd" || Mount_Point == "/internal_sdcard") {
Dees_Troy8170a922012-09-18 15:40:25 -0400374 Is_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500375 Is_Settings_Storage = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500376 Wipe_Available_in_GUI = true;
Dees_Troy8170a922012-09-18 15:40:25 -0400377 }
378#endif
Dees_Troy5bf43922012-09-07 16:07:55 -0400379 } else if (Is_Image(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400380 Find_Actual_Block_Device();
Dees_Troy5bf43922012-09-07 16:07:55 -0400381 Setup_Image(Display_Error);
Dees_Troya13d74f2013-03-24 08:54:55 -0500382 if (Mount_Point == "/boot") {
383 Display_Name = "Boot";
384 Backup_Display_Name = Display_Name;
385 Can_Be_Backed_Up = true;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600386 Can_Flash_Img = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500387 } else if (Mount_Point == "/recovery") {
388 Display_Name = "Recovery";
389 Backup_Display_Name = Display_Name;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600390 Can_Flash_Img = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500391 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400392 }
393
Dees_Troy51127312012-09-08 13:08:49 -0400394 // Process any custom flags
395 if (Flags.size() > 0)
396 Process_Flags(Flags, Display_Error);
Dees_Troy51127312012-09-08 13:08:49 -0400397 return true;
398}
399
Hashcode62bd9e02013-11-19 21:59:42 -0800400bool TWPartition::Process_FS_Flags(string& Options, int Flags) {
401 int i;
402 char *p;
403 char *savep;
404 char fs_options[250];
405
406 strlcpy(fs_options, Options.c_str(), sizeof(fs_options));
407 Options = "";
408
409 p = strtok_r(fs_options, ",", &savep);
410 while (p) {
411 /* Look for the flag "p" in the flag list "fl"
412 * If not found, the loop exits with fl[i].name being null.
413 */
414 for (i = 0; mount_flags[i].name; i++) {
415 if (strncmp(p, mount_flags[i].name, strlen(mount_flags[i].name)) == 0) {
416 Flags |= mount_flags[i].flag;
417 break;
418 }
419 }
420
421 if (!mount_flags[i].name) {
422 if (Options.size() > 0)
423 Options += ",";
424 Options += p;
425 }
426 p = strtok_r(NULL, ",", &savep);
427 }
428
429 return true;
430}
431
Dees_Troy51127312012-09-08 13:08:49 -0400432bool TWPartition::Process_Flags(string Flags, bool Display_Error) {
433 char flags[MAX_FSTAB_LINE_LENGTH];
Dees_Troya13d74f2013-03-24 08:54:55 -0500434 int flags_len, index = 0, ptr_len;
Dees_Troy51127312012-09-08 13:08:49 -0400435 char* ptr;
Dees_Troya13d74f2013-03-24 08:54:55 -0500436 bool skip = false, has_display_name = false, has_storage_name = false, has_backup_name = false;
Dees_Troy51127312012-09-08 13:08:49 -0400437
438 strcpy(flags, Flags.c_str());
439 flags_len = Flags.size();
440 for (index = 0; index < flags_len; index++) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500441 if (flags[index] == 34)
442 skip = !skip;
443 if (!skip && flags[index] == ';')
Dees_Troy51127312012-09-08 13:08:49 -0400444 flags[index] = '\0';
445 }
446
447 index = 0;
448 while (index < flags_len) {
449 while (index < flags_len && flags[index] == '\0')
450 index++;
451 if (index >= flags_len)
452 continue;
453 ptr = flags + index;
Dees_Troya13d74f2013-03-24 08:54:55 -0500454 ptr_len = strlen(ptr);
Dees_Troy51127312012-09-08 13:08:49 -0400455 if (strcmp(ptr, "removable") == 0) {
456 Removable = true;
Ethan Yonker06c3f932014-02-02 22:11:14 -0600457 } else if (strncmp(ptr, "storage", 7) == 0) {
458 if (ptr_len == 7) {
Ethan Yonker06c3f932014-02-02 22:11:14 -0600459 Is_Storage = true;
460 } else if (ptr_len == 9) {
461 ptr += 9;
462 if (*ptr == '1' || *ptr == 'y' || *ptr == 'Y') {
463 LOGINFO("storage set to true\n");
464 Is_Storage = true;
465 } else {
466 LOGINFO("storage set to false\n");
467 Is_Storage = false;
468 }
469 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500470 } else if (strcmp(ptr, "settingsstorage") == 0) {
471 Is_Storage = true;
Matt Mowerbf4efa32014-04-14 23:25:26 -0500472 } else if (strcmp(ptr, "andsec") == 0) {
473 Has_Android_Secure = true;
Dees_Troy63c8df72012-09-10 14:02:05 -0400474 } else if (strcmp(ptr, "canbewiped") == 0) {
475 Can_Be_Wiped = true;
Hashcodedabfd492013-08-29 22:45:30 -0700476 } else if (strcmp(ptr, "usermrf") == 0) {
477 Use_Rm_Rf = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500478 } else if (ptr_len > 7 && strncmp(ptr, "backup=", 7) == 0) {
479 ptr += 7;
480 if (*ptr == '1' || *ptr == 'y' || *ptr == 'Y')
481 Can_Be_Backed_Up = true;
482 else
483 Can_Be_Backed_Up = false;
Dees_Troy63c8df72012-09-10 14:02:05 -0400484 } else if (strcmp(ptr, "wipeingui") == 0) {
485 Can_Be_Wiped = true;
486 Wipe_Available_in_GUI = true;
487 } else if (strcmp(ptr, "wipeduringfactoryreset") == 0) {
488 Can_Be_Wiped = true;
489 Wipe_Available_in_GUI = true;
490 Wipe_During_Factory_Reset = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500491 } else if (ptr_len > 15 && strncmp(ptr, "subpartitionof=", 15) == 0) {
Dees_Troy2c4c26f2013-01-28 15:26:43 +0000492 ptr += 15;
Dees_Troy51127312012-09-08 13:08:49 -0400493 Is_SubPartition = true;
494 SubPartition_Of = ptr;
Dees_Troy68cab492012-12-12 19:29:35 +0000495 } else if (strcmp(ptr, "ignoreblkid") == 0) {
496 Ignore_Blkid = true;
Dees_Troy16c2b312013-01-15 16:51:18 +0000497 } else if (strcmp(ptr, "retainlayoutversion") == 0) {
498 Retain_Layout_Version = true;
Dees_Troya13d74f2013-03-24 08:54:55 -0500499 } else if (ptr_len > 8 && strncmp(ptr, "symlink=", 8) == 0) {
Dees_Troy51127312012-09-08 13:08:49 -0400500 ptr += 8;
501 Symlink_Path = ptr;
Dees_Troya13d74f2013-03-24 08:54:55 -0500502 } else if (ptr_len > 8 && strncmp(ptr, "display=", 8) == 0) {
503 has_display_name = true;
Dees_Troy51127312012-09-08 13:08:49 -0400504 ptr += 8;
Dees_Troya13d74f2013-03-24 08:54:55 -0500505 if (*ptr == '\"') ptr++;
Dees_Troy51127312012-09-08 13:08:49 -0400506 Display_Name = ptr;
Dees_Troya13d74f2013-03-24 08:54:55 -0500507 if (Display_Name.substr(Display_Name.size() - 1, 1) == "\"") {
508 Display_Name.resize(Display_Name.size() - 1);
509 }
510 } else if (ptr_len > 11 && strncmp(ptr, "storagename=", 11) == 0) {
511 has_storage_name = true;
512 ptr += 11;
513 if (*ptr == '\"') ptr++;
514 Storage_Name = ptr;
515 if (Storage_Name.substr(Storage_Name.size() - 1, 1) == "\"") {
516 Storage_Name.resize(Storage_Name.size() - 1);
517 }
518 } else if (ptr_len > 11 && strncmp(ptr, "backupname=", 10) == 0) {
519 has_backup_name = true;
520 ptr += 10;
521 if (*ptr == '\"') ptr++;
522 Backup_Display_Name = ptr;
523 if (Backup_Display_Name.substr(Backup_Display_Name.size() - 1, 1) == "\"") {
524 Backup_Display_Name.resize(Backup_Display_Name.size() - 1);
525 }
526 } else if (ptr_len > 10 && strncmp(ptr, "blocksize=", 10) == 0) {
Dees_Troy51127312012-09-08 13:08:49 -0400527 ptr += 10;
528 Format_Block_Size = atoi(ptr);
Dees_Troya13d74f2013-03-24 08:54:55 -0500529 } else if (ptr_len > 7 && strncmp(ptr, "length=", 7) == 0) {
Dees_Troy51127312012-09-08 13:08:49 -0400530 ptr += 7;
531 Length = atoi(ptr);
Dees_Troy83bd4832013-05-04 12:39:56 +0000532 } else if (ptr_len > 17 && strncmp(ptr, "canencryptbackup=", 17) == 0) {
533 ptr += 17;
534 if (*ptr == '1' || *ptr == 'y' || *ptr == 'Y')
535 Can_Encrypt_Backup = true;
536 else
537 Can_Encrypt_Backup = false;
538 } else if (ptr_len > 21 && strncmp(ptr, "userdataencryptbackup=", 21) == 0) {
539 ptr += 21;
540 if (*ptr == '1' || *ptr == 'y' || *ptr == 'Y') {
541 Can_Encrypt_Backup = true;
542 Use_Userdata_Encryption = true;
543 } else {
544 Use_Userdata_Encryption = false;
545 }
Hashcode62bd9e02013-11-19 21:59:42 -0800546 } else if (ptr_len > 8 && strncmp(ptr, "fsflags=", 8) == 0) {
547 ptr += 8;
548 if (*ptr == '\"') ptr++;
549
550 Mount_Options = ptr;
551 if (Mount_Options.substr(Mount_Options.size() - 1, 1) == "\"") {
552 Mount_Options.resize(Mount_Options.size() - 1);
553 }
554 Process_FS_Flags(Mount_Options, Mount_Flags);
Ethan Yonker253368a2014-11-25 15:00:52 -0600555 } else if ((ptr_len > 12 && strncmp(ptr, "encryptable=", 12) == 0) || (ptr_len > 13 && strncmp(ptr, "forceencrypt=", 13) == 0)) {
556 ptr += 12;
557 if (*ptr == '=') ptr++;
558 if (*ptr == '\"') ptr++;
559
560 Crypto_Key_Location = ptr;
561 if (Crypto_Key_Location.substr(Crypto_Key_Location.size() - 1, 1) == "\"") {
562 Crypto_Key_Location.resize(Crypto_Key_Location.size() - 1);
563 }
564 } else if (ptr_len > 8 && strncmp(ptr, "mounttodecrypt", 14) == 0) {
565 Mount_To_Decrypt = true;
Ethan Yonker96af84a2015-01-05 14:58:36 -0600566 } else if (strncmp(ptr, "flashimg", 8) == 0) {
567 if (ptr_len == 8) {
568 Can_Flash_Img = true;
569 } else if (ptr_len == 10) {
570 ptr += 9;
571 if (*ptr == '1' || *ptr == 'y' || *ptr == 'Y') {
572 Can_Flash_Img = true;
573 } else {
574 Can_Flash_Img = false;
575 }
576 }
Dees_Troy51127312012-09-08 13:08:49 -0400577 } else {
578 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000579 LOGERR("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -0400580 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000581 LOGINFO("Unhandled flag: '%s'\n", ptr);
Dees_Troy51127312012-09-08 13:08:49 -0400582 }
583 while (index < flags_len && flags[index] != '\0')
584 index++;
585 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500586 if (has_display_name && !has_storage_name)
587 Storage_Name = Display_Name;
588 if (!has_display_name && has_storage_name)
589 Display_Name = Storage_Name;
Dees_Troy74fb2e92013-04-15 14:35:47 +0000590 if (has_display_name && !has_backup_name && Backup_Display_Name != "Android Secure")
Dees_Troya13d74f2013-03-24 08:54:55 -0500591 Backup_Display_Name = Display_Name;
592 if (!has_display_name && has_backup_name)
593 Display_Name = Backup_Display_Name;
Dees_Troy51127312012-09-08 13:08:49 -0400594 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -0400595}
596
Dees_Troy5bf43922012-09-07 16:07:55 -0400597bool TWPartition::Is_File_System(string File_System) {
598 if (File_System == "ext2" ||
Dees_Troy63c8df72012-09-10 14:02:05 -0400599 File_System == "ext3" ||
Dees_Troy5bf43922012-09-07 16:07:55 -0400600 File_System == "ext4" ||
601 File_System == "vfat" ||
602 File_System == "ntfs" ||
603 File_System == "yaffs2" ||
bigbiff bigbiff3e146522012-11-14 14:32:59 -0500604 File_System == "exfat" ||
Dees_Troye5017042013-08-29 16:38:55 +0000605 File_System == "f2fs" ||
Dees_Troy5bf43922012-09-07 16:07:55 -0400606 File_System == "auto")
607 return true;
608 else
609 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -0400610}
611
Dees_Troy5bf43922012-09-07 16:07:55 -0400612bool TWPartition::Is_Image(string File_System) {
Dees_Troy5fcd8f92012-10-16 12:22:05 -0400613 if (File_System == "emmc" || File_System == "mtd" || File_System == "bml")
Dees_Troy5bf43922012-09-07 16:07:55 -0400614 return true;
615 else
616 return false;
617}
618
Dees_Troy51127312012-09-08 13:08:49 -0400619bool TWPartition::Make_Dir(string Path, bool Display_Error) {
Dees_Troy43d8b002012-09-17 16:00:01 -0400620 if (!TWFunc::Path_Exists(Path)) {
Dees_Troy51127312012-09-08 13:08:49 -0400621 if (mkdir(Path.c_str(), 0777) == -1) {
622 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000623 LOGERR("Can not create '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400624 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000625 LOGINFO("Can not create '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400626 return false;
627 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000628 LOGINFO("Created '%s' folder.\n", Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400629 return true;
630 }
631 }
632 return true;
633}
634
Dees_Troy5bf43922012-09-07 16:07:55 -0400635void TWPartition::Setup_File_System(bool Display_Error) {
636 struct statfs st;
637
638 Can_Be_Mounted = true;
639 Can_Be_Wiped = true;
640
Dees_Troy5bf43922012-09-07 16:07:55 -0400641 // Make the mount point folder if it doesn't exist
Dees_Troy51127312012-09-08 13:08:49 -0400642 Make_Dir(Mount_Point, Display_Error);
Dees_Troy5bf43922012-09-07 16:07:55 -0400643 Display_Name = Mount_Point.substr(1, Mount_Point.size() - 1);
644 Backup_Name = Display_Name;
645 Backup_Method = FILES;
646}
647
648void TWPartition::Setup_Image(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400649 Display_Name = Mount_Point.substr(1, Mount_Point.size() - 1);
650 Backup_Name = Display_Name;
Gary Peck82599a82012-11-21 16:23:12 -0800651 if (Current_File_System == "emmc")
Dees_Troy5bf43922012-09-07 16:07:55 -0400652 Backup_Method = DD;
Gary Peck82599a82012-11-21 16:23:12 -0800653 else if (Current_File_System == "mtd" || Current_File_System == "bml")
Dees_Troy5bf43922012-09-07 16:07:55 -0400654 Backup_Method = FLASH_UTILS;
655 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000656 LOGINFO("Unhandled file system '%s' on image '%s'\n", Current_File_System.c_str(), Display_Name.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400657 if (Find_Partition_Size()) {
658 Used = Size;
659 Backup_Size = Size;
Dees_Troy51a0e822012-09-05 15:24:24 -0400660 } else {
Dees_Troy5bf43922012-09-07 16:07:55 -0400661 if (Display_Error)
Dees Troyd932ce12013-10-18 17:12:59 +0000662 LOGERR("Unable to find partition size for '%s'\n", Mount_Point.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400663 else
Dees Troyd932ce12013-10-18 17:12:59 +0000664 LOGINFO("Unable to find partition size for '%s'\n", Mount_Point.c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -0400665 }
666}
667
Dees_Troye58d5262012-09-21 12:27:57 -0400668void TWPartition::Setup_AndSec(void) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500669 Backup_Display_Name = "Android Secure";
Dees_Troye58d5262012-09-21 12:27:57 -0400670 Backup_Name = "and-sec";
Dees_Troya13d74f2013-03-24 08:54:55 -0500671 Can_Be_Backed_Up = true;
Dees_Troye58d5262012-09-21 12:27:57 -0400672 Has_Android_Secure = true;
673 Symlink_Path = Mount_Point + "/.android_secure";
674 Symlink_Mount_Point = "/and-sec";
675 Backup_Path = Symlink_Mount_Point;
676 Make_Dir("/and-sec", true);
677 Recreate_AndSec_Folder();
Ethan Yonkerd4d10732014-02-03 15:27:52 -0600678 Mount_Storage_Retry();
Dees_Troye58d5262012-09-21 12:27:57 -0400679}
680
that9e0593e2014-10-08 00:01:24 +0200681void TWPartition::Setup_Data_Media() {
Ethan Yonker6277c792014-09-15 14:54:30 -0500682 LOGINFO("Setting up '%s' as data/media emulated storage.\n", Mount_Point.c_str());
683 Storage_Name = "Internal Storage";
684 Has_Data_Media = true;
685 Is_Storage = true;
686 Is_Settings_Storage = true;
687 Storage_Path = "/data/media";
688 Symlink_Path = Storage_Path;
689 if (strcmp(EXPAND(TW_EXTERNAL_STORAGE_PATH), "/sdcard") == 0) {
690 Make_Dir("/emmc", false);
691 Symlink_Mount_Point = "/emmc";
692 } else {
693 Make_Dir("/sdcard", false);
694 Symlink_Mount_Point = "/sdcard";
695 }
696 if (Mount(false) && TWFunc::Path_Exists("/data/media/0")) {
697 Storage_Path = "/data/media/0";
698 Symlink_Path = Storage_Path;
699 DataManager::SetValue(TW_INTERNAL_PATH, "/data/media/0");
700 UnMount(true);
701 }
Ethan Yonker6277c792014-09-15 14:54:30 -0500702 DataManager::SetValue("tw_has_internal", 1);
703 DataManager::SetValue("tw_has_data_media", 1);
704 du.add_absolute_dir("/data/media");
705}
706
Dees_Troy5bf43922012-09-07 16:07:55 -0400707void TWPartition::Find_Real_Block_Device(string& Block, bool Display_Error) {
708 char device[512], realDevice[512];
709
710 strcpy(device, Block.c_str());
711 memset(realDevice, 0, sizeof(realDevice));
712 while (readlink(device, realDevice, sizeof(realDevice)) > 0)
713 {
714 strcpy(device, realDevice);
715 memset(realDevice, 0, sizeof(realDevice));
716 }
717
718 if (device[0] != '/') {
719 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000720 LOGERR("Invalid symlink path '%s' found on block device '%s'\n", device, Block.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400721 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000722 LOGINFO("Invalid symlink path '%s' found on block device '%s'\n", device, Block.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400723 return;
Dees_Troy51a0e822012-09-05 15:24:24 -0400724 } else {
Dees_Troy5bf43922012-09-07 16:07:55 -0400725 Block = device;
726 return;
727 }
728}
729
Dees_Troy8e337f32012-10-13 22:07:49 -0400730void TWPartition::Mount_Storage_Retry(void) {
731 // On some devices, storage doesn't want to mount right away, retry and sleep
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500732 if (!Mount(true)) {
Dees_Troy8e337f32012-10-13 22:07:49 -0400733 int retry_count = 5;
734 while (retry_count > 0 && !Mount(false)) {
735 usleep(500000);
736 retry_count--;
737 }
738 Mount(true);
739 }
740}
741
Dees_Troy38bd7602012-09-14 13:33:53 -0400742bool TWPartition::Find_MTD_Block_Device(string MTD_Name) {
743 FILE *fp = NULL;
744 char line[255];
745
746 fp = fopen("/proc/mtd", "rt");
747 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000748 LOGERR("Device does not support /proc/mtd\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400749 return false;
750 }
751
752 while (fgets(line, sizeof(line), fp) != NULL)
753 {
754 char device[32], label[32];
755 unsigned long size = 0;
756 char* fstype = NULL;
757 int deviceId;
758
759 sscanf(line, "%s %lx %*s %*c%s", device, &size, label);
760
761 // Skip header and blank lines
762 if ((strcmp(device, "dev:") == 0) || (strlen(line) < 8))
763 continue;
764
765 // Strip off the trailing " from the label
766 label[strlen(label)-1] = '\0';
767
768 if (strcmp(label, MTD_Name.c_str()) == 0) {
769 // We found our device
770 // Strip off the trailing : from the device
771 device[strlen(device)-1] = '\0';
772 if (sscanf(device,"mtd%d", &deviceId) == 1) {
773 sprintf(device, "/dev/block/mtdblock%d", deviceId);
774 Primary_Block_Device = device;
Dees_Troy76543db2013-06-19 16:24:30 +0000775 fclose(fp);
776 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -0400777 }
778 }
779 }
780 fclose(fp);
781
782 return false;
783}
784
Dees_Troy51127312012-09-08 13:08:49 -0400785bool TWPartition::Get_Size_Via_statfs(bool Display_Error) {
786 struct statfs st;
787 string Local_Path = Mount_Point + "/.";
788
789 if (!Mount(Display_Error))
790 return false;
791
792 if (statfs(Local_Path.c_str(), &st) != 0) {
793 if (!Removable) {
794 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +0000795 LOGERR("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400796 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000797 LOGINFO("Unable to statfs '%s'\n", Local_Path.c_str());
Dees_Troy51127312012-09-08 13:08:49 -0400798 }
799 return false;
800 }
801 Size = (st.f_blocks * st.f_bsize);
802 Used = ((st.f_blocks - st.f_bfree) * st.f_bsize);
803 Free = (st.f_bfree * st.f_bsize);
804 Backup_Size = Used;
805 return true;
806}
807
808bool TWPartition::Get_Size_Via_df(bool Display_Error) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400809 FILE* fp;
810 char command[255], line[512];
811 int include_block = 1;
812 unsigned int min_len;
813
814 if (!Mount(Display_Error))
815 return false;
816
Dees_Troy38bd7602012-09-14 13:33:53 -0400817 min_len = Actual_Block_Device.size() + 2;
Dees_Troy51127312012-09-08 13:08:49 -0400818 sprintf(command, "df %s > /tmp/dfoutput.txt", Mount_Point.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +0200819 TWFunc::Exec_Cmd(command);
Dees_Troy51127312012-09-08 13:08:49 -0400820 fp = fopen("/tmp/dfoutput.txt", "rt");
821 if (fp == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000822 LOGINFO("Unable to open /tmp/dfoutput.txt.\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400823 return false;
Dees_Troy51127312012-09-08 13:08:49 -0400824 }
Dees_Troy5bf43922012-09-07 16:07:55 -0400825
826 while (fgets(line, sizeof(line), fp) != NULL)
827 {
828 unsigned long blocks, used, available;
829 char device[64];
830 char tmpString[64];
831
832 if (strncmp(line, "Filesystem", 10) == 0)
833 continue;
834 if (strlen(line) < min_len) {
835 include_block = 0;
836 continue;
837 }
838 if (include_block) {
839 sscanf(line, "%s %lu %lu %lu", device, &blocks, &used, &available);
840 } else {
841 // The device block string is so long that the df information is on the next line
842 int space_count = 0;
Dees_Troye58d5262012-09-21 12:27:57 -0400843 sprintf(tmpString, "/dev/block/%s", Actual_Block_Device.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -0400844 while (tmpString[space_count] == 32)
845 space_count++;
846 sscanf(line + space_count, "%lu %lu %lu", &blocks, &used, &available);
847 }
848
849 // Adjust block size to byte size
850 Size = blocks * 1024ULL;
851 Used = used * 1024ULL;
852 Free = available * 1024ULL;
853 Backup_Size = Used;
854 }
855 fclose(fp);
856 return true;
857}
858
Dees_Troy5bf43922012-09-07 16:07:55 -0400859bool TWPartition::Find_Partition_Size(void) {
860 FILE* fp;
861 char line[512];
862 string tmpdevice;
863
igoriok87e3d932013-01-31 21:03:53 +0200864 fp = fopen("/proc/dumchar_info", "rt");
865 if (fp != NULL) {
866 while (fgets(line, sizeof(line), fp) != NULL)
867 {
868 char label[32], device[32];
869 unsigned long size = 0;
870
thatd43bf2d2014-09-21 23:13:02 +0200871 sscanf(line, "%s %lx %*x %*u %s", label, &size, device);
igoriok87e3d932013-01-31 21:03:53 +0200872
bigbiff bigbiff34684ff2013-12-01 21:03:45 -0500873 // Skip header, annotation and blank lines
igoriok87e3d932013-01-31 21:03:53 +0200874 if ((strncmp(device, "/dev/", 5) != 0) || (strlen(line) < 8))
875 continue;
876
877 tmpdevice = "/dev/";
878 tmpdevice += label;
879 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
880 Size = size;
881 fclose(fp);
882 return true;
883 }
884 }
885 }
886
Dees_Troy5bf43922012-09-07 16:07:55 -0400887 // In this case, we'll first get the partitions we care about (with labels)
888 fp = fopen("/proc/partitions", "rt");
889 if (fp == NULL)
890 return false;
891
892 while (fgets(line, sizeof(line), fp) != NULL)
893 {
894 unsigned long major, minor, blocks;
895 char device[512];
896 char tmpString[64];
897
Dees_Troy63c8df72012-09-10 14:02:05 -0400898 if (strlen(line) < 7 || line[0] == 'm') continue;
Dees_Troy5bf43922012-09-07 16:07:55 -0400899 sscanf(line + 1, "%lu %lu %lu %s", &major, &minor, &blocks, device);
900
901 tmpdevice = "/dev/block/";
902 tmpdevice += device;
Dees_Troy38bd7602012-09-14 13:33:53 -0400903 if (tmpdevice == Primary_Block_Device || tmpdevice == Alternate_Block_Device) {
Dees_Troy5bf43922012-09-07 16:07:55 -0400904 // Adjust block size to byte size
905 Size = blocks * 1024ULL;
906 fclose(fp);
907 return true;
908 }
909 }
910 fclose(fp);
911 return false;
912}
913
Dees_Troy5bf43922012-09-07 16:07:55 -0400914bool TWPartition::Is_Mounted(void) {
915 if (!Can_Be_Mounted)
916 return false;
917
918 struct stat st1, st2;
919 string test_path;
920
921 // Check to see if the mount point directory exists
922 test_path = Mount_Point + "/.";
923 if (stat(test_path.c_str(), &st1) != 0) return false;
924
925 // Check to see if the directory above the mount point exists
926 test_path = Mount_Point + "/../.";
927 if (stat(test_path.c_str(), &st2) != 0) return false;
928
929 // Compare the device IDs -- if they match then we're (probably) using tmpfs instead of an actual device
930 int ret = (st1.st_dev != st2.st_dev) ? true : false;
931
932 return ret;
933}
934
935bool TWPartition::Mount(bool Display_Error) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000936 int exfat_mounted = 0;
937
Dees_Troy5bf43922012-09-07 16:07:55 -0400938 if (Is_Mounted()) {
939 return true;
940 } else if (!Can_Be_Mounted) {
941 return false;
942 }
Dees_Troy38bd7602012-09-14 13:33:53 -0400943
944 Find_Actual_Block_Device();
945
946 // Check the current file system before mounting
947 Check_FS_Type();
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000948 if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sbin/exfat-fuse")) {
Dees_Troye34c1332013-02-06 19:13:00 +0000949 string cmd = "/sbin/exfat-fuse -o big_writes,max_read=131072,max_write=131072 " + Actual_Block_Device + " " + Mount_Point;
Dees_Troy2673cec2013-04-02 20:22:16 +0000950 LOGINFO("cmd: %s\n", cmd.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000951 string result;
952 if (TWFunc::Exec_Cmd(cmd, result) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000953 LOGINFO("exfat-fuse failed to mount with result '%s', trying vfat\n", result.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +0000954 Current_File_System = "vfat";
955 } else {
956#ifdef TW_NO_EXFAT_FUSE
957 UnMount(false);
958 // We'll let the kernel handle it but using exfat-fuse to detect if the file system is actually exfat
959 // Some kernels let us mount vfat as exfat which doesn't work out too well
960#else
961 exfat_mounted = 1;
962#endif
963 }
964 }
Dees_Troy22042032012-12-18 21:23:08 +0000965 if (Fstab_File_System == "yaffs2") {
966 // mount an MTD partition as a YAFFS2 filesystem.
Dees_Troy76543db2013-06-19 16:24:30 +0000967 const unsigned long flags = MS_NOATIME | MS_NODEV | MS_NODIRATIME;
968 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags, NULL) < 0) {
969 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Fstab_File_System.c_str(), flags | MS_RDONLY, NULL) < 0) {
970 if (Display_Error)
971 LOGERR("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
972 else
973 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
974 return false;
975 } else {
976 LOGINFO("Mounted '%s' (MTD) as RO\n", Mount_Point.c_str());
977 return true;
978 }
979 } else {
980 struct stat st;
981 string test_path = Mount_Point;
982 if (stat(test_path.c_str(), &st) < 0) {
983 if (Display_Error)
984 LOGERR("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
985 else
986 LOGINFO("Failed to mount '%s' (MTD)\n", Mount_Point.c_str());
987 return false;
988 }
989 mode_t new_mode = st.st_mode | S_IXUSR | S_IXGRP | S_IXOTH;
990 if (new_mode != st.st_mode) {
991 LOGINFO("Fixing execute permissions for %s\n", Mount_Point.c_str());
992 if (chmod(Mount_Point.c_str(), new_mode) < 0) {
993 if (Display_Error)
994 LOGERR("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
995 else
996 LOGINFO("Couldn't fix permissions for %s: %s\n", Mount_Point.c_str(), strerror(errno));
997 return false;
998 }
999 }
Dees_Troy22042032012-12-18 21:23:08 +00001000 return true;
Dees_Troy76543db2013-06-19 16:24:30 +00001001 }
Dees Troy216e0422014-02-07 03:46:42 +00001002 } else if (!exfat_mounted && mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Current_File_System.c_str(), Mount_Flags, Mount_Options.c_str()) != 0 && mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), Current_File_System.c_str(), Mount_Flags, NULL) != 0) {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001003#ifdef TW_NO_EXFAT_FUSE
1004 if (Current_File_System == "exfat") {
Dees_Troy2673cec2013-04-02 20:22:16 +00001005 LOGINFO("Mounting exfat failed, trying vfat...\n");
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001006 if (mount(Actual_Block_Device.c_str(), Mount_Point.c_str(), "vfat", 0, NULL) != 0) {
Dees_Troy85f44ed2013-01-09 18:42:36 +00001007 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001008 LOGERR("Unable to mount '%s'\n", Mount_Point.c_str());
Dees_Troy85f44ed2013-01-09 18:42:36 +00001009 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001010 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
Hashcode62bd9e02013-11-19 21:59:42 -08001011 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(), Mount_Flags, Mount_Options.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001012 return false;
Dees_Troy85f44ed2013-01-09 18:42:36 +00001013 }
Dees_Troyb05ddee2013-01-28 20:24:50 +00001014 } else {
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001015#endif
bigbiff bigbiff26774a02014-03-29 18:22:00 -04001016 if (!Removable && Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001017 LOGERR("Unable to mount '%s'\n", Mount_Point.c_str());
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001018 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001019 LOGINFO("Unable to mount '%s'\n", Mount_Point.c_str());
1020 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 +00001021 return false;
1022#ifdef TW_NO_EXFAT_FUSE
Dees_Troy85f44ed2013-01-09 18:42:36 +00001023 }
1024#endif
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001025 }
Ethan Yonker253368a2014-11-25 15:00:52 -06001026
Dees_Troy3f5c4e82013-02-01 15:16:59 +00001027 if (Removable)
1028 Update_Size(Display_Error);
1029
1030 if (!Symlink_Mount_Point.empty()) {
Vojtech Bocek05534202013-09-11 08:11:56 +02001031 string Command = "mount '" + Symlink_Path + "' '" + Symlink_Mount_Point + "'";
1032 TWFunc::Exec_Cmd(Command);
Dees_Troy5bf43922012-09-07 16:07:55 -04001033 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001034 return true;
1035}
1036
1037bool TWPartition::UnMount(bool Display_Error) {
1038 if (Is_Mounted()) {
1039 int never_unmount_system;
1040
1041 DataManager::GetValue(TW_DONT_UNMOUNT_SYSTEM, never_unmount_system);
1042 if (never_unmount_system == 1 && Mount_Point == "/system")
1043 return true; // Never unmount system if you're not supposed to unmount it
1044
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001045 if (Is_Storage)
Ethan Yonker726a0202014-12-16 20:01:38 -06001046 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001047
Dees_Troy38bd7602012-09-14 13:33:53 -04001048 if (!Symlink_Mount_Point.empty())
1049 umount(Symlink_Mount_Point.c_str());
1050
Dees_Troyb05ddee2013-01-28 20:24:50 +00001051 umount(Mount_Point.c_str());
1052 if (Is_Mounted()) {
Dees_Troy5bf43922012-09-07 16:07:55 -04001053 if (Display_Error)
Dees_Troy2673cec2013-04-02 20:22:16 +00001054 LOGERR("Unable to unmount '%s'\n", Mount_Point.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001055 else
Dees_Troy2673cec2013-04-02 20:22:16 +00001056 LOGINFO("Unable to unmount '%s'\n", Mount_Point.c_str());
Dees_Troy5bf43922012-09-07 16:07:55 -04001057 return false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001058 } else {
Dees_Troy5bf43922012-09-07 16:07:55 -04001059 return true;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001060 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001061 } else {
1062 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001063 }
1064}
1065
Gary Peck43acadf2012-11-21 21:19:01 -08001066bool TWPartition::Wipe(string New_File_System) {
Ethan Yonker726a0202014-12-16 20:01:38 -06001067 bool wiped = false, update_crypt = false, recreate_media = true;
Dees_Troy16c2b312013-01-15 16:51:18 +00001068 int check;
1069 string Layout_Filename = Mount_Point + "/.layout_version";
1070
Dees_Troy38bd7602012-09-14 13:33:53 -04001071 if (!Can_Be_Wiped) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001072 LOGERR("Partition '%s' cannot be wiped.\n", Mount_Point.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001073 return false;
1074 }
1075
Dees_Troyc51f1f92012-09-20 15:32:13 -04001076 if (Mount_Point == "/cache")
Dees_Troy2673cec2013-04-02 20:22:16 +00001077 Log_Offset = 0;
Dees_Troyc51f1f92012-09-20 15:32:13 -04001078
Dees_Troy16c2b312013-01-15 16:51:18 +00001079 if (Retain_Layout_Version && Mount(false) && TWFunc::Path_Exists(Layout_Filename))
1080 TWFunc::copy_file(Layout_Filename, "/.layout_version", 0600);
1081 else
1082 unlink("/.layout_version");
Dees_Troy38bd7602012-09-14 13:33:53 -04001083
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001084 if (Has_Data_Media && Current_File_System == New_File_System) {
Dees_Troy16c2b312013-01-15 16:51:18 +00001085 wiped = Wipe_Data_Without_Wiping_Media();
Ethan Yonker5eac2222014-06-11 12:22:55 -05001086 recreate_media = false;
Dees_Troy16c2b312013-01-15 16:51:18 +00001087 } else {
Dees_Troy16c2b312013-01-15 16:51:18 +00001088 DataManager::GetValue(TW_RM_RF_VAR, check);
1089
Hashcodedabfd492013-08-29 22:45:30 -07001090 if (check || Use_Rm_Rf)
Dees_Troy16c2b312013-01-15 16:51:18 +00001091 wiped = Wipe_RMRF();
1092 else if (New_File_System == "ext4")
1093 wiped = Wipe_EXT4();
1094 else if (New_File_System == "ext2" || New_File_System == "ext3")
1095 wiped = Wipe_EXT23(New_File_System);
1096 else if (New_File_System == "vfat")
1097 wiped = Wipe_FAT();
1098 else if (New_File_System == "exfat")
1099 wiped = Wipe_EXFAT();
1100 else if (New_File_System == "yaffs2")
1101 wiped = Wipe_MTD();
Dees_Troye5017042013-08-29 16:38:55 +00001102 else if (New_File_System == "f2fs")
1103 wiped = Wipe_F2FS();
Dees_Troy16c2b312013-01-15 16:51:18 +00001104 else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001105 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 +00001106 unlink("/.layout_version");
1107 return false;
1108 }
1109 update_crypt = wiped;
Gary Pecke8bc5d72012-12-21 06:45:25 -08001110 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001111
Gary Pecke8bc5d72012-12-21 06:45:25 -08001112 if (wiped) {
Dees_Troy1c1ac442013-01-17 21:42:14 +00001113 if (Mount_Point == "/cache")
1114 DataManager::Output_Version();
1115
Dees_Troy16c2b312013-01-15 16:51:18 +00001116 if (TWFunc::Path_Exists("/.layout_version") && Mount(false))
1117 TWFunc::copy_file("/.layout_version", Layout_Filename, 0600);
1118
1119 if (update_crypt) {
1120 Setup_File_System(false);
1121 if (Is_Encrypted && !Is_Decrypted) {
1122 // just wiped an encrypted partition back to its unencrypted state
1123 Is_Encrypted = false;
1124 Is_Decrypted = false;
1125 Decrypted_Block_Device = "";
1126 if (Mount_Point == "/data") {
1127 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
1128 DataManager::SetValue(TW_IS_DECRYPTED, 0);
1129 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08001130 }
1131 }
Ethan Yonker5eac2222014-06-11 12:22:55 -05001132
1133 if (Mount_Point == "/data" && Has_Data_Media && recreate_media) {
1134 Recreate_Media_Folder();
1135 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08001136 }
Ethan Yonker726a0202014-12-16 20:01:38 -06001137 if (Is_Storage) {
1138 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001139 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08001140 return wiped;
Dees_Troy51a0e822012-09-05 15:24:24 -04001141}
1142
Gary Peck43acadf2012-11-21 21:19:01 -08001143bool TWPartition::Wipe() {
Gary Peck82599a82012-11-21 16:23:12 -08001144 if (Is_File_System(Current_File_System))
1145 return Wipe(Current_File_System);
1146 else
1147 return Wipe(Fstab_File_System);
Gary Peck43acadf2012-11-21 21:19:01 -08001148}
1149
Dees_Troye58d5262012-09-21 12:27:57 -04001150bool TWPartition::Wipe_AndSec(void) {
1151 if (!Has_Android_Secure)
1152 return false;
1153
Dees_Troye58d5262012-09-21 12:27:57 -04001154 if (!Mount(true))
1155 return false;
1156
Dees_Troy2673cec2013-04-02 20:22:16 +00001157 gui_print("Wiping %s\n", Backup_Display_Name.c_str());
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001158 TWFunc::removeDir(Mount_Point + "/.android_secure/", true);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001159 return true;
Dees_Troye58d5262012-09-21 12:27:57 -04001160}
1161
Ethan Yonker87c7bac2014-05-25 21:41:08 -05001162bool TWPartition::Can_Repair() {
1163 if (Current_File_System == "vfat" && TWFunc::Path_Exists("/sbin/dosfsck"))
1164 return true;
1165 else if ((Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") && TWFunc::Path_Exists("/sbin/e2fsck"))
1166 return true;
1167 else if (Current_File_System == "exfat" && TWFunc::Path_Exists("/sbin/fsck.exfat"))
1168 return true;
1169 else if (Current_File_System == "f2fs" && TWFunc::Path_Exists("/sbin/fsck.f2fs"))
1170 return true;
1171 return false;
1172}
1173
1174bool TWPartition::Repair() {
1175 string command;
1176
1177 if (Current_File_System == "vfat") {
1178 if (!TWFunc::Path_Exists("/sbin/dosfsck")) {
1179 gui_print("dosfsck does not exist! Cannot repair!\n");
1180 return false;
1181 }
1182 if (!UnMount(true))
1183 return false;
1184 gui_print("Repairing %s using dosfsck...\n", Display_Name.c_str());
1185 Find_Actual_Block_Device();
1186 command = "/sbin/dosfsck -y " + Actual_Block_Device;
1187 LOGINFO("Repair command: %s\n", command.c_str());
1188 if (TWFunc::Exec_Cmd(command) == 0) {
1189 gui_print("Done.\n");
1190 return true;
1191 } else {
1192 LOGERR("Unable to repair '%s'.\n", Mount_Point.c_str());
1193 return false;
1194 }
1195 }
1196 if (Current_File_System == "ext2" || Current_File_System == "ext3" || Current_File_System == "ext4") {
1197 if (!TWFunc::Path_Exists("/sbin/e2fsck")) {
1198 gui_print("e2fsck does not exist! Cannot repair!\n");
1199 return false;
1200 }
1201 if (!UnMount(true))
1202 return false;
1203 gui_print("Repairing %s using e2fsck...\n", Display_Name.c_str());
1204 Find_Actual_Block_Device();
1205 command = "/sbin/e2fsck -p " + Actual_Block_Device;
1206 LOGINFO("Repair command: %s\n", command.c_str());
1207 if (TWFunc::Exec_Cmd(command) == 0) {
1208 gui_print("Done.\n");
1209 return true;
1210 } else {
1211 LOGERR("Unable to repair '%s'.\n", Mount_Point.c_str());
1212 return false;
1213 }
1214 }
1215 if (Current_File_System == "exfat") {
1216 if (!TWFunc::Path_Exists("/sbin/fsck.exfat")) {
1217 gui_print("fsck.exfat does not exist! Cannot repair!\n");
1218 return false;
1219 }
1220 if (!UnMount(true))
1221 return false;
1222 gui_print("Repairing %s using fsck.exfat...\n", Display_Name.c_str());
1223 Find_Actual_Block_Device();
1224 command = "/sbin/fsck.exfat " + Actual_Block_Device;
1225 LOGINFO("Repair command: %s\n", command.c_str());
1226 if (TWFunc::Exec_Cmd(command) == 0) {
1227 gui_print("Done.\n");
1228 return true;
1229 } else {
1230 LOGERR("Unable to repair '%s'.\n", Mount_Point.c_str());
1231 return false;
1232 }
1233 }
1234 if (Current_File_System == "f2fs") {
1235 if (!TWFunc::Path_Exists("/sbin/fsck.f2fs")) {
1236 gui_print("fsck.f2fs does not exist! Cannot repair!\n");
1237 return false;
1238 }
1239 if (!UnMount(true))
1240 return false;
1241 gui_print("Repairing %s using fsck.f2fs...\n", Display_Name.c_str());
1242 Find_Actual_Block_Device();
1243 command = "/sbin/fsck.f2fs " + Actual_Block_Device;
1244 LOGINFO("Repair command: %s\n", command.c_str());
1245 if (TWFunc::Exec_Cmd(command) == 0) {
1246 gui_print("Done.\n");
1247 return true;
1248 } else {
1249 LOGERR("Unable to repair '%s'.\n", Mount_Point.c_str());
1250 return false;
1251 }
1252 }
1253 return false;
1254}
1255
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001256bool TWPartition::Backup(string backup_folder, const unsigned long long *overall_size, const unsigned long long *other_backups_size) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001257 if (Backup_Method == FILES)
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001258 return Backup_Tar(backup_folder, overall_size, other_backups_size);
Dees_Troy38bd7602012-09-14 13:33:53 -04001259 else if (Backup_Method == DD)
1260 return Backup_DD(backup_folder);
1261 else if (Backup_Method == FLASH_UTILS)
1262 return Backup_Dump_Image(backup_folder);
Dees_Troy2673cec2013-04-02 20:22:16 +00001263 LOGERR("Unknown backup method for '%s'\n", Mount_Point.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001264 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001265}
1266
Dees_Troy43d8b002012-09-17 16:00:01 -04001267bool TWPartition::Check_MD5(string restore_folder) {
bigbiff bigbiff65a4c732013-03-15 15:17:50 -04001268 string Full_Filename, md5file;
Dees_Troy43d8b002012-09-17 16:00:01 -04001269 char split_filename[512];
1270 int index = 0;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -05001271 twrpDigest md5sum;
Dees_Troy43d8b002012-09-17 16:00:01 -04001272
Captain Throwbackff5935f2014-09-23 16:08:34 -04001273 sync();
1274
bigbiff bigbiff65a4c732013-03-15 15:17:50 -04001275 memset(split_filename, 0, sizeof(split_filename));
Dees_Troy43d8b002012-09-17 16:00:01 -04001276 Full_Filename = restore_folder + "/" + Backup_FileName;
Dees_Troy43d8b002012-09-17 16:00:01 -04001277 if (!TWFunc::Path_Exists(Full_Filename)) {
1278 // This is a split archive, we presume
1279 sprintf(split_filename, "%s%03i", Full_Filename.c_str(), index);
Dees_Troy2673cec2013-04-02 20:22:16 +00001280 LOGINFO("split_filename: %s\n", split_filename);
bigbiff bigbiff65a4c732013-03-15 15:17:50 -04001281 md5file = split_filename;
1282 md5file += ".md5";
1283 if (!TWFunc::Path_Exists(md5file)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001284 LOGERR("No md5 file found for '%s'.\n", split_filename);
1285 LOGERR("Please unselect Enable MD5 verification to restore.\n");
bigbiff bigbiff65a4c732013-03-15 15:17:50 -04001286 return false;
1287 }
1288 md5sum.setfn(split_filename);
Dees_Troy83bd4832013-05-04 12:39:56 +00001289 while (index < 1000) {
1290 if (TWFunc::Path_Exists(split_filename) && md5sum.verify_md5digest() != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001291 LOGERR("MD5 failed to match on '%s'.\n", split_filename);
Dees_Troy43d8b002012-09-17 16:00:01 -04001292 return false;
1293 }
1294 index++;
1295 sprintf(split_filename, "%s%03i", Full_Filename.c_str(), index);
bigbiff bigbiff65a4c732013-03-15 15:17:50 -04001296 md5sum.setfn(split_filename);
Dees_Troy43d8b002012-09-17 16:00:01 -04001297 }
Dees_Troy4a2a1262012-09-18 09:33:47 -04001298 return true;
Dees_Troy43d8b002012-09-17 16:00:01 -04001299 } else {
1300 // Single file archive
bigbiff bigbiff65a4c732013-03-15 15:17:50 -04001301 md5file = Full_Filename + ".md5";
1302 if (!TWFunc::Path_Exists(md5file)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001303 LOGERR("No md5 file found for '%s'.\n", Full_Filename.c_str());
1304 LOGERR("Please unselect Enable MD5 verification to restore.\n");
bigbiff bigbiff65a4c732013-03-15 15:17:50 -04001305 return false;
1306 }
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -05001307 md5sum.setfn(Full_Filename);
1308 if (md5sum.verify_md5digest() != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001309 LOGERR("MD5 failed to match on '%s'.\n", Full_Filename.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001310 return false;
1311 } else
1312 return true;
1313 }
1314 return false;
1315}
1316
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001317bool TWPartition::Restore(string restore_folder, const unsigned long long *total_restore_size, unsigned long long *already_restored_size) {
Gary Peck43acadf2012-11-21 21:19:01 -08001318 string Restore_File_System;
1319
1320 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Display_Name, "Restoring");
Dees_Troy2673cec2013-04-02 20:22:16 +00001321 LOGINFO("Restore filename is: %s\n", Backup_FileName.c_str());
Gary Peck43acadf2012-11-21 21:19:01 -08001322
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001323 Restore_File_System = Get_Restore_File_System(restore_folder);
1324
1325 if (Is_File_System(Restore_File_System))
1326 return Restore_Tar(restore_folder, Restore_File_System, total_restore_size, already_restored_size);
1327 else if (Is_Image(Restore_File_System)) {
1328 *already_restored_size += TWFunc::Get_File_Size(Backup_Name);
1329 if (Restore_File_System == "emmc")
Ethan Yonker96af84a2015-01-05 14:58:36 -06001330 return Restore_Image(restore_folder, total_restore_size, already_restored_size, Restore_File_System);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001331 }
1332
1333 LOGERR("Unknown restore method for '%s'\n", Mount_Point.c_str());
1334 return false;
1335}
1336
1337string TWPartition::Get_Restore_File_System(string restore_folder) {
1338 size_t first_period, second_period;
1339 string Restore_File_System;
1340
Gary Peck43acadf2012-11-21 21:19:01 -08001341 // Parse backup filename to extract the file system before wiping
1342 first_period = Backup_FileName.find(".");
1343 if (first_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001344 LOGERR("Unable to find file system (first period).\n");
thatd43bf2d2014-09-21 23:13:02 +02001345 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08001346 }
1347 Restore_File_System = Backup_FileName.substr(first_period + 1, Backup_FileName.size() - first_period - 1);
1348 second_period = Restore_File_System.find(".");
1349 if (second_period == string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001350 LOGERR("Unable to find file system (second period).\n");
thatd43bf2d2014-09-21 23:13:02 +02001351 return string();
Gary Peck43acadf2012-11-21 21:19:01 -08001352 }
1353 Restore_File_System.resize(second_period);
Dees_Troy2673cec2013-04-02 20:22:16 +00001354 LOGINFO("Restore file system is: '%s'.\n", Restore_File_System.c_str());
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001355 return Restore_File_System;
Dees_Troy51a0e822012-09-05 15:24:24 -04001356}
1357
1358string TWPartition::Backup_Method_By_Name() {
Dees_Troy38bd7602012-09-14 13:33:53 -04001359 if (Backup_Method == NONE)
1360 return "none";
1361 else if (Backup_Method == FILES)
1362 return "files";
1363 else if (Backup_Method == DD)
1364 return "dd";
1365 else if (Backup_Method == FLASH_UTILS)
1366 return "flash_utils";
1367 else
1368 return "undefined";
1369 return "ERROR!";
Dees_Troy51a0e822012-09-05 15:24:24 -04001370}
1371
1372bool TWPartition::Decrypt(string Password) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001373 LOGINFO("STUB TWPartition::Decrypt, password: '%s'\n", Password.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001374 // Is this needed?
Dees_Troy51a0e822012-09-05 15:24:24 -04001375 return 1;
1376}
1377
1378bool TWPartition::Wipe_Encryption() {
Dees_Troy38bd7602012-09-14 13:33:53 -04001379 bool Save_Data_Media = Has_Data_Media;
1380
1381 if (!UnMount(true))
1382 return false;
1383
Dees_Troy38bd7602012-09-14 13:33:53 -04001384 Has_Data_Media = false;
Dees_Troy74fb2e92013-04-15 14:35:47 +00001385 Decrypted_Block_Device = "";
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06001386#ifdef TW_INCLUDE_CRYPTO
1387 if (Is_Decrypted) {
1388 if (!UnMount(true))
1389 return false;
1390 if (delete_crypto_blk_dev("userdata") != 0) {
1391 LOGERR("Error deleting crypto block device, continuing anyway.\n");
1392 }
1393 }
1394#endif
Dees_Troy74fb2e92013-04-15 14:35:47 +00001395 Is_Decrypted = false;
1396 Is_Encrypted = false;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001397 Find_Actual_Block_Device();
Gary Pecke8bc5d72012-12-21 06:45:25 -08001398 if (Wipe(Fstab_File_System)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001399 Has_Data_Media = Save_Data_Media;
1400 if (Has_Data_Media && !Symlink_Mount_Point.empty()) {
1401 Recreate_Media_Folder();
Ethan Yonker726a0202014-12-16 20:01:38 -06001402 if (Mount(false))
1403 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001404 }
Ethan Yonkerd79d9bc2014-12-20 15:38:29 -06001405 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
Ethan Yonker83e82572014-04-04 10:59:28 -05001406#ifndef TW_OEM_BUILD
Dees_Troy2673cec2013-04-02 20:22:16 +00001407 gui_print("You may need to reboot recovery to be able to use /data again.\n");
Ethan Yonker83e82572014-04-04 10:59:28 -05001408#endif
Dees_Troy38bd7602012-09-14 13:33:53 -04001409 return true;
1410 } else {
1411 Has_Data_Media = Save_Data_Media;
Dees_Troy2673cec2013-04-02 20:22:16 +00001412 LOGERR("Unable to format to remove encryption.\n");
Ethan Yonker726a0202014-12-16 20:01:38 -06001413 if (Has_Data_Media && Mount(false))
1414 PartitionManager.Add_MTP_Storage(MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001415 return false;
1416 }
1417 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001418}
1419
1420void TWPartition::Check_FS_Type() {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05001421 const char* type;
1422 blkid_probe pr;
Dees_Troy5bf43922012-09-07 16:07:55 -04001423
Dees_Troy68cab492012-12-12 19:29:35 +00001424 if (Fstab_File_System == "yaffs2" || Fstab_File_System == "mtd" || Fstab_File_System == "bml" || Ignore_Blkid)
1425 return; // Running blkid on some mtd devices causes a massive crash or needs to be skipped
Dees_Troy5bf43922012-09-07 16:07:55 -04001426
Dees_Troy38bd7602012-09-14 13:33:53 -04001427 Find_Actual_Block_Device();
Dees_Troy8170a922012-09-18 15:40:25 -04001428 if (!Is_Present)
1429 return;
Dees_Troy51127312012-09-08 13:08:49 -04001430
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05001431 pr = blkid_new_probe_from_filename(Actual_Block_Device.c_str());
1432 if (blkid_do_fullprobe(pr)) {
1433 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00001434 LOGINFO("Can't probe device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05001435 return;
Dees_Troy5bf43922012-09-07 16:07:55 -04001436 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02001437
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05001438 if (blkid_probe_lookup_value(pr, "TYPE", &type, NULL) < 0) {
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05001439 blkid_free_probe(pr);
Dees_Troy2673cec2013-04-02 20:22:16 +00001440 LOGINFO("can't find filesystem on device %s\n", Actual_Block_Device.c_str());
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05001441 return;
1442 }
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02001443
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05001444 Current_File_System = type;
Vojtech Bocek4d4b3362013-06-24 22:46:13 +02001445 blkid_free_probe(pr);
Dees_Troy51a0e822012-09-05 15:24:24 -04001446}
1447
Gary Peck43acadf2012-11-21 21:19:01 -08001448bool TWPartition::Wipe_EXT23(string File_System) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001449 if (!UnMount(true))
1450 return false;
1451
Dees_Troy43d8b002012-09-17 16:00:01 -04001452 if (TWFunc::Path_Exists("/sbin/mke2fs")) {
Vojtech Bocek05534202013-09-11 08:11:56 +02001453 string command;
Dees_Troy38bd7602012-09-14 13:33:53 -04001454
Dees_Troy2673cec2013-04-02 20:22:16 +00001455 gui_print("Formatting %s using mke2fs...\n", Display_Name.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001456 Find_Actual_Block_Device();
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001457 command = "mke2fs -t " + File_System + " -m 0 " + Actual_Block_Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00001458 LOGINFO("mke2fs command: %s\n", command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001459 if (TWFunc::Exec_Cmd(command) == 0) {
Gary Pecke8bc5d72012-12-21 06:45:25 -08001460 Current_File_System = File_System;
Dees_Troye58d5262012-09-21 12:27:57 -04001461 Recreate_AndSec_Folder();
Dees_Troy2673cec2013-04-02 20:22:16 +00001462 gui_print("Done.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001463 return true;
1464 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001465 LOGERR("Unable to wipe '%s'.\n", Mount_Point.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001466 return false;
1467 }
1468 } else
1469 return Wipe_RMRF();
1470
1471 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001472}
1473
1474bool TWPartition::Wipe_EXT4() {
Ethan Yonker25f20c12014-10-14 09:04:43 -05001475 Find_Actual_Block_Device();
1476 if (!Is_Present) {
1477 LOGERR("Block device not present, cannot wipe %s.\n", Display_Name.c_str());
1478 return false;
1479 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001480 if (!UnMount(true))
1481 return false;
1482
Dees_Troyb3265ab2013-08-30 02:59:14 +00001483#if defined(HAVE_SELINUX) && defined(USE_EXT4)
Ethan Yonkerf27497f2014-02-09 11:48:33 -06001484 int ret;
1485 char *secontext = NULL;
1486
Dees_Troya95f55c2013-08-17 13:14:43 +00001487 gui_print("Formatting %s using make_ext4fs function.\n", Display_Name.c_str());
Ethan Yonkerf27497f2014-02-09 11:48:33 -06001488
Dees Troy99c8dbf2014-03-10 16:53:58 +00001489 if (!selinux_handle || selabel_lookup(selinux_handle, &secontext, Mount_Point.c_str(), S_IFDIR) < 0) {
Ethan Yonkerf27497f2014-02-09 11:48:33 -06001490 LOGINFO("Cannot lookup security context for '%s'\n", Mount_Point.c_str());
1491 ret = make_ext4fs(Actual_Block_Device.c_str(), Length, Mount_Point.c_str(), NULL);
1492 } else {
1493 ret = make_ext4fs(Actual_Block_Device.c_str(), Length, Mount_Point.c_str(), selinux_handle);
1494 }
1495 if (ret != 0) {
Dees_Troya95f55c2013-08-17 13:14:43 +00001496 LOGERR("Unable to wipe '%s' using function call.\n", Mount_Point.c_str());
1497 return false;
1498 } else {
bigbiff bigbiffc49d7062013-10-11 20:28:00 -04001499 string sedir = Mount_Point + "/lost+found";
1500 PartitionManager.Mount_By_Path(sedir.c_str(), true);
1501 rmdir(sedir.c_str());
1502 mkdir(sedir.c_str(), S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP);
Dees_Troya95f55c2013-08-17 13:14:43 +00001503 return true;
1504 }
1505#else
Dees_Troy43d8b002012-09-17 16:00:01 -04001506 if (TWFunc::Path_Exists("/sbin/make_ext4fs")) {
Vojtech Bocek05534202013-09-11 08:11:56 +02001507 string Command;
Dees_Troy38bd7602012-09-14 13:33:53 -04001508
Dees_Troy2673cec2013-04-02 20:22:16 +00001509 gui_print("Formatting %s using make_ext4fs...\n", Display_Name.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001510 Find_Actual_Block_Device();
1511 Command = "make_ext4fs";
1512 if (!Is_Decrypted && Length != 0) {
1513 // Only use length if we're not decrypted
1514 char len[32];
1515 sprintf(len, "%i", Length);
1516 Command += " -l ";
1517 Command += len;
1518 }
Dees_Troy5295d582013-09-06 15:51:08 +00001519 if (TWFunc::Path_Exists("/file_contexts")) {
1520 Command += " -S /file_contexts";
1521 }
1522 Command += " -a " + Mount_Point + " " + Actual_Block_Device;
Dees_Troy2673cec2013-04-02 20:22:16 +00001523 LOGINFO("make_ext4fs command: %s\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001524 if (TWFunc::Exec_Cmd(Command) == 0) {
Gary Pecke8bc5d72012-12-21 06:45:25 -08001525 Current_File_System = "ext4";
Dees_Troye58d5262012-09-21 12:27:57 -04001526 Recreate_AndSec_Folder();
Dees_Troy2673cec2013-04-02 20:22:16 +00001527 gui_print("Done.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001528 return true;
1529 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001530 LOGERR("Unable to wipe '%s'.\n", Mount_Point.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001531 return false;
1532 }
1533 } else
Gary Peck43acadf2012-11-21 21:19:01 -08001534 return Wipe_EXT23("ext4");
Dees_Troya95f55c2013-08-17 13:14:43 +00001535#endif
Dees_Troy38bd7602012-09-14 13:33:53 -04001536 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001537}
1538
1539bool TWPartition::Wipe_FAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02001540 string command;
Dees_Troy38bd7602012-09-14 13:33:53 -04001541
Dees_Troy43d8b002012-09-17 16:00:01 -04001542 if (TWFunc::Path_Exists("/sbin/mkdosfs")) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001543 if (!UnMount(true))
1544 return false;
1545
Dees_Troy2673cec2013-04-02 20:22:16 +00001546 gui_print("Formatting %s using mkdosfs...\n", Display_Name.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001547 Find_Actual_Block_Device();
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001548 command = "mkdosfs " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02001549 if (TWFunc::Exec_Cmd(command) == 0) {
Gary Pecke8bc5d72012-12-21 06:45:25 -08001550 Current_File_System = "vfat";
Dees_Troye58d5262012-09-21 12:27:57 -04001551 Recreate_AndSec_Folder();
Dees_Troy2673cec2013-04-02 20:22:16 +00001552 gui_print("Done.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001553 return true;
1554 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001555 LOGERR("Unable to wipe '%s'.\n", Mount_Point.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001556 return false;
1557 }
1558 return true;
1559 }
1560 else
1561 return Wipe_RMRF();
1562
1563 return false;
Dees_Troy51a0e822012-09-05 15:24:24 -04001564}
1565
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001566bool TWPartition::Wipe_EXFAT() {
Vojtech Bocek05534202013-09-11 08:11:56 +02001567 string command;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001568
1569 if (TWFunc::Path_Exists("/sbin/mkexfatfs")) {
1570 if (!UnMount(true))
1571 return false;
1572
Dees_Troy2673cec2013-04-02 20:22:16 +00001573 gui_print("Formatting %s using mkexfatfs...\n", Display_Name.c_str());
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001574 Find_Actual_Block_Device();
1575 command = "mkexfatfs " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02001576 if (TWFunc::Exec_Cmd(command) == 0) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001577 Recreate_AndSec_Folder();
Dees_Troy2673cec2013-04-02 20:22:16 +00001578 gui_print("Done.\n");
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001579 return true;
1580 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001581 LOGERR("Unable to wipe '%s'.\n", Mount_Point.c_str());
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001582 return false;
1583 }
1584 return true;
1585 }
1586 return false;
1587}
1588
Dees_Troy38bd7602012-09-14 13:33:53 -04001589bool TWPartition::Wipe_MTD() {
1590 if (!UnMount(true))
1591 return false;
1592
Dees_Troy2673cec2013-04-02 20:22:16 +00001593 gui_print("MTD Formatting \"%s\"\n", MTD_Name.c_str());
Dees_Troy38bd7602012-09-14 13:33:53 -04001594
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001595 mtd_scan_partitions();
1596 const MtdPartition* mtd = mtd_find_partition_by_name(MTD_Name.c_str());
1597 if (mtd == NULL) {
1598 LOGERR("No mtd partition named '%s'", MTD_Name.c_str());
1599 return false;
1600 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001601
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001602 MtdWriteContext* ctx = mtd_write_partition(mtd);
1603 if (ctx == NULL) {
1604 LOGERR("Can't write '%s', failed to format.", MTD_Name.c_str());
1605 return false;
1606 }
1607 if (mtd_erase_blocks(ctx, -1) == -1) {
1608 mtd_write_close(ctx);
1609 LOGERR("Failed to format '%s'", MTD_Name.c_str());
1610 return false;
1611 }
1612 if (mtd_write_close(ctx) != 0) {
1613 LOGERR("Failed to close '%s'", MTD_Name.c_str());
1614 return false;
1615 }
Gary Pecke8bc5d72012-12-21 06:45:25 -08001616 Current_File_System = "yaffs2";
Dees_Troye58d5262012-09-21 12:27:57 -04001617 Recreate_AndSec_Folder();
Dees_Troy2673cec2013-04-02 20:22:16 +00001618 gui_print("Done.\n");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001619 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001620}
1621
1622bool TWPartition::Wipe_RMRF() {
Dees_Troy38bd7602012-09-14 13:33:53 -04001623 if (!Mount(true))
1624 return false;
Ethan Yonker726a0202014-12-16 20:01:38 -06001625 // This is the only wipe that leaves the partition mounted, so we
1626 // must manually remove the partition from MTP if it is a storage
1627 // partition.
1628 if (Is_Storage)
1629 PartitionManager.Remove_MTP_Storage(MTP_Storage_ID);
Dees_Troy38bd7602012-09-14 13:33:53 -04001630
Dees_Troy2673cec2013-04-02 20:22:16 +00001631 gui_print("Removing all files under '%s'\n", Mount_Point.c_str());
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001632 TWFunc::removeDir(Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04001633 Recreate_AndSec_Folder();
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001634 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001635}
1636
Dees_Troye5017042013-08-29 16:38:55 +00001637bool TWPartition::Wipe_F2FS() {
Vojtech Bocek05534202013-09-11 08:11:56 +02001638 string command;
Dees_Troye5017042013-08-29 16:38:55 +00001639
1640 if (TWFunc::Path_Exists("/sbin/mkfs.f2fs")) {
1641 if (!UnMount(true))
1642 return false;
1643
1644 gui_print("Formatting %s using mkfs.f2fs...\n", Display_Name.c_str());
1645 Find_Actual_Block_Device();
1646 command = "mkfs.f2fs " + Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +02001647 if (TWFunc::Exec_Cmd(command) == 0) {
Dees_Troye5017042013-08-29 16:38:55 +00001648 Recreate_AndSec_Folder();
1649 gui_print("Done.\n");
1650 return true;
1651 } else {
1652 LOGERR("Unable to wipe '%s'.\n", Mount_Point.c_str());
1653 return false;
1654 }
1655 return true;
1656 } else {
1657 gui_print("mkfs.f2fs binary not found, using rm -rf to wipe.\n");
1658 return Wipe_RMRF();
1659 }
1660 return false;
1661}
1662
Dees_Troy51a0e822012-09-05 15:24:24 -04001663bool TWPartition::Wipe_Data_Without_Wiping_Media() {
Ethan Yonker83e82572014-04-04 10:59:28 -05001664#ifdef TW_OEM_BUILD
1665 // In an OEM Build we want to do a full format
1666 return Wipe_Encryption();
1667#else
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001668 string dir;
Dees_Troy38bd7602012-09-14 13:33:53 -04001669
1670 // This handles wiping data on devices with "sdcard" in /data/media
1671 if (!Mount(true))
1672 return false;
1673
Dees_Troy2673cec2013-04-02 20:22:16 +00001674 gui_print("Wiping data without wiping /data/media ...\n");
Dees_Troy38bd7602012-09-14 13:33:53 -04001675
1676 DIR* d;
1677 d = opendir("/data");
Dees_Troy16b74352012-11-14 22:27:31 +00001678 if (d != NULL) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001679 struct dirent* de;
1680 while ((de = readdir(d)) != NULL) {
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05001681 if (strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0) continue;
Dees_Troy16b74352012-11-14 22:27:31 +00001682 // The media folder is the "internal sdcard"
1683 // The .layout_version file is responsible for determining whether 4.2 decides up upgrade
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001684 // the media folder for multi-user.
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05001685 //TODO: convert this to use twrpDU.cpp
Dees_Troy16b74352012-11-14 22:27:31 +00001686 if (strcmp(de->d_name, "media") == 0 || strcmp(de->d_name, ".layout_version") == 0) continue;
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05001687
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001688 dir = "/data/";
1689 dir.append(de->d_name);
Dees_Troyce675462013-01-09 19:48:21 +00001690 if (de->d_type == DT_DIR) {
1691 TWFunc::removeDir(dir, false);
bigbiff bigbiff98f1f902013-01-19 18:46:13 -05001692 } else if (de->d_type == DT_REG || de->d_type == DT_LNK || de->d_type == DT_FIFO || de->d_type == DT_SOCK) {
Dees_Troyce675462013-01-09 19:48:21 +00001693 if (!unlink(dir.c_str()))
Dees_Troy2673cec2013-04-02 20:22:16 +00001694 LOGINFO("Unable to unlink '%s'\n", dir.c_str());
Dees_Troyce675462013-01-09 19:48:21 +00001695 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001696 }
1697 closedir(d);
bigbiff bigbiffc7360dd2014-01-25 15:02:57 -05001698
Dees_Troy2673cec2013-04-02 20:22:16 +00001699 gui_print("Done.\n");
Dees_Troy16b74352012-11-14 22:27:31 +00001700 return true;
Dees_Troy38bd7602012-09-14 13:33:53 -04001701 }
Dees_Troy2673cec2013-04-02 20:22:16 +00001702 gui_print("Dirent failed to open /data, error!\n");
Dees_Troy16b74352012-11-14 22:27:31 +00001703 return false;
Ethan Yonker83e82572014-04-04 10:59:28 -05001704#endif // ifdef TW_OEM_BUILD
Dees_Troy51a0e822012-09-05 15:24:24 -04001705}
1706
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001707bool TWPartition::Backup_Tar(string backup_folder, const unsigned long long *overall_size, const unsigned long long *other_backups_size) {
Dees_Troy4a2a1262012-09-18 09:33:47 -04001708 char back_name[255], split_index[5];
1709 string Full_FileName, Split_FileName, Tar_Args, Command;
Dees_Troy83bd4832013-05-04 12:39:56 +00001710 int use_compression, use_encryption = 0, index, backup_count;
Dees_Troy4a2a1262012-09-18 09:33:47 -04001711 struct stat st;
Dees_Troy7c2dec82012-09-26 09:49:14 -04001712 unsigned long long total_bsize = 0, file_size;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001713 twrpTar tar;
1714 vector <string> files;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -05001715
Dees_Troy43d8b002012-09-17 16:00:01 -04001716 if (!Mount(true))
1717 return false;
1718
Dees_Troya13d74f2013-03-24 08:54:55 -05001719 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Backup_Display_Name, "Backing Up");
Dees_Troy2673cec2013-04-02 20:22:16 +00001720 gui_print("Backing up %s...\n", Backup_Display_Name.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001721
1722 DataManager::GetValue(TW_USE_COMPRESSION_VAR, use_compression);
Dees_Troy83bd4832013-05-04 12:39:56 +00001723 tar.use_compression = use_compression;
Matt Mowerbb81e5d2014-03-20 18:05:41 -05001724
Dees_Troy83bd4832013-05-04 12:39:56 +00001725#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
1726 DataManager::GetValue("tw_encrypt_backup", use_encryption);
1727 if (use_encryption && Can_Encrypt_Backup) {
1728 tar.use_encryption = use_encryption;
1729 if (Use_Userdata_Encryption)
1730 tar.userdata_encryption = use_encryption;
Ethan Yonker87af5632014-02-10 11:56:35 -06001731 string Password;
1732 DataManager::GetValue("tw_backup_password", Password);
1733 tar.setpassword(Password);
Dees_Troy83bd4832013-05-04 12:39:56 +00001734 } else {
1735 use_encryption = false;
1736 }
1737#endif
Dees_Troy43d8b002012-09-17 16:00:01 -04001738
1739 sprintf(back_name, "%s.%s.win", Backup_Name.c_str(), Current_File_System.c_str());
1740 Backup_FileName = back_name;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001741 Full_FileName = backup_folder + "/" + Backup_FileName;
Dees_Troy83bd4832013-05-04 12:39:56 +00001742 tar.has_data_media = Has_Data_Media;
Dees Troye0a433a2013-12-02 04:10:37 +00001743 Full_FileName = backup_folder + "/" + Backup_FileName;
1744 tar.setdir(Backup_Path);
1745 tar.setfn(Full_FileName);
1746 tar.setsize(Backup_Size);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001747 tar.partition_name = Backup_Name;
1748 tar.backup_folder = backup_folder;
1749 if (tar.createTarFork(overall_size, other_backups_size) != 0)
Dees Troye0a433a2013-12-02 04:10:37 +00001750 return false;
Dees_Troy43d8b002012-09-17 16:00:01 -04001751 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001752}
1753
1754bool TWPartition::Backup_DD(string backup_folder) {
igoriok87e3d932013-01-31 21:03:53 +02001755 char back_name[255], backup_size[32];
Vojtech Bocek05534202013-09-11 08:11:56 +02001756 string Full_FileName, Command, DD_BS;
Dees_Troy43d8b002012-09-17 16:00:01 -04001757 int use_compression;
1758
igoriok87e3d932013-01-31 21:03:53 +02001759 sprintf(backup_size, "%llu", Backup_Size);
1760 DD_BS = backup_size;
1761
Dees_Troyb46a6842012-09-25 11:06:46 -04001762 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, "Backing Up");
Dees_Troy2673cec2013-04-02 20:22:16 +00001763 gui_print("Backing up %s...\n", Display_Name.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001764
1765 sprintf(back_name, "%s.%s.win", Backup_Name.c_str(), Current_File_System.c_str());
1766 Backup_FileName = back_name;
1767
1768 Full_FileName = backup_folder + "/" + Backup_FileName;
1769
Ethan Yonker448c8dc2014-12-08 15:34:34 -06001770 Command = "dd if=" + Actual_Block_Device + " of='" + Full_FileName + "'" + " bs=" + DD_BS + " count=1";
Dees_Troy2673cec2013-04-02 20:22:16 +00001771 LOGINFO("Backup command: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001772 TWFunc::Exec_Cmd(Command);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001773 tw_set_default_metadata(Full_FileName.c_str());
Dees_Troyc154ac22012-10-12 15:36:47 -04001774 if (TWFunc::Get_File_Size(Full_FileName) == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001775 LOGERR("Backup file size for '%s' is 0 bytes.\n", Full_FileName.c_str());
Dees_Troy7c2dec82012-09-26 09:49:14 -04001776 return false;
1777 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001778 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001779}
1780
1781bool TWPartition::Backup_Dump_Image(string backup_folder) {
Dees_Troy43d8b002012-09-17 16:00:01 -04001782 char back_name[255];
Vojtech Bocek05534202013-09-11 08:11:56 +02001783 string Full_FileName, Command;
Dees_Troy43d8b002012-09-17 16:00:01 -04001784 int use_compression;
1785
Dees_Troyb46a6842012-09-25 11:06:46 -04001786 TWFunc::GUI_Operation_Text(TW_BACKUP_TEXT, Display_Name, "Backing Up");
Dees_Troy2673cec2013-04-02 20:22:16 +00001787 gui_print("Backing up %s...\n", Display_Name.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001788
1789 sprintf(back_name, "%s.%s.win", Backup_Name.c_str(), Current_File_System.c_str());
1790 Backup_FileName = back_name;
1791
1792 Full_FileName = backup_folder + "/" + Backup_FileName;
1793
1794 Command = "dump_image " + MTD_Name + " '" + Full_FileName + "'";
Dees_Troy2673cec2013-04-02 20:22:16 +00001795 LOGINFO("Backup command: '%s'\n", Command.c_str());
Vojtech Bocek05534202013-09-11 08:11:56 +02001796 TWFunc::Exec_Cmd(Command);
Ethan Yonker4b94cfd2014-12-11 10:00:45 -06001797 tw_set_default_metadata(Full_FileName.c_str());
Dees_Troy7c2dec82012-09-26 09:49:14 -04001798 if (TWFunc::Get_File_Size(Full_FileName) == 0) {
1799 // Actual size may not match backup size due to bad blocks on MTD devices so just check for 0 bytes
Dees_Troy2673cec2013-04-02 20:22:16 +00001800 LOGERR("Backup file size for '%s' is 0 bytes.\n", Full_FileName.c_str());
Dees_Troy7c2dec82012-09-26 09:49:14 -04001801 return false;
1802 }
Dees_Troy43d8b002012-09-17 16:00:01 -04001803 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001804}
1805
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001806unsigned long long TWPartition::Get_Restore_Size(string restore_folder) {
1807 InfoManager restore_info(restore_folder + "/" + Backup_Name + ".info");
1808 if (restore_info.LoadValues() == 0) {
1809 if (restore_info.GetValue("backup_size", Restore_Size) == 0) {
1810 LOGINFO("Read info file, restore size is %llu\n", Restore_Size);
1811 return Restore_Size;
1812 }
1813 }
1814 string Full_FileName, Restore_File_System = Get_Restore_File_System(restore_folder);
1815
1816 Full_FileName = restore_folder + "/" + Backup_FileName;
1817
1818 if (Is_Image(Restore_File_System)) {
1819 Restore_Size = TWFunc::Get_File_Size(Full_FileName);
1820 return Restore_Size;
1821 }
1822
1823 twrpTar tar;
1824 tar.setdir(Backup_Path);
1825 tar.setfn(Full_FileName);
1826 tar.backup_name = Backup_Name;
1827#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
1828 string Password;
1829 DataManager::GetValue("tw_restore_password", Password);
1830 if (!Password.empty())
1831 tar.setpassword(Password);
1832#endif
1833 tar.partition_name = Backup_Name;
1834 tar.backup_folder = restore_folder;
1835 Restore_Size = tar.get_size();
1836 return Restore_Size;
1837}
1838
1839bool TWPartition::Restore_Tar(string restore_folder, string Restore_File_System, const unsigned long long *total_restore_size, unsigned long long *already_restored_size) {
Gary Peck43acadf2012-11-21 21:19:01 -08001840 string Full_FileName, Command;
Dees_Troy4a2a1262012-09-18 09:33:47 -04001841 int index = 0;
1842 char split_index[5];
Dees Troy4159aed2014-02-28 17:24:43 +00001843 bool ret = false;
Dees_Troy43d8b002012-09-17 16:00:01 -04001844
Dees_Troye58d5262012-09-21 12:27:57 -04001845 if (Has_Android_Secure) {
Dees_Troye58d5262012-09-21 12:27:57 -04001846 if (!Wipe_AndSec())
1847 return false;
Gary Peck43acadf2012-11-21 21:19:01 -08001848 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +00001849 gui_print("Wiping %s...\n", Display_Name.c_str());
Ethan Yonker5eac2222014-06-11 12:22:55 -05001850 if (Has_Data_Media && Mount_Point == "/data" && Restore_File_System != Current_File_System) {
1851 gui_print("WARNING: This /data backup was made with %s file system!\n", Restore_File_System.c_str());
1852 gui_print("The backup may not boot unless you change back to %s.\n", Restore_File_System.c_str());
1853 if (!Wipe_Data_Without_Wiping_Media())
1854 return false;
1855 } else {
1856 if (!Wipe(Restore_File_System))
1857 return false;
1858 }
Dees_Troye58d5262012-09-21 12:27:57 -04001859 }
Dees_Troya13d74f2013-03-24 08:54:55 -05001860 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Backup_Display_Name, "Restoring");
Dees_Troy2673cec2013-04-02 20:22:16 +00001861 gui_print("Restoring %s...\n", Backup_Display_Name.c_str());
Dees_Troy43d8b002012-09-17 16:00:01 -04001862
1863 if (!Mount(true))
1864 return false;
1865
Dees_Troy4a2a1262012-09-18 09:33:47 -04001866 Full_FileName = restore_folder + "/" + Backup_FileName;
Ethan Yonker87af5632014-02-10 11:56:35 -06001867 twrpTar tar;
1868 tar.setdir(Backup_Path);
1869 tar.setfn(Full_FileName);
1870 tar.backup_name = Backup_Name;
1871#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
1872 string Password;
1873 DataManager::GetValue("tw_restore_password", Password);
1874 if (!Password.empty())
1875 tar.setpassword(Password);
1876#endif
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001877 if (tar.extractTarFork(total_restore_size, already_restored_size) != 0)
Dees Troy4159aed2014-02-28 17:24:43 +00001878 ret = false;
1879 else
1880 ret = true;
1881#ifdef HAVE_CAPABILITIES
1882 // Restore capabilities to the run-as binary
1883 if (Mount_Point == "/system" && Mount(true) && TWFunc::Path_Exists("/system/bin/run-as")) {
1884 struct vfs_cap_data cap_data;
1885 uint64_t capabilities = (1 << CAP_SETUID) | (1 << CAP_SETGID);
1886
1887 memset(&cap_data, 0, sizeof(cap_data));
1888 cap_data.magic_etc = VFS_CAP_REVISION | VFS_CAP_FLAGS_EFFECTIVE;
1889 cap_data.data[0].permitted = (uint32_t) (capabilities & 0xffffffff);
1890 cap_data.data[0].inheritable = 0;
1891 cap_data.data[1].permitted = (uint32_t) (capabilities >> 32);
1892 cap_data.data[1].inheritable = 0;
1893 if (setxattr("/system/bin/run-as", XATTR_NAME_CAPS, &cap_data, sizeof(cap_data), 0) < 0) {
1894 LOGINFO("Failed to reset capabilities of /system/bin/run-as binary.\n");
1895 } else {
1896 LOGINFO("Reset capabilities of /system/bin/run-as binary successful.\n");
1897 }
1898 }
1899#endif
1900 return ret;
Dees_Troy51a0e822012-09-05 15:24:24 -04001901}
1902
Ethan Yonker96af84a2015-01-05 14:58:36 -06001903bool TWPartition::Restore_Image(string restore_folder, const unsigned long long *total_restore_size, unsigned long long *already_restored_size, string Restore_File_System) {
1904 string Full_FileName;
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001905 double display_percent, progress_percent;
1906 char size_progress[1024];
Dees_Troy43d8b002012-09-17 16:00:01 -04001907
Dees_Troyda8b55a2012-12-12 19:18:30 +00001908 TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Display_Name, "Restoring");
Dees_Troy43d8b002012-09-17 16:00:01 -04001909 Full_FileName = restore_folder + "/" + Backup_FileName;
Gary Peck15e623d2012-11-21 21:07:58 -08001910
Ethan Yonker96af84a2015-01-05 14:58:36 -06001911 if (Restore_File_System == "emmc") {
1912 if (!Flash_Image_DD(Full_FileName))
1913 return false;
1914 } else if (Restore_File_System == "mtd" || Restore_File_System == "bml") {
1915 if (!Flash_Image_FI(Full_FileName))
1916 return false;
Gary Peck15e623d2012-11-21 21:07:58 -08001917 }
Ethan Yonker1b7a31b2014-07-03 15:09:22 -05001918 display_percent = (double)(Restore_Size + *already_restored_size) / (double)(*total_restore_size) * 100;
1919 sprintf(size_progress, "%lluMB of %lluMB, %i%%", (Restore_Size + *already_restored_size) / 1048576, *total_restore_size / 1048576, (int)(display_percent));
1920 DataManager::SetValue("tw_size_progress", size_progress);
1921 progress_percent = (display_percent / 100);
1922 DataManager::SetProgress((float)(progress_percent));
1923 *already_restored_size += Restore_Size;
Dees_Troy43d8b002012-09-17 16:00:01 -04001924 return true;
Dees_Troy51a0e822012-09-05 15:24:24 -04001925}
Dees_Troy5bf43922012-09-07 16:07:55 -04001926
1927bool TWPartition::Update_Size(bool Display_Error) {
Dees_Troy0550cfb2012-10-13 11:56:13 -04001928 bool ret = false, Was_Already_Mounted = false;
Dees_Troy51127312012-09-08 13:08:49 -04001929
Dees_Troyab10ee22012-09-21 14:27:30 -04001930 if (!Can_Be_Mounted && !Is_Encrypted)
Dees_Troy5bf43922012-09-07 16:07:55 -04001931 return false;
1932
Dees_Troy0550cfb2012-10-13 11:56:13 -04001933 Was_Already_Mounted = Is_Mounted();
Dees_Troy38bd7602012-09-14 13:33:53 -04001934 if (Removable || Is_Encrypted) {
1935 if (!Mount(false))
1936 return true;
1937 } else if (!Mount(Display_Error))
Dees_Troy5bf43922012-09-07 16:07:55 -04001938 return false;
Dees_Troy51127312012-09-08 13:08:49 -04001939
1940 ret = Get_Size_Via_statfs(Display_Error);
Dees_Troy0550cfb2012-10-13 11:56:13 -04001941 if (!ret || Size == 0) {
1942 if (!Get_Size_Via_df(Display_Error)) {
1943 if (!Was_Already_Mounted)
1944 UnMount(false);
Dees_Troy51127312012-09-08 13:08:49 -04001945 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04001946 }
1947 }
Dees_Troy51127312012-09-08 13:08:49 -04001948
Dees_Troy5bf43922012-09-07 16:07:55 -04001949 if (Has_Data_Media) {
1950 if (Mount(Display_Error)) {
Dees_Troy51127312012-09-08 13:08:49 -04001951 unsigned long long data_media_used, actual_data;
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05001952 Used = du.Get_Folder_Size("/data");
1953 Backup_Size = Used;
1954 int bak = (int)(Used / 1048576LLU);
Dees_Troy51127312012-09-08 13:08:49 -04001955 int fre = (int)(Free / 1048576LLU);
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05001956 LOGINFO("Data backup size is %iMB, free: %iMB.\n", bak, fre);
Dees_Troy0550cfb2012-10-13 11:56:13 -04001957 } else {
1958 if (!Was_Already_Mounted)
1959 UnMount(false);
Dees_Troy5bf43922012-09-07 16:07:55 -04001960 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04001961 }
Dees_Troye58d5262012-09-21 12:27:57 -04001962 } else if (Has_Android_Secure) {
1963 if (Mount(Display_Error))
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05001964 Backup_Size = du.Get_Folder_Size(Backup_Path);
Dees_Troy0550cfb2012-10-13 11:56:13 -04001965 else {
1966 if (!Was_Already_Mounted)
1967 UnMount(false);
Dees_Troye58d5262012-09-21 12:27:57 -04001968 return false;
Dees_Troy0550cfb2012-10-13 11:56:13 -04001969 }
Dees_Troy5bf43922012-09-07 16:07:55 -04001970 }
Dees_Troy0550cfb2012-10-13 11:56:13 -04001971 if (!Was_Already_Mounted)
1972 UnMount(false);
Dees_Troy5bf43922012-09-07 16:07:55 -04001973 return true;
Dees_Troy51127312012-09-08 13:08:49 -04001974}
Dees_Troy38bd7602012-09-14 13:33:53 -04001975
1976void TWPartition::Find_Actual_Block_Device(void) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001977 if (Is_Decrypted && !Decrypted_Block_Device.empty()) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001978 Actual_Block_Device = Decrypted_Block_Device;
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001979 if (TWFunc::Path_Exists(Decrypted_Block_Device))
Dees_Troy38bd7602012-09-14 13:33:53 -04001980 Is_Present = true;
Dees_Troy43d8b002012-09-17 16:00:01 -04001981 } else if (TWFunc::Path_Exists(Primary_Block_Device)) {
Dees_Troy38bd7602012-09-14 13:33:53 -04001982 Is_Present = true;
1983 Actual_Block_Device = Primary_Block_Device;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001984 return;
1985 }
1986 if (Is_Decrypted) {
Dees_Troy43d8b002012-09-17 16:00:01 -04001987 } else if (!Alternate_Block_Device.empty() && TWFunc::Path_Exists(Alternate_Block_Device)) {
Dees_Troy3f04d032012-10-07 18:20:09 -04001988 Actual_Block_Device = Alternate_Block_Device;
Dees_Troy38bd7602012-09-14 13:33:53 -04001989 Is_Present = true;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001990 } else {
Dees_Troy38bd7602012-09-14 13:33:53 -04001991 Is_Present = false;
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001992 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001993}
1994
1995void TWPartition::Recreate_Media_Folder(void) {
1996 string Command;
1997
1998 if (!Mount(true)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00001999 LOGERR("Unable to recreate /data/media folder.\n");
Dees_Troyb46a6842012-09-25 11:06:46 -04002000 } else if (!TWFunc::Path_Exists("/data/media")) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002001 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Dees_Troy2673cec2013-04-02 20:22:16 +00002002 LOGINFO("Recreating /data/media folder.\n");
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05002003 mkdir("/data/media", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
Ethan Yonker5ef301e2014-10-14 10:04:44 -05002004#ifdef HAVE_SELINUX
thata3d31fb2014-12-21 22:27:40 +01002005 // Attempt to set the correct SELinux contexts on the folder
2006 fixPermissions perms;
bigbiff bigbiff6b600f92014-01-05 18:13:43 -05002007 perms.fixDataInternalContexts();
thata3d31fb2014-12-21 22:27:40 +01002008 // Afterwards, we will try to set the
2009 // default metadata that we were hopefully able to get during
2010 // early boot.
2011 tw_set_default_metadata("/data/media");
Ethan Yonker5ef301e2014-10-14 10:04:44 -05002012#endif
Ethan Yonker5eac2222014-06-11 12:22:55 -05002013 // Toggle mount to ensure that "internal sdcard" gets mounted
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002014 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Ethan Yonker5eac2222014-06-11 12:22:55 -05002015 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Dees_Troy38bd7602012-09-14 13:33:53 -04002016 }
Dees_Troy43d8b002012-09-17 16:00:01 -04002017}
Dees_Troye58d5262012-09-21 12:27:57 -04002018
2019void TWPartition::Recreate_AndSec_Folder(void) {
Dees_Troye58d5262012-09-21 12:27:57 -04002020 if (!Has_Android_Secure)
2021 return;
Dees_Troy2673cec2013-04-02 20:22:16 +00002022 LOGINFO("Creating %s: %s\n", Backup_Display_Name.c_str(), Symlink_Path.c_str());
Dees_Troye58d5262012-09-21 12:27:57 -04002023 if (!Mount(true)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002024 LOGERR("Unable to recreate %s folder.\n", Backup_Name.c_str());
Dees_Troye58d5262012-09-21 12:27:57 -04002025 } else if (!TWFunc::Path_Exists(Symlink_Path)) {
Dees_Troy2673cec2013-04-02 20:22:16 +00002026 LOGINFO("Recreating %s folder.\n", Backup_Name.c_str());
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002027 PartitionManager.Mount_By_Path(Symlink_Mount_Point, true);
Matt Mowerfb1c4ff2014-04-16 13:43:36 -05002028 mkdir(Symlink_Path.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002029 PartitionManager.UnMount_By_Path(Symlink_Mount_Point, true);
Dees_Troye58d5262012-09-21 12:27:57 -04002030 }
2031}
bigbiff7cb4c332014-11-26 20:36:07 -05002032
2033uint64_t TWPartition::Get_Max_FileSize() {
2034 uint64_t maxFileSize = 0;
2035 const uint64_t constGB = (uint64_t) 1024 * 1024 * 1024;
2036 const uint64_t constTB = (uint64_t) constGB * 1024;
2037 const uint64_t constPB = (uint64_t) constTB * 1024;
2038 const uint64_t constEB = (uint64_t) constPB * 1024;
bigbiff0c532032014-12-21 13:41:26 -05002039 if (Current_File_System == "ext4")
2040 maxFileSize = 16 * constTB; //16 TB
2041 else if (Current_File_System == "vfat")
2042 maxFileSize = 4 * constGB; //4 GB
2043 else if (Current_File_System == "ntfs")
2044 maxFileSize = 256 * constTB; //256 TB
2045 else if (Current_File_System == "exfat")
2046 maxFileSize = 16 * constPB; //16 PB
2047 else if (Current_File_System == "ext3")
2048 maxFileSize = 2 * constTB; //2 TB
2049 else if (Current_File_System == "f2fs")
2050 maxFileSize = 3.94 * constTB; //3.94 TB
bigbiff7cb4c332014-11-26 20:36:07 -05002051 else
2052 maxFileSize = 100000000L;
Ethan Yonker96af84a2015-01-05 14:58:36 -06002053 LOGINFO("Get_Max_FileSize::maxFileSize: %llu\n", maxFileSize);
bigbiff7cb4c332014-11-26 20:36:07 -05002054 return maxFileSize - 1;
2055}
2056
Ethan Yonker96af84a2015-01-05 14:58:36 -06002057bool TWPartition::Flash_Image(string Filename) {
2058 string Restore_File_System;
2059
2060 LOGINFO("Image filename is: %s\n", Filename.c_str());
2061
2062 if (Backup_Method == FILES) {
2063 LOGERR("Cannot flash images to file systems\n");
2064 return false;
2065 } else if (!Can_Flash_Img) {
2066 LOGERR("Cannot flash images to partitions %s\n", Display_Name.c_str());
2067 return false;
2068 } else {
2069 if (!Find_Partition_Size()) {
2070 LOGERR("Unable to find partition size for '%s'\n", Mount_Point.c_str());
2071 return false;
2072 }
2073 unsigned long long image_size = TWFunc::Get_File_Size(Filename);
2074 if (image_size > Size) {
2075 LOGERR("Size (%llu bytes) of image '%s' is larger than target device '%s' (%llu bytes)\n",
2076 image_size, Filename.c_str(), Actual_Block_Device.c_str(), Size);
2077 return false;
2078 }
2079 if (Backup_Method == DD)
2080 return Flash_Image_DD(Filename);
2081 else if (Backup_Method == FLASH_UTILS)
2082 return Flash_Image_FI(Filename);
2083 }
2084
2085 LOGERR("Unknown flash method for '%s'\n", Mount_Point.c_str());
2086 return false;
2087}
2088
2089bool TWPartition::Flash_Image_DD(string Filename) {
2090 string Command;
2091
2092 gui_print("Flashing %s...\n", Display_Name.c_str());
2093 Command = "dd bs=4096 if='" + Filename + "' of=" + Actual_Block_Device;
2094 LOGINFO("Flash command: '%s'\n", Command.c_str());
2095 TWFunc::Exec_Cmd(Command);
2096 return true;
2097}
2098
2099bool TWPartition::Flash_Image_FI(string Filename) {
2100 string Command;
2101
2102 gui_print("Flashing %s...\n", Display_Name.c_str());
2103 // Sometimes flash image doesn't like to flash due to the first 2KB matching, so we erase first to ensure that it flashes
2104 Command = "erase_image " + MTD_Name;
2105 LOGINFO("Erase command: '%s'\n", Command.c_str());
2106 TWFunc::Exec_Cmd(Command);
2107 Command = "flash_image " + MTD_Name + " '" + Filename + "'";
2108 LOGINFO("Flash command: '%s'\n", Command.c_str());
2109 TWFunc::Exec_Cmd(Command);
2110 return true;
2111}