blob: fee6fe9a4cd173dcafeaf2e333cf283ce5df366f [file] [log] [blame]
Dees_Troy812660f2012-09-20 09:55:17 -04001/* OpenRecoveryScript class for TWRP
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15 * 02110-1301, USA.
16 *
17 * The code was written from scratch by Dees_Troy dees_troy at
18 * yahoo
19 *
20 * Copyright (c) 2012
21 */
22
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <sys/stat.h>
27#include <sys/vfs.h>
28#include <unistd.h>
29#include <vector>
30#include <dirent.h>
31#include <time.h>
32#include <errno.h>
Dees_Troy01b6d0c2013-01-22 01:41:09 +000033#include <iostream>
34#include <fstream>
Dees_Troy812660f2012-09-20 09:55:17 -040035
36#include "twrp-functions.hpp"
37#include "partitions.hpp"
Dees_Troy2673cec2013-04-02 20:22:16 +000038#include "twcommon.h"
Dees_Troy812660f2012-09-20 09:55:17 -040039#include "openrecoveryscript.hpp"
40#include "variables.h"
Dees_Troy4fc00242013-01-17 19:22:12 +000041#include "adb_install.h"
Dees_Troy6ed34b72013-01-25 15:01:29 +000042#include "data.hpp"
Dees_Troy812660f2012-09-20 09:55:17 -040043extern "C" {
Dees_Troy01b6d0c2013-01-22 01:41:09 +000044 #include "twinstall.h"
45 #include "gui/gui.h"
46 int TWinstall_zip(const char* path, int* wipe_cache);
Dees_Troy812660f2012-09-20 09:55:17 -040047}
48
Dees_Troy812660f2012-09-20 09:55:17 -040049#define SCRIPT_COMMAND_SIZE 512
50
51int OpenRecoveryScript::check_for_script_file(void) {
Dees_Troy812660f2012-09-20 09:55:17 -040052 if (!PartitionManager.Mount_By_Path(SCRIPT_FILE_CACHE, false)) {
Dees_Troy2673cec2013-04-02 20:22:16 +000053 LOGERR("Unable to mount /cache for OpenRecoveryScript support.\n");
Dees_Troy812660f2012-09-20 09:55:17 -040054 return 0;
55 }
56 if (TWFunc::Path_Exists(SCRIPT_FILE_CACHE)) {
Dees_Troy2673cec2013-04-02 20:22:16 +000057 LOGINFO("Script file found: '%s'\n", SCRIPT_FILE_CACHE);
Dees_Troy812660f2012-09-20 09:55:17 -040058 // Copy script file to /tmp
bigbiff bigbiff9c754052013-01-09 09:09:08 -050059 TWFunc::copy_file(SCRIPT_FILE_CACHE, SCRIPT_FILE_TMP, 0755);
Dees_Troy812660f2012-09-20 09:55:17 -040060 // Delete the file from /cache
bigbiff bigbiff9c754052013-01-09 09:09:08 -050061 unlink(SCRIPT_FILE_CACHE);
Dees_Troy812660f2012-09-20 09:55:17 -040062 return 1;
63 }
64 return 0;
65}
66
67int OpenRecoveryScript::run_script_file(void) {
68 FILE *fp = fopen(SCRIPT_FILE_TMP, "r");
Dees_Troy4bc09ae2013-01-18 17:00:54 +000069 int ret_val = 0, cindex, line_len, i, remove_nl, install_cmd = 0, sideload = 0;
Dees_Troy812660f2012-09-20 09:55:17 -040070 char script_line[SCRIPT_COMMAND_SIZE], command[SCRIPT_COMMAND_SIZE],
71 value[SCRIPT_COMMAND_SIZE], mount[SCRIPT_COMMAND_SIZE],
72 value1[SCRIPT_COMMAND_SIZE], value2[SCRIPT_COMMAND_SIZE];
73 char *val_start, *tok;
74
75 if (fp != NULL) {
Dees_Troy6ed34b72013-01-25 15:01:29 +000076 DataManager::SetValue(TW_SIMULATE_ACTIONS, 0);
Dees_Troy6bdcbb12013-01-26 14:07:43 +000077 DataManager::SetValue("ui_progress", 0); // Reset the progress bar
Dees_Troy812660f2012-09-20 09:55:17 -040078 while (fgets(script_line, SCRIPT_COMMAND_SIZE, fp) != NULL && ret_val == 0) {
79 cindex = 0;
80 line_len = strlen(script_line);
81 if (line_len < 2)
82 continue; // there's a blank line or line is too short to contain a command
Dees_Troy2673cec2013-04-02 20:22:16 +000083 //gui_print("script line: '%s'\n", script_line);
Dees_Troy812660f2012-09-20 09:55:17 -040084 for (i=0; i<line_len; i++) {
85 if ((int)script_line[i] == 32) {
86 cindex = i;
87 i = line_len;
88 }
89 }
90 memset(command, 0, sizeof(command));
91 memset(value, 0, sizeof(value));
92 if ((int)script_line[line_len - 1] == 10)
93 remove_nl = 2;
94 else
95 remove_nl = 1;
96 if (cindex != 0) {
97 strncpy(command, script_line, cindex);
Dees_Troy2673cec2013-04-02 20:22:16 +000098 LOGINFO("command is: '%s' and ", command);
Dees_Troy812660f2012-09-20 09:55:17 -040099 val_start = script_line;
100 val_start += cindex + 1;
bigbiff bigbiffc03121d2013-09-09 19:14:35 -0400101 if ((int) *val_start == 32)
102 val_start++; //get rid of space
bigbiff bigbiff72e95542013-08-29 21:01:02 -0400103 if ((int) *val_start == 51)
104 val_start++; //get rid of = at the beginning
Dees_Troy812660f2012-09-20 09:55:17 -0400105 strncpy(value, val_start, line_len - cindex - remove_nl);
Dees_Troy2673cec2013-04-02 20:22:16 +0000106 LOGINFO("value is: '%s'\n", value);
Dees_Troy812660f2012-09-20 09:55:17 -0400107 } else {
108 strncpy(command, script_line, line_len - remove_nl + 1);
Dees_Troy2673cec2013-04-02 20:22:16 +0000109 gui_print("command is: '%s' and there is no value\n", command);
Dees_Troy812660f2012-09-20 09:55:17 -0400110 }
111 if (strcmp(command, "install") == 0) {
Dees_Troy83a3b122012-10-01 14:16:43 -0400112 // Install Zip
Dees_Troy6ed34b72013-01-25 15:01:29 +0000113 DataManager::SetValue("tw_action_text2", "Installing Zip");
Dees_Troydc8bc1b2013-01-17 01:39:28 +0000114 PartitionManager.Mount_All_Storage();
Dees_Troy83a3b122012-10-01 14:16:43 -0400115 ret_val = Install_Command(value);
Dees_Troy06b4fe92012-10-16 11:43:20 -0400116 install_cmd = -1;
Dees_Troy812660f2012-09-20 09:55:17 -0400117 } else if (strcmp(command, "wipe") == 0) {
118 // Wipe
119 if (strcmp(value, "cache") == 0 || strcmp(value, "/cache") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000120 gui_print("-- Wiping Cache Partition...\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400121 PartitionManager.Wipe_By_Path("/cache");
Dees_Troy2673cec2013-04-02 20:22:16 +0000122 gui_print("-- Cache Partition Wipe Complete!\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400123 } else if (strcmp(value, "dalvik") == 0 || strcmp(value, "dalvick") == 0 || strcmp(value, "dalvikcache") == 0 || strcmp(value, "dalvickcache") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000124 gui_print("-- Wiping Dalvik Cache...\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400125 PartitionManager.Wipe_Dalvik_Cache();
Dees_Troy2673cec2013-04-02 20:22:16 +0000126 gui_print("-- Dalvik Cache Wipe Complete!\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400127 } else if (strcmp(value, "data") == 0 || strcmp(value, "/data") == 0 || strcmp(value, "factory") == 0 || strcmp(value, "factoryreset") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000128 gui_print("-- Wiping Data Partition...\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400129 PartitionManager.Factory_Reset();
Dees_Troy2673cec2013-04-02 20:22:16 +0000130 gui_print("-- Data Partition Wipe Complete!\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400131 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000132 LOGERR("Error with wipe command value: '%s'\n", value);
Dees_Troy812660f2012-09-20 09:55:17 -0400133 ret_val = 1;
134 }
135 } else if (strcmp(command, "backup") == 0) {
136 // Backup
Dees_Troy6ed34b72013-01-25 15:01:29 +0000137 DataManager::SetValue("tw_action_text2", "Backing Up");
Dees_Troy812660f2012-09-20 09:55:17 -0400138 tok = strtok(value, " ");
139 strcpy(value1, tok);
140 tok = strtok(NULL, " ");
141 if (tok != NULL) {
142 memset(value2, 0, sizeof(value2));
143 strcpy(value2, tok);
144 line_len = strlen(tok);
145 if ((int)value2[line_len - 1] == 10 || (int)value2[line_len - 1] == 13) {
146 if ((int)value2[line_len - 1] == 10 || (int)value2[line_len - 1] == 13)
147 remove_nl = 2;
148 else
149 remove_nl = 1;
150 } else
151 remove_nl = 0;
152 strncpy(value2, tok, line_len - remove_nl);
Dees_Troy6ed34b72013-01-25 15:01:29 +0000153 DataManager::SetValue(TW_BACKUP_NAME, value2);
Dees_Troy2673cec2013-04-02 20:22:16 +0000154 gui_print("Backup folder set to '%s'\n", value2);
Dees_Troyc9ff7a32012-09-27 10:09:41 -0400155 if (PartitionManager.Check_Backup_Name(true) != 0) {
156 ret_val = 1;
157 continue;
158 }
Dees_Troy812660f2012-09-20 09:55:17 -0400159 } else {
160 char empt[50];
161 strcpy(empt, "(Current Date)");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000162 DataManager::SetValue(TW_BACKUP_NAME, empt);
Dees_Troy812660f2012-09-20 09:55:17 -0400163 }
Dees_Troy83a3b122012-10-01 14:16:43 -0400164 ret_val = Backup_Command(value1);
Dees_Troy812660f2012-09-20 09:55:17 -0400165 } else if (strcmp(command, "restore") == 0) {
166 // Restore
Dees_Troy6ed34b72013-01-25 15:01:29 +0000167 DataManager::SetValue("tw_action_text2", "Restoring");
Dees_Troy812660f2012-09-20 09:55:17 -0400168 PartitionManager.Mount_All_Storage();
Dees_Troy6ed34b72013-01-25 15:01:29 +0000169 DataManager::SetValue(TW_SKIP_MD5_CHECK_VAR, 0);
Dees_Troydc8bc1b2013-01-17 01:39:28 +0000170 char folder_path[512], partitions[512];
Dees_Troy812660f2012-09-20 09:55:17 -0400171
172 string val = value, restore_folder, restore_partitions;
173 size_t pos = val.find_last_of(" ");
174 if (pos == string::npos) {
Dees_Troydc8bc1b2013-01-17 01:39:28 +0000175 restore_folder = value;
176 partitions[0] = '\0';
177 } else {
178 restore_folder = val.substr(0, pos);
179 restore_partitions = val.substr(pos + 1, val.size() - pos - 1);
180 strcpy(partitions, restore_partitions.c_str());
Dees_Troy812660f2012-09-20 09:55:17 -0400181 }
Dees_Troy812660f2012-09-20 09:55:17 -0400182 strcpy(folder_path, restore_folder.c_str());
Dees_Troy2673cec2013-04-02 20:22:16 +0000183 LOGINFO("Restore folder is: '%s' and partitions: '%s'\n", folder_path, partitions);
184 gui_print("Restoring '%s'\n", folder_path);
Dees_Troy812660f2012-09-20 09:55:17 -0400185
186 if (folder_path[0] != '/') {
187 char backup_folder[512];
Dees_Troy6ed34b72013-01-25 15:01:29 +0000188 string folder_var;
189 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, folder_var);
190 sprintf(backup_folder, "%s/%s", folder_var.c_str(), folder_path);
Dees_Troy2673cec2013-04-02 20:22:16 +0000191 LOGINFO("Restoring relative path: '%s'\n", backup_folder);
Dees_Troy812660f2012-09-20 09:55:17 -0400192 if (!TWFunc::Path_Exists(backup_folder)) {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000193 if (DataManager::GetIntValue(TW_HAS_DUAL_STORAGE)) {
194 if (DataManager::GetIntValue(TW_USE_EXTERNAL_STORAGE)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000195 LOGINFO("Backup folder '%s' not found on external storage, trying internal...\n", folder_path);
Dees_Troy6ed34b72013-01-25 15:01:29 +0000196 DataManager::SetValue(TW_USE_EXTERNAL_STORAGE, 0);
Dees_Troy812660f2012-09-20 09:55:17 -0400197 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000198 LOGINFO("Backup folder '%s' not found on internal storage, trying external...\n", folder_path);
Dees_Troy6ed34b72013-01-25 15:01:29 +0000199 DataManager::SetValue(TW_USE_EXTERNAL_STORAGE, 1);
Dees_Troy812660f2012-09-20 09:55:17 -0400200 }
Dees_Troy6ed34b72013-01-25 15:01:29 +0000201 DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, folder_var);
202 sprintf(backup_folder, "%s/%s", folder_var.c_str(), folder_path);
Dees_Troy2673cec2013-04-02 20:22:16 +0000203 LOGINFO("2Restoring relative path: '%s'\n", backup_folder);
Dees_Troy812660f2012-09-20 09:55:17 -0400204 }
205 }
206 strcpy(folder_path, backup_folder);
207 } else {
208 if (folder_path[strlen(folder_path) - 1] == '/')
209 strcat(folder_path, ".");
210 else
211 strcat(folder_path, "/.");
212 }
213 if (!TWFunc::Path_Exists(folder_path)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000214 gui_print("Unable to locate backup '%s'\n", folder_path);
Dees_Troy812660f2012-09-20 09:55:17 -0400215 ret_val = 1;
216 continue;
217 }
Dees_Troy6ed34b72013-01-25 15:01:29 +0000218 DataManager::SetValue("tw_restore", folder_path);
Dees_Troy812660f2012-09-20 09:55:17 -0400219
220 PartitionManager.Set_Restore_Files(folder_path);
Dees_Troya13d74f2013-03-24 08:54:55 -0500221 string Partition_List;
Dees_Troy83bd4832013-05-04 12:39:56 +0000222 int is_encrypted = 0;
223 DataManager::GetValue("tw_restore_encrypted", is_encrypted);
Dees_Troya13d74f2013-03-24 08:54:55 -0500224 DataManager::GetValue("tw_restore_list", Partition_List);
Dees_Troy812660f2012-09-20 09:55:17 -0400225 if (strlen(partitions) != 0) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500226 string Restore_List;
Dees_Troy812660f2012-09-20 09:55:17 -0400227
228 memset(value2, 0, sizeof(value2));
229 strcpy(value2, partitions);
Dees_Troy2673cec2013-04-02 20:22:16 +0000230 gui_print("Setting restore options: '%s':\n", value2);
Dees_Troy812660f2012-09-20 09:55:17 -0400231 line_len = strlen(value2);
232 for (i=0; i<line_len; i++) {
Dees_Troya13d74f2013-03-24 08:54:55 -0500233 if ((value2[i] == 'S' || value2[i] == 's') && Partition_List.find("/system;") != string::npos) {
234 Restore_List += "/system;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000235 gui_print("System\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500236 } else if ((value2[i] == 'D' || value2[i] == 'd') && Partition_List.find("/data;") != string::npos) {
237 Restore_List += "/data;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000238 gui_print("Data\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500239 } else if ((value2[i] == 'C' || value2[i] == 'c') && Partition_List.find("/cache;") != string::npos) {
240 Restore_List += "/cache;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000241 gui_print("Cache\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500242 } else if ((value2[i] == 'R' || value2[i] == 'r') && Partition_List.find("/recovery;") != string::npos) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000243 gui_print("Recovery -- Not allowed to restore recovery\n");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000244 } else if (value2[i] == '1' && DataManager::GetIntValue(TW_RESTORE_SP1_VAR) > 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000245 gui_print("%s\n", "Special1 -- No Longer Supported...");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000246 } else if (value2[i] == '2' && DataManager::GetIntValue(TW_RESTORE_SP2_VAR) > 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000247 gui_print("%s\n", "Special2 -- No Longer Supported...");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000248 } else if (value2[i] == '3' && DataManager::GetIntValue(TW_RESTORE_SP3_VAR) > 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000249 gui_print("%s\n", "Special3 -- No Longer Supported...");
Dees_Troya13d74f2013-03-24 08:54:55 -0500250 } else if ((value2[i] == 'B' || value2[i] == 'b') && Partition_List.find("/boot;") != string::npos) {
251 Restore_List += "/boot;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000252 gui_print("Boot\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500253 } else if ((value2[i] == 'A' || value2[i] == 'a') && Partition_List.find("/and-sec;") != string::npos) {
254 Restore_List += "/and-sec;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000255 gui_print("Android Secure\n");
Dees_Troya13d74f2013-03-24 08:54:55 -0500256 } else if ((value2[i] == 'E' || value2[i] == 'e') && Partition_List.find("/sd-ext;") != string::npos) {
257 Restore_List += "/sd-ext;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000258 gui_print("SD-Ext\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400259 } else if (value2[i] == 'M' || value2[i] == 'm') {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000260 DataManager::SetValue(TW_SKIP_MD5_CHECK_VAR, 1);
Dees_Troy2673cec2013-04-02 20:22:16 +0000261 gui_print("MD5 check skip is on\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400262 }
263 }
264
Dees_Troya13d74f2013-03-24 08:54:55 -0500265 DataManager::SetValue("tw_restore_selected", Restore_List);
266 } else {
267 DataManager::SetValue("tw_restore_selected", Partition_List);
Dees_Troy812660f2012-09-20 09:55:17 -0400268 }
Dees_Troy83bd4832013-05-04 12:39:56 +0000269 if (is_encrypted) {
270 LOGERR("Unable to use OpenRecoveryScript to restore an encrypted backup.\n");
271 ret_val = 1;
272 } else if (!PartitionManager.Run_Restore(folder_path))
Dees_Troya13d74f2013-03-24 08:54:55 -0500273 ret_val = 1;
274 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000275 gui_print("Restore complete!\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400276 } else if (strcmp(command, "mount") == 0) {
277 // Mount
Dees_Troy6ed34b72013-01-25 15:01:29 +0000278 DataManager::SetValue("tw_action_text2", "Mounting");
Dees_Troy812660f2012-09-20 09:55:17 -0400279 if (value[0] != '/') {
280 strcpy(mount, "/");
281 strcat(mount, value);
282 } else
283 strcpy(mount, value);
284 if (PartitionManager.Mount_By_Path(mount, true))
Dees_Troy2673cec2013-04-02 20:22:16 +0000285 gui_print("Mounted '%s'\n", mount);
Dees_Troy812660f2012-09-20 09:55:17 -0400286 } else if (strcmp(command, "unmount") == 0 || strcmp(command, "umount") == 0) {
287 // Unmount
Dees_Troy6ed34b72013-01-25 15:01:29 +0000288 DataManager::SetValue("tw_action_text2", "Unmounting");
Dees_Troy812660f2012-09-20 09:55:17 -0400289 if (value[0] != '/') {
290 strcpy(mount, "/");
291 strcat(mount, value);
292 } else
293 strcpy(mount, value);
294 if (PartitionManager.UnMount_By_Path(mount, true))
Dees_Troy2673cec2013-04-02 20:22:16 +0000295 gui_print("Unmounted '%s'\n", mount);
Dees_Troy812660f2012-09-20 09:55:17 -0400296 } else if (strcmp(command, "set") == 0) {
297 // Set value
298 tok = strtok(value, " ");
299 strcpy(value1, tok);
300 tok = strtok(NULL, " ");
301 strcpy(value2, tok);
Dees_Troy2673cec2013-04-02 20:22:16 +0000302 gui_print("Setting '%s' to '%s'\n", value1, value2);
Dees_Troy6ed34b72013-01-25 15:01:29 +0000303 DataManager::SetValue(value1, value2);
Dees_Troy812660f2012-09-20 09:55:17 -0400304 } else if (strcmp(command, "mkdir") == 0) {
305 // Make directory (recursive)
Dees_Troy6ed34b72013-01-25 15:01:29 +0000306 DataManager::SetValue("tw_action_text2", "Making Directory");
Dees_Troy2673cec2013-04-02 20:22:16 +0000307 gui_print("Making directory (recursive): '%s'\n", value);
Dees_Troy812660f2012-09-20 09:55:17 -0400308 if (TWFunc::Recursive_Mkdir(value)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000309 LOGERR("Unable to create folder: '%s'\n", value);
Dees_Troy812660f2012-09-20 09:55:17 -0400310 ret_val = 1;
311 }
312 } else if (strcmp(command, "reboot") == 0) {
313 // Reboot
314 } else if (strcmp(command, "cmd") == 0) {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000315 DataManager::SetValue("tw_action_text2", "Running Command");
Dees_Troy812660f2012-09-20 09:55:17 -0400316 if (cindex != 0) {
Vojtech Bocek05534202013-09-11 08:11:56 +0200317 TWFunc::Exec_Cmd(value);
Dees_Troy812660f2012-09-20 09:55:17 -0400318 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000319 LOGERR("No value given for cmd\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400320 }
321 } else if (strcmp(command, "print") == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000322 gui_print("%s\n", value);
Dees_Troy4fc00242013-01-17 19:22:12 +0000323 } else if (strcmp(command, "sideload") == 0) {
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000324 // ADB Sideload
Dees_Troy6ed34b72013-01-25 15:01:29 +0000325 DataManager::SetValue("tw_action_text2", "ADB Sideload");
326 install_cmd = -1;
327
328 int wipe_cache = 0;
329 string result, Sideload_File;
330
331 if (!PartitionManager.Mount_Current_Storage(true)) {
332 ret_val = 1; // failure
333 } else {
334 Sideload_File = DataManager::GetCurrentStoragePath() + "/sideload.zip";
335 if (TWFunc::Path_Exists(Sideload_File)) {
336 unlink(Sideload_File.c_str());
337 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000338 gui_print("Starting ADB sideload feature...\n");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000339 DataManager::SetValue("tw_has_cancel", 1);
340 DataManager::SetValue("tw_cancel_action", "adbsideloadcancel");
Dees_Troy2673cec2013-04-02 20:22:16 +0000341 ret_val = apply_from_adb(Sideload_File.c_str());
Dees_Troy6ed34b72013-01-25 15:01:29 +0000342 DataManager::SetValue("tw_has_cancel", 0);
343 if (ret_val != 0)
344 ret_val = 1; // failure
Dees_Troy2673cec2013-04-02 20:22:16 +0000345 else if (TWinstall_zip(Sideload_File.c_str(), &wipe_cache) == 0) {
346 if (wipe_cache)
347 PartitionManager.Wipe_By_Path("/cache");
348 } else {
349 ret_val = 1; // failure
350 }
Dees_Troy6ed34b72013-01-25 15:01:29 +0000351 sideload = 1; // Causes device to go to the home screen afterwards
Dees_Troy2673cec2013-04-02 20:22:16 +0000352 gui_print("Sideload finished.\n");
Dees_Troy4fc00242013-01-17 19:22:12 +0000353 }
Dees_Troy812660f2012-09-20 09:55:17 -0400354 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000355 LOGERR("Unrecognized script command: '%s'\n", command);
Dees_Troy812660f2012-09-20 09:55:17 -0400356 ret_val = 1;
357 }
358 }
359 fclose(fp);
Dees_Troy2673cec2013-04-02 20:22:16 +0000360 gui_print("Done processing script file\n");
Dees_Troy812660f2012-09-20 09:55:17 -0400361 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000362 LOGERR("Error opening script file '%s'\n", SCRIPT_FILE_TMP);
Dees_Troy812660f2012-09-20 09:55:17 -0400363 return 1;
364 }
Dees_Troy6ed34b72013-01-25 15:01:29 +0000365 if (install_cmd && DataManager::GetIntValue(TW_HAS_INJECTTWRP) == 1 && DataManager::GetIntValue(TW_INJECT_AFTER_ZIP) == 1) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000366 gui_print("Injecting TWRP into boot image...\n");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400367 TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot");
368 if (Boot == NULL || Boot->Current_File_System != "emmc")
Vojtech Bocek05534202013-09-11 08:11:56 +0200369 TWFunc::Exec_Cmd("injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400370 else {
371 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 +0200372 TWFunc::Exec_Cmd(injectcmd.c_str());
Dees_Troy06b4fe92012-10-16 11:43:20 -0400373 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000374 gui_print("TWRP injection complete.\n");
Dees_Troy06b4fe92012-10-16 11:43:20 -0400375 }
Dees_Troy4bc09ae2013-01-18 17:00:54 +0000376 if (sideload)
377 ret_val = 1; // Forces booting to the home page after sideload
Dees_Troy812660f2012-09-20 09:55:17 -0400378 return ret_val;
379}
380
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000381int OpenRecoveryScript::Insert_ORS_Command(string Command) {
382 ofstream ORSfile(SCRIPT_FILE_TMP);
383 if (ORSfile.is_open()) {
384 //if (Command.substr(Command.size() - 1, 1) != "\n")
385 // Command += "\n";
Dees_Troy2673cec2013-04-02 20:22:16 +0000386 LOGINFO("Inserting '%s'\n", Command.c_str());
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000387 ORSfile << Command.c_str();
388 ORSfile.close();
389 return 1;
390 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000391 LOGERR("Unable to append '%s' to '%s'\n", Command.c_str(), SCRIPT_FILE_TMP);
Dees_Troy01b6d0c2013-01-22 01:41:09 +0000392 return 0;
393}
394
Dees_Troy83a3b122012-10-01 14:16:43 -0400395int OpenRecoveryScript::Install_Command(string Zip) {
396 // Install zip
397 string ret_string;
398 int ret_val = 0, wipe_cache = 0;
399
400 PartitionManager.Mount_All_Storage();
401 if (Zip.substr(0, 1) != "/") {
402 // Relative path given
403 string Full_Path;
404
Dees_Troy6ed34b72013-01-25 15:01:29 +0000405 Full_Path = DataManager::GetCurrentStoragePath();
Dees_Troy83a3b122012-10-01 14:16:43 -0400406 Full_Path += "/" + Zip;
Dees_Troy2673cec2013-04-02 20:22:16 +0000407 LOGINFO("Full zip path: '%s'\n", Full_Path.c_str());
Dees_Troy83a3b122012-10-01 14:16:43 -0400408 if (!TWFunc::Path_Exists(Full_Path)) {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000409 ret_string = Locate_Zip_File(Full_Path, DataManager::GetCurrentStoragePath());
Dees_Troy83a3b122012-10-01 14:16:43 -0400410 if (!ret_string.empty()) {
411 Full_Path = ret_string;
Dees_Troy6ed34b72013-01-25 15:01:29 +0000412 } else if (DataManager::GetIntValue(TW_HAS_DUAL_STORAGE)) {
413 if (DataManager::GetIntValue(TW_USE_EXTERNAL_STORAGE)) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000414 LOGINFO("Zip file not found on external storage, trying internal...\n");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000415 DataManager::SetValue(TW_USE_EXTERNAL_STORAGE, 0);
Dees_Troy83a3b122012-10-01 14:16:43 -0400416 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000417 LOGINFO("Zip file not found on internal storage, trying external...\n");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000418 DataManager::SetValue(TW_USE_EXTERNAL_STORAGE, 1);
Dees_Troy83a3b122012-10-01 14:16:43 -0400419 }
Dees_Troy6ed34b72013-01-25 15:01:29 +0000420 Full_Path = DataManager::GetCurrentStoragePath();
Dees_Troy83a3b122012-10-01 14:16:43 -0400421 Full_Path += "/" + Zip;
Dees_Troy2673cec2013-04-02 20:22:16 +0000422 LOGINFO("Full zip path: '%s'\n", Full_Path.c_str());
Dees_Troy6ed34b72013-01-25 15:01:29 +0000423 ret_string = Locate_Zip_File(Full_Path, DataManager::GetCurrentStoragePath());
Dees_Troy83a3b122012-10-01 14:16:43 -0400424 if (!ret_string.empty())
425 Full_Path = ret_string;
426 }
427 }
428 Zip = Full_Path;
429 } else {
430 // Full path given
431 if (!TWFunc::Path_Exists(Zip)) {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000432 ret_string = Locate_Zip_File(Zip, DataManager::GetCurrentStoragePath());
Dees_Troy83a3b122012-10-01 14:16:43 -0400433 if (!ret_string.empty())
434 Zip = ret_string;
435 }
436 }
437
438 if (!TWFunc::Path_Exists(Zip)) {
439 // zip file doesn't exist
Dees_Troy2673cec2013-04-02 20:22:16 +0000440 gui_print("Unable to locate zip file '%s'.\n", Zip.c_str());
Dees_Troy83a3b122012-10-01 14:16:43 -0400441 ret_val = 1;
442 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000443 gui_print("Installing zip file '%s'\n", Zip.c_str());
Dees_Troy83a3b122012-10-01 14:16:43 -0400444 ret_val = TWinstall_zip(Zip.c_str(), &wipe_cache);
445 }
446 if (ret_val != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000447 LOGERR("Error installing zip file '%s'\n", Zip.c_str());
Dees_Troy83a3b122012-10-01 14:16:43 -0400448 ret_val = 1;
449 } else if (wipe_cache)
450 PartitionManager.Wipe_By_Path("/cache");
451
452 return ret_val;
453}
454
Dees_Troy812660f2012-09-20 09:55:17 -0400455string OpenRecoveryScript::Locate_Zip_File(string Zip, string Storage_Root) {
456 string Path = TWFunc::Get_Path(Zip);
457 string File = TWFunc::Get_Filename(Zip);
458 string pathCpy = Path;
459 string wholePath;
460 size_t pos = Path.find("/", 1);
461
462 while (pos != string::npos)
463 {
464 pathCpy = Path.substr(pos, Path.size() - pos);
465 wholePath = pathCpy + "/" + File;
466 if (TWFunc::Path_Exists(wholePath))
467 return wholePath;
468 wholePath = Storage_Root + "/" + wholePath;
469 if (TWFunc::Path_Exists(wholePath))
470 return wholePath;
471
472 pos = Path.find("/", pos + 1);
473 }
474 return "";
Dees_Troy83a3b122012-10-01 14:16:43 -0400475}
476
477int OpenRecoveryScript::Backup_Command(string Options) {
478 char value1[SCRIPT_COMMAND_SIZE];
479 int line_len, i;
Dees_Troya13d74f2013-03-24 08:54:55 -0500480 string Backup_List;
Dees_Troy83a3b122012-10-01 14:16:43 -0400481
482 strcpy(value1, Options.c_str());
483
Dees_Troy6ed34b72013-01-25 15:01:29 +0000484 DataManager::SetValue(TW_USE_COMPRESSION_VAR, 0);
485 DataManager::SetValue(TW_SKIP_MD5_GENERATE_VAR, 0);
Dees_Troy83a3b122012-10-01 14:16:43 -0400486
Dees_Troy2673cec2013-04-02 20:22:16 +0000487 gui_print("Setting backup options:\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400488 line_len = Options.size();
489 for (i=0; i<line_len; i++) {
490 if (Options.substr(i, 1) == "S" || Options.substr(i, 1) == "s") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500491 Backup_List += "/system;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000492 gui_print("System\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400493 } else if (Options.substr(i, 1) == "D" || Options.substr(i, 1) == "d") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500494 Backup_List += "/data;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000495 gui_print("Data\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400496 } else if (Options.substr(i, 1) == "C" || Options.substr(i, 1) == "c") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500497 Backup_List += "/cache;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000498 gui_print("Cache\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400499 } else if (Options.substr(i, 1) == "R" || Options.substr(i, 1) == "r") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500500 Backup_List += "/recovery;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000501 gui_print("Recovery\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400502 } else if (Options.substr(i, 1) == "1") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000503 gui_print("%s\n", "Special1 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400504 } else if (Options.substr(i, 1) == "2") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000505 gui_print("%s\n", "Special2 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400506 } else if (Options.substr(i, 1) == "3") {
Dees_Troy2673cec2013-04-02 20:22:16 +0000507 gui_print("%s\n", "Special3 -- No Longer Supported...");
Dees_Troy83a3b122012-10-01 14:16:43 -0400508 } else if (Options.substr(i, 1) == "B" || Options.substr(i, 1) == "b") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500509 Backup_List += "/boot;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000510 gui_print("Boot\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400511 } else if (Options.substr(i, 1) == "A" || Options.substr(i, 1) == "a") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500512 Backup_List += "/and-sec;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000513 gui_print("Android Secure\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400514 } else if (Options.substr(i, 1) == "E" || Options.substr(i, 1) == "e") {
Dees_Troya13d74f2013-03-24 08:54:55 -0500515 Backup_List += "/sd-ext;";
Dees_Troy2673cec2013-04-02 20:22:16 +0000516 gui_print("SD-Ext\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400517 } else if (Options.substr(i, 1) == "O" || Options.substr(i, 1) == "o") {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000518 DataManager::SetValue(TW_USE_COMPRESSION_VAR, 1);
Dees_Troy2673cec2013-04-02 20:22:16 +0000519 gui_print("Compression is on\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400520 } else if (Options.substr(i, 1) == "M" || Options.substr(i, 1) == "m") {
Dees_Troy6ed34b72013-01-25 15:01:29 +0000521 DataManager::SetValue(TW_SKIP_MD5_GENERATE_VAR, 1);
Dees_Troy2673cec2013-04-02 20:22:16 +0000522 gui_print("MD5 Generation is off\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400523 }
524 }
Dees_Troya13d74f2013-03-24 08:54:55 -0500525 DataManager::SetValue("tw_backup_list", Backup_List);
Dees_Troy83a3b122012-10-01 14:16:43 -0400526 if (!PartitionManager.Run_Backup()) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000527 LOGERR("Backup failed!\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400528 return 1;
529 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000530 gui_print("Backup complete!\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400531 return 0;
532}
Dees_Troy6ed34b72013-01-25 15:01:29 +0000533
534void OpenRecoveryScript::Run_OpenRecoveryScript(void) {
535 DataManager::SetValue("tw_back", "main");
536 DataManager::SetValue("tw_action", "openrecoveryscript");
537 DataManager::SetValue("tw_has_action2", "0");
538 DataManager::SetValue("tw_action2", "");
539 DataManager::SetValue("tw_action2_param", "");
540 DataManager::SetValue("tw_action_text1", "Running OpenRecoveryScript");
541 DataManager::SetValue("tw_action_text2", "");
542 DataManager::SetValue("tw_complete_text1", "OpenRecoveryScript Complete");
543 DataManager::SetValue("tw_has_cancel", 0);
544 DataManager::SetValue("tw_show_reboot", 0);
545 if (gui_startPage("action_page") != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000546 LOGERR("Failed to load OpenRecoveryScript GUI page.\n");
Dees_Troy6ed34b72013-01-25 15:01:29 +0000547 }
Dees_Troy6bdcbb12013-01-26 14:07:43 +0000548}