Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 1 | /* |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 2 | 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_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 6 | |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 7 | 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_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 11 | |
bigbiff bigbiff | 34684ff | 2013-12-01 21:03:45 -0500 | [diff] [blame] | 12 | 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_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #include <stdio.h> |
| 17 | #include <stdlib.h> |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 18 | #include <string> |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 19 | #include <sys/stat.h> |
| 20 | #include <sys/types.h> |
| 21 | #include <time.h> |
| 22 | #include <unistd.h> |
Ethan Yonker | f9f99bc | 2014-12-29 09:10:34 -0600 | [diff] [blame] | 23 | #include <signal.h> |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 24 | #include "gui/twmsg.h" |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 25 | |
| 26 | #include "cutils/properties.h" |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 27 | #include "bootloader_message_twrp/include/bootloader_message_twrp/bootloader_message.h" |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 28 | |
| 29 | #ifdef ANDROID_RB_RESTART |
| 30 | #include "cutils/android_reboot.h" |
| 31 | #else |
| 32 | #include <sys/reboot.h> |
| 33 | #endif |
| 34 | |
| 35 | extern "C" { |
| 36 | #include "gui/gui.h" |
| 37 | } |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 38 | #include "set_metadata.h" |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 39 | #include "gui/gui.hpp" |
| 40 | #include "gui/pages.hpp" |
| 41 | #include "gui/objects.hpp" |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 42 | #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 bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 48 | #include "twrpAdbBuFifo.hpp" |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 49 | #ifdef TW_USE_NEW_MINADBD |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 50 | #include "minadbd/minadbd.h" |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 51 | #else |
| 52 | extern "C" { |
Ethan Yonker | 84d61ce | 2017-05-10 16:11:35 -0500 | [diff] [blame] | 53 | #include "minadbd21/adb.h" |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 54 | } |
| 55 | #endif |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 56 | |
Matt Mower | 8741364 | 2017-01-17 21:14:46 -0600 | [diff] [blame] | 57 | #include <selinux/label.h> |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 58 | struct selabel_handle *selinux_handle; |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 59 | |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 60 | //extern int adb_server_main(int is_daemon, int server_port, int /* reply_fd */); |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 61 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 62 | TWPartitionManager PartitionManager; |
| 63 | int Log_Offset; |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 64 | bool datamedia; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 65 | |
| 66 | static void Print_Prop(const char *key, const char *name, void *cookie) { |
| 67 | printf("%s=%s\n", key, name); |
| 68 | } |
| 69 | |
| 70 | int main(int argc, char **argv) { |
| 71 | // Recovery needs to install world-readable files, so clear umask |
| 72 | // set by init |
| 73 | umask(0); |
| 74 | |
| 75 | Log_Offset = 0; |
| 76 | |
| 77 | // Set up temporary log file (/tmp/recovery.log) |
| 78 | freopen(TMP_LOG_FILE, "a", stdout); |
| 79 | setbuf(stdout, NULL); |
| 80 | freopen(TMP_LOG_FILE, "a", stderr); |
| 81 | setbuf(stderr, NULL); |
| 82 | |
Ethan Yonker | f9f99bc | 2014-12-29 09:10:34 -0600 | [diff] [blame] | 83 | signal(SIGPIPE, SIG_IGN); |
| 84 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 85 | // Handle ADB sideload |
| 86 | if (argc == 3 && strcmp(argv[1], "--adbd") == 0) { |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 87 | property_set("ctl.stop", "adbd"); |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 88 | #ifdef TW_USE_NEW_MINADBD |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 89 | //adb_server_main(0, DEFAULT_ADB_PORT, -1); TODO fix this for android8 |
| 90 | minadbd_main(); |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 91 | #else |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 92 | adb_main(argv[2]); |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 93 | #endif |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 94 | return 0; |
| 95 | } |
| 96 | |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 97 | #ifdef RECOVERY_SDCARD_ON_DATA |
| 98 | datamedia = true; |
| 99 | #endif |
| 100 | |
Vojtech Bocek | 0fc1573 | 2014-07-04 01:09:50 +0200 | [diff] [blame] | 101 | char crash_prop_val[PROPERTY_VALUE_MAX]; |
| 102 | int crash_counter; |
| 103 | property_get("twrp.crash_counter", crash_prop_val, "-1"); |
| 104 | crash_counter = atoi(crash_prop_val) + 1; |
| 105 | snprintf(crash_prop_val, sizeof(crash_prop_val), "%d", crash_counter); |
| 106 | property_set("twrp.crash_counter", crash_prop_val); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 107 | property_set("ro.twrp.boot", "1"); |
| 108 | property_set("ro.twrp.version", TW_VERSION_STR); |
Vojtech Bocek | 0fc1573 | 2014-07-04 01:09:50 +0200 | [diff] [blame] | 109 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 110 | time_t StartupTime = time(NULL); |
that | 0e2140e | 2016-08-10 21:04:26 +0200 | [diff] [blame] | 111 | printf("Starting TWRP %s-%s on %s (pid %d)\n", TW_VERSION_STR, TW_GIT_REVISION, ctime(&StartupTime), getpid()); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 112 | |
| 113 | // Load default values to set DataManager constants and handle ifdefs |
| 114 | DataManager::SetDefaultValues(); |
that | 0e2140e | 2016-08-10 21:04:26 +0200 | [diff] [blame] | 115 | printf("Starting the UI...\n"); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 116 | gui_init(); |
| 117 | printf("=> Linking mtab\n"); |
| 118 | symlink("/proc/mounts", "/etc/mtab"); |
Dees_Troy | 329383e | 2013-08-29 14:16:06 +0000 | [diff] [blame] | 119 | if (TWFunc::Path_Exists("/etc/twrp.fstab")) { |
| 120 | if (TWFunc::Path_Exists("/etc/recovery.fstab")) { |
| 121 | printf("Renaming regular /etc/recovery.fstab -> /etc/recovery.fstab.bak\n"); |
| 122 | rename("/etc/recovery.fstab", "/etc/recovery.fstab.bak"); |
| 123 | } |
| 124 | printf("Moving /etc/twrp.fstab -> /etc/recovery.fstab\n"); |
| 125 | rename("/etc/twrp.fstab", "/etc/recovery.fstab"); |
| 126 | } |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 127 | printf("=> Processing recovery.fstab\n"); |
| 128 | if (!PartitionManager.Process_Fstab("/etc/recovery.fstab", 1)) { |
| 129 | LOGERR("Failing out of recovery due to problem with recovery.fstab.\n"); |
| 130 | return -1; |
| 131 | } |
| 132 | PartitionManager.Output_Partition_Logging(); |
| 133 | // Load up all the resources |
| 134 | gui_loadResources(); |
| 135 | |
bigbiff bigbiff | c49d706 | 2013-10-11 20:28:00 -0400 | [diff] [blame] | 136 | if (TWFunc::Path_Exists("/prebuilt_file_contexts")) { |
| 137 | if (TWFunc::Path_Exists("/file_contexts")) { |
| 138 | printf("Renaming regular /file_contexts -> /file_contexts.bak\n"); |
| 139 | rename("/file_contexts", "/file_contexts.bak"); |
| 140 | } |
| 141 | printf("Moving /prebuilt_file_contexts -> /file_contexts\n"); |
| 142 | rename("/prebuilt_file_contexts", "/file_contexts"); |
| 143 | } |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 144 | struct selinux_opt selinux_options[] = { |
| 145 | { SELABEL_OPT_PATH, "/file_contexts" } |
| 146 | }; |
bigbiff bigbiff | c49d706 | 2013-10-11 20:28:00 -0400 | [diff] [blame] | 147 | selinux_handle = selabel_open(SELABEL_CTX_FILE, selinux_options, 1); |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 148 | if (!selinux_handle) |
| 149 | printf("No file contexts for SELinux\n"); |
| 150 | else |
| 151 | printf("SELinux contexts loaded from /file_contexts\n"); |
Dees Troy | 995e88c | 2013-11-26 21:39:14 +0000 | [diff] [blame] | 152 | { // Check to ensure SELinux can be supported by the kernel |
| 153 | char *contexts = NULL; |
Dees Troy | 8d0eb13 | 2013-12-06 16:55:41 +0000 | [diff] [blame] | 154 | |
Ethan Yonker | ff2b788 | 2016-12-10 09:04:41 -0600 | [diff] [blame] | 155 | if (PartitionManager.Mount_By_Path("/cache", false) && TWFunc::Path_Exists("/cache/recovery")) { |
Dees Troy | 8d0eb13 | 2013-12-06 16:55:41 +0000 | [diff] [blame] | 156 | lgetfilecon("/cache/recovery", &contexts); |
| 157 | if (!contexts) { |
| 158 | lsetfilecon("/cache/recovery", "test"); |
| 159 | lgetfilecon("/cache/recovery", &contexts); |
| 160 | } |
| 161 | } else { |
| 162 | LOGINFO("Could not check /cache/recovery SELinux contexts, using /sbin/teamwin instead which may be inaccurate.\n"); |
| 163 | lgetfilecon("/sbin/teamwin", &contexts); |
| 164 | } |
Dees Troy | 995e88c | 2013-11-26 21:39:14 +0000 | [diff] [blame] | 165 | if (!contexts) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 166 | gui_warn("no_kernel_selinux=Kernel does not have support for reading SELinux contexts."); |
Dees Troy | 995e88c | 2013-11-26 21:39:14 +0000 | [diff] [blame] | 167 | } else { |
| 168 | free(contexts); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 169 | gui_msg("full_selinux=Full SELinux support is present."); |
Dees Troy | 995e88c | 2013-11-26 21:39:14 +0000 | [diff] [blame] | 170 | } |
| 171 | } |
Dees_Troy | a95f55c | 2013-08-17 13:14:43 +0000 | [diff] [blame] | 172 | |
Ethan Yonker | ff2b788 | 2016-12-10 09:04:41 -0600 | [diff] [blame] | 173 | PartitionManager.Mount_By_Path("/cache", false); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 174 | |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 175 | bool Shutdown = false; |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 176 | string Send_Intent = ""; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 177 | { |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 178 | TWPartition* misc = PartitionManager.Find_Partition_By_Path("/misc"); |
| 179 | if (misc != NULL) { |
| 180 | if (misc->Current_File_System == "emmc") { |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 181 | set_misc_device(misc->Actual_Block_Device.c_str()); |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 182 | } else { |
Matt Mower | 3626bdc | 2017-01-06 13:45:54 -0600 | [diff] [blame] | 183 | LOGERR("Only emmc /misc is supported\n"); |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 184 | } |
| 185 | } |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 186 | get_args(&argc, &argv); |
| 187 | |
| 188 | int index, index2, len; |
| 189 | char* argptr; |
| 190 | char* ptr; |
| 191 | printf("Startup Commands: "); |
| 192 | for (index = 1; index < argc; index++) { |
| 193 | argptr = argv[index]; |
| 194 | printf(" '%s'", argv[index]); |
| 195 | len = strlen(argv[index]); |
| 196 | if (*argptr == '-') {argptr++; len--;} |
| 197 | if (*argptr == '-') {argptr++; len--;} |
| 198 | if (*argptr == 'u') { |
| 199 | ptr = argptr; |
| 200 | index2 = 0; |
| 201 | while (*ptr != '=' && *ptr != '\n') |
| 202 | ptr++; |
Kevin Steck | 7b69e9d | 2013-10-17 18:24:31 -0400 | [diff] [blame] | 203 | // skip the = before grabbing Zip_File |
| 204 | while (*ptr == '=') |
| 205 | ptr++; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 206 | if (*ptr) { |
Ethan Yonker | 3aa66be | 2015-12-22 12:30:18 -0600 | [diff] [blame] | 207 | string ORSCommand = "install "; |
| 208 | ORSCommand.append(ptr); |
| 209 | |
| 210 | if (!OpenRecoveryScript::Insert_ORS_Command(ORSCommand)) |
| 211 | break; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 212 | } else |
| 213 | LOGERR("argument error specifying zip file\n"); |
| 214 | } else if (*argptr == 'w') { |
Ethan Yonker | 3aa66be | 2015-12-22 12:30:18 -0600 | [diff] [blame] | 215 | if (len == 9) { |
| 216 | if (!OpenRecoveryScript::Insert_ORS_Command("wipe data\n")) |
| 217 | break; |
| 218 | } else if (len == 10) { |
| 219 | if (!OpenRecoveryScript::Insert_ORS_Command("wipe cache\n")) |
| 220 | break; |
| 221 | } |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 222 | // 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_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 223 | } else if (*argptr == 'n') { |
Ethan Yonker | 3aa66be | 2015-12-22 12:30:18 -0600 | [diff] [blame] | 224 | DataManager::SetValue(TW_BACKUP_NAME, gui_parse_text("{@auto_generate}")); |
| 225 | if (!OpenRecoveryScript::Insert_ORS_Command("backup BSDCAE\n")) |
| 226 | break; |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 227 | } else if (*argptr == 'p') { |
| 228 | Shutdown = true; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 229 | } else if (*argptr == 's') { |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 230 | if (strncmp(argptr, "send_intent", strlen("send_intent")) == 0) { |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 231 | ptr = argptr + strlen("send_intent") + 1; |
| 232 | Send_Intent = *ptr; |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 233 | } else if (strncmp(argptr, "security", strlen("security")) == 0) { |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 234 | LOGINFO("Security update\n"); |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 235 | } else if (strncmp(argptr, "sideload", strlen("sideload")) == 0) { |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 236 | if (!OpenRecoveryScript::Insert_ORS_Command("sideload\n")) |
| 237 | break; |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 238 | } else if (strncmp(argptr, "stages", strlen("stages")) == 0) { |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 239 | LOGINFO("ignoring stages command\n"); |
| 240 | } |
| 241 | } else if (*argptr == 'r') { |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 242 | if (strncmp(argptr, "reason", strlen("reason")) == 0) { |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 243 | ptr = argptr + strlen("reason") + 1; |
| 244 | gui_print("%s\n", ptr); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 245 | } |
| 246 | } |
| 247 | } |
Vojtech Bocek | 0fc1573 | 2014-07-04 01:09:50 +0200 | [diff] [blame] | 248 | printf("\n"); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 249 | } |
| 250 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 251 | if (crash_counter == 0) { |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 252 | property_list(Print_Prop, NULL); |
| 253 | printf("\n"); |
Vojtech Bocek | 0fc1573 | 2014-07-04 01:09:50 +0200 | [diff] [blame] | 254 | } else { |
| 255 | printf("twrp.crash_counter=%d\n", crash_counter); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | // Check for and run startup script if script exists |
| 259 | TWFunc::check_and_run_script("/sbin/runatboot.sh", "boot"); |
| 260 | TWFunc::check_and_run_script("/sbin/postrecoveryboot.sh", "boot"); |
| 261 | |
| 262 | #ifdef TW_INCLUDE_INJECTTWRP |
| 263 | // Back up TWRP Ramdisk if needed: |
| 264 | TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot"); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 265 | LOGINFO("Backing up TWRP ramdisk...\n"); |
| 266 | if (Boot == NULL || Boot->Current_File_System != "emmc") |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 267 | TWFunc::Exec_Cmd("injecttwrp --backup /tmp/backup_recovery_ramdisk.img"); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 268 | else { |
| 269 | string injectcmd = "injecttwrp --backup /tmp/backup_recovery_ramdisk.img bd=" + Boot->Actual_Block_Device; |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 270 | TWFunc::Exec_Cmd(injectcmd); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 271 | } |
| 272 | LOGINFO("Backup of TWRP ramdisk done.\n"); |
| 273 | #endif |
| 274 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 275 | TWFunc::Update_Log_File(); |
| 276 | // Offer to decrypt if the device is encrypted |
| 277 | if (DataManager::GetIntValue(TW_IS_ENCRYPTED) != 0) { |
| 278 | LOGINFO("Is encrypted, do decrypt page first\n"); |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 279 | if (gui_startPage("decrypt", 1, 1) != 0) { |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 280 | LOGERR("Failed to start decrypt GUI page.\n"); |
Ethan Yonker | cf50da5 | 2015-01-12 21:59:07 -0600 | [diff] [blame] | 281 | } else { |
| 282 | // Check for and load custom theme if present |
| 283 | gui_loadCustomResources(); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 284 | } |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 285 | } else if (datamedia) { |
| 286 | if (tw_get_default_metadata(DataManager::GetSettingsStoragePath().c_str()) != 0) { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 287 | LOGINFO("Failed to get default contexts and file mode for storage files.\n"); |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 288 | } else { |
| 289 | LOGINFO("Got default contexts and file mode for storage files.\n"); |
| 290 | } |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | // Read the settings file |
| 294 | DataManager::ReadSettingsFile(); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 295 | PageManager::LoadLanguage(DataManager::GetStrValue("tw_language")); |
| 296 | GUIConsole::Translate_Now(); |
Vojtech Bocek | 2005a84 | 2014-03-11 19:40:34 +0100 | [diff] [blame] | 297 | |
| 298 | // Fixup the RTC clock on devices which require it |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 299 | if (crash_counter == 0) |
Vojtech Bocek | 67351dc | 2014-07-03 15:22:41 +0200 | [diff] [blame] | 300 | TWFunc::Fixup_Time_On_Boot(); |
Vojtech Bocek | 2005a84 | 2014-03-11 19:40:34 +0100 | [diff] [blame] | 301 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 302 | // Run any outstanding OpenRecoveryScript |
| 303 | if (DataManager::GetIntValue(TW_IS_ENCRYPTED) == 0 && (TWFunc::Path_Exists(SCRIPT_FILE_TMP) || TWFunc::Path_Exists(SCRIPT_FILE_CACHE))) { |
| 304 | OpenRecoveryScript::Run_OpenRecoveryScript(); |
| 305 | } |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 306 | |
Ethan Yonker | 6f49e11 | 2014-09-03 21:42:49 -0500 | [diff] [blame] | 307 | #ifdef TW_HAS_MTP |
Ethan Yonker | 6f49e11 | 2014-09-03 21:42:49 -0500 | [diff] [blame] | 308 | char mtp_crash_check[PROPERTY_VALUE_MAX]; |
| 309 | property_get("mtp.crash_check", mtp_crash_check, "0"); |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 310 | if (DataManager::GetIntValue("tw_mtp_enabled") |
| 311 | && !strcmp(mtp_crash_check, "0") && !crash_counter |
| 312 | && (!DataManager::GetIntValue(TW_IS_ENCRYPTED) || DataManager::GetIntValue(TW_IS_DECRYPTED))) { |
Ethan Yonker | 6f49e11 | 2014-09-03 21:42:49 -0500 | [diff] [blame] | 313 | property_set("mtp.crash_check", "1"); |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 314 | LOGINFO("Starting MTP\n"); |
| 315 | if (!PartitionManager.Enable_MTP()) |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 316 | PartitionManager.Disable_MTP(); |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 317 | else |
| 318 | gui_msg("mtp_enabled=MTP Enabled"); |
Ethan Yonker | 6f49e11 | 2014-09-03 21:42:49 -0500 | [diff] [blame] | 319 | property_set("mtp.crash_check", "0"); |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 320 | } else if (strcmp(mtp_crash_check, "0")) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 321 | gui_warn("mtp_crash=MTP Crashed, not starting MTP on boot."); |
Ethan Yonker | 12055fa | 2014-09-04 08:06:53 -0500 | [diff] [blame] | 322 | DataManager::SetValue("tw_mtp_enabled", 0); |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 323 | PartitionManager.Disable_MTP(); |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 324 | } else if (crash_counter == 1) { |
| 325 | LOGINFO("TWRP crashed; disabling MTP as a precaution.\n"); |
| 326 | PartitionManager.Disable_MTP(); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 327 | } |
Ethan Yonker | 6f49e11 | 2014-09-03 21:42:49 -0500 | [diff] [blame] | 328 | #endif |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 329 | |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 330 | #ifndef TW_OEM_BUILD |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 331 | // Check if system has never been changed |
Ethan Yonker | 0e2c657 | 2015-06-04 11:30:02 -0500 | [diff] [blame] | 332 | TWPartition* sys = PartitionManager.Find_Partition_By_Path("/system"); |
Ethan Yonker | 1673e3d | 2015-10-26 21:51:58 -0500 | [diff] [blame] | 333 | TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor"); |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 334 | |
Ethan Yonker | 0e2c657 | 2015-06-04 11:30:02 -0500 | [diff] [blame] | 335 | if (sys) { |
Ethan Yonker | 961d20e | 2015-06-29 14:00:03 -0500 | [diff] [blame] | 336 | if ((DataManager::GetIntValue("tw_mount_system_ro") == 0 && sys->Check_Lifetime_Writes() == 0) || DataManager::GetIntValue("tw_mount_system_ro") == 2) { |
| 337 | if (DataManager::GetIntValue("tw_never_show_system_ro_page") == 0) { |
| 338 | DataManager::SetValue("tw_back", "main"); |
| 339 | if (gui_startPage("system_readonly", 1, 1) != 0) { |
| 340 | LOGERR("Failed to start system_readonly GUI page.\n"); |
Ethan Yonker | 0e2c657 | 2015-06-04 11:30:02 -0500 | [diff] [blame] | 341 | } |
Ethan Yonker | 961d20e | 2015-06-29 14:00:03 -0500 | [diff] [blame] | 342 | } else if (DataManager::GetIntValue("tw_mount_system_ro") == 0) { |
Ethan Yonker | 0e2c657 | 2015-06-04 11:30:02 -0500 | [diff] [blame] | 343 | sys->Change_Mount_Read_Only(false); |
Ethan Yonker | 1673e3d | 2015-10-26 21:51:58 -0500 | [diff] [blame] | 344 | if (ven) |
| 345 | ven->Change_Mount_Read_Only(false); |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 346 | } |
Ethan Yonker | 961d20e | 2015-06-29 14:00:03 -0500 | [diff] [blame] | 347 | } else if (DataManager::GetIntValue("tw_mount_system_ro") == 1) { |
| 348 | // Do nothing, user selected to leave system read only |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 349 | } else { |
Ethan Yonker | 0e2c657 | 2015-06-04 11:30:02 -0500 | [diff] [blame] | 350 | sys->Change_Mount_Read_Only(false); |
Ethan Yonker | 1673e3d | 2015-10-26 21:51:58 -0500 | [diff] [blame] | 351 | if (ven) |
| 352 | ven->Change_Mount_Read_Only(false); |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 353 | } |
| 354 | } |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 355 | #endif |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 356 | twrpAdbBuFifo *adb_bu_fifo = new twrpAdbBuFifo(); |
| 357 | adb_bu_fifo->threadAdbBuFifo(); |
| 358 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 359 | // Launch the main GUI |
| 360 | gui_start(); |
| 361 | |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 362 | #ifndef TW_OEM_BUILD |
Ethan Yonker | 9132d91 | 2015-02-02 10:32:49 -0600 | [diff] [blame] | 363 | // Disable flashing of stock recovery |
| 364 | TWFunc::Disable_Stock_Recovery_Replace(); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 365 | // Check for su to see if the device is rooted or not |
Matt Mower | 9546019 | 2015-11-18 10:31:33 -0600 | [diff] [blame] | 366 | if (DataManager::GetIntValue("tw_mount_system_ro") == 0 && PartitionManager.Mount_By_Path("/system", false)) { |
Ethan Yonker | 051f476 | 2016-01-17 17:54:31 -0600 | [diff] [blame] | 367 | // read /system/build.prop to get sdk version and do not offer to root if running M or higher (sdk version 23 == M) |
| 368 | string sdkverstr = TWFunc::System_Property_Get("ro.build.version.sdk"); |
| 369 | int sdkver = 23; |
| 370 | if (!sdkverstr.empty()) { |
| 371 | sdkver = atoi(sdkverstr.c_str()); |
| 372 | } |
| 373 | if (TWFunc::Path_Exists("/supersu/su") && TWFunc::Path_Exists("/system/bin") && !TWFunc::Path_Exists("/system/bin/su") && !TWFunc::Path_Exists("/system/xbin/su") && !TWFunc::Path_Exists("/system/bin/.ext/.su") && sdkver < 23) { |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 374 | // Device doesn't have su installed |
| 375 | DataManager::SetValue("tw_busy", 1); |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 376 | if (gui_startPage("installsu", 1, 1) != 0) { |
Dees Troy | f193f88 | 2013-09-11 14:56:20 +0000 | [diff] [blame] | 377 | LOGERR("Failed to start SuperSU install page.\n"); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 378 | } |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 379 | } |
| 380 | sync(); |
| 381 | PartitionManager.UnMount_By_Path("/system", false); |
| 382 | } |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 383 | #endif |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 384 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 385 | // Reboot |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 386 | TWFunc::Update_Intent_File(Send_Intent); |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 387 | delete adb_bu_fifo; |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 388 | TWFunc::Update_Log_File(); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 389 | gui_msg(Msg("rebooting=Rebooting...")); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 390 | string Reboot_Arg; |
| 391 | DataManager::GetValue("tw_reboot_arg", Reboot_Arg); |
| 392 | if (Reboot_Arg == "recovery") |
| 393 | TWFunc::tw_reboot(rb_recovery); |
| 394 | else if (Reboot_Arg == "poweroff") |
| 395 | TWFunc::tw_reboot(rb_poweroff); |
| 396 | else if (Reboot_Arg == "bootloader") |
| 397 | TWFunc::tw_reboot(rb_bootloader); |
| 398 | else if (Reboot_Arg == "download") |
| 399 | TWFunc::tw_reboot(rb_download); |
| 400 | else |
| 401 | TWFunc::tw_reboot(rb_system); |
| 402 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 403 | return 0; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 404 | } |