Dees Troy | 3be70a8 | 2013-10-22 14:25:12 +0000 | [diff] [blame] | 1 | /* |
| 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 | */ |
| 18 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 19 | #include <stdio.h> |
| 20 | #include <stdlib.h> |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 21 | #include <string> |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 22 | #include <unistd.h> |
| 23 | #include <vector> |
| 24 | #include <dirent.h> |
| 25 | #include <time.h> |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 26 | #include <errno.h> |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 27 | #include <fcntl.h> |
| 28 | #include <sys/mount.h> |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 29 | #include <sys/reboot.h> |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 30 | #include <sys/sendfile.h> |
| 31 | #include <sys/stat.h> |
| 32 | #include <sys/vfs.h> |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 33 | #include <sys/types.h> |
| 34 | #include <sys/wait.h> |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 35 | #include <iostream> |
| 36 | #include <fstream> |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 37 | #include <sstream> |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 38 | #include <cctype> |
bigbiff | 74a6d0d | 2015-02-14 20:49:44 -0500 | [diff] [blame] | 39 | #include <algorithm> |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 40 | #include <selinux/label.h> |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 41 | #include "twrp-functions.hpp" |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 42 | #include "twcommon.h" |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 43 | #include "gui/gui.hpp" |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 44 | #ifndef BUILD_TWRPTAR_MAIN |
Dees_Troy | b46a684 | 2012-09-25 11:06:46 -0400 | [diff] [blame] | 45 | #include "data.hpp" |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 46 | #include "partitions.hpp" |
Dees_Troy | 3477d71 | 2012-09-27 15:44:01 -0400 | [diff] [blame] | 47 | #include "variables.h" |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 48 | #include "bootloader_message_twrp/include/bootloader_message_twrp/bootloader_message.h" |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 49 | #include "cutils/properties.h" |
Ethan Yonker | bc2bc6b | 2015-03-24 21:37:52 -0500 | [diff] [blame] | 50 | #include "cutils/android_reboot.h" |
| 51 | #include <sys/reboot.h> |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 52 | #endif // ndef BUILD_TWRPTAR_MAIN |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 53 | #ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS |
| 54 | #include "openaes/inc/oaes_lib.h" |
| 55 | #endif |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 56 | #include "set_metadata.h" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 57 | |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 58 | extern "C" { |
| 59 | #include "libcrecovery/common.h" |
| 60 | } |
| 61 | |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 62 | struct selabel_handle *selinux_handle; |
| 63 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 64 | /* Execute a command */ |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 65 | int TWFunc::Exec_Cmd(const string& cmd, string &result) { |
Dees_Troy | 29a0635 | 2013-08-24 12:06:47 +0000 | [diff] [blame] | 66 | FILE* exec; |
| 67 | char buffer[130]; |
| 68 | int ret = 0; |
| 69 | exec = __popen(cmd.c_str(), "r"); |
| 70 | if (!exec) return -1; |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 71 | while (!feof(exec)) { |
Dees_Troy | 29a0635 | 2013-08-24 12:06:47 +0000 | [diff] [blame] | 72 | if (fgets(buffer, 128, exec) != NULL) { |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 73 | result += buffer; |
Dees_Troy | b05ddee | 2013-01-28 20:24:50 +0000 | [diff] [blame] | 74 | } |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 75 | } |
Dees_Troy | 29a0635 | 2013-08-24 12:06:47 +0000 | [diff] [blame] | 76 | ret = __pclose(exec); |
| 77 | return ret; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 78 | } |
| 79 | |
Ethan Yonker | 7e94158 | 2019-03-22 08:18:21 -0500 | [diff] [blame] | 80 | int TWFunc::Exec_Cmd(const string& cmd, bool Show_Errors) { |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 81 | pid_t pid; |
| 82 | int status; |
| 83 | switch(pid = fork()) |
| 84 | { |
| 85 | case -1: |
bigbiff bigbiff | 731df79 | 2014-02-20 18:26:13 -0500 | [diff] [blame] | 86 | LOGERR("Exec_Cmd(): vfork failed: %d!\n", errno); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 87 | return -1; |
| 88 | case 0: // child |
| 89 | execl("/sbin/sh", "sh", "-c", cmd.c_str(), NULL); |
| 90 | _exit(127); |
| 91 | break; |
| 92 | default: |
| 93 | { |
Ethan Yonker | 7e94158 | 2019-03-22 08:18:21 -0500 | [diff] [blame] | 94 | if (TWFunc::Wait_For_Child(pid, &status, cmd, Show_Errors) != 0) |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 95 | return -1; |
| 96 | else |
| 97 | return 0; |
| 98 | } |
| 99 | } |
| 100 | } |
| 101 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 102 | // Returns "file.name" from a full /path/to/file.name |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 103 | string TWFunc::Get_Filename(const string& Path) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 104 | size_t pos = Path.find_last_of("/"); |
| 105 | if (pos != string::npos) { |
| 106 | string Filename; |
| 107 | Filename = Path.substr(pos + 1, Path.size() - pos - 1); |
| 108 | return Filename; |
| 109 | } else |
| 110 | return Path; |
| 111 | } |
| 112 | |
| 113 | // Returns "/path/to/" from a full /path/to/file.name |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 114 | string TWFunc::Get_Path(const string& Path) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 115 | size_t pos = Path.find_last_of("/"); |
| 116 | if (pos != string::npos) { |
| 117 | string Pathonly; |
| 118 | Pathonly = Path.substr(0, pos + 1); |
| 119 | return Pathonly; |
| 120 | } else |
| 121 | return Path; |
| 122 | } |
| 123 | |
Ethan Yonker | 7e94158 | 2019-03-22 08:18:21 -0500 | [diff] [blame] | 124 | int TWFunc::Wait_For_Child(pid_t pid, int *status, string Child_Name, bool Show_Errors) { |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 125 | pid_t rc_pid; |
| 126 | |
| 127 | rc_pid = waitpid(pid, status, 0); |
| 128 | if (rc_pid > 0) { |
Vojtech Bocek | 0fdcbec | 2015-03-20 15:36:40 +0100 | [diff] [blame] | 129 | if (WIFSIGNALED(*status)) { |
Ethan Yonker | 7e94158 | 2019-03-22 08:18:21 -0500 | [diff] [blame] | 130 | if (Show_Errors) |
| 131 | gui_msg(Msg(msg::kError, "pid_signal={1} process ended with signal: {2}")(Child_Name)(WTERMSIG(*status))); // Seg fault or some other non-graceful termination |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 132 | return -1; |
Vojtech Bocek | 0fdcbec | 2015-03-20 15:36:40 +0100 | [diff] [blame] | 133 | } else if (WEXITSTATUS(*status) == 0) { |
| 134 | LOGINFO("%s process ended with RC=%d\n", Child_Name.c_str(), WEXITSTATUS(*status)); // Success |
| 135 | } else { |
Ethan Yonker | 7e94158 | 2019-03-22 08:18:21 -0500 | [diff] [blame] | 136 | if (Show_Errors) |
| 137 | gui_msg(Msg(msg::kError, "pid_error={1} process ended with ERROR: {2}")(Child_Name)(WEXITSTATUS(*status))); // Graceful exit, but there was an error |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 138 | return -1; |
| 139 | } |
| 140 | } else { // no PID returned |
| 141 | if (errno == ECHILD) |
that | 2252d24 | 2015-04-03 22:33:04 +0200 | [diff] [blame] | 142 | LOGERR("%s no child process exist\n", Child_Name.c_str()); |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 143 | else { |
that | 2252d24 | 2015-04-03 22:33:04 +0200 | [diff] [blame] | 144 | LOGERR("%s Unexpected error %d\n", Child_Name.c_str(), errno); |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 145 | return -1; |
| 146 | } |
| 147 | } |
| 148 | return 0; |
| 149 | } |
| 150 | |
Ethan Yonker | ddb63e2 | 2017-01-19 14:01:57 -0600 | [diff] [blame] | 151 | int TWFunc::Wait_For_Child_Timeout(pid_t pid, int *status, const string& Child_Name, int timeout) { |
| 152 | pid_t retpid = waitpid(pid, status, WNOHANG); |
| 153 | for (; retpid == 0 && timeout; --timeout) { |
| 154 | sleep(1); |
| 155 | retpid = waitpid(pid, status, WNOHANG); |
| 156 | } |
| 157 | if (retpid == 0 && timeout == 0) { |
| 158 | LOGERR("%s took too long, killing process\n", Child_Name.c_str()); |
| 159 | kill(pid, SIGKILL); |
Ethan Yonker | ddb63e2 | 2017-01-19 14:01:57 -0600 | [diff] [blame] | 160 | for (timeout = 5; retpid == 0 && timeout; --timeout) { |
| 161 | sleep(1); |
| 162 | retpid = waitpid(pid, status, WNOHANG); |
| 163 | } |
| 164 | if (retpid) |
| 165 | LOGINFO("Child process killed successfully\n"); |
| 166 | else |
| 167 | LOGINFO("Child process took too long to kill, may be a zombie process\n"); |
| 168 | return -1; |
| 169 | } else if (retpid > 0) { |
| 170 | if (WIFSIGNALED(*status)) { |
| 171 | gui_msg(Msg(msg::kError, "pid_signal={1} process ended with signal: {2}")(Child_Name)(WTERMSIG(*status))); // Seg fault or some other non-graceful termination |
| 172 | return -1; |
| 173 | } |
| 174 | } else if (retpid < 0) { // no PID returned |
| 175 | if (errno == ECHILD) |
| 176 | LOGERR("%s no child process exist\n", Child_Name.c_str()); |
| 177 | else { |
| 178 | LOGERR("%s Unexpected error %d\n", Child_Name.c_str(), errno); |
| 179 | return -1; |
| 180 | } |
| 181 | } |
| 182 | return 0; |
| 183 | } |
| 184 | |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 185 | bool TWFunc::Path_Exists(string Path) { |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 186 | struct stat st; |
| 187 | if (stat(Path.c_str(), &st) != 0) |
| 188 | return false; |
| 189 | else |
| 190 | return true; |
| 191 | } |
| 192 | |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 193 | Archive_Type TWFunc::Get_File_Type(string fn) { |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 194 | string::size_type i = 0; |
| 195 | int firstbyte = 0, secondbyte = 0; |
| 196 | char header[3]; |
| 197 | |
| 198 | ifstream f; |
| 199 | f.open(fn.c_str(), ios::in | ios::binary); |
| 200 | f.get(header, 3); |
| 201 | f.close(); |
| 202 | firstbyte = header[i] & 0xff; |
| 203 | secondbyte = header[++i] & 0xff; |
| 204 | |
| 205 | if (firstbyte == 0x1f && secondbyte == 0x8b) |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 206 | return COMPRESSED; |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 207 | else if (firstbyte == 0x4f && secondbyte == 0x41) |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 208 | return ENCRYPTED; |
| 209 | return UNCOMPRESSED; // default |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | int TWFunc::Try_Decrypting_File(string fn, string password) { |
| 213 | #ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS |
| 214 | OAES_CTX * ctx = NULL; |
| 215 | uint8_t _key_data[32] = ""; |
| 216 | FILE *f; |
| 217 | uint8_t buffer[4096]; |
| 218 | uint8_t *buffer_out = NULL; |
| 219 | uint8_t *ptr = NULL; |
| 220 | size_t read_len = 0, out_len = 0; |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 221 | int firstbyte = 0, secondbyte = 0; |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 222 | size_t _j = 0; |
| 223 | size_t _key_data_len = 0; |
| 224 | |
| 225 | // mostly kanged from OpenAES oaes.c |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 226 | for ( _j = 0; _j < 32; _j++ ) |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 227 | _key_data[_j] = _j + 1; |
| 228 | _key_data_len = password.size(); |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 229 | if ( 16 >= _key_data_len ) |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 230 | _key_data_len = 16; |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 231 | else if ( 24 >= _key_data_len ) |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 232 | _key_data_len = 24; |
| 233 | else |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 234 | _key_data_len = 32; |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 235 | memcpy(_key_data, password.c_str(), password.size()); |
| 236 | |
| 237 | ctx = oaes_alloc(); |
| 238 | if (ctx == NULL) { |
| 239 | LOGERR("Failed to allocate OAES\n"); |
| 240 | return -1; |
| 241 | } |
| 242 | |
| 243 | oaes_key_import_data(ctx, _key_data, _key_data_len); |
| 244 | |
| 245 | f = fopen(fn.c_str(), "rb"); |
| 246 | if (f == NULL) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 247 | LOGERR("Failed to open '%s' to try decrypt: %s\n", fn.c_str(), strerror(errno)); |
Matt Mower | 13a8f0b | 2015-09-26 15:40:03 -0500 | [diff] [blame] | 248 | oaes_free(&ctx); |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 249 | return -1; |
| 250 | } |
| 251 | read_len = fread(buffer, sizeof(uint8_t), 4096, f); |
| 252 | if (read_len <= 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 253 | LOGERR("Read size during try decrypt failed: %s\n", strerror(errno)); |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 254 | fclose(f); |
Matt Mower | 13a8f0b | 2015-09-26 15:40:03 -0500 | [diff] [blame] | 255 | oaes_free(&ctx); |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 256 | return -1; |
| 257 | } |
| 258 | if (oaes_decrypt(ctx, buffer, read_len, NULL, &out_len) != OAES_RET_SUCCESS) { |
| 259 | LOGERR("Error: Failed to retrieve required buffer size for trying decryption.\n"); |
| 260 | fclose(f); |
Matt Mower | 13a8f0b | 2015-09-26 15:40:03 -0500 | [diff] [blame] | 261 | oaes_free(&ctx); |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 262 | return -1; |
| 263 | } |
| 264 | buffer_out = (uint8_t *) calloc(out_len, sizeof(char)); |
| 265 | if (buffer_out == NULL) { |
| 266 | LOGERR("Failed to allocate output buffer for try decrypt.\n"); |
| 267 | fclose(f); |
Matt Mower | 13a8f0b | 2015-09-26 15:40:03 -0500 | [diff] [blame] | 268 | oaes_free(&ctx); |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 269 | return -1; |
| 270 | } |
| 271 | if (oaes_decrypt(ctx, buffer, read_len, buffer_out, &out_len) != OAES_RET_SUCCESS) { |
| 272 | LOGERR("Failed to decrypt file '%s'\n", fn.c_str()); |
| 273 | fclose(f); |
| 274 | free(buffer_out); |
Matt Mower | 13a8f0b | 2015-09-26 15:40:03 -0500 | [diff] [blame] | 275 | oaes_free(&ctx); |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 276 | return 0; |
| 277 | } |
| 278 | fclose(f); |
Matt Mower | 13a8f0b | 2015-09-26 15:40:03 -0500 | [diff] [blame] | 279 | oaes_free(&ctx); |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 280 | if (out_len < 2) { |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 281 | LOGINFO("Successfully decrypted '%s' but read length too small.\n", fn.c_str()); |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 282 | free(buffer_out); |
| 283 | return 1; // Decrypted successfully |
| 284 | } |
| 285 | ptr = buffer_out; |
| 286 | firstbyte = *ptr & 0xff; |
| 287 | ptr++; |
| 288 | secondbyte = *ptr & 0xff; |
| 289 | if (firstbyte == 0x1f && secondbyte == 0x8b) { |
| 290 | LOGINFO("Successfully decrypted '%s' and file is compressed.\n", fn.c_str()); |
| 291 | free(buffer_out); |
| 292 | return 3; // Compressed |
| 293 | } |
| 294 | if (out_len >= 262) { |
| 295 | ptr = buffer_out + 257; |
| 296 | if (strncmp((char*)ptr, "ustar", 5) == 0) { |
| 297 | LOGINFO("Successfully decrypted '%s' and file is tar format.\n", fn.c_str()); |
| 298 | free(buffer_out); |
| 299 | return 2; // Tar |
| 300 | } |
| 301 | } |
| 302 | free(buffer_out); |
| 303 | LOGINFO("No errors decrypting '%s' but no known file format.\n", fn.c_str()); |
| 304 | return 1; // Decrypted successfully |
| 305 | #else |
| 306 | LOGERR("Encrypted backup support not included.\n"); |
| 307 | return -1; |
| 308 | #endif |
| 309 | } |
| 310 | |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 311 | unsigned long TWFunc::Get_File_Size(const string& Path) { |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 312 | struct stat st; |
| 313 | |
| 314 | if (stat(Path.c_str(), &st) != 0) |
| 315 | return 0; |
| 316 | return st.st_size; |
| 317 | } |
| 318 | |
Vojtech Bocek | 05f87d6 | 2014-03-11 22:08:23 +0100 | [diff] [blame] | 319 | std::string TWFunc::Remove_Trailing_Slashes(const std::string& path, bool leaveLast) |
| 320 | { |
| 321 | std::string res; |
| 322 | size_t last_idx = 0, idx = 0; |
| 323 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 324 | while (last_idx != std::string::npos) |
Vojtech Bocek | 05f87d6 | 2014-03-11 22:08:23 +0100 | [diff] [blame] | 325 | { |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 326 | if (last_idx != 0) |
Vojtech Bocek | 05f87d6 | 2014-03-11 22:08:23 +0100 | [diff] [blame] | 327 | res += '/'; |
| 328 | |
| 329 | idx = path.find_first_of('/', last_idx); |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 330 | if (idx == std::string::npos) { |
Vojtech Bocek | 05f87d6 | 2014-03-11 22:08:23 +0100 | [diff] [blame] | 331 | res += path.substr(last_idx, idx); |
| 332 | break; |
| 333 | } |
| 334 | |
| 335 | res += path.substr(last_idx, idx-last_idx); |
| 336 | last_idx = path.find_first_not_of('/', idx); |
| 337 | } |
| 338 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 339 | if (leaveLast) |
Vojtech Bocek | 05f87d6 | 2014-03-11 22:08:23 +0100 | [diff] [blame] | 340 | res += '/'; |
| 341 | return res; |
| 342 | } |
| 343 | |
Matt Mower | 2416a50 | 2016-04-12 19:54:46 -0500 | [diff] [blame] | 344 | void TWFunc::Strip_Quotes(char* &str) { |
| 345 | if (strlen(str) > 0 && str[0] == '\"') |
| 346 | str++; |
| 347 | if (strlen(str) > 0 && str[strlen(str)-1] == '\"') |
| 348 | str[strlen(str)-1] = 0; |
| 349 | } |
| 350 | |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 351 | vector<string> TWFunc::split_string(const string &in, char del, bool skip_empty) { |
| 352 | vector<string> res; |
| 353 | |
| 354 | if (in.empty() || del == '\0') |
| 355 | return res; |
| 356 | |
| 357 | string field; |
| 358 | istringstream f(in); |
| 359 | if (del == '\n') { |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 360 | while (getline(f, field)) { |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 361 | if (field.empty() && skip_empty) |
| 362 | continue; |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 363 | res.push_back(field); |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 364 | } |
| 365 | } else { |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 366 | while (getline(f, field, del)) { |
Ethan Yonker | 1b7a31b | 2014-07-03 15:09:22 -0500 | [diff] [blame] | 367 | if (field.empty() && skip_empty) |
| 368 | continue; |
| 369 | res.push_back(field); |
| 370 | } |
| 371 | } |
| 372 | return res; |
| 373 | } |
| 374 | |
Ethan Yonker | 472f506 | 2016-02-25 13:47:30 -0600 | [diff] [blame] | 375 | timespec TWFunc::timespec_diff(timespec& start, timespec& end) |
| 376 | { |
| 377 | timespec temp; |
| 378 | if ((end.tv_nsec-start.tv_nsec)<0) { |
| 379 | temp.tv_sec = end.tv_sec-start.tv_sec-1; |
| 380 | temp.tv_nsec = 1000000000+end.tv_nsec-start.tv_nsec; |
| 381 | } else { |
| 382 | temp.tv_sec = end.tv_sec-start.tv_sec; |
| 383 | temp.tv_nsec = end.tv_nsec-start.tv_nsec; |
| 384 | } |
| 385 | return temp; |
| 386 | } |
| 387 | |
| 388 | int32_t TWFunc::timespec_diff_ms(timespec& start, timespec& end) |
| 389 | { |
| 390 | return ((end.tv_sec * 1000) + end.tv_nsec/1000000) - |
| 391 | ((start.tv_sec * 1000) + start.tv_nsec/1000000); |
| 392 | } |
| 393 | |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 394 | #ifndef BUILD_TWRPTAR_MAIN |
| 395 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 396 | // Returns "/path" from a full /path/to/file.name |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 397 | string TWFunc::Get_Root_Path(const string& Path) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 398 | string Local_Path = Path; |
| 399 | |
| 400 | // Make sure that we have a leading slash |
| 401 | if (Local_Path.substr(0, 1) != "/") |
| 402 | Local_Path = "/" + Local_Path; |
| 403 | |
| 404 | // Trim the path to get the root path only |
| 405 | size_t position = Local_Path.find("/", 2); |
| 406 | if (position != string::npos) { |
| 407 | Local_Path.resize(position); |
| 408 | } |
| 409 | return Local_Path; |
| 410 | } |
| 411 | |
| 412 | void TWFunc::install_htc_dumlock(void) { |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 413 | int need_libs = 0; |
| 414 | |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 415 | if (!PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), true)) |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 416 | return; |
| 417 | |
| 418 | if (!PartitionManager.Mount_By_Path("/data", true)) |
| 419 | return; |
| 420 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 421 | gui_msg("install_dumlock=Installing HTC Dumlock to system..."); |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 422 | copy_file(TWHTCD_PATH "htcdumlocksys", "/system/bin/htcdumlock", 0755); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 423 | if (!Path_Exists("/system/bin/flash_image")) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 424 | LOGINFO("Installing flash_image...\n"); |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 425 | copy_file(TWHTCD_PATH "flash_imagesys", "/system/bin/flash_image", 0755); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 426 | need_libs = 1; |
| 427 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 428 | LOGINFO("flash_image is already installed, skipping...\n"); |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 429 | if (!Path_Exists("/system/bin/dump_image")) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 430 | LOGINFO("Installing dump_image...\n"); |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 431 | copy_file(TWHTCD_PATH "dump_imagesys", "/system/bin/dump_image", 0755); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 432 | need_libs = 1; |
| 433 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 434 | LOGINFO("dump_image is already installed, skipping...\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 435 | if (need_libs) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 436 | LOGINFO("Installing libs needed for flash_image and dump_image...\n"); |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 437 | copy_file(TWHTCD_PATH "libbmlutils.so", "/system/lib/libbmlutils.so", 0644); |
| 438 | copy_file(TWHTCD_PATH "libflashutils.so", "/system/lib/libflashutils.so", 0644); |
| 439 | copy_file(TWHTCD_PATH "libmmcutils.so", "/system/lib/libmmcutils.so", 0644); |
| 440 | copy_file(TWHTCD_PATH "libmtdutils.so", "/system/lib/libmtdutils.so", 0644); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 441 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 442 | LOGINFO("Installing HTC Dumlock app...\n"); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 443 | mkdir("/data/app", 0777); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 444 | unlink("/data/app/com.teamwin.htcdumlock*"); |
Dees Troy | 3454ade | 2015-01-20 19:21:04 +0000 | [diff] [blame] | 445 | copy_file(TWHTCD_PATH "HTCDumlock.apk", "/data/app/com.teamwin.htcdumlock.apk", 0777); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 446 | sync(); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 447 | gui_msg("done=Done."); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | void TWFunc::htc_dumlock_restore_original_boot(void) { |
| 451 | if (!PartitionManager.Mount_By_Path("/sdcard", true)) |
| 452 | return; |
| 453 | |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 454 | gui_msg("dumlock_restore=Restoring original boot..."); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 455 | Exec_Cmd("htcdumlock restore"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 456 | gui_msg("done=Done."); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | void TWFunc::htc_dumlock_reflash_recovery_to_boot(void) { |
| 460 | if (!PartitionManager.Mount_By_Path("/sdcard", true)) |
| 461 | return; |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 462 | gui_msg("dumlock_reflash=Reflashing recovery to boot..."); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 463 | Exec_Cmd("htcdumlock recovery noreboot"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 464 | gui_msg("done=Done."); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 465 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 466 | |
| 467 | int TWFunc::Recursive_Mkdir(string Path) { |
that | f1408b3 | 2016-01-03 11:09:15 +0100 | [diff] [blame] | 468 | std::vector<std::string> parts = Split_String(Path, "/", true); |
| 469 | std::string cur_path; |
| 470 | for (size_t i = 0; i < parts.size(); ++i) { |
| 471 | cur_path += "/" + parts[i]; |
| 472 | if (!TWFunc::Path_Exists(cur_path)) { |
| 473 | if (mkdir(cur_path.c_str(), 0777)) { |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 474 | gui_msg(Msg(msg::kError, "create_folder_strerr=Can not create '{1}' folder ({2}).")(cur_path)(strerror(errno))); |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 475 | return false; |
| 476 | } else { |
that | f1408b3 | 2016-01-03 11:09:15 +0100 | [diff] [blame] | 477 | tw_set_default_metadata(cur_path.c_str()); |
Ethan Yonker | 4b94cfd | 2014-12-11 10:00:45 -0600 | [diff] [blame] | 478 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 479 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 480 | } |
Dees_Troy | 43d8b00 | 2012-09-17 16:00:01 -0400 | [diff] [blame] | 481 | return true; |
| 482 | } |
| 483 | |
Dees_Troy | b46a684 | 2012-09-25 11:06:46 -0400 | [diff] [blame] | 484 | void TWFunc::GUI_Operation_Text(string Read_Value, string Default_Text) { |
| 485 | string Display_Text; |
| 486 | |
| 487 | DataManager::GetValue(Read_Value, Display_Text); |
| 488 | if (Display_Text.empty()) |
| 489 | Display_Text = Default_Text; |
| 490 | |
| 491 | DataManager::SetValue("tw_operation", Display_Text); |
| 492 | DataManager::SetValue("tw_partition", ""); |
| 493 | } |
| 494 | |
| 495 | void TWFunc::GUI_Operation_Text(string Read_Value, string Partition_Name, string Default_Text) { |
| 496 | string Display_Text; |
| 497 | |
| 498 | DataManager::GetValue(Read_Value, Display_Text); |
| 499 | if (Display_Text.empty()) |
| 500 | Display_Text = Default_Text; |
| 501 | |
| 502 | DataManager::SetValue("tw_operation", Display_Text); |
| 503 | DataManager::SetValue("tw_partition", Partition_Name); |
Dees_Troy | 7c2dec8 | 2012-09-26 09:49:14 -0400 | [diff] [blame] | 504 | } |
| 505 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 506 | void TWFunc::Copy_Log(string Source, string Destination) { |
Dees Troy | 9d7fdf5 | 2013-09-19 20:49:25 +0000 | [diff] [blame] | 507 | PartitionManager.Mount_By_Path(Destination, false); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 508 | FILE *destination_log = fopen(Destination.c_str(), "a"); |
| 509 | if (destination_log == NULL) { |
| 510 | LOGERR("TWFunc::Copy_Log -- Can't open destination log file: '%s'\n", Destination.c_str()); |
Dees_Troy | 6ef6635 | 2013-02-21 08:26:57 -0600 | [diff] [blame] | 511 | } else { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 512 | FILE *source_log = fopen(Source.c_str(), "r"); |
| 513 | if (source_log != NULL) { |
| 514 | fseek(source_log, Log_Offset, SEEK_SET); |
| 515 | char buffer[4096]; |
| 516 | while (fgets(buffer, sizeof(buffer), source_log)) |
| 517 | fputs(buffer, destination_log); // Buffered write of log file |
| 518 | Log_Offset = ftell(source_log); |
| 519 | fflush(source_log); |
| 520 | fclose(source_log); |
Dees_Troy | 6ef6635 | 2013-02-21 08:26:57 -0600 | [diff] [blame] | 521 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 522 | fflush(destination_log); |
| 523 | fclose(destination_log); |
Dees_Troy | 6ef6635 | 2013-02-21 08:26:57 -0600 | [diff] [blame] | 524 | } |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 525 | } |
| 526 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 527 | void TWFunc::Update_Log_File(void) { |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 528 | std::string recoveryDir = get_cache_dir() + "recovery/"; |
| 529 | |
| 530 | if (get_cache_dir() == NON_AB_CACHE_DIR) { |
| 531 | if (!PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false)) { |
| 532 | LOGINFO("Failed to mount %s for TWFunc::Update_Log_File\n", NON_AB_CACHE_DIR); |
Dees Troy | 9d7fdf5 | 2013-09-19 20:49:25 +0000 | [diff] [blame] | 533 | } |
Dees Troy | 9d7fdf5 | 2013-09-19 20:49:25 +0000 | [diff] [blame] | 534 | } |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 535 | |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 536 | if (!TWFunc::Path_Exists(recoveryDir)) { |
| 537 | LOGINFO("Recreating %s folder.\n", recoveryDir.c_str()); |
bigbiff bigbiff | e4bdb15 | 2019-03-23 18:33:17 -0400 | [diff] [blame] | 538 | if (!Create_Dir_Recursive(recoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, 0, 0)) { |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 539 | LOGINFO("Unable to create %s folder.\n", recoveryDir.c_str()); |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | std::string logCopy = recoveryDir + "log"; |
| 544 | std::string lastLogCopy = recoveryDir + "last_log"; |
| 545 | copy_file(logCopy, lastLogCopy, 600); |
| 546 | Copy_Log(TMP_LOG_FILE, logCopy); |
| 547 | chown(logCopy.c_str(), 1000, 1000); |
| 548 | chmod(logCopy.c_str(), 0600); |
| 549 | chmod(lastLogCopy.c_str(), 0640); |
| 550 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 551 | // Reset bootloader message |
| 552 | TWPartition* Part = PartitionManager.Find_Partition_By_Path("/misc"); |
| 553 | if (Part != NULL) { |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 554 | std::string err; |
| 555 | if (!clear_bootloader_message((void*)&err)) { |
Ethan Yonker | b523650 | 2016-11-19 22:24:59 -0600 | [diff] [blame] | 556 | if (err == "no misc device set") { |
| 557 | LOGINFO("%s\n", err.c_str()); |
| 558 | } else { |
| 559 | LOGERR("%s\n", err.c_str()); |
| 560 | } |
| 561 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 562 | } |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 563 | |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 564 | if (get_cache_dir() == NON_AB_CACHE_DIR) { |
| 565 | if (PartitionManager.Mount_By_Path("/cache", false)) { |
| 566 | if (unlink("/cache/recovery/command") && errno != ENOENT) { |
| 567 | LOGINFO("Can't unlink %s\n", "/cache/recovery/command"); |
| 568 | } |
Dees Troy | 9d7fdf5 | 2013-09-19 20:49:25 +0000 | [diff] [blame] | 569 | } |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 570 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 571 | sync(); |
| 572 | } |
| 573 | |
| 574 | void TWFunc::Update_Intent_File(string Intent) { |
| 575 | if (PartitionManager.Mount_By_Path("/cache", false) && !Intent.empty()) { |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 576 | TWFunc::write_to_file("/cache/recovery/intent", Intent); |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 577 | } |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | // reboot: Reboot the system. Return -1 on error, no return on success |
| 581 | int TWFunc::tw_reboot(RebootCommand command) |
| 582 | { |
Ethan Yonker | fe91611 | 2016-03-14 14:54:37 -0500 | [diff] [blame] | 583 | DataManager::Flush(); |
| 584 | Update_Log_File(); |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 585 | // Always force a sync before we reboot |
Dees_Troy | 6ef6635 | 2013-02-21 08:26:57 -0600 | [diff] [blame] | 586 | sync(); |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 587 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 588 | switch (command) { |
| 589 | case rb_current: |
| 590 | case rb_system: |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 591 | Update_Intent_File("s"); |
| 592 | sync(); |
| 593 | check_and_run_script("/sbin/rebootsystem.sh", "reboot system"); |
Ethan Yonker | bc2bc6b | 2015-03-24 21:37:52 -0500 | [diff] [blame] | 594 | #ifdef ANDROID_RB_PROPERTY |
| 595 | return property_set(ANDROID_RB_PROPERTY, "reboot,"); |
| 596 | #elif defined(ANDROID_RB_RESTART) |
| 597 | return android_reboot(ANDROID_RB_RESTART, 0, 0); |
| 598 | #else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 599 | return reboot(RB_AUTOBOOT); |
Ethan Yonker | bc2bc6b | 2015-03-24 21:37:52 -0500 | [diff] [blame] | 600 | #endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 601 | case rb_recovery: |
| 602 | check_and_run_script("/sbin/rebootrecovery.sh", "reboot recovery"); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 603 | #ifdef ANDROID_RB_PROPERTY |
Ethan Yonker | bc2bc6b | 2015-03-24 21:37:52 -0500 | [diff] [blame] | 604 | return property_set(ANDROID_RB_PROPERTY, "reboot,recovery"); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 605 | #else |
| 606 | return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "recovery"); |
| 607 | #endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 608 | case rb_bootloader: |
| 609 | check_and_run_script("/sbin/rebootbootloader.sh", "reboot bootloader"); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 610 | #ifdef ANDROID_RB_PROPERTY |
Ethan Yonker | bc2bc6b | 2015-03-24 21:37:52 -0500 | [diff] [blame] | 611 | return property_set(ANDROID_RB_PROPERTY, "reboot,bootloader"); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 612 | #else |
| 613 | return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "bootloader"); |
| 614 | #endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 615 | case rb_poweroff: |
| 616 | check_and_run_script("/sbin/poweroff.sh", "power off"); |
Ethan Yonker | bc2bc6b | 2015-03-24 21:37:52 -0500 | [diff] [blame] | 617 | #ifdef ANDROID_RB_PROPERTY |
| 618 | return property_set(ANDROID_RB_PROPERTY, "shutdown,"); |
| 619 | #elif defined(ANDROID_RB_POWEROFF) |
| 620 | return android_reboot(ANDROID_RB_POWEROFF, 0, 0); |
| 621 | #else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 622 | return reboot(RB_POWER_OFF); |
Ethan Yonker | bc2bc6b | 2015-03-24 21:37:52 -0500 | [diff] [blame] | 623 | #endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 624 | case rb_download: |
| 625 | check_and_run_script("/sbin/rebootdownload.sh", "reboot download"); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 626 | #ifdef ANDROID_RB_PROPERTY |
Ethan Yonker | bc2bc6b | 2015-03-24 21:37:52 -0500 | [diff] [blame] | 627 | return property_set(ANDROID_RB_PROPERTY, "reboot,download"); |
Ethan Yonker | 75bf041 | 2014-11-21 13:54:27 -0600 | [diff] [blame] | 628 | #else |
| 629 | return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "download"); |
| 630 | #endif |
mauronofrio | e9a49ef | 2018-10-03 13:38:16 +0200 | [diff] [blame] | 631 | case rb_edl: |
| 632 | check_and_run_script("/sbin/rebootedl.sh", "reboot edl"); |
| 633 | #ifdef ANDROID_RB_PROPERTY |
| 634 | return property_set(ANDROID_RB_PROPERTY, "reboot,edl"); |
| 635 | #else |
| 636 | return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "edl"); |
| 637 | #endif |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 638 | default: |
| 639 | return -1; |
Dees_Troy | 6ef6635 | 2013-02-21 08:26:57 -0600 | [diff] [blame] | 640 | } |
| 641 | return -1; |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 642 | } |
| 643 | |
| 644 | void TWFunc::check_and_run_script(const char* script_file, const char* display_name) |
| 645 | { |
| 646 | // Check for and run startup script if script exists |
| 647 | struct stat st; |
| 648 | if (stat(script_file, &st) == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 649 | gui_msg(Msg("run_script=Running {1} script...")(display_name)); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 650 | chmod(script_file, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 651 | TWFunc::Exec_Cmd(script_file); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 652 | gui_msg("done=Done."); |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 653 | } |
Dees_Troy | 3477d71 | 2012-09-27 15:44:01 -0400 | [diff] [blame] | 654 | } |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 655 | |
| 656 | int TWFunc::removeDir(const string path, bool skipParent) { |
Dees_Troy | ce67546 | 2013-01-09 19:48:21 +0000 | [diff] [blame] | 657 | DIR *d = opendir(path.c_str()); |
| 658 | int r = 0; |
| 659 | string new_path; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 660 | |
Dees_Troy | ce67546 | 2013-01-09 19:48:21 +0000 | [diff] [blame] | 661 | if (d == NULL) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 662 | gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(path)(strerror(errno))); |
Dees_Troy | ce67546 | 2013-01-09 19:48:21 +0000 | [diff] [blame] | 663 | return -1; |
| 664 | } |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 665 | |
Dees_Troy | ce67546 | 2013-01-09 19:48:21 +0000 | [diff] [blame] | 666 | if (d) { |
| 667 | struct dirent *p; |
| 668 | while (!r && (p = readdir(d))) { |
Dees_Troy | ce67546 | 2013-01-09 19:48:21 +0000 | [diff] [blame] | 669 | if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, "..")) |
| 670 | continue; |
| 671 | new_path = path + "/"; |
| 672 | new_path.append(p->d_name); |
| 673 | if (p->d_type == DT_DIR) { |
| 674 | r = removeDir(new_path, true); |
| 675 | if (!r) { |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 676 | if (p->d_type == DT_DIR) |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 677 | r = rmdir(new_path.c_str()); |
| 678 | else |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 679 | LOGINFO("Unable to removeDir '%s': %s\n", new_path.c_str(), strerror(errno)); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 680 | } |
bigbiff bigbiff | 98f1f90 | 2013-01-19 18:46:13 -0500 | [diff] [blame] | 681 | } else if (p->d_type == DT_REG || p->d_type == DT_LNK || p->d_type == DT_FIFO || p->d_type == DT_SOCK) { |
Dees_Troy | ce67546 | 2013-01-09 19:48:21 +0000 | [diff] [blame] | 682 | r = unlink(new_path.c_str()); |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 683 | if (r != 0) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 684 | LOGINFO("Unable to unlink '%s: %s'\n", new_path.c_str(), strerror(errno)); |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 685 | } |
Dees_Troy | ce67546 | 2013-01-09 19:48:21 +0000 | [diff] [blame] | 686 | } |
| 687 | } |
| 688 | closedir(d); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 689 | |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 690 | if (!r) { |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 691 | if (skipParent) |
| 692 | return 0; |
| 693 | else |
| 694 | r = rmdir(path.c_str()); |
| 695 | } |
Dees_Troy | ce67546 | 2013-01-09 19:48:21 +0000 | [diff] [blame] | 696 | } |
| 697 | return r; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 698 | } |
| 699 | |
| 700 | int TWFunc::copy_file(string src, string dst, int mode) { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 701 | LOGINFO("Copying file %s to %s\n", src.c_str(), dst.c_str()); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 702 | ifstream srcfile(src.c_str(), ios::binary); |
| 703 | ofstream dstfile(dst.c_str(), ios::binary); |
| 704 | dstfile << srcfile.rdbuf(); |
| 705 | srcfile.close(); |
| 706 | dstfile.close(); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 707 | if (chmod(dst.c_str(), mode) != 0) |
| 708 | return -1; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 709 | return 0; |
| 710 | } |
Dees_Troy | 3ee47bc | 2013-01-25 21:47:37 +0000 | [diff] [blame] | 711 | |
| 712 | unsigned int TWFunc::Get_D_Type_From_Stat(string Path) { |
| 713 | struct stat st; |
| 714 | |
| 715 | stat(Path.c_str(), &st); |
| 716 | if (st.st_mode & S_IFDIR) |
| 717 | return DT_DIR; |
| 718 | else if (st.st_mode & S_IFBLK) |
| 719 | return DT_BLK; |
| 720 | else if (st.st_mode & S_IFCHR) |
| 721 | return DT_CHR; |
| 722 | else if (st.st_mode & S_IFIFO) |
| 723 | return DT_FIFO; |
| 724 | else if (st.st_mode & S_IFLNK) |
| 725 | return DT_LNK; |
| 726 | else if (st.st_mode & S_IFREG) |
| 727 | return DT_REG; |
| 728 | else if (st.st_mode & S_IFSOCK) |
| 729 | return DT_SOCK; |
| 730 | return DT_UNKNOWN; |
Dees_Troy | e34c133 | 2013-02-06 19:13:00 +0000 | [diff] [blame] | 731 | } |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 732 | |
| 733 | int TWFunc::read_file(string fn, string& results) { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 734 | ifstream file; |
| 735 | file.open(fn.c_str(), ios::in); |
| 736 | |
| 737 | if (file.is_open()) { |
| 738 | file >> results; |
| 739 | file.close(); |
| 740 | return 0; |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 741 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 742 | |
| 743 | LOGINFO("Cannot find file %s\n", fn.c_str()); |
| 744 | return -1; |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | int TWFunc::read_file(string fn, vector<string>& results) { |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 748 | ifstream file; |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 749 | string line; |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 750 | file.open(fn.c_str(), ios::in); |
| 751 | if (file.is_open()) { |
bigbiff bigbiff | cdcfee4 | 2013-02-27 21:11:26 -0500 | [diff] [blame] | 752 | while (getline(file, line)) |
| 753 | results.push_back(line); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 754 | file.close(); |
| 755 | return 0; |
| 756 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 757 | LOGINFO("Cannot find file %s\n", fn.c_str()); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 758 | return -1; |
| 759 | } |
| 760 | |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 761 | int TWFunc::read_file(string fn, uint64_t& results) { |
| 762 | ifstream file; |
| 763 | file.open(fn.c_str(), ios::in); |
| 764 | |
| 765 | if (file.is_open()) { |
| 766 | file >> results; |
| 767 | file.close(); |
| 768 | return 0; |
| 769 | } |
| 770 | |
| 771 | LOGINFO("Cannot find file %s\n", fn.c_str()); |
| 772 | return -1; |
| 773 | } |
| 774 | |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 775 | int TWFunc::write_to_file(const string& fn, const string& line) { |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 776 | FILE *file; |
| 777 | file = fopen(fn.c_str(), "w"); |
| 778 | if (file != NULL) { |
| 779 | fwrite(line.c_str(), line.size(), 1, file); |
| 780 | fclose(file); |
| 781 | return 0; |
| 782 | } |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 783 | LOGINFO("Cannot find file %s\n", fn.c_str()); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 784 | return -1; |
| 785 | } |
| 786 | |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 787 | bool TWFunc::Try_Decrypting_Backup(string Restore_Path, string Password) { |
| 788 | DIR* d; |
| 789 | |
| 790 | string Filename; |
| 791 | Restore_Path += "/"; |
| 792 | d = opendir(Restore_Path.c_str()); |
| 793 | if (d == NULL) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 794 | gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Path)(strerror(errno))); |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 795 | return false; |
| 796 | } |
| 797 | |
| 798 | struct dirent* de; |
| 799 | while ((de = readdir(d)) != NULL) { |
| 800 | Filename = Restore_Path; |
| 801 | Filename += de->d_name; |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 802 | if (TWFunc::Get_File_Type(Filename) == ENCRYPTED) { |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 803 | if (TWFunc::Try_Decrypting_File(Filename, Password) < 2) { |
| 804 | DataManager::SetValue("tw_restore_password", ""); // Clear the bad password |
| 805 | DataManager::SetValue("tw_restore_display", ""); // Also clear the display mask |
| 806 | closedir(d); |
| 807 | return false; |
| 808 | } |
| 809 | } |
| 810 | } |
| 811 | closedir(d); |
| 812 | return true; |
| 813 | } |
| 814 | |
Dees Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 815 | string TWFunc::Get_Current_Date() { |
| 816 | string Current_Date; |
| 817 | time_t seconds = time(0); |
| 818 | struct tm *t = localtime(&seconds); |
| 819 | char timestamp[255]; |
| 820 | sprintf(timestamp,"%04d-%02d-%02d--%02d-%02d-%02d",t->tm_year+1900,t->tm_mon+1,t->tm_mday,t->tm_hour,t->tm_min,t->tm_sec); |
| 821 | Current_Date = timestamp; |
| 822 | return Current_Date; |
| 823 | } |
| 824 | |
Ethan Yonker | b555789 | 2014-02-07 21:43:20 -0600 | [diff] [blame] | 825 | string TWFunc::System_Property_Get(string Prop_Name) { |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 826 | bool mount_state = PartitionManager.Is_Mounted_By_Path(PartitionManager.Get_Android_Root_Path()); |
Dees Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 827 | std::vector<string> buildprop; |
Ethan Yonker | b555789 | 2014-02-07 21:43:20 -0600 | [diff] [blame] | 828 | string propvalue; |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 829 | if (!PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), true)) |
Ethan Yonker | b555789 | 2014-02-07 21:43:20 -0600 | [diff] [blame] | 830 | return propvalue; |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 831 | string prop_file = "/system/build.prop"; |
| 832 | if (!TWFunc::Path_Exists(prop_file)) |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 833 | prop_file = PartitionManager.Get_Android_Root_Path() + "/system/build.prop"; // for devices with system as a root file system (e.g. Pixel) |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 834 | if (TWFunc::read_file(prop_file, buildprop) != 0) { |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 835 | LOGINFO("Unable to open build.prop for getting '%s'.\n", Prop_Name.c_str()); |
Vojtech Bocek | a2e7016 | 2013-09-17 17:05:10 +0200 | [diff] [blame] | 836 | DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date()); |
Dees Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 837 | if (!mount_state) |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 838 | PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false); |
Ethan Yonker | b555789 | 2014-02-07 21:43:20 -0600 | [diff] [blame] | 839 | return propvalue; |
Dees Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 840 | } |
| 841 | int line_count = buildprop.size(); |
| 842 | int index; |
| 843 | size_t start_pos = 0, end_pos; |
Ethan Yonker | b555789 | 2014-02-07 21:43:20 -0600 | [diff] [blame] | 844 | string propname; |
Dees Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 845 | for (index = 0; index < line_count; index++) { |
| 846 | end_pos = buildprop.at(index).find("=", start_pos); |
| 847 | propname = buildprop.at(index).substr(start_pos, end_pos); |
Ethan Yonker | b555789 | 2014-02-07 21:43:20 -0600 | [diff] [blame] | 848 | if (propname == Prop_Name) { |
Dees Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 849 | propvalue = buildprop.at(index).substr(end_pos + 1, buildprop.at(index).size()); |
Ethan Yonker | b555789 | 2014-02-07 21:43:20 -0600 | [diff] [blame] | 850 | if (!mount_state) |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 851 | PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false); |
Ethan Yonker | b555789 | 2014-02-07 21:43:20 -0600 | [diff] [blame] | 852 | return propvalue; |
Dees Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 853 | } |
| 854 | } |
Dees Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 855 | if (!mount_state) |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 856 | PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false); |
Ethan Yonker | b555789 | 2014-02-07 21:43:20 -0600 | [diff] [blame] | 857 | return propvalue; |
| 858 | } |
| 859 | |
| 860 | void TWFunc::Auto_Generate_Backup_Name() { |
| 861 | string propvalue = System_Property_Get("ro.build.display.id"); |
| 862 | if (propvalue.empty()) { |
| 863 | DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date()); |
| 864 | return; |
| 865 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 866 | else { |
| 867 | //remove periods from build display so it doesn't confuse the extension code |
| 868 | propvalue.erase(remove(propvalue.begin(), propvalue.end(), '.'), propvalue.end()); |
| 869 | } |
Ethan Yonker | b555789 | 2014-02-07 21:43:20 -0600 | [diff] [blame] | 870 | string Backup_Name = Get_Current_Date(); |
bigbiff | 74a6d0d | 2015-02-14 20:49:44 -0500 | [diff] [blame] | 871 | Backup_Name += "_" + propvalue; |
Ethan Yonker | b555789 | 2014-02-07 21:43:20 -0600 | [diff] [blame] | 872 | if (Backup_Name.size() > MAX_BACKUP_NAME_LEN) |
| 873 | Backup_Name.resize(MAX_BACKUP_NAME_LEN); |
| 874 | // Trailing spaces cause problems on some file systems, so remove them |
| 875 | string space_check, space = " "; |
| 876 | space_check = Backup_Name.substr(Backup_Name.size() - 1, 1); |
| 877 | while (space_check == space) { |
| 878 | Backup_Name.resize(Backup_Name.size() - 1); |
| 879 | space_check = Backup_Name.substr(Backup_Name.size() - 1, 1); |
| 880 | } |
bigbiff | 74a6d0d | 2015-02-14 20:49:44 -0500 | [diff] [blame] | 881 | replace(Backup_Name.begin(), Backup_Name.end(), ' ', '_'); |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 882 | if (PartitionManager.Check_Backup_Name(Backup_Name, false, true) != 0) { |
| 883 | LOGINFO("Auto generated backup name '%s' is not valid, using date instead.\n", Backup_Name.c_str()); |
Ethan Yonker | 92d48e0 | 2014-02-26 12:05:55 -0600 | [diff] [blame] | 884 | DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date()); |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 885 | } else { |
| 886 | DataManager::SetValue(TW_BACKUP_NAME, Backup_Name); |
Ethan Yonker | 92d48e0 | 2014-02-26 12:05:55 -0600 | [diff] [blame] | 887 | } |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 888 | } |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 889 | |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 890 | void TWFunc::Fixup_Time_On_Boot(const string& time_paths /* = "" */) |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 891 | { |
| 892 | #ifdef QCOM_RTC_FIX |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 893 | static bool fixed = false; |
| 894 | if (fixed) |
| 895 | return; |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 896 | |
| 897 | LOGINFO("TWFunc::Fixup_Time: Pre-fix date and time: %s\n", TWFunc::Get_Current_Date().c_str()); |
| 898 | |
| 899 | struct timeval tv; |
| 900 | uint64_t offset = 0; |
| 901 | std::string sepoch = "/sys/class/rtc/rtc0/since_epoch"; |
| 902 | |
| 903 | if (TWFunc::read_file(sepoch, offset) == 0) { |
| 904 | |
| 905 | LOGINFO("TWFunc::Fixup_Time: Setting time offset from file %s\n", sepoch.c_str()); |
| 906 | |
| 907 | tv.tv_sec = offset; |
| 908 | tv.tv_usec = 0; |
| 909 | settimeofday(&tv, NULL); |
| 910 | |
| 911 | gettimeofday(&tv, NULL); |
| 912 | |
Phoenix591 | 46b05f2 | 2018-02-03 06:41:08 +0000 | [diff] [blame] | 913 | if (tv.tv_sec > 1517600000) { // Anything older then 2 Feb 2018 19:33:20 GMT will do nicely thank you ;) |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 914 | |
| 915 | LOGINFO("TWFunc::Fixup_Time: Date and time corrected: %s\n", TWFunc::Get_Current_Date().c_str()); |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 916 | fixed = true; |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 917 | return; |
| 918 | |
| 919 | } |
| 920 | |
| 921 | } else { |
| 922 | |
| 923 | LOGINFO("TWFunc::Fixup_Time: opening %s failed\n", sepoch.c_str()); |
| 924 | |
| 925 | } |
| 926 | |
Ethan Yonker | 9132d91 | 2015-02-02 10:32:49 -0600 | [diff] [blame] | 927 | LOGINFO("TWFunc::Fixup_Time: will attempt to use the ats files now.\n"); |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 928 | |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 929 | // Devices with Qualcomm Snapdragon 800 do some shenanigans with RTC. |
| 930 | // They never set it, it just ticks forward from 1970-01-01 00:00, |
| 931 | // and then they have files /data/system/time/ats_* with 64bit offset |
| 932 | // in miliseconds which, when added to the RTC, gives the correct time. |
| 933 | // So, the time is: (offset_from_ats + value_from_RTC) |
| 934 | // There are multiple ats files, they are for different systems? Bases? |
| 935 | // Like, ats_1 is for modem and ats_2 is for TOD (time of day?). |
| 936 | // Look at file time_genoff.h in CodeAurora, qcom-opensource/time-services |
| 937 | |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 938 | std::vector<std::string> paths; // space separated list of paths |
| 939 | if (time_paths.empty()) { |
Mauronofrio Matarrese | 2dab70d | 2019-03-05 02:22:26 +0100 | [diff] [blame] | 940 | paths = Split_String("/data/system/time/ /data/time/ /data/vendor/time/", " "); |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 941 | if (!PartitionManager.Mount_By_Path("/data", false)) |
| 942 | return; |
| 943 | } else { |
| 944 | // When specific path(s) are used, Fixup_Time needs those |
| 945 | // partitions to already be mounted! |
| 946 | paths = Split_String(time_paths, " "); |
| 947 | } |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 948 | |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 949 | FILE *f; |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 950 | offset = 0; |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 951 | struct dirent *dt; |
| 952 | std::string ats_path; |
| 953 | |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 954 | // Prefer ats_2, it seems to be the one we want according to logcat on hammerhead |
| 955 | // - it is the one for ATS_TOD (time of day?). |
| 956 | // However, I never saw a device where the offset differs between ats files. |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 957 | for (size_t i = 0; i < paths.size(); ++i) |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 958 | { |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 959 | DIR *d = opendir(paths[i].c_str()); |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 960 | if (!d) |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 961 | continue; |
| 962 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 963 | while ((dt = readdir(d))) |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 964 | { |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 965 | if (dt->d_type != DT_REG || strncmp(dt->d_name, "ats_", 4) != 0) |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 966 | continue; |
| 967 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 968 | if (ats_path.empty() || strcmp(dt->d_name, "ats_2") == 0) |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 969 | ats_path = paths[i] + dt->d_name; |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 970 | } |
| 971 | |
| 972 | closedir(d); |
| 973 | } |
| 974 | |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 975 | if (ats_path.empty()) { |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 976 | LOGINFO("TWFunc::Fixup_Time: no ats files found, leaving untouched!\n"); |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 977 | } else if ((f = fopen(ats_path.c_str(), "r")) == NULL) { |
Dees Troy | 3e254b9 | 2014-03-06 20:24:54 +0000 | [diff] [blame] | 978 | LOGINFO("TWFunc::Fixup_Time: failed to open file %s\n", ats_path.c_str()); |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 979 | } else if (fread(&offset, sizeof(offset), 1, f) != 1) { |
Dees Troy | 3e254b9 | 2014-03-06 20:24:54 +0000 | [diff] [blame] | 980 | LOGINFO("TWFunc::Fixup_Time: failed load uint64 from file %s\n", ats_path.c_str()); |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 981 | fclose(f); |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 982 | } else { |
| 983 | fclose(f); |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 984 | |
nkk71 | 98fc399 | 2017-12-16 16:26:42 +0200 | [diff] [blame] | 985 | LOGINFO("TWFunc::Fixup_Time: Setting time offset from file %s, offset %llu\n", ats_path.c_str(), (unsigned long long) offset); |
| 986 | DataManager::SetValue("tw_qcom_ats_offset", (unsigned long long) offset, 1); |
| 987 | fixed = true; |
| 988 | } |
| 989 | |
| 990 | if (!fixed) { |
| 991 | // Failed to get offset from ats file, check twrp settings |
| 992 | unsigned long long value; |
| 993 | if (DataManager::GetValue("tw_qcom_ats_offset", value) < 0) { |
| 994 | return; |
| 995 | } else { |
| 996 | offset = (uint64_t) value; |
| 997 | LOGINFO("TWFunc::Fixup_Time: Setting time offset from twrp setting file, offset %llu\n", (unsigned long long) offset); |
| 998 | // Do not consider the settings file as a definitive answer, keep fixed=false so next run will try ats files again |
| 999 | } |
| 1000 | } |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 1001 | |
| 1002 | gettimeofday(&tv, NULL); |
| 1003 | |
| 1004 | tv.tv_sec += offset/1000; |
Phoenix591 | e444d11 | 2018-02-03 07:23:54 +0000 | [diff] [blame] | 1005 | #ifdef TW_CLOCK_OFFSET |
| 1006 | // Some devices are even quirkier and have ats files that are offset from the actual time |
| 1007 | tv.tv_sec = tv.tv_sec + TW_CLOCK_OFFSET; |
| 1008 | #endif |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 1009 | tv.tv_usec += (offset%1000)*1000; |
| 1010 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 1011 | while (tv.tv_usec >= 1000000) |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 1012 | { |
| 1013 | ++tv.tv_sec; |
| 1014 | tv.tv_usec -= 1000000; |
| 1015 | } |
| 1016 | |
| 1017 | settimeofday(&tv, NULL); |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 1018 | |
| 1019 | LOGINFO("TWFunc::Fixup_Time: Date and time corrected: %s\n", TWFunc::Get_Current_Date().c_str()); |
Vojtech Bocek | d0e38bc | 2014-02-03 23:36:57 +0100 | [diff] [blame] | 1020 | #endif |
| 1021 | } |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 1022 | |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 1023 | std::vector<std::string> TWFunc::Split_String(const std::string& str, const std::string& delimiter, bool removeEmpty) |
| 1024 | { |
| 1025 | std::vector<std::string> res; |
| 1026 | size_t idx = 0, idx_last = 0; |
| 1027 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 1028 | while (idx < str.size()) |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 1029 | { |
| 1030 | idx = str.find_first_of(delimiter, idx_last); |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 1031 | if (idx == std::string::npos) |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 1032 | idx = str.size(); |
| 1033 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 1034 | if (idx-idx_last != 0 || !removeEmpty) |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 1035 | res.push_back(str.substr(idx_last, idx-idx_last)); |
| 1036 | |
| 1037 | idx_last = idx + delimiter.size(); |
| 1038 | } |
| 1039 | |
| 1040 | return res; |
| 1041 | } |
| 1042 | |
Vojtech Bocek | 03fd6c5 | 2014-03-13 18:46:34 +0100 | [diff] [blame] | 1043 | bool TWFunc::Create_Dir_Recursive(const std::string& path, mode_t mode, uid_t uid, gid_t gid) |
| 1044 | { |
| 1045 | std::vector<std::string> parts = Split_String(path, "/"); |
| 1046 | std::string cur_path; |
| 1047 | struct stat info; |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 1048 | for (size_t i = 0; i < parts.size(); ++i) |
Vojtech Bocek | 03fd6c5 | 2014-03-13 18:46:34 +0100 | [diff] [blame] | 1049 | { |
| 1050 | cur_path += "/" + parts[i]; |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 1051 | if (stat(cur_path.c_str(), &info) < 0 || !S_ISDIR(info.st_mode)) |
Vojtech Bocek | 03fd6c5 | 2014-03-13 18:46:34 +0100 | [diff] [blame] | 1052 | { |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 1053 | if (mkdir(cur_path.c_str(), mode) < 0) |
Vojtech Bocek | 03fd6c5 | 2014-03-13 18:46:34 +0100 | [diff] [blame] | 1054 | return false; |
| 1055 | chown(cur_path.c_str(), uid, gid); |
| 1056 | } |
| 1057 | } |
| 1058 | return true; |
| 1059 | } |
| 1060 | |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 1061 | int TWFunc::Set_Brightness(std::string brightness_value) |
| 1062 | { |
Tatsuyuki Ishi | 548a175 | 2015-12-28 10:08:58 +0900 | [diff] [blame] | 1063 | int result = -1; |
| 1064 | std::string secondary_brightness_file; |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 1065 | |
Tatsuyuki Ishi | 548a175 | 2015-12-28 10:08:58 +0900 | [diff] [blame] | 1066 | if (DataManager::GetIntValue("tw_has_brightnesss_file")) { |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 1067 | LOGINFO("TWFunc::Set_Brightness: Setting brightness control to %s\n", brightness_value.c_str()); |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 1068 | result = TWFunc::write_to_file(DataManager::GetStrValue("tw_brightness_file"), brightness_value); |
Tatsuyuki Ishi | 548a175 | 2015-12-28 10:08:58 +0900 | [diff] [blame] | 1069 | DataManager::GetValue("tw_secondary_brightness_file", secondary_brightness_file); |
| 1070 | if (!secondary_brightness_file.empty()) { |
| 1071 | LOGINFO("TWFunc::Set_Brightness: Setting secondary brightness control to %s\n", brightness_value.c_str()); |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 1072 | TWFunc::write_to_file(secondary_brightness_file, brightness_value); |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 1073 | } |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 1074 | } |
Tatsuyuki Ishi | 548a175 | 2015-12-28 10:08:58 +0900 | [diff] [blame] | 1075 | return result; |
xNUTx | e85f02d | 2014-07-18 01:30:58 +0200 | [diff] [blame] | 1076 | } |
| 1077 | |
bigbiff bigbiff | c7eee6f | 2014-09-02 18:59:01 -0400 | [diff] [blame] | 1078 | bool TWFunc::Toggle_MTP(bool enable) { |
| 1079 | #ifdef TW_HAS_MTP |
| 1080 | static int was_enabled = false; |
| 1081 | |
| 1082 | if (enable && was_enabled) { |
| 1083 | if (!PartitionManager.Enable_MTP()) |
| 1084 | PartitionManager.Disable_MTP(); |
| 1085 | } else { |
| 1086 | was_enabled = DataManager::GetIntValue("tw_mtp_enabled"); |
| 1087 | PartitionManager.Disable_MTP(); |
| 1088 | usleep(500); |
| 1089 | } |
| 1090 | return was_enabled; |
| 1091 | #else |
| 1092 | return false; |
| 1093 | #endif |
| 1094 | } |
| 1095 | |
Tom Hite | 5a92672 | 2014-09-15 01:31:03 +0000 | [diff] [blame] | 1096 | void TWFunc::SetPerformanceMode(bool mode) { |
| 1097 | if (mode) { |
| 1098 | property_set("recovery.perf.mode", "1"); |
| 1099 | } else { |
| 1100 | property_set("recovery.perf.mode", "0"); |
| 1101 | } |
| 1102 | // Some time for events to catch up to init handlers |
| 1103 | usleep(500000); |
| 1104 | } |
| 1105 | |
Jenkins | 1710bf2 | 2014-10-02 20:22:21 -0400 | [diff] [blame] | 1106 | std::string TWFunc::to_string(unsigned long value) { |
| 1107 | std::ostringstream os; |
| 1108 | os << value; |
| 1109 | return os.str(); |
| 1110 | } |
| 1111 | |
Ethan Yonker | 9132d91 | 2015-02-02 10:32:49 -0600 | [diff] [blame] | 1112 | void TWFunc::Disable_Stock_Recovery_Replace(void) { |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 1113 | if (PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), false)) { |
Ethan Yonker | 9132d91 | 2015-02-02 10:32:49 -0600 | [diff] [blame] | 1114 | // Disable flashing of stock recovery |
| 1115 | if (TWFunc::Path_Exists("/system/recovery-from-boot.p")) { |
| 1116 | rename("/system/recovery-from-boot.p", "/system/recovery-from-boot.bak"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1117 | gui_msg("rename_stock=Renamed stock recovery file in /system to prevent the stock ROM from replacing TWRP."); |
Ethan Yonker | 9132d91 | 2015-02-02 10:32:49 -0600 | [diff] [blame] | 1118 | sync(); |
| 1119 | } |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 1120 | PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false); |
Ethan Yonker | 9132d91 | 2015-02-02 10:32:49 -0600 | [diff] [blame] | 1121 | } |
| 1122 | } |
| 1123 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 1124 | unsigned long long TWFunc::IOCTL_Get_Block_Size(const char* block_device) { |
| 1125 | unsigned long block_device_size; |
| 1126 | int ret = 0; |
| 1127 | |
| 1128 | int fd = open(block_device, O_RDONLY); |
| 1129 | if (fd < 0) { |
| 1130 | LOGINFO("Find_Partition_Size: Failed to open '%s', (%s)\n", block_device, strerror(errno)); |
| 1131 | } else { |
| 1132 | ret = ioctl(fd, BLKGETSIZE, &block_device_size); |
| 1133 | close(fd); |
| 1134 | if (ret) { |
| 1135 | LOGINFO("Find_Partition_Size: ioctl error: (%s)\n", strerror(errno)); |
| 1136 | } else { |
| 1137 | return (unsigned long long)(block_device_size) * 512LLU; |
| 1138 | } |
| 1139 | } |
| 1140 | return 0; |
| 1141 | } |
| 1142 | |
bigbiff bigbiff | bad332a | 2016-07-29 21:18:13 -0400 | [diff] [blame] | 1143 | void TWFunc::copy_kernel_log(string curr_storage) { |
| 1144 | std::string dmesgDst = curr_storage + "/dmesg.log"; |
| 1145 | std::string dmesgCmd = "/sbin/dmesg"; |
| 1146 | |
| 1147 | std::string result; |
| 1148 | Exec_Cmd(dmesgCmd, result); |
Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 1149 | write_to_file(dmesgDst, result); |
bigbiff bigbiff | bad332a | 2016-07-29 21:18:13 -0400 | [diff] [blame] | 1150 | gui_msg(Msg("copy_kernel_log=Copied kernel log to {1}")(dmesgDst)); |
| 1151 | tw_set_default_metadata(dmesgDst.c_str()); |
| 1152 | } |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1153 | |
| 1154 | bool TWFunc::isNumber(string strtocheck) { |
| 1155 | int num = 0; |
| 1156 | std::istringstream iss(strtocheck); |
| 1157 | |
| 1158 | if (!(iss >> num).fail()) |
| 1159 | return true; |
| 1160 | else |
| 1161 | return false; |
| 1162 | } |
| 1163 | |
| 1164 | int TWFunc::stream_adb_backup(string &Restore_Name) { |
| 1165 | string cmd = "/sbin/bu --twrp stream " + Restore_Name; |
| 1166 | LOGINFO("stream_adb_backup: %s\n", cmd.c_str()); |
| 1167 | int ret = TWFunc::Exec_Cmd(cmd); |
| 1168 | if (ret != 0) |
| 1169 | return -1; |
| 1170 | return ret; |
| 1171 | } |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1172 | |
| 1173 | std::string TWFunc::get_cache_dir() { |
| 1174 | if (PartitionManager.Find_Partition_By_Path(NON_AB_CACHE_DIR) == NULL) { |
bigbiff bigbiff | e4bdb15 | 2019-03-23 18:33:17 -0400 | [diff] [blame] | 1175 | if (PartitionManager.Find_Partition_By_Path(NON_AB_CACHE_DIR) == NULL) { |
| 1176 | if (PartitionManager.Find_Partition_By_Path(PERSIST_CACHE_DIR) == NULL) { |
| 1177 | LOGINFO("Unable to find a directory to store TWRP logs."); |
| 1178 | return ""; |
| 1179 | } |
| 1180 | return PERSIST_CACHE_DIR; |
| 1181 | } else { |
| 1182 | return AB_CACHE_DIR; |
| 1183 | } |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1184 | } |
| 1185 | else { |
| 1186 | return NON_AB_CACHE_DIR; |
| 1187 | } |
| 1188 | } |
| 1189 | |
| 1190 | void TWFunc::check_selinux_support() { |
| 1191 | if (TWFunc::Path_Exists("/prebuilt_file_contexts")) { |
| 1192 | if (TWFunc::Path_Exists("/file_contexts")) { |
| 1193 | printf("Renaming regular /file_contexts -> /file_contexts.bak\n"); |
| 1194 | rename("/file_contexts", "/file_contexts.bak"); |
| 1195 | } |
| 1196 | printf("Moving /prebuilt_file_contexts -> /file_contexts\n"); |
| 1197 | rename("/prebuilt_file_contexts", "/file_contexts"); |
| 1198 | } |
| 1199 | struct selinux_opt selinux_options[] = { |
| 1200 | { SELABEL_OPT_PATH, "/file_contexts" } |
| 1201 | }; |
| 1202 | selinux_handle = selabel_open(SELABEL_CTX_FILE, selinux_options, 1); |
| 1203 | if (!selinux_handle) |
| 1204 | printf("No file contexts for SELinux\n"); |
| 1205 | else |
| 1206 | printf("SELinux contexts loaded from /file_contexts\n"); |
| 1207 | { // Check to ensure SELinux can be supported by the kernel |
| 1208 | char *contexts = NULL; |
| 1209 | std::string cacheDir = TWFunc::get_cache_dir(); |
| 1210 | std::string se_context_check = cacheDir + "recovery/"; |
| 1211 | int ret = 0; |
| 1212 | |
| 1213 | if (cacheDir == NON_AB_CACHE_DIR) { |
| 1214 | PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false); |
| 1215 | } |
| 1216 | if (TWFunc::Path_Exists(se_context_check)) { |
| 1217 | ret = lgetfilecon(se_context_check.c_str(), &contexts); |
Makornthawat Emery | abc299c | 2019-03-29 13:45:22 +0000 | [diff] [blame] | 1218 | if (ret < 0) { |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 1219 | LOGINFO("Could not check %s SELinux contexts, using /sbin/teamwin instead which may be inaccurate.\n", se_context_check.c_str()); |
| 1220 | lgetfilecon("/sbin/teamwin", &contexts); |
| 1221 | } |
| 1222 | } |
| 1223 | if (ret < 0) { |
| 1224 | gui_warn("no_kernel_selinux=Kernel does not have support for reading SELinux contexts."); |
| 1225 | } else { |
| 1226 | free(contexts); |
| 1227 | gui_msg("full_selinux=Full SELinux support is present."); |
| 1228 | } |
| 1229 | } |
| 1230 | } |
Ethan Yonker | 76bbd3a | 2019-05-10 10:50:04 -0500 | [diff] [blame] | 1231 | |
| 1232 | bool TWFunc::Is_TWRP_App_In_System() { |
| 1233 | if (PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), false)) { |
| 1234 | string base_path = PartitionManager.Get_Android_Root_Path(); |
| 1235 | if (TWFunc::Path_Exists(PartitionManager.Get_Android_Root_Path() + "/system")) |
| 1236 | base_path += "/system"; // For devices with system as a root file system (e.g. Pixel) |
| 1237 | string install_path = base_path + "/priv-app"; |
| 1238 | if (!TWFunc::Path_Exists(install_path)) |
| 1239 | install_path = base_path + "/app"; |
| 1240 | install_path += "/twrpapp"; |
| 1241 | if (TWFunc::Path_Exists(install_path)) { |
| 1242 | LOGINFO("App found at '%s'\n", install_path.c_str()); |
| 1243 | DataManager::SetValue("tw_app_installed_in_system", 1); |
| 1244 | return true; |
| 1245 | } |
| 1246 | } |
| 1247 | DataManager::SetValue("tw_app_installed_in_system", 0); |
| 1248 | return false; |
| 1249 | } |
Ethan Yonker | af2897c | 2014-02-10 13:07:14 -0600 | [diff] [blame] | 1250 | #endif // ndef BUILD_TWRPTAR_MAIN |