blob: 75db902e21000398aac68ac697b31c0c1a08d831 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
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_Troy812660f2012-09-20 09:55:17 -040018
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_Troy01b6d0c2013-01-22 01:41:09 +000029#include <iostream>
30#include <fstream>
Ethan Yonkerd83587d2015-01-03 16:54:18 -060031#include <sys/types.h>
32#include <sys/wait.h>
Dees_Troy812660f2012-09-20 09:55:17 -040033
34#include "twrp-functions.hpp"
35#include "partitions.hpp"
Dees_Troy2673cec2013-04-02 20:22:16 +000036#include "twcommon.h"
Dees_Troy812660f2012-09-20 09:55:17 -040037#include "openrecoveryscript.hpp"
38#include "variables.h"
Dees_Troy4fc00242013-01-17 19:22:12 +000039#include "adb_install.h"
Dees_Troy6ed34b72013-01-25 15:01:29 +000040#include "data.hpp"
Ethan Yonkerd83587d2015-01-03 16:54:18 -060041#include "adb_install.h"
42#include "fuse_sideload.h"
Ethan Yonker74db1572015-10-28 12:44:49 -050043#include "gui/gui.hpp"
Dees_Troy812660f2012-09-20 09:55:17 -040044extern "C" {
Dees_Troy01b6d0c2013-01-22 01:41:09 +000045 #include "twinstall.h"
46 #include "gui/gui.h"
Ethan Yonkerd83587d2015-01-03 16:54:18 -060047 #include "cutils/properties.h"
Dees_Troy01b6d0c2013-01-22 01:41:09 +000048 int TWinstall_zip(const char* path, int* wipe_cache);
Dees_Troy812660f2012-09-20 09:55:17 -040049}
50
that10ae24f2015-12-26 20:53:51 +010051OpenRecoveryScript::VoidFunction OpenRecoveryScript::call_after_cli_command;
52
Dees_Troy812660f2012-09-20 09:55:17 -040053#define SCRIPT_COMMAND_SIZE 512
54
55int OpenRecoveryScript::check_for_script_file(void) {
Dees_Troy812660f2012-09-20 09:55:17 -040056 if (!PartitionManager.Mount_By_Path(SCRIPT_FILE_CACHE, false)) {
Ethan Yonker74db1572015-10-28 12:44:49 -050057 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_Troy812660f2012-09-20 09:55:17 -040059 return 0;
60 }
61 if (TWFunc::Path_Exists(SCRIPT_FILE_CACHE)) {
Dees_Troy2673cec2013-04-02 20:22:16 +000062 LOGINFO("Script file found: '%s'\n", SCRIPT_FILE_CACHE);
Dees_Troy812660f2012-09-20 09:55:17 -040063 // Copy script file to /tmp
bigbiff bigbiff9c754052013-01-09 09:09:08 -050064 TWFunc::copy_file(SCRIPT_FILE_CACHE, SCRIPT_FILE_TMP, 0755);
Dees_Troy812660f2012-09-20 09:55:17 -040065 // Delete the file from /cache
bigbiff bigbiff9c754052013-01-09 09:09:08 -050066 unlink(SCRIPT_FILE_CACHE);
Dees_Troy812660f2012-09-20 09:55:17 -040067 return 1;
68 }
69 return 0;
70}
71
Ethan Yonker03a42f62014-08-08 11:03:51 -050072int 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_Troy812660f2012-09-20 09:55:17 -040086int OpenRecoveryScript::run_script_file(void) {
87 FILE *fp = fopen(SCRIPT_FILE_TMP, "r");
Dees_Troy4bc09ae2013-01-18 17:00:54 +000088 int ret_val = 0, cindex, line_len, i, remove_nl, install_cmd = 0, sideload = 0;
Dees_Troy812660f2012-09-20 09:55:17 -040089 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_Troy6ed34b72013-01-25 15:01:29 +000095 DataManager::SetValue(TW_SIMULATE_ACTIONS, 0);
Dees_Troy6bdcbb12013-01-26 14:07:43 +000096 DataManager::SetValue("ui_progress", 0); // Reset the progress bar
Dees_Troy812660f2012-09-20 09:55:17 -040097 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_Troy2673cec2013-04-02 20:22:16 +0000102 //gui_print("script line: '%s'\n", script_line);
Dees_Troy812660f2012-09-20 09:55:17 -0400103 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 Mowere96c3c32014-09-19 12:14:37 -0500117 LOGINFO("command is: '%s'\n", command);
Dees_Troy812660f2012-09-20 09:55:17 -0400118 val_start = script_line;
119 val_start += cindex + 1;
bigbiff bigbiffc03121d2013-09-09 19:14:35 -0400120 if ((int) *val_start == 32)
121 val_start++; //get rid of space
bigbiff bigbiff72e95542013-08-29 21:01:02 -0400122 if ((int) *val_start == 51)
123 val_start++; //get rid of = at the beginning
bigbiff bigbiffa6c5f4e2013-09-17 20:01:14 -0400124 if ((int) *val_start == 32)
125 val_start++; //get rid of space
Dees_Troy812660f2012-09-20 09:55:17 -0400126 strncpy(value, val_start, line_len - cindex - remove_nl);
Dees_Troy2673cec2013-04-02 20:22:16 +0000127 LOGINFO("value is: '%s'\n", value);
Dees_Troy812660f2012-09-20 09:55:17 -0400128 } else {
129 strncpy(command, script_line, line_len - remove_nl + 1);
Dees_Troy2673cec2013-04-02 20:22:16 +0000130 gui_print("command is: '%s' and there is no value\n", command);
Dees_Troy812660f2012-09-20 09:55:17 -0400131 }
132 if (strcmp(command, "install") == 0) {
Dees_Troy83a3b122012-10-01 14:16:43 -0400133 // Install Zip
Dees_Troy6ed34b72013-01-25 15:01:29 +0000134 DataManager::SetValue("tw_action_text2", "Installing Zip");
Dees_Troydc8bc1b2013-01-17 01:39:28 +0000135 PartitionManager.Mount_All_Storage();
Dees_Troy83a3b122012-10-01 14:16:43 -0400136 ret_val = Install_Command(value);
Dees_Troy06b4fe92012-10-16 11:43:20 -0400137 install_cmd = -1;
Dees_Troy812660f2012-09-20 09:55:17 -0400138 } else if (strcmp(command, "wipe") == 0) {
139 // Wipe
140 if (strcmp(value, "cache") == 0 || strcmp(value, "/cache") == 0) {
Dees_Troy812660f2012-09-20 09:55:17 -0400141 PartitionManager.Wipe_By_Path("/cache");
Dees_Troy812660f2012-09-20 09:55:17 -0400142 } 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 -0400143 PartitionManager.Wipe_Dalvik_Cache();
Dees_Troy812660f2012-09-20 09:55:17 -0400144 } 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 -0400145 PartitionManager.Factory_Reset();
Dees_Troy812660f2012-09-20 09:55:17 -0400146 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000147 LOGERR("Error with wipe command value: '%s'\n", value);
Dees_Troy812660f2012-09-20 09:55:17 -0400148 ret_val = 1;
149 }
150 } else if (strcmp(command, "backup") == 0) {
151 // Backup
Ethan Yonker74db1572015-10-28 12:44:49 -0500152 DataManager::SetValue("tw_action_text2", gui_parse_text("{@backing}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400153 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_Troy6ed34b72013-01-25 15:01:29 +0000168 DataManager::SetValue(TW_BACKUP_NAME, value2);
Matt Mower3c366972015-12-25 19:28:31 -0600169 gui_msg(Msg("backup_folder_set=Backup folder set to '{1}'")(value2));
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400170 if (PartitionManager.Check_Backup_Name(true) != 0) {
171 ret_val = 1;
172 continue;
173 }
Dees_Troy812660f2012-09-20 09:55:17 -0400174 } else {
175 char empt[50];
176 strcpy(empt, "(Current Date)");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000177 DataManager::SetValue(TW_BACKUP_NAME, empt);
Dees_Troy812660f2012-09-20 09:55:17 -0400178 }
Dees_Troy83a3b122012-10-01 14:16:43 -0400179 ret_val = Backup_Command(value1);
Dees_Troy812660f2012-09-20 09:55:17 -0400180 } else if (strcmp(command, "restore") == 0) {
181 // Restore
Ethan Yonker74db1572015-10-28 12:44:49 -0500182 DataManager::SetValue("tw_action_text2", gui_parse_text("{@restore}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400183 PartitionManager.Mount_All_Storage();
Dees_Troy6ed34b72013-01-25 15:01:29 +0000184 DataManager::SetValue(TW_SKIP_MD5_CHECK_VAR, 0);
Dees_Troydc8bc1b2013-01-17 01:39:28 +0000185 char folder_path[512], partitions[512];
Dees_Troy812660f2012-09-20 09:55:17 -0400186
187 string val = value, restore_folder, restore_partitions;
188 size_t pos = val.find_last_of(" ");
189 if (pos == string::npos) {
Dees_Troydc8bc1b2013-01-17 01:39:28 +0000190 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_Troy812660f2012-09-20 09:55:17 -0400196 }
Dees_Troy812660f2012-09-20 09:55:17 -0400197 strcpy(folder_path, restore_folder.c_str());
Dees_Troy2673cec2013-04-02 20:22:16 +0000198 LOGINFO("Restore folder is: '%s' and partitions: '%s'\n", folder_path, partitions);
Ethan Yonker74db1572015-10-28 12:44:49 -0500199 gui_msg(Msg("restoring=Restoring {1}...")(folder_path));
Dees_Troy812660f2012-09-20 09:55:17 -0400200
201 if (folder_path[0] != '/') {
202 char backup_folder[512];
Dees_Troy6ed34b72013-01-25 15:01:29 +0000203 string folder_var;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600204 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_Troy6ed34b72013-01-25 15:01:29 +0000211 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, folder_var);
212 sprintf(backup_folder, "%s/%s", folder_var.c_str(), folder_path);
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600213 if (TWFunc::Path_Exists(backup_folder)) {
214 strcpy(folder_path, backup_folder);
215 break;
216 }
Dees_Troy812660f2012-09-20 09:55:17 -0400217 }
218 }
Dees_Troy812660f2012-09-20 09:55:17 -0400219 } 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 Yonker74db1572015-10-28 12:44:49 -0500226 gui_msg(Msg(msg::kError, "locate_backup_err=Unable to locate backup '{1}'")(folder_path));
Dees_Troy812660f2012-09-20 09:55:17 -0400227 ret_val = 1;
228 continue;
229 }
Dees_Troy6ed34b72013-01-25 15:01:29 +0000230 DataManager::SetValue("tw_restore", folder_path);
Dees_Troy812660f2012-09-20 09:55:17 -0400231
232 PartitionManager.Set_Restore_Files(folder_path);
Dees_Troya13d74f2013-03-24 08:54:55 -0500233 string Partition_List;
Dees_Troy83bd4832013-05-04 12:39:56 +0000234 int is_encrypted = 0;
235 DataManager::GetValue("tw_restore_encrypted", is_encrypted);
Dees_Troya13d74f2013-03-24 08:54:55 -0500236 DataManager::GetValue("tw_restore_list", Partition_List);
Dees_Troy812660f2012-09-20 09:55:17 -0400237 if (strlen(partitions) != 0) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500238 string Restore_List;
Dees_Troy812660f2012-09-20 09:55:17 -0400239
240 memset(value2, 0, sizeof(value2));
241 strcpy(value2, partitions);
Ethan Yonker74db1572015-10-28 12:44:49 -0500242 gui_msg(Msg("set_restore_opt=Setting restore options: '{1}':")(value2));
Dees_Troy812660f2012-09-20 09:55:17 -0400243 line_len = strlen(value2);
244 for (i=0; i<line_len; i++) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500245 if ((value2[i] == 'S' || value2[i] == 's') && Partition_List.find("/system;") != string::npos) {
246 Restore_List += "/system;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500247 gui_msg("system=System");
Dees_Troya13d74f2013-03-24 08:54:55 -0500248 } else if ((value2[i] == 'D' || value2[i] == 'd') && Partition_List.find("/data;") != string::npos) {
249 Restore_List += "/data;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500250 gui_msg("data=Data");
Dees_Troya13d74f2013-03-24 08:54:55 -0500251 } else if ((value2[i] == 'C' || value2[i] == 'c') && Partition_List.find("/cache;") != string::npos) {
252 Restore_List += "/cache;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500253 gui_msg("cache=Cache");
Dees_Troya13d74f2013-03-24 08:54:55 -0500254 } else if ((value2[i] == 'R' || value2[i] == 'r') && Partition_List.find("/recovery;") != string::npos) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500255 Restore_List += "/recovery;";
256 gui_msg("recovery=Recovery");
Dees_Troya13d74f2013-03-24 08:54:55 -0500257 } else if ((value2[i] == 'B' || value2[i] == 'b') && Partition_List.find("/boot;") != string::npos) {
258 Restore_List += "/boot;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500259 gui_msg("boot=Boot");
Dees_Troya13d74f2013-03-24 08:54:55 -0500260 } else if ((value2[i] == 'A' || value2[i] == 'a') && Partition_List.find("/and-sec;") != string::npos) {
261 Restore_List += "/and-sec;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500262 gui_msg("android_secure=Android Secure");
Dees_Troya13d74f2013-03-24 08:54:55 -0500263 } else if ((value2[i] == 'E' || value2[i] == 'e') && Partition_List.find("/sd-ext;") != string::npos) {
264 Restore_List += "/sd-ext;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500265 gui_msg("sdext=SD-EXT");
Dees_Troy812660f2012-09-20 09:55:17 -0400266 } else if (value2[i] == 'M' || value2[i] == 'm') {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000267 DataManager::SetValue(TW_SKIP_MD5_CHECK_VAR, 1);
Ethan Yonker74db1572015-10-28 12:44:49 -0500268 gui_msg("md5_check_skip=MD5 check skip is on");
Dees_Troy812660f2012-09-20 09:55:17 -0400269 }
270 }
271
Dees_Troya13d74f2013-03-24 08:54:55 -0500272 DataManager::SetValue("tw_restore_selected", Restore_List);
273 } else {
274 DataManager::SetValue("tw_restore_selected", Partition_List);
Dees_Troy812660f2012-09-20 09:55:17 -0400275 }
Dees_Troy83bd4832013-05-04 12:39:56 +0000276 if (is_encrypted) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500277 gui_err("ors_encrypt_restore_err=Unable to use OpenRecoveryScript to restore an encrypted backup.");
Dees_Troy83bd4832013-05-04 12:39:56 +0000278 ret_val = 1;
279 } else if (!PartitionManager.Run_Restore(folder_path))
Dees_Troya13d74f2013-03-24 08:54:55 -0500280 ret_val = 1;
281 else
Ethan Yonker74db1572015-10-28 12:44:49 -0500282 gui_msg("done=Done.");
Dees_Troy812660f2012-09-20 09:55:17 -0400283 } else if (strcmp(command, "mount") == 0) {
284 // Mount
Ethan Yonker74db1572015-10-28 12:44:49 -0500285 DataManager::SetValue("tw_action_text2", gui_parse_text("{@mounting}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400286 if (value[0] != '/') {
287 strcpy(mount, "/");
288 strcat(mount, value);
289 } else
290 strcpy(mount, value);
291 if (PartitionManager.Mount_By_Path(mount, true))
Ethan Yonker74db1572015-10-28 12:44:49 -0500292 gui_msg(Msg("mounted=Mounted '{1}'")(mount));
Dees_Troy812660f2012-09-20 09:55:17 -0400293 } else if (strcmp(command, "unmount") == 0 || strcmp(command, "umount") == 0) {
294 // Unmount
Ethan Yonker74db1572015-10-28 12:44:49 -0500295 DataManager::SetValue("tw_action_text2", gui_parse_text("{@unmounting}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400296 if (value[0] != '/') {
297 strcpy(mount, "/");
298 strcat(mount, value);
299 } else
300 strcpy(mount, value);
301 if (PartitionManager.UnMount_By_Path(mount, true))
Ethan Yonker74db1572015-10-28 12:44:49 -0500302 gui_msg(Msg("unmounted=Unounted '{1}'")(mount));
Dees_Troy812660f2012-09-20 09:55:17 -0400303 } else if (strcmp(command, "set") == 0) {
304 // Set value
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500305 size_t len = strlen(value);
Dees_Troy812660f2012-09-20 09:55:17 -0400306 tok = strtok(value, " ");
307 strcpy(value1, tok);
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500308 if (len > strlen(value1) + 1) {
309 char *val2 = value + strlen(value1) + 1;
Ethan Yonker74db1572015-10-28 12:44:49 -0500310 gui_msg(Msg("setting=Setting '{1}' to '{2}'")(value1)(val2));
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500311 DataManager::SetValue(value1, val2);
312 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500313 gui_msg(Msg("setting_empty=Setting '{1}' to empty")(value1));
Ethan Yonker6511c4d2015-06-17 16:52:29 -0500314 DataManager::SetValue(value1, "");
315 }
Dees_Troy812660f2012-09-20 09:55:17 -0400316 } else if (strcmp(command, "mkdir") == 0) {
317 // Make directory (recursive)
Ethan Yonker74db1572015-10-28 12:44:49 -0500318 DataManager::SetValue("tw_action_text2", gui_parse_text("{@making_dir1}"));
319 gui_msg(Msg("making_dir2=Making directory: '{1}'")(value));
thatf1408b32016-01-03 11:09:15 +0100320 if (!TWFunc::Recursive_Mkdir(value)) {
321 // error message already displayed by Recursive_Mkdir
Dees_Troy812660f2012-09-20 09:55:17 -0400322 ret_val = 1;
323 }
324 } else if (strcmp(command, "reboot") == 0) {
Ethan Yonker03a42f62014-08-08 11:03:51 -0500325 if (strlen(value) && strcmp(value, "recovery") == 0)
326 TWFunc::tw_reboot(rb_recovery);
327 else if (strlen(value) && strcmp(value, "poweroff") == 0)
328 TWFunc::tw_reboot(rb_poweroff);
329 else if (strlen(value) && strcmp(value, "bootloader") == 0)
330 TWFunc::tw_reboot(rb_bootloader);
331 else if (strlen(value) && strcmp(value, "download") == 0)
332 TWFunc::tw_reboot(rb_download);
333 else
334 TWFunc::tw_reboot(rb_system);
Dees_Troy812660f2012-09-20 09:55:17 -0400335 } else if (strcmp(command, "cmd") == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500336 DataManager::SetValue("tw_action_text2", gui_parse_text("{@running_command}"));
Dees_Troy812660f2012-09-20 09:55:17 -0400337 if (cindex != 0) {
Vojtech Bocek05534202013-09-11 08:11:56 +0200338 TWFunc::Exec_Cmd(value);
Dees_Troy812660f2012-09-20 09:55:17 -0400339 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000340 LOGERR("No value given for cmd\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400341 }
342 } else if (strcmp(command, "print") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000343 gui_print("%s\n", value);
Dees_Troy4fc00242013-01-17 19:22:12 +0000344 } else if (strcmp(command, "sideload") == 0) {
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000345 // ADB Sideload
Ethan Yonker74db1572015-10-28 12:44:49 -0500346 DataManager::SetValue("tw_action_text2", gui_parse_text("{@sideload}"));
Dees_Troy6ed34b72013-01-25 15:01:29 +0000347 install_cmd = -1;
348
349 int wipe_cache = 0;
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600350 string result;
351 pid_t sideload_child_pid;
Dees_Troy6ed34b72013-01-25 15:01:29 +0000352
Ethan Yonker74db1572015-10-28 12:44:49 -0500353 gui_msg("start_sideload=Starting ADB sideload feature...");
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600354 ret_val = apply_from_adb("/", &sideload_child_pid);
355 if (ret_val != 0) {
356 if (ret_val == -2)
Ethan Yonker74db1572015-10-28 12:44:49 -0500357 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 +0000358 ret_val = 1; // failure
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600359 } else if (TWinstall_zip(FUSE_SIDELOAD_HOST_PATHNAME, &wipe_cache) == 0) {
360 if (wipe_cache)
361 PartitionManager.Wipe_By_Path("/cache");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000362 } else {
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600363 ret_val = 1; // failure
Dees_Troy4fc00242013-01-17 19:22:12 +0000364 }
Ethan Yonkerd83587d2015-01-03 16:54:18 -0600365 sideload = 1; // Causes device to go to the home screen afterwards
366 if (sideload_child_pid != 0) {
367 LOGINFO("Signaling child sideload process to exit.\n");
368 struct stat st;
369 // Calling stat() on this magic filename signals the minadbd
370 // subprocess to shut down.
371 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st);
372 int status;
373 LOGINFO("Waiting for child sideload process to exit.\n");
374 waitpid(sideload_child_pid, &status, 0);
375 }
Dees Troy28a85d22015-04-28 02:03:16 +0000376 property_set("ctl.start", "adbd");
Ethan Yonker74db1572015-10-28 12:44:49 -0500377 gui_msg("done=Done.");
Ethan Yonkerb5fab762016-01-28 14:03:33 -0600378 } else if (strcmp(command, "fixperms") == 0 || strcmp(command, "fixpermissions") == 0 || strcmp(command, "fixcontexts") == 0) {
379 ret_val = PartitionManager.Fix_Contexts();
Ethan Yonkeraae6e8c2014-02-11 21:37:36 -0600380 if (ret_val != 0)
381 ret_val = 1; // failure
Ethan Yonker03a42f62014-08-08 11:03:51 -0500382 } else if (strcmp(command, "decrypt") == 0) {
383 if (*value) {
384 ret_val = PartitionManager.Decrypt_Device(value);
385 if (ret_val != 0)
386 ret_val = 1; // failure
387 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500388 gui_err("no_pwd=No password provided.");
Ethan Yonker03a42f62014-08-08 11:03:51 -0500389 ret_val = 1; // failure
390 }
Dees_Troy812660f2012-09-20 09:55:17 -0400391 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000392 LOGERR("Unrecognized script command: '%s'\n", command);
Dees_Troy812660f2012-09-20 09:55:17 -0400393 ret_val = 1;
394 }
395 }
396 fclose(fp);
that10ae24f2015-12-26 20:53:51 +0100397 unlink(SCRIPT_FILE_TMP);
Ethan Yonker74db1572015-10-28 12:44:49 -0500398 gui_msg("done_ors=Done processing script file");
Dees_Troy812660f2012-09-20 09:55:17 -0400399 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500400 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(SCRIPT_FILE_TMP)(strerror(errno)));
Dees_Troy812660f2012-09-20 09:55:17 -0400401 return 1;
402 }
Dees_Troy6ed34b72013-01-25 15:01:29 +0000403 if (install_cmd && DataManager::GetIntValue(TW_HAS_INJECTTWRP) == 1 && DataManager::GetIntValue(TW_INJECT_AFTER_ZIP) == 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500404 gui_msg("injecttwrp=Injecting TWRP into boot image...");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400405 TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot");
406 if (Boot == NULL || Boot->Current_File_System != "emmc")
Vojtech Bocek05534202013-09-11 08:11:56 +0200407 TWFunc::Exec_Cmd("injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400408 else {
409 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 +0200410 TWFunc::Exec_Cmd(injectcmd.c_str());
Dees_Troy06b4fe92012-10-16 11:43:20 -0400411 }
Ethan Yonker74db1572015-10-28 12:44:49 -0500412 gui_msg("done=Done.");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400413 }
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000414 if (sideload)
415 ret_val = 1; // Forces booting to the home page after sideload
Dees_Troy812660f2012-09-20 09:55:17 -0400416 return ret_val;
417}
418
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000419int OpenRecoveryScript::Insert_ORS_Command(string Command) {
xiaolu38c3aa72015-05-26 22:55:18 +0800420 ofstream ORSfile(SCRIPT_FILE_TMP, ios_base::app | ios_base::out);
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000421 if (ORSfile.is_open()) {
422 //if (Command.substr(Command.size() - 1, 1) != "\n")
423 // Command += "\n";
Dees_Troy2673cec2013-04-02 20:22:16 +0000424 LOGINFO("Inserting '%s'\n", Command.c_str());
xiaolu38c3aa72015-05-26 22:55:18 +0800425 ORSfile << Command.c_str() << endl;
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000426 ORSfile.close();
427 return 1;
428 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000429 LOGERR("Unable to append '%s' to '%s'\n", Command.c_str(), SCRIPT_FILE_TMP);
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000430 return 0;
431}
432
Dees_Troy83a3b122012-10-01 14:16:43 -0400433int OpenRecoveryScript::Install_Command(string Zip) {
434 // Install zip
435 string ret_string;
436 int ret_val = 0, wipe_cache = 0;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600437 std::vector<PartitionList> Storage_List;
438 string Full_Path;
Dees_Troy83a3b122012-10-01 14:16:43 -0400439
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600440 if (Zip.substr(0, 1) == "@") {
441 // This is a special file that contains a map of blocks on the data partition
442 Full_Path = Zip.substr(1);
443 if (!PartitionManager.Mount_By_Path(Full_Path, true) || !TWFunc::Path_Exists(Full_Path)) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500444 LOGINFO("Unable to install via mapped zip '%s'\n", Full_Path.c_str());
445 gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(Zip));
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600446 return 1;
447 }
Ethan Yonker74db1572015-10-28 12:44:49 -0500448 LOGINFO("Installing mapped zip file '%s'\n", Full_Path.c_str());
449 gui_msg(Msg("installing_zip=Installing zip file '{1}'")(Zip));
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600450 } else if (!TWFunc::Path_Exists(Zip)) {
451 PartitionManager.Mount_All_Storage();
452 PartitionManager.Get_Partition_List("storage", &Storage_List);
453 int listSize = Storage_List.size();
454 for (int i = 0; i < listSize; i++) {
455 if (PartitionManager.Is_Mounted_By_Path(Storage_List.at(i).Mount_Point)) {
456 Full_Path = Storage_List.at(i).Mount_Point + "/" + Zip;
457 if (TWFunc::Path_Exists(Full_Path)) {
458 Zip = Full_Path;
459 break;
460 }
461 Full_Path = Zip;
462 LOGINFO("Trying to find zip '%s' on '%s'...\n", Full_Path.c_str(), Storage_List.at(i).Mount_Point.c_str());
463 ret_string = Locate_Zip_File(Full_Path, Storage_List.at(i).Mount_Point);
464 if (!ret_string.empty()) {
465 Zip = ret_string;
466 break;
467 }
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600468 }
Dees_Troy83a3b122012-10-01 14:16:43 -0400469 }
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600470 if (!TWFunc::Path_Exists(Zip)) {
471 // zip file doesn't exist
472 gui_print("Unable to locate zip file '%s'.\n", Zip.c_str());
473 ret_val = 1;
474 } else
Ethan Yonker74db1572015-10-28 12:44:49 -0500475 gui_msg(Msg("installing_zip=Installing zip file '{1}'")(Zip));
Dees_Troy83a3b122012-10-01 14:16:43 -0400476 }
477
Ethan Yonkeraee144c2015-02-11 16:49:19 -0600478 ret_val = TWinstall_zip(Zip.c_str(), &wipe_cache);
Dees_Troy83a3b122012-10-01 14:16:43 -0400479 if (ret_val != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500480 gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(Zip));
Dees_Troy83a3b122012-10-01 14:16:43 -0400481 ret_val = 1;
482 } else if (wipe_cache)
483 PartitionManager.Wipe_By_Path("/cache");
484
485 return ret_val;
486}
487
Dees_Troy812660f2012-09-20 09:55:17 -0400488string OpenRecoveryScript::Locate_Zip_File(string Zip, string Storage_Root) {
489 string Path = TWFunc::Get_Path(Zip);
490 string File = TWFunc::Get_Filename(Zip);
491 string pathCpy = Path;
492 string wholePath;
493 size_t pos = Path.find("/", 1);
494
495 while (pos != string::npos)
496 {
497 pathCpy = Path.substr(pos, Path.size() - pos);
Matt Mowere96c3c32014-09-19 12:14:37 -0500498 wholePath = pathCpy + File;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600499 LOGINFO("Looking for zip at '%s'\n", wholePath.c_str());
Dees_Troy812660f2012-09-20 09:55:17 -0400500 if (TWFunc::Path_Exists(wholePath))
501 return wholePath;
Matt Mowere96c3c32014-09-19 12:14:37 -0500502 wholePath = Storage_Root + wholePath;
Ethan Yonkerd7adf292014-02-15 16:43:23 -0600503 LOGINFO("Looking for zip at '%s'\n", wholePath.c_str());
Dees_Troy812660f2012-09-20 09:55:17 -0400504 if (TWFunc::Path_Exists(wholePath))
505 return wholePath;
506
507 pos = Path.find("/", pos + 1);
508 }
509 return "";
Dees_Troy83a3b122012-10-01 14:16:43 -0400510}
511
512int OpenRecoveryScript::Backup_Command(string Options) {
513 char value1[SCRIPT_COMMAND_SIZE];
514 int line_len, i;
Dees_Troya13d74f2013-03-24 08:54:55 -0500515 string Backup_List;
Dees_Troy83a3b122012-10-01 14:16:43 -0400516
517 strcpy(value1, Options.c_str());
518
Dees_Troy6ed34b72013-01-25 15:01:29 +0000519 DataManager::SetValue(TW_USE_COMPRESSION_VAR, 0);
520 DataManager::SetValue(TW_SKIP_MD5_GENERATE_VAR, 0);
Dees_Troy83a3b122012-10-01 14:16:43 -0400521
Ethan Yonker74db1572015-10-28 12:44:49 -0500522 gui_msg("select_backup_opt=Setting backup options:");
Dees_Troy83a3b122012-10-01 14:16:43 -0400523 line_len = Options.size();
524 for (i=0; i<line_len; i++) {
525 if (Options.substr(i, 1) == "S" || Options.substr(i, 1) == "s") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500526 Backup_List += "/system;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500527 gui_msg("system=System");
Dees_Troy83a3b122012-10-01 14:16:43 -0400528 } else if (Options.substr(i, 1) == "D" || Options.substr(i, 1) == "d") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500529 Backup_List += "/data;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500530 gui_msg("data=Data");
Dees_Troy83a3b122012-10-01 14:16:43 -0400531 } else if (Options.substr(i, 1) == "C" || Options.substr(i, 1) == "c") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500532 Backup_List += "/cache;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500533 gui_msg("cache=Cache");
Dees_Troy83a3b122012-10-01 14:16:43 -0400534 } else if (Options.substr(i, 1) == "R" || Options.substr(i, 1) == "r") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500535 Backup_List += "/recovery;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500536 gui_msg("recovery=Recovery");
Dees_Troy83a3b122012-10-01 14:16:43 -0400537 } else if (Options.substr(i, 1) == "1") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000538 gui_print("%s\n", "Special1 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400539 } else if (Options.substr(i, 1) == "2") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000540 gui_print("%s\n", "Special2 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400541 } else if (Options.substr(i, 1) == "3") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000542 gui_print("%s\n", "Special3 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400543 } else if (Options.substr(i, 1) == "B" || Options.substr(i, 1) == "b") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500544 Backup_List += "/boot;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500545 gui_msg("boot=Boot");
Dees_Troy83a3b122012-10-01 14:16:43 -0400546 } else if (Options.substr(i, 1) == "A" || Options.substr(i, 1) == "a") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500547 Backup_List += "/and-sec;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500548 gui_msg("android_secure=Android Secure");
Dees_Troy83a3b122012-10-01 14:16:43 -0400549 } else if (Options.substr(i, 1) == "E" || Options.substr(i, 1) == "e") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500550 Backup_List += "/sd-ext;";
Ethan Yonker74db1572015-10-28 12:44:49 -0500551 gui_msg("sdext=SD-EXT");
Dees_Troy83a3b122012-10-01 14:16:43 -0400552 } else if (Options.substr(i, 1) == "O" || Options.substr(i, 1) == "o") {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000553 DataManager::SetValue(TW_USE_COMPRESSION_VAR, 1);
Ethan Yonker74db1572015-10-28 12:44:49 -0500554 gui_msg("compression_on=Compression is on");
Dees_Troy83a3b122012-10-01 14:16:43 -0400555 } else if (Options.substr(i, 1) == "M" || Options.substr(i, 1) == "m") {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000556 DataManager::SetValue(TW_SKIP_MD5_GENERATE_VAR, 1);
Ethan Yonker74db1572015-10-28 12:44:49 -0500557 gui_msg("md5_off=MD5 Generation is off");
Dees_Troy83a3b122012-10-01 14:16:43 -0400558 }
559 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500560 DataManager::SetValue("tw_backup_list", Backup_List);
Dees_Troy83a3b122012-10-01 14:16:43 -0400561 if (!PartitionManager.Run_Backup()) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500562 gui_err("backup_fail=Backup Failed");
Dees_Troy83a3b122012-10-01 14:16:43 -0400563 return 1;
564 }
Matt Mower3c366972015-12-25 19:28:31 -0600565 gui_msg("backup_complete=Backup Complete");
Dees_Troy83a3b122012-10-01 14:16:43 -0400566 return 0;
567}
Dees_Troy6ed34b72013-01-25 15:01:29 +0000568
that10ae24f2015-12-26 20:53:51 +0100569// this is called by main()
Dees_Troy6ed34b72013-01-25 15:01:29 +0000570void OpenRecoveryScript::Run_OpenRecoveryScript(void) {
571 DataManager::SetValue("tw_back", "main");
572 DataManager::SetValue("tw_action", "openrecoveryscript");
that10ae24f2015-12-26 20:53:51 +0100573 DataManager::SetValue("tw_action_param", "");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000574 DataManager::SetValue("tw_has_action2", "0");
575 DataManager::SetValue("tw_action2", "");
576 DataManager::SetValue("tw_action2_param", "");
Ethan Yonker89583ef2015-08-26 09:01:59 -0500577#ifdef TW_OEM_BUILD
Ethan Yonker74db1572015-10-28 12:44:49 -0500578 DataManager::SetValue("tw_action_text1", gui_lookup("running_recovery_commands", "Running Recovery Commands"));
579 DataManager::SetValue("tw_complete_text1", gui_lookup("recovery_commands_complete", "Recovery Commands Complete"));
Ethan Yonker89583ef2015-08-26 09:01:59 -0500580#else
Ethan Yonker74db1572015-10-28 12:44:49 -0500581 DataManager::SetValue("tw_action_text1", gui_lookup("running_ors", "Running OpenRecoveryScript"));
582 DataManager::SetValue("tw_complete_text1", gui_lookup("ors_complete", "OpenRecoveryScript Complete"));
Ethan Yonker89583ef2015-08-26 09:01:59 -0500583#endif
584 DataManager::SetValue("tw_action_text2", "");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000585 DataManager::SetValue("tw_has_cancel", 0);
586 DataManager::SetValue("tw_show_reboot", 0);
Ethan Yonkerfd0439e2015-01-14 11:08:13 -0600587 if (gui_startPage("action_page", 0, 1) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000588 LOGERR("Failed to load OpenRecoveryScript GUI page.\n");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000589 }
Dees_Troy6bdcbb12013-01-26 14:07:43 +0000590}
that10ae24f2015-12-26 20:53:51 +0100591
592// this is called by the "openrecoveryscript" GUI action called via action page from Run_OpenRecoveryScript
593int OpenRecoveryScript::Run_OpenRecoveryScript_Action() {
594 int op_status = 1;
595 // Check for the SCRIPT_FILE_TMP first as these are AOSP recovery commands
596 // that we converted to ORS commands during boot in recovery.cpp.
597 // Run those first.
598 int reboot = 0;
599 if (TWFunc::Path_Exists(SCRIPT_FILE_TMP)) {
600 gui_msg("running_recovery_commands=Running Recovery Commands");
601 if (OpenRecoveryScript::run_script_file() == 0) {
602 reboot = 1;
603 op_status = 0;
604 }
605 }
606 // Check for the ORS file in /cache and attempt to run those commands.
607 if (OpenRecoveryScript::check_for_script_file()) {
608 gui_msg("running_ors=Running OpenRecoveryScript");
609 if (OpenRecoveryScript::run_script_file() == 0) {
610 reboot = 1;
611 op_status = 0;
612 }
613 }
614 if (reboot) {
615 // Disable stock recovery reflashing
616 TWFunc::Disable_Stock_Recovery_Replace();
617 usleep(2000000); // Sleep for 2 seconds before rebooting
618 TWFunc::tw_reboot(rb_system);
619 usleep(5000000); // Sleep for 5 seconds to allow reboot to occur
620 } else {
621 DataManager::SetValue("tw_page_done", 1);
622 }
623 return op_status;
624}
625
626// this is called by the "twcmd" GUI action when a command is received via FIFO from the "twrp" command line tool
627void OpenRecoveryScript::Run_CLI_Command(const char* command) {
628 if (strlen(command) > 11 && strncmp(command, "runscript", 9) == 0) {
629 const char* filename = command + 10;
630 if (OpenRecoveryScript::copy_script_file(filename) == 0) {
631 LOGINFO("Unable to copy script file\n");
632 } else {
633 OpenRecoveryScript::run_script_file();
634 }
635 } else if (strlen(command) > 5 && strncmp(command, "get", 3) == 0) {
636 const char* varname = command + 4;
637 string value;
638 DataManager::GetValue(varname, value);
639 gui_print("%s = %s\n", varname, value.c_str());
640 } else if (strlen(command) > 9 && strncmp(command, "decrypt", 7) == 0) {
641 const char* pass = command + 8;
642 gui_msg("decrypt_cmd=Attempting to decrypt data partition via command line.");
643 if (PartitionManager.Decrypt_Device(pass) == 0) {
644 // set_page_done = 1; // done by singleaction_page anyway
645 }
646 } else if (OpenRecoveryScript::Insert_ORS_Command(command)) {
647 OpenRecoveryScript::run_script_file();
648 }
649
650 // let the GUI close the output fd and restart the command listener
651 call_after_cli_command();
652 LOGINFO("Done reading ORS command from command line\n");
653}