blob: 584245b71254803ce6991e54467ef091d304de9d [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
bigbiff7ba75002020-04-11 20:47:09 -040072static void Decrypt_Page(bool SkipDecryption, bool datamedia) {
73 // Offer to decrypt if the device is encrypted
74 if (DataManager::GetIntValue(TW_IS_ENCRYPTED) != 0) {
75 if (SkipDecryption) {
76 LOGINFO("Skipping decryption\n");
Mohd Faraz815e2402020-09-19 19:31:52 +053077 } else if (DataManager::GetIntValue(TW_CRYPTO_PWTYPE) != 0) {
bigbiff7ba75002020-04-11 20:47:09 -040078 LOGINFO("Is encrypted, do decrypt page first\n");
Mohd Faraze3948ec2020-08-14 01:40:59 +000079 if (DataManager::GetIntValue(TW_IS_FBE))
80 DataManager::SetValue("tw_crypto_user_id", "0");
bigbiff7ba75002020-04-11 20:47:09 -040081 if (gui_startPage("decrypt", 1, 1) != 0) {
82 LOGERR("Failed to start decrypt GUI page.\n");
83 } else {
84 // Check for and load custom theme if present
85 TWFunc::check_selinux_support();
86 gui_loadCustomResources();
87 }
88 }
89 } else if (datamedia) {
90 TWFunc::check_selinux_support();
91 if (tw_get_default_metadata(DataManager::GetSettingsStoragePath().c_str()) != 0) {
92 LOGINFO("Failed to get default contexts and file mode for storage files.\n");
93 } else {
94 LOGINFO("Got default contexts and file mode for storage files.\n");
95 }
96 }
97}
98
Dees_Troya449a6f2013-04-07 17:50:11 -050099int main(int argc, char **argv) {
100 // Recovery needs to install world-readable files, so clear umask
101 // set by init
102 umask(0);
103
104 Log_Offset = 0;
105
106 // Set up temporary log file (/tmp/recovery.log)
107 freopen(TMP_LOG_FILE, "a", stdout);
108 setbuf(stdout, NULL);
109 freopen(TMP_LOG_FILE, "a", stderr);
110 setbuf(stderr, NULL);
111
Ethan Yonkerf9f99bc2014-12-29 09:10:34 -0600112 signal(SIGPIPE, SIG_IGN);
113
Dees_Troya449a6f2013-04-07 17:50:11 -0500114 // Handle ADB sideload
115 if (argc == 3 && strcmp(argv[1], "--adbd") == 0) {
thatcc8ddca2015-01-03 01:59:36 +0100116 property_set("ctl.stop", "adbd");
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500117#ifdef TW_USE_NEW_MINADBD
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500118 //adb_server_main(0, DEFAULT_ADB_PORT, -1); TODO fix this for android8
bigbiffd58ba182020-03-23 10:02:29 -0400119 // minadbd_main();
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500120#else
Dees_Troya449a6f2013-04-07 17:50:11 -0500121 adb_main(argv[2]);
Ethan Yonkerc798c9c2015-10-09 11:15:26 -0500122#endif
Dees_Troya449a6f2013-04-07 17:50:11 -0500123 return 0;
124 }
125
Ethan Yonker6277c792014-09-15 14:54:30 -0500126#ifdef RECOVERY_SDCARD_ON_DATA
127 datamedia = true;
128#endif
129
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200130 char crash_prop_val[PROPERTY_VALUE_MAX];
131 int crash_counter;
132 property_get("twrp.crash_counter", crash_prop_val, "-1");
133 crash_counter = atoi(crash_prop_val) + 1;
134 snprintf(crash_prop_val, sizeof(crash_prop_val), "%d", crash_counter);
135 property_set("twrp.crash_counter", crash_prop_val);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400136 property_set("ro.twrp.boot", "1");
137 property_set("ro.twrp.version", TW_VERSION_STR);
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200138
Dees_Troya449a6f2013-04-07 17:50:11 -0500139 time_t StartupTime = time(NULL);
that0e2140e2016-08-10 21:04:26 +0200140 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 -0500141
142 // Load default values to set DataManager constants and handle ifdefs
143 DataManager::SetDefaultValues();
that0e2140e2016-08-10 21:04:26 +0200144 printf("Starting the UI...\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500145 gui_init();
146 printf("=> Linking mtab\n");
147 symlink("/proc/mounts", "/etc/mtab");
Ethan Yonker53273ec2018-03-09 11:22:54 -0600148 std::string fstab_filename = "/etc/twrp.fstab";
149 if (!TWFunc::Path_Exists(fstab_filename)) {
150 fstab_filename = "/etc/recovery.fstab";
Dees_Troy329383e2013-08-29 14:16:06 +0000151 }
Ethan Yonker53273ec2018-03-09 11:22:54 -0600152 printf("=> Processing %s\n", fstab_filename.c_str());
bigbiff8da46fa2020-09-08 16:42:34 -0400153 if (!PartitionManager.Process_Fstab(fstab_filename, 1)) {
Ethan Yonker53273ec2018-03-09 11:22:54 -0600154 LOGERR("Failing out of recovery due to problem with fstab.\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500155 return -1;
156 }
157 PartitionManager.Output_Partition_Logging();
bigbiffee7b7ff2020-03-23 15:08:27 -0400158
Captain Throwbackdc0823c2020-09-06 13:07:23 -0400159// We are doing this here to allow super partition to be set up prior to overriding properties
160#if defined(TW_INCLUDE_LIBRESETPROP) && defined(TW_OVERRIDE_SYSTEM_PROPS)
161 if (!PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), true)) {
162 LOGERR("Unable to mount %s\n", PartitionManager.Get_Android_Root_Path().c_str());
163 } else {
164 stringstream override_props(EXPAND(TW_OVERRIDE_SYSTEM_PROPS));
165 string current_prop;
166 while (getline(override_props, current_prop, ';')) {
167 string other_prop;
168 if (current_prop.find("=") != string::npos) {
169 other_prop = current_prop.substr(current_prop.find("=") + 1);
170 current_prop = current_prop.substr(0, current_prop.find("="));
171 } else {
172 other_prop = current_prop;
173 }
174 other_prop = android::base::Trim(other_prop);
175 current_prop = android::base::Trim(current_prop);
176 string sys_val = TWFunc::System_Property_Get(other_prop, PartitionManager, PartitionManager.Get_Android_Root_Path().c_str());
177 if (!sys_val.empty()) {
178 LOGINFO("Overriding %s with value: \"%s\" from system property %s\n", current_prop.c_str(), sys_val.c_str(), other_prop.c_str());
179 int error = TWFunc::Property_Override(current_prop, sys_val);
180 if (error) {
181 LOGERR("Failed overriding property %s, error_code: %d\n", current_prop.c_str(), error);
182 }
183 } else {
184 LOGINFO("Not overriding %s with empty value from system property %s\n", current_prop.c_str(), other_prop.c_str());
185 }
186 }
187 PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false);
188 }
189#endif
190
Dees_Troya449a6f2013-04-07 17:50:11 -0500191 // Load up all the resources
192 gui_loadResources();
193
Matt Mower23d8aae2017-01-06 14:30:33 -0600194 bool Shutdown = false;
bigbiffd58ba182020-03-23 10:02:29 -0400195 bool SkipDecryption = false;
Ethan Yonkerb5236502016-11-19 22:24:59 -0600196 string Send_Intent = "";
Dees_Troya449a6f2013-04-07 17:50:11 -0500197 {
Dees_Troy1669f892013-09-04 18:35:08 +0000198 TWPartition* misc = PartitionManager.Find_Partition_By_Path("/misc");
199 if (misc != NULL) {
200 if (misc->Current_File_System == "emmc") {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500201 set_misc_device(misc->Actual_Block_Device.c_str());
Dees_Troy1669f892013-09-04 18:35:08 +0000202 } else {
Matt Mower3626bdc2017-01-06 13:45:54 -0600203 LOGERR("Only emmc /misc is supported\n");
Dees_Troy1669f892013-09-04 18:35:08 +0000204 }
205 }
Dees_Troya449a6f2013-04-07 17:50:11 -0500206 get_args(&argc, &argv);
207
208 int index, index2, len;
209 char* argptr;
210 char* ptr;
211 printf("Startup Commands: ");
212 for (index = 1; index < argc; index++) {
213 argptr = argv[index];
214 printf(" '%s'", argv[index]);
215 len = strlen(argv[index]);
216 if (*argptr == '-') {argptr++; len--;}
217 if (*argptr == '-') {argptr++; len--;}
218 if (*argptr == 'u') {
219 ptr = argptr;
220 index2 = 0;
221 while (*ptr != '=' && *ptr != '\n')
222 ptr++;
Kevin Steck7b69e9d2013-10-17 18:24:31 -0400223 // skip the = before grabbing Zip_File
224 while (*ptr == '=')
225 ptr++;
Dees_Troya449a6f2013-04-07 17:50:11 -0500226 if (*ptr) {
Ethan Yonker3aa66be2015-12-22 12:30:18 -0600227 string ORSCommand = "install ";
228 ORSCommand.append(ptr);
229
bigbiffd58ba182020-03-23 10:02:29 -0400230 // If we have a map of blocks we don't need to mount data.
231 SkipDecryption = *ptr == '@';
232
Ethan Yonker3aa66be2015-12-22 12:30:18 -0600233 if (!OpenRecoveryScript::Insert_ORS_Command(ORSCommand))
234 break;
Dees_Troya449a6f2013-04-07 17:50:11 -0500235 } else
236 LOGERR("argument error specifying zip file\n");
237 } else if (*argptr == 'w') {
Ethan Yonker3aa66be2015-12-22 12:30:18 -0600238 if (len == 9) {
239 if (!OpenRecoveryScript::Insert_ORS_Command("wipe data\n"))
240 break;
241 } else if (len == 10) {
242 if (!OpenRecoveryScript::Insert_ORS_Command("wipe cache\n"))
243 break;
244 }
Ethan Yonkerb5236502016-11-19 22:24:59 -0600245 // 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 -0500246 } else if (*argptr == 'n') {
Ethan Yonker3aa66be2015-12-22 12:30:18 -0600247 DataManager::SetValue(TW_BACKUP_NAME, gui_parse_text("{@auto_generate}"));
248 if (!OpenRecoveryScript::Insert_ORS_Command("backup BSDCAE\n"))
249 break;
Ethan Yonkera1674162014-11-06 08:35:10 -0600250 } else if (*argptr == 'p') {
251 Shutdown = true;
Dees_Troya449a6f2013-04-07 17:50:11 -0500252 } else if (*argptr == 's') {
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600253 if (strncmp(argptr, "send_intent", strlen("send_intent")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600254 ptr = argptr + strlen("send_intent") + 1;
255 Send_Intent = *ptr;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600256 } else if (strncmp(argptr, "security", strlen("security")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600257 LOGINFO("Security update\n");
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600258 } else if (strncmp(argptr, "sideload", strlen("sideload")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600259 if (!OpenRecoveryScript::Insert_ORS_Command("sideload\n"))
260 break;
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600261 } else if (strncmp(argptr, "stages", strlen("stages")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600262 LOGINFO("ignoring stages command\n");
263 }
264 } else if (*argptr == 'r') {
Ethan Yonker3fdcda42016-11-30 12:29:37 -0600265 if (strncmp(argptr, "reason", strlen("reason")) == 0) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600266 ptr = argptr + strlen("reason") + 1;
267 gui_print("%s\n", ptr);
Dees_Troya449a6f2013-04-07 17:50:11 -0500268 }
269 }
270 }
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200271 printf("\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500272 }
273
Matt Mowera8a89d12016-12-30 18:10:37 -0600274 if (crash_counter == 0) {
Dees_Troya449a6f2013-04-07 17:50:11 -0500275 property_list(Print_Prop, NULL);
276 printf("\n");
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200277 } else {
278 printf("twrp.crash_counter=%d\n", crash_counter);
Dees_Troya449a6f2013-04-07 17:50:11 -0500279 }
280
281 // Check for and run startup script if script exists
bigbiffad58e1b2020-07-06 20:24:34 -0400282 TWFunc::check_and_run_script("/system/bin/runatboot.sh", "boot");
283 TWFunc::check_and_run_script("/system/bin/postrecoveryboot.sh", "boot");
Dees_Troya449a6f2013-04-07 17:50:11 -0500284
285#ifdef TW_INCLUDE_INJECTTWRP
286 // Back up TWRP Ramdisk if needed:
287 TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot");
Dees_Troya449a6f2013-04-07 17:50:11 -0500288 LOGINFO("Backing up TWRP ramdisk...\n");
289 if (Boot == NULL || Boot->Current_File_System != "emmc")
Vojtech Bocek05534202013-09-11 08:11:56 +0200290 TWFunc::Exec_Cmd("injecttwrp --backup /tmp/backup_recovery_ramdisk.img");
Dees_Troya449a6f2013-04-07 17:50:11 -0500291 else {
292 string injectcmd = "injecttwrp --backup /tmp/backup_recovery_ramdisk.img bd=" + Boot->Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +0200293 TWFunc::Exec_Cmd(injectcmd);
Dees_Troya449a6f2013-04-07 17:50:11 -0500294 }
295 LOGINFO("Backup of TWRP ramdisk done.\n");
296#endif
297
Mohd Faraze3948ec2020-08-14 01:40:59 +0000298 Decrypt_Page(SkipDecryption, datamedia);
Dees_Troya449a6f2013-04-07 17:50:11 -0500299
Vojtech Bocek2005a842014-03-11 19:40:34 +0100300 // Fixup the RTC clock on devices which require it
bigbiffadc599e2020-05-28 19:36:30 +0000301 if (crash_counter == 0)
302 TWFunc::Fixup_Time_On_Boot();
Vojtech Bocek2005a842014-03-11 19:40:34 +0100303
Ian Macdonald1e0474a2020-09-09 02:43:13 +0200304 DataManager::ReadSettingsFile();
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500305 PageManager::LoadLanguage(DataManager::GetStrValue("tw_language"));
306 GUIConsole::Translate_Now();
307
Dees_Troya449a6f2013-04-07 17:50:11 -0500308 // Run any outstanding OpenRecoveryScript
bigbiff25d25b92020-06-19 16:07:38 -0400309 std::string cacheDir = TWFunc::get_log_dir();
310 if (cacheDir == DATA_LOGS_DIR)
311 cacheDir = "/data/cache";
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500312 std::string orsFile = cacheDir + "/recovery/openrecoveryscript";
bigbiffadc599e2020-05-28 19:36:30 +0000313 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 -0500314 OpenRecoveryScript::Run_OpenRecoveryScript();
315 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100316
Ethan Yonker6f49e112014-09-03 21:42:49 -0500317#ifdef TW_HAS_MTP
Ethan Yonker6f49e112014-09-03 21:42:49 -0500318 char mtp_crash_check[PROPERTY_VALUE_MAX];
319 property_get("mtp.crash_check", mtp_crash_check, "0");
Matt Mower653a1702017-02-16 10:38:52 -0600320 if (DataManager::GetIntValue("tw_mtp_enabled")
321 && !strcmp(mtp_crash_check, "0") && !crash_counter
322 && (!DataManager::GetIntValue(TW_IS_ENCRYPTED) || DataManager::GetIntValue(TW_IS_DECRYPTED))) {
Ethan Yonker6f49e112014-09-03 21:42:49 -0500323 property_set("mtp.crash_check", "1");
Matt Mower653a1702017-02-16 10:38:52 -0600324 LOGINFO("Starting MTP\n");
325 if (!PartitionManager.Enable_MTP())
Ethan Yonkerdf7abac2014-12-29 10:48:17 -0600326 PartitionManager.Disable_MTP();
Matt Mower653a1702017-02-16 10:38:52 -0600327 else
328 gui_msg("mtp_enabled=MTP Enabled");
Ethan Yonker6f49e112014-09-03 21:42:49 -0500329 property_set("mtp.crash_check", "0");
Matt Mower653a1702017-02-16 10:38:52 -0600330 } else if (strcmp(mtp_crash_check, "0")) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500331 gui_warn("mtp_crash=MTP Crashed, not starting MTP on boot.");
Ethan Yonker12055fa2014-09-04 08:06:53 -0500332 DataManager::SetValue("tw_mtp_enabled", 0);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -0600333 PartitionManager.Disable_MTP();
Matt Mower653a1702017-02-16 10:38:52 -0600334 } else if (crash_counter == 1) {
335 LOGINFO("TWRP crashed; disabling MTP as a precaution.\n");
336 PartitionManager.Disable_MTP();
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400337 }
Ethan Yonker6f49e112014-09-03 21:42:49 -0500338#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400339
Ethan Yonker89583ef2015-08-26 09:01:59 -0500340#ifndef TW_OEM_BUILD
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500341 // Check if system has never been changed
Captain Throwback9d6feb52018-07-27 10:05:24 -0400342 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500343 TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor");
Ethan Yonker0e2c6572015-06-04 11:30:02 -0500344 if (sys) {
bigbiffee7b7ff2020-03-23 15:08:27 -0400345 if (sys->Get_Super_Status()) {
bigbiff7ba75002020-04-11 20:47:09 -0400346#ifdef TW_INCLUDE_CRYPTO
bigbiff25d25b92020-06-19 16:07:38 -0400347 std::string recoveryLogDir(DATA_LOGS_DIR);
348 recoveryLogDir += "/recovery";
349 if (!TWFunc::Path_Exists(recoveryLogDir)) {
350 bool created = PartitionManager.Recreate_Logs_Dir();
351 if (!created)
352 LOGERR("Unable to create log directory for TWRP\n");
353 }
bigbiff7ba75002020-04-11 20:47:09 -0400354 DataManager::ReadSettingsFile();
355#endif
bigbiffee7b7ff2020-03-23 15:08:27 -0400356 } else {
357 if ((DataManager::GetIntValue("tw_mount_system_ro") == 0 && sys->Check_Lifetime_Writes() == 0) || DataManager::GetIntValue("tw_mount_system_ro") == 2) {
358 if (DataManager::GetIntValue("tw_never_show_system_ro_page") == 0) {
359 DataManager::SetValue("tw_back", "main");
360 if (gui_startPage("system_readonly", 1, 1) != 0) {
361 LOGERR("Failed to start system_readonly GUI page.\n");
362 }
363 } else if (DataManager::GetIntValue("tw_mount_system_ro") == 0) {
364 sys->Change_Mount_Read_Only(false);
365 if (ven)
366 ven->Change_Mount_Read_Only(false);
Ethan Yonker0e2c6572015-06-04 11:30:02 -0500367 }
bigbiffee7b7ff2020-03-23 15:08:27 -0400368 } else if (DataManager::GetIntValue("tw_mount_system_ro") == 1) {
369 // Do nothing, user selected to leave system read only
370 } else {
Ethan Yonker0e2c6572015-06-04 11:30:02 -0500371 sys->Change_Mount_Read_Only(false);
Ethan Yonker1673e3d2015-10-26 21:51:58 -0500372 if (ven)
373 ven->Change_Mount_Read_Only(false);
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500374 }
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500375 }
376 }
Ethan Yonker89583ef2015-08-26 09:01:59 -0500377#endif
bigbiff7ba75002020-04-11 20:47:09 -0400378
bigbiffaac58612020-08-30 11:18:39 -0400379 TWFunc::Update_Log_File();
380
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400381 twrpAdbBuFifo *adb_bu_fifo = new twrpAdbBuFifo();
382 adb_bu_fifo->threadAdbBuFifo();
383
Dees_Troya449a6f2013-04-07 17:50:11 -0500384 // Launch the main GUI
385 gui_start();
386
Ethan Yonker89583ef2015-08-26 09:01:59 -0500387#ifndef TW_OEM_BUILD
Ethan Yonker9132d912015-02-02 10:32:49 -0600388 // Disable flashing of stock recovery
389 TWFunc::Disable_Stock_Recovery_Replace();
Ethan Yonker89583ef2015-08-26 09:01:59 -0500390#endif
Dees_Troya449a6f2013-04-07 17:50:11 -0500391
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200392 // Reboot
Ethan Yonkerb5236502016-11-19 22:24:59 -0600393 TWFunc::Update_Intent_File(Send_Intent);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400394 delete adb_bu_fifo;
bigbiff25d25b92020-06-19 16:07:38 -0400395 TWFunc::Update_Log_File();
Ethan Yonker74db1572015-10-28 12:44:49 -0500396 gui_msg(Msg("rebooting=Rebooting..."));
Dees_Troya449a6f2013-04-07 17:50:11 -0500397 string Reboot_Arg;
398 DataManager::GetValue("tw_reboot_arg", Reboot_Arg);
399 if (Reboot_Arg == "recovery")
400 TWFunc::tw_reboot(rb_recovery);
401 else if (Reboot_Arg == "poweroff")
402 TWFunc::tw_reboot(rb_poweroff);
403 else if (Reboot_Arg == "bootloader")
404 TWFunc::tw_reboot(rb_bootloader);
405 else if (Reboot_Arg == "download")
406 TWFunc::tw_reboot(rb_download);
mauronofrioe9a49ef2018-10-03 13:38:16 +0200407 else if (Reboot_Arg == "edl")
408 TWFunc::tw_reboot(rb_edl);
Dees_Troya449a6f2013-04-07 17:50:11 -0500409 else
410 TWFunc::tw_reboot(rb_system);
411
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200412 return 0;
Dees_Troya449a6f2013-04-07 17:50:11 -0500413}
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500414