blob: d7e4a23325adf149c3f83f1300be26eb4a6bbeb6 [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"
Dees_Troy4fc00242013-01-17 19:22:12 +000047#include "adb_install.h"
Dees_Troy6ed34b72013-01-25 15:01:29 +000048#include "data.hpp"
Ethan Yonkerd83587d2015-01-03 16:54:18 -060049#include "adb_install.h"
50#include "fuse_sideload.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050051#include "gui/gui.hpp"
bigbiffce8f83c2015-12-12 18:30:21 -050052#include "gui/pages.hpp"
53#include "orscmd/orscmd.h"
Ethan Yonker8373cfe2017-09-08 06:50:54 -050054#include "twinstall.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) {
Dees_Troy812660f2012-09-20 09:55:17 -040065 if (!PartitionManager.Mount_By_Path(SCRIPT_FILE_CACHE, false)) {
Ethan Yonker74db1572015-10-28 12:44:49 -050066 LOGINFO("Unable to mount /cache for OpenRecoveryScript support.\n");
67 gui_msg(Msg(msg::kError, "unable_to_mount=Unable to mount {1}")(SCRIPT_FILE_CACHE));
Dees_Troy812660f2012-09-20 09:55:17 -040068 return 0;
69 }
70 if (TWFunc::Path_Exists(SCRIPT_FILE_CACHE)) {
Dees_Troy2673cec2013-04-02 20:22:16 +000071 LOGINFO("Script file found: '%s'\n", SCRIPT_FILE_CACHE);
Dees_Troy812660f2012-09-20 09:55:17 -040072 // Copy script file to /tmp
bigbiff bigbiff9c754052013-01-09 09:09:08 -050073 TWFunc::copy_file(SCRIPT_FILE_CACHE, SCRIPT_FILE_TMP, 0755);
Dees_Troy812660f2012-09-20 09:55:17 -040074 // Delete the file from /cache
bigbiff bigbiff9c754052013-01-09 09:09:08 -050075 unlink(SCRIPT_FILE_CACHE);
Dees_Troy812660f2012-09-20 09:55:17 -040076 return 1;
77 }
78 return 0;
79}
80
Ethan Yonker03a42f62014-08-08 11:03:51 -050081int OpenRecoveryScript::copy_script_file(string filename) {
82 if (TWFunc::Path_Exists(filename)) {
83 LOGINFO("Script file found: '%s'\n", filename.c_str());
84 if (filename == SCRIPT_FILE_TMP)
85 return 1; // file is already in the right place
86 // Copy script file to /tmp
87 TWFunc::copy_file(filename, SCRIPT_FILE_TMP, 0755);
88 // Delete the old file
89 unlink(filename.c_str());
90 return 1;
91 }
92 return 0;
93}
94
Dees_Troy812660f2012-09-20 09:55:17 -040095int OpenRecoveryScript::run_script_file(void) {
Dees_Troy4bc09ae2013-01-18 17:00:54 +000096 int ret_val = 0, cindex, line_len, i, remove_nl, install_cmd = 0, sideload = 0;
Dees_Troy812660f2012-09-20 09:55:17 -040097 char script_line[SCRIPT_COMMAND_SIZE], command[SCRIPT_COMMAND_SIZE],
Matt Mowera8a89d12016-12-30 18:10:37 -060098 value[SCRIPT_COMMAND_SIZE], mount[SCRIPT_COMMAND_SIZE],
99 value1[SCRIPT_COMMAND_SIZE], value2[SCRIPT_COMMAND_SIZE];
Dees_Troy812660f2012-09-20 09:55:17 -0400100 char *val_start, *tok;
101
Matt Mower06543e32017-01-06 15:25:26 -0600102 FILE *fp = fopen(SCRIPT_FILE_TMP, "r");
Dees_Troy812660f2012-09-20 09:55:17 -0400103 if (fp != NULL) {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000104 DataManager::SetValue(TW_SIMULATE_ACTIONS, 0);
Dees_Troy6bdcbb12013-01-26 14:07:43 +0000105 DataManager::SetValue("ui_progress", 0); // Reset the progress bar
Dees_Troy812660f2012-09-20 09:55:17 -0400106 while (fgets(script_line, SCRIPT_COMMAND_SIZE, fp) != NULL && ret_val == 0) {
107 cindex = 0;
108 line_len = strlen(script_line);
109 if (line_len < 2)
110 continue; // there's a blank line or line is too short to contain a command
Dees_Troy2673cec2013-04-02 20:22:16 +0000111 //gui_print("script line: '%s'\n", script_line);
Dees_Troy812660f2012-09-20 09:55:17 -0400112 for (i=0; i<line_len; i++) {
113 if ((int)script_line[i] == 32) {
114 cindex = i;
115 i = line_len;
116 }
117 }
118 memset(command, 0, sizeof(command));
119 memset(value, 0, sizeof(value));
120 if ((int)script_line[line_len - 1] == 10)
Matt Mowera8a89d12016-12-30 18:10:37 -0600121 remove_nl = 2;
122 else
123 remove_nl = 1;
Dees_Troy812660f2012-09-20 09:55:17 -0400124 if (cindex != 0) {
125 strncpy(command, script_line, cindex);
Matt Mowere96c3c32014-09-19 12:14:37 -0500126 LOGINFO("command is: '%s'\n", command);
Dees_Troy812660f2012-09-20 09:55:17 -0400127 val_start = script_line;
128 val_start += cindex + 1;
bigbiff bigbiffc03121d2013-09-09 19:14:35 -0400129 if ((int) *val_start == 32)
130 val_start++; //get rid of space
bigbiff bigbiff72e95542013-08-29 21:01:02 -0400131 if ((int) *val_start == 51)
132 val_start++; //get rid of = at the beginning
bigbiff bigbiffa6c5f4e2013-09-17 20:01:14 -0400133 if ((int) *val_start == 32)
134 val_start++; //get rid of space
Dees_Troy812660f2012-09-20 09:55:17 -0400135 strncpy(value, val_start, line_len - cindex - remove_nl);
Dees_Troy2673cec2013-04-02 20:22:16 +0000136 LOGINFO("value is: '%s'\n", value);
Dees_Troy812660f2012-09-20 09:55:17 -0400137 } else {
138 strncpy(command, script_line, line_len - remove_nl + 1);
Dees_Troy2673cec2013-04-02 20:22:16 +0000139 gui_print("command is: '%s' and there is no value\n", command);
Dees_Troy812660f2012-09-20 09:55:17 -0400140 }
141 if (strcmp(command, "install") == 0) {
Dees_Troy83a3b122012-10-01 14:16:43 -0400142 // Install Zip
Dees_Troy6ed34b72013-01-25 15:01:29 +0000143 DataManager::SetValue("tw_action_text2", "Installing Zip");
Dees_Troy83a3b122012-10-01 14:16:43 -0400144 ret_val = Install_Command(value);
Dees_Troy06b4fe92012-10-16 11:43:20 -0400145 install_cmd = -1;
Dees_Troy812660f2012-09-20 09:55:17 -0400146 } else if (strcmp(command, "wipe") == 0) {
147 // Wipe
148 if (strcmp(value, "cache") == 0 || strcmp(value, "/cache") == 0) {
Dees_Troy812660f2012-09-20 09:55:17 -0400149 PartitionManager.Wipe_By_Path("/cache");
bigbiffce8f83c2015-12-12 18:30:21 -0500150 } else if (strcmp(value, "system") == 0 || strcmp(value, "/system") == 0) {
151 PartitionManager.Wipe_By_Path("/system");
Dees_Troy812660f2012-09-20 09:55:17 -0400152 } 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 -0400153 PartitionManager.Wipe_Dalvik_Cache();
Dees_Troy812660f2012-09-20 09:55:17 -0400154 } 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 -0400155 PartitionManager.Factory_Reset();
Dees_Troy812660f2012-09-20 09:55:17 -0400156 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000157 LOGERR("Error with wipe command value: '%s'\n", value);
Dees_Troy812660f2012-09-20 09:55:17 -0400158 ret_val = 1;
159 }
160 } else if (strcmp(command, "backup") == 0) {
161 // Backup
Ethan Yonker74db1572015-10-28 12:44:49 -0500162 DataManager::SetValue("tw_action_text2", gui_parse_text("{@backing}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400163 tok = strtok(value, " ");
164 strcpy(value1, tok);
165 tok = strtok(NULL, " ");
166 if (tok != NULL) {
167 memset(value2, 0, sizeof(value2));
168 strcpy(value2, tok);
169 line_len = strlen(tok);
170 if ((int)value2[line_len - 1] == 10 || (int)value2[line_len - 1] == 13) {
171 if ((int)value2[line_len - 1] == 10 || (int)value2[line_len - 1] == 13)
172 remove_nl = 2;
173 else
174 remove_nl = 1;
175 } else
176 remove_nl = 0;
177 strncpy(value2, tok, line_len - remove_nl);
Dees_Troy6ed34b72013-01-25 15:01:29 +0000178 DataManager::SetValue(TW_BACKUP_NAME, value2);
Matt Mower3c366972015-12-25 19:28:31 -0600179 gui_msg(Msg("backup_folder_set=Backup folder set to '{1}'")(value2));
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400180 if (PartitionManager.Check_Backup_Name(true) != 0) {
181 ret_val = 1;
182 continue;
183 }
Dees_Troy812660f2012-09-20 09:55:17 -0400184 } else {
185 char empt[50];
186 strcpy(empt, "(Current Date)");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000187 DataManager::SetValue(TW_BACKUP_NAME, empt);
Dees_Troy812660f2012-09-20 09:55:17 -0400188 }
Dees_Troy83a3b122012-10-01 14:16:43 -0400189 ret_val = Backup_Command(value1);
Dees_Troy812660f2012-09-20 09:55:17 -0400190 } else if (strcmp(command, "restore") == 0) {
191 // Restore
Ethan Yonker74db1572015-10-28 12:44:49 -0500192 DataManager::SetValue("tw_action_text2", gui_parse_text("{@restore}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400193 PartitionManager.Mount_All_Storage();
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400194 DataManager::SetValue(TW_SKIP_DIGEST_CHECK_VAR, 0);
Dees_Troydc8bc1b2013-01-17 01:39:28 +0000195 char folder_path[512], partitions[512];
Dees_Troy812660f2012-09-20 09:55:17 -0400196
197 string val = value, restore_folder, restore_partitions;
198 size_t pos = val.find_last_of(" ");
199 if (pos == string::npos) {
Dees_Troydc8bc1b2013-01-17 01:39:28 +0000200 restore_folder = value;
201 partitions[0] = '\0';
202 } else {
203 restore_folder = val.substr(0, pos);
204 restore_partitions = val.substr(pos + 1, val.size() - pos - 1);
205 strcpy(partitions, restore_partitions.c_str());
Dees_Troy812660f2012-09-20 09:55:17 -0400206 }
Dees_Troy812660f2012-09-20 09:55:17 -0400207 strcpy(folder_path, restore_folder.c_str());
Dees_Troy2673cec2013-04-02 20:22:16 +0000208 LOGINFO("Restore folder is: '%s' and partitions: '%s'\n", folder_path, partitions);
Ethan Yonker74db1572015-10-28 12:44:49 -0500209 gui_msg(Msg("restoring=Restoring {1}...")(folder_path));
Dees_Troy812660f2012-09-20 09:55:17 -0400210
211 if (folder_path[0] != '/') {
212 char backup_folder[512];
Dees_Troy6ed34b72013-01-25 15:01:29 +0000213 string folder_var;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600214 std::vector<PartitionList> Storage_List;
215
216 PartitionManager.Get_Partition_List("storage", &Storage_List);
217 int listSize = Storage_List.size();
218 for (int i = 0; i < listSize; i++) {
219 if (PartitionManager.Is_Mounted_By_Path(Storage_List.at(i).Mount_Point)) {
220 DataManager::SetValue("tw_storage_path", Storage_List.at(i).Mount_Point);
Dees_Troy6ed34b72013-01-25 15:01:29 +0000221 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, folder_var);
222 sprintf(backup_folder, "%s/%s", folder_var.c_str(), folder_path);
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600223 if (TWFunc::Path_Exists(backup_folder)) {
224 strcpy(folder_path, backup_folder);
225 break;
226 }
Dees_Troy812660f2012-09-20 09:55:17 -0400227 }
228 }
Dees_Troy812660f2012-09-20 09:55:17 -0400229 } else {
230 if (folder_path[strlen(folder_path) - 1] == '/')
231 strcat(folder_path, ".");
232 else
233 strcat(folder_path, "/.");
234 }
235 if (!TWFunc::Path_Exists(folder_path)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500236 gui_msg(Msg(msg::kError, "locate_backup_err=Unable to locate backup '{1}'")(folder_path));
Dees_Troy812660f2012-09-20 09:55:17 -0400237 ret_val = 1;
238 continue;
239 }
Dees_Troy6ed34b72013-01-25 15:01:29 +0000240 DataManager::SetValue("tw_restore", folder_path);
Dees_Troy812660f2012-09-20 09:55:17 -0400241
242 PartitionManager.Set_Restore_Files(folder_path);
Dees_Troya13d74f2013-03-24 08:54:55 -0500243 string Partition_List;
Dees_Troy83bd4832013-05-04 12:39:56 +0000244 int is_encrypted = 0;
245 DataManager::GetValue("tw_restore_encrypted", is_encrypted);
Dees_Troya13d74f2013-03-24 08:54:55 -0500246 DataManager::GetValue("tw_restore_list", Partition_List);
Dees_Troy812660f2012-09-20 09:55:17 -0400247 if (strlen(partitions) != 0) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500248 string Restore_List;
Dees_Troy812660f2012-09-20 09:55:17 -0400249
250 memset(value2, 0, sizeof(value2));
251 strcpy(value2, partitions);
Ethan Yonker74db1572015-10-28 12:44:49 -0500252 gui_msg(Msg("set_restore_opt=Setting restore options: '{1}':")(value2));
Dees_Troy812660f2012-09-20 09:55:17 -0400253 line_len = strlen(value2);
254 for (i=0; i<line_len; i++) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500255 if ((value2[i] == 'S' || value2[i] == 's') && Partition_List.find("/system;") != string::npos) {
256 Restore_List += "/system;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500257 gui_msg("system=System");
Dees_Troya13d74f2013-03-24 08:54:55 -0500258 } else if ((value2[i] == 'D' || value2[i] == 'd') && Partition_List.find("/data;") != string::npos) {
259 Restore_List += "/data;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500260 gui_msg("data=Data");
Dees_Troya13d74f2013-03-24 08:54:55 -0500261 } else if ((value2[i] == 'C' || value2[i] == 'c') && Partition_List.find("/cache;") != string::npos) {
262 Restore_List += "/cache;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500263 gui_msg("cache=Cache");
Dees_Troya13d74f2013-03-24 08:54:55 -0500264 } else if ((value2[i] == 'R' || value2[i] == 'r') && Partition_List.find("/recovery;") != string::npos) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500265 Restore_List += "/recovery;";
266 gui_msg("recovery=Recovery");
Dees_Troya13d74f2013-03-24 08:54:55 -0500267 } else if ((value2[i] == 'B' || value2[i] == 'b') && Partition_List.find("/boot;") != string::npos) {
268 Restore_List += "/boot;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500269 gui_msg("boot=Boot");
Dees_Troya13d74f2013-03-24 08:54:55 -0500270 } else if ((value2[i] == 'A' || value2[i] == 'a') && Partition_List.find("/and-sec;") != string::npos) {
271 Restore_List += "/and-sec;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500272 gui_msg("android_secure=Android Secure");
Dees_Troya13d74f2013-03-24 08:54:55 -0500273 } else if ((value2[i] == 'E' || value2[i] == 'e') && Partition_List.find("/sd-ext;") != string::npos) {
274 Restore_List += "/sd-ext;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500275 gui_msg("sdext=SD-EXT");
Dees_Troy812660f2012-09-20 09:55:17 -0400276 } else if (value2[i] == 'M' || value2[i] == 'm') {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400277 DataManager::SetValue(TW_SKIP_DIGEST_CHECK_VAR, 1);
278 gui_msg("digest_check_skip=Digest check skip is on");
Dees_Troy812660f2012-09-20 09:55:17 -0400279 }
280 }
281
Dees_Troya13d74f2013-03-24 08:54:55 -0500282 DataManager::SetValue("tw_restore_selected", Restore_List);
283 } else {
284 DataManager::SetValue("tw_restore_selected", Partition_List);
Dees_Troy812660f2012-09-20 09:55:17 -0400285 }
Dees_Troy83bd4832013-05-04 12:39:56 +0000286 if (is_encrypted) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500287 gui_err("ors_encrypt_restore_err=Unable to use OpenRecoveryScript to restore an encrypted backup.");
Dees_Troy83bd4832013-05-04 12:39:56 +0000288 ret_val = 1;
289 } else if (!PartitionManager.Run_Restore(folder_path))
Dees_Troya13d74f2013-03-24 08:54:55 -0500290 ret_val = 1;
291 else
Ethan Yonker74db1572015-10-28 12:44:49 -0500292 gui_msg("done=Done.");
bigbiffce8f83c2015-12-12 18:30:21 -0500293 } else if (strcmp(command, "remountrw") == 0) {
294 ret_val = remountrw();
Dees_Troy812660f2012-09-20 09:55:17 -0400295 } else if (strcmp(command, "mount") == 0) {
296 // Mount
Ethan Yonker74db1572015-10-28 12:44:49 -0500297 DataManager::SetValue("tw_action_text2", gui_parse_text("{@mounting}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400298 if (value[0] != '/') {
299 strcpy(mount, "/");
300 strcat(mount, value);
301 } else
302 strcpy(mount, value);
303 if (PartitionManager.Mount_By_Path(mount, true))
Ethan Yonker74db1572015-10-28 12:44:49 -0500304 gui_msg(Msg("mounted=Mounted '{1}'")(mount));
Dees_Troy812660f2012-09-20 09:55:17 -0400305 } else if (strcmp(command, "unmount") == 0 || strcmp(command, "umount") == 0) {
306 // Unmount
Ethan Yonker74db1572015-10-28 12:44:49 -0500307 DataManager::SetValue("tw_action_text2", gui_parse_text("{@unmounting}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400308 if (value[0] != '/') {
309 strcpy(mount, "/");
310 strcat(mount, value);
311 } else
312 strcpy(mount, value);
313 if (PartitionManager.UnMount_By_Path(mount, true))
Ethan Yonker74db1572015-10-28 12:44:49 -0500314 gui_msg(Msg("unmounted=Unounted '{1}'")(mount));
Dees_Troy812660f2012-09-20 09:55:17 -0400315 } else if (strcmp(command, "set") == 0) {
316 // Set value
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500317 size_t len = strlen(value);
Dees_Troy812660f2012-09-20 09:55:17 -0400318 tok = strtok(value, " ");
319 strcpy(value1, tok);
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500320 if (len > strlen(value1) + 1) {
321 char *val2 = value + strlen(value1) + 1;
Ethan Yonker74db1572015-10-28 12:44:49 -0500322 gui_msg(Msg("setting=Setting '{1}' to '{2}'")(value1)(val2));
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500323 DataManager::SetValue(value1, val2);
324 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500325 gui_msg(Msg("setting_empty=Setting '{1}' to empty")(value1));
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500326 DataManager::SetValue(value1, "");
327 }
Dees_Troy812660f2012-09-20 09:55:17 -0400328 } else if (strcmp(command, "mkdir") == 0) {
329 // Make directory (recursive)
Ethan Yonker74db1572015-10-28 12:44:49 -0500330 DataManager::SetValue("tw_action_text2", gui_parse_text("{@making_dir1}"));
331 gui_msg(Msg("making_dir2=Making directory: '{1}'")(value));
thatf1408b32016-01-03 11:09:15 +0100332 if (!TWFunc::Recursive_Mkdir(value)) {
333 // error message already displayed by Recursive_Mkdir
Dees_Troy812660f2012-09-20 09:55:17 -0400334 ret_val = 1;
335 }
336 } else if (strcmp(command, "reboot") == 0) {
Ethan Yonker03a42f62014-08-08 11:03:51 -0500337 if (strlen(value) && strcmp(value, "recovery") == 0)
338 TWFunc::tw_reboot(rb_recovery);
339 else if (strlen(value) && strcmp(value, "poweroff") == 0)
340 TWFunc::tw_reboot(rb_poweroff);
341 else if (strlen(value) && strcmp(value, "bootloader") == 0)
342 TWFunc::tw_reboot(rb_bootloader);
343 else if (strlen(value) && strcmp(value, "download") == 0)
344 TWFunc::tw_reboot(rb_download);
345 else
346 TWFunc::tw_reboot(rb_system);
Dees_Troy812660f2012-09-20 09:55:17 -0400347 } else if (strcmp(command, "cmd") == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500348 DataManager::SetValue("tw_action_text2", gui_parse_text("{@running_command}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400349 if (cindex != 0) {
Vojtech Bocek05534202013-09-11 08:11:56 +0200350 TWFunc::Exec_Cmd(value);
Dees_Troy812660f2012-09-20 09:55:17 -0400351 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000352 LOGERR("No value given for cmd\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400353 }
354 } else if (strcmp(command, "print") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000355 gui_print("%s\n", value);
Dees_Troy4fc00242013-01-17 19:22:12 +0000356 } else if (strcmp(command, "sideload") == 0) {
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000357 // ADB Sideload
Ethan Yonker74db1572015-10-28 12:44:49 -0500358 DataManager::SetValue("tw_action_text2", gui_parse_text("{@sideload}"));
Dees_Troy6ed34b72013-01-25 15:01:29 +0000359 install_cmd = -1;
360
361 int wipe_cache = 0;
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600362 string result;
363 pid_t sideload_child_pid;
Dees_Troy6ed34b72013-01-25 15:01:29 +0000364
Ethan Yonker74db1572015-10-28 12:44:49 -0500365 gui_msg("start_sideload=Starting ADB sideload feature...");
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600366 ret_val = apply_from_adb("/", &sideload_child_pid);
367 if (ret_val != 0) {
368 if (ret_val == -2)
Ethan Yonker74db1572015-10-28 12:44:49 -0500369 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 +0000370 ret_val = 1; // failure
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600371 } else if (TWinstall_zip(FUSE_SIDELOAD_HOST_PATHNAME, &wipe_cache) == 0) {
372 if (wipe_cache)
373 PartitionManager.Wipe_By_Path("/cache");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000374 } else {
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600375 ret_val = 1; // failure
Dees_Troy4fc00242013-01-17 19:22:12 +0000376 }
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600377 sideload = 1; // Causes device to go to the home screen afterwards
378 if (sideload_child_pid != 0) {
379 LOGINFO("Signaling child sideload process to exit.\n");
380 struct stat st;
381 // Calling stat() on this magic filename signals the minadbd
382 // subprocess to shut down.
383 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st);
384 int status;
385 LOGINFO("Waiting for child sideload process to exit.\n");
386 waitpid(sideload_child_pid, &status, 0);
387 }
Dees Troy28a85d22015-04-28 02:03:16 +0000388 property_set("ctl.start", "adbd");
Ethan Yonker74db1572015-10-28 12:44:49 -0500389 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -0600390 } else if (strcmp(command, "fixperms") == 0 || strcmp(command, "fixpermissions") == 0 || strcmp(command, "fixcontexts") == 0) {
391 ret_val = PartitionManager.Fix_Contexts();
Ethan Yonkeraae6e8c2014-02-11 21:37:36 -0600392 if (ret_val != 0)
393 ret_val = 1; // failure
Ethan Yonker03a42f62014-08-08 11:03:51 -0500394 } else if (strcmp(command, "decrypt") == 0) {
395 if (*value) {
396 ret_val = PartitionManager.Decrypt_Device(value);
397 if (ret_val != 0)
398 ret_val = 1; // failure
399 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500400 gui_err("no_pwd=No password provided.");
Ethan Yonker03a42f62014-08-08 11:03:51 -0500401 ret_val = 1; // failure
402 }
Dees_Troy812660f2012-09-20 09:55:17 -0400403 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000404 LOGERR("Unrecognized script command: '%s'\n", command);
Dees_Troy812660f2012-09-20 09:55:17 -0400405 ret_val = 1;
406 }
407 }
408 fclose(fp);
that10ae24f2015-12-26 20:53:51 +0100409 unlink(SCRIPT_FILE_TMP);
Ethan Yonker74db1572015-10-28 12:44:49 -0500410 gui_msg("done_ors=Done processing script file");
Dees_Troy812660f2012-09-20 09:55:17 -0400411 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500412 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(SCRIPT_FILE_TMP)(strerror(errno)));
Dees_Troy812660f2012-09-20 09:55:17 -0400413 return 1;
414 }
bigbiffce8f83c2015-12-12 18:30:21 -0500415
Dees_Troy6ed34b72013-01-25 15:01:29 +0000416 if (install_cmd && DataManager::GetIntValue(TW_HAS_INJECTTWRP) == 1 && DataManager::GetIntValue(TW_INJECT_AFTER_ZIP) == 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500417 gui_msg("injecttwrp=Injecting TWRP into boot image...");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400418 TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot");
419 if (Boot == NULL || Boot->Current_File_System != "emmc")
Vojtech Bocek05534202013-09-11 08:11:56 +0200420 TWFunc::Exec_Cmd("injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400421 else {
422 string injectcmd = "injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash bd=" + Boot->Actual_Block_Device;
Vojtech Bocek05534202013-09-11 08:11:56 +0200423 TWFunc::Exec_Cmd(injectcmd.c_str());
Dees_Troy06b4fe92012-10-16 11:43:20 -0400424 }
Ethan Yonker74db1572015-10-28 12:44:49 -0500425 gui_msg("done=Done.");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400426 }
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000427 if (sideload)
428 ret_val = 1; // Forces booting to the home page after sideload
Dees_Troy812660f2012-09-20 09:55:17 -0400429 return ret_val;
430}
431
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000432int OpenRecoveryScript::Insert_ORS_Command(string Command) {
xiaolu38c3aa72015-05-26 22:55:18 +0800433 ofstream ORSfile(SCRIPT_FILE_TMP, ios_base::app | ios_base::out);
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000434 if (ORSfile.is_open()) {
435 //if (Command.substr(Command.size() - 1, 1) != "\n")
436 // Command += "\n";
Dees_Troy2673cec2013-04-02 20:22:16 +0000437 LOGINFO("Inserting '%s'\n", Command.c_str());
xiaolu38c3aa72015-05-26 22:55:18 +0800438 ORSfile << Command.c_str() << endl;
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000439 ORSfile.close();
440 return 1;
441 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000442 LOGERR("Unable to append '%s' to '%s'\n", Command.c_str(), SCRIPT_FILE_TMP);
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000443 return 0;
444}
445
Dees_Troy83a3b122012-10-01 14:16:43 -0400446int OpenRecoveryScript::Install_Command(string Zip) {
447 // Install zip
448 string ret_string;
449 int ret_val = 0, wipe_cache = 0;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600450 std::vector<PartitionList> Storage_List;
451 string Full_Path;
Dees_Troy83a3b122012-10-01 14:16:43 -0400452
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600453 if (Zip.substr(0, 1) == "@") {
454 // This is a special file that contains a map of blocks on the data partition
455 Full_Path = Zip.substr(1);
456 if (!PartitionManager.Mount_By_Path(Full_Path, true) || !TWFunc::Path_Exists(Full_Path)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500457 LOGINFO("Unable to install via mapped zip '%s'\n", Full_Path.c_str());
458 gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(Zip));
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600459 return 1;
460 }
Ethan Yonker74db1572015-10-28 12:44:49 -0500461 LOGINFO("Installing mapped zip file '%s'\n", Full_Path.c_str());
462 gui_msg(Msg("installing_zip=Installing zip file '{1}'")(Zip));
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600463 } else if (!TWFunc::Path_Exists(Zip)) {
464 PartitionManager.Mount_All_Storage();
465 PartitionManager.Get_Partition_List("storage", &Storage_List);
466 int listSize = Storage_List.size();
467 for (int i = 0; i < listSize; i++) {
468 if (PartitionManager.Is_Mounted_By_Path(Storage_List.at(i).Mount_Point)) {
469 Full_Path = Storage_List.at(i).Mount_Point + "/" + Zip;
470 if (TWFunc::Path_Exists(Full_Path)) {
471 Zip = Full_Path;
472 break;
473 }
474 Full_Path = Zip;
475 LOGINFO("Trying to find zip '%s' on '%s'...\n", Full_Path.c_str(), Storage_List.at(i).Mount_Point.c_str());
476 ret_string = Locate_Zip_File(Full_Path, Storage_List.at(i).Mount_Point);
477 if (!ret_string.empty()) {
478 Zip = ret_string;
479 break;
480 }
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600481 }
Dees_Troy83a3b122012-10-01 14:16:43 -0400482 }
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600483 if (!TWFunc::Path_Exists(Zip)) {
484 // zip file doesn't exist
485 gui_print("Unable to locate zip file '%s'.\n", Zip.c_str());
486 ret_val = 1;
487 } else
Ethan Yonker74db1572015-10-28 12:44:49 -0500488 gui_msg(Msg("installing_zip=Installing zip file '{1}'")(Zip));
Dees_Troy83a3b122012-10-01 14:16:43 -0400489 }
490
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600491 ret_val = TWinstall_zip(Zip.c_str(), &wipe_cache);
Dees_Troy83a3b122012-10-01 14:16:43 -0400492 if (ret_val != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500493 gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(Zip));
Dees_Troy83a3b122012-10-01 14:16:43 -0400494 ret_val = 1;
495 } else if (wipe_cache)
496 PartitionManager.Wipe_By_Path("/cache");
497
498 return ret_val;
499}
500
Dees_Troy812660f2012-09-20 09:55:17 -0400501string OpenRecoveryScript::Locate_Zip_File(string Zip, string Storage_Root) {
502 string Path = TWFunc::Get_Path(Zip);
503 string File = TWFunc::Get_Filename(Zip);
504 string pathCpy = Path;
505 string wholePath;
506 size_t pos = Path.find("/", 1);
507
508 while (pos != string::npos)
509 {
510 pathCpy = Path.substr(pos, Path.size() - pos);
Matt Mowere96c3c32014-09-19 12:14:37 -0500511 wholePath = pathCpy + File;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600512 LOGINFO("Looking for zip at '%s'\n", wholePath.c_str());
Dees_Troy812660f2012-09-20 09:55:17 -0400513 if (TWFunc::Path_Exists(wholePath))
514 return wholePath;
Matt Mowere96c3c32014-09-19 12:14:37 -0500515 wholePath = Storage_Root + wholePath;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600516 LOGINFO("Looking for zip at '%s'\n", wholePath.c_str());
Dees_Troy812660f2012-09-20 09:55:17 -0400517 if (TWFunc::Path_Exists(wholePath))
518 return wholePath;
519
520 pos = Path.find("/", pos + 1);
521 }
522 return "";
Dees_Troy83a3b122012-10-01 14:16:43 -0400523}
524
525int OpenRecoveryScript::Backup_Command(string Options) {
526 char value1[SCRIPT_COMMAND_SIZE];
527 int line_len, i;
Dees_Troya13d74f2013-03-24 08:54:55 -0500528 string Backup_List;
Dees_Troy83a3b122012-10-01 14:16:43 -0400529
530 strcpy(value1, Options.c_str());
531
Dees_Troy6ed34b72013-01-25 15:01:29 +0000532 DataManager::SetValue(TW_USE_COMPRESSION_VAR, 0);
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400533 DataManager::SetValue(TW_SKIP_DIGEST_GENERATE_VAR, 0);
Dees_Troy83a3b122012-10-01 14:16:43 -0400534
Ethan Yonker74db1572015-10-28 12:44:49 -0500535 gui_msg("select_backup_opt=Setting backup options:");
Dees_Troy83a3b122012-10-01 14:16:43 -0400536 line_len = Options.size();
537 for (i=0; i<line_len; i++) {
538 if (Options.substr(i, 1) == "S" || Options.substr(i, 1) == "s") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500539 Backup_List += "/system;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500540 gui_msg("system=System");
Dees_Troy83a3b122012-10-01 14:16:43 -0400541 } else if (Options.substr(i, 1) == "D" || Options.substr(i, 1) == "d") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500542 Backup_List += "/data;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500543 gui_msg("data=Data");
Dees_Troy83a3b122012-10-01 14:16:43 -0400544 } else if (Options.substr(i, 1) == "C" || Options.substr(i, 1) == "c") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500545 Backup_List += "/cache;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500546 gui_msg("cache=Cache");
Dees_Troy83a3b122012-10-01 14:16:43 -0400547 } else if (Options.substr(i, 1) == "R" || Options.substr(i, 1) == "r") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500548 Backup_List += "/recovery;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500549 gui_msg("recovery=Recovery");
Dees_Troy83a3b122012-10-01 14:16:43 -0400550 } else if (Options.substr(i, 1) == "1") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000551 gui_print("%s\n", "Special1 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400552 } else if (Options.substr(i, 1) == "2") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000553 gui_print("%s\n", "Special2 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400554 } else if (Options.substr(i, 1) == "3") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000555 gui_print("%s\n", "Special3 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400556 } else if (Options.substr(i, 1) == "B" || Options.substr(i, 1) == "b") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500557 Backup_List += "/boot;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500558 gui_msg("boot=Boot");
Dees_Troy83a3b122012-10-01 14:16:43 -0400559 } else if (Options.substr(i, 1) == "A" || Options.substr(i, 1) == "a") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500560 Backup_List += "/and-sec;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500561 gui_msg("android_secure=Android Secure");
Dees_Troy83a3b122012-10-01 14:16:43 -0400562 } else if (Options.substr(i, 1) == "E" || Options.substr(i, 1) == "e") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500563 Backup_List += "/sd-ext;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500564 gui_msg("sdext=SD-EXT");
Dees_Troy83a3b122012-10-01 14:16:43 -0400565 } else if (Options.substr(i, 1) == "O" || Options.substr(i, 1) == "o") {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000566 DataManager::SetValue(TW_USE_COMPRESSION_VAR, 1);
Ethan Yonker74db1572015-10-28 12:44:49 -0500567 gui_msg("compression_on=Compression is on");
Dees_Troy83a3b122012-10-01 14:16:43 -0400568 } else if (Options.substr(i, 1) == "M" || Options.substr(i, 1) == "m") {
bigbiff bigbiff56cf5642016-08-19 17:43:45 -0400569 DataManager::SetValue(TW_SKIP_DIGEST_GENERATE_VAR, 1);
570 gui_msg("digest_off=Digest Generation is off");
Dees_Troy83a3b122012-10-01 14:16:43 -0400571 }
572 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500573 DataManager::SetValue("tw_backup_list", Backup_List);
bigbiffce8f83c2015-12-12 18:30:21 -0500574 if (!PartitionManager.Run_Backup(false)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500575 gui_err("backup_fail=Backup Failed");
Dees_Troy83a3b122012-10-01 14:16:43 -0400576 return 1;
577 }
Matt Mower3c366972015-12-25 19:28:31 -0600578 gui_msg("backup_complete=Backup Complete");
Dees_Troy83a3b122012-10-01 14:16:43 -0400579 return 0;
580}
Dees_Troy6ed34b72013-01-25 15:01:29 +0000581
that10ae24f2015-12-26 20:53:51 +0100582// this is called by main()
Dees_Troy6ed34b72013-01-25 15:01:29 +0000583void OpenRecoveryScript::Run_OpenRecoveryScript(void) {
584 DataManager::SetValue("tw_back", "main");
585 DataManager::SetValue("tw_action", "openrecoveryscript");
that10ae24f2015-12-26 20:53:51 +0100586 DataManager::SetValue("tw_action_param", "");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000587 DataManager::SetValue("tw_has_action2", "0");
588 DataManager::SetValue("tw_action2", "");
589 DataManager::SetValue("tw_action2_param", "");
Ethan Yonker89583ef2015-08-26 09:01:59 -0500590#ifdef TW_OEM_BUILD
Ethan Yonker74db1572015-10-28 12:44:49 -0500591 DataManager::SetValue("tw_action_text1", gui_lookup("running_recovery_commands", "Running Recovery Commands"));
592 DataManager::SetValue("tw_complete_text1", gui_lookup("recovery_commands_complete", "Recovery Commands Complete"));
Ethan Yonker89583ef2015-08-26 09:01:59 -0500593#else
Ethan Yonker74db1572015-10-28 12:44:49 -0500594 DataManager::SetValue("tw_action_text1", gui_lookup("running_ors", "Running OpenRecoveryScript"));
595 DataManager::SetValue("tw_complete_text1", gui_lookup("ors_complete", "OpenRecoveryScript Complete"));
Ethan Yonker89583ef2015-08-26 09:01:59 -0500596#endif
597 DataManager::SetValue("tw_action_text2", "");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000598 DataManager::SetValue("tw_has_cancel", 0);
599 DataManager::SetValue("tw_show_reboot", 0);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600600 if (gui_startPage("action_page", 0, 1) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000601 LOGERR("Failed to load OpenRecoveryScript GUI page.\n");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000602 }
Dees_Troy6bdcbb12013-01-26 14:07:43 +0000603}
that10ae24f2015-12-26 20:53:51 +0100604
605// this is called by the "openrecoveryscript" GUI action called via action page from Run_OpenRecoveryScript
606int OpenRecoveryScript::Run_OpenRecoveryScript_Action() {
607 int op_status = 1;
608 // Check for the SCRIPT_FILE_TMP first as these are AOSP recovery commands
609 // that we converted to ORS commands during boot in recovery.cpp.
610 // Run those first.
611 int reboot = 0;
612 if (TWFunc::Path_Exists(SCRIPT_FILE_TMP)) {
613 gui_msg("running_recovery_commands=Running Recovery Commands");
614 if (OpenRecoveryScript::run_script_file() == 0) {
615 reboot = 1;
616 op_status = 0;
617 }
618 }
619 // Check for the ORS file in /cache and attempt to run those commands.
620 if (OpenRecoveryScript::check_for_script_file()) {
621 gui_msg("running_ors=Running OpenRecoveryScript");
622 if (OpenRecoveryScript::run_script_file() == 0) {
623 reboot = 1;
624 op_status = 0;
625 }
626 }
627 if (reboot) {
628 // Disable stock recovery reflashing
629 TWFunc::Disable_Stock_Recovery_Replace();
630 usleep(2000000); // Sleep for 2 seconds before rebooting
631 TWFunc::tw_reboot(rb_system);
632 usleep(5000000); // Sleep for 5 seconds to allow reboot to occur
633 } else {
634 DataManager::SetValue("tw_page_done", 1);
635 }
636 return op_status;
637}
638
639// this is called by the "twcmd" GUI action when a command is received via FIFO from the "twrp" command line tool
640void OpenRecoveryScript::Run_CLI_Command(const char* command) {
641 if (strlen(command) > 11 && strncmp(command, "runscript", 9) == 0) {
642 const char* filename = command + 10;
643 if (OpenRecoveryScript::copy_script_file(filename) == 0) {
644 LOGINFO("Unable to copy script file\n");
645 } else {
646 OpenRecoveryScript::run_script_file();
647 }
648 } else if (strlen(command) > 5 && strncmp(command, "get", 3) == 0) {
649 const char* varname = command + 4;
650 string value;
651 DataManager::GetValue(varname, value);
652 gui_print("%s = %s\n", varname, value.c_str());
653 } else if (strlen(command) > 9 && strncmp(command, "decrypt", 7) == 0) {
654 const char* pass = command + 8;
655 gui_msg("decrypt_cmd=Attempting to decrypt data partition via command line.");
656 if (PartitionManager.Decrypt_Device(pass) == 0) {
657 // set_page_done = 1; // done by singleaction_page anyway
658 }
659 } else if (OpenRecoveryScript::Insert_ORS_Command(command)) {
660 OpenRecoveryScript::run_script_file();
661 }
662
663 // let the GUI close the output fd and restart the command listener
664 call_after_cli_command();
665 LOGINFO("Done reading ORS command from command line\n");
666}
bigbiffce8f83c2015-12-12 18:30:21 -0500667
bigbiffce8f83c2015-12-12 18:30:21 -0500668int OpenRecoveryScript::remountrw(void)
669{
670 bool remount_system = PartitionManager.Is_Mounted_By_Path("/system");
671 int op_status;
672 TWPartition* Part;
673
674 if (!PartitionManager.UnMount_By_Path("/system", true)) {
675 op_status = 1; // fail
676 } else {
677 Part = PartitionManager.Find_Partition_By_Path("/system");
678 if (Part) {
679 DataManager::SetValue("tw_mount_system_ro", 0);
680 Part->Change_Mount_Read_Only(false);
681 }
682 if (remount_system) {
683 Part->Mount(true);
684 }
685 op_status = 0; // success
686 }
687
688 return op_status;
689}