blob: b7fc9815d29f804a1498362cefc030ab017d6bd7 [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>
18#include <string.h>
19#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>
Dees_Troya449a6f2013-04-07 17:50:11 -050024
25#include "cutils/properties.h"
26extern "C" {
27#include "minadbd/adb.h"
28#include "bootloader.h"
29}
30
31#ifdef ANDROID_RB_RESTART
32#include "cutils/android_reboot.h"
33#else
34#include <sys/reboot.h>
35#endif
36
37extern "C" {
38#include "gui/gui.h"
Ethan Yonker4b94cfd2014-12-11 10:00:45 -060039#include "set_metadata.h"
Dees_Troya449a6f2013-04-07 17:50:11 -050040}
41#include "twcommon.h"
42#include "twrp-functions.hpp"
43#include "data.hpp"
44#include "partitions.hpp"
45#include "openrecoveryscript.hpp"
46#include "variables.h"
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050047#include "twrpDU.hpp"
Dees_Troya449a6f2013-04-07 17:50:11 -050048
Dees_Troya95f55c2013-08-17 13:14:43 +000049#ifdef HAVE_SELINUX
50#include "selinux/label.h"
51struct selabel_handle *selinux_handle;
52#endif
53
Dees_Troya449a6f2013-04-07 17:50:11 -050054TWPartitionManager PartitionManager;
55int Log_Offset;
Ethan Yonker6277c792014-09-15 14:54:30 -050056bool datamedia;
bigbiff bigbiff34684ff2013-12-01 21:03:45 -050057twrpDU du;
Dees_Troya449a6f2013-04-07 17:50:11 -050058
59static void Print_Prop(const char *key, const char *name, void *cookie) {
60 printf("%s=%s\n", key, name);
61}
62
63int main(int argc, char **argv) {
64 // Recovery needs to install world-readable files, so clear umask
65 // set by init
66 umask(0);
67
68 Log_Offset = 0;
69
70 // Set up temporary log file (/tmp/recovery.log)
71 freopen(TMP_LOG_FILE, "a", stdout);
72 setbuf(stdout, NULL);
73 freopen(TMP_LOG_FILE, "a", stderr);
74 setbuf(stderr, NULL);
75
Ethan Yonkerf9f99bc2014-12-29 09:10:34 -060076 signal(SIGPIPE, SIG_IGN);
77
Dees_Troya449a6f2013-04-07 17:50:11 -050078 // Handle ADB sideload
79 if (argc == 3 && strcmp(argv[1], "--adbd") == 0) {
thatcc8ddca2015-01-03 01:59:36 +010080 property_set("ctl.stop", "adbd");
Dees_Troya449a6f2013-04-07 17:50:11 -050081 adb_main(argv[2]);
82 return 0;
83 }
84
Ethan Yonker6277c792014-09-15 14:54:30 -050085#ifdef RECOVERY_SDCARD_ON_DATA
86 datamedia = true;
87#endif
88
Vojtech Bocek0fc15732014-07-04 01:09:50 +020089 char crash_prop_val[PROPERTY_VALUE_MAX];
90 int crash_counter;
91 property_get("twrp.crash_counter", crash_prop_val, "-1");
92 crash_counter = atoi(crash_prop_val) + 1;
93 snprintf(crash_prop_val, sizeof(crash_prop_val), "%d", crash_counter);
94 property_set("twrp.crash_counter", crash_prop_val);
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -040095 property_set("ro.twrp.boot", "1");
96 property_set("ro.twrp.version", TW_VERSION_STR);
Vojtech Bocek0fc15732014-07-04 01:09:50 +020097
Dees_Troya449a6f2013-04-07 17:50:11 -050098 time_t StartupTime = time(NULL);
thatcc8ddca2015-01-03 01:59:36 +010099 printf("Starting TWRP %s on %s (pid %d)\n", TW_VERSION_STR, ctime(&StartupTime), getpid());
Dees_Troya449a6f2013-04-07 17:50:11 -0500100
101 // Load default values to set DataManager constants and handle ifdefs
102 DataManager::SetDefaultValues();
103 printf("Starting the UI...");
104 gui_init();
105 printf("=> Linking mtab\n");
106 symlink("/proc/mounts", "/etc/mtab");
Dees_Troy329383e2013-08-29 14:16:06 +0000107 if (TWFunc::Path_Exists("/etc/twrp.fstab")) {
108 if (TWFunc::Path_Exists("/etc/recovery.fstab")) {
109 printf("Renaming regular /etc/recovery.fstab -> /etc/recovery.fstab.bak\n");
110 rename("/etc/recovery.fstab", "/etc/recovery.fstab.bak");
111 }
112 printf("Moving /etc/twrp.fstab -> /etc/recovery.fstab\n");
113 rename("/etc/twrp.fstab", "/etc/recovery.fstab");
114 }
Dees_Troya449a6f2013-04-07 17:50:11 -0500115 printf("=> Processing recovery.fstab\n");
116 if (!PartitionManager.Process_Fstab("/etc/recovery.fstab", 1)) {
117 LOGERR("Failing out of recovery due to problem with recovery.fstab.\n");
118 return -1;
119 }
120 PartitionManager.Output_Partition_Logging();
121 // Load up all the resources
122 gui_loadResources();
123
Dees_Troya95f55c2013-08-17 13:14:43 +0000124#ifdef HAVE_SELINUX
bigbiff bigbiffc49d7062013-10-11 20:28:00 -0400125 if (TWFunc::Path_Exists("/prebuilt_file_contexts")) {
126 if (TWFunc::Path_Exists("/file_contexts")) {
127 printf("Renaming regular /file_contexts -> /file_contexts.bak\n");
128 rename("/file_contexts", "/file_contexts.bak");
129 }
130 printf("Moving /prebuilt_file_contexts -> /file_contexts\n");
131 rename("/prebuilt_file_contexts", "/file_contexts");
132 }
Dees_Troya95f55c2013-08-17 13:14:43 +0000133 struct selinux_opt selinux_options[] = {
134 { SELABEL_OPT_PATH, "/file_contexts" }
135 };
bigbiff bigbiffc49d7062013-10-11 20:28:00 -0400136 selinux_handle = selabel_open(SELABEL_CTX_FILE, selinux_options, 1);
Dees_Troya95f55c2013-08-17 13:14:43 +0000137 if (!selinux_handle)
138 printf("No file contexts for SELinux\n");
139 else
140 printf("SELinux contexts loaded from /file_contexts\n");
Dees Troy995e88c2013-11-26 21:39:14 +0000141 { // Check to ensure SELinux can be supported by the kernel
142 char *contexts = NULL;
Dees Troy8d0eb132013-12-06 16:55:41 +0000143
144 if (PartitionManager.Mount_By_Path("/cache", true) && TWFunc::Path_Exists("/cache/recovery")) {
145 lgetfilecon("/cache/recovery", &contexts);
146 if (!contexts) {
147 lsetfilecon("/cache/recovery", "test");
148 lgetfilecon("/cache/recovery", &contexts);
149 }
150 } else {
151 LOGINFO("Could not check /cache/recovery SELinux contexts, using /sbin/teamwin instead which may be inaccurate.\n");
152 lgetfilecon("/sbin/teamwin", &contexts);
153 }
Dees Troy995e88c2013-11-26 21:39:14 +0000154 if (!contexts) {
Ethan Yonkerbf2cb1c2014-07-02 10:15:54 -0500155 gui_print_color("warning", "Kernel does not have support for reading SELinux contexts.\n");
Dees Troy995e88c2013-11-26 21:39:14 +0000156 } else {
157 free(contexts);
158 gui_print("Full SELinux support is present.\n");
159 }
160 }
161#else
Ethan Yonkerbf2cb1c2014-07-02 10:15:54 -0500162 gui_print_color("warning", "No SELinux support (no libselinux).\n");
Dees_Troya95f55c2013-08-17 13:14:43 +0000163#endif
164
Dees_Troya449a6f2013-04-07 17:50:11 -0500165 PartitionManager.Mount_By_Path("/cache", true);
166
167 string Zip_File, Reboot_Value;
Ethan Yonkera1674162014-11-06 08:35:10 -0600168 bool Cache_Wipe = false, Factory_Reset = false, Perform_Backup = false, Shutdown = false;
Dees_Troya449a6f2013-04-07 17:50:11 -0500169
170 {
Dees_Troy1669f892013-09-04 18:35:08 +0000171 TWPartition* misc = PartitionManager.Find_Partition_By_Path("/misc");
172 if (misc != NULL) {
173 if (misc->Current_File_System == "emmc") {
that4e0e3fc2015-04-13 19:52:49 +0200174 set_misc_device("emmc", misc->Actual_Block_Device.c_str());
Dees_Troy1669f892013-09-04 18:35:08 +0000175 } else if (misc->Current_File_System == "mtd") {
that4e0e3fc2015-04-13 19:52:49 +0200176 set_misc_device("mtd", misc->MTD_Name.c_str());
Dees_Troy1669f892013-09-04 18:35:08 +0000177 } else {
178 LOGERR("Unknown file system for /misc\n");
179 }
180 }
Dees_Troya449a6f2013-04-07 17:50:11 -0500181 get_args(&argc, &argv);
182
183 int index, index2, len;
184 char* argptr;
185 char* ptr;
186 printf("Startup Commands: ");
187 for (index = 1; index < argc; index++) {
188 argptr = argv[index];
189 printf(" '%s'", argv[index]);
190 len = strlen(argv[index]);
191 if (*argptr == '-') {argptr++; len--;}
192 if (*argptr == '-') {argptr++; len--;}
193 if (*argptr == 'u') {
194 ptr = argptr;
195 index2 = 0;
196 while (*ptr != '=' && *ptr != '\n')
197 ptr++;
Kevin Steck7b69e9d2013-10-17 18:24:31 -0400198 // skip the = before grabbing Zip_File
199 while (*ptr == '=')
200 ptr++;
Dees_Troya449a6f2013-04-07 17:50:11 -0500201 if (*ptr) {
202 Zip_File = ptr;
203 } else
204 LOGERR("argument error specifying zip file\n");
205 } else if (*argptr == 'w') {
206 if (len == 9)
207 Factory_Reset = true;
208 else if (len == 10)
209 Cache_Wipe = true;
210 } else if (*argptr == 'n') {
211 Perform_Backup = true;
Ethan Yonkera1674162014-11-06 08:35:10 -0600212 } else if (*argptr == 'p') {
213 Shutdown = true;
Dees_Troya449a6f2013-04-07 17:50:11 -0500214 } else if (*argptr == 's') {
215 ptr = argptr;
216 index2 = 0;
217 while (*ptr != '=' && *ptr != '\n')
218 ptr++;
219 if (*ptr) {
220 Reboot_Value = *ptr;
221 }
222 }
223 }
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200224 printf("\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500225 }
226
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200227 if(crash_counter == 0) {
Dees_Troya449a6f2013-04-07 17:50:11 -0500228 property_list(Print_Prop, NULL);
229 printf("\n");
Vojtech Bocek0fc15732014-07-04 01:09:50 +0200230 } else {
231 printf("twrp.crash_counter=%d\n", crash_counter);
Dees_Troya449a6f2013-04-07 17:50:11 -0500232 }
233
234 // Check for and run startup script if script exists
235 TWFunc::check_and_run_script("/sbin/runatboot.sh", "boot");
236 TWFunc::check_and_run_script("/sbin/postrecoveryboot.sh", "boot");
237
238#ifdef TW_INCLUDE_INJECTTWRP
239 // Back up TWRP Ramdisk if needed:
240 TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot");
Dees_Troya449a6f2013-04-07 17:50:11 -0500241 LOGINFO("Backing up TWRP ramdisk...\n");
242 if (Boot == NULL || Boot->Current_File_System != "emmc")
Vojtech Bocek05534202013-09-11 08:11:56 +0200243 TWFunc::Exec_Cmd("injecttwrp --backup /tmp/backup_recovery_ramdisk.img");
Dees_Troya449a6f2013-04-07 17:50:11 -0500244 else {
245 string injectcmd = "injecttwrp --backup /tmp/backup_recovery_ramdisk.img bd=" + Boot->Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +0200246 TWFunc::Exec_Cmd(injectcmd);
Dees_Troya449a6f2013-04-07 17:50:11 -0500247 }
248 LOGINFO("Backup of TWRP ramdisk done.\n");
249#endif
250
251 bool Keep_Going = true;
252 if (Perform_Backup) {
Dees Troyb21cc642013-09-10 17:36:41 +0000253 DataManager::SetValue(TW_BACKUP_NAME, "(Auto Generate)");
Dees_Troya449a6f2013-04-07 17:50:11 -0500254 if (!OpenRecoveryScript::Insert_ORS_Command("backup BSDCAE\n"))
255 Keep_Going = false;
256 }
257 if (Keep_Going && !Zip_File.empty()) {
258 string ORSCommand = "install " + Zip_File;
259
260 if (!OpenRecoveryScript::Insert_ORS_Command(ORSCommand))
261 Keep_Going = false;
262 }
263 if (Keep_Going) {
264 if (Factory_Reset) {
265 if (!OpenRecoveryScript::Insert_ORS_Command("wipe data\n"))
266 Keep_Going = false;
267 } else if (Cache_Wipe) {
268 if (!OpenRecoveryScript::Insert_ORS_Command("wipe cache\n"))
269 Keep_Going = false;
270 }
271 }
272
273 TWFunc::Update_Log_File();
274 // Offer to decrypt if the device is encrypted
275 if (DataManager::GetIntValue(TW_IS_ENCRYPTED) != 0) {
276 LOGINFO("Is encrypted, do decrypt page first\n");
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600277 if (gui_startPage("decrypt", 1, 1) != 0) {
Dees_Troya449a6f2013-04-07 17:50:11 -0500278 LOGERR("Failed to start decrypt GUI page.\n");
Ethan Yonkercf50da52015-01-12 21:59:07 -0600279 } else {
280 // Check for and load custom theme if present
281 gui_loadCustomResources();
Dees_Troya449a6f2013-04-07 17:50:11 -0500282 }
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600283 } else if (datamedia) {
284 if (tw_get_default_metadata(DataManager::GetSettingsStoragePath().c_str()) != 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -0600285 LOGINFO("Failed to get default contexts and file mode for storage files.\n");
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600286 } else {
287 LOGINFO("Got default contexts and file mode for storage files.\n");
288 }
Dees_Troya449a6f2013-04-07 17:50:11 -0500289 }
290
291 // Read the settings file
Ethan Yonker73da42c2014-09-03 11:30:33 -0500292#ifdef TW_HAS_MTP
293 // We unmount partitions sometimes during early boot which may override
294 // the default of MTP being enabled by auto toggling MTP off. This
295 // will force it back to enabled then get overridden by the settings
296 // file, assuming that an entry for tw_mtp_enabled is set.
297 DataManager::SetValue("tw_mtp_enabled", 1);
298#endif
Dees_Troya449a6f2013-04-07 17:50:11 -0500299 DataManager::ReadSettingsFile();
Vojtech Bocek2005a842014-03-11 19:40:34 +0100300
301 // Fixup the RTC clock on devices which require it
Vojtech Bocek67351dc2014-07-03 15:22:41 +0200302 if(crash_counter == 0)
303 TWFunc::Fixup_Time_On_Boot();
Vojtech Bocek2005a842014-03-11 19:40:34 +0100304
Dees_Troya449a6f2013-04-07 17:50:11 -0500305 // Run any outstanding OpenRecoveryScript
306 if (DataManager::GetIntValue(TW_IS_ENCRYPTED) == 0 && (TWFunc::Path_Exists(SCRIPT_FILE_TMP) || TWFunc::Path_Exists(SCRIPT_FILE_CACHE))) {
307 OpenRecoveryScript::Run_OpenRecoveryScript();
308 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100309
Ethan Yonker6f49e112014-09-03 21:42:49 -0500310#ifdef TW_HAS_MTP
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400311 // Enable MTP?
Ethan Yonker6f49e112014-09-03 21:42:49 -0500312 char mtp_crash_check[PROPERTY_VALUE_MAX];
313 property_get("mtp.crash_check", mtp_crash_check, "0");
314 if (strcmp(mtp_crash_check, "0") == 0) {
315 property_set("mtp.crash_check", "1");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -0600316 if (DataManager::GetIntValue("tw_mtp_enabled") == 1 && ((DataManager::GetIntValue(TW_IS_ENCRYPTED) != 0 && DataManager::GetIntValue(TW_IS_DECRYPTED) != 0) || DataManager::GetIntValue(TW_IS_ENCRYPTED) == 0)) {
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400317 LOGINFO("Enabling MTP during startup\n");
318 if (!PartitionManager.Enable_MTP())
319 PartitionManager.Disable_MTP();
320 else
321 gui_print("MTP Enabled\n");
Ethan Yonkerdf7abac2014-12-29 10:48:17 -0600322 } else {
323 PartitionManager.Disable_MTP();
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400324 }
Ethan Yonker6f49e112014-09-03 21:42:49 -0500325 property_set("mtp.crash_check", "0");
326 } else {
327 gui_print_color("warning", "MTP Crashed, not starting MTP on boot.\n");
Ethan Yonker12055fa2014-09-04 08:06:53 -0500328 DataManager::SetValue("tw_mtp_enabled", 0);
Ethan Yonkerdf7abac2014-12-29 10:48:17 -0600329 PartitionManager.Disable_MTP();
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400330 }
Ethan Yonkerdf7abac2014-12-29 10:48:17 -0600331#else
332 PartitionManager.Disable_MTP();
Ethan Yonker6f49e112014-09-03 21:42:49 -0500333#endif
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -0400334
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500335 // Check if system has never been changed
336 if (DataManager::GetIntValue("tw_mount_system_ro") != 0 && DataManager::GetIntValue("tw_never_show_system_ro_page") == 0) {
337 TWPartition* sys = PartitionManager.Find_Partition_By_Path("/system");
338 if (sys && sys->Check_Lifetime_Writes() == 0) {
339 LOGINFO("System writes is 0, show system_readonly page\n");
340 DataManager::SetValue("tw_back", "main");
341 if (gui_startPage("system_readonly", 1, 1) != 0) {
342 LOGERR("Failed to start system_readonly GUI page.\n");
343 }
344 } else {
345 DataManager::SetValue("tw_mount_system_ro", 0);
346 }
347 }
348
Dees_Troya449a6f2013-04-07 17:50:11 -0500349 // Launch the main GUI
350 gui_start();
351
Ethan Yonker9132d912015-02-02 10:32:49 -0600352 // Disable flashing of stock recovery
353 TWFunc::Disable_Stock_Recovery_Replace();
Dees_Troya449a6f2013-04-07 17:50:11 -0500354 // Check for su to see if the device is rooted or not
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500355 if (PartitionManager.Mount_By_Path("/system", false) && DataManager::GetIntValue("tw_mount_system_ro") == 0) {
Dees_Troya449a6f2013-04-07 17:50:11 -0500356 if (TWFunc::Path_Exists("/supersu/su") && !TWFunc::Path_Exists("/system/bin/su") && !TWFunc::Path_Exists("/system/xbin/su") && !TWFunc::Path_Exists("/system/bin/.ext/.su")) {
357 // Device doesn't have su installed
358 DataManager::SetValue("tw_busy", 1);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600359 if (gui_startPage("installsu", 1, 1) != 0) {
Dees Troyf193f882013-09-11 14:56:20 +0000360 LOGERR("Failed to start SuperSU install page.\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500361 }
Dees_Troya449a6f2013-04-07 17:50:11 -0500362 }
363 sync();
364 PartitionManager.UnMount_By_Path("/system", false);
365 }
366
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200367 // Reboot
Dees_Troya449a6f2013-04-07 17:50:11 -0500368 TWFunc::Update_Intent_File(Reboot_Value);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200369 TWFunc::Update_Log_File();
370 gui_print("Rebooting...\n");
Dees_Troya449a6f2013-04-07 17:50:11 -0500371 string Reboot_Arg;
372 DataManager::GetValue("tw_reboot_arg", Reboot_Arg);
373 if (Reboot_Arg == "recovery")
374 TWFunc::tw_reboot(rb_recovery);
375 else if (Reboot_Arg == "poweroff")
376 TWFunc::tw_reboot(rb_poweroff);
377 else if (Reboot_Arg == "bootloader")
378 TWFunc::tw_reboot(rb_bootloader);
379 else if (Reboot_Arg == "download")
380 TWFunc::tw_reboot(rb_download);
381 else
382 TWFunc::tw_reboot(rb_system);
383
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200384 return 0;
Dees_Troya449a6f2013-04-07 17:50:11 -0500385}