blob: fa4e35d656a55a686f0426267b372b002d86ace0 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
2 Copyright 2012 bigbiff/Dees_Troy TeamWin
3 This file is part of TWRP/TeamWin Recovery Project.
4
5 TWRP is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 TWRP is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with TWRP. If not, see <http://www.gnu.org/licenses/>.
17*/
18
Dees_Troy38bd7602012-09-14 13:33:53 -040019#include <stdio.h>
20#include <stdlib.h>
Ethan Yonkeraf2897c2014-02-10 13:07:14 -060021#include <string>
Dees_Troy38bd7602012-09-14 13:33:53 -040022#include <unistd.h>
23#include <vector>
24#include <dirent.h>
25#include <time.h>
Dees_Troy43d8b002012-09-17 16:00:01 -040026#include <errno.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050027#include <fcntl.h>
28#include <sys/mount.h>
Dees_Troya58bead2012-09-27 09:49:29 -040029#include <sys/reboot.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050030#include <sys/sendfile.h>
31#include <sys/stat.h>
32#include <sys/vfs.h>
Dees_Troy83bd4832013-05-04 12:39:56 +000033#include <sys/types.h>
34#include <sys/wait.h>
bigbiff bigbiff9c754052013-01-09 09:09:08 -050035#include <iostream>
36#include <fstream>
Dees_Troy83bd4832013-05-04 12:39:56 +000037#include <sstream>
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -040038#include <cctype>
bigbiff74a6d0d2015-02-14 20:49:44 -050039#include <algorithm>
bigbiff bigbiff19874f12019-01-08 20:06:57 -050040#include <selinux/label.h>
Dees_Troy38bd7602012-09-14 13:33:53 -040041#include "twrp-functions.hpp"
Dees_Troy2673cec2013-04-02 20:22:16 +000042#include "twcommon.h"
Ethan Yonker472f5062016-02-25 13:47:30 -060043#include "gui/gui.hpp"
Ethan Yonkeraf2897c2014-02-10 13:07:14 -060044#ifndef BUILD_TWRPTAR_MAIN
Dees_Troyb46a6842012-09-25 11:06:46 -040045#include "data.hpp"
Ethan Yonkeraf2897c2014-02-10 13:07:14 -060046#include "partitions.hpp"
Dees_Troy3477d712012-09-27 15:44:01 -040047#include "variables.h"
Ethan Yonker8373cfe2017-09-08 06:50:54 -050048#include "bootloader_message_twrp/include/bootloader_message_twrp/bootloader_message.h"
Tom Hite5a926722014-09-15 01:31:03 +000049#include "cutils/properties.h"
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -050050#include "cutils/android_reboot.h"
51#include <sys/reboot.h>
Ethan Yonkeraf2897c2014-02-10 13:07:14 -060052#endif // ndef BUILD_TWRPTAR_MAIN
Dees_Troy83bd4832013-05-04 12:39:56 +000053#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
54 #include "openaes/inc/oaes_lib.h"
55#endif
Ethan Yonkerf1179622016-08-25 15:32:21 -050056#include "set_metadata.h"
Dees_Troy38bd7602012-09-14 13:33:53 -040057
Dees_Troyb05ddee2013-01-28 20:24:50 +000058extern "C" {
59 #include "libcrecovery/common.h"
60}
61
Chaosmaster461e39f2020-02-07 01:48:13 +010062#ifdef TW_INCLUDE_LIBRESETPROP
63 #include <resetprop.h>
64#endif
65
bigbiff bigbiff19874f12019-01-08 20:06:57 -050066struct selabel_handle *selinux_handle;
67
bigbiff bigbiff9c754052013-01-09 09:09:08 -050068/* Execute a command */
Vojtech Bocek05534202013-09-11 08:11:56 +020069int TWFunc::Exec_Cmd(const string& cmd, string &result) {
Dees_Troy29a06352013-08-24 12:06:47 +000070 FILE* exec;
71 char buffer[130];
72 int ret = 0;
73 exec = __popen(cmd.c_str(), "r");
74 if (!exec) return -1;
Matt Mowera8a89d12016-12-30 18:10:37 -060075 while (!feof(exec)) {
Dees_Troy29a06352013-08-24 12:06:47 +000076 if (fgets(buffer, 128, exec) != NULL) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -050077 result += buffer;
Dees_Troyb05ddee2013-01-28 20:24:50 +000078 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -050079 }
Dees_Troy29a06352013-08-24 12:06:47 +000080 ret = __pclose(exec);
81 return ret;
bigbiff bigbiff9c754052013-01-09 09:09:08 -050082}
83
Ethan Yonker7e941582019-03-22 08:18:21 -050084int TWFunc::Exec_Cmd(const string& cmd, bool Show_Errors) {
Vojtech Bocek05534202013-09-11 08:11:56 +020085 pid_t pid;
86 int status;
87 switch(pid = fork())
88 {
89 case -1:
bigbiff bigbiff731df792014-02-20 18:26:13 -050090 LOGERR("Exec_Cmd(): vfork failed: %d!\n", errno);
Vojtech Bocek05534202013-09-11 08:11:56 +020091 return -1;
92 case 0: // child
93 execl("/sbin/sh", "sh", "-c", cmd.c_str(), NULL);
94 _exit(127);
95 break;
96 default:
97 {
Ethan Yonker7e941582019-03-22 08:18:21 -050098 if (TWFunc::Wait_For_Child(pid, &status, cmd, Show_Errors) != 0)
Vojtech Bocek05534202013-09-11 08:11:56 +020099 return -1;
100 else
101 return 0;
102 }
103 }
104}
105
Dees_Troy38bd7602012-09-14 13:33:53 -0400106// Returns "file.name" from a full /path/to/file.name
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600107string TWFunc::Get_Filename(const string& Path) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400108 size_t pos = Path.find_last_of("/");
109 if (pos != string::npos) {
110 string Filename;
111 Filename = Path.substr(pos + 1, Path.size() - pos - 1);
112 return Filename;
113 } else
114 return Path;
115}
116
117// Returns "/path/to/" from a full /path/to/file.name
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600118string TWFunc::Get_Path(const string& Path) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400119 size_t pos = Path.find_last_of("/");
120 if (pos != string::npos) {
121 string Pathonly;
122 Pathonly = Path.substr(0, pos + 1);
123 return Pathonly;
124 } else
125 return Path;
126}
127
Ethan Yonker7e941582019-03-22 08:18:21 -0500128int TWFunc::Wait_For_Child(pid_t pid, int *status, string Child_Name, bool Show_Errors) {
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600129 pid_t rc_pid;
130
131 rc_pid = waitpid(pid, status, 0);
132 if (rc_pid > 0) {
Vojtech Bocek0fdcbec2015-03-20 15:36:40 +0100133 if (WIFSIGNALED(*status)) {
Ethan Yonker7e941582019-03-22 08:18:21 -0500134 if (Show_Errors)
135 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 Yonkeraf2897c2014-02-10 13:07:14 -0600136 return -1;
Vojtech Bocek0fdcbec2015-03-20 15:36:40 +0100137 } else if (WEXITSTATUS(*status) == 0) {
138 LOGINFO("%s process ended with RC=%d\n", Child_Name.c_str(), WEXITSTATUS(*status)); // Success
139 } else {
Ethan Yonker7e941582019-03-22 08:18:21 -0500140 if (Show_Errors)
141 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 Yonkeraf2897c2014-02-10 13:07:14 -0600142 return -1;
143 }
144 } else { // no PID returned
145 if (errno == ECHILD)
that2252d242015-04-03 22:33:04 +0200146 LOGERR("%s no child process exist\n", Child_Name.c_str());
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600147 else {
that2252d242015-04-03 22:33:04 +0200148 LOGERR("%s Unexpected error %d\n", Child_Name.c_str(), errno);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600149 return -1;
150 }
151 }
152 return 0;
153}
154
Ethan Yonkerddb63e22017-01-19 14:01:57 -0600155int TWFunc::Wait_For_Child_Timeout(pid_t pid, int *status, const string& Child_Name, int timeout) {
156 pid_t retpid = waitpid(pid, status, WNOHANG);
157 for (; retpid == 0 && timeout; --timeout) {
158 sleep(1);
159 retpid = waitpid(pid, status, WNOHANG);
160 }
161 if (retpid == 0 && timeout == 0) {
162 LOGERR("%s took too long, killing process\n", Child_Name.c_str());
163 kill(pid, SIGKILL);
Ethan Yonkerddb63e22017-01-19 14:01:57 -0600164 for (timeout = 5; retpid == 0 && timeout; --timeout) {
165 sleep(1);
166 retpid = waitpid(pid, status, WNOHANG);
167 }
168 if (retpid)
169 LOGINFO("Child process killed successfully\n");
170 else
171 LOGINFO("Child process took too long to kill, may be a zombie process\n");
172 return -1;
173 } else if (retpid > 0) {
174 if (WIFSIGNALED(*status)) {
175 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
176 return -1;
177 }
178 } else if (retpid < 0) { // no PID returned
179 if (errno == ECHILD)
180 LOGERR("%s no child process exist\n", Child_Name.c_str());
181 else {
182 LOGERR("%s Unexpected error %d\n", Child_Name.c_str(), errno);
183 return -1;
184 }
185 }
186 return 0;
187}
188
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600189bool TWFunc::Path_Exists(string Path) {
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600190 struct stat st;
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400191 return stat(Path.c_str(), &st) == 0;
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600192}
193
bigbiffce8f83c2015-12-12 18:30:21 -0500194Archive_Type TWFunc::Get_File_Type(string fn) {
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600195 string::size_type i = 0;
196 int firstbyte = 0, secondbyte = 0;
197 char header[3];
198
199 ifstream f;
200 f.open(fn.c_str(), ios::in | ios::binary);
201 f.get(header, 3);
202 f.close();
203 firstbyte = header[i] & 0xff;
204 secondbyte = header[++i] & 0xff;
205
206 if (firstbyte == 0x1f && secondbyte == 0x8b)
bigbiffce8f83c2015-12-12 18:30:21 -0500207 return COMPRESSED;
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600208 else if (firstbyte == 0x4f && secondbyte == 0x41)
bigbiffce8f83c2015-12-12 18:30:21 -0500209 return ENCRYPTED;
210 return UNCOMPRESSED; // default
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600211}
212
213int TWFunc::Try_Decrypting_File(string fn, string password) {
214#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
215 OAES_CTX * ctx = NULL;
216 uint8_t _key_data[32] = "";
217 FILE *f;
218 uint8_t buffer[4096];
219 uint8_t *buffer_out = NULL;
220 uint8_t *ptr = NULL;
221 size_t read_len = 0, out_len = 0;
Matt Mower23d8aae2017-01-06 14:30:33 -0600222 int firstbyte = 0, secondbyte = 0;
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600223 size_t _j = 0;
224 size_t _key_data_len = 0;
225
226 // mostly kanged from OpenAES oaes.c
Matt Mowera8a89d12016-12-30 18:10:37 -0600227 for ( _j = 0; _j < 32; _j++ )
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600228 _key_data[_j] = _j + 1;
229 _key_data_len = password.size();
Matt Mowera8a89d12016-12-30 18:10:37 -0600230 if ( 16 >= _key_data_len )
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600231 _key_data_len = 16;
Matt Mowera8a89d12016-12-30 18:10:37 -0600232 else if ( 24 >= _key_data_len )
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600233 _key_data_len = 24;
234 else
Matt Mowera8a89d12016-12-30 18:10:37 -0600235 _key_data_len = 32;
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600236 memcpy(_key_data, password.c_str(), password.size());
237
238 ctx = oaes_alloc();
239 if (ctx == NULL) {
240 LOGERR("Failed to allocate OAES\n");
241 return -1;
242 }
243
244 oaes_key_import_data(ctx, _key_data, _key_data_len);
245
246 f = fopen(fn.c_str(), "rb");
247 if (f == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500248 LOGERR("Failed to open '%s' to try decrypt: %s\n", fn.c_str(), strerror(errno));
Matt Mower13a8f0b2015-09-26 15:40:03 -0500249 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600250 return -1;
251 }
252 read_len = fread(buffer, sizeof(uint8_t), 4096, f);
253 if (read_len <= 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500254 LOGERR("Read size during try decrypt failed: %s\n", strerror(errno));
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600255 fclose(f);
Matt Mower13a8f0b2015-09-26 15:40:03 -0500256 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600257 return -1;
258 }
259 if (oaes_decrypt(ctx, buffer, read_len, NULL, &out_len) != OAES_RET_SUCCESS) {
260 LOGERR("Error: Failed to retrieve required buffer size for trying decryption.\n");
261 fclose(f);
Matt Mower13a8f0b2015-09-26 15:40:03 -0500262 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600263 return -1;
264 }
265 buffer_out = (uint8_t *) calloc(out_len, sizeof(char));
266 if (buffer_out == NULL) {
267 LOGERR("Failed to allocate output buffer for try decrypt.\n");
268 fclose(f);
Matt Mower13a8f0b2015-09-26 15:40:03 -0500269 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600270 return -1;
271 }
272 if (oaes_decrypt(ctx, buffer, read_len, buffer_out, &out_len) != OAES_RET_SUCCESS) {
273 LOGERR("Failed to decrypt file '%s'\n", fn.c_str());
274 fclose(f);
275 free(buffer_out);
Matt Mower13a8f0b2015-09-26 15:40:03 -0500276 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600277 return 0;
278 }
279 fclose(f);
Matt Mower13a8f0b2015-09-26 15:40:03 -0500280 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600281 if (out_len < 2) {
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500282 LOGINFO("Successfully decrypted '%s' but read length too small.\n", fn.c_str());
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600283 free(buffer_out);
284 return 1; // Decrypted successfully
285 }
286 ptr = buffer_out;
287 firstbyte = *ptr & 0xff;
288 ptr++;
289 secondbyte = *ptr & 0xff;
290 if (firstbyte == 0x1f && secondbyte == 0x8b) {
291 LOGINFO("Successfully decrypted '%s' and file is compressed.\n", fn.c_str());
292 free(buffer_out);
293 return 3; // Compressed
294 }
295 if (out_len >= 262) {
296 ptr = buffer_out + 257;
297 if (strncmp((char*)ptr, "ustar", 5) == 0) {
298 LOGINFO("Successfully decrypted '%s' and file is tar format.\n", fn.c_str());
299 free(buffer_out);
300 return 2; // Tar
301 }
302 }
303 free(buffer_out);
304 LOGINFO("No errors decrypting '%s' but no known file format.\n", fn.c_str());
305 return 1; // Decrypted successfully
306#else
307 LOGERR("Encrypted backup support not included.\n");
308 return -1;
309#endif
310}
311
Ethan Yonker472f5062016-02-25 13:47:30 -0600312unsigned long TWFunc::Get_File_Size(const string& Path) {
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600313 struct stat st;
314
315 if (stat(Path.c_str(), &st) != 0)
316 return 0;
317 return st.st_size;
318}
319
bigbiffee7b7ff2020-03-23 15:08:27 -0400320std::string TWFunc::Remove_Beginning_Slash(const std::string& path) {
321 std::string res;
322 size_t pos = path.find_first_of("/");
323 if (pos != std::string::npos) {
324 res = path.substr(pos+1);
325 }
326 return res;
327}
328
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100329std::string TWFunc::Remove_Trailing_Slashes(const std::string& path, bool leaveLast)
330{
331 std::string res;
332 size_t last_idx = 0, idx = 0;
333
Matt Mowera8a89d12016-12-30 18:10:37 -0600334 while (last_idx != std::string::npos)
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100335 {
Matt Mowera8a89d12016-12-30 18:10:37 -0600336 if (last_idx != 0)
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100337 res += '/';
338
339 idx = path.find_first_of('/', last_idx);
Matt Mowera8a89d12016-12-30 18:10:37 -0600340 if (idx == std::string::npos) {
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100341 res += path.substr(last_idx, idx);
342 break;
343 }
344
345 res += path.substr(last_idx, idx-last_idx);
346 last_idx = path.find_first_not_of('/', idx);
347 }
348
Matt Mowera8a89d12016-12-30 18:10:37 -0600349 if (leaveLast)
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100350 res += '/';
351 return res;
352}
353
Matt Mower2416a502016-04-12 19:54:46 -0500354void TWFunc::Strip_Quotes(char* &str) {
355 if (strlen(str) > 0 && str[0] == '\"')
356 str++;
357 if (strlen(str) > 0 && str[strlen(str)-1] == '\"')
358 str[strlen(str)-1] = 0;
359}
360
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500361vector<string> TWFunc::split_string(const string &in, char del, bool skip_empty) {
362 vector<string> res;
363
364 if (in.empty() || del == '\0')
365 return res;
366
367 string field;
368 istringstream f(in);
369 if (del == '\n') {
Matt Mowera8a89d12016-12-30 18:10:37 -0600370 while (getline(f, field)) {
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500371 if (field.empty() && skip_empty)
372 continue;
Matt Mowera8a89d12016-12-30 18:10:37 -0600373 res.push_back(field);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500374 }
375 } else {
Matt Mowera8a89d12016-12-30 18:10:37 -0600376 while (getline(f, field, del)) {
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500377 if (field.empty() && skip_empty)
378 continue;
379 res.push_back(field);
380 }
381 }
382 return res;
383}
384
Ethan Yonker472f5062016-02-25 13:47:30 -0600385timespec TWFunc::timespec_diff(timespec& start, timespec& end)
386{
387 timespec temp;
388 if ((end.tv_nsec-start.tv_nsec)<0) {
389 temp.tv_sec = end.tv_sec-start.tv_sec-1;
390 temp.tv_nsec = 1000000000+end.tv_nsec-start.tv_nsec;
391 } else {
392 temp.tv_sec = end.tv_sec-start.tv_sec;
393 temp.tv_nsec = end.tv_nsec-start.tv_nsec;
394 }
395 return temp;
396}
397
398int32_t TWFunc::timespec_diff_ms(timespec& start, timespec& end)
399{
400 return ((end.tv_sec * 1000) + end.tv_nsec/1000000) -
401 ((start.tv_sec * 1000) + start.tv_nsec/1000000);
402}
403
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600404#ifndef BUILD_TWRPTAR_MAIN
405
Dees_Troy38bd7602012-09-14 13:33:53 -0400406// Returns "/path" from a full /path/to/file.name
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600407string TWFunc::Get_Root_Path(const string& Path) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400408 string Local_Path = Path;
409
410 // Make sure that we have a leading slash
411 if (Local_Path.substr(0, 1) != "/")
412 Local_Path = "/" + Local_Path;
413
414 // Trim the path to get the root path only
415 size_t position = Local_Path.find("/", 2);
416 if (position != string::npos) {
417 Local_Path.resize(position);
418 }
419 return Local_Path;
420}
421
422void TWFunc::install_htc_dumlock(void) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400423 int need_libs = 0;
424
Captain Throwback9d6feb52018-07-27 10:05:24 -0400425 if (!PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), true))
Dees_Troy38bd7602012-09-14 13:33:53 -0400426 return;
427
428 if (!PartitionManager.Mount_By_Path("/data", true))
429 return;
430
Ethan Yonker74db1572015-10-28 12:44:49 -0500431 gui_msg("install_dumlock=Installing HTC Dumlock to system...");
Dees Troy3454ade2015-01-20 19:21:04 +0000432 copy_file(TWHTCD_PATH "htcdumlocksys", "/system/bin/htcdumlock", 0755);
Dees_Troy8170a922012-09-18 15:40:25 -0400433 if (!Path_Exists("/system/bin/flash_image")) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500434 LOGINFO("Installing flash_image...\n");
Dees Troy3454ade2015-01-20 19:21:04 +0000435 copy_file(TWHTCD_PATH "flash_imagesys", "/system/bin/flash_image", 0755);
Dees_Troy38bd7602012-09-14 13:33:53 -0400436 need_libs = 1;
437 } else
Ethan Yonker74db1572015-10-28 12:44:49 -0500438 LOGINFO("flash_image is already installed, skipping...\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400439 if (!Path_Exists("/system/bin/dump_image")) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500440 LOGINFO("Installing dump_image...\n");
Dees Troy3454ade2015-01-20 19:21:04 +0000441 copy_file(TWHTCD_PATH "dump_imagesys", "/system/bin/dump_image", 0755);
Dees_Troy38bd7602012-09-14 13:33:53 -0400442 need_libs = 1;
443 } else
Ethan Yonker74db1572015-10-28 12:44:49 -0500444 LOGINFO("dump_image is already installed, skipping...\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400445 if (need_libs) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500446 LOGINFO("Installing libs needed for flash_image and dump_image...\n");
Dees Troy3454ade2015-01-20 19:21:04 +0000447 copy_file(TWHTCD_PATH "libbmlutils.so", "/system/lib/libbmlutils.so", 0644);
448 copy_file(TWHTCD_PATH "libflashutils.so", "/system/lib/libflashutils.so", 0644);
449 copy_file(TWHTCD_PATH "libmmcutils.so", "/system/lib/libmmcutils.so", 0644);
450 copy_file(TWHTCD_PATH "libmtdutils.so", "/system/lib/libmtdutils.so", 0644);
Dees_Troy38bd7602012-09-14 13:33:53 -0400451 }
Ethan Yonker74db1572015-10-28 12:44:49 -0500452 LOGINFO("Installing HTC Dumlock app...\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400453 mkdir("/data/app", 0777);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500454 unlink("/data/app/com.teamwin.htcdumlock*");
Dees Troy3454ade2015-01-20 19:21:04 +0000455 copy_file(TWHTCD_PATH "HTCDumlock.apk", "/data/app/com.teamwin.htcdumlock.apk", 0777);
Dees_Troy38bd7602012-09-14 13:33:53 -0400456 sync();
Ethan Yonker74db1572015-10-28 12:44:49 -0500457 gui_msg("done=Done.");
Dees_Troy38bd7602012-09-14 13:33:53 -0400458}
459
460void TWFunc::htc_dumlock_restore_original_boot(void) {
461 if (!PartitionManager.Mount_By_Path("/sdcard", true))
462 return;
463
Ethan Yonker74db1572015-10-28 12:44:49 -0500464 gui_msg("dumlock_restore=Restoring original boot...");
Vojtech Bocek05534202013-09-11 08:11:56 +0200465 Exec_Cmd("htcdumlock restore");
Ethan Yonker74db1572015-10-28 12:44:49 -0500466 gui_msg("done=Done.");
Dees_Troy38bd7602012-09-14 13:33:53 -0400467}
468
469void TWFunc::htc_dumlock_reflash_recovery_to_boot(void) {
470 if (!PartitionManager.Mount_By_Path("/sdcard", true))
471 return;
Ethan Yonker74db1572015-10-28 12:44:49 -0500472 gui_msg("dumlock_reflash=Reflashing recovery to boot...");
Vojtech Bocek05534202013-09-11 08:11:56 +0200473 Exec_Cmd("htcdumlock recovery noreboot");
Ethan Yonker74db1572015-10-28 12:44:49 -0500474 gui_msg("done=Done.");
Dees_Troy38bd7602012-09-14 13:33:53 -0400475}
Dees_Troy43d8b002012-09-17 16:00:01 -0400476
477int TWFunc::Recursive_Mkdir(string Path) {
thatf1408b32016-01-03 11:09:15 +0100478 std::vector<std::string> parts = Split_String(Path, "/", true);
479 std::string cur_path;
480 for (size_t i = 0; i < parts.size(); ++i) {
481 cur_path += "/" + parts[i];
482 if (!TWFunc::Path_Exists(cur_path)) {
483 if (mkdir(cur_path.c_str(), 0777)) {
Matt Mower3c366972015-12-25 19:28:31 -0600484 gui_msg(Msg(msg::kError, "create_folder_strerr=Can not create '{1}' folder ({2}).")(cur_path)(strerror(errno)));
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600485 return false;
486 } else {
thatf1408b32016-01-03 11:09:15 +0100487 tw_set_default_metadata(cur_path.c_str());
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600488 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400489 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400490 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400491 return true;
492}
493
Dees_Troyb46a6842012-09-25 11:06:46 -0400494void TWFunc::GUI_Operation_Text(string Read_Value, string Default_Text) {
495 string Display_Text;
496
497 DataManager::GetValue(Read_Value, Display_Text);
498 if (Display_Text.empty())
499 Display_Text = Default_Text;
500
501 DataManager::SetValue("tw_operation", Display_Text);
502 DataManager::SetValue("tw_partition", "");
503}
504
505void TWFunc::GUI_Operation_Text(string Read_Value, string Partition_Name, string Default_Text) {
506 string Display_Text;
507
508 DataManager::GetValue(Read_Value, Display_Text);
509 if (Display_Text.empty())
510 Display_Text = Default_Text;
511
512 DataManager::SetValue("tw_operation", Display_Text);
513 DataManager::SetValue("tw_partition", Partition_Name);
Dees_Troy7c2dec82012-09-26 09:49:14 -0400514}
515
Dees_Troy2673cec2013-04-02 20:22:16 +0000516void TWFunc::Copy_Log(string Source, string Destination) {
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400517 int logPipe[2];
518 int pigz_pid;
519 int destination_fd;
520 std::string destLogBuffer;
521
Dees Troy9d7fdf52013-09-19 20:49:25 +0000522 PartitionManager.Mount_By_Path(Destination, false);
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400523
524 size_t extPos = Destination.find(".gz");
525 std::string uncompressedLog(Destination);
526 uncompressedLog.replace(extPos, Destination.length(), "");
527
528 if (Path_Exists(Destination)) {
529 Archive_Type type = Get_File_Type(Destination);
530 if (type == COMPRESSED) {
531 std::string destFileBuffer;
532 std::string getCompressedContents = "pigz -c -d " + Destination;
533 if (Exec_Cmd(getCompressedContents, destFileBuffer) < 0) {
534 LOGINFO("Unable to get destination logfile contents.\n");
535 return;
536 }
537 destLogBuffer.append(destFileBuffer);
Dees_Troy6ef66352013-02-21 08:26:57 -0600538 }
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400539 } else if (Path_Exists(uncompressedLog)) {
bigbiffd3317052019-12-22 16:05:12 -0500540 std::ifstream uncompressedIfs(uncompressedLog.c_str());
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400541 std::stringstream uncompressedSS;
542 uncompressedSS << uncompressedIfs.rdbuf();
543 uncompressedIfs.close();
544 std::string uncompressedLogBuffer(uncompressedSS.str());
545 destLogBuffer.append(uncompressedLogBuffer);
546 std::remove(uncompressedLog.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600547 }
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400548
bigbiffd3317052019-12-22 16:05:12 -0500549 std::ifstream ifs(Source.c_str());
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400550 std::stringstream ss;
551 ss << ifs.rdbuf();
552 std::string srcLogBuffer(ss.str());
553 ifs.close();
554
555 if (pipe(logPipe) < 0) {
556 LOGINFO("Unable to open pipe to write to persistent log file: %s\n", Destination.c_str());
557 }
558
559 destination_fd = open(Destination.c_str(), O_WRONLY | O_CREAT | O_TRUNC, 0666);
560
561 pigz_pid = fork();
562 if (pigz_pid < 0) {
563 LOGINFO("fork() failed\n");
564 close(destination_fd);
565 close(logPipe[0]);
566 close(logPipe[1]);
567 } else if (pigz_pid == 0) {
568 close(logPipe[1]);
569 dup2(logPipe[0], fileno(stdin));
570 dup2(destination_fd, fileno(stdout));
571 if (execlp("pigz", "pigz", "-", NULL) < 0) {
572 close(destination_fd);
573 close(logPipe[0]);
574 _exit(-1);
575 }
576 } else {
577 close(logPipe[0]);
578 if (write(logPipe[1], destLogBuffer.c_str(), destLogBuffer.size()) < 0) {
579 LOGINFO("Unable to append to persistent log: %s\n", Destination.c_str());
580 close(logPipe[1]);
581 close(destination_fd);
582 return;
583 }
584 if (write(logPipe[1], srcLogBuffer.c_str(), srcLogBuffer.size()) < 0) {
585 LOGINFO("Unable to append to persistent log: %s\n", Destination.c_str());
586 close(logPipe[1]);
587 close(destination_fd);
588 return;
589 }
590 close(logPipe[1]);
591 }
592 close(destination_fd);
Dees_Troya58bead2012-09-27 09:49:29 -0400593}
594
Dees_Troy2673cec2013-04-02 20:22:16 +0000595void TWFunc::Update_Log_File(void) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500596 std::string recoveryDir = get_cache_dir() + "recovery/";
597
598 if (get_cache_dir() == NON_AB_CACHE_DIR) {
599 if (!PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false)) {
600 LOGINFO("Failed to mount %s for TWFunc::Update_Log_File\n", NON_AB_CACHE_DIR);
Dees Troy9d7fdf52013-09-19 20:49:25 +0000601 }
Dees Troy9d7fdf52013-09-19 20:49:25 +0000602 }
Dees_Troya58bead2012-09-27 09:49:29 -0400603
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500604 if (!TWFunc::Path_Exists(recoveryDir)) {
605 LOGINFO("Recreating %s folder.\n", recoveryDir.c_str());
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -0400606 if (!Create_Dir_Recursive(recoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, 0, 0)) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500607 LOGINFO("Unable to create %s folder.\n", recoveryDir.c_str());
608 }
609 }
610
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400611 std::string logCopy = recoveryDir + "log.gz";
612 std::string lastLogCopy = recoveryDir + "last_log.gz";
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500613 copy_file(logCopy, lastLogCopy, 600);
614 Copy_Log(TMP_LOG_FILE, logCopy);
615 chown(logCopy.c_str(), 1000, 1000);
616 chmod(logCopy.c_str(), 0600);
617 chmod(lastLogCopy.c_str(), 0640);
618
Dees_Troy2673cec2013-04-02 20:22:16 +0000619 // Reset bootloader message
620 TWPartition* Part = PartitionManager.Find_Partition_By_Path("/misc");
621 if (Part != NULL) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500622 std::string err;
623 if (!clear_bootloader_message((void*)&err)) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600624 if (err == "no misc device set") {
625 LOGINFO("%s\n", err.c_str());
626 } else {
627 LOGERR("%s\n", err.c_str());
628 }
629 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000630 }
Dees_Troya58bead2012-09-27 09:49:29 -0400631
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500632 if (get_cache_dir() == NON_AB_CACHE_DIR) {
633 if (PartitionManager.Mount_By_Path("/cache", false)) {
634 if (unlink("/cache/recovery/command") && errno != ENOENT) {
635 LOGINFO("Can't unlink %s\n", "/cache/recovery/command");
636 }
Dees Troy9d7fdf52013-09-19 20:49:25 +0000637 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500638 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000639 sync();
640}
641
642void TWFunc::Update_Intent_File(string Intent) {
643 if (PartitionManager.Mount_By_Path("/cache", false) && !Intent.empty()) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600644 TWFunc::write_to_file("/cache/recovery/intent", Intent);
Dees_Troy2673cec2013-04-02 20:22:16 +0000645 }
Dees_Troya58bead2012-09-27 09:49:29 -0400646}
647
648// reboot: Reboot the system. Return -1 on error, no return on success
649int TWFunc::tw_reboot(RebootCommand command)
650{
Ethan Yonkerfe916112016-03-14 14:54:37 -0500651 DataManager::Flush();
652 Update_Log_File();
Dees_Troya58bead2012-09-27 09:49:29 -0400653 // Always force a sync before we reboot
Dees_Troy6ef66352013-02-21 08:26:57 -0600654 sync();
Dees_Troya58bead2012-09-27 09:49:29 -0400655
Dees_Troy2673cec2013-04-02 20:22:16 +0000656 switch (command) {
657 case rb_current:
658 case rb_system:
Dees_Troy2673cec2013-04-02 20:22:16 +0000659 Update_Intent_File("s");
660 sync();
661 check_and_run_script("/sbin/rebootsystem.sh", "reboot system");
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500662#ifdef ANDROID_RB_PROPERTY
663 return property_set(ANDROID_RB_PROPERTY, "reboot,");
664#elif defined(ANDROID_RB_RESTART)
665 return android_reboot(ANDROID_RB_RESTART, 0, 0);
666#else
Dees_Troy2673cec2013-04-02 20:22:16 +0000667 return reboot(RB_AUTOBOOT);
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500668#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000669 case rb_recovery:
670 check_and_run_script("/sbin/rebootrecovery.sh", "reboot recovery");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600671#ifdef ANDROID_RB_PROPERTY
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500672 return property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600673#else
674 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "recovery");
675#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000676 case rb_bootloader:
677 check_and_run_script("/sbin/rebootbootloader.sh", "reboot bootloader");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600678#ifdef ANDROID_RB_PROPERTY
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500679 return property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600680#else
681 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "bootloader");
682#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000683 case rb_poweroff:
684 check_and_run_script("/sbin/poweroff.sh", "power off");
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500685#ifdef ANDROID_RB_PROPERTY
686 return property_set(ANDROID_RB_PROPERTY, "shutdown,");
687#elif defined(ANDROID_RB_POWEROFF)
688 return android_reboot(ANDROID_RB_POWEROFF, 0, 0);
689#else
Dees_Troy2673cec2013-04-02 20:22:16 +0000690 return reboot(RB_POWER_OFF);
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500691#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000692 case rb_download:
693 check_and_run_script("/sbin/rebootdownload.sh", "reboot download");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600694#ifdef ANDROID_RB_PROPERTY
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500695 return property_set(ANDROID_RB_PROPERTY, "reboot,download");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600696#else
697 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "download");
698#endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200699 case rb_edl:
700 check_and_run_script("/sbin/rebootedl.sh", "reboot edl");
701#ifdef ANDROID_RB_PROPERTY
702 return property_set(ANDROID_RB_PROPERTY, "reboot,edl");
703#else
704 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "edl");
705#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000706 default:
707 return -1;
Dees_Troy6ef66352013-02-21 08:26:57 -0600708 }
709 return -1;
Dees_Troya58bead2012-09-27 09:49:29 -0400710}
711
712void TWFunc::check_and_run_script(const char* script_file, const char* display_name)
713{
714 // Check for and run startup script if script exists
715 struct stat st;
716 if (stat(script_file, &st) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500717 gui_msg(Msg("run_script=Running {1} script...")(display_name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500718 chmod(script_file, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
Vojtech Bocek05534202013-09-11 08:11:56 +0200719 TWFunc::Exec_Cmd(script_file);
Ethan Yonker74db1572015-10-28 12:44:49 -0500720 gui_msg("done=Done.");
Dees_Troya58bead2012-09-27 09:49:29 -0400721 }
Dees_Troy3477d712012-09-27 15:44:01 -0400722}
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500723
724int TWFunc::removeDir(const string path, bool skipParent) {
Dees_Troyce675462013-01-09 19:48:21 +0000725 DIR *d = opendir(path.c_str());
726 int r = 0;
727 string new_path;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500728
Dees_Troyce675462013-01-09 19:48:21 +0000729 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500730 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(path)(strerror(errno)));
Dees_Troyce675462013-01-09 19:48:21 +0000731 return -1;
732 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500733
Dees_Troyce675462013-01-09 19:48:21 +0000734 if (d) {
735 struct dirent *p;
736 while (!r && (p = readdir(d))) {
Dees_Troyce675462013-01-09 19:48:21 +0000737 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
738 continue;
739 new_path = path + "/";
740 new_path.append(p->d_name);
741 if (p->d_type == DT_DIR) {
742 r = removeDir(new_path, true);
743 if (!r) {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500744 if (p->d_type == DT_DIR)
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500745 r = rmdir(new_path.c_str());
746 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000747 LOGINFO("Unable to removeDir '%s': %s\n", new_path.c_str(), strerror(errno));
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500748 }
bigbiff bigbiff98f1f902013-01-19 18:46:13 -0500749 } else if (p->d_type == DT_REG || p->d_type == DT_LNK || p->d_type == DT_FIFO || p->d_type == DT_SOCK) {
Dees_Troyce675462013-01-09 19:48:21 +0000750 r = unlink(new_path.c_str());
Dees_Troye34c1332013-02-06 19:13:00 +0000751 if (r != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000752 LOGINFO("Unable to unlink '%s: %s'\n", new_path.c_str(), strerror(errno));
Dees_Troye34c1332013-02-06 19:13:00 +0000753 }
Dees_Troyce675462013-01-09 19:48:21 +0000754 }
755 }
756 closedir(d);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500757
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500758 if (!r) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500759 if (skipParent)
760 return 0;
761 else
762 r = rmdir(path.c_str());
763 }
Dees_Troyce675462013-01-09 19:48:21 +0000764 }
765 return r;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500766}
767
768int TWFunc::copy_file(string src, string dst, int mode) {
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400769 PartitionManager.Mount_By_Path(src, false);
770 PartitionManager.Mount_By_Path(dst, false);
771 if (!Path_Exists(src)) {
772 LOGINFO("Unable to find source file %s\n", src.c_str());
773 return -1;
774 }
bigbiffd3317052019-12-22 16:05:12 -0500775 std::ifstream srcfile(src.c_str(), ios::binary);
776 std::ofstream dstfile(dst.c_str(), ios::binary);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500777 dstfile << srcfile.rdbuf();
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400778 if (!dstfile.bad()) {
779 LOGINFO("Copied file %s to %s\n", src.c_str(), dst.c_str());
780 }
781 else {
782 LOGINFO("Unable to copy file %s to %s\n", src.c_str(), dst.c_str());
783 return -1;
784 }
785
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500786 srcfile.close();
787 dstfile.close();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500788 if (chmod(dst.c_str(), mode) != 0)
789 return -1;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500790 return 0;
791}
Dees_Troy3ee47bc2013-01-25 21:47:37 +0000792
793unsigned int TWFunc::Get_D_Type_From_Stat(string Path) {
794 struct stat st;
795
796 stat(Path.c_str(), &st);
797 if (st.st_mode & S_IFDIR)
798 return DT_DIR;
799 else if (st.st_mode & S_IFBLK)
800 return DT_BLK;
801 else if (st.st_mode & S_IFCHR)
802 return DT_CHR;
803 else if (st.st_mode & S_IFIFO)
804 return DT_FIFO;
805 else if (st.st_mode & S_IFLNK)
806 return DT_LNK;
807 else if (st.st_mode & S_IFREG)
808 return DT_REG;
809 else if (st.st_mode & S_IFSOCK)
810 return DT_SOCK;
811 return DT_UNKNOWN;
Dees_Troye34c1332013-02-06 19:13:00 +0000812}
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500813
814int TWFunc::read_file(string fn, string& results) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200815 ifstream file;
816 file.open(fn.c_str(), ios::in);
817
818 if (file.is_open()) {
819 file >> results;
820 file.close();
821 return 0;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500822 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200823
824 LOGINFO("Cannot find file %s\n", fn.c_str());
825 return -1;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500826}
827
828int TWFunc::read_file(string fn, vector<string>& results) {
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500829 ifstream file;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500830 string line;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500831 file.open(fn.c_str(), ios::in);
832 if (file.is_open()) {
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500833 while (getline(file, line))
834 results.push_back(line);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500835 file.close();
836 return 0;
837 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000838 LOGINFO("Cannot find file %s\n", fn.c_str());
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500839 return -1;
840}
841
xNUTxe85f02d2014-07-18 01:30:58 +0200842int TWFunc::read_file(string fn, uint64_t& results) {
843 ifstream file;
844 file.open(fn.c_str(), ios::in);
845
846 if (file.is_open()) {
847 file >> results;
848 file.close();
849 return 0;
850 }
851
852 LOGINFO("Cannot find file %s\n", fn.c_str());
853 return -1;
854}
855
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600856int TWFunc::write_to_file(const string& fn, const string& line) {
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500857 FILE *file;
858 file = fopen(fn.c_str(), "w");
859 if (file != NULL) {
860 fwrite(line.c_str(), line.size(), 1, file);
861 fclose(file);
862 return 0;
863 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000864 LOGINFO("Cannot find file %s\n", fn.c_str());
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500865 return -1;
866}
867
Dees_Troy83bd4832013-05-04 12:39:56 +0000868bool TWFunc::Try_Decrypting_Backup(string Restore_Path, string Password) {
869 DIR* d;
870
871 string Filename;
872 Restore_Path += "/";
873 d = opendir(Restore_Path.c_str());
874 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500875 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Path)(strerror(errno)));
Dees_Troy83bd4832013-05-04 12:39:56 +0000876 return false;
877 }
878
879 struct dirent* de;
880 while ((de = readdir(d)) != NULL) {
881 Filename = Restore_Path;
882 Filename += de->d_name;
bigbiffce8f83c2015-12-12 18:30:21 -0500883 if (TWFunc::Get_File_Type(Filename) == ENCRYPTED) {
Dees_Troy83bd4832013-05-04 12:39:56 +0000884 if (TWFunc::Try_Decrypting_File(Filename, Password) < 2) {
885 DataManager::SetValue("tw_restore_password", ""); // Clear the bad password
886 DataManager::SetValue("tw_restore_display", ""); // Also clear the display mask
887 closedir(d);
888 return false;
889 }
890 }
891 }
892 closedir(d);
893 return true;
894}
895
Dees Troyb21cc642013-09-10 17:36:41 +0000896string TWFunc::Get_Current_Date() {
897 string Current_Date;
898 time_t seconds = time(0);
899 struct tm *t = localtime(&seconds);
900 char timestamp[255];
901 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);
902 Current_Date = timestamp;
903 return Current_Date;
904}
905
Ethan Yonkerb5557892014-02-07 21:43:20 -0600906string TWFunc::System_Property_Get(string Prop_Name) {
Chaosmaster65633a42020-02-05 15:24:09 +0100907 return System_Property_Get(Prop_Name, PartitionManager, PartitionManager.Get_Android_Root_Path());
908}
909
910string TWFunc::System_Property_Get(string Prop_Name, TWPartitionManager &PartitionManager, string Mount_Point) {
911 bool mount_state = PartitionManager.Is_Mounted_By_Path(Mount_Point);
Dees Troyb21cc642013-09-10 17:36:41 +0000912 std::vector<string> buildprop;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600913 string propvalue;
Chaosmaster65633a42020-02-05 15:24:09 +0100914 if (!PartitionManager.Mount_By_Path(Mount_Point, true))
Ethan Yonkerb5557892014-02-07 21:43:20 -0600915 return propvalue;
Chaosmaster65633a42020-02-05 15:24:09 +0100916 string prop_file = Mount_Point + "/build.prop";
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600917 if (!TWFunc::Path_Exists(prop_file))
Chaosmaster65633a42020-02-05 15:24:09 +0100918 prop_file = Mount_Point + "/system/build.prop"; // for devices with system as a root file system (e.g. Pixel)
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600919 if (TWFunc::read_file(prop_file, buildprop) != 0) {
Captain Throwback9d6feb52018-07-27 10:05:24 -0400920 LOGINFO("Unable to open build.prop for getting '%s'.\n", Prop_Name.c_str());
Vojtech Boceka2e70162013-09-17 17:05:10 +0200921 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
Dees Troyb21cc642013-09-10 17:36:41 +0000922 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100923 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600924 return propvalue;
Dees Troyb21cc642013-09-10 17:36:41 +0000925 }
926 int line_count = buildprop.size();
927 int index;
928 size_t start_pos = 0, end_pos;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600929 string propname;
Dees Troyb21cc642013-09-10 17:36:41 +0000930 for (index = 0; index < line_count; index++) {
931 end_pos = buildprop.at(index).find("=", start_pos);
932 propname = buildprop.at(index).substr(start_pos, end_pos);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600933 if (propname == Prop_Name) {
Dees Troyb21cc642013-09-10 17:36:41 +0000934 propvalue = buildprop.at(index).substr(end_pos + 1, buildprop.at(index).size());
Ethan Yonkerb5557892014-02-07 21:43:20 -0600935 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100936 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600937 return propvalue;
Dees Troyb21cc642013-09-10 17:36:41 +0000938 }
939 }
Dees Troyb21cc642013-09-10 17:36:41 +0000940 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100941 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600942 return propvalue;
943}
944
945void TWFunc::Auto_Generate_Backup_Name() {
946 string propvalue = System_Property_Get("ro.build.display.id");
947 if (propvalue.empty()) {
948 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
949 return;
950 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400951 else {
952 //remove periods from build display so it doesn't confuse the extension code
953 propvalue.erase(remove(propvalue.begin(), propvalue.end(), '.'), propvalue.end());
954 }
Ethan Yonkerb5557892014-02-07 21:43:20 -0600955 string Backup_Name = Get_Current_Date();
bigbiff74a6d0d2015-02-14 20:49:44 -0500956 Backup_Name += "_" + propvalue;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600957 if (Backup_Name.size() > MAX_BACKUP_NAME_LEN)
958 Backup_Name.resize(MAX_BACKUP_NAME_LEN);
959 // Trailing spaces cause problems on some file systems, so remove them
960 string space_check, space = " ";
961 space_check = Backup_Name.substr(Backup_Name.size() - 1, 1);
962 while (space_check == space) {
963 Backup_Name.resize(Backup_Name.size() - 1);
964 space_check = Backup_Name.substr(Backup_Name.size() - 1, 1);
965 }
bigbiff74a6d0d2015-02-14 20:49:44 -0500966 replace(Backup_Name.begin(), Backup_Name.end(), ' ', '_');
Ethan Yonker53796e72019-01-11 22:49:52 -0600967 if (PartitionManager.Check_Backup_Name(Backup_Name, false, true) != 0) {
968 LOGINFO("Auto generated backup name '%s' is not valid, using date instead.\n", Backup_Name.c_str());
Ethan Yonker92d48e02014-02-26 12:05:55 -0600969 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
Ethan Yonker53796e72019-01-11 22:49:52 -0600970 } else {
971 DataManager::SetValue(TW_BACKUP_NAME, Backup_Name);
Ethan Yonker92d48e02014-02-26 12:05:55 -0600972 }
Vojtech Bocek05534202013-09-11 08:11:56 +0200973}
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100974
nkk7198fc3992017-12-16 16:26:42 +0200975void TWFunc::Fixup_Time_On_Boot(const string& time_paths /* = "" */)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100976{
977#ifdef QCOM_RTC_FIX
nkk7198fc3992017-12-16 16:26:42 +0200978 static bool fixed = false;
979 if (fixed)
980 return;
xNUTxe85f02d2014-07-18 01:30:58 +0200981
982 LOGINFO("TWFunc::Fixup_Time: Pre-fix date and time: %s\n", TWFunc::Get_Current_Date().c_str());
983
984 struct timeval tv;
985 uint64_t offset = 0;
986 std::string sepoch = "/sys/class/rtc/rtc0/since_epoch";
987
988 if (TWFunc::read_file(sepoch, offset) == 0) {
989
990 LOGINFO("TWFunc::Fixup_Time: Setting time offset from file %s\n", sepoch.c_str());
991
992 tv.tv_sec = offset;
993 tv.tv_usec = 0;
994 settimeofday(&tv, NULL);
995
996 gettimeofday(&tv, NULL);
997
Phoenix59146b05f22018-02-03 06:41:08 +0000998 if (tv.tv_sec > 1517600000) { // Anything older then 2 Feb 2018 19:33:20 GMT will do nicely thank you ;)
xNUTxe85f02d2014-07-18 01:30:58 +0200999
1000 LOGINFO("TWFunc::Fixup_Time: Date and time corrected: %s\n", TWFunc::Get_Current_Date().c_str());
nkk7198fc3992017-12-16 16:26:42 +02001001 fixed = true;
xNUTxe85f02d2014-07-18 01:30:58 +02001002 return;
1003
1004 }
1005
1006 } else {
1007
1008 LOGINFO("TWFunc::Fixup_Time: opening %s failed\n", sepoch.c_str());
1009
1010 }
1011
Ethan Yonker9132d912015-02-02 10:32:49 -06001012 LOGINFO("TWFunc::Fixup_Time: will attempt to use the ats files now.\n");
xNUTxe85f02d2014-07-18 01:30:58 +02001013
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001014 // Devices with Qualcomm Snapdragon 800 do some shenanigans with RTC.
1015 // They never set it, it just ticks forward from 1970-01-01 00:00,
1016 // and then they have files /data/system/time/ats_* with 64bit offset
1017 // in miliseconds which, when added to the RTC, gives the correct time.
1018 // So, the time is: (offset_from_ats + value_from_RTC)
1019 // There are multiple ats files, they are for different systems? Bases?
1020 // Like, ats_1 is for modem and ats_2 is for TOD (time of day?).
1021 // Look at file time_genoff.h in CodeAurora, qcom-opensource/time-services
1022
nkk7198fc3992017-12-16 16:26:42 +02001023 std::vector<std::string> paths; // space separated list of paths
1024 if (time_paths.empty()) {
Mauronofrio Matarrese2dab70d2019-03-05 02:22:26 +01001025 paths = Split_String("/data/system/time/ /data/time/ /data/vendor/time/", " ");
nkk7198fc3992017-12-16 16:26:42 +02001026 if (!PartitionManager.Mount_By_Path("/data", false))
1027 return;
1028 } else {
1029 // When specific path(s) are used, Fixup_Time needs those
1030 // partitions to already be mounted!
1031 paths = Split_String(time_paths, " ");
1032 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001033
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001034 FILE *f;
xNUTxe85f02d2014-07-18 01:30:58 +02001035 offset = 0;
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001036 struct dirent *dt;
1037 std::string ats_path;
1038
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001039 // Prefer ats_2, it seems to be the one we want according to logcat on hammerhead
1040 // - it is the one for ATS_TOD (time of day?).
1041 // However, I never saw a device where the offset differs between ats files.
nkk7198fc3992017-12-16 16:26:42 +02001042 for (size_t i = 0; i < paths.size(); ++i)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001043 {
nkk7198fc3992017-12-16 16:26:42 +02001044 DIR *d = opendir(paths[i].c_str());
Matt Mowera8a89d12016-12-30 18:10:37 -06001045 if (!d)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001046 continue;
1047
Matt Mowera8a89d12016-12-30 18:10:37 -06001048 while ((dt = readdir(d)))
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001049 {
Matt Mowera8a89d12016-12-30 18:10:37 -06001050 if (dt->d_type != DT_REG || strncmp(dt->d_name, "ats_", 4) != 0)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001051 continue;
1052
Matt Mowera8a89d12016-12-30 18:10:37 -06001053 if (ats_path.empty() || strcmp(dt->d_name, "ats_2") == 0)
nkk7198fc3992017-12-16 16:26:42 +02001054 ats_path = paths[i] + dt->d_name;
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001055 }
1056
1057 closedir(d);
1058 }
1059
nkk7198fc3992017-12-16 16:26:42 +02001060 if (ats_path.empty()) {
xNUTxe85f02d2014-07-18 01:30:58 +02001061 LOGINFO("TWFunc::Fixup_Time: no ats files found, leaving untouched!\n");
nkk7198fc3992017-12-16 16:26:42 +02001062 } else if ((f = fopen(ats_path.c_str(), "r")) == NULL) {
Dees Troy3e254b92014-03-06 20:24:54 +00001063 LOGINFO("TWFunc::Fixup_Time: failed to open file %s\n", ats_path.c_str());
nkk7198fc3992017-12-16 16:26:42 +02001064 } else if (fread(&offset, sizeof(offset), 1, f) != 1) {
Dees Troy3e254b92014-03-06 20:24:54 +00001065 LOGINFO("TWFunc::Fixup_Time: failed load uint64 from file %s\n", ats_path.c_str());
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001066 fclose(f);
nkk7198fc3992017-12-16 16:26:42 +02001067 } else {
1068 fclose(f);
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001069
nkk7198fc3992017-12-16 16:26:42 +02001070 LOGINFO("TWFunc::Fixup_Time: Setting time offset from file %s, offset %llu\n", ats_path.c_str(), (unsigned long long) offset);
1071 DataManager::SetValue("tw_qcom_ats_offset", (unsigned long long) offset, 1);
1072 fixed = true;
1073 }
1074
1075 if (!fixed) {
1076 // Failed to get offset from ats file, check twrp settings
1077 unsigned long long value;
1078 if (DataManager::GetValue("tw_qcom_ats_offset", value) < 0) {
1079 return;
1080 } else {
1081 offset = (uint64_t) value;
1082 LOGINFO("TWFunc::Fixup_Time: Setting time offset from twrp setting file, offset %llu\n", (unsigned long long) offset);
1083 // Do not consider the settings file as a definitive answer, keep fixed=false so next run will try ats files again
1084 }
1085 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001086
1087 gettimeofday(&tv, NULL);
1088
1089 tv.tv_sec += offset/1000;
Phoenix591e444d112018-02-03 07:23:54 +00001090#ifdef TW_CLOCK_OFFSET
1091// Some devices are even quirkier and have ats files that are offset from the actual time
1092 tv.tv_sec = tv.tv_sec + TW_CLOCK_OFFSET;
1093#endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001094 tv.tv_usec += (offset%1000)*1000;
1095
Matt Mowera8a89d12016-12-30 18:10:37 -06001096 while (tv.tv_usec >= 1000000)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001097 {
1098 ++tv.tv_sec;
1099 tv.tv_usec -= 1000000;
1100 }
1101
1102 settimeofday(&tv, NULL);
xNUTxe85f02d2014-07-18 01:30:58 +02001103
1104 LOGINFO("TWFunc::Fixup_Time: Date and time corrected: %s\n", TWFunc::Get_Current_Date().c_str());
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001105#endif
1106}
Ethan Yonkeraf2897c2014-02-10 13:07:14 -06001107
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001108std::vector<std::string> TWFunc::Split_String(const std::string& str, const std::string& delimiter, bool removeEmpty)
1109{
1110 std::vector<std::string> res;
1111 size_t idx = 0, idx_last = 0;
1112
Matt Mowera8a89d12016-12-30 18:10:37 -06001113 while (idx < str.size())
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001114 {
1115 idx = str.find_first_of(delimiter, idx_last);
Matt Mowera8a89d12016-12-30 18:10:37 -06001116 if (idx == std::string::npos)
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001117 idx = str.size();
1118
Matt Mowera8a89d12016-12-30 18:10:37 -06001119 if (idx-idx_last != 0 || !removeEmpty)
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001120 res.push_back(str.substr(idx_last, idx-idx_last));
1121
1122 idx_last = idx + delimiter.size();
1123 }
1124
1125 return res;
1126}
1127
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001128bool TWFunc::Create_Dir_Recursive(const std::string& path, mode_t mode, uid_t uid, gid_t gid)
1129{
1130 std::vector<std::string> parts = Split_String(path, "/");
1131 std::string cur_path;
1132 struct stat info;
Matt Mowera8a89d12016-12-30 18:10:37 -06001133 for (size_t i = 0; i < parts.size(); ++i)
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001134 {
1135 cur_path += "/" + parts[i];
Matt Mowera8a89d12016-12-30 18:10:37 -06001136 if (stat(cur_path.c_str(), &info) < 0 || !S_ISDIR(info.st_mode))
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001137 {
Matt Mowera8a89d12016-12-30 18:10:37 -06001138 if (mkdir(cur_path.c_str(), mode) < 0)
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001139 return false;
1140 chown(cur_path.c_str(), uid, gid);
1141 }
1142 }
1143 return true;
1144}
1145
xNUTxe85f02d2014-07-18 01:30:58 +02001146int TWFunc::Set_Brightness(std::string brightness_value)
1147{
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001148 int result = -1;
1149 std::string secondary_brightness_file;
xNUTxe85f02d2014-07-18 01:30:58 +02001150
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001151 if (DataManager::GetIntValue("tw_has_brightnesss_file")) {
xNUTxe85f02d2014-07-18 01:30:58 +02001152 LOGINFO("TWFunc::Set_Brightness: Setting brightness control to %s\n", brightness_value.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001153 result = TWFunc::write_to_file(DataManager::GetStrValue("tw_brightness_file"), brightness_value);
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001154 DataManager::GetValue("tw_secondary_brightness_file", secondary_brightness_file);
1155 if (!secondary_brightness_file.empty()) {
1156 LOGINFO("TWFunc::Set_Brightness: Setting secondary brightness control to %s\n", brightness_value.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001157 TWFunc::write_to_file(secondary_brightness_file, brightness_value);
xNUTxe85f02d2014-07-18 01:30:58 +02001158 }
xNUTxe85f02d2014-07-18 01:30:58 +02001159 }
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001160 return result;
xNUTxe85f02d2014-07-18 01:30:58 +02001161}
1162
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001163bool TWFunc::Toggle_MTP(bool enable) {
1164#ifdef TW_HAS_MTP
1165 static int was_enabled = false;
1166
1167 if (enable && was_enabled) {
1168 if (!PartitionManager.Enable_MTP())
1169 PartitionManager.Disable_MTP();
1170 } else {
1171 was_enabled = DataManager::GetIntValue("tw_mtp_enabled");
1172 PartitionManager.Disable_MTP();
1173 usleep(500);
1174 }
1175 return was_enabled;
1176#else
1177 return false;
1178#endif
1179}
1180
Tom Hite5a926722014-09-15 01:31:03 +00001181void TWFunc::SetPerformanceMode(bool mode) {
1182 if (mode) {
1183 property_set("recovery.perf.mode", "1");
1184 } else {
1185 property_set("recovery.perf.mode", "0");
1186 }
1187 // Some time for events to catch up to init handlers
1188 usleep(500000);
1189}
1190
Jenkins1710bf22014-10-02 20:22:21 -04001191std::string TWFunc::to_string(unsigned long value) {
1192 std::ostringstream os;
1193 os << value;
1194 return os.str();
1195}
1196
Ethan Yonker9132d912015-02-02 10:32:49 -06001197void TWFunc::Disable_Stock_Recovery_Replace(void) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001198 if (PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), false)) {
Ethan Yonker9132d912015-02-02 10:32:49 -06001199 // Disable flashing of stock recovery
1200 if (TWFunc::Path_Exists("/system/recovery-from-boot.p")) {
1201 rename("/system/recovery-from-boot.p", "/system/recovery-from-boot.bak");
Ethan Yonker74db1572015-10-28 12:44:49 -05001202 gui_msg("rename_stock=Renamed stock recovery file in /system to prevent the stock ROM from replacing TWRP.");
Ethan Yonker9132d912015-02-02 10:32:49 -06001203 sync();
1204 }
Captain Throwback9d6feb52018-07-27 10:05:24 -04001205 PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false);
Ethan Yonker9132d912015-02-02 10:32:49 -06001206 }
1207}
1208
Ethan Yonker483e9f42016-01-11 22:21:18 -06001209unsigned long long TWFunc::IOCTL_Get_Block_Size(const char* block_device) {
1210 unsigned long block_device_size;
1211 int ret = 0;
1212
1213 int fd = open(block_device, O_RDONLY);
1214 if (fd < 0) {
1215 LOGINFO("Find_Partition_Size: Failed to open '%s', (%s)\n", block_device, strerror(errno));
1216 } else {
1217 ret = ioctl(fd, BLKGETSIZE, &block_device_size);
1218 close(fd);
1219 if (ret) {
1220 LOGINFO("Find_Partition_Size: ioctl error: (%s)\n", strerror(errno));
1221 } else {
1222 return (unsigned long long)(block_device_size) * 512LLU;
1223 }
1224 }
1225 return 0;
1226}
1227
bigbiff bigbiffbad332a2016-07-29 21:18:13 -04001228void TWFunc::copy_kernel_log(string curr_storage) {
1229 std::string dmesgDst = curr_storage + "/dmesg.log";
1230 std::string dmesgCmd = "/sbin/dmesg";
1231
1232 std::string result;
1233 Exec_Cmd(dmesgCmd, result);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001234 write_to_file(dmesgDst, result);
bigbiff bigbiffbad332a2016-07-29 21:18:13 -04001235 gui_msg(Msg("copy_kernel_log=Copied kernel log to {1}")(dmesgDst));
1236 tw_set_default_metadata(dmesgDst.c_str());
1237}
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001238
1239bool TWFunc::isNumber(string strtocheck) {
1240 int num = 0;
1241 std::istringstream iss(strtocheck);
1242
1243 if (!(iss >> num).fail())
1244 return true;
1245 else
1246 return false;
1247}
1248
1249int TWFunc::stream_adb_backup(string &Restore_Name) {
1250 string cmd = "/sbin/bu --twrp stream " + Restore_Name;
1251 LOGINFO("stream_adb_backup: %s\n", cmd.c_str());
1252 int ret = TWFunc::Exec_Cmd(cmd);
1253 if (ret != 0)
1254 return -1;
1255 return ret;
1256}
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001257
1258std::string TWFunc::get_cache_dir() {
1259 if (PartitionManager.Find_Partition_By_Path(NON_AB_CACHE_DIR) == NULL) {
SyberHexena8951182019-10-29 18:08:16 -07001260 if (PartitionManager.Find_Partition_By_Path(AB_CACHE_DIR) == NULL) {
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04001261 if (PartitionManager.Find_Partition_By_Path(PERSIST_CACHE_DIR) == NULL) {
1262 LOGINFO("Unable to find a directory to store TWRP logs.");
1263 return "";
1264 }
1265 return PERSIST_CACHE_DIR;
1266 } else {
1267 return AB_CACHE_DIR;
1268 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001269 }
1270 else {
1271 return NON_AB_CACHE_DIR;
1272 }
1273}
1274
1275void TWFunc::check_selinux_support() {
1276 if (TWFunc::Path_Exists("/prebuilt_file_contexts")) {
1277 if (TWFunc::Path_Exists("/file_contexts")) {
1278 printf("Renaming regular /file_contexts -> /file_contexts.bak\n");
1279 rename("/file_contexts", "/file_contexts.bak");
1280 }
1281 printf("Moving /prebuilt_file_contexts -> /file_contexts\n");
1282 rename("/prebuilt_file_contexts", "/file_contexts");
1283 }
1284 struct selinux_opt selinux_options[] = {
1285 { SELABEL_OPT_PATH, "/file_contexts" }
1286 };
1287 selinux_handle = selabel_open(SELABEL_CTX_FILE, selinux_options, 1);
1288 if (!selinux_handle)
1289 printf("No file contexts for SELinux\n");
1290 else
1291 printf("SELinux contexts loaded from /file_contexts\n");
1292 { // Check to ensure SELinux can be supported by the kernel
1293 char *contexts = NULL;
1294 std::string cacheDir = TWFunc::get_cache_dir();
1295 std::string se_context_check = cacheDir + "recovery/";
1296 int ret = 0;
1297
1298 if (cacheDir == NON_AB_CACHE_DIR) {
1299 PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false);
1300 }
1301 if (TWFunc::Path_Exists(se_context_check)) {
1302 ret = lgetfilecon(se_context_check.c_str(), &contexts);
Makornthawat Emeryabc299c2019-03-29 13:45:22 +00001303 if (ret < 0) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001304 LOGINFO("Could not check %s SELinux contexts, using /sbin/teamwin instead which may be inaccurate.\n", se_context_check.c_str());
1305 lgetfilecon("/sbin/teamwin", &contexts);
1306 }
1307 }
1308 if (ret < 0) {
1309 gui_warn("no_kernel_selinux=Kernel does not have support for reading SELinux contexts.");
1310 } else {
1311 free(contexts);
1312 gui_msg("full_selinux=Full SELinux support is present.");
1313 }
1314 }
1315}
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001316
1317bool TWFunc::Is_TWRP_App_In_System() {
bigbiffee7b7ff2020-03-23 15:08:27 -04001318 LOGINFO("checking for twrp app\n");
1319 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
1320 if (!sys->Get_Super_Status()) {
1321 if (PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), false)) {
1322 string base_path = PartitionManager.Get_Android_Root_Path();
1323 if (TWFunc::Path_Exists(PartitionManager.Get_Android_Root_Path() + "/system"))
1324 base_path += "/system"; // For devices with system as a root file system (e.g. Pixel)
1325 string install_path = base_path + "/priv-app";
1326 if (!TWFunc::Path_Exists(install_path))
1327 install_path = base_path + "/app";
1328 install_path += "/twrpapp";
1329 if (TWFunc::Path_Exists(install_path)) {
1330 LOGINFO("App found at '%s'\n", install_path.c_str());
1331 DataManager::SetValue("tw_app_installed_in_system", 1);
1332 return true;
1333 }
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001334 }
bigbiffee7b7ff2020-03-23 15:08:27 -04001335 DataManager::SetValue("tw_app_installed_in_system", 0);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001336 }
1337 DataManager::SetValue("tw_app_installed_in_system", 0);
bigbiffa34befa2020-03-11 19:24:18 -04001338 PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001339 return false;
1340}
Chaosmaster461e39f2020-02-07 01:48:13 +01001341
1342int TWFunc::Property_Override(string Prop_Name, string Prop_Value) {
1343#ifdef TW_INCLUDE_LIBRESETPROP
1344 return setprop(Prop_Name.c_str(), Prop_Value.c_str(), false);
1345#else
1346 return -2;
1347#endif
1348}
1349
bigbiffee7b7ff2020-03-23 15:08:27 -04001350void TWFunc::List_Mounts() {
1351 std::vector<std::string> mounts;
1352 read_file("/proc/mounts", mounts);
1353 LOGINFO("Mounts:\n");
1354 for (auto&& mount: mounts) {
1355 LOGINFO("%s\n", mount.c_str());
1356 }
1357}
1358
Ethan Yonkeraf2897c2014-02-10 13:07:14 -06001359#endif // ndef BUILD_TWRPTAR_MAIN