/* Copyright 2016 TeamWin This file is part of TWRP/TeamWin Recovery Project. TWRP is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. TWRP is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with TWRP. If not, see . */ #define __STDC_FORMAT_MACROS 1 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "twrp-functions.hpp" #include "partitions.hpp" #include "twcommon.h" #include "openrecoveryscript.hpp" #include "progresstracking.hpp" #include "variables.h" #include "adb_install.h" #include "data.hpp" #include "adb_install.h" #include "fuse_sideload.h" #include "gui/gui.hpp" #include "gui/pages.hpp" #include "orscmd/orscmd.h" #include "adbbu/libtwadbbu.hpp" extern "C" { #include "twinstall.h" #include "gui/gui.h" #include "cutils/properties.h" int TWinstall_zip(const char* path, int* wipe_cache); } OpenRecoveryScript::VoidFunction OpenRecoveryScript::call_after_cli_command; #define SCRIPT_COMMAND_SIZE 512 int OpenRecoveryScript::check_for_script_file(void) { if (!PartitionManager.Mount_By_Path(SCRIPT_FILE_CACHE, false)) { LOGINFO("Unable to mount /cache for OpenRecoveryScript support.\n"); gui_msg(Msg(msg::kError, "unable_to_mount=Unable to mount {1}")(SCRIPT_FILE_CACHE)); return 0; } if (TWFunc::Path_Exists(SCRIPT_FILE_CACHE)) { LOGINFO("Script file found: '%s'\n", SCRIPT_FILE_CACHE); // Copy script file to /tmp TWFunc::copy_file(SCRIPT_FILE_CACHE, SCRIPT_FILE_TMP, 0755); // Delete the file from /cache unlink(SCRIPT_FILE_CACHE); return 1; } return 0; } int OpenRecoveryScript::copy_script_file(string filename) { if (TWFunc::Path_Exists(filename)) { LOGINFO("Script file found: '%s'\n", filename.c_str()); if (filename == SCRIPT_FILE_TMP) return 1; // file is already in the right place // Copy script file to /tmp TWFunc::copy_file(filename, SCRIPT_FILE_TMP, 0755); // Delete the old file unlink(filename.c_str()); return 1; } return 0; } int OpenRecoveryScript::run_script_file(void) { FILE *fp = fopen(SCRIPT_FILE_TMP, "r"); int ret_val = 0, cindex, line_len, i, remove_nl, install_cmd = 0, sideload = 0; char script_line[SCRIPT_COMMAND_SIZE], command[SCRIPT_COMMAND_SIZE], value[SCRIPT_COMMAND_SIZE], mount[SCRIPT_COMMAND_SIZE], value1[SCRIPT_COMMAND_SIZE], value2[SCRIPT_COMMAND_SIZE]; char *val_start, *tok; if (fp != NULL) { DataManager::SetValue(TW_SIMULATE_ACTIONS, 0); DataManager::SetValue("ui_progress", 0); // Reset the progress bar while (fgets(script_line, SCRIPT_COMMAND_SIZE, fp) != NULL && ret_val == 0) { cindex = 0; line_len = strlen(script_line); if (line_len < 2) continue; // there's a blank line or line is too short to contain a command //gui_print("script line: '%s'\n", script_line); for (i=0; i Storage_List; PartitionManager.Get_Partition_List("storage", &Storage_List); int listSize = Storage_List.size(); for (int i = 0; i < listSize; i++) { if (PartitionManager.Is_Mounted_By_Path(Storage_List.at(i).Mount_Point)) { DataManager::SetValue("tw_storage_path", Storage_List.at(i).Mount_Point); DataManager::GetValue(TW_BACKUPS_FOLDER_VAR, folder_var); sprintf(backup_folder, "%s/%s", folder_var.c_str(), folder_path); if (TWFunc::Path_Exists(backup_folder)) { strcpy(folder_path, backup_folder); break; } } } } else { if (folder_path[strlen(folder_path) - 1] == '/') strcat(folder_path, "."); else strcat(folder_path, "/."); } if (!TWFunc::Path_Exists(folder_path)) { gui_msg(Msg(msg::kError, "locate_backup_err=Unable to locate backup '{1}'")(folder_path)); ret_val = 1; continue; } DataManager::SetValue("tw_restore", folder_path); PartitionManager.Set_Restore_Files(folder_path); string Partition_List; int is_encrypted = 0; DataManager::GetValue("tw_restore_encrypted", is_encrypted); DataManager::GetValue("tw_restore_list", Partition_List); if (strlen(partitions) != 0) { string Restore_List; memset(value2, 0, sizeof(value2)); strcpy(value2, partitions); gui_msg(Msg("set_restore_opt=Setting restore options: '{1}':")(value2)); line_len = strlen(value2); for (i=0; i strlen(value1) + 1) { char *val2 = value + strlen(value1) + 1; gui_msg(Msg("setting=Setting '{1}' to '{2}'")(value1)(val2)); DataManager::SetValue(value1, val2); } else { gui_msg(Msg("setting_empty=Setting '{1}' to empty")(value1)); DataManager::SetValue(value1, ""); } } else if (strcmp(command, "mkdir") == 0) { // Make directory (recursive) DataManager::SetValue("tw_action_text2", gui_parse_text("{@making_dir1}")); gui_msg(Msg("making_dir2=Making directory: '{1}'")(value)); if (!TWFunc::Recursive_Mkdir(value)) { // error message already displayed by Recursive_Mkdir ret_val = 1; } } else if (strcmp(command, "reboot") == 0) { if (strlen(value) && strcmp(value, "recovery") == 0) TWFunc::tw_reboot(rb_recovery); else if (strlen(value) && strcmp(value, "poweroff") == 0) TWFunc::tw_reboot(rb_poweroff); else if (strlen(value) && strcmp(value, "bootloader") == 0) TWFunc::tw_reboot(rb_bootloader); else if (strlen(value) && strcmp(value, "download") == 0) TWFunc::tw_reboot(rb_download); else TWFunc::tw_reboot(rb_system); } else if (strcmp(command, "cmd") == 0) { DataManager::SetValue("tw_action_text2", gui_parse_text("{@running_command}")); if (cindex != 0) { TWFunc::Exec_Cmd(value); } else { LOGERR("No value given for cmd\n"); } } else if (strcmp(command, "print") == 0) { gui_print("%s\n", value); } else if (strcmp(command, "sideload") == 0) { // ADB Sideload DataManager::SetValue("tw_action_text2", gui_parse_text("{@sideload}")); install_cmd = -1; int wipe_cache = 0; string result; pid_t sideload_child_pid; gui_msg("start_sideload=Starting ADB sideload feature..."); ret_val = apply_from_adb("/", &sideload_child_pid); if (ret_val != 0) { if (ret_val == -2) gui_err("need_new_adb=You need adb 1.0.32 or newer to sideload to this device."); ret_val = 1; // failure } else if (TWinstall_zip(FUSE_SIDELOAD_HOST_PATHNAME, &wipe_cache) == 0) { if (wipe_cache) PartitionManager.Wipe_By_Path("/cache"); } else { ret_val = 1; // failure } sideload = 1; // Causes device to go to the home screen afterwards if (sideload_child_pid != 0) { LOGINFO("Signaling child sideload process to exit.\n"); struct stat st; // Calling stat() on this magic filename signals the minadbd // subprocess to shut down. stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st); int status; LOGINFO("Waiting for child sideload process to exit.\n"); waitpid(sideload_child_pid, &status, 0); } property_set("ctl.start", "adbd"); gui_msg("done=Done."); } else if (strcmp(command, "fixperms") == 0 || strcmp(command, "fixpermissions") == 0 || strcmp(command, "fixcontexts") == 0) { ret_val = PartitionManager.Fix_Contexts(); if (ret_val != 0) ret_val = 1; // failure } else if (strcmp(command, "decrypt") == 0) { if (*value) { ret_val = PartitionManager.Decrypt_Device(value); if (ret_val != 0) ret_val = 1; // failure } else { gui_err("no_pwd=No password provided."); ret_val = 1; // failure } } else { LOGERR("Unrecognized script command: '%s'\n", command); ret_val = 1; } } fclose(fp); unlink(SCRIPT_FILE_TMP); gui_msg("done_ors=Done processing script file"); } else { gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(SCRIPT_FILE_TMP)(strerror(errno))); return 1; } if (install_cmd && DataManager::GetIntValue(TW_HAS_INJECTTWRP) == 1 && DataManager::GetIntValue(TW_INJECT_AFTER_ZIP) == 1) { gui_msg("injecttwrp=Injecting TWRP into boot image..."); TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot"); if (Boot == NULL || Boot->Current_File_System != "emmc") TWFunc::Exec_Cmd("injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash"); else { string injectcmd = "injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash bd=" + Boot->Actual_Block_Device; TWFunc::Exec_Cmd(injectcmd.c_str()); } gui_msg("done=Done."); } if (sideload) ret_val = 1; // Forces booting to the home page after sideload return ret_val; } int OpenRecoveryScript::Insert_ORS_Command(string Command) { ofstream ORSfile(SCRIPT_FILE_TMP, ios_base::app | ios_base::out); if (ORSfile.is_open()) { //if (Command.substr(Command.size() - 1, 1) != "\n") // Command += "\n"; LOGINFO("Inserting '%s'\n", Command.c_str()); ORSfile << Command.c_str() << endl; ORSfile.close(); return 1; } LOGERR("Unable to append '%s' to '%s'\n", Command.c_str(), SCRIPT_FILE_TMP); return 0; } int OpenRecoveryScript::Install_Command(string Zip) { // Install zip string ret_string; int ret_val = 0, wipe_cache = 0; std::vector Storage_List; string Full_Path; if (Zip.substr(0, 1) == "@") { // This is a special file that contains a map of blocks on the data partition Full_Path = Zip.substr(1); if (!PartitionManager.Mount_By_Path(Full_Path, true) || !TWFunc::Path_Exists(Full_Path)) { LOGINFO("Unable to install via mapped zip '%s'\n", Full_Path.c_str()); gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(Zip)); return 1; } LOGINFO("Installing mapped zip file '%s'\n", Full_Path.c_str()); gui_msg(Msg("installing_zip=Installing zip file '{1}'")(Zip)); } else if (!TWFunc::Path_Exists(Zip)) { PartitionManager.Mount_All_Storage(); PartitionManager.Get_Partition_List("storage", &Storage_List); int listSize = Storage_List.size(); for (int i = 0; i < listSize; i++) { if (PartitionManager.Is_Mounted_By_Path(Storage_List.at(i).Mount_Point)) { Full_Path = Storage_List.at(i).Mount_Point + "/" + Zip; if (TWFunc::Path_Exists(Full_Path)) { Zip = Full_Path; break; } Full_Path = Zip; LOGINFO("Trying to find zip '%s' on '%s'...\n", Full_Path.c_str(), Storage_List.at(i).Mount_Point.c_str()); ret_string = Locate_Zip_File(Full_Path, Storage_List.at(i).Mount_Point); if (!ret_string.empty()) { Zip = ret_string; break; } } } if (!TWFunc::Path_Exists(Zip)) { // zip file doesn't exist gui_print("Unable to locate zip file '%s'.\n", Zip.c_str()); ret_val = 1; } else gui_msg(Msg("installing_zip=Installing zip file '{1}'")(Zip)); } ret_val = TWinstall_zip(Zip.c_str(), &wipe_cache); if (ret_val != 0) { gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(Zip)); ret_val = 1; } else if (wipe_cache) PartitionManager.Wipe_By_Path("/cache"); return ret_val; } int OpenRecoveryScript::Backup_ADB_Command(std::string Options) { std::vector args; std::string Backup_List; bool adbbackup = true, ret = false; std::string rmopt = "--"; std::replace(Options.begin(), Options.end(), ':', ' '); args = TWFunc::Split_String(Options, " "); DataManager::SetValue(TW_USE_COMPRESSION_VAR, 0); DataManager::SetValue(TW_SKIP_MD5_GENERATE_VAR, 0); if (args[1].compare("--twrp") != 0) { gui_err("twrp_adbbu_option=--twrp option is required to enable twrp adb backup"); sleep(2); return 1; } for (unsigned i = 2; i < args.size(); i++) { int compress; std::string::size_type size = args[i].find(rmopt); if (size != std::string::npos) args[i].erase(size, rmopt.length()); if (args[i].compare("compress") == 0) { gui_msg("compression_on=Compression is on"); DataManager::SetValue(TW_USE_COMPRESSION_VAR, 1); continue; } DataManager::GetValue(TW_USE_COMPRESSION_VAR, compress); gui_print("%s\n", args[i].c_str()); std::string path; path = "/" + args[i]; TWPartition* part = PartitionManager.Find_Partition_By_Path(path); if (part) { Backup_List += path; Backup_List += ";"; } else { gui_msg(Msg(msg::kError, "partition_not_found=path: {1} not found in partition list")(path)); return 1; } } if (Backup_List.empty()) { DataManager::GetValue("tw_backup_list", Backup_List); if (Backup_List.empty()) { gui_err("no_partition_selected=No partitions selected for backup."); return 1; } } else DataManager::SetValue("tw_backup_list", Backup_List); ret = PartitionManager.Run_Backup(adbbackup); DataManager::SetValue(TW_BACKUP_NAME, gui_lookup("auto_generate", "(Auto Generate)")); if (!ret) { gui_err("backup_fail=Backup failed"); return 1; } gui_msg("backup_complete=Backup Complete"); sleep(2); //give time for user to see messages on console return 0; } string OpenRecoveryScript::Locate_Zip_File(string Zip, string Storage_Root) { string Path = TWFunc::Get_Path(Zip); string File = TWFunc::Get_Filename(Zip); string pathCpy = Path; string wholePath; size_t pos = Path.find("/", 1); while (pos != string::npos) { pathCpy = Path.substr(pos, Path.size() - pos); wholePath = pathCpy + File; LOGINFO("Looking for zip at '%s'\n", wholePath.c_str()); if (TWFunc::Path_Exists(wholePath)) return wholePath; wholePath = Storage_Root + wholePath; LOGINFO("Looking for zip at '%s'\n", wholePath.c_str()); if (TWFunc::Path_Exists(wholePath)) return wholePath; pos = Path.find("/", pos + 1); } return ""; } int OpenRecoveryScript::Backup_Command(string Options) { char value1[SCRIPT_COMMAND_SIZE]; int line_len, i; string Backup_List; bool adbbackup = false; strcpy(value1, Options.c_str()); DataManager::SetValue(TW_USE_COMPRESSION_VAR, 0); DataManager::SetValue(TW_SKIP_MD5_GENERATE_VAR, 0); gui_msg("select_backup_opt=Setting backup options:"); line_len = Options.size(); for (i=0; i 11 && strncmp(command, "runscript", 9) == 0) { const char* filename = command + 10; if (OpenRecoveryScript::copy_script_file(filename) == 0) { LOGINFO("Unable to copy script file\n"); } else { OpenRecoveryScript::run_script_file(); } } else if (strlen(command) > 5 && strncmp(command, "get", 3) == 0) { const char* varname = command + 4; string value; DataManager::GetValue(varname, value); gui_print("%s = %s\n", varname, value.c_str()); } else if (strlen(command) > 9 && strncmp(command, "decrypt", 7) == 0) { const char* pass = command + 8; gui_msg("decrypt_cmd=Attempting to decrypt data partition via command line."); if (PartitionManager.Decrypt_Device(pass) == 0) { // set_page_done = 1; // done by singleaction_page anyway } } else if (OpenRecoveryScript::Insert_ORS_Command(command)) { OpenRecoveryScript::run_script_file(); } // let the GUI close the output fd and restart the command listener call_after_cli_command(); LOGINFO("Done reading ORS command from command line\n"); } int OpenRecoveryScript::Restore_ADB_Backup(void) { bool breakloop = false; int partition_count = 0; std::string Restore_Name; std::size_t pos = 0; struct AdbBackupFileTrailer adbmd5; struct PartitionSettings part_settings; int adb_control_twrp_fd, adb_write_fd, systemro; int adb_control_bu_fd, ret = 0; char cmd[512]; int orsfd = open(ORS_OUTPUT_FILE, O_WRONLY); part_settings.total_restore_size = 0; PartitionManager.Mount_All_Storage(); DataManager::SetValue(TW_SKIP_MD5_CHECK_VAR, 0); LOGINFO("opening TW_ADB_BU_CONTROL\n"); adb_control_bu_fd = open(TW_ADB_BU_CONTROL, O_WRONLY | O_NONBLOCK); LOGINFO("opening TW_ADB_TWRP_CONTROL\n"); adb_control_twrp_fd = open(TW_ADB_TWRP_CONTROL, O_RDONLY | O_NONBLOCK); memset(&adbmd5, 0, sizeof(adbmd5)); while (!breakloop) { memset(&cmd, 0, sizeof(cmd)); if (read(adb_control_twrp_fd, cmd, sizeof(cmd)) > 0) { struct AdbBackupControlType cmdstruct; memset(&cmdstruct, 0, sizeof(cmdstruct)); memcpy(&cmdstruct, cmd, sizeof(cmdstruct)); std::string cmdstr(cmdstruct.type); std::string cmdtype = cmdstr.substr(0, sizeof(cmdstruct.type) - 1); if (cmdstr.substr(0, sizeof(cmdstruct.type) - 1) == TWSTREAMHDR) { struct AdbBackupStreamHeader twhdr; memcpy(&twhdr, cmd, sizeof(cmd)); LOGINFO("ADB Partition count: %" PRIu64 "\n", twhdr.partition_count); LOGINFO("ADB version: %" PRIu64 "\n", twhdr.version); if (twhdr.version != ADB_BACKUP_VERSION) { LOGERR("Incompatible adb backup version!\n"); breakloop = false; break; } partition_count = twhdr.partition_count; } else if (cmdtype == MD5TRAILER) { LOGINFO("Restoring MD5TRAILER\n"); memcpy(&adbmd5, cmd, sizeof(cmd)); } else if (cmdtype == TWMD5) { struct AdbBackupFileTrailer md5check; LOGINFO("Restoring TWMD5\n"); memset(&md5check, 0, sizeof(md5check)); memcpy(&md5check, cmd, sizeof(cmd)); if (strcmp(md5check.md5, adbmd5.md5) != 0) { LOGERR("md5 doesn't match!\n"); LOGERR("file md5: %s\n", adbmd5.md5); LOGERR("check md5: %s\n", md5check.md5); breakloop = true; ret = 1; break; } else { LOGINFO("adbrestore md5 matches\n"); LOGINFO("adbmd5.md5: %s\n", adbmd5.md5); LOGINFO("md5check.md5: %s\n", md5check.md5); } } else if (cmdtype == TWENDADB) { LOGINFO("received TWENDADB\n"); breakloop = true; break; } else { struct twfilehdr twimghdr; memcpy(&twimghdr, cmd, sizeof(cmd)); std::string cmdstr(twimghdr.type); Restore_Name = twimghdr.name; part_settings.total_restore_size = twimghdr.size; if (cmdtype == TWIMG) { LOGINFO("ADB Type: %s\n", twimghdr.type); LOGINFO("ADB Restore_Name: %s\n", Restore_Name.c_str()); LOGINFO("ADB Restore_size: %" PRIu64 "\n", part_settings.total_restore_size); string compression = (twimghdr.compressed == 1) ? "compressed" : "uncompressed"; LOGINFO("ADB compression: %s\n", compression.c_str()); std::string Backup_FileName; std::size_t pos = Restore_Name.find_last_of("/"); std::string path = "/" + Restore_Name.substr(pos, Restore_Name.size()); pos = path.find_first_of("."); path = path.substr(0, pos); if (path.substr(0,1).compare("//")) { path = path.substr(1, path.size()); } pos = Restore_Name.find_last_of("/"); Backup_FileName = Restore_Name.substr(pos + 1, Restore_Name.size()); part_settings.Part = PartitionManager.Find_Partition_By_Path(path); part_settings.Backup_Folder = path; part_settings.partition_count = partition_count; part_settings.adbbackup = true; part_settings.adb_compression = twimghdr.compressed; part_settings.PM_Method = PM_RESTORE; ProgressTracking progress(part_settings.total_restore_size); part_settings.progress = &progress; if (!PartitionManager.Restore_Partition(&part_settings)) { LOGERR("ADB Restore failed.\n"); return 1; } } else if (cmdtype == TWFN) { LOGINFO("ADB Type: %s\n", twimghdr.type); LOGINFO("ADB Restore_Name: %s\n", Restore_Name.c_str()); LOGINFO("ADB Restore_size: %" PRIi64 "\n", part_settings.total_restore_size); string compression = (twimghdr.compressed == 1) ? "compressed" : "uncompressed"; LOGINFO("ADB compression: %s\n", compression.c_str()); std::string Backup_FileName; std::size_t pos = Restore_Name.find_last_of("/"); std::string path = "/" + Restore_Name.substr(pos, Restore_Name.size()); pos = path.find_first_of("."); path = path.substr(0, pos); if (path.substr(0,1).compare("//")) { path = path.substr(1, path.size()); } pos = Restore_Name.find_last_of("/"); Backup_FileName = Restore_Name.substr(pos + 1, Restore_Name.size()); pos = Restore_Name.find_last_of("/"); part_settings.Part = PartitionManager.Find_Partition_By_Path(path); if (path.compare("/system") == 0) { if (part_settings.Part->Is_Read_Only()) { struct AdbBackupControlType twerror; strncpy(twerror.start_of_header, TWRP, sizeof(twerror.start_of_header)); strncpy(twerror.type, TWERROR, sizeof(twerror.type)); memset(twerror.space, 0, sizeof(twerror.space)); twerror.crc = crc32(0L, Z_NULL, 0); twerror.crc = crc32(twerror.crc, (const unsigned char*) &twerror, sizeof(twerror)); if (write(adb_control_bu_fd, &twerror, sizeof(twerror)) < 0) { LOGERR("Cannot write to ADB_CONTROL_BU_FD: %s\n", strerror(errno)); } gui_msg(Msg(msg::kError, "restore_read_only=Cannot restore {1} -- mounted read only.")(part_settings.Part->Backup_Display_Name)); return 1; } } part_settings.partition_count = partition_count; part_settings.adbbackup = true; part_settings.adb_compression = twimghdr.compressed; part_settings.total_restore_size += part_settings.Part->Get_Restore_Size(&part_settings); part_settings.PM_Method = PM_RESTORE; ProgressTracking progress(part_settings.total_restore_size); part_settings.progress = &progress; if (!PartitionManager.Restore_Partition(&part_settings)) { LOGERR("ADB Restore failed.\n"); return 1; } } } } } gui_msg("restore_complete=Restore Complete"); if (!twadbbu::Write_TWENDADB()) ret = 1; sleep(2); //give time for user to see messages on console return ret; } int OpenRecoveryScript::remountrw(void) { bool remount_system = PartitionManager.Is_Mounted_By_Path("/system"); int op_status; TWPartition* Part; if (!PartitionManager.UnMount_By_Path("/system", true)) { op_status = 1; // fail } else { Part = PartitionManager.Find_Partition_By_Path("/system"); if (Part) { DataManager::SetValue("tw_mount_system_ro", 0); Part->Change_Mount_Read_Only(false); } if (remount_system) { Part->Mount(true); } op_status = 0; // success } return op_status; }