Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2012 bigbiff/Dees_Troy TeamWin |
| 3 | This file is part of TWRP/TeamWin Recovery Project. |
| 4 | |
| 5 | TWRP is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by |
| 7 | the Free Software Foundation, either version 3 of the License, or |
| 8 | (at your option) any later version. |
| 9 | |
| 10 | TWRP is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | GNU General Public License for more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License |
| 16 | along with TWRP. If not, see <http://www.gnu.org/licenses/>. |
| 17 | */ |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 18 | |
| 19 | #include <stdio.h> |
| 20 | #include <stdlib.h> |
| 21 | #include <string.h> |
| 22 | #include <sys/stat.h> |
| 23 | #include <sys/vfs.h> |
| 24 | #include <unistd.h> |
| 25 | #include <vector> |
| 26 | #include <dirent.h> |
| 27 | #include <time.h> |
| 28 | #include <errno.h> |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 29 | #include <iostream> |
| 30 | #include <fstream> |
Ethan Yonker | d83587d | 2015-01-03 16:54:18 -0600 | [diff] [blame] | 31 | #include <sys/types.h> |
| 32 | #include <sys/wait.h> |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 33 | |
| 34 | #include "twrp-functions.hpp" |
| 35 | #include "partitions.hpp" |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 36 | #include "twcommon.h" |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 37 | #include "openrecoveryscript.hpp" |
| 38 | #include "variables.h" |
Dees_Troy | 4fc0024 | 2013-01-17 19:22:12 +0000 | [diff] [blame] | 39 | #include "adb_install.h" |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 40 | #include "data.hpp" |
Ethan Yonker | d83587d | 2015-01-03 16:54:18 -0600 | [diff] [blame] | 41 | #include "adb_install.h" |
| 42 | #include "fuse_sideload.h" |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 43 | #include "gui/gui.hpp" |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 44 | extern "C" { |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 45 | #include "twinstall.h" |
| 46 | #include "gui/gui.h" |
Ethan Yonker | d83587d | 2015-01-03 16:54:18 -0600 | [diff] [blame] | 47 | #include "cutils/properties.h" |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 48 | int TWinstall_zip(const char* path, int* wipe_cache); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 49 | } |
| 50 | |
that | 10ae24f | 2015-12-26 20:53:51 +0100 | [diff] [blame] | 51 | OpenRecoveryScript::VoidFunction OpenRecoveryScript::call_after_cli_command; |
| 52 | |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 53 | #define SCRIPT_COMMAND_SIZE 512 |
| 54 | |
| 55 | int OpenRecoveryScript::check_for_script_file(void) { |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 56 | if (!PartitionManager.Mount_By_Path(SCRIPT_FILE_CACHE, false)) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 57 | LOGINFO("Unable to mount /cache for OpenRecoveryScript support.\n"); |
| 58 | gui_msg(Msg(msg::kError, "unable_to_mount=Unable to mount {1}")(SCRIPT_FILE_CACHE)); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 59 | return 0; |
| 60 | } |
| 61 | if (TWFunc::Path_Exists(SCRIPT_FILE_CACHE)) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 62 | LOGINFO("Script file found: '%s'\n", SCRIPT_FILE_CACHE); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 63 | // Copy script file to /tmp |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 64 | TWFunc::copy_file(SCRIPT_FILE_CACHE, SCRIPT_FILE_TMP, 0755); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 65 | // Delete the file from /cache |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 66 | unlink(SCRIPT_FILE_CACHE); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 67 | return 1; |
| 68 | } |
| 69 | return 0; |
| 70 | } |
| 71 | |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 72 | int OpenRecoveryScript::copy_script_file(string filename) { |
| 73 | if (TWFunc::Path_Exists(filename)) { |
| 74 | LOGINFO("Script file found: '%s'\n", filename.c_str()); |
| 75 | if (filename == SCRIPT_FILE_TMP) |
| 76 | return 1; // file is already in the right place |
| 77 | // Copy script file to /tmp |
| 78 | TWFunc::copy_file(filename, SCRIPT_FILE_TMP, 0755); |
| 79 | // Delete the old file |
| 80 | unlink(filename.c_str()); |
| 81 | return 1; |
| 82 | } |
| 83 | return 0; |
| 84 | } |
| 85 | |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 86 | int OpenRecoveryScript::run_script_file(void) { |
| 87 | FILE *fp = fopen(SCRIPT_FILE_TMP, "r"); |
Dees_Troy | 4bc09ae | 2013-01-18 17:00:54 +0000 | [diff] [blame] | 88 | int ret_val = 0, cindex, line_len, i, remove_nl, install_cmd = 0, sideload = 0; |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 89 | char script_line[SCRIPT_COMMAND_SIZE], command[SCRIPT_COMMAND_SIZE], |
| 90 | value[SCRIPT_COMMAND_SIZE], mount[SCRIPT_COMMAND_SIZE], |
| 91 | value1[SCRIPT_COMMAND_SIZE], value2[SCRIPT_COMMAND_SIZE]; |
| 92 | char *val_start, *tok; |
| 93 | |
| 94 | if (fp != NULL) { |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 95 | DataManager::SetValue(TW_SIMULATE_ACTIONS, 0); |
Dees_Troy | 6bdcbb1 | 2013-01-26 14:07:43 +0000 | [diff] [blame] | 96 | DataManager::SetValue("ui_progress", 0); // Reset the progress bar |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 97 | while (fgets(script_line, SCRIPT_COMMAND_SIZE, fp) != NULL && ret_val == 0) { |
| 98 | cindex = 0; |
| 99 | line_len = strlen(script_line); |
| 100 | if (line_len < 2) |
| 101 | continue; // there's a blank line or line is too short to contain a command |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 102 | //gui_print("script line: '%s'\n", script_line); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 103 | for (i=0; i<line_len; i++) { |
| 104 | if ((int)script_line[i] == 32) { |
| 105 | cindex = i; |
| 106 | i = line_len; |
| 107 | } |
| 108 | } |
| 109 | memset(command, 0, sizeof(command)); |
| 110 | memset(value, 0, sizeof(value)); |
| 111 | if ((int)script_line[line_len - 1] == 10) |
| 112 | remove_nl = 2; |
| 113 | else |
| 114 | remove_nl = 1; |
| 115 | if (cindex != 0) { |
| 116 | strncpy(command, script_line, cindex); |
Matt Mower | e96c3c3 | 2014-09-19 12:14:37 -0500 | [diff] [blame] | 117 | LOGINFO("command is: '%s'\n", command); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 118 | val_start = script_line; |
| 119 | val_start += cindex + 1; |
bigbiff bigbiff | c03121d | 2013-09-09 19:14:35 -0400 | [diff] [blame] | 120 | if ((int) *val_start == 32) |
| 121 | val_start++; //get rid of space |
bigbiff bigbiff | 72e9554 | 2013-08-29 21:01:02 -0400 | [diff] [blame] | 122 | if ((int) *val_start == 51) |
| 123 | val_start++; //get rid of = at the beginning |
bigbiff bigbiff | a6c5f4e | 2013-09-17 20:01:14 -0400 | [diff] [blame] | 124 | if ((int) *val_start == 32) |
| 125 | val_start++; //get rid of space |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 126 | strncpy(value, val_start, line_len - cindex - remove_nl); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 127 | LOGINFO("value is: '%s'\n", value); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 128 | } else { |
| 129 | strncpy(command, script_line, line_len - remove_nl + 1); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 130 | gui_print("command is: '%s' and there is no value\n", command); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 131 | } |
| 132 | if (strcmp(command, "install") == 0) { |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 133 | // Install Zip |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 134 | DataManager::SetValue("tw_action_text2", "Installing Zip"); |
Dees_Troy | dc8bc1b | 2013-01-17 01:39:28 +0000 | [diff] [blame] | 135 | PartitionManager.Mount_All_Storage(); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 136 | ret_val = Install_Command(value); |
Dees_Troy | 06b4fe9 | 2012-10-16 11:43:20 -0400 | [diff] [blame] | 137 | install_cmd = -1; |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 138 | } else if (strcmp(command, "wipe") == 0) { |
| 139 | // Wipe |
| 140 | if (strcmp(value, "cache") == 0 || strcmp(value, "/cache") == 0) { |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 141 | PartitionManager.Wipe_By_Path("/cache"); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 142 | } else if (strcmp(value, "dalvik") == 0 || strcmp(value, "dalvick") == 0 || strcmp(value, "dalvikcache") == 0 || strcmp(value, "dalvickcache") == 0) { |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 143 | PartitionManager.Wipe_Dalvik_Cache(); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 144 | } else if (strcmp(value, "data") == 0 || strcmp(value, "/data") == 0 || strcmp(value, "factory") == 0 || strcmp(value, "factoryreset") == 0) { |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 145 | PartitionManager.Factory_Reset(); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 146 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 147 | LOGERR("Error with wipe command value: '%s'\n", value); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 148 | ret_val = 1; |
| 149 | } |
| 150 | } else if (strcmp(command, "backup") == 0) { |
| 151 | // Backup |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 152 | DataManager::SetValue("tw_action_text2", gui_parse_text("{@backing}")); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 153 | tok = strtok(value, " "); |
| 154 | strcpy(value1, tok); |
| 155 | tok = strtok(NULL, " "); |
| 156 | if (tok != NULL) { |
| 157 | memset(value2, 0, sizeof(value2)); |
| 158 | strcpy(value2, tok); |
| 159 | line_len = strlen(tok); |
| 160 | if ((int)value2[line_len - 1] == 10 || (int)value2[line_len - 1] == 13) { |
| 161 | if ((int)value2[line_len - 1] == 10 || (int)value2[line_len - 1] == 13) |
| 162 | remove_nl = 2; |
| 163 | else |
| 164 | remove_nl = 1; |
| 165 | } else |
| 166 | remove_nl = 0; |
| 167 | strncpy(value2, tok, line_len - remove_nl); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 168 | DataManager::SetValue(TW_BACKUP_NAME, value2); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 169 | gui_msg(Msg("backup_folder=Backup folder set to '{1}'")(value2)); |
Dees_Troy | c9ff7a3 | 2012-09-27 10:09:41 -0400 | [diff] [blame] | 170 | if (PartitionManager.Check_Backup_Name(true) != 0) { |
| 171 | ret_val = 1; |
| 172 | continue; |
| 173 | } |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 174 | } else { |
| 175 | char empt[50]; |
| 176 | strcpy(empt, "(Current Date)"); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 177 | DataManager::SetValue(TW_BACKUP_NAME, empt); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 178 | } |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 179 | ret_val = Backup_Command(value1); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 180 | } else if (strcmp(command, "restore") == 0) { |
| 181 | // Restore |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 182 | DataManager::SetValue("tw_action_text2", gui_parse_text("{@restore}")); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 183 | PartitionManager.Mount_All_Storage(); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 184 | DataManager::SetValue(TW_SKIP_MD5_CHECK_VAR, 0); |
Dees_Troy | dc8bc1b | 2013-01-17 01:39:28 +0000 | [diff] [blame] | 185 | char folder_path[512], partitions[512]; |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 186 | |
| 187 | string val = value, restore_folder, restore_partitions; |
| 188 | size_t pos = val.find_last_of(" "); |
| 189 | if (pos == string::npos) { |
Dees_Troy | dc8bc1b | 2013-01-17 01:39:28 +0000 | [diff] [blame] | 190 | restore_folder = value; |
| 191 | partitions[0] = '\0'; |
| 192 | } else { |
| 193 | restore_folder = val.substr(0, pos); |
| 194 | restore_partitions = val.substr(pos + 1, val.size() - pos - 1); |
| 195 | strcpy(partitions, restore_partitions.c_str()); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 196 | } |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 197 | strcpy(folder_path, restore_folder.c_str()); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 198 | LOGINFO("Restore folder is: '%s' and partitions: '%s'\n", folder_path, partitions); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 199 | gui_msg(Msg("restoring=Restoring {1}...")(folder_path)); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 200 | |
| 201 | if (folder_path[0] != '/') { |
| 202 | char backup_folder[512]; |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 203 | string folder_var; |
Ethan Yonker | d7adf29 | 2014-02-15 16:43:23 -0600 | [diff] [blame] | 204 | std::vector<PartitionList> Storage_List; |
| 205 | |
| 206 | PartitionManager.Get_Partition_List("storage", &Storage_List); |
| 207 | int listSize = Storage_List.size(); |
| 208 | for (int i = 0; i < listSize; i++) { |
| 209 | if (PartitionManager.Is_Mounted_By_Path(Storage_List.at(i).Mount_Point)) { |
| 210 | DataManager::SetValue("tw_storage_path", Storage_List.at(i).Mount_Point); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 211 | DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, folder_var); |
| 212 | sprintf(backup_folder, "%s/%s", folder_var.c_str(), folder_path); |
Ethan Yonker | d7adf29 | 2014-02-15 16:43:23 -0600 | [diff] [blame] | 213 | if (TWFunc::Path_Exists(backup_folder)) { |
| 214 | strcpy(folder_path, backup_folder); |
| 215 | break; |
| 216 | } |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 217 | } |
| 218 | } |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 219 | } else { |
| 220 | if (folder_path[strlen(folder_path) - 1] == '/') |
| 221 | strcat(folder_path, "."); |
| 222 | else |
| 223 | strcat(folder_path, "/."); |
| 224 | } |
| 225 | if (!TWFunc::Path_Exists(folder_path)) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 226 | gui_msg(Msg(msg::kError, "locate_backup_err=Unable to locate backup '{1}'")(folder_path)); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 227 | ret_val = 1; |
| 228 | continue; |
| 229 | } |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 230 | DataManager::SetValue("tw_restore", folder_path); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 231 | |
| 232 | PartitionManager.Set_Restore_Files(folder_path); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 233 | string Partition_List; |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 234 | int is_encrypted = 0; |
| 235 | DataManager::GetValue("tw_restore_encrypted", is_encrypted); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 236 | DataManager::GetValue("tw_restore_list", Partition_List); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 237 | if (strlen(partitions) != 0) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 238 | string Restore_List; |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 239 | |
| 240 | memset(value2, 0, sizeof(value2)); |
| 241 | strcpy(value2, partitions); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 242 | gui_msg(Msg("set_restore_opt=Setting restore options: '{1}':")(value2)); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 243 | line_len = strlen(value2); |
| 244 | for (i=0; i<line_len; i++) { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 245 | if ((value2[i] == 'S' || value2[i] == 's') && Partition_List.find("/system;") != string::npos) { |
| 246 | Restore_List += "/system;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 247 | gui_msg("system=System"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 248 | } else if ((value2[i] == 'D' || value2[i] == 'd') && Partition_List.find("/data;") != string::npos) { |
| 249 | Restore_List += "/data;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 250 | gui_msg("data=Data"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 251 | } else if ((value2[i] == 'C' || value2[i] == 'c') && Partition_List.find("/cache;") != string::npos) { |
| 252 | Restore_List += "/cache;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 253 | gui_msg("cache=Cache"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 254 | } else if ((value2[i] == 'R' || value2[i] == 'r') && Partition_List.find("/recovery;") != string::npos) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 255 | Restore_List += "/recovery;"; |
| 256 | gui_msg("recovery=Recovery"); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 257 | } else if (value2[i] == '1' && DataManager::GetIntValue(TW_RESTORE_SP1_VAR) > 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 258 | gui_print("%s\n", "Special1 -- No Longer Supported..."); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 259 | } else if (value2[i] == '2' && DataManager::GetIntValue(TW_RESTORE_SP2_VAR) > 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 260 | gui_print("%s\n", "Special2 -- No Longer Supported..."); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 261 | } else if (value2[i] == '3' && DataManager::GetIntValue(TW_RESTORE_SP3_VAR) > 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 262 | gui_print("%s\n", "Special3 -- No Longer Supported..."); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 263 | } else if ((value2[i] == 'B' || value2[i] == 'b') && Partition_List.find("/boot;") != string::npos) { |
| 264 | Restore_List += "/boot;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 265 | gui_msg("boot=Boot"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 266 | } else if ((value2[i] == 'A' || value2[i] == 'a') && Partition_List.find("/and-sec;") != string::npos) { |
| 267 | Restore_List += "/and-sec;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 268 | gui_msg("android_secure=Android Secure"); |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 269 | } else if ((value2[i] == 'E' || value2[i] == 'e') && Partition_List.find("/sd-ext;") != string::npos) { |
| 270 | Restore_List += "/sd-ext;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 271 | gui_msg("sdext=SD-EXT"); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 272 | } else if (value2[i] == 'M' || value2[i] == 'm') { |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 273 | DataManager::SetValue(TW_SKIP_MD5_CHECK_VAR, 1); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 274 | gui_msg("md5_check_skip=MD5 check skip is on"); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 275 | } |
| 276 | } |
| 277 | |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 278 | DataManager::SetValue("tw_restore_selected", Restore_List); |
| 279 | } else { |
| 280 | DataManager::SetValue("tw_restore_selected", Partition_List); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 281 | } |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 282 | if (is_encrypted) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 283 | gui_err("ors_encrypt_restore_err=Unable to use OpenRecoveryScript to restore an encrypted backup."); |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 284 | ret_val = 1; |
| 285 | } else if (!PartitionManager.Run_Restore(folder_path)) |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 286 | ret_val = 1; |
| 287 | else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 288 | gui_msg("done=Done."); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 289 | } else if (strcmp(command, "mount") == 0) { |
| 290 | // Mount |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 291 | DataManager::SetValue("tw_action_text2", gui_parse_text("{@mounting}")); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 292 | if (value[0] != '/') { |
| 293 | strcpy(mount, "/"); |
| 294 | strcat(mount, value); |
| 295 | } else |
| 296 | strcpy(mount, value); |
| 297 | if (PartitionManager.Mount_By_Path(mount, true)) |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 298 | gui_msg(Msg("mounted=Mounted '{1}'")(mount)); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 299 | } else if (strcmp(command, "unmount") == 0 || strcmp(command, "umount") == 0) { |
| 300 | // Unmount |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 301 | DataManager::SetValue("tw_action_text2", gui_parse_text("{@unmounting}")); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 302 | if (value[0] != '/') { |
| 303 | strcpy(mount, "/"); |
| 304 | strcat(mount, value); |
| 305 | } else |
| 306 | strcpy(mount, value); |
| 307 | if (PartitionManager.UnMount_By_Path(mount, true)) |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 308 | gui_msg(Msg("unmounted=Unounted '{1}'")(mount)); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 309 | } else if (strcmp(command, "set") == 0) { |
| 310 | // Set value |
Ethan Yonker | 6511c4d | 2015-06-17 16:52:29 -0500 | [diff] [blame] | 311 | size_t len = strlen(value); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 312 | tok = strtok(value, " "); |
| 313 | strcpy(value1, tok); |
Ethan Yonker | 6511c4d | 2015-06-17 16:52:29 -0500 | [diff] [blame] | 314 | if (len > strlen(value1) + 1) { |
| 315 | char *val2 = value + strlen(value1) + 1; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 316 | gui_msg(Msg("setting=Setting '{1}' to '{2}'")(value1)(val2)); |
Ethan Yonker | 6511c4d | 2015-06-17 16:52:29 -0500 | [diff] [blame] | 317 | DataManager::SetValue(value1, val2); |
| 318 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 319 | gui_msg(Msg("setting_empty=Setting '{1}' to empty")(value1)); |
Ethan Yonker | 6511c4d | 2015-06-17 16:52:29 -0500 | [diff] [blame] | 320 | DataManager::SetValue(value1, ""); |
| 321 | } |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 322 | } else if (strcmp(command, "mkdir") == 0) { |
| 323 | // Make directory (recursive) |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 324 | DataManager::SetValue("tw_action_text2", gui_parse_text("{@making_dir1}")); |
| 325 | gui_msg(Msg("making_dir2=Making directory: '{1}'")(value)); |
that | f1408b3 | 2016-01-03 11:09:15 +0100 | [diff] [blame] | 326 | if (!TWFunc::Recursive_Mkdir(value)) { |
| 327 | // error message already displayed by Recursive_Mkdir |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 328 | ret_val = 1; |
| 329 | } |
| 330 | } else if (strcmp(command, "reboot") == 0) { |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 331 | if (strlen(value) && strcmp(value, "recovery") == 0) |
| 332 | TWFunc::tw_reboot(rb_recovery); |
| 333 | else if (strlen(value) && strcmp(value, "poweroff") == 0) |
| 334 | TWFunc::tw_reboot(rb_poweroff); |
| 335 | else if (strlen(value) && strcmp(value, "bootloader") == 0) |
| 336 | TWFunc::tw_reboot(rb_bootloader); |
| 337 | else if (strlen(value) && strcmp(value, "download") == 0) |
| 338 | TWFunc::tw_reboot(rb_download); |
| 339 | else |
| 340 | TWFunc::tw_reboot(rb_system); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 341 | } else if (strcmp(command, "cmd") == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 342 | DataManager::SetValue("tw_action_text2", gui_parse_text("{@running_command}")); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 343 | if (cindex != 0) { |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 344 | TWFunc::Exec_Cmd(value); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 345 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 346 | LOGERR("No value given for cmd\n"); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 347 | } |
| 348 | } else if (strcmp(command, "print") == 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 349 | gui_print("%s\n", value); |
Dees_Troy | 4fc0024 | 2013-01-17 19:22:12 +0000 | [diff] [blame] | 350 | } else if (strcmp(command, "sideload") == 0) { |
Dees_Troy | 4bc09ae | 2013-01-18 17:00:54 +0000 | [diff] [blame] | 351 | // ADB Sideload |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 352 | DataManager::SetValue("tw_action_text2", gui_parse_text("{@sideload}")); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 353 | install_cmd = -1; |
| 354 | |
| 355 | int wipe_cache = 0; |
Ethan Yonker | d83587d | 2015-01-03 16:54:18 -0600 | [diff] [blame] | 356 | string result; |
| 357 | pid_t sideload_child_pid; |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 358 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 359 | gui_msg("start_sideload=Starting ADB sideload feature..."); |
Ethan Yonker | d83587d | 2015-01-03 16:54:18 -0600 | [diff] [blame] | 360 | ret_val = apply_from_adb("/", &sideload_child_pid); |
| 361 | if (ret_val != 0) { |
| 362 | if (ret_val == -2) |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 363 | gui_err("need_new_adb=You need adb 1.0.32 or newer to sideload to this device."); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 364 | ret_val = 1; // failure |
Ethan Yonker | d83587d | 2015-01-03 16:54:18 -0600 | [diff] [blame] | 365 | } else if (TWinstall_zip(FUSE_SIDELOAD_HOST_PATHNAME, &wipe_cache) == 0) { |
| 366 | if (wipe_cache) |
| 367 | PartitionManager.Wipe_By_Path("/cache"); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 368 | } else { |
Ethan Yonker | d83587d | 2015-01-03 16:54:18 -0600 | [diff] [blame] | 369 | ret_val = 1; // failure |
Dees_Troy | 4fc0024 | 2013-01-17 19:22:12 +0000 | [diff] [blame] | 370 | } |
Ethan Yonker | d83587d | 2015-01-03 16:54:18 -0600 | [diff] [blame] | 371 | sideload = 1; // Causes device to go to the home screen afterwards |
| 372 | if (sideload_child_pid != 0) { |
| 373 | LOGINFO("Signaling child sideload process to exit.\n"); |
| 374 | struct stat st; |
| 375 | // Calling stat() on this magic filename signals the minadbd |
| 376 | // subprocess to shut down. |
| 377 | stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st); |
| 378 | int status; |
| 379 | LOGINFO("Waiting for child sideload process to exit.\n"); |
| 380 | waitpid(sideload_child_pid, &status, 0); |
| 381 | } |
Dees Troy | 28a85d2 | 2015-04-28 02:03:16 +0000 | [diff] [blame] | 382 | property_set("ctl.start", "adbd"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 383 | gui_msg("done=Done."); |
Ethan Yonker | aae6e8c | 2014-02-11 21:37:36 -0600 | [diff] [blame] | 384 | } else if (strcmp(command, "fixperms") == 0 || strcmp(command, "fixpermissions") == 0) { |
| 385 | ret_val = PartitionManager.Fix_Permissions(); |
| 386 | if (ret_val != 0) |
| 387 | ret_val = 1; // failure |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 388 | } else if (strcmp(command, "decrypt") == 0) { |
| 389 | if (*value) { |
| 390 | ret_val = PartitionManager.Decrypt_Device(value); |
| 391 | if (ret_val != 0) |
| 392 | ret_val = 1; // failure |
| 393 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 394 | gui_err("no_pwd=No password provided."); |
Ethan Yonker | 03a42f6 | 2014-08-08 11:03:51 -0500 | [diff] [blame] | 395 | ret_val = 1; // failure |
| 396 | } |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 397 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 398 | LOGERR("Unrecognized script command: '%s'\n", command); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 399 | ret_val = 1; |
| 400 | } |
| 401 | } |
| 402 | fclose(fp); |
that | 10ae24f | 2015-12-26 20:53:51 +0100 | [diff] [blame] | 403 | unlink(SCRIPT_FILE_TMP); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 404 | gui_msg("done_ors=Done processing script file"); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 405 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 406 | gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(SCRIPT_FILE_TMP)(strerror(errno))); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 407 | return 1; |
| 408 | } |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 409 | if (install_cmd && DataManager::GetIntValue(TW_HAS_INJECTTWRP) == 1 && DataManager::GetIntValue(TW_INJECT_AFTER_ZIP) == 1) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 410 | gui_msg("injecttwrp=Injecting TWRP into boot image..."); |
Dees_Troy | 06b4fe9 | 2012-10-16 11:43:20 -0400 | [diff] [blame] | 411 | TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot"); |
| 412 | if (Boot == NULL || Boot->Current_File_System != "emmc") |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 413 | TWFunc::Exec_Cmd("injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash"); |
Dees_Troy | 06b4fe9 | 2012-10-16 11:43:20 -0400 | [diff] [blame] | 414 | else { |
| 415 | string injectcmd = "injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash bd=" + Boot->Actual_Block_Device; |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 416 | TWFunc::Exec_Cmd(injectcmd.c_str()); |
Dees_Troy | 06b4fe9 | 2012-10-16 11:43:20 -0400 | [diff] [blame] | 417 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 418 | gui_msg("done=Done."); |
Dees_Troy | 06b4fe9 | 2012-10-16 11:43:20 -0400 | [diff] [blame] | 419 | } |
Dees_Troy | 4bc09ae | 2013-01-18 17:00:54 +0000 | [diff] [blame] | 420 | if (sideload) |
| 421 | ret_val = 1; // Forces booting to the home page after sideload |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 422 | return ret_val; |
| 423 | } |
| 424 | |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 425 | int OpenRecoveryScript::Insert_ORS_Command(string Command) { |
xiaolu | 38c3aa7 | 2015-05-26 22:55:18 +0800 | [diff] [blame] | 426 | ofstream ORSfile(SCRIPT_FILE_TMP, ios_base::app | ios_base::out); |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 427 | if (ORSfile.is_open()) { |
| 428 | //if (Command.substr(Command.size() - 1, 1) != "\n") |
| 429 | // Command += "\n"; |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 430 | LOGINFO("Inserting '%s'\n", Command.c_str()); |
xiaolu | 38c3aa7 | 2015-05-26 22:55:18 +0800 | [diff] [blame] | 431 | ORSfile << Command.c_str() << endl; |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 432 | ORSfile.close(); |
| 433 | return 1; |
| 434 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 435 | LOGERR("Unable to append '%s' to '%s'\n", Command.c_str(), SCRIPT_FILE_TMP); |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 436 | return 0; |
| 437 | } |
| 438 | |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 439 | int OpenRecoveryScript::Install_Command(string Zip) { |
| 440 | // Install zip |
| 441 | string ret_string; |
| 442 | int ret_val = 0, wipe_cache = 0; |
Ethan Yonker | d7adf29 | 2014-02-15 16:43:23 -0600 | [diff] [blame] | 443 | std::vector<PartitionList> Storage_List; |
| 444 | string Full_Path; |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 445 | |
Ethan Yonker | aee144c | 2015-02-11 16:49:19 -0600 | [diff] [blame] | 446 | if (Zip.substr(0, 1) == "@") { |
| 447 | // This is a special file that contains a map of blocks on the data partition |
| 448 | Full_Path = Zip.substr(1); |
| 449 | if (!PartitionManager.Mount_By_Path(Full_Path, true) || !TWFunc::Path_Exists(Full_Path)) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 450 | LOGINFO("Unable to install via mapped zip '%s'\n", Full_Path.c_str()); |
| 451 | gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(Zip)); |
Ethan Yonker | aee144c | 2015-02-11 16:49:19 -0600 | [diff] [blame] | 452 | return 1; |
| 453 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 454 | LOGINFO("Installing mapped zip file '%s'\n", Full_Path.c_str()); |
| 455 | gui_msg(Msg("installing_zip=Installing zip file '{1}'")(Zip)); |
Ethan Yonker | aee144c | 2015-02-11 16:49:19 -0600 | [diff] [blame] | 456 | } else if (!TWFunc::Path_Exists(Zip)) { |
| 457 | PartitionManager.Mount_All_Storage(); |
| 458 | PartitionManager.Get_Partition_List("storage", &Storage_List); |
| 459 | int listSize = Storage_List.size(); |
| 460 | for (int i = 0; i < listSize; i++) { |
| 461 | if (PartitionManager.Is_Mounted_By_Path(Storage_List.at(i).Mount_Point)) { |
| 462 | Full_Path = Storage_List.at(i).Mount_Point + "/" + Zip; |
| 463 | if (TWFunc::Path_Exists(Full_Path)) { |
| 464 | Zip = Full_Path; |
| 465 | break; |
| 466 | } |
| 467 | Full_Path = Zip; |
| 468 | LOGINFO("Trying to find zip '%s' on '%s'...\n", Full_Path.c_str(), Storage_List.at(i).Mount_Point.c_str()); |
| 469 | ret_string = Locate_Zip_File(Full_Path, Storage_List.at(i).Mount_Point); |
| 470 | if (!ret_string.empty()) { |
| 471 | Zip = ret_string; |
| 472 | break; |
| 473 | } |
Ethan Yonker | d7adf29 | 2014-02-15 16:43:23 -0600 | [diff] [blame] | 474 | } |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 475 | } |
Ethan Yonker | aee144c | 2015-02-11 16:49:19 -0600 | [diff] [blame] | 476 | if (!TWFunc::Path_Exists(Zip)) { |
| 477 | // zip file doesn't exist |
| 478 | gui_print("Unable to locate zip file '%s'.\n", Zip.c_str()); |
| 479 | ret_val = 1; |
| 480 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 481 | gui_msg(Msg("installing_zip=Installing zip file '{1}'")(Zip)); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 482 | } |
| 483 | |
Ethan Yonker | aee144c | 2015-02-11 16:49:19 -0600 | [diff] [blame] | 484 | ret_val = TWinstall_zip(Zip.c_str(), &wipe_cache); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 485 | if (ret_val != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 486 | gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(Zip)); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 487 | ret_val = 1; |
| 488 | } else if (wipe_cache) |
| 489 | PartitionManager.Wipe_By_Path("/cache"); |
| 490 | |
| 491 | return ret_val; |
| 492 | } |
| 493 | |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 494 | string OpenRecoveryScript::Locate_Zip_File(string Zip, string Storage_Root) { |
| 495 | string Path = TWFunc::Get_Path(Zip); |
| 496 | string File = TWFunc::Get_Filename(Zip); |
| 497 | string pathCpy = Path; |
| 498 | string wholePath; |
| 499 | size_t pos = Path.find("/", 1); |
| 500 | |
| 501 | while (pos != string::npos) |
| 502 | { |
| 503 | pathCpy = Path.substr(pos, Path.size() - pos); |
Matt Mower | e96c3c3 | 2014-09-19 12:14:37 -0500 | [diff] [blame] | 504 | wholePath = pathCpy + File; |
Ethan Yonker | d7adf29 | 2014-02-15 16:43:23 -0600 | [diff] [blame] | 505 | LOGINFO("Looking for zip at '%s'\n", wholePath.c_str()); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 506 | if (TWFunc::Path_Exists(wholePath)) |
| 507 | return wholePath; |
Matt Mower | e96c3c3 | 2014-09-19 12:14:37 -0500 | [diff] [blame] | 508 | wholePath = Storage_Root + wholePath; |
Ethan Yonker | d7adf29 | 2014-02-15 16:43:23 -0600 | [diff] [blame] | 509 | LOGINFO("Looking for zip at '%s'\n", wholePath.c_str()); |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 510 | if (TWFunc::Path_Exists(wholePath)) |
| 511 | return wholePath; |
| 512 | |
| 513 | pos = Path.find("/", pos + 1); |
| 514 | } |
| 515 | return ""; |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | int OpenRecoveryScript::Backup_Command(string Options) { |
| 519 | char value1[SCRIPT_COMMAND_SIZE]; |
| 520 | int line_len, i; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 521 | string Backup_List; |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 522 | |
| 523 | strcpy(value1, Options.c_str()); |
| 524 | |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 525 | DataManager::SetValue(TW_USE_COMPRESSION_VAR, 0); |
| 526 | DataManager::SetValue(TW_SKIP_MD5_GENERATE_VAR, 0); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 527 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 528 | gui_msg("select_backup_opt=Setting backup options:"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 529 | line_len = Options.size(); |
| 530 | for (i=0; i<line_len; i++) { |
| 531 | if (Options.substr(i, 1) == "S" || Options.substr(i, 1) == "s") { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 532 | Backup_List += "/system;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 533 | gui_msg("system=System"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 534 | } else if (Options.substr(i, 1) == "D" || Options.substr(i, 1) == "d") { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 535 | Backup_List += "/data;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 536 | gui_msg("data=Data"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 537 | } else if (Options.substr(i, 1) == "C" || Options.substr(i, 1) == "c") { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 538 | Backup_List += "/cache;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 539 | gui_msg("cache=Cache"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 540 | } else if (Options.substr(i, 1) == "R" || Options.substr(i, 1) == "r") { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 541 | Backup_List += "/recovery;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 542 | gui_msg("recovery=Recovery"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 543 | } else if (Options.substr(i, 1) == "1") { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 544 | gui_print("%s\n", "Special1 -- No Longer Supported..."); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 545 | } else if (Options.substr(i, 1) == "2") { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 546 | gui_print("%s\n", "Special2 -- No Longer Supported..."); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 547 | } else if (Options.substr(i, 1) == "3") { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 548 | gui_print("%s\n", "Special3 -- No Longer Supported..."); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 549 | } else if (Options.substr(i, 1) == "B" || Options.substr(i, 1) == "b") { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 550 | Backup_List += "/boot;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 551 | gui_msg("boot=Boot"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 552 | } else if (Options.substr(i, 1) == "A" || Options.substr(i, 1) == "a") { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 553 | Backup_List += "/and-sec;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 554 | gui_msg("android_secure=Android Secure"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 555 | } else if (Options.substr(i, 1) == "E" || Options.substr(i, 1) == "e") { |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 556 | Backup_List += "/sd-ext;"; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 557 | gui_msg("sdext=SD-EXT"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 558 | } else if (Options.substr(i, 1) == "O" || Options.substr(i, 1) == "o") { |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 559 | DataManager::SetValue(TW_USE_COMPRESSION_VAR, 1); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 560 | gui_msg("compression_on=Compression is on"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 561 | } else if (Options.substr(i, 1) == "M" || Options.substr(i, 1) == "m") { |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 562 | DataManager::SetValue(TW_SKIP_MD5_GENERATE_VAR, 1); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 563 | gui_msg("md5_off=MD5 Generation is off"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 564 | } |
| 565 | } |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 566 | DataManager::SetValue("tw_backup_list", Backup_List); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 567 | if (!PartitionManager.Run_Backup()) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 568 | gui_err("backup_fail=Backup Failed"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 569 | return 1; |
| 570 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 571 | gui_msg("backup_complete=Backup complete!"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 572 | return 0; |
| 573 | } |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 574 | |
that | 10ae24f | 2015-12-26 20:53:51 +0100 | [diff] [blame] | 575 | // this is called by main() |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 576 | void OpenRecoveryScript::Run_OpenRecoveryScript(void) { |
| 577 | DataManager::SetValue("tw_back", "main"); |
| 578 | DataManager::SetValue("tw_action", "openrecoveryscript"); |
that | 10ae24f | 2015-12-26 20:53:51 +0100 | [diff] [blame] | 579 | DataManager::SetValue("tw_action_param", ""); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 580 | DataManager::SetValue("tw_has_action2", "0"); |
| 581 | DataManager::SetValue("tw_action2", ""); |
| 582 | DataManager::SetValue("tw_action2_param", ""); |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 583 | #ifdef TW_OEM_BUILD |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 584 | DataManager::SetValue("tw_action_text1", gui_lookup("running_recovery_commands", "Running Recovery Commands")); |
| 585 | DataManager::SetValue("tw_complete_text1", gui_lookup("recovery_commands_complete", "Recovery Commands Complete")); |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 586 | #else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 587 | DataManager::SetValue("tw_action_text1", gui_lookup("running_ors", "Running OpenRecoveryScript")); |
| 588 | DataManager::SetValue("tw_complete_text1", gui_lookup("ors_complete", "OpenRecoveryScript Complete")); |
Ethan Yonker | 89583ef | 2015-08-26 09:01:59 -0500 | [diff] [blame] | 589 | #endif |
| 590 | DataManager::SetValue("tw_action_text2", ""); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 591 | DataManager::SetValue("tw_has_cancel", 0); |
| 592 | DataManager::SetValue("tw_show_reboot", 0); |
Ethan Yonker | fd0439e | 2015-01-14 11:08:13 -0600 | [diff] [blame] | 593 | if (gui_startPage("action_page", 0, 1) != 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 594 | LOGERR("Failed to load OpenRecoveryScript GUI page.\n"); |
Dees_Troy | 6ed34b7 | 2013-01-25 15:01:29 +0000 | [diff] [blame] | 595 | } |
Dees_Troy | 6bdcbb1 | 2013-01-26 14:07:43 +0000 | [diff] [blame] | 596 | } |
that | 10ae24f | 2015-12-26 20:53:51 +0100 | [diff] [blame] | 597 | |
| 598 | // this is called by the "openrecoveryscript" GUI action called via action page from Run_OpenRecoveryScript |
| 599 | int OpenRecoveryScript::Run_OpenRecoveryScript_Action() { |
| 600 | int op_status = 1; |
| 601 | // Check for the SCRIPT_FILE_TMP first as these are AOSP recovery commands |
| 602 | // that we converted to ORS commands during boot in recovery.cpp. |
| 603 | // Run those first. |
| 604 | int reboot = 0; |
| 605 | if (TWFunc::Path_Exists(SCRIPT_FILE_TMP)) { |
| 606 | gui_msg("running_recovery_commands=Running Recovery Commands"); |
| 607 | if (OpenRecoveryScript::run_script_file() == 0) { |
| 608 | reboot = 1; |
| 609 | op_status = 0; |
| 610 | } |
| 611 | } |
| 612 | // Check for the ORS file in /cache and attempt to run those commands. |
| 613 | if (OpenRecoveryScript::check_for_script_file()) { |
| 614 | gui_msg("running_ors=Running OpenRecoveryScript"); |
| 615 | if (OpenRecoveryScript::run_script_file() == 0) { |
| 616 | reboot = 1; |
| 617 | op_status = 0; |
| 618 | } |
| 619 | } |
| 620 | if (reboot) { |
| 621 | // Disable stock recovery reflashing |
| 622 | TWFunc::Disable_Stock_Recovery_Replace(); |
| 623 | usleep(2000000); // Sleep for 2 seconds before rebooting |
| 624 | TWFunc::tw_reboot(rb_system); |
| 625 | usleep(5000000); // Sleep for 5 seconds to allow reboot to occur |
| 626 | } else { |
| 627 | DataManager::SetValue("tw_page_done", 1); |
| 628 | } |
| 629 | return op_status; |
| 630 | } |
| 631 | |
| 632 | // this is called by the "twcmd" GUI action when a command is received via FIFO from the "twrp" command line tool |
| 633 | void OpenRecoveryScript::Run_CLI_Command(const char* command) { |
| 634 | if (strlen(command) > 11 && strncmp(command, "runscript", 9) == 0) { |
| 635 | const char* filename = command + 10; |
| 636 | if (OpenRecoveryScript::copy_script_file(filename) == 0) { |
| 637 | LOGINFO("Unable to copy script file\n"); |
| 638 | } else { |
| 639 | OpenRecoveryScript::run_script_file(); |
| 640 | } |
| 641 | } else if (strlen(command) > 5 && strncmp(command, "get", 3) == 0) { |
| 642 | const char* varname = command + 4; |
| 643 | string value; |
| 644 | DataManager::GetValue(varname, value); |
| 645 | gui_print("%s = %s\n", varname, value.c_str()); |
| 646 | } else if (strlen(command) > 9 && strncmp(command, "decrypt", 7) == 0) { |
| 647 | const char* pass = command + 8; |
| 648 | gui_msg("decrypt_cmd=Attempting to decrypt data partition via command line."); |
| 649 | if (PartitionManager.Decrypt_Device(pass) == 0) { |
| 650 | // set_page_done = 1; // done by singleaction_page anyway |
| 651 | } |
| 652 | } else if (OpenRecoveryScript::Insert_ORS_Command(command)) { |
| 653 | OpenRecoveryScript::run_script_file(); |
| 654 | } |
| 655 | |
| 656 | // let the GUI close the output fd and restart the command listener |
| 657 | call_after_cli_command(); |
| 658 | LOGINFO("Done reading ORS command from command line\n"); |
| 659 | } |