blob: 7d1db06ff7a9bf88711e2282f4fd94f0880b13a4 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04002 Copyright 2003 to 2017 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 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_Troy812660f2012-09-20 09:55:17 -040018
bigbiffce8f83c2015-12-12 18:30:21 -050019#define __STDC_FORMAT_MACROS 1
Dees_Troy812660f2012-09-20 09:55:17 -040020#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
23#include <sys/stat.h>
24#include <sys/vfs.h>
25#include <unistd.h>
26#include <vector>
27#include <dirent.h>
28#include <time.h>
29#include <errno.h>
bigbiffce8f83c2015-12-12 18:30:21 -050030#include <inttypes.h>
Dees_Troy01b6d0c2013-01-22 01:41:09 +000031#include <iostream>
32#include <fstream>
bigbiffce8f83c2015-12-12 18:30:21 -050033#include <sstream>
34#include <string>
35#include <iterator>
36#include <algorithm>
Ethan Yonkerd83587d2015-01-03 16:54:18 -060037#include <sys/types.h>
38#include <sys/wait.h>
bigbiffce8f83c2015-12-12 18:30:21 -050039#include <zlib.h>
Dees_Troy812660f2012-09-20 09:55:17 -040040
41#include "twrp-functions.hpp"
42#include "partitions.hpp"
Dees_Troy2673cec2013-04-02 20:22:16 +000043#include "twcommon.h"
Dees_Troy812660f2012-09-20 09:55:17 -040044#include "openrecoveryscript.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050045#include "progresstracking.hpp"
Dees_Troy812660f2012-09-20 09:55:17 -040046#include "variables.h"
bigbiffd58ba182020-03-23 10:02:29 -040047#include "install/adb_install.h"
Dees_Troy6ed34b72013-01-25 15:01:29 +000048#include "data.hpp"
Ethan Yonkerd83587d2015-01-03 16:54:18 -060049#include "fuse_sideload.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050050#include "gui/gui.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050051#include "gui/pages.hpp"
52#include "orscmd/orscmd.h"
Ethan Yonker8373cfe2017-09-08 06:50:54 -050053#include "twinstall.h"
bigbiff1f9e4842020-10-31 11:33:15 -040054#include "twinstall/adb_install.h"
Dees_Troy812660f2012-09-20 09:55:17 -040055extern "C" {
Dees_Troy01b6d0c2013-01-22 01:41:09 +000056 #include "gui/gui.h"
Ethan Yonkerd83587d2015-01-03 16:54:18 -060057 #include "cutils/properties.h"
Dees_Troy812660f2012-09-20 09:55:17 -040058}
59
that10ae24f2015-12-26 20:53:51 +010060OpenRecoveryScript::VoidFunction OpenRecoveryScript::call_after_cli_command;
61
Dees_Troy812660f2012-09-20 09:55:17 -040062#define SCRIPT_COMMAND_SIZE 512
63
64int OpenRecoveryScript::check_for_script_file(void) {
bigbiff25d25b92020-06-19 16:07:38 -040065 std::string logDir = TWFunc::get_log_dir();
66 std::string orsFile;
67 if (logDir == DATA_LOGS_DIR)
68 orsFile = "/data/cache";
69 else
70 orsFile = logDir;
71 orsFile += "/recovery/openrecoveryscript";
bigbiff bigbiff19874f12019-01-08 20:06:57 -050072 if (!PartitionManager.Mount_By_Path(orsFile, false)) {
bigbiff25d25b92020-06-19 16:07:38 -040073 LOGINFO("Unable to mount %s for OpenRecoveryScript support.\n", logDir.c_str());
74 gui_msg(Msg(msg::kError, "unable_to_mount=Unable to mount {1}")(logDir.c_str()));
Dees_Troy812660f2012-09-20 09:55:17 -040075 return 0;
76 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -050077 if (TWFunc::Path_Exists(orsFile)) {
78 LOGINFO("Script file found: '%s'\n", orsFile.c_str());
Dees_Troy812660f2012-09-20 09:55:17 -040079 // Copy script file to /tmp
bigbiff bigbiff19874f12019-01-08 20:06:57 -050080 TWFunc::copy_file(orsFile, SCRIPT_FILE_TMP, 0755);
81 // Delete the file from cache
82 unlink(orsFile.c_str());
Dees_Troy812660f2012-09-20 09:55:17 -040083 return 1;
84 }
85 return 0;
86}
87
Ethan Yonker03a42f62014-08-08 11:03:51 -050088int OpenRecoveryScript::copy_script_file(string filename) {
89 if (TWFunc::Path_Exists(filename)) {
90 LOGINFO("Script file found: '%s'\n", filename.c_str());
91 if (filename == SCRIPT_FILE_TMP)
92 return 1; // file is already in the right place
93 // Copy script file to /tmp
94 TWFunc::copy_file(filename, SCRIPT_FILE_TMP, 0755);
95 // Delete the old file
96 unlink(filename.c_str());
97 return 1;
98 }
99 return 0;
100}
101
Dees_Troy812660f2012-09-20 09:55:17 -0400102int OpenRecoveryScript::run_script_file(void) {
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000103 int ret_val = 0, cindex, line_len, i, remove_nl, install_cmd = 0, sideload = 0;
Dees_Troy812660f2012-09-20 09:55:17 -0400104 char script_line[SCRIPT_COMMAND_SIZE], command[SCRIPT_COMMAND_SIZE],
Matt Mowera8a89d12016-12-30 18:10:37 -0600105 value[SCRIPT_COMMAND_SIZE], mount[SCRIPT_COMMAND_SIZE],
106 value1[SCRIPT_COMMAND_SIZE], value2[SCRIPT_COMMAND_SIZE];
Dees_Troy812660f2012-09-20 09:55:17 -0400107 char *val_start, *tok;
108
Matt Mower06543e32017-01-06 15:25:26 -0600109 FILE *fp = fopen(SCRIPT_FILE_TMP, "r");
Dees_Troy812660f2012-09-20 09:55:17 -0400110 if (fp != NULL) {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000111 DataManager::SetValue(TW_SIMULATE_ACTIONS, 0);
Dees_Troy6bdcbb12013-01-26 14:07:43 +0000112 DataManager::SetValue("ui_progress", 0); // Reset the progress bar
Dees_Troy812660f2012-09-20 09:55:17 -0400113 while (fgets(script_line, SCRIPT_COMMAND_SIZE, fp) != NULL && ret_val == 0) {
114 cindex = 0;
115 line_len = strlen(script_line);
116 if (line_len < 2)
117 continue; // there's a blank line or line is too short to contain a command
Dees_Troy2673cec2013-04-02 20:22:16 +0000118 //gui_print("script line: '%s'\n", script_line);
Dees_Troy812660f2012-09-20 09:55:17 -0400119 for (i=0; i<line_len; i++) {
120 if ((int)script_line[i] == 32) {
121 cindex = i;
122 i = line_len;
123 }
124 }
125 memset(command, 0, sizeof(command));
126 memset(value, 0, sizeof(value));
127 if ((int)script_line[line_len - 1] == 10)
Matt Mowera8a89d12016-12-30 18:10:37 -0600128 remove_nl = 2;
129 else
130 remove_nl = 1;
Dees_Troy812660f2012-09-20 09:55:17 -0400131 if (cindex != 0) {
132 strncpy(command, script_line, cindex);
Matt Mowere96c3c32014-09-19 12:14:37 -0500133 LOGINFO("command is: '%s'\n", command);
Dees_Troy812660f2012-09-20 09:55:17 -0400134 val_start = script_line;
135 val_start += cindex + 1;
bigbiff bigbiffc03121d2013-09-09 19:14:35 -0400136 if ((int) *val_start == 32)
137 val_start++; //get rid of space
bigbiff bigbiff72e95542013-08-29 21:01:02 -0400138 if ((int) *val_start == 51)
139 val_start++; //get rid of = at the beginning
bigbiff bigbiffa6c5f4e2013-09-17 20:01:14 -0400140 if ((int) *val_start == 32)
141 val_start++; //get rid of space
Dees_Troy812660f2012-09-20 09:55:17 -0400142 strncpy(value, val_start, line_len - cindex - remove_nl);
Dees_Troy2673cec2013-04-02 20:22:16 +0000143 LOGINFO("value is: '%s'\n", value);
Dees_Troy812660f2012-09-20 09:55:17 -0400144 } else {
145 strncpy(command, script_line, line_len - remove_nl + 1);
Dees_Troy2673cec2013-04-02 20:22:16 +0000146 gui_print("command is: '%s' and there is no value\n", command);
Dees_Troy812660f2012-09-20 09:55:17 -0400147 }
148 if (strcmp(command, "install") == 0) {
Dees_Troy83a3b122012-10-01 14:16:43 -0400149 // Install Zip
Dees_Troy6ed34b72013-01-25 15:01:29 +0000150 DataManager::SetValue("tw_action_text2", "Installing Zip");
Dees_Troy83a3b122012-10-01 14:16:43 -0400151 ret_val = Install_Command(value);
Dees_Troy06b4fe92012-10-16 11:43:20 -0400152 install_cmd = -1;
Dees_Troy812660f2012-09-20 09:55:17 -0400153 } else if (strcmp(command, "wipe") == 0) {
154 // Wipe
155 if (strcmp(value, "cache") == 0 || strcmp(value, "/cache") == 0) {
Dees_Troy812660f2012-09-20 09:55:17 -0400156 PartitionManager.Wipe_By_Path("/cache");
dianlujitaob76a73a2020-04-30 20:33:20 +0800157 } else if (strcmp(value, "system") == 0 || strcmp(value, "/system") == 0 || strcmp(value, PartitionManager.Get_Android_Root_Path().c_str()) == 0) {
158 PartitionManager.Wipe_By_Path("/system");
Adrian DCb206c132021-01-05 23:54:18 +0100159 PartitionManager.Update_System_Details();
Dees_Troy812660f2012-09-20 09:55:17 -0400160 } else if (strcmp(value, "dalvik") == 0 || strcmp(value, "dalvick") == 0 || strcmp(value, "dalvikcache") == 0 || strcmp(value, "dalvickcache") == 0) {
Dees_Troy812660f2012-09-20 09:55:17 -0400161 PartitionManager.Wipe_Dalvik_Cache();
Dees_Troy812660f2012-09-20 09:55:17 -0400162 } else if (strcmp(value, "data") == 0 || strcmp(value, "/data") == 0 || strcmp(value, "factory") == 0 || strcmp(value, "factoryreset") == 0) {
Dees_Troy812660f2012-09-20 09:55:17 -0400163 PartitionManager.Factory_Reset();
Dees_Troy812660f2012-09-20 09:55:17 -0400164 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000165 LOGERR("Error with wipe command value: '%s'\n", value);
Dees_Troy812660f2012-09-20 09:55:17 -0400166 ret_val = 1;
167 }
168 } else if (strcmp(command, "backup") == 0) {
169 // Backup
Ethan Yonker74db1572015-10-28 12:44:49 -0500170 DataManager::SetValue("tw_action_text2", gui_parse_text("{@backing}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400171 tok = strtok(value, " ");
172 strcpy(value1, tok);
173 tok = strtok(NULL, " ");
174 if (tok != NULL) {
175 memset(value2, 0, sizeof(value2));
176 strcpy(value2, tok);
177 line_len = strlen(tok);
178 if ((int)value2[line_len - 1] == 10 || (int)value2[line_len - 1] == 13) {
179 if ((int)value2[line_len - 1] == 10 || (int)value2[line_len - 1] == 13)
180 remove_nl = 2;
181 else
182 remove_nl = 1;
183 } else
184 remove_nl = 0;
185 strncpy(value2, tok, line_len - remove_nl);
Dees_Troy6ed34b72013-01-25 15:01:29 +0000186 DataManager::SetValue(TW_BACKUP_NAME, value2);
Matt Mower3c366972015-12-25 19:28:31 -0600187 gui_msg(Msg("backup_folder_set=Backup folder set to '{1}'")(value2));
Ethan Yonker53796e72019-01-11 22:49:52 -0600188 if (PartitionManager.Check_Backup_Name(value2, true, true) != 0) {
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400189 ret_val = 1;
190 continue;
191 }
Dees_Troy812660f2012-09-20 09:55:17 -0400192 } else {
193 char empt[50];
194 strcpy(empt, "(Current Date)");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000195 DataManager::SetValue(TW_BACKUP_NAME, empt);
Dees_Troy812660f2012-09-20 09:55:17 -0400196 }
Dees_Troy83a3b122012-10-01 14:16:43 -0400197 ret_val = Backup_Command(value1);
Dees_Troy812660f2012-09-20 09:55:17 -0400198 } else if (strcmp(command, "restore") == 0) {
199 // Restore
Ethan Yonker74db1572015-10-28 12:44:49 -0500200 DataManager::SetValue("tw_action_text2", gui_parse_text("{@restore}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400201 PartitionManager.Mount_All_Storage();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400202 DataManager::SetValue(TW_SKIP_DIGEST_CHECK_VAR, 0);
Dees_Troydc8bc1b2013-01-17 01:39:28 +0000203 char folder_path[512], partitions[512];
Dees_Troy812660f2012-09-20 09:55:17 -0400204
205 string val = value, restore_folder, restore_partitions;
206 size_t pos = val.find_last_of(" ");
207 if (pos == string::npos) {
Dees_Troydc8bc1b2013-01-17 01:39:28 +0000208 restore_folder = value;
209 partitions[0] = '\0';
210 } else {
211 restore_folder = val.substr(0, pos);
212 restore_partitions = val.substr(pos + 1, val.size() - pos - 1);
213 strcpy(partitions, restore_partitions.c_str());
Dees_Troy812660f2012-09-20 09:55:17 -0400214 }
Dees_Troy812660f2012-09-20 09:55:17 -0400215 strcpy(folder_path, restore_folder.c_str());
Dees_Troy2673cec2013-04-02 20:22:16 +0000216 LOGINFO("Restore folder is: '%s' and partitions: '%s'\n", folder_path, partitions);
Ethan Yonker74db1572015-10-28 12:44:49 -0500217 gui_msg(Msg("restoring=Restoring {1}...")(folder_path));
Dees_Troy812660f2012-09-20 09:55:17 -0400218
219 if (folder_path[0] != '/') {
220 char backup_folder[512];
Dees_Troy6ed34b72013-01-25 15:01:29 +0000221 string folder_var;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600222 std::vector<PartitionList> Storage_List;
223
224 PartitionManager.Get_Partition_List("storage", &Storage_List);
225 int listSize = Storage_List.size();
226 for (int i = 0; i < listSize; i++) {
227 if (PartitionManager.Is_Mounted_By_Path(Storage_List.at(i).Mount_Point)) {
228 DataManager::SetValue("tw_storage_path", Storage_List.at(i).Mount_Point);
Dees_Troy6ed34b72013-01-25 15:01:29 +0000229 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, folder_var);
230 sprintf(backup_folder, "%s/%s", folder_var.c_str(), folder_path);
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600231 if (TWFunc::Path_Exists(backup_folder)) {
232 strcpy(folder_path, backup_folder);
233 break;
234 }
Dees_Troy812660f2012-09-20 09:55:17 -0400235 }
236 }
Dees_Troy812660f2012-09-20 09:55:17 -0400237 } else {
238 if (folder_path[strlen(folder_path) - 1] == '/')
239 strcat(folder_path, ".");
240 else
241 strcat(folder_path, "/.");
242 }
243 if (!TWFunc::Path_Exists(folder_path)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500244 gui_msg(Msg(msg::kError, "locate_backup_err=Unable to locate backup '{1}'")(folder_path));
Dees_Troy812660f2012-09-20 09:55:17 -0400245 ret_val = 1;
246 continue;
247 }
Dees_Troy6ed34b72013-01-25 15:01:29 +0000248 DataManager::SetValue("tw_restore", folder_path);
Dees_Troy812660f2012-09-20 09:55:17 -0400249
250 PartitionManager.Set_Restore_Files(folder_path);
Dees_Troya13d74f2013-03-24 08:54:55 -0500251 string Partition_List;
Dees_Troy83bd4832013-05-04 12:39:56 +0000252 int is_encrypted = 0;
253 DataManager::GetValue("tw_restore_encrypted", is_encrypted);
Dees_Troya13d74f2013-03-24 08:54:55 -0500254 DataManager::GetValue("tw_restore_list", Partition_List);
Dees_Troy812660f2012-09-20 09:55:17 -0400255 if (strlen(partitions) != 0) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500256 string Restore_List;
Dees_Troy812660f2012-09-20 09:55:17 -0400257
258 memset(value2, 0, sizeof(value2));
259 strcpy(value2, partitions);
Ethan Yonker74db1572015-10-28 12:44:49 -0500260 gui_msg(Msg("set_restore_opt=Setting restore options: '{1}':")(value2));
Dees_Troy812660f2012-09-20 09:55:17 -0400261 line_len = strlen(value2);
262 for (i=0; i<line_len; i++) {
bigbiffd58ba182020-03-23 10:02:29 -0400263 if ((value2[i] == 'S' || value2[i] == 's') && Partition_List.find("/system;") != string::npos) {
264 Restore_List += "/system;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500265 gui_msg("system=System");
Dees_Troya13d74f2013-03-24 08:54:55 -0500266 } else if ((value2[i] == 'D' || value2[i] == 'd') && Partition_List.find("/data;") != string::npos) {
267 Restore_List += "/data;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500268 gui_msg("data=Data");
Dees_Troya13d74f2013-03-24 08:54:55 -0500269 } else if ((value2[i] == 'C' || value2[i] == 'c') && Partition_List.find("/cache;") != string::npos) {
270 Restore_List += "/cache;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500271 gui_msg("cache=Cache");
Dees_Troya13d74f2013-03-24 08:54:55 -0500272 } else if ((value2[i] == 'R' || value2[i] == 'r') && Partition_List.find("/recovery;") != string::npos) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500273 Restore_List += "/recovery;";
274 gui_msg("recovery=Recovery");
Dees_Troya13d74f2013-03-24 08:54:55 -0500275 } else if ((value2[i] == 'B' || value2[i] == 'b') && Partition_List.find("/boot;") != string::npos) {
276 Restore_List += "/boot;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500277 gui_msg("boot=Boot");
Dees_Troya13d74f2013-03-24 08:54:55 -0500278 } else if ((value2[i] == 'A' || value2[i] == 'a') && Partition_List.find("/and-sec;") != string::npos) {
279 Restore_List += "/and-sec;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500280 gui_msg("android_secure=Android Secure");
Dees_Troya13d74f2013-03-24 08:54:55 -0500281 } else if ((value2[i] == 'E' || value2[i] == 'e') && Partition_List.find("/sd-ext;") != string::npos) {
282 Restore_List += "/sd-ext;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500283 gui_msg("sdext=SD-EXT");
Dees_Troy812660f2012-09-20 09:55:17 -0400284 } else if (value2[i] == 'M' || value2[i] == 'm') {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400285 DataManager::SetValue(TW_SKIP_DIGEST_CHECK_VAR, 1);
286 gui_msg("digest_check_skip=Digest check skip is on");
Dees_Troy812660f2012-09-20 09:55:17 -0400287 }
288 }
289
Dees_Troya13d74f2013-03-24 08:54:55 -0500290 DataManager::SetValue("tw_restore_selected", Restore_List);
291 } else {
292 DataManager::SetValue("tw_restore_selected", Partition_List);
Dees_Troy812660f2012-09-20 09:55:17 -0400293 }
Dees_Troy83bd4832013-05-04 12:39:56 +0000294 if (is_encrypted) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500295 gui_err("ors_encrypt_restore_err=Unable to use OpenRecoveryScript to restore an encrypted backup.");
Dees_Troy83bd4832013-05-04 12:39:56 +0000296 ret_val = 1;
297 } else if (!PartitionManager.Run_Restore(folder_path))
Dees_Troya13d74f2013-03-24 08:54:55 -0500298 ret_val = 1;
299 else
Ethan Yonker74db1572015-10-28 12:44:49 -0500300 gui_msg("done=Done.");
bigbiffce8f83c2015-12-12 18:30:21 -0500301 } else if (strcmp(command, "remountrw") == 0) {
302 ret_val = remountrw();
Dees_Troy812660f2012-09-20 09:55:17 -0400303 } else if (strcmp(command, "mount") == 0) {
304 // Mount
Ethan Yonker74db1572015-10-28 12:44:49 -0500305 DataManager::SetValue("tw_action_text2", gui_parse_text("{@mounting}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400306 if (value[0] != '/') {
307 strcpy(mount, "/");
308 strcat(mount, value);
309 } else
310 strcpy(mount, value);
Chaosmaster3b3b6342020-01-25 22:51:54 +0100311 if (!strcmp(mount, "/system"))
312 strcpy(mount, PartitionManager.Get_Android_Root_Path().c_str());
Dees_Troy812660f2012-09-20 09:55:17 -0400313 if (PartitionManager.Mount_By_Path(mount, true))
Ethan Yonker74db1572015-10-28 12:44:49 -0500314 gui_msg(Msg("mounted=Mounted '{1}'")(mount));
Dees_Troy812660f2012-09-20 09:55:17 -0400315 } else if (strcmp(command, "unmount") == 0 || strcmp(command, "umount") == 0) {
316 // Unmount
Ethan Yonker74db1572015-10-28 12:44:49 -0500317 DataManager::SetValue("tw_action_text2", gui_parse_text("{@unmounting}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400318 if (value[0] != '/') {
319 strcpy(mount, "/");
320 strcat(mount, value);
321 } else
322 strcpy(mount, value);
Chaosmaster3b3b6342020-01-25 22:51:54 +0100323 if (!strcmp(mount, "/system"))
324 strcpy(mount, PartitionManager.Get_Android_Root_Path().c_str());
Dees_Troy812660f2012-09-20 09:55:17 -0400325 if (PartitionManager.UnMount_By_Path(mount, true))
Ethan Yonker74db1572015-10-28 12:44:49 -0500326 gui_msg(Msg("unmounted=Unounted '{1}'")(mount));
Dees_Troy812660f2012-09-20 09:55:17 -0400327 } else if (strcmp(command, "set") == 0) {
328 // Set value
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500329 size_t len = strlen(value);
Dees_Troy812660f2012-09-20 09:55:17 -0400330 tok = strtok(value, " ");
331 strcpy(value1, tok);
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500332 if (len > strlen(value1) + 1) {
333 char *val2 = value + strlen(value1) + 1;
Ethan Yonker74db1572015-10-28 12:44:49 -0500334 gui_msg(Msg("setting=Setting '{1}' to '{2}'")(value1)(val2));
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500335 DataManager::SetValue(value1, val2);
336 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500337 gui_msg(Msg("setting_empty=Setting '{1}' to empty")(value1));
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500338 DataManager::SetValue(value1, "");
339 }
Dees_Troy812660f2012-09-20 09:55:17 -0400340 } else if (strcmp(command, "mkdir") == 0) {
341 // Make directory (recursive)
Ethan Yonker74db1572015-10-28 12:44:49 -0500342 DataManager::SetValue("tw_action_text2", gui_parse_text("{@making_dir1}"));
343 gui_msg(Msg("making_dir2=Making directory: '{1}'")(value));
thatf1408b32016-01-03 11:09:15 +0100344 if (!TWFunc::Recursive_Mkdir(value)) {
345 // error message already displayed by Recursive_Mkdir
Dees_Troy812660f2012-09-20 09:55:17 -0400346 ret_val = 1;
347 }
348 } else if (strcmp(command, "reboot") == 0) {
Ethan Yonker03a42f62014-08-08 11:03:51 -0500349 if (strlen(value) && strcmp(value, "recovery") == 0)
350 TWFunc::tw_reboot(rb_recovery);
351 else if (strlen(value) && strcmp(value, "poweroff") == 0)
352 TWFunc::tw_reboot(rb_poweroff);
353 else if (strlen(value) && strcmp(value, "bootloader") == 0)
354 TWFunc::tw_reboot(rb_bootloader);
355 else if (strlen(value) && strcmp(value, "download") == 0)
356 TWFunc::tw_reboot(rb_download);
mauronofrioe9a49ef2018-10-03 13:38:16 +0200357 else if (strlen(value) && strcmp(value, "edl") == 0)
358 TWFunc::tw_reboot(rb_edl);
Ethan Yonker03a42f62014-08-08 11:03:51 -0500359 else
360 TWFunc::tw_reboot(rb_system);
Dees_Troy812660f2012-09-20 09:55:17 -0400361 } else if (strcmp(command, "cmd") == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500362 DataManager::SetValue("tw_action_text2", gui_parse_text("{@running_command}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400363 if (cindex != 0) {
Vojtech Bocek05534202013-09-11 08:11:56 +0200364 TWFunc::Exec_Cmd(value);
Dees_Troy812660f2012-09-20 09:55:17 -0400365 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000366 LOGERR("No value given for cmd\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400367 }
368 } else if (strcmp(command, "print") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000369 gui_print("%s\n", value);
Dees_Troy4fc00242013-01-17 19:22:12 +0000370 } else if (strcmp(command, "sideload") == 0) {
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000371 // ADB Sideload
Ethan Yonker74db1572015-10-28 12:44:49 -0500372 DataManager::SetValue("tw_action_text2", gui_parse_text("{@sideload}"));
Dees_Troy6ed34b72013-01-25 15:01:29 +0000373 install_cmd = -1;
374
375 int wipe_cache = 0;
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600376 string result;
Dees_Troy6ed34b72013-01-25 15:01:29 +0000377
Ethan Yonker74db1572015-10-28 12:44:49 -0500378 gui_msg("start_sideload=Starting ADB sideload feature...");
bigbiffd58ba182020-03-23 10:02:29 -0400379
bigbiffd58ba182020-03-23 10:02:29 -0400380 Device::BuiltinAction reboot_action = Device::REBOOT_BOOTLOADER;
bigbiff673c7ae2020-12-02 19:44:56 -0500381 ret_val = twrp_sideload("/", &reboot_action);
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600382 if (ret_val != 0) {
383 if (ret_val == -2)
Ethan Yonker74db1572015-10-28 12:44:49 -0500384 gui_err("need_new_adb=You need adb 1.0.32 or newer to sideload to this device.");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000385 ret_val = 1; // failure
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600386 } else if (TWinstall_zip(FUSE_SIDELOAD_HOST_PATHNAME, &wipe_cache) == 0) {
387 if (wipe_cache)
388 PartitionManager.Wipe_By_Path("/cache");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000389 } else {
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600390 ret_val = 1; // failure
Dees_Troy4fc00242013-01-17 19:22:12 +0000391 }
bigbiff1f9e4842020-10-31 11:33:15 -0400392 PartitionManager.Unlock_Block_Partitions();
Adrian DCb206c132021-01-05 23:54:18 +0100393 PartitionManager.Update_System_Details();
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600394 sideload = 1; // Causes device to go to the home screen afterwards
bigbiff1f9e4842020-10-31 11:33:15 -0400395 pid_t sideload_child_pid = GetMiniAdbdPid();
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600396 if (sideload_child_pid != 0) {
397 LOGINFO("Signaling child sideload process to exit.\n");
398 struct stat st;
399 // Calling stat() on this magic filename signals the minadbd
400 // subprocess to shut down.
401 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st);
402 int status;
403 LOGINFO("Waiting for child sideload process to exit.\n");
404 waitpid(sideload_child_pid, &status, 0);
405 }
Dees Troy28a85d22015-04-28 02:03:16 +0000406 property_set("ctl.start", "adbd");
Ethan Yonker74db1572015-10-28 12:44:49 -0500407 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -0600408 } else if (strcmp(command, "fixperms") == 0 || strcmp(command, "fixpermissions") == 0 || strcmp(command, "fixcontexts") == 0) {
409 ret_val = PartitionManager.Fix_Contexts();
Ethan Yonkeraae6e8c2014-02-11 21:37:36 -0600410 if (ret_val != 0)
411 ret_val = 1; // failure
Ethan Yonker03a42f62014-08-08 11:03:51 -0500412 } else if (strcmp(command, "decrypt") == 0) {
Noah Jacobson81d638d2019-04-28 00:10:07 -0400413 // twrp cmd cannot decrypt a password with space, should decrypt on gui
Ethan Yonker03a42f62014-08-08 11:03:51 -0500414 if (*value) {
Noah Jacobson81d638d2019-04-28 00:10:07 -0400415 string tmp = value;
416 std::vector<string> args = TWFunc::Split_String(tmp, " ");
417
418 string pass = args[0];
419 string userid = "0";
420 if (args.size() > 1)
421 userid = args[1];
422
423 ret_val = PartitionManager.Decrypt_Device(pass, atoi(userid.c_str()));
Ethan Yonker03a42f62014-08-08 11:03:51 -0500424 if (ret_val != 0)
Noah Jacobson81d638d2019-04-28 00:10:07 -0400425 ret_val = 1; // failure
Ethan Yonker03a42f62014-08-08 11:03:51 -0500426 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500427 gui_err("no_pwd=No password provided.");
Noah Jacobson81d638d2019-04-28 00:10:07 -0400428 ret_val = 1; // failure
Ethan Yonker03a42f62014-08-08 11:03:51 -0500429 }
bigbiffee7b7ff2020-03-23 15:08:27 -0400430 } else if (strcmp(command, "listmounts") == 0) {
431 TWFunc::List_Mounts();
Dees_Troy812660f2012-09-20 09:55:17 -0400432 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000433 LOGERR("Unrecognized script command: '%s'\n", command);
Dees_Troy812660f2012-09-20 09:55:17 -0400434 ret_val = 1;
435 }
436 }
437 fclose(fp);
that10ae24f2015-12-26 20:53:51 +0100438 unlink(SCRIPT_FILE_TMP);
Ethan Yonker74db1572015-10-28 12:44:49 -0500439 gui_msg("done_ors=Done processing script file");
Dees_Troy812660f2012-09-20 09:55:17 -0400440 } else {
Noah Jacobson81d638d2019-04-28 00:10:07 -0400441 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(SCRIPT_FILE_TMP)(
442 strerror(errno)));
Dees_Troy812660f2012-09-20 09:55:17 -0400443 return 1;
444 }
bigbiffce8f83c2015-12-12 18:30:21 -0500445
Noah Jacobson81d638d2019-04-28 00:10:07 -0400446 if (install_cmd && DataManager::GetIntValue(TW_HAS_INJECTTWRP) == 1 &&
447 DataManager::GetIntValue(TW_INJECT_AFTER_ZIP) == 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500448 gui_msg("injecttwrp=Injecting TWRP into boot image...");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400449 TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot");
450 if (Boot == NULL || Boot->Current_File_System != "emmc")
Noah Jacobson81d638d2019-04-28 00:10:07 -0400451 TWFunc::Exec_Cmd(
452 "injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400453 else {
Noah Jacobson81d638d2019-04-28 00:10:07 -0400454 string injectcmd =
455 "injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash bd=" +
456 Boot->Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +0200457 TWFunc::Exec_Cmd(injectcmd.c_str());
Dees_Troy06b4fe92012-10-16 11:43:20 -0400458 }
Ethan Yonker74db1572015-10-28 12:44:49 -0500459 gui_msg("done=Done.");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400460 }
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000461 if (sideload)
Noah Jacobson81d638d2019-04-28 00:10:07 -0400462 ret_val = 1; // Forces booting to the home page after sideload
Dees_Troy812660f2012-09-20 09:55:17 -0400463 return ret_val;
464}
465
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000466int OpenRecoveryScript::Insert_ORS_Command(string Command) {
xiaolu38c3aa72015-05-26 22:55:18 +0800467 ofstream ORSfile(SCRIPT_FILE_TMP, ios_base::app | ios_base::out);
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000468 if (ORSfile.is_open()) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000469 LOGINFO("Inserting '%s'\n", Command.c_str());
xiaolu38c3aa72015-05-26 22:55:18 +0800470 ORSfile << Command.c_str() << endl;
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000471 ORSfile.close();
472 return 1;
473 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000474 LOGERR("Unable to append '%s' to '%s'\n", Command.c_str(), SCRIPT_FILE_TMP);
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000475 return 0;
476}
477
Dees_Troy83a3b122012-10-01 14:16:43 -0400478int OpenRecoveryScript::Install_Command(string Zip) {
479 // Install zip
480 string ret_string;
481 int ret_val = 0, wipe_cache = 0;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600482 std::vector<PartitionList> Storage_List;
483 string Full_Path;
Dees_Troy83a3b122012-10-01 14:16:43 -0400484
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600485 if (Zip.substr(0, 1) == "@") {
486 // This is a special file that contains a map of blocks on the data partition
487 Full_Path = Zip.substr(1);
488 if (!PartitionManager.Mount_By_Path(Full_Path, true) || !TWFunc::Path_Exists(Full_Path)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500489 LOGINFO("Unable to install via mapped zip '%s'\n", Full_Path.c_str());
490 gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(Zip));
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600491 return 1;
492 }
Ethan Yonker74db1572015-10-28 12:44:49 -0500493 LOGINFO("Installing mapped zip file '%s'\n", Full_Path.c_str());
494 gui_msg(Msg("installing_zip=Installing zip file '{1}'")(Zip));
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600495 } else if (!TWFunc::Path_Exists(Zip)) {
496 PartitionManager.Mount_All_Storage();
497 PartitionManager.Get_Partition_List("storage", &Storage_List);
498 int listSize = Storage_List.size();
499 for (int i = 0; i < listSize; i++) {
500 if (PartitionManager.Is_Mounted_By_Path(Storage_List.at(i).Mount_Point)) {
501 Full_Path = Storage_List.at(i).Mount_Point + "/" + Zip;
502 if (TWFunc::Path_Exists(Full_Path)) {
503 Zip = Full_Path;
504 break;
505 }
506 Full_Path = Zip;
507 LOGINFO("Trying to find zip '%s' on '%s'...\n", Full_Path.c_str(), Storage_List.at(i).Mount_Point.c_str());
508 ret_string = Locate_Zip_File(Full_Path, Storage_List.at(i).Mount_Point);
509 if (!ret_string.empty()) {
510 Zip = ret_string;
511 break;
512 }
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600513 }
Dees_Troy83a3b122012-10-01 14:16:43 -0400514 }
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600515 if (!TWFunc::Path_Exists(Zip)) {
516 // zip file doesn't exist
517 gui_print("Unable to locate zip file '%s'.\n", Zip.c_str());
518 ret_val = 1;
519 } else
Ethan Yonker74db1572015-10-28 12:44:49 -0500520 gui_msg(Msg("installing_zip=Installing zip file '{1}'")(Zip));
Dees_Troy83a3b122012-10-01 14:16:43 -0400521 }
522
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600523 ret_val = TWinstall_zip(Zip.c_str(), &wipe_cache);
Dees_Troy83a3b122012-10-01 14:16:43 -0400524 if (ret_val != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500525 gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(Zip));
Dees_Troy83a3b122012-10-01 14:16:43 -0400526 ret_val = 1;
527 } else if (wipe_cache)
528 PartitionManager.Wipe_By_Path("/cache");
529
530 return ret_val;
531}
532
Dees_Troy812660f2012-09-20 09:55:17 -0400533string OpenRecoveryScript::Locate_Zip_File(string Zip, string Storage_Root) {
534 string Path = TWFunc::Get_Path(Zip);
535 string File = TWFunc::Get_Filename(Zip);
536 string pathCpy = Path;
537 string wholePath;
538 size_t pos = Path.find("/", 1);
539
540 while (pos != string::npos)
541 {
542 pathCpy = Path.substr(pos, Path.size() - pos);
Matt Mowere96c3c32014-09-19 12:14:37 -0500543 wholePath = pathCpy + File;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600544 LOGINFO("Looking for zip at '%s'\n", wholePath.c_str());
Dees_Troy812660f2012-09-20 09:55:17 -0400545 if (TWFunc::Path_Exists(wholePath))
546 return wholePath;
Matt Mowere96c3c32014-09-19 12:14:37 -0500547 wholePath = Storage_Root + wholePath;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600548 LOGINFO("Looking for zip at '%s'\n", wholePath.c_str());
Dees_Troy812660f2012-09-20 09:55:17 -0400549 if (TWFunc::Path_Exists(wholePath))
550 return wholePath;
551
552 pos = Path.find("/", pos + 1);
553 }
554 return "";
Dees_Troy83a3b122012-10-01 14:16:43 -0400555}
556
557int OpenRecoveryScript::Backup_Command(string Options) {
558 char value1[SCRIPT_COMMAND_SIZE];
559 int line_len, i;
Dees_Troya13d74f2013-03-24 08:54:55 -0500560 string Backup_List;
Dees_Troy83a3b122012-10-01 14:16:43 -0400561
562 strcpy(value1, Options.c_str());
563
Dees_Troy6ed34b72013-01-25 15:01:29 +0000564 DataManager::SetValue(TW_USE_COMPRESSION_VAR, 0);
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400565 DataManager::SetValue(TW_SKIP_DIGEST_GENERATE_VAR, 0);
Dees_Troy83a3b122012-10-01 14:16:43 -0400566
Ethan Yonker74db1572015-10-28 12:44:49 -0500567 gui_msg("select_backup_opt=Setting backup options:");
Dees_Troy83a3b122012-10-01 14:16:43 -0400568 line_len = Options.size();
569 for (i=0; i<line_len; i++) {
570 if (Options.substr(i, 1) == "S" || Options.substr(i, 1) == "s") {
bigbiffd58ba182020-03-23 10:02:29 -0400571 Backup_List += "/system;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500572 gui_msg("system=System");
Dees_Troy83a3b122012-10-01 14:16:43 -0400573 } else if (Options.substr(i, 1) == "D" || Options.substr(i, 1) == "d") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500574 Backup_List += "/data;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500575 gui_msg("data=Data");
Dees_Troy83a3b122012-10-01 14:16:43 -0400576 } else if (Options.substr(i, 1) == "C" || Options.substr(i, 1) == "c") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500577 Backup_List += "/cache;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500578 gui_msg("cache=Cache");
Dees_Troy83a3b122012-10-01 14:16:43 -0400579 } else if (Options.substr(i, 1) == "R" || Options.substr(i, 1) == "r") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500580 Backup_List += "/recovery;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500581 gui_msg("recovery=Recovery");
Dees_Troy83a3b122012-10-01 14:16:43 -0400582 } else if (Options.substr(i, 1) == "1") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000583 gui_print("%s\n", "Special1 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400584 } else if (Options.substr(i, 1) == "2") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000585 gui_print("%s\n", "Special2 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400586 } else if (Options.substr(i, 1) == "3") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000587 gui_print("%s\n", "Special3 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400588 } else if (Options.substr(i, 1) == "B" || Options.substr(i, 1) == "b") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500589 Backup_List += "/boot;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500590 gui_msg("boot=Boot");
Dees_Troy83a3b122012-10-01 14:16:43 -0400591 } else if (Options.substr(i, 1) == "A" || Options.substr(i, 1) == "a") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500592 Backup_List += "/and-sec;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500593 gui_msg("android_secure=Android Secure");
Dees_Troy83a3b122012-10-01 14:16:43 -0400594 } else if (Options.substr(i, 1) == "E" || Options.substr(i, 1) == "e") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500595 Backup_List += "/sd-ext;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500596 gui_msg("sdext=SD-EXT");
Dees_Troy83a3b122012-10-01 14:16:43 -0400597 } else if (Options.substr(i, 1) == "O" || Options.substr(i, 1) == "o") {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000598 DataManager::SetValue(TW_USE_COMPRESSION_VAR, 1);
Ethan Yonker74db1572015-10-28 12:44:49 -0500599 gui_msg("compression_on=Compression is on");
Dees_Troy83a3b122012-10-01 14:16:43 -0400600 } else if (Options.substr(i, 1) == "M" || Options.substr(i, 1) == "m") {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400601 DataManager::SetValue(TW_SKIP_DIGEST_GENERATE_VAR, 1);
602 gui_msg("digest_off=Digest Generation is off");
Dees_Troy83a3b122012-10-01 14:16:43 -0400603 }
604 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500605 DataManager::SetValue("tw_backup_list", Backup_List);
bigbiffce8f83c2015-12-12 18:30:21 -0500606 if (!PartitionManager.Run_Backup(false)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500607 gui_err("backup_fail=Backup Failed");
Dees_Troy83a3b122012-10-01 14:16:43 -0400608 return 1;
609 }
Matt Mower3c366972015-12-25 19:28:31 -0600610 gui_msg("backup_complete=Backup Complete");
Dees_Troy83a3b122012-10-01 14:16:43 -0400611 return 0;
612}
Dees_Troy6ed34b72013-01-25 15:01:29 +0000613
that10ae24f2015-12-26 20:53:51 +0100614// this is called by main()
Dees_Troy6ed34b72013-01-25 15:01:29 +0000615void OpenRecoveryScript::Run_OpenRecoveryScript(void) {
616 DataManager::SetValue("tw_back", "main");
617 DataManager::SetValue("tw_action", "openrecoveryscript");
that10ae24f2015-12-26 20:53:51 +0100618 DataManager::SetValue("tw_action_param", "");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000619 DataManager::SetValue("tw_has_action2", "0");
620 DataManager::SetValue("tw_action2", "");
621 DataManager::SetValue("tw_action2_param", "");
Ethan Yonker89583ef2015-08-26 09:01:59 -0500622#ifdef TW_OEM_BUILD
Ethan Yonker74db1572015-10-28 12:44:49 -0500623 DataManager::SetValue("tw_action_text1", gui_lookup("running_recovery_commands", "Running Recovery Commands"));
624 DataManager::SetValue("tw_complete_text1", gui_lookup("recovery_commands_complete", "Recovery Commands Complete"));
Ethan Yonker89583ef2015-08-26 09:01:59 -0500625#else
Ethan Yonker74db1572015-10-28 12:44:49 -0500626 DataManager::SetValue("tw_action_text1", gui_lookup("running_ors", "Running OpenRecoveryScript"));
627 DataManager::SetValue("tw_complete_text1", gui_lookup("ors_complete", "OpenRecoveryScript Complete"));
Ethan Yonker89583ef2015-08-26 09:01:59 -0500628#endif
629 DataManager::SetValue("tw_action_text2", "");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000630 DataManager::SetValue("tw_has_cancel", 0);
631 DataManager::SetValue("tw_show_reboot", 0);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600632 if (gui_startPage("action_page", 0, 1) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000633 LOGERR("Failed to load OpenRecoveryScript GUI page.\n");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000634 }
Dees_Troy6bdcbb12013-01-26 14:07:43 +0000635}
that10ae24f2015-12-26 20:53:51 +0100636
637// this is called by the "openrecoveryscript" GUI action called via action page from Run_OpenRecoveryScript
638int OpenRecoveryScript::Run_OpenRecoveryScript_Action() {
639 int op_status = 1;
640 // Check for the SCRIPT_FILE_TMP first as these are AOSP recovery commands
641 // that we converted to ORS commands during boot in recovery.cpp.
642 // Run those first.
643 int reboot = 0;
644 if (TWFunc::Path_Exists(SCRIPT_FILE_TMP)) {
645 gui_msg("running_recovery_commands=Running Recovery Commands");
646 if (OpenRecoveryScript::run_script_file() == 0) {
647 reboot = 1;
648 op_status = 0;
649 }
650 }
651 // Check for the ORS file in /cache and attempt to run those commands.
652 if (OpenRecoveryScript::check_for_script_file()) {
653 gui_msg("running_ors=Running OpenRecoveryScript");
654 if (OpenRecoveryScript::run_script_file() == 0) {
655 reboot = 1;
656 op_status = 0;
657 }
658 }
659 if (reboot) {
660 // Disable stock recovery reflashing
661 TWFunc::Disable_Stock_Recovery_Replace();
662 usleep(2000000); // Sleep for 2 seconds before rebooting
663 TWFunc::tw_reboot(rb_system);
664 usleep(5000000); // Sleep for 5 seconds to allow reboot to occur
665 } else {
666 DataManager::SetValue("tw_page_done", 1);
667 }
668 return op_status;
669}
670
671// this is called by the "twcmd" GUI action when a command is received via FIFO from the "twrp" command line tool
672void OpenRecoveryScript::Run_CLI_Command(const char* command) {
Noah Jacobson81d638d2019-04-28 00:10:07 -0400673 string tmp = command;
674 std::vector<string> parts =
675 TWFunc::Split_String(tmp, " "); // pats[0] is cmd, parts[1...] is args
676 string cmd_str = parts[0];
677
678 if (cmd_str == "runscript") {
679 if (parts.size() > 1) {
680 string filename = parts[1];
681 if (OpenRecoveryScript::copy_script_file(filename) == 0) {
682 LOGINFO("Unable to copy script file\n");
683 } else {
684 OpenRecoveryScript::run_script_file();
685 }
that10ae24f2015-12-26 20:53:51 +0100686 } else {
Noah Jacobson81d638d2019-04-28 00:10:07 -0400687 LOGINFO("Missing parameter: script file name\n");
that10ae24f2015-12-26 20:53:51 +0100688 }
Noah Jacobson81d638d2019-04-28 00:10:07 -0400689 } else if (cmd_str == "get") {
690 if (parts.size() > 1) {
691 string varname = parts[1];
692 string value;
693 DataManager::GetValue(varname, value);
694 gui_print("%s = %s\n", varname.c_str(), value.c_str());
695 } else {
696 LOGINFO("Missing parameter: var name\n");
697 }
698 } else if (cmd_str == "decrypt") {
699 // twrp cmd cannot decrypt a password with space, should decrypt on gui
700 if (parts.size() == 1) {
701 gui_err("no_pwd=No password provided.");
702 } else {
703 string pass = parts[1];
704 string userid = "0";
705 if (parts.size() > 2)
706 userid = parts[2];
707
708 gui_msg("decrypt_cmd=Attempting to decrypt data partition or user data via command line.");
709 if (PartitionManager.Decrypt_Device(pass, atoi(userid.c_str())) == 0) {
710 // set_page_done = 1; // done by singleaction_page anyway
711 std::string orsFile = TWFunc::get_log_dir() + "/openrecoveryscript";
712 if (TWFunc::Path_Exists(orsFile)) {
713 Run_OpenRecoveryScript_Action();
714 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500715 }
that10ae24f2015-12-26 20:53:51 +0100716 }
717 } else if (OpenRecoveryScript::Insert_ORS_Command(command)) {
718 OpenRecoveryScript::run_script_file();
719 }
720
721 // let the GUI close the output fd and restart the command listener
722 call_after_cli_command();
723 LOGINFO("Done reading ORS command from command line\n");
724}
bigbiffce8f83c2015-12-12 18:30:21 -0500725
bigbiffce8f83c2015-12-12 18:30:21 -0500726int OpenRecoveryScript::remountrw(void)
727{
Captain Throwback9d6feb52018-07-27 10:05:24 -0400728 bool remount_system = PartitionManager.Is_Mounted_By_Path(PartitionManager.Get_Android_Root_Path());
bigbiffce8f83c2015-12-12 18:30:21 -0500729 int op_status;
730 TWPartition* Part;
731
Captain Throwback9d6feb52018-07-27 10:05:24 -0400732 if (!PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), true)) {
bigbiffce8f83c2015-12-12 18:30:21 -0500733 op_status = 1; // fail
734 } else {
Captain Throwback9d6feb52018-07-27 10:05:24 -0400735 Part = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
bigbiffce8f83c2015-12-12 18:30:21 -0500736 if (Part) {
737 DataManager::SetValue("tw_mount_system_ro", 0);
738 Part->Change_Mount_Read_Only(false);
739 }
740 if (remount_system) {
741 Part->Mount(true);
742 }
743 op_status = 0; // success
744 }
745
746 return op_status;
747}