blob: bb062f700a953a46fa8bb7543f126131d556b2cb [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"
46#include "openrecoveryscript.hpp"
47#include "variables.h"
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -040048#include "twrpAdbBuFifo.hpp"
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050049#ifdef TW_USE_NEW_MINADBD
Ethan Yonker8373cfe2017-09-08 06:50:54 -050050#include "minadbd/minadbd.h"
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050051#else
52extern "C" {
Ethan Yonker84d61ce2017-05-10 16:11:35 -050053#include "minadbd21/adb.h"
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050054}
55#endif
Dees_Troya449a6f2013-04-07 17:50:11 -050056
Ethan Yonker8373cfe2017-09-08 06:50:54 -050057//extern int adb_server_main(int is_daemon, int server_port, int /* reply_fd */);
Ethan Yonker534d4e02016-08-26 10:05:03 -050058
Dees_Troya449a6f2013-04-07 17:50:11 -050059TWPartitionManager PartitionManager;
60int Log_Offset;
Ethan Yonker6277c792014-09-15 14:54:30 -050061bool datamedia;
Dees_Troya449a6f2013-04-07 17:50:11 -050062
63static void Print_Prop(const char *key, const char *name, void *cookie) {
64 printf("%s=%s\n", key, name);
65}
66
67int main(int argc, char **argv) {
68 // Recovery needs to install world-readable files, so clear umask
69 // set by init
70 umask(0);
71
72 Log_Offset = 0;
73
74 // Set up temporary log file (/tmp/recovery.log)
75 freopen(TMP_LOG_FILE, "a", stdout);
76 setbuf(stdout, NULL);
77 freopen(TMP_LOG_FILE, "a", stderr);
78 setbuf(stderr, NULL);
79
Ethan Yonkerf9f99bc2014-12-29 09:10:34 -060080 signal(SIGPIPE, SIG_IGN);
81
Dees_Troya449a6f2013-04-07 17:50:11 -050082 // Handle ADB sideload
83 if (argc == 3 && strcmp(argv[1], "--adbd") == 0) {
thatcc8ddca2015-01-03 01:59:36 +010084 property_set("ctl.stop", "adbd");
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050085#ifdef TW_USE_NEW_MINADBD
Ethan Yonker8373cfe2017-09-08 06:50:54 -050086 //adb_server_main(0, DEFAULT_ADB_PORT, -1); TODO fix this for android8
87 minadbd_main();
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050088#else
Dees_Troya449a6f2013-04-07 17:50:11 -050089 adb_main(argv[2]);
Ethan Yonkerc798c9c2015-10-09 11:15:26 -050090#endif
Dees_Troya449a6f2013-04-07 17:50:11 -050091 return 0;
92 }
93
Ethan Yonker6277c792014-09-15 14:54:30 -050094#ifdef RECOVERY_SDCARD_ON_DATA
95 datamedia = true;
96#endif
97
Vojtech Bocek0fc15732014-07-04 01:09:50 +020098 char crash_prop_val[PROPERTY_VALUE_MAX];
99 int crash_counter;
100 property_get("twrp.crash_counter", crash_prop_val, "-1");
101 crash_counter = atoi(crash_prop_val) + 1;
102 snprintf(crash_prop_val, sizeof(crash_prop_val), "%d", crash_counter);
103 property_set("twrp.crash_counter", crash_prop_val);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400104 property_set("ro.twrp.boot", "1");
105 property_set("ro.twrp.version", TW_VERSION_STR);
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200106
Dees_Troya449a6f2013-04-07 17:50:11 -0500107 time_t StartupTime = time(NULL);
that0e2140e2016-08-10 21:04:26 +0200108 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 -0500109
110 // Load default values to set DataManager constants and handle ifdefs
111 DataManager::SetDefaultValues();
that0e2140e2016-08-10 21:04:26 +0200112 printf("Starting the UI...\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500113 gui_init();
114 printf("=> Linking mtab\n");
115 symlink("/proc/mounts", "/etc/mtab");
Ethan Yonker53273ec2018-03-09 11:22:54 -0600116 std::string fstab_filename = "/etc/twrp.fstab";
117 if (!TWFunc::Path_Exists(fstab_filename)) {
118 fstab_filename = "/etc/recovery.fstab";
Dees_Troy329383e2013-08-29 14:16:06 +0000119 }
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100120
121 // Begin SAR detection
122 {
123 TWPartitionManager SarPartitionManager;
124 printf("=> Processing %s for SAR-detection\n", fstab_filename.c_str());
125 if (!SarPartitionManager.Process_Fstab(fstab_filename, 1, 1)) {
126 LOGERR("Failing out of recovery due to problem with fstab.\n");
127 return -1;
128 }
129
130 mkdir("/s", 0755);
131
132#if defined(AB_OTA_UPDATER) || defined(__ANDROID_API_Q__)
133 bool fallback_sar = true;
134#else
135 bool fallback_sar = property_get_bool("ro.build.system_root_image", false);
136#endif
137
138 if(SarPartitionManager.Mount_By_Path("/s", false)) {
139 if (TWFunc::Path_Exists("/s/build.prop")) {
140 LOGINFO("SAR-DETECT: Non-SAR System detected\n");
141 property_set("ro.twrp.sar", "0");
142 rmdir("/system_root");
143 } else if (TWFunc::Path_Exists("/s/system/build.prop")) {
144 LOGINFO("SAR-DETECT: SAR System detected\n");
145 property_set("ro.twrp.sar", "1");
146 } else {
147 LOGINFO("SAR-DETECT: No build.prop found, falling back to %s\n", fallback_sar ? "SAR" : "Non-SAR");
148 property_set("ro.twrp.sar", fallback_sar ? "1" : "0");
149 }
150 SarPartitionManager.UnMount_By_Path("/s", false);
151 } else {
152 LOGINFO("SAR-DETECT: Could not mount system partition, falling back to %s\n", fallback_sar ? "SAR":"Non-SAR");
153 property_set("ro.twrp.sar", fallback_sar ? "1" : "0");
154 }
155
156 rmdir("/s");
157
158 TWFunc::check_and_run_script("/sbin/sarsetup.sh", "boot");
159 }
160 // End SAR detection
161
Ethan Yonker53273ec2018-03-09 11:22:54 -0600162 printf("=> Processing %s\n", fstab_filename.c_str());
Chaosmasterf6e42ce2020-01-27 00:17:04 +0100163 if (!PartitionManager.Process_Fstab(fstab_filename, 1, 0)) {
Ethan Yonker53273ec2018-03-09 11:22:54 -0600164 LOGERR("Failing out of recovery due to problem with fstab.\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500165 return -1;
166 }
167 PartitionManager.Output_Partition_Logging();
168 // Load up all the resources
169 gui_loadResources();
170
Matt Mower23d8aae2017-01-06 14:30:33 -0600171 bool Shutdown = false;
Ethan Yonkerb5236502016-11-19 22:24:59 -0600172 string Send_Intent = "";
Dees_Troya449a6f2013-04-07 17:50:11 -0500173 {
Dees_Troy1669f892013-09-04 18:35:08 +0000174 TWPartition* misc = PartitionManager.Find_Partition_By_Path("/misc");
175 if (misc != NULL) {
176 if (misc->Current_File_System == "emmc") {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500177 set_misc_device(misc->Actual_Block_Device.c_str());
Dees_Troy1669f892013-09-04 18:35:08 +0000178 } else {
Matt Mower3626bdc2017-01-06 13:45:54 -0600179 LOGERR("Only emmc /misc is supported\n");
Dees_Troy1669f892013-09-04 18:35:08 +0000180 }
181 }
Dees_Troya449a6f2013-04-07 17:50:11 -0500182 get_args(&argc, &argv);
183
184 int index, index2, len;
185 char* argptr;
186 char* ptr;
187 printf("Startup Commands: ");
188 for (index = 1; index < argc; index++) {
189 argptr = argv[index];
190 printf(" '%s'", argv[index]);
191 len = strlen(argv[index]);
192 if (*argptr == '-') {argptr++; len--;}
193 if (*argptr == '-') {argptr++; len--;}
194 if (*argptr == 'u') {
195 ptr = argptr;
196 index2 = 0;
197 while (*ptr != '=' && *ptr != '\n')
198 ptr++;
Kevin Steck7b69e9d2013-10-17 18:24:31 -0400199 // skip the = before grabbing Zip_File
200 while (*ptr == '=')
201 ptr++;
Dees_Troya449a6f2013-04-07 17:50:11 -0500202 if (*ptr) {
Ethan Yonker3aa66be2015-12-22 12:30:18 -0600203 string ORSCommand = "install ";
204 ORSCommand.append(ptr);
205
206 if (!OpenRecoveryScript::Insert_ORS_Command(ORSCommand))
207 break;
Dees_Troya449a6f2013-04-07 17:50:11 -0500208 } else
209 LOGERR("argument error specifying zip file\n");
210 } else if (*argptr == 'w') {
Ethan Yonker3aa66be2015-12-22 12:30:18 -0600211 if (len == 9) {
212 if (!OpenRecoveryScript::Insert_ORS_Command("wipe data\n"))
213 break;
214 } else if (len == 10) {
215 if (!OpenRecoveryScript::Insert_ORS_Command("wipe cache\n"))
216 break;
217 }
Ethan Yonkerb5236502016-11-19 22:24:59 -0600218 // 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 -0500219 } else if (*argptr == 'n') {
Ethan Yonker3aa66be2015-12-22 12:30:18 -0600220 DataManager::SetValue(TW_BACKUP_NAME, gui_parse_text("{@auto_generate}"));
221 if (!OpenRecoveryScript::Insert_ORS_Command("backup BSDCAE\n"))
222 break;
Ethan Yonkera1674162014-11-06 08:35:10 -0600223 } else if (*argptr == 'p') {
224 Shutdown = true;
Dees_Troya449a6f2013-04-07 17:50:11 -0500225 } else if (*argptr == 's') {
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600226 if (strncmp(argptr, "send_intent", strlen("send_intent")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600227 ptr = argptr + strlen("send_intent") + 1;
228 Send_Intent = *ptr;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600229 } else if (strncmp(argptr, "security", strlen("security")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600230 LOGINFO("Security update\n");
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600231 } else if (strncmp(argptr, "sideload", strlen("sideload")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600232 if (!OpenRecoveryScript::Insert_ORS_Command("sideload\n"))
233 break;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600234 } else if (strncmp(argptr, "stages", strlen("stages")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600235 LOGINFO("ignoring stages command\n");
236 }
237 } else if (*argptr == 'r') {
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600238 if (strncmp(argptr, "reason", strlen("reason")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600239 ptr = argptr + strlen("reason") + 1;
240 gui_print("%s\n", ptr);
Dees_Troya449a6f2013-04-07 17:50:11 -0500241 }
242 }
243 }
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200244 printf("\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500245 }
246
Matt Mowera8a89d12016-12-30 18:10:37 -0600247 if (crash_counter == 0) {
Dees_Troya449a6f2013-04-07 17:50:11 -0500248 property_list(Print_Prop, NULL);
249 printf("\n");
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200250 } else {
251 printf("twrp.crash_counter=%d\n", crash_counter);
Dees_Troya449a6f2013-04-07 17:50:11 -0500252 }
253
254 // Check for and run startup script if script exists
255 TWFunc::check_and_run_script("/sbin/runatboot.sh", "boot");
256 TWFunc::check_and_run_script("/sbin/postrecoveryboot.sh", "boot");
257
258#ifdef TW_INCLUDE_INJECTTWRP
259 // Back up TWRP Ramdisk if needed:
260 TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot");
Dees_Troya449a6f2013-04-07 17:50:11 -0500261 LOGINFO("Backing up TWRP ramdisk...\n");
262 if (Boot == NULL || Boot->Current_File_System != "emmc")
Vojtech Bocek05534202013-09-11 08:11:56 +0200263 TWFunc::Exec_Cmd("injecttwrp --backup /tmp/backup_recovery_ramdisk.img");
Dees_Troya449a6f2013-04-07 17:50:11 -0500264 else {
265 string injectcmd = "injecttwrp --backup /tmp/backup_recovery_ramdisk.img bd=" + Boot->Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +0200266 TWFunc::Exec_Cmd(injectcmd);
Dees_Troya449a6f2013-04-07 17:50:11 -0500267 }
268 LOGINFO("Backup of TWRP ramdisk done.\n");
269#endif
270
Dees_Troya449a6f2013-04-07 17:50:11 -0500271 // Offer to decrypt if the device is encrypted
272 if (DataManager::GetIntValue(TW_IS_ENCRYPTED) != 0) {
Captain Throwbackf8d0e212019-07-04 14:26:39 -0400273 LOGINFO("Is encrypted, do decrypt page first\n");
274 if (gui_startPage("decrypt", 1, 1) != 0) {
275 LOGERR("Failed to start decrypt GUI page.\n");
Ethan Yonkercf50da52015-01-12 21:59:07 -0600276 } else {
Captain Throwbackf8d0e212019-07-04 14:26:39 -0400277 // Check for and load custom theme if present
278 TWFunc::check_selinux_support();
279 gui_loadCustomResources();
Dees_Troya449a6f2013-04-07 17:50:11 -0500280 }
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600281 } else if (datamedia) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500282 TWFunc::check_selinux_support();
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600283 if (tw_get_default_metadata(DataManager::GetSettingsStoragePath().c_str()) != 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -0600284 LOGINFO("Failed to get default contexts and file mode for storage files.\n");
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600285 } else {
286 LOGINFO("Got default contexts and file mode for storage files.\n");
287 }
Dees_Troya449a6f2013-04-07 17:50:11 -0500288 }
289
Vojtech Bocek2005a842014-03-11 19:40:34 +0100290 // Fixup the RTC clock on devices which require it
Matt Mowera8a89d12016-12-30 18:10:37 -0600291 if (crash_counter == 0)
Vojtech Bocek67351dc2014-07-03 15:22:41 +0200292 TWFunc::Fixup_Time_On_Boot();
Vojtech Bocek2005a842014-03-11 19:40:34 +0100293
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500294 // Read the settings file
295 TWFunc::Update_Log_File();
296 DataManager::ReadSettingsFile();
297 PageManager::LoadLanguage(DataManager::GetStrValue("tw_language"));
298 GUIConsole::Translate_Now();
299
Dees_Troya449a6f2013-04-07 17:50:11 -0500300 // Run any outstanding OpenRecoveryScript
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500301 std::string cacheDir = TWFunc::get_cache_dir();
302 std::string orsFile = cacheDir + "/recovery/openrecoveryscript";
Captain Throwbackf8d0e212019-07-04 14:26:39 -0400303
304 if (TWFunc::Path_Exists(SCRIPT_FILE_TMP) || (DataManager::GetIntValue(TW_IS_ENCRYPTED) == 0 && TWFunc::Path_Exists(orsFile))) {
Dees_Troya449a6f2013-04-07 17:50:11 -0500305 OpenRecoveryScript::Run_OpenRecoveryScript();
306 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100307
Ethan Yonker6f49e112014-09-03 21:42:49 -0500308#ifdef TW_HAS_MTP
Ethan Yonker6f49e112014-09-03 21:42:49 -0500309 char mtp_crash_check[PROPERTY_VALUE_MAX];
310 property_get("mtp.crash_check", mtp_crash_check, "0");
Matt Mower653a1702017-02-16 10:38:52 -0600311 if (DataManager::GetIntValue("tw_mtp_enabled")
312 && !strcmp(mtp_crash_check, "0") && !crash_counter
313 && (!DataManager::GetIntValue(TW_IS_ENCRYPTED) || DataManager::GetIntValue(TW_IS_DECRYPTED))) {
Ethan Yonker6f49e112014-09-03 21:42:49 -0500314 property_set("mtp.crash_check", "1");
Matt Mower653a1702017-02-16 10:38:52 -0600315 LOGINFO("Starting MTP\n");
316 if (!PartitionManager.Enable_MTP())
Ethan Yonkerdf7abac2014-12-29 10:48:17 -0600317 PartitionManager.Disable_MTP();
Matt Mower653a1702017-02-16 10:38:52 -0600318 else
319 gui_msg("mtp_enabled=MTP Enabled");
Ethan Yonker6f49e112014-09-03 21:42:49 -0500320 property_set("mtp.crash_check", "0");
Matt Mower653a1702017-02-16 10:38:52 -0600321 } else if (strcmp(mtp_crash_check, "0")) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500322 gui_warn("mtp_crash=MTP Crashed, not starting MTP on boot.");
Ethan Yonker12055fa2014-09-04 08:06:53 -0500323 DataManager::SetValue("tw_mtp_enabled", 0);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -0600324 PartitionManager.Disable_MTP();
Matt Mower653a1702017-02-16 10:38:52 -0600325 } else if (crash_counter == 1) {
326 LOGINFO("TWRP crashed; disabling MTP as a precaution.\n");
327 PartitionManager.Disable_MTP();
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400328 }
Ethan Yonker6f49e112014-09-03 21:42:49 -0500329#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400330
Ethan Yonker89583ef2015-08-26 09:01:59 -0500331#ifndef TW_OEM_BUILD
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500332 // Check if system has never been changed
Captain Throwback9d6feb52018-07-27 10:05:24 -0400333 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500334 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400335
Ethan Yonker0e2c6572015-06-04 11:30:02 -0500336 if (sys) {
Ethan Yonker961d20e2015-06-29 14:00:03 -0500337 if ((DataManager::GetIntValue("tw_mount_system_ro") == 0 && sys->Check_Lifetime_Writes() == 0) || DataManager::GetIntValue("tw_mount_system_ro") == 2) {
338 if (DataManager::GetIntValue("tw_never_show_system_ro_page") == 0) {
339 DataManager::SetValue("tw_back", "main");
340 if (gui_startPage("system_readonly", 1, 1) != 0) {
341 LOGERR("Failed to start system_readonly GUI page.\n");
Ethan Yonker0e2c6572015-06-04 11:30:02 -0500342 }
Ethan Yonker961d20e2015-06-29 14:00:03 -0500343 } else if (DataManager::GetIntValue("tw_mount_system_ro") == 0) {
Ethan Yonker0e2c6572015-06-04 11:30:02 -0500344 sys->Change_Mount_Read_Only(false);
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500345 if (ven)
346 ven->Change_Mount_Read_Only(false);
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500347 }
Ethan Yonker961d20e2015-06-29 14:00:03 -0500348 } else if (DataManager::GetIntValue("tw_mount_system_ro") == 1) {
349 // Do nothing, user selected to leave system read only
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500350 } else {
Ethan Yonker0e2c6572015-06-04 11:30:02 -0500351 sys->Change_Mount_Read_Only(false);
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500352 if (ven)
353 ven->Change_Mount_Read_Only(false);
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500354 }
355 }
Ethan Yonker89583ef2015-08-26 09:01:59 -0500356#endif
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400357 twrpAdbBuFifo *adb_bu_fifo = new twrpAdbBuFifo();
358 adb_bu_fifo->threadAdbBuFifo();
359
Dees_Troya449a6f2013-04-07 17:50:11 -0500360 // Launch the main GUI
361 gui_start();
362
Ethan Yonker89583ef2015-08-26 09:01:59 -0500363#ifndef TW_OEM_BUILD
Ethan Yonker9132d912015-02-02 10:32:49 -0600364 // Disable flashing of stock recovery
365 TWFunc::Disable_Stock_Recovery_Replace();
Ethan Yonker89583ef2015-08-26 09:01:59 -0500366#endif
Dees_Troya449a6f2013-04-07 17:50:11 -0500367
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200368 // Reboot
Ethan Yonkerb5236502016-11-19 22:24:59 -0600369 TWFunc::Update_Intent_File(Send_Intent);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400370 delete adb_bu_fifo;
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200371 TWFunc::Update_Log_File();
Ethan Yonker74db1572015-10-28 12:44:49 -0500372 gui_msg(Msg("rebooting=Rebooting..."));
Dees_Troya449a6f2013-04-07 17:50:11 -0500373 string Reboot_Arg;
374 DataManager::GetValue("tw_reboot_arg", Reboot_Arg);
375 if (Reboot_Arg == "recovery")
376 TWFunc::tw_reboot(rb_recovery);
377 else if (Reboot_Arg == "poweroff")
378 TWFunc::tw_reboot(rb_poweroff);
379 else if (Reboot_Arg == "bootloader")
380 TWFunc::tw_reboot(rb_bootloader);
381 else if (Reboot_Arg == "download")
382 TWFunc::tw_reboot(rb_download);
mauronofrioe9a49ef2018-10-03 13:38:16 +0200383 else if (Reboot_Arg == "edl")
384 TWFunc::tw_reboot(rb_edl);
Dees_Troya449a6f2013-04-07 17:50:11 -0500385 else
386 TWFunc::tw_reboot(rb_system);
387
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200388 return 0;
Dees_Troya449a6f2013-04-07 17:50:11 -0500389}
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500390