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" |
bigbiff | f62d249 | 2020-05-20 10:15:34 -0400 | [diff] [blame] | 46 | |
Mohd Faraz | e8f7ea3 | 2020-06-12 20:38:58 +0530 | [diff] [blame] | 47 | #if SDK_VERSION >= 24 |
bigbiff | f62d249 | 2020-05-20 10:15:34 -0400 | [diff] [blame] | 48 | #include <android-base/strings.h> |
Mohd Faraz | e8f7ea3 | 2020-06-12 20:38:58 +0530 | [diff] [blame] | 49 | #elif SDK_VERSION == 23 |
| 50 | #include <base/strings.h> |
| 51 | #else |
| 52 | #include <strings.h> |
Mohd Faraz | 0d9a62e | 2020-02-20 00:10:26 +0530 | [diff] [blame] | 53 | #endif |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 54 | #include "openrecoveryscript.hpp" |
| 55 | #include "variables.h" |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 56 | #include "twrpAdbBuFifo.hpp" |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 57 | #ifdef TW_USE_NEW_MINADBD |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 58 | #include "minadbd/minadbd.h" |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 59 | #else |
| 60 | extern "C" { |
Ethan Yonker | 84d61ce | 2017-05-10 16:11:35 -0500 | [diff] [blame] | 61 | #include "minadbd21/adb.h" |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 62 | } |
| 63 | #endif |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 64 | |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 65 | //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] | 66 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 67 | TWPartitionManager PartitionManager; |
| 68 | int Log_Offset; |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 69 | bool datamedia; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 70 | |
| 71 | static void Print_Prop(const char *key, const char *name, void *cookie) { |
| 72 | printf("%s=%s\n", key, name); |
| 73 | } |
| 74 | |
| 75 | int main(int argc, char **argv) { |
| 76 | // Recovery needs to install world-readable files, so clear umask |
| 77 | // set by init |
| 78 | umask(0); |
| 79 | |
| 80 | Log_Offset = 0; |
| 81 | |
| 82 | // Set up temporary log file (/tmp/recovery.log) |
| 83 | freopen(TMP_LOG_FILE, "a", stdout); |
| 84 | setbuf(stdout, NULL); |
| 85 | freopen(TMP_LOG_FILE, "a", stderr); |
| 86 | setbuf(stderr, NULL); |
| 87 | |
Ethan Yonker | f9f99bc | 2014-12-29 09:10:34 -0600 | [diff] [blame] | 88 | signal(SIGPIPE, SIG_IGN); |
| 89 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 90 | // Handle ADB sideload |
| 91 | if (argc == 3 && strcmp(argv[1], "--adbd") == 0) { |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 92 | property_set("ctl.stop", "adbd"); |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 93 | #ifdef TW_USE_NEW_MINADBD |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 94 | //adb_server_main(0, DEFAULT_ADB_PORT, -1); TODO fix this for android8 |
| 95 | minadbd_main(); |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 96 | #else |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 97 | adb_main(argv[2]); |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 98 | #endif |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 99 | return 0; |
| 100 | } |
| 101 | |
Ethan Yonker | 6277c79 | 2014-09-15 14:54:30 -0500 | [diff] [blame] | 102 | #ifdef RECOVERY_SDCARD_ON_DATA |
| 103 | datamedia = true; |
| 104 | #endif |
| 105 | |
Vojtech Bocek | 0fc1573 | 2014-07-04 01:09:50 +0200 | [diff] [blame] | 106 | char crash_prop_val[PROPERTY_VALUE_MAX]; |
| 107 | int crash_counter; |
| 108 | property_get("twrp.crash_counter", crash_prop_val, "-1"); |
| 109 | crash_counter = atoi(crash_prop_val) + 1; |
| 110 | snprintf(crash_prop_val, sizeof(crash_prop_val), "%d", crash_counter); |
| 111 | property_set("twrp.crash_counter", crash_prop_val); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 112 | property_set("ro.twrp.boot", "1"); |
| 113 | property_set("ro.twrp.version", TW_VERSION_STR); |
Vojtech Bocek | 0fc1573 | 2014-07-04 01:09:50 +0200 | [diff] [blame] | 114 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 115 | time_t StartupTime = time(NULL); |
that | 0e2140e | 2016-08-10 21:04:26 +0200 | [diff] [blame] | 116 | 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] | 117 | |
| 118 | // Load default values to set DataManager constants and handle ifdefs |
| 119 | DataManager::SetDefaultValues(); |
that | 0e2140e | 2016-08-10 21:04:26 +0200 | [diff] [blame] | 120 | printf("Starting the UI...\n"); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 121 | gui_init(); |
| 122 | printf("=> Linking mtab\n"); |
| 123 | symlink("/proc/mounts", "/etc/mtab"); |
Ethan Yonker | 53273ec | 2018-03-09 11:22:54 -0600 | [diff] [blame] | 124 | std::string fstab_filename = "/etc/twrp.fstab"; |
| 125 | if (!TWFunc::Path_Exists(fstab_filename)) { |
| 126 | fstab_filename = "/etc/recovery.fstab"; |
Dees_Troy | 329383e | 2013-08-29 14:16:06 +0000 | [diff] [blame] | 127 | } |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 128 | |
| 129 | // Begin SAR detection |
| 130 | { |
| 131 | TWPartitionManager SarPartitionManager; |
| 132 | printf("=> Processing %s for SAR-detection\n", fstab_filename.c_str()); |
| 133 | if (!SarPartitionManager.Process_Fstab(fstab_filename, 1, 1)) { |
| 134 | LOGERR("Failing out of recovery due to problem with fstab.\n"); |
| 135 | return -1; |
| 136 | } |
| 137 | |
| 138 | mkdir("/s", 0755); |
| 139 | |
| 140 | #if defined(AB_OTA_UPDATER) || defined(__ANDROID_API_Q__) |
| 141 | bool fallback_sar = true; |
| 142 | #else |
| 143 | bool fallback_sar = property_get_bool("ro.build.system_root_image", false); |
| 144 | #endif |
| 145 | |
| 146 | if(SarPartitionManager.Mount_By_Path("/s", false)) { |
| 147 | if (TWFunc::Path_Exists("/s/build.prop")) { |
| 148 | LOGINFO("SAR-DETECT: Non-SAR System detected\n"); |
Chaosmaster | 5738d3d | 2020-05-20 22:16:37 +0200 | [diff] [blame] | 149 | property_set("ro.twrp.sar", "false"); |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 150 | rmdir("/system_root"); |
| 151 | } else if (TWFunc::Path_Exists("/s/system/build.prop")) { |
| 152 | LOGINFO("SAR-DETECT: SAR System detected\n"); |
Chaosmaster | 5738d3d | 2020-05-20 22:16:37 +0200 | [diff] [blame] | 153 | property_set("ro.twrp.sar", "true"); |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 154 | } else { |
| 155 | LOGINFO("SAR-DETECT: No build.prop found, falling back to %s\n", fallback_sar ? "SAR" : "Non-SAR"); |
Chaosmaster | 5738d3d | 2020-05-20 22:16:37 +0200 | [diff] [blame] | 156 | property_set("ro.twrp.sar", fallback_sar ? "true" : "false"); |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 157 | } |
Chaosmaster | 01a1799 | 2020-02-08 00:10:05 +0100 | [diff] [blame] | 158 | |
| 159 | // We are doing this here during SAR-detection, since we are mounting the system-partition anyway |
| 160 | // This way we don't need to remount it later, just for overriding properties |
| 161 | #if defined(TW_INCLUDE_LIBRESETPROP) && defined(TW_OVERRIDE_SYSTEM_PROPS) |
| 162 | stringstream override_props(EXPAND(TW_OVERRIDE_SYSTEM_PROPS)); |
| 163 | string current_prop; |
| 164 | while (getline(override_props, current_prop, ';')) { |
| 165 | string other_prop; |
| 166 | if (current_prop.find("=") != string::npos) { |
| 167 | other_prop = current_prop.substr(current_prop.find("=") + 1); |
| 168 | current_prop = current_prop.substr(0, current_prop.find("=")); |
| 169 | } else { |
| 170 | other_prop = current_prop; |
| 171 | } |
Mohd Faraz | 0d9a62e | 2020-02-20 00:10:26 +0530 | [diff] [blame] | 172 | other_prop = android::base::Trim(other_prop); |
| 173 | current_prop = android::base::Trim(current_prop); |
Chaosmaster | 01a1799 | 2020-02-08 00:10:05 +0100 | [diff] [blame] | 174 | string sys_val = TWFunc::System_Property_Get(other_prop, SarPartitionManager, "/s"); |
| 175 | if (!sys_val.empty()) { |
| 176 | LOGINFO("Overriding %s with value: \"%s\" from system property %s\n", current_prop.c_str(), sys_val.c_str(), other_prop.c_str()); |
| 177 | int error = TWFunc::Property_Override(current_prop, sys_val); |
| 178 | if (error) { |
| 179 | LOGERR("Failed overriding property %s, error_code: %d\n", current_prop.c_str(), error); |
| 180 | } |
| 181 | } else { |
| 182 | LOGINFO("Not overriding %s with empty value from system property %s\n", current_prop.c_str(), other_prop.c_str()); |
| 183 | } |
| 184 | } |
| 185 | #endif |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 186 | SarPartitionManager.UnMount_By_Path("/s", false); |
| 187 | } else { |
| 188 | LOGINFO("SAR-DETECT: Could not mount system partition, falling back to %s\n", fallback_sar ? "SAR":"Non-SAR"); |
Chaosmaster | 5738d3d | 2020-05-20 22:16:37 +0200 | [diff] [blame] | 189 | property_set("ro.twrp.sar", fallback_sar ? "true" : "false"); |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | rmdir("/s"); |
| 193 | |
Captain Throwback | aaedfa8 | 2021-01-08 11:29:39 -0500 | [diff] [blame] | 194 | TWFunc::check_and_run_script("/sbin/sarsetup.sh", "SAR"); |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 195 | } |
| 196 | // End SAR detection |
| 197 | |
Ethan Yonker | 53273ec | 2018-03-09 11:22:54 -0600 | [diff] [blame] | 198 | printf("=> Processing %s\n", fstab_filename.c_str()); |
Chaosmaster | f6e42ce | 2020-01-27 00:17:04 +0100 | [diff] [blame] | 199 | if (!PartitionManager.Process_Fstab(fstab_filename, 1, 0)) { |
Ethan Yonker | 53273ec | 2018-03-09 11:22:54 -0600 | [diff] [blame] | 200 | LOGERR("Failing out of recovery due to problem with fstab.\n"); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 201 | return -1; |
| 202 | } |
| 203 | PartitionManager.Output_Partition_Logging(); |
| 204 | // Load up all the resources |
| 205 | gui_loadResources(); |
| 206 | |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 207 | bool Shutdown = false; |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 208 | string Send_Intent = ""; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 209 | { |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 210 | TWPartition* misc = PartitionManager.Find_Partition_By_Path("/misc"); |
| 211 | if (misc != NULL) { |
| 212 | if (misc->Current_File_System == "emmc") { |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 213 | set_misc_device(misc->Actual_Block_Device.c_str()); |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 214 | } else { |
Matt Mower | 3626bdc | 2017-01-06 13:45:54 -0600 | [diff] [blame] | 215 | LOGERR("Only emmc /misc is supported\n"); |
Dees_Troy | 1669f89 | 2013-09-04 18:35:08 +0000 | [diff] [blame] | 216 | } |
| 217 | } |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 218 | get_args(&argc, &argv); |
| 219 | |
| 220 | int index, index2, len; |
| 221 | char* argptr; |
| 222 | char* ptr; |
| 223 | printf("Startup Commands: "); |
| 224 | for (index = 1; index < argc; index++) { |
| 225 | argptr = argv[index]; |
| 226 | printf(" '%s'", argv[index]); |
| 227 | len = strlen(argv[index]); |
| 228 | if (*argptr == '-') {argptr++; len--;} |
| 229 | if (*argptr == '-') {argptr++; len--;} |
| 230 | if (*argptr == 'u') { |
| 231 | ptr = argptr; |
| 232 | index2 = 0; |
| 233 | while (*ptr != '=' && *ptr != '\n') |
| 234 | ptr++; |
Kevin Steck | 7b69e9d | 2013-10-17 18:24:31 -0400 | [diff] [blame] | 235 | // skip the = before grabbing Zip_File |
| 236 | while (*ptr == '=') |
| 237 | ptr++; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 238 | if (*ptr) { |
Ethan Yonker | 3aa66be | 2015-12-22 12:30:18 -0600 | [diff] [blame] | 239 | string ORSCommand = "install "; |
| 240 | ORSCommand.append(ptr); |
| 241 | |
| 242 | if (!OpenRecoveryScript::Insert_ORS_Command(ORSCommand)) |
| 243 | break; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 244 | } else |
| 245 | LOGERR("argument error specifying zip file\n"); |
| 246 | } else if (*argptr == 'w') { |
Ethan Yonker | 3aa66be | 2015-12-22 12:30:18 -0600 | [diff] [blame] | 247 | if (len == 9) { |
| 248 | if (!OpenRecoveryScript::Insert_ORS_Command("wipe data\n")) |
| 249 | break; |
| 250 | } else if (len == 10) { |
| 251 | if (!OpenRecoveryScript::Insert_ORS_Command("wipe cache\n")) |
| 252 | break; |
| 253 | } |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 254 | // 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] | 255 | } else if (*argptr == 'n') { |
Ethan Yonker | 3aa66be | 2015-12-22 12:30:18 -0600 | [diff] [blame] | 256 | DataManager::SetValue(TW_BACKUP_NAME, gui_parse_text("{@auto_generate}")); |
| 257 | if (!OpenRecoveryScript::Insert_ORS_Command("backup BSDCAE\n")) |
| 258 | break; |
Ethan Yonker | a167416 | 2014-11-06 08:35:10 -0600 | [diff] [blame] | 259 | } else if (*argptr == 'p') { |
| 260 | Shutdown = true; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 261 | } else if (*argptr == 's') { |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 262 | if (strncmp(argptr, "send_intent", strlen("send_intent")) == 0) { |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 263 | ptr = argptr + strlen("send_intent") + 1; |
| 264 | Send_Intent = *ptr; |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 265 | } else if (strncmp(argptr, "security", strlen("security")) == 0) { |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 266 | LOGINFO("Security update\n"); |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 267 | } else if (strncmp(argptr, "sideload", strlen("sideload")) == 0) { |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 268 | if (!OpenRecoveryScript::Insert_ORS_Command("sideload\n")) |
| 269 | break; |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 270 | } else if (strncmp(argptr, "stages", strlen("stages")) == 0) { |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 271 | LOGINFO("ignoring stages command\n"); |
| 272 | } |
| 273 | } else if (*argptr == 'r') { |
Ethan Yonker | 3fdcda4 | 2016-11-30 12:29:37 -0600 | [diff] [blame] | 274 | if (strncmp(argptr, "reason", strlen("reason")) == 0) { |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 275 | ptr = argptr + strlen("reason") + 1; |
| 276 | gui_print("%s\n", ptr); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 277 | } |
| 278 | } |
| 279 | } |
Vojtech Bocek | 0fc1573 | 2014-07-04 01:09:50 +0200 | [diff] [blame] | 280 | printf("\n"); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 281 | } |
| 282 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 283 | if (crash_counter == 0) { |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 284 | property_list(Print_Prop, NULL); |
| 285 | printf("\n"); |
Vojtech Bocek | 0fc1573 | 2014-07-04 01:09:50 +0200 | [diff] [blame] | 286 | } else { |
| 287 | printf("twrp.crash_counter=%d\n", crash_counter); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | // Check for and run startup script if script exists |
| 291 | TWFunc::check_and_run_script("/sbin/runatboot.sh", "boot"); |
| 292 | TWFunc::check_and_run_script("/sbin/postrecoveryboot.sh", "boot"); |
| 293 | |
| 294 | #ifdef TW_INCLUDE_INJECTTWRP |
| 295 | // Back up TWRP Ramdisk if needed: |
| 296 | TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot"); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 297 | LOGINFO("Backing up TWRP ramdisk...\n"); |
| 298 | if (Boot == NULL || Boot->Current_File_System != "emmc") |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 299 | TWFunc::Exec_Cmd("injecttwrp --backup /tmp/backup_recovery_ramdisk.img"); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 300 | else { |
| 301 | 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] | 302 | TWFunc::Exec_Cmd(injectcmd); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 303 | } |
| 304 | LOGINFO("Backup of TWRP ramdisk done.\n"); |
| 305 | #endif |
| 306 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 307 | // Offer to decrypt if the device is encrypted |
| 308 | if (DataManager::GetIntValue(TW_IS_ENCRYPTED) != 0) { |
Captain Throwback | f8d0e21 | 2019-07-04 14:26:39 -0400 | [diff] [blame] | 309 | LOGINFO("Is encrypted, do decrypt page first\n"); |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 310 | if (DataManager::GetIntValue(TW_IS_FBE)) |
| 311 | DataManager::SetValue("tw_crypto_user_id", "0"); |
| 312 | if (gui_startPage("decrypt", 1, 1) != 0) { |
| 313 | LOGERR("Failed to start decrypt GUI page.\n"); |
Ethan Yonker | cf50da5 | 2015-01-12 21:59:07 -0600 | [diff] [blame] | 314 | } else { |
Captain Throwback | f8d0e21 | 2019-07-04 14:26:39 -0400 | [diff] [blame] | 315 | // Check for and load custom theme if present |
| 316 | TWFunc::check_selinux_support(); |
| 317 | gui_loadCustomResources(); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 318 | } |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 319 | } else if (datamedia) { |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 320 | TWFunc::check_selinux_support(); |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 321 | if (tw_get_default_metadata(DataManager::GetSettingsStoragePath().c_str()) != 0) { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 322 | 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] | 323 | } else { |
| 324 | LOGINFO("Got default contexts and file mode for storage files.\n"); |
| 325 | } |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 326 | } |
| 327 | |
Vojtech Bocek | 2005a84 | 2014-03-11 19:40:34 +0100 | [diff] [blame] | 328 | // Fixup the RTC clock on devices which require it |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 329 | if (crash_counter == 0) TWFunc::Fixup_Time_On_Boot(); |
Vojtech Bocek | 2005a84 | 2014-03-11 19:40:34 +0100 | [diff] [blame] | 330 | |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 331 | // Read the settings file |
| 332 | TWFunc::Update_Log_File(); |
epicX | 98053c3 | 2021-01-04 13:01:31 +0530 | [diff] [blame] | 333 | DataManager::LoadTWRPFolderInfo(); |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 334 | DataManager::ReadSettingsFile(); |
| 335 | PageManager::LoadLanguage(DataManager::GetStrValue("tw_language")); |
| 336 | GUIConsole::Translate_Now(); |
| 337 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 338 | // Run any outstanding OpenRecoveryScript |
bigbiff | 349ea55 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 339 | std::string cacheDir = TWFunc::get_log_dir(); |
| 340 | if (cacheDir == DATA_LOGS_DIR) |
| 341 | cacheDir = "/data/cache"; |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 342 | std::string orsFile = cacheDir + "/recovery/openrecoveryscript"; |
Captain Throwback | f8d0e21 | 2019-07-04 14:26:39 -0400 | [diff] [blame] | 343 | |
Noah Jacobson | 5a79f67 | 2019-04-28 00:10:07 -0400 | [diff] [blame] | 344 | if (TWFunc::Path_Exists(SCRIPT_FILE_TMP) || |
| 345 | (DataManager::GetIntValue(TW_IS_ENCRYPTED) == 0 && TWFunc::Path_Exists(orsFile))) { |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 346 | OpenRecoveryScript::Run_OpenRecoveryScript(); |
| 347 | } |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 348 | |
Ethan Yonker | 6f49e11 | 2014-09-03 21:42:49 -0500 | [diff] [blame] | 349 | #ifdef TW_HAS_MTP |
Ethan Yonker | 6f49e11 | 2014-09-03 21:42:49 -0500 | [diff] [blame] | 350 | char mtp_crash_check[PROPERTY_VALUE_MAX]; |
| 351 | property_get("mtp.crash_check", mtp_crash_check, "0"); |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 352 | if (DataManager::GetIntValue("tw_mtp_enabled") |
| 353 | && !strcmp(mtp_crash_check, "0") && !crash_counter |
| 354 | && (!DataManager::GetIntValue(TW_IS_ENCRYPTED) || DataManager::GetIntValue(TW_IS_DECRYPTED))) { |
Ethan Yonker | 6f49e11 | 2014-09-03 21:42:49 -0500 | [diff] [blame] | 355 | property_set("mtp.crash_check", "1"); |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 356 | LOGINFO("Starting MTP\n"); |
| 357 | if (!PartitionManager.Enable_MTP()) |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 358 | PartitionManager.Disable_MTP(); |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 359 | else |
| 360 | gui_msg("mtp_enabled=MTP Enabled"); |
Ethan Yonker | 6f49e11 | 2014-09-03 21:42:49 -0500 | [diff] [blame] | 361 | property_set("mtp.crash_check", "0"); |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 362 | } else if (strcmp(mtp_crash_check, "0")) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 363 | gui_warn("mtp_crash=MTP Crashed, not starting MTP on boot."); |
Ethan Yonker | 12055fa | 2014-09-04 08:06:53 -0500 | [diff] [blame] | 364 | DataManager::SetValue("tw_mtp_enabled", 0); |
Ethan Yonker | df7abac | 2014-12-29 10:48:17 -0600 | [diff] [blame] | 365 | PartitionManager.Disable_MTP(); |
Matt Mower | 653a170 | 2017-02-16 10:38:52 -0600 | [diff] [blame] | 366 | } else if (crash_counter == 1) { |
| 367 | LOGINFO("TWRP crashed; disabling MTP as a precaution.\n"); |
| 368 | PartitionManager.Disable_MTP(); |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 369 | } |
Ethan Yonker | 6f49e11 | 2014-09-03 21:42:49 -0500 | [diff] [blame] | 370 | #endif |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 371 | |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 372 | #ifndef TW_OEM_BUILD |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 373 | // Check if system has never been changed |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 374 | TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path()); |
Ethan Yonker | 1673e3d | 2015-10-26 21:51:58 -0500 | [diff] [blame] | 375 | TWPartition* ven = PartitionManager.Find_Partition_By_Path("/vendor"); |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 376 | |
Ethan Yonker | 0e2c657 | 2015-06-04 11:30:02 -0500 | [diff] [blame] | 377 | if (sys) { |
Ethan Yonker | 961d20e | 2015-06-29 14:00:03 -0500 | [diff] [blame] | 378 | if ((DataManager::GetIntValue("tw_mount_system_ro") == 0 && sys->Check_Lifetime_Writes() == 0) || DataManager::GetIntValue("tw_mount_system_ro") == 2) { |
| 379 | if (DataManager::GetIntValue("tw_never_show_system_ro_page") == 0) { |
| 380 | DataManager::SetValue("tw_back", "main"); |
| 381 | if (gui_startPage("system_readonly", 1, 1) != 0) { |
| 382 | LOGERR("Failed to start system_readonly GUI page.\n"); |
Ethan Yonker | 0e2c657 | 2015-06-04 11:30:02 -0500 | [diff] [blame] | 383 | } |
Ethan Yonker | 961d20e | 2015-06-29 14:00:03 -0500 | [diff] [blame] | 384 | } else if (DataManager::GetIntValue("tw_mount_system_ro") == 0) { |
Ethan Yonker | 0e2c657 | 2015-06-04 11:30:02 -0500 | [diff] [blame] | 385 | sys->Change_Mount_Read_Only(false); |
Ethan Yonker | 1673e3d | 2015-10-26 21:51:58 -0500 | [diff] [blame] | 386 | if (ven) |
| 387 | ven->Change_Mount_Read_Only(false); |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 388 | } |
Ethan Yonker | 961d20e | 2015-06-29 14:00:03 -0500 | [diff] [blame] | 389 | } else if (DataManager::GetIntValue("tw_mount_system_ro") == 1) { |
| 390 | // Do nothing, user selected to leave system read only |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 391 | } else { |
Ethan Yonker | 0e2c657 | 2015-06-04 11:30:02 -0500 | [diff] [blame] | 392 | sys->Change_Mount_Read_Only(false); |
Ethan Yonker | 1673e3d | 2015-10-26 21:51:58 -0500 | [diff] [blame] | 393 | if (ven) |
| 394 | ven->Change_Mount_Read_Only(false); |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 395 | } |
| 396 | } |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 397 | #endif |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 398 | twrpAdbBuFifo *adb_bu_fifo = new twrpAdbBuFifo(); |
| 399 | adb_bu_fifo->threadAdbBuFifo(); |
| 400 | |
epicX | 9d930a2 | 2020-12-29 00:39:36 +0530 | [diff] [blame] | 401 | TWFunc::checkforapp(); //Checking compatibility for TWRP app |
| 402 | |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 403 | // Launch the main GUI |
| 404 | gui_start(); |
| 405 | |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 406 | #ifndef TW_OEM_BUILD |
Ethan Yonker | 9132d91 | 2015-02-02 10:32:49 -0600 | [diff] [blame] | 407 | // Disable flashing of stock recovery |
| 408 | TWFunc::Disable_Stock_Recovery_Replace(); |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 409 | #endif |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 410 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 411 | // Reboot |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 412 | TWFunc::Update_Intent_File(Send_Intent); |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 413 | delete adb_bu_fifo; |
bigbiff | 349ea55 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 414 | TWFunc::Update_Log_File(); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 415 | gui_msg(Msg("rebooting=Rebooting...")); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 416 | string Reboot_Arg; |
| 417 | DataManager::GetValue("tw_reboot_arg", Reboot_Arg); |
| 418 | if (Reboot_Arg == "recovery") |
| 419 | TWFunc::tw_reboot(rb_recovery); |
| 420 | else if (Reboot_Arg == "poweroff") |
| 421 | TWFunc::tw_reboot(rb_poweroff); |
| 422 | else if (Reboot_Arg == "bootloader") |
| 423 | TWFunc::tw_reboot(rb_bootloader); |
| 424 | else if (Reboot_Arg == "download") |
| 425 | TWFunc::tw_reboot(rb_download); |
mauronofrio | e9a49ef | 2018-10-03 13:38:16 +0200 | [diff] [blame] | 426 | else if (Reboot_Arg == "edl") |
| 427 | TWFunc::tw_reboot(rb_edl); |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 428 | else |
| 429 | TWFunc::tw_reboot(rb_system); |
| 430 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 431 | return 0; |
Dees_Troy | a449a6f | 2013-04-07 17:50:11 -0500 | [diff] [blame] | 432 | } |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 433 | |