blob: 6d6e5bad518c8a2fa4b5dce7f24f9f19fdc8c9e7 [file] [log] [blame]
Dees_Troya449a6f2013-04-07 17:50:11 -05001/*
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05002 TWRP is free software: you can redistribute it and/or modify
3 it under the terms of the GNU General Public License as published by
4 the Free Software Foundation, either version 3 of the License, or
5 (at your option) any later version.
Dees_Troya449a6f2013-04-07 17:50:11 -05006
bigbiff bigbiff34684ff2013-12-01 21:03:45 -05007 TWRP is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 GNU General Public License for more details.
Dees_Troya449a6f2013-04-07 17:50:11 -050011
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050012 You should have received a copy of the GNU General Public License
13 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
Dees_Troya449a6f2013-04-07 17:50:11 -050014*/
15
16#include <stdio.h>
17#include <stdlib.h>
Ethan Yonker74db1572015-10-28 12:44:49 -050018#include <string>
Dees_Troya449a6f2013-04-07 17:50:11 -050019#include <sys/stat.h>
20#include <sys/types.h>
21#include <time.h>
22#include <unistd.h>
Ethan Yonkerf9f99bc2014-12-29 09:10:34 -060023#include <signal.h>
Ethan Yonker74db1572015-10-28 12:44:49 -050024#include "gui/twmsg.h"
Dees_Troya449a6f2013-04-07 17:50:11 -050025
26#include "cutils/properties.h"
Ethan Yonker8373cfe2017-09-08 06:50:54 -050027#include "bootloader_message_twrp/include/bootloader_message_twrp/bootloader_message.h"
Dees_Troya449a6f2013-04-07 17:50:11 -050028
29#ifdef ANDROID_RB_RESTART
30#include "cutils/android_reboot.h"
31#else
32#include <sys/reboot.h>
33#endif
34
35extern "C" {
36#include "gui/gui.h"
37}
Ethan Yonkerf1179622016-08-25 15:32:21 -050038#include "set_metadata.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050039#include "gui/gui.hpp"
40#include "gui/pages.hpp"
41#include "gui/objects.hpp"
Dees_Troya449a6f2013-04-07 17:50:11 -050042#include "twcommon.h"
43#include "twrp-functions.hpp"
44#include "data.hpp"
45#include "partitions.hpp"
Mohd Faraz0d9a62e2020-02-20 00:10:26 +053046#ifdef __ANDROID_API_N__
47#include <android-base/strings.h>
48#else
49#include <base/strings.h>
50#endif
Dees_Troya449a6f2013-04-07 17:50:11 -050051#include "openrecoveryscript.hpp"
52#include "variables.h"
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -040053#include "twrpAdbBuFifo.hpp"
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050054#ifdef TW_USE_NEW_MINADBD
bigbiffd58ba182020-03-23 10:02:29 -040055// #include "minadbd/minadbd.h"
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050056#else
57extern "C" {
Ethan Yonker84d61ce2017-05-10 16:11:35 -050058#include "minadbd21/adb.h"
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050059}
60#endif
Dees_Troya449a6f2013-04-07 17:50:11 -050061
Ethan Yonker8373cfe2017-09-08 06:50:54 -050062//extern int adb_server_main(int is_daemon, int server_port, int /* reply_fd */);
Ethan Yonker534d4e02016-08-26 10:05:03 -050063
Dees_Troya449a6f2013-04-07 17:50:11 -050064TWPartitionManager PartitionManager;
65int Log_Offset;
Ethan Yonker6277c792014-09-15 14:54:30 -050066bool datamedia;
Dees_Troya449a6f2013-04-07 17:50:11 -050067
68static void Print_Prop(const char *key, const char *name, void *cookie) {
69 printf("%s=%s\n", key, name);
70}
71
72int main(int argc, char **argv) {
73 // Recovery needs to install world-readable files, so clear umask
74 // set by init
75 umask(0);
76
77 Log_Offset = 0;
78
79 // Set up temporary log file (/tmp/recovery.log)
80 freopen(TMP_LOG_FILE, "a", stdout);
81 setbuf(stdout, NULL);
82 freopen(TMP_LOG_FILE, "a", stderr);
83 setbuf(stderr, NULL);
84
Ethan Yonkerf9f99bc2014-12-29 09:10:34 -060085 signal(SIGPIPE, SIG_IGN);
86
Dees_Troya449a6f2013-04-07 17:50:11 -050087 // Handle ADB sideload
88 if (argc == 3 && strcmp(argv[1], "--adbd") == 0) {
thatcc8ddca2015-01-03 01:59:36 +010089 property_set("ctl.stop", "adbd");
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050090#ifdef TW_USE_NEW_MINADBD
Ethan Yonker8373cfe2017-09-08 06:50:54 -050091 //adb_server_main(0, DEFAULT_ADB_PORT, -1); TODO fix this for android8
bigbiffd58ba182020-03-23 10:02:29 -040092 // minadbd_main();
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050093#else
Dees_Troya449a6f2013-04-07 17:50:11 -050094 adb_main(argv[2]);
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050095#endif
Dees_Troya449a6f2013-04-07 17:50:11 -050096 return 0;
97 }
98
Ethan Yonker6277c792014-09-15 14:54:30 -050099#ifdef RECOVERY_SDCARD_ON_DATA
100 datamedia = true;
101#endif
102
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200103 char crash_prop_val[PROPERTY_VALUE_MAX];
104 int crash_counter;
105 property_get("twrp.crash_counter", crash_prop_val, "-1");
106 crash_counter = atoi(crash_prop_val) + 1;
107 snprintf(crash_prop_val, sizeof(crash_prop_val), "%d", crash_counter);
108 property_set("twrp.crash_counter", crash_prop_val);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400109 property_set("ro.twrp.boot", "1");
110 property_set("ro.twrp.version", TW_VERSION_STR);
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200111
Dees_Troya449a6f2013-04-07 17:50:11 -0500112 time_t StartupTime = time(NULL);
that0e2140e2016-08-10 21:04:26 +0200113 printf("Starting TWRP %s-%s on %s (pid %d)\n", TW_VERSION_STR, TW_GIT_REVISION, ctime(&StartupTime), getpid());
Dees_Troya449a6f2013-04-07 17:50:11 -0500114
115 // Load default values to set DataManager constants and handle ifdefs
116 DataManager::SetDefaultValues();
that0e2140e2016-08-10 21:04:26 +0200117 printf("Starting the UI...\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500118 gui_init();
119 printf("=> Linking mtab\n");
120 symlink("/proc/mounts", "/etc/mtab");
Ethan Yonker53273ec2018-03-09 11:22:54 -0600121 std::string fstab_filename = "/etc/twrp.fstab";
122 if (!TWFunc::Path_Exists(fstab_filename)) {
123 fstab_filename = "/etc/recovery.fstab";
Dees_Troy329383e2013-08-29 14:16:06 +0000124 }
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100125
126 // Begin SAR detection
127 {
128 TWPartitionManager SarPartitionManager;
129 printf("=> Processing %s for SAR-detection\n", fstab_filename.c_str());
130 if (!SarPartitionManager.Process_Fstab(fstab_filename, 1, 1)) {
131 LOGERR("Failing out of recovery due to problem with fstab.\n");
132 return -1;
133 }
134
135 mkdir("/s", 0755);
136
137#if defined(AB_OTA_UPDATER) || defined(__ANDROID_API_Q__)
138 bool fallback_sar = true;
139#else
140 bool fallback_sar = property_get_bool("ro.build.system_root_image", false);
141#endif
142
143 if(SarPartitionManager.Mount_By_Path("/s", false)) {
144 if (TWFunc::Path_Exists("/s/build.prop")) {
145 LOGINFO("SAR-DETECT: Non-SAR System detected\n");
146 property_set("ro.twrp.sar", "0");
147 rmdir("/system_root");
148 } else if (TWFunc::Path_Exists("/s/system/build.prop")) {
149 LOGINFO("SAR-DETECT: SAR System detected\n");
150 property_set("ro.twrp.sar", "1");
151 } else {
152 LOGINFO("SAR-DETECT: No build.prop found, falling back to %s\n", fallback_sar ? "SAR" : "Non-SAR");
153 property_set("ro.twrp.sar", fallback_sar ? "1" : "0");
154 }
Chaosmaster01a17992020-02-08 00:10:05 +0100155
156// We are doing this here during SAR-detection, since we are mounting the system-partition anyway
157// This way we don't need to remount it later, just for overriding properties
158#if defined(TW_INCLUDE_LIBRESETPROP) && defined(TW_OVERRIDE_SYSTEM_PROPS)
159 stringstream override_props(EXPAND(TW_OVERRIDE_SYSTEM_PROPS));
160 string current_prop;
161 while (getline(override_props, current_prop, ';')) {
162 string other_prop;
163 if (current_prop.find("=") != string::npos) {
164 other_prop = current_prop.substr(current_prop.find("=") + 1);
165 current_prop = current_prop.substr(0, current_prop.find("="));
166 } else {
167 other_prop = current_prop;
168 }
Mohd Faraz0d9a62e2020-02-20 00:10:26 +0530169 other_prop = android::base::Trim(other_prop);
170 current_prop = android::base::Trim(current_prop);
Chaosmaster01a17992020-02-08 00:10:05 +0100171 string sys_val = TWFunc::System_Property_Get(other_prop, SarPartitionManager, "/s");
172 if (!sys_val.empty()) {
173 LOGINFO("Overriding %s with value: \"%s\" from system property %s\n", current_prop.c_str(), sys_val.c_str(), other_prop.c_str());
174 int error = TWFunc::Property_Override(current_prop, sys_val);
175 if (error) {
176 LOGERR("Failed overriding property %s, error_code: %d\n", current_prop.c_str(), error);
177 }
178 } else {
179 LOGINFO("Not overriding %s with empty value from system property %s\n", current_prop.c_str(), other_prop.c_str());
180 }
181 }
182#endif
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100183 SarPartitionManager.UnMount_By_Path("/s", false);
184 } else {
185 LOGINFO("SAR-DETECT: Could not mount system partition, falling back to %s\n", fallback_sar ? "SAR":"Non-SAR");
186 property_set("ro.twrp.sar", fallback_sar ? "1" : "0");
187 }
188
189 rmdir("/s");
190
191 TWFunc::check_and_run_script("/sbin/sarsetup.sh", "boot");
192 }
193 // End SAR detection
194
Ethan Yonker53273ec2018-03-09 11:22:54 -0600195 printf("=> Processing %s\n", fstab_filename.c_str());
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100196 if (!PartitionManager.Process_Fstab(fstab_filename, 1, 0)) {
Ethan Yonker53273ec2018-03-09 11:22:54 -0600197 LOGERR("Failing out of recovery due to problem with fstab.\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500198 return -1;
199 }
200 PartitionManager.Output_Partition_Logging();
bigbiffee7b7ff2020-03-23 15:08:27 -0400201
202 if (PartitionManager.Get_Super_Status())
203 PartitionManager.Setup_Super_Devices();
204
Dees_Troya449a6f2013-04-07 17:50:11 -0500205 // Load up all the resources
206 gui_loadResources();
207
Matt Mower23d8aae2017-01-06 14:30:33 -0600208 bool Shutdown = false;
bigbiffd58ba182020-03-23 10:02:29 -0400209 bool SkipDecryption = false;
Ethan Yonkerb5236502016-11-19 22:24:59 -0600210 string Send_Intent = "";
Dees_Troya449a6f2013-04-07 17:50:11 -0500211 {
Dees_Troy1669f892013-09-04 18:35:08 +0000212 TWPartition* misc = PartitionManager.Find_Partition_By_Path("/misc");
213 if (misc != NULL) {
214 if (misc->Current_File_System == "emmc") {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500215 set_misc_device(misc->Actual_Block_Device.c_str());
Dees_Troy1669f892013-09-04 18:35:08 +0000216 } else {
Matt Mower3626bdc2017-01-06 13:45:54 -0600217 LOGERR("Only emmc /misc is supported\n");
Dees_Troy1669f892013-09-04 18:35:08 +0000218 }
219 }
Dees_Troya449a6f2013-04-07 17:50:11 -0500220 get_args(&argc, &argv);
221
222 int index, index2, len;
223 char* argptr;
224 char* ptr;
225 printf("Startup Commands: ");
226 for (index = 1; index < argc; index++) {
227 argptr = argv[index];
228 printf(" '%s'", argv[index]);
229 len = strlen(argv[index]);
230 if (*argptr == '-') {argptr++; len--;}
231 if (*argptr == '-') {argptr++; len--;}
232 if (*argptr == 'u') {
233 ptr = argptr;
234 index2 = 0;
235 while (*ptr != '=' && *ptr != '\n')
236 ptr++;
Kevin Steck7b69e9d2013-10-17 18:24:31 -0400237 // skip the = before grabbing Zip_File
238 while (*ptr == '=')
239 ptr++;
Dees_Troya449a6f2013-04-07 17:50:11 -0500240 if (*ptr) {
Ethan Yonker3aa66be2015-12-22 12:30:18 -0600241 string ORSCommand = "install ";
242 ORSCommand.append(ptr);
243
bigbiffd58ba182020-03-23 10:02:29 -0400244 // If we have a map of blocks we don't need to mount data.
245 SkipDecryption = *ptr == '@';
246
Ethan Yonker3aa66be2015-12-22 12:30:18 -0600247 if (!OpenRecoveryScript::Insert_ORS_Command(ORSCommand))
248 break;
Dees_Troya449a6f2013-04-07 17:50:11 -0500249 } else
250 LOGERR("argument error specifying zip file\n");
251 } else if (*argptr == 'w') {
Ethan Yonker3aa66be2015-12-22 12:30:18 -0600252 if (len == 9) {
253 if (!OpenRecoveryScript::Insert_ORS_Command("wipe data\n"))
254 break;
255 } else if (len == 10) {
256 if (!OpenRecoveryScript::Insert_ORS_Command("wipe cache\n"))
257 break;
258 }
Ethan Yonkerb5236502016-11-19 22:24:59 -0600259 // Other 'w' items are wipe_ab and wipe_package_size which are related to bricking the device remotely. We will not bother to suppor these as having TWRP probably makes "bricking" the device in this manner useless
Dees_Troya449a6f2013-04-07 17:50:11 -0500260 } else if (*argptr == 'n') {
Ethan Yonker3aa66be2015-12-22 12:30:18 -0600261 DataManager::SetValue(TW_BACKUP_NAME, gui_parse_text("{@auto_generate}"));
262 if (!OpenRecoveryScript::Insert_ORS_Command("backup BSDCAE\n"))
263 break;
Ethan Yonkera1674162014-11-06 08:35:10 -0600264 } else if (*argptr == 'p') {
265 Shutdown = true;
Dees_Troya449a6f2013-04-07 17:50:11 -0500266 } else if (*argptr == 's') {
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600267 if (strncmp(argptr, "send_intent", strlen("send_intent")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600268 ptr = argptr + strlen("send_intent") + 1;
269 Send_Intent = *ptr;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600270 } else if (strncmp(argptr, "security", strlen("security")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600271 LOGINFO("Security update\n");
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600272 } else if (strncmp(argptr, "sideload", strlen("sideload")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600273 if (!OpenRecoveryScript::Insert_ORS_Command("sideload\n"))
274 break;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600275 } else if (strncmp(argptr, "stages", strlen("stages")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600276 LOGINFO("ignoring stages command\n");
277 }
278 } else if (*argptr == 'r') {
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600279 if (strncmp(argptr, "reason", strlen("reason")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600280 ptr = argptr + strlen("reason") + 1;
281 gui_print("%s\n", ptr);
Dees_Troya449a6f2013-04-07 17:50:11 -0500282 }
283 }
284 }
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200285 printf("\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500286 }
287
Matt Mowera8a89d12016-12-30 18:10:37 -0600288 if (crash_counter == 0) {
Dees_Troya449a6f2013-04-07 17:50:11 -0500289 property_list(Print_Prop, NULL);
290 printf("\n");
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200291 } else {
292 printf("twrp.crash_counter=%d\n", crash_counter);
Dees_Troya449a6f2013-04-07 17:50:11 -0500293 }
294
295 // Check for and run startup script if script exists
296 TWFunc::check_and_run_script("/sbin/runatboot.sh", "boot");
297 TWFunc::check_and_run_script("/sbin/postrecoveryboot.sh", "boot");
298
299#ifdef TW_INCLUDE_INJECTTWRP
300 // Back up TWRP Ramdisk if needed:
301 TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot");
Dees_Troya449a6f2013-04-07 17:50:11 -0500302 LOGINFO("Backing up TWRP ramdisk...\n");
303 if (Boot == NULL || Boot->Current_File_System != "emmc")
Vojtech Bocek05534202013-09-11 08:11:56 +0200304 TWFunc::Exec_Cmd("injecttwrp --backup /tmp/backup_recovery_ramdisk.img");
Dees_Troya449a6f2013-04-07 17:50:11 -0500305 else {
306 string injectcmd = "injecttwrp --backup /tmp/backup_recovery_ramdisk.img bd=" + Boot->Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +0200307 TWFunc::Exec_Cmd(injectcmd);
Dees_Troya449a6f2013-04-07 17:50:11 -0500308 }
309 LOGINFO("Backup of TWRP ramdisk done.\n");
310#endif
311
Dees_Troya449a6f2013-04-07 17:50:11 -0500312 // Offer to decrypt if the device is encrypted
313 if (DataManager::GetIntValue(TW_IS_ENCRYPTED) != 0) {
bigbiffadc599e2020-05-28 19:36:30 +0000314 if (SkipDecryption) {
315 LOGINFO("Skipping decryption\n");
Ethan Yonkercf50da52015-01-12 21:59:07 -0600316 } else {
bigbiffd58ba182020-03-23 10:02:29 -0400317 LOGINFO("Is encrypted, do decrypt page first\n");
318 if (gui_startPage("decrypt", 1, 1) != 0) {
319 LOGERR("Failed to start decrypt GUI page.\n");
320 } else {
321 // Check for and load custom theme if present
322 TWFunc::check_selinux_support();
323 gui_loadCustomResources();
324 }
Dees_Troya449a6f2013-04-07 17:50:11 -0500325 }
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600326 } else if (datamedia) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500327 TWFunc::check_selinux_support();
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600328 if (tw_get_default_metadata(DataManager::GetSettingsStoragePath().c_str()) != 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -0600329 LOGINFO("Failed to get default contexts and file mode for storage files.\n");
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600330 } else {
331 LOGINFO("Got default contexts and file mode for storage files.\n");
332 }
Dees_Troya449a6f2013-04-07 17:50:11 -0500333 }
334
Vojtech Bocek2005a842014-03-11 19:40:34 +0100335 // Fixup the RTC clock on devices which require it
bigbiffadc599e2020-05-28 19:36:30 +0000336 if (crash_counter == 0)
337 TWFunc::Fixup_Time_On_Boot();
Vojtech Bocek2005a842014-03-11 19:40:34 +0100338
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500339 // Read the settings file
340 TWFunc::Update_Log_File();
341 DataManager::ReadSettingsFile();
342 PageManager::LoadLanguage(DataManager::GetStrValue("tw_language"));
343 GUIConsole::Translate_Now();
344
Dees_Troya449a6f2013-04-07 17:50:11 -0500345 // Run any outstanding OpenRecoveryScript
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500346 std::string cacheDir = TWFunc::get_cache_dir();
347 std::string orsFile = cacheDir + "/recovery/openrecoveryscript";
bigbiffadc599e2020-05-28 19:36:30 +0000348 if ((DataManager::GetIntValue(TW_IS_ENCRYPTED) == 0 || SkipDecryption) && (TWFunc::Path_Exists(SCRIPT_FILE_TMP) || TWFunc::Path_Exists(orsFile))) {
Dees_Troya449a6f2013-04-07 17:50:11 -0500349 OpenRecoveryScript::Run_OpenRecoveryScript();
350 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100351
Ethan Yonker6f49e112014-09-03 21:42:49 -0500352#ifdef TW_HAS_MTP
Ethan Yonker6f49e112014-09-03 21:42:49 -0500353 char mtp_crash_check[PROPERTY_VALUE_MAX];
354 property_get("mtp.crash_check", mtp_crash_check, "0");
Matt Mower653a1702017-02-16 10:38:52 -0600355 if (DataManager::GetIntValue("tw_mtp_enabled")
356 && !strcmp(mtp_crash_check, "0") && !crash_counter
357 && (!DataManager::GetIntValue(TW_IS_ENCRYPTED) || DataManager::GetIntValue(TW_IS_DECRYPTED))) {
Ethan Yonker6f49e112014-09-03 21:42:49 -0500358 property_set("mtp.crash_check", "1");
Matt Mower653a1702017-02-16 10:38:52 -0600359 LOGINFO("Starting MTP\n");
360 if (!PartitionManager.Enable_MTP())
Ethan Yonkerdf7abac2014-12-29 10:48:17 -0600361 PartitionManager.Disable_MTP();
Matt Mower653a1702017-02-16 10:38:52 -0600362 else
363 gui_msg("mtp_enabled=MTP Enabled");
Ethan Yonker6f49e112014-09-03 21:42:49 -0500364 property_set("mtp.crash_check", "0");
Matt Mower653a1702017-02-16 10:38:52 -0600365 } else if (strcmp(mtp_crash_check, "0")) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500366 gui_warn("mtp_crash=MTP Crashed, not starting MTP on boot.");
Ethan Yonker12055fa2014-09-04 08:06:53 -0500367 DataManager::SetValue("tw_mtp_enabled", 0);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -0600368 PartitionManager.Disable_MTP();
Matt Mower653a1702017-02-16 10:38:52 -0600369 } else if (crash_counter == 1) {
370 LOGINFO("TWRP crashed; disabling MTP as a precaution.\n");
371 PartitionManager.Disable_MTP();
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400372 }
Ethan Yonker6f49e112014-09-03 21:42:49 -0500373#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400374
Ethan Yonker89583ef2015-08-26 09:01:59 -0500375#ifndef TW_OEM_BUILD
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500376 // Check if system has never been changed
Captain Throwback9d6feb52018-07-27 10:05:24 -0400377 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500378 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400379
Ethan Yonker0e2c6572015-06-04 11:30:02 -0500380 if (sys) {
bigbiffee7b7ff2020-03-23 15:08:27 -0400381 if (sys->Get_Super_Status()) {
382 if (!PartitionManager.Prepare_All_Super_Volumes()) {
383 LOGERR("Unable to prepare super volumes.\n");
384 }
385 } else {
386 if ((DataManager::GetIntValue("tw_mount_system_ro") == 0 && sys->Check_Lifetime_Writes() == 0) || DataManager::GetIntValue("tw_mount_system_ro") == 2) {
387 if (DataManager::GetIntValue("tw_never_show_system_ro_page") == 0) {
388 DataManager::SetValue("tw_back", "main");
389 if (gui_startPage("system_readonly", 1, 1) != 0) {
390 LOGERR("Failed to start system_readonly GUI page.\n");
391 }
392 } else if (DataManager::GetIntValue("tw_mount_system_ro") == 0) {
393 sys->Change_Mount_Read_Only(false);
394 if (ven)
395 ven->Change_Mount_Read_Only(false);
Ethan Yonker0e2c6572015-06-04 11:30:02 -0500396 }
bigbiffee7b7ff2020-03-23 15:08:27 -0400397 } else if (DataManager::GetIntValue("tw_mount_system_ro") == 1) {
398 // Do nothing, user selected to leave system read only
399 } else {
Ethan Yonker0e2c6572015-06-04 11:30:02 -0500400 sys->Change_Mount_Read_Only(false);
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500401 if (ven)
402 ven->Change_Mount_Read_Only(false);
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500403 }
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500404 }
405 }
Ethan Yonker89583ef2015-08-26 09:01:59 -0500406#endif
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400407 twrpAdbBuFifo *adb_bu_fifo = new twrpAdbBuFifo();
408 adb_bu_fifo->threadAdbBuFifo();
409
Dees_Troya449a6f2013-04-07 17:50:11 -0500410 // Launch the main GUI
411 gui_start();
412
Ethan Yonker89583ef2015-08-26 09:01:59 -0500413#ifndef TW_OEM_BUILD
Ethan Yonker9132d912015-02-02 10:32:49 -0600414 // Disable flashing of stock recovery
415 TWFunc::Disable_Stock_Recovery_Replace();
Ethan Yonker89583ef2015-08-26 09:01:59 -0500416#endif
Dees_Troya449a6f2013-04-07 17:50:11 -0500417
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200418 // Reboot
Ethan Yonkerb5236502016-11-19 22:24:59 -0600419 TWFunc::Update_Intent_File(Send_Intent);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400420 delete adb_bu_fifo;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200421 TWFunc::Update_Log_File();
Ethan Yonker74db1572015-10-28 12:44:49 -0500422 gui_msg(Msg("rebooting=Rebooting..."));
Dees_Troya449a6f2013-04-07 17:50:11 -0500423 string Reboot_Arg;
424 DataManager::GetValue("tw_reboot_arg", Reboot_Arg);
425 if (Reboot_Arg == "recovery")
426 TWFunc::tw_reboot(rb_recovery);
427 else if (Reboot_Arg == "poweroff")
428 TWFunc::tw_reboot(rb_poweroff);
429 else if (Reboot_Arg == "bootloader")
430 TWFunc::tw_reboot(rb_bootloader);
431 else if (Reboot_Arg == "download")
432 TWFunc::tw_reboot(rb_download);
mauronofrioe9a49ef2018-10-03 13:38:16 +0200433 else if (Reboot_Arg == "edl")
434 TWFunc::tw_reboot(rb_edl);
Dees_Troya449a6f2013-04-07 17:50:11 -0500435 else
436 TWFunc::tw_reboot(rb_system);
437
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200438 return 0;
Dees_Troya449a6f2013-04-07 17:50:11 -0500439}
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500440