blob: e0e4301fa2938349c1f30ceb038247c79a704fbc [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
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100320std::string TWFunc::Remove_Trailing_Slashes(const std::string& path, bool leaveLast)
321{
322 std::string res;
323 size_t last_idx = 0, idx = 0;
324
Matt Mowera8a89d12016-12-30 18:10:37 -0600325 while (last_idx != std::string::npos)
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100326 {
Matt Mowera8a89d12016-12-30 18:10:37 -0600327 if (last_idx != 0)
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100328 res += '/';
329
330 idx = path.find_first_of('/', last_idx);
Matt Mowera8a89d12016-12-30 18:10:37 -0600331 if (idx == std::string::npos) {
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100332 res += path.substr(last_idx, idx);
333 break;
334 }
335
336 res += path.substr(last_idx, idx-last_idx);
337 last_idx = path.find_first_not_of('/', idx);
338 }
339
Matt Mowera8a89d12016-12-30 18:10:37 -0600340 if (leaveLast)
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100341 res += '/';
342 return res;
343}
344
Matt Mower2416a502016-04-12 19:54:46 -0500345void TWFunc::Strip_Quotes(char* &str) {
346 if (strlen(str) > 0 && str[0] == '\"')
347 str++;
348 if (strlen(str) > 0 && str[strlen(str)-1] == '\"')
349 str[strlen(str)-1] = 0;
350}
351
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500352vector<string> TWFunc::split_string(const string &in, char del, bool skip_empty) {
353 vector<string> res;
354
355 if (in.empty() || del == '\0')
356 return res;
357
358 string field;
359 istringstream f(in);
360 if (del == '\n') {
Matt Mowera8a89d12016-12-30 18:10:37 -0600361 while (getline(f, field)) {
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500362 if (field.empty() && skip_empty)
363 continue;
Matt Mowera8a89d12016-12-30 18:10:37 -0600364 res.push_back(field);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500365 }
366 } else {
Matt Mowera8a89d12016-12-30 18:10:37 -0600367 while (getline(f, field, del)) {
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500368 if (field.empty() && skip_empty)
369 continue;
370 res.push_back(field);
371 }
372 }
373 return res;
374}
375
Ethan Yonker472f5062016-02-25 13:47:30 -0600376timespec TWFunc::timespec_diff(timespec& start, timespec& end)
377{
378 timespec temp;
379 if ((end.tv_nsec-start.tv_nsec)<0) {
380 temp.tv_sec = end.tv_sec-start.tv_sec-1;
381 temp.tv_nsec = 1000000000+end.tv_nsec-start.tv_nsec;
382 } else {
383 temp.tv_sec = end.tv_sec-start.tv_sec;
384 temp.tv_nsec = end.tv_nsec-start.tv_nsec;
385 }
386 return temp;
387}
388
389int32_t TWFunc::timespec_diff_ms(timespec& start, timespec& end)
390{
391 return ((end.tv_sec * 1000) + end.tv_nsec/1000000) -
392 ((start.tv_sec * 1000) + start.tv_nsec/1000000);
393}
394
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600395#ifndef BUILD_TWRPTAR_MAIN
396
Dees_Troy38bd7602012-09-14 13:33:53 -0400397// Returns "/path" from a full /path/to/file.name
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600398string TWFunc::Get_Root_Path(const string& Path) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400399 string Local_Path = Path;
400
401 // Make sure that we have a leading slash
402 if (Local_Path.substr(0, 1) != "/")
403 Local_Path = "/" + Local_Path;
404
405 // Trim the path to get the root path only
406 size_t position = Local_Path.find("/", 2);
407 if (position != string::npos) {
408 Local_Path.resize(position);
409 }
410 return Local_Path;
411}
412
413void TWFunc::install_htc_dumlock(void) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400414 int need_libs = 0;
415
Captain Throwback9d6feb52018-07-27 10:05:24 -0400416 if (!PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), true))
Dees_Troy38bd7602012-09-14 13:33:53 -0400417 return;
418
419 if (!PartitionManager.Mount_By_Path("/data", true))
420 return;
421
Ethan Yonker74db1572015-10-28 12:44:49 -0500422 gui_msg("install_dumlock=Installing HTC Dumlock to system...");
Dees Troy3454ade2015-01-20 19:21:04 +0000423 copy_file(TWHTCD_PATH "htcdumlocksys", "/system/bin/htcdumlock", 0755);
Dees_Troy8170a922012-09-18 15:40:25 -0400424 if (!Path_Exists("/system/bin/flash_image")) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500425 LOGINFO("Installing flash_image...\n");
Dees Troy3454ade2015-01-20 19:21:04 +0000426 copy_file(TWHTCD_PATH "flash_imagesys", "/system/bin/flash_image", 0755);
Dees_Troy38bd7602012-09-14 13:33:53 -0400427 need_libs = 1;
428 } else
Ethan Yonker74db1572015-10-28 12:44:49 -0500429 LOGINFO("flash_image is already installed, skipping...\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400430 if (!Path_Exists("/system/bin/dump_image")) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500431 LOGINFO("Installing dump_image...\n");
Dees Troy3454ade2015-01-20 19:21:04 +0000432 copy_file(TWHTCD_PATH "dump_imagesys", "/system/bin/dump_image", 0755);
Dees_Troy38bd7602012-09-14 13:33:53 -0400433 need_libs = 1;
434 } else
Ethan Yonker74db1572015-10-28 12:44:49 -0500435 LOGINFO("dump_image is already installed, skipping...\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400436 if (need_libs) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500437 LOGINFO("Installing libs needed for flash_image and dump_image...\n");
Dees Troy3454ade2015-01-20 19:21:04 +0000438 copy_file(TWHTCD_PATH "libbmlutils.so", "/system/lib/libbmlutils.so", 0644);
439 copy_file(TWHTCD_PATH "libflashutils.so", "/system/lib/libflashutils.so", 0644);
440 copy_file(TWHTCD_PATH "libmmcutils.so", "/system/lib/libmmcutils.so", 0644);
441 copy_file(TWHTCD_PATH "libmtdutils.so", "/system/lib/libmtdutils.so", 0644);
Dees_Troy38bd7602012-09-14 13:33:53 -0400442 }
Ethan Yonker74db1572015-10-28 12:44:49 -0500443 LOGINFO("Installing HTC Dumlock app...\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400444 mkdir("/data/app", 0777);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500445 unlink("/data/app/com.teamwin.htcdumlock*");
Dees Troy3454ade2015-01-20 19:21:04 +0000446 copy_file(TWHTCD_PATH "HTCDumlock.apk", "/data/app/com.teamwin.htcdumlock.apk", 0777);
Dees_Troy38bd7602012-09-14 13:33:53 -0400447 sync();
Ethan Yonker74db1572015-10-28 12:44:49 -0500448 gui_msg("done=Done.");
Dees_Troy38bd7602012-09-14 13:33:53 -0400449}
450
451void TWFunc::htc_dumlock_restore_original_boot(void) {
452 if (!PartitionManager.Mount_By_Path("/sdcard", true))
453 return;
454
Ethan Yonker74db1572015-10-28 12:44:49 -0500455 gui_msg("dumlock_restore=Restoring original boot...");
Vojtech Bocek05534202013-09-11 08:11:56 +0200456 Exec_Cmd("htcdumlock restore");
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_reflash_recovery_to_boot(void) {
461 if (!PartitionManager.Mount_By_Path("/sdcard", true))
462 return;
Ethan Yonker74db1572015-10-28 12:44:49 -0500463 gui_msg("dumlock_reflash=Reflashing recovery to boot...");
Vojtech Bocek05534202013-09-11 08:11:56 +0200464 Exec_Cmd("htcdumlock recovery noreboot");
Ethan Yonker74db1572015-10-28 12:44:49 -0500465 gui_msg("done=Done.");
Dees_Troy38bd7602012-09-14 13:33:53 -0400466}
Dees_Troy43d8b002012-09-17 16:00:01 -0400467
468int TWFunc::Recursive_Mkdir(string Path) {
thatf1408b32016-01-03 11:09:15 +0100469 std::vector<std::string> parts = Split_String(Path, "/", true);
470 std::string cur_path;
471 for (size_t i = 0; i < parts.size(); ++i) {
472 cur_path += "/" + parts[i];
473 if (!TWFunc::Path_Exists(cur_path)) {
474 if (mkdir(cur_path.c_str(), 0777)) {
Matt Mower3c366972015-12-25 19:28:31 -0600475 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 -0600476 return false;
477 } else {
thatf1408b32016-01-03 11:09:15 +0100478 tw_set_default_metadata(cur_path.c_str());
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600479 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400480 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400481 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400482 return true;
483}
484
Dees_Troyb46a6842012-09-25 11:06:46 -0400485void TWFunc::GUI_Operation_Text(string Read_Value, string Default_Text) {
486 string Display_Text;
487
488 DataManager::GetValue(Read_Value, Display_Text);
489 if (Display_Text.empty())
490 Display_Text = Default_Text;
491
492 DataManager::SetValue("tw_operation", Display_Text);
493 DataManager::SetValue("tw_partition", "");
494}
495
496void TWFunc::GUI_Operation_Text(string Read_Value, string Partition_Name, string Default_Text) {
497 string Display_Text;
498
499 DataManager::GetValue(Read_Value, Display_Text);
500 if (Display_Text.empty())
501 Display_Text = Default_Text;
502
503 DataManager::SetValue("tw_operation", Display_Text);
504 DataManager::SetValue("tw_partition", Partition_Name);
Dees_Troy7c2dec82012-09-26 09:49:14 -0400505}
506
Dees_Troy2673cec2013-04-02 20:22:16 +0000507void TWFunc::Copy_Log(string Source, string Destination) {
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400508 int logPipe[2];
509 int pigz_pid;
510 int destination_fd;
511 std::string destLogBuffer;
512
Dees Troy9d7fdf52013-09-19 20:49:25 +0000513 PartitionManager.Mount_By_Path(Destination, false);
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400514
515 size_t extPos = Destination.find(".gz");
516 std::string uncompressedLog(Destination);
517 uncompressedLog.replace(extPos, Destination.length(), "");
518
519 if (Path_Exists(Destination)) {
520 Archive_Type type = Get_File_Type(Destination);
521 if (type == COMPRESSED) {
522 std::string destFileBuffer;
523 std::string getCompressedContents = "pigz -c -d " + Destination;
524 if (Exec_Cmd(getCompressedContents, destFileBuffer) < 0) {
525 LOGINFO("Unable to get destination logfile contents.\n");
526 return;
527 }
528 destLogBuffer.append(destFileBuffer);
Dees_Troy6ef66352013-02-21 08:26:57 -0600529 }
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400530 } else if (Path_Exists(uncompressedLog)) {
bigbiffd3317052019-12-22 16:05:12 -0500531 std::ifstream uncompressedIfs(uncompressedLog.c_str());
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400532 std::stringstream uncompressedSS;
533 uncompressedSS << uncompressedIfs.rdbuf();
534 uncompressedIfs.close();
535 std::string uncompressedLogBuffer(uncompressedSS.str());
536 destLogBuffer.append(uncompressedLogBuffer);
537 std::remove(uncompressedLog.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600538 }
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400539
bigbiffd3317052019-12-22 16:05:12 -0500540 std::ifstream ifs(Source.c_str());
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400541 std::stringstream ss;
542 ss << ifs.rdbuf();
543 std::string srcLogBuffer(ss.str());
544 ifs.close();
545
546 if (pipe(logPipe) < 0) {
547 LOGINFO("Unable to open pipe to write to persistent log file: %s\n", Destination.c_str());
548 }
549
550 destination_fd = open(Destination.c_str(), O_WRONLY | O_CREAT | O_TRUNC, 0666);
551
552 pigz_pid = fork();
553 if (pigz_pid < 0) {
554 LOGINFO("fork() failed\n");
555 close(destination_fd);
556 close(logPipe[0]);
557 close(logPipe[1]);
558 } else if (pigz_pid == 0) {
559 close(logPipe[1]);
560 dup2(logPipe[0], fileno(stdin));
561 dup2(destination_fd, fileno(stdout));
562 if (execlp("pigz", "pigz", "-", NULL) < 0) {
563 close(destination_fd);
564 close(logPipe[0]);
565 _exit(-1);
566 }
567 } else {
568 close(logPipe[0]);
569 if (write(logPipe[1], destLogBuffer.c_str(), destLogBuffer.size()) < 0) {
570 LOGINFO("Unable to append to persistent log: %s\n", Destination.c_str());
571 close(logPipe[1]);
572 close(destination_fd);
573 return;
574 }
575 if (write(logPipe[1], srcLogBuffer.c_str(), srcLogBuffer.size()) < 0) {
576 LOGINFO("Unable to append to persistent log: %s\n", Destination.c_str());
577 close(logPipe[1]);
578 close(destination_fd);
579 return;
580 }
581 close(logPipe[1]);
582 }
583 close(destination_fd);
Dees_Troya58bead2012-09-27 09:49:29 -0400584}
585
Dees_Troy2673cec2013-04-02 20:22:16 +0000586void TWFunc::Update_Log_File(void) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500587 std::string recoveryDir = get_cache_dir() + "recovery/";
588
589 if (get_cache_dir() == NON_AB_CACHE_DIR) {
590 if (!PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false)) {
591 LOGINFO("Failed to mount %s for TWFunc::Update_Log_File\n", NON_AB_CACHE_DIR);
Dees Troy9d7fdf52013-09-19 20:49:25 +0000592 }
Dees Troy9d7fdf52013-09-19 20:49:25 +0000593 }
Dees_Troya58bead2012-09-27 09:49:29 -0400594
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500595 if (!TWFunc::Path_Exists(recoveryDir)) {
596 LOGINFO("Recreating %s folder.\n", recoveryDir.c_str());
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -0400597 if (!Create_Dir_Recursive(recoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, 0, 0)) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500598 LOGINFO("Unable to create %s folder.\n", recoveryDir.c_str());
599 }
600 }
601
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400602 std::string logCopy = recoveryDir + "log.gz";
603 std::string lastLogCopy = recoveryDir + "last_log.gz";
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500604 copy_file(logCopy, lastLogCopy, 600);
605 Copy_Log(TMP_LOG_FILE, logCopy);
606 chown(logCopy.c_str(), 1000, 1000);
607 chmod(logCopy.c_str(), 0600);
608 chmod(lastLogCopy.c_str(), 0640);
609
Dees_Troy2673cec2013-04-02 20:22:16 +0000610 // Reset bootloader message
611 TWPartition* Part = PartitionManager.Find_Partition_By_Path("/misc");
612 if (Part != NULL) {
Ethan Yonker8373cfe2017-09-08 06:50:54 -0500613 std::string err;
614 if (!clear_bootloader_message((void*)&err)) {
Ethan Yonkerb5236502016-11-19 22:24:59 -0600615 if (err == "no misc device set") {
616 LOGINFO("%s\n", err.c_str());
617 } else {
618 LOGERR("%s\n", err.c_str());
619 }
620 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000621 }
Dees_Troya58bead2012-09-27 09:49:29 -0400622
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500623 if (get_cache_dir() == NON_AB_CACHE_DIR) {
624 if (PartitionManager.Mount_By_Path("/cache", false)) {
625 if (unlink("/cache/recovery/command") && errno != ENOENT) {
626 LOGINFO("Can't unlink %s\n", "/cache/recovery/command");
627 }
Dees Troy9d7fdf52013-09-19 20:49:25 +0000628 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500629 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000630 sync();
631}
632
633void TWFunc::Update_Intent_File(string Intent) {
634 if (PartitionManager.Mount_By_Path("/cache", false) && !Intent.empty()) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600635 TWFunc::write_to_file("/cache/recovery/intent", Intent);
Dees_Troy2673cec2013-04-02 20:22:16 +0000636 }
Dees_Troya58bead2012-09-27 09:49:29 -0400637}
638
639// reboot: Reboot the system. Return -1 on error, no return on success
640int TWFunc::tw_reboot(RebootCommand command)
641{
Ethan Yonkerfe916112016-03-14 14:54:37 -0500642 DataManager::Flush();
bigbiffa2bd7b72020-05-07 21:45:34 -0400643 if (!Is_Data_Wiped("/data"))
644 Update_Log_File();
645
Dees_Troya58bead2012-09-27 09:49:29 -0400646 // Always force a sync before we reboot
Dees_Troy6ef66352013-02-21 08:26:57 -0600647 sync();
Dees_Troya58bead2012-09-27 09:49:29 -0400648
Dees_Troy2673cec2013-04-02 20:22:16 +0000649 switch (command) {
650 case rb_current:
651 case rb_system:
Dees_Troy2673cec2013-04-02 20:22:16 +0000652 Update_Intent_File("s");
653 sync();
654 check_and_run_script("/sbin/rebootsystem.sh", "reboot system");
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500655#ifdef ANDROID_RB_PROPERTY
656 return property_set(ANDROID_RB_PROPERTY, "reboot,");
657#elif defined(ANDROID_RB_RESTART)
658 return android_reboot(ANDROID_RB_RESTART, 0, 0);
659#else
Dees_Troy2673cec2013-04-02 20:22:16 +0000660 return reboot(RB_AUTOBOOT);
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500661#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000662 case rb_recovery:
663 check_and_run_script("/sbin/rebootrecovery.sh", "reboot recovery");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600664#ifdef ANDROID_RB_PROPERTY
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500665 return property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600666#else
667 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "recovery");
668#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000669 case rb_bootloader:
670 check_and_run_script("/sbin/rebootbootloader.sh", "reboot bootloader");
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,bootloader");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600673#else
674 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "bootloader");
675#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000676 case rb_poweroff:
677 check_and_run_script("/sbin/poweroff.sh", "power off");
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500678#ifdef ANDROID_RB_PROPERTY
679 return property_set(ANDROID_RB_PROPERTY, "shutdown,");
680#elif defined(ANDROID_RB_POWEROFF)
681 return android_reboot(ANDROID_RB_POWEROFF, 0, 0);
682#else
Dees_Troy2673cec2013-04-02 20:22:16 +0000683 return reboot(RB_POWER_OFF);
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500684#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000685 case rb_download:
686 check_and_run_script("/sbin/rebootdownload.sh", "reboot download");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600687#ifdef ANDROID_RB_PROPERTY
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500688 return property_set(ANDROID_RB_PROPERTY, "reboot,download");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600689#else
690 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "download");
691#endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200692 case rb_edl:
693 check_and_run_script("/sbin/rebootedl.sh", "reboot edl");
694#ifdef ANDROID_RB_PROPERTY
695 return property_set(ANDROID_RB_PROPERTY, "reboot,edl");
696#else
697 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "edl");
698#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000699 default:
700 return -1;
Dees_Troy6ef66352013-02-21 08:26:57 -0600701 }
702 return -1;
Dees_Troya58bead2012-09-27 09:49:29 -0400703}
704
705void TWFunc::check_and_run_script(const char* script_file, const char* display_name)
706{
707 // Check for and run startup script if script exists
708 struct stat st;
709 if (stat(script_file, &st) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500710 gui_msg(Msg("run_script=Running {1} script...")(display_name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500711 chmod(script_file, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
Vojtech Bocek05534202013-09-11 08:11:56 +0200712 TWFunc::Exec_Cmd(script_file);
Ethan Yonker74db1572015-10-28 12:44:49 -0500713 gui_msg("done=Done.");
Dees_Troya58bead2012-09-27 09:49:29 -0400714 }
Dees_Troy3477d712012-09-27 15:44:01 -0400715}
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500716
717int TWFunc::removeDir(const string path, bool skipParent) {
Dees_Troyce675462013-01-09 19:48:21 +0000718 DIR *d = opendir(path.c_str());
719 int r = 0;
720 string new_path;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500721
Dees_Troyce675462013-01-09 19:48:21 +0000722 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500723 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(path)(strerror(errno)));
Dees_Troyce675462013-01-09 19:48:21 +0000724 return -1;
725 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500726
Dees_Troyce675462013-01-09 19:48:21 +0000727 if (d) {
728 struct dirent *p;
729 while (!r && (p = readdir(d))) {
Dees_Troyce675462013-01-09 19:48:21 +0000730 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
731 continue;
732 new_path = path + "/";
733 new_path.append(p->d_name);
734 if (p->d_type == DT_DIR) {
735 r = removeDir(new_path, true);
736 if (!r) {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500737 if (p->d_type == DT_DIR)
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500738 r = rmdir(new_path.c_str());
739 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000740 LOGINFO("Unable to removeDir '%s': %s\n", new_path.c_str(), strerror(errno));
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500741 }
bigbiff bigbiff98f1f902013-01-19 18:46:13 -0500742 } 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 +0000743 r = unlink(new_path.c_str());
Dees_Troye34c1332013-02-06 19:13:00 +0000744 if (r != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000745 LOGINFO("Unable to unlink '%s: %s'\n", new_path.c_str(), strerror(errno));
Dees_Troye34c1332013-02-06 19:13:00 +0000746 }
Dees_Troyce675462013-01-09 19:48:21 +0000747 }
748 }
749 closedir(d);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500750
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500751 if (!r) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500752 if (skipParent)
753 return 0;
754 else
755 r = rmdir(path.c_str());
756 }
Dees_Troyce675462013-01-09 19:48:21 +0000757 }
758 return r;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500759}
760
761int TWFunc::copy_file(string src, string dst, int mode) {
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400762 PartitionManager.Mount_By_Path(src, false);
763 PartitionManager.Mount_By_Path(dst, false);
764 if (!Path_Exists(src)) {
765 LOGINFO("Unable to find source file %s\n", src.c_str());
766 return -1;
767 }
bigbiffd3317052019-12-22 16:05:12 -0500768 std::ifstream srcfile(src.c_str(), ios::binary);
769 std::ofstream dstfile(dst.c_str(), ios::binary);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500770 dstfile << srcfile.rdbuf();
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400771 if (!dstfile.bad()) {
772 LOGINFO("Copied file %s to %s\n", src.c_str(), dst.c_str());
773 }
774 else {
775 LOGINFO("Unable to copy file %s to %s\n", src.c_str(), dst.c_str());
776 return -1;
777 }
778
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500779 srcfile.close();
780 dstfile.close();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500781 if (chmod(dst.c_str(), mode) != 0)
782 return -1;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500783 return 0;
784}
Dees_Troy3ee47bc2013-01-25 21:47:37 +0000785
786unsigned int TWFunc::Get_D_Type_From_Stat(string Path) {
787 struct stat st;
788
789 stat(Path.c_str(), &st);
790 if (st.st_mode & S_IFDIR)
791 return DT_DIR;
792 else if (st.st_mode & S_IFBLK)
793 return DT_BLK;
794 else if (st.st_mode & S_IFCHR)
795 return DT_CHR;
796 else if (st.st_mode & S_IFIFO)
797 return DT_FIFO;
798 else if (st.st_mode & S_IFLNK)
799 return DT_LNK;
800 else if (st.st_mode & S_IFREG)
801 return DT_REG;
802 else if (st.st_mode & S_IFSOCK)
803 return DT_SOCK;
804 return DT_UNKNOWN;
Dees_Troye34c1332013-02-06 19:13:00 +0000805}
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500806
807int TWFunc::read_file(string fn, string& results) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200808 ifstream file;
809 file.open(fn.c_str(), ios::in);
810
811 if (file.is_open()) {
812 file >> results;
813 file.close();
814 return 0;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500815 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200816
817 LOGINFO("Cannot find file %s\n", fn.c_str());
818 return -1;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500819}
820
821int TWFunc::read_file(string fn, vector<string>& results) {
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500822 ifstream file;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500823 string line;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500824 file.open(fn.c_str(), ios::in);
825 if (file.is_open()) {
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500826 while (getline(file, line))
827 results.push_back(line);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500828 file.close();
829 return 0;
830 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000831 LOGINFO("Cannot find file %s\n", fn.c_str());
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500832 return -1;
833}
834
xNUTxe85f02d2014-07-18 01:30:58 +0200835int TWFunc::read_file(string fn, uint64_t& results) {
836 ifstream file;
837 file.open(fn.c_str(), ios::in);
838
839 if (file.is_open()) {
840 file >> results;
841 file.close();
842 return 0;
843 }
844
845 LOGINFO("Cannot find file %s\n", fn.c_str());
846 return -1;
847}
848
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600849int TWFunc::write_to_file(const string& fn, const string& line) {
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500850 FILE *file;
851 file = fopen(fn.c_str(), "w");
852 if (file != NULL) {
853 fwrite(line.c_str(), line.size(), 1, file);
854 fclose(file);
855 return 0;
856 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000857 LOGINFO("Cannot find file %s\n", fn.c_str());
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500858 return -1;
859}
860
Dees_Troy83bd4832013-05-04 12:39:56 +0000861bool TWFunc::Try_Decrypting_Backup(string Restore_Path, string Password) {
862 DIR* d;
863
864 string Filename;
865 Restore_Path += "/";
866 d = opendir(Restore_Path.c_str());
867 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500868 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Path)(strerror(errno)));
Dees_Troy83bd4832013-05-04 12:39:56 +0000869 return false;
870 }
871
872 struct dirent* de;
873 while ((de = readdir(d)) != NULL) {
874 Filename = Restore_Path;
875 Filename += de->d_name;
bigbiffce8f83c2015-12-12 18:30:21 -0500876 if (TWFunc::Get_File_Type(Filename) == ENCRYPTED) {
Dees_Troy83bd4832013-05-04 12:39:56 +0000877 if (TWFunc::Try_Decrypting_File(Filename, Password) < 2) {
878 DataManager::SetValue("tw_restore_password", ""); // Clear the bad password
879 DataManager::SetValue("tw_restore_display", ""); // Also clear the display mask
880 closedir(d);
881 return false;
882 }
883 }
884 }
885 closedir(d);
886 return true;
887}
888
Dees Troyb21cc642013-09-10 17:36:41 +0000889string TWFunc::Get_Current_Date() {
890 string Current_Date;
891 time_t seconds = time(0);
892 struct tm *t = localtime(&seconds);
893 char timestamp[255];
894 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);
895 Current_Date = timestamp;
896 return Current_Date;
897}
898
Ethan Yonkerb5557892014-02-07 21:43:20 -0600899string TWFunc::System_Property_Get(string Prop_Name) {
Chaosmaster65633a42020-02-05 15:24:09 +0100900 return System_Property_Get(Prop_Name, PartitionManager, PartitionManager.Get_Android_Root_Path());
901}
902
903string TWFunc::System_Property_Get(string Prop_Name, TWPartitionManager &PartitionManager, string Mount_Point) {
904 bool mount_state = PartitionManager.Is_Mounted_By_Path(Mount_Point);
Dees Troyb21cc642013-09-10 17:36:41 +0000905 std::vector<string> buildprop;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600906 string propvalue;
Chaosmaster65633a42020-02-05 15:24:09 +0100907 if (!PartitionManager.Mount_By_Path(Mount_Point, true))
Ethan Yonkerb5557892014-02-07 21:43:20 -0600908 return propvalue;
Chaosmaster65633a42020-02-05 15:24:09 +0100909 string prop_file = Mount_Point + "/build.prop";
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600910 if (!TWFunc::Path_Exists(prop_file))
Chaosmaster65633a42020-02-05 15:24:09 +0100911 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 -0600912 if (TWFunc::read_file(prop_file, buildprop) != 0) {
Captain Throwback9d6feb52018-07-27 10:05:24 -0400913 LOGINFO("Unable to open build.prop for getting '%s'.\n", Prop_Name.c_str());
Vojtech Boceka2e70162013-09-17 17:05:10 +0200914 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
Dees Troyb21cc642013-09-10 17:36:41 +0000915 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100916 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600917 return propvalue;
Dees Troyb21cc642013-09-10 17:36:41 +0000918 }
919 int line_count = buildprop.size();
920 int index;
921 size_t start_pos = 0, end_pos;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600922 string propname;
Dees Troyb21cc642013-09-10 17:36:41 +0000923 for (index = 0; index < line_count; index++) {
924 end_pos = buildprop.at(index).find("=", start_pos);
925 propname = buildprop.at(index).substr(start_pos, end_pos);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600926 if (propname == Prop_Name) {
Dees Troyb21cc642013-09-10 17:36:41 +0000927 propvalue = buildprop.at(index).substr(end_pos + 1, buildprop.at(index).size());
Ethan Yonkerb5557892014-02-07 21:43:20 -0600928 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100929 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600930 return propvalue;
Dees Troyb21cc642013-09-10 17:36:41 +0000931 }
932 }
Dees Troyb21cc642013-09-10 17:36:41 +0000933 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100934 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600935 return propvalue;
936}
937
938void TWFunc::Auto_Generate_Backup_Name() {
939 string propvalue = System_Property_Get("ro.build.display.id");
940 if (propvalue.empty()) {
941 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
942 return;
943 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400944 else {
945 //remove periods from build display so it doesn't confuse the extension code
946 propvalue.erase(remove(propvalue.begin(), propvalue.end(), '.'), propvalue.end());
947 }
Ethan Yonkerb5557892014-02-07 21:43:20 -0600948 string Backup_Name = Get_Current_Date();
bigbiff74a6d0d2015-02-14 20:49:44 -0500949 Backup_Name += "_" + propvalue;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600950 if (Backup_Name.size() > MAX_BACKUP_NAME_LEN)
951 Backup_Name.resize(MAX_BACKUP_NAME_LEN);
952 // Trailing spaces cause problems on some file systems, so remove them
953 string space_check, space = " ";
954 space_check = Backup_Name.substr(Backup_Name.size() - 1, 1);
955 while (space_check == space) {
956 Backup_Name.resize(Backup_Name.size() - 1);
957 space_check = Backup_Name.substr(Backup_Name.size() - 1, 1);
958 }
bigbiff74a6d0d2015-02-14 20:49:44 -0500959 replace(Backup_Name.begin(), Backup_Name.end(), ' ', '_');
Ethan Yonker53796e72019-01-11 22:49:52 -0600960 if (PartitionManager.Check_Backup_Name(Backup_Name, false, true) != 0) {
961 LOGINFO("Auto generated backup name '%s' is not valid, using date instead.\n", Backup_Name.c_str());
Ethan Yonker92d48e02014-02-26 12:05:55 -0600962 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
Ethan Yonker53796e72019-01-11 22:49:52 -0600963 } else {
964 DataManager::SetValue(TW_BACKUP_NAME, Backup_Name);
Ethan Yonker92d48e02014-02-26 12:05:55 -0600965 }
Vojtech Bocek05534202013-09-11 08:11:56 +0200966}
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100967
nkk7198fc3992017-12-16 16:26:42 +0200968void TWFunc::Fixup_Time_On_Boot(const string& time_paths /* = "" */)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100969{
970#ifdef QCOM_RTC_FIX
nkk7198fc3992017-12-16 16:26:42 +0200971 static bool fixed = false;
972 if (fixed)
973 return;
xNUTxe85f02d2014-07-18 01:30:58 +0200974
975 LOGINFO("TWFunc::Fixup_Time: Pre-fix date and time: %s\n", TWFunc::Get_Current_Date().c_str());
976
977 struct timeval tv;
978 uint64_t offset = 0;
979 std::string sepoch = "/sys/class/rtc/rtc0/since_epoch";
980
981 if (TWFunc::read_file(sepoch, offset) == 0) {
982
983 LOGINFO("TWFunc::Fixup_Time: Setting time offset from file %s\n", sepoch.c_str());
984
985 tv.tv_sec = offset;
986 tv.tv_usec = 0;
987 settimeofday(&tv, NULL);
988
989 gettimeofday(&tv, NULL);
990
Phoenix59146b05f22018-02-03 06:41:08 +0000991 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 +0200992
993 LOGINFO("TWFunc::Fixup_Time: Date and time corrected: %s\n", TWFunc::Get_Current_Date().c_str());
nkk7198fc3992017-12-16 16:26:42 +0200994 fixed = true;
xNUTxe85f02d2014-07-18 01:30:58 +0200995 return;
996
997 }
998
999 } else {
1000
1001 LOGINFO("TWFunc::Fixup_Time: opening %s failed\n", sepoch.c_str());
1002
1003 }
1004
Ethan Yonker9132d912015-02-02 10:32:49 -06001005 LOGINFO("TWFunc::Fixup_Time: will attempt to use the ats files now.\n");
xNUTxe85f02d2014-07-18 01:30:58 +02001006
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001007 // Devices with Qualcomm Snapdragon 800 do some shenanigans with RTC.
1008 // They never set it, it just ticks forward from 1970-01-01 00:00,
1009 // and then they have files /data/system/time/ats_* with 64bit offset
1010 // in miliseconds which, when added to the RTC, gives the correct time.
1011 // So, the time is: (offset_from_ats + value_from_RTC)
1012 // There are multiple ats files, they are for different systems? Bases?
1013 // Like, ats_1 is for modem and ats_2 is for TOD (time of day?).
1014 // Look at file time_genoff.h in CodeAurora, qcom-opensource/time-services
1015
nkk7198fc3992017-12-16 16:26:42 +02001016 std::vector<std::string> paths; // space separated list of paths
1017 if (time_paths.empty()) {
Mauronofrio Matarrese2dab70d2019-03-05 02:22:26 +01001018 paths = Split_String("/data/system/time/ /data/time/ /data/vendor/time/", " ");
nkk7198fc3992017-12-16 16:26:42 +02001019 if (!PartitionManager.Mount_By_Path("/data", false))
1020 return;
1021 } else {
1022 // When specific path(s) are used, Fixup_Time needs those
1023 // partitions to already be mounted!
1024 paths = Split_String(time_paths, " ");
1025 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001026
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001027 FILE *f;
xNUTxe85f02d2014-07-18 01:30:58 +02001028 offset = 0;
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001029 struct dirent *dt;
1030 std::string ats_path;
1031
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001032 // Prefer ats_2, it seems to be the one we want according to logcat on hammerhead
1033 // - it is the one for ATS_TOD (time of day?).
1034 // However, I never saw a device where the offset differs between ats files.
nkk7198fc3992017-12-16 16:26:42 +02001035 for (size_t i = 0; i < paths.size(); ++i)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001036 {
nkk7198fc3992017-12-16 16:26:42 +02001037 DIR *d = opendir(paths[i].c_str());
Matt Mowera8a89d12016-12-30 18:10:37 -06001038 if (!d)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001039 continue;
1040
Matt Mowera8a89d12016-12-30 18:10:37 -06001041 while ((dt = readdir(d)))
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001042 {
Matt Mowera8a89d12016-12-30 18:10:37 -06001043 if (dt->d_type != DT_REG || strncmp(dt->d_name, "ats_", 4) != 0)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001044 continue;
1045
Matt Mowera8a89d12016-12-30 18:10:37 -06001046 if (ats_path.empty() || strcmp(dt->d_name, "ats_2") == 0)
nkk7198fc3992017-12-16 16:26:42 +02001047 ats_path = paths[i] + dt->d_name;
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001048 }
1049
1050 closedir(d);
1051 }
1052
nkk7198fc3992017-12-16 16:26:42 +02001053 if (ats_path.empty()) {
xNUTxe85f02d2014-07-18 01:30:58 +02001054 LOGINFO("TWFunc::Fixup_Time: no ats files found, leaving untouched!\n");
nkk7198fc3992017-12-16 16:26:42 +02001055 } else if ((f = fopen(ats_path.c_str(), "r")) == NULL) {
Dees Troy3e254b92014-03-06 20:24:54 +00001056 LOGINFO("TWFunc::Fixup_Time: failed to open file %s\n", ats_path.c_str());
nkk7198fc3992017-12-16 16:26:42 +02001057 } else if (fread(&offset, sizeof(offset), 1, f) != 1) {
Dees Troy3e254b92014-03-06 20:24:54 +00001058 LOGINFO("TWFunc::Fixup_Time: failed load uint64 from file %s\n", ats_path.c_str());
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001059 fclose(f);
nkk7198fc3992017-12-16 16:26:42 +02001060 } else {
1061 fclose(f);
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001062
nkk7198fc3992017-12-16 16:26:42 +02001063 LOGINFO("TWFunc::Fixup_Time: Setting time offset from file %s, offset %llu\n", ats_path.c_str(), (unsigned long long) offset);
1064 DataManager::SetValue("tw_qcom_ats_offset", (unsigned long long) offset, 1);
1065 fixed = true;
1066 }
1067
1068 if (!fixed) {
1069 // Failed to get offset from ats file, check twrp settings
1070 unsigned long long value;
1071 if (DataManager::GetValue("tw_qcom_ats_offset", value) < 0) {
1072 return;
1073 } else {
1074 offset = (uint64_t) value;
1075 LOGINFO("TWFunc::Fixup_Time: Setting time offset from twrp setting file, offset %llu\n", (unsigned long long) offset);
1076 // Do not consider the settings file as a definitive answer, keep fixed=false so next run will try ats files again
1077 }
1078 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001079
1080 gettimeofday(&tv, NULL);
1081
1082 tv.tv_sec += offset/1000;
Phoenix591e444d112018-02-03 07:23:54 +00001083#ifdef TW_CLOCK_OFFSET
1084// Some devices are even quirkier and have ats files that are offset from the actual time
1085 tv.tv_sec = tv.tv_sec + TW_CLOCK_OFFSET;
1086#endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001087 tv.tv_usec += (offset%1000)*1000;
1088
Matt Mowera8a89d12016-12-30 18:10:37 -06001089 while (tv.tv_usec >= 1000000)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001090 {
1091 ++tv.tv_sec;
1092 tv.tv_usec -= 1000000;
1093 }
1094
1095 settimeofday(&tv, NULL);
xNUTxe85f02d2014-07-18 01:30:58 +02001096
1097 LOGINFO("TWFunc::Fixup_Time: Date and time corrected: %s\n", TWFunc::Get_Current_Date().c_str());
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001098#endif
1099}
Ethan Yonkeraf2897c2014-02-10 13:07:14 -06001100
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001101std::vector<std::string> TWFunc::Split_String(const std::string& str, const std::string& delimiter, bool removeEmpty)
1102{
1103 std::vector<std::string> res;
1104 size_t idx = 0, idx_last = 0;
1105
Matt Mowera8a89d12016-12-30 18:10:37 -06001106 while (idx < str.size())
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001107 {
1108 idx = str.find_first_of(delimiter, idx_last);
Matt Mowera8a89d12016-12-30 18:10:37 -06001109 if (idx == std::string::npos)
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001110 idx = str.size();
1111
Matt Mowera8a89d12016-12-30 18:10:37 -06001112 if (idx-idx_last != 0 || !removeEmpty)
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001113 res.push_back(str.substr(idx_last, idx-idx_last));
1114
1115 idx_last = idx + delimiter.size();
1116 }
1117
1118 return res;
1119}
1120
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001121bool TWFunc::Create_Dir_Recursive(const std::string& path, mode_t mode, uid_t uid, gid_t gid)
1122{
1123 std::vector<std::string> parts = Split_String(path, "/");
1124 std::string cur_path;
1125 struct stat info;
Matt Mowera8a89d12016-12-30 18:10:37 -06001126 for (size_t i = 0; i < parts.size(); ++i)
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001127 {
1128 cur_path += "/" + parts[i];
Matt Mowera8a89d12016-12-30 18:10:37 -06001129 if (stat(cur_path.c_str(), &info) < 0 || !S_ISDIR(info.st_mode))
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001130 {
Matt Mowera8a89d12016-12-30 18:10:37 -06001131 if (mkdir(cur_path.c_str(), mode) < 0)
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001132 return false;
1133 chown(cur_path.c_str(), uid, gid);
1134 }
1135 }
1136 return true;
1137}
1138
xNUTxe85f02d2014-07-18 01:30:58 +02001139int TWFunc::Set_Brightness(std::string brightness_value)
1140{
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001141 int result = -1;
1142 std::string secondary_brightness_file;
xNUTxe85f02d2014-07-18 01:30:58 +02001143
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001144 if (DataManager::GetIntValue("tw_has_brightnesss_file")) {
xNUTxe85f02d2014-07-18 01:30:58 +02001145 LOGINFO("TWFunc::Set_Brightness: Setting brightness control to %s\n", brightness_value.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001146 result = TWFunc::write_to_file(DataManager::GetStrValue("tw_brightness_file"), brightness_value);
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001147 DataManager::GetValue("tw_secondary_brightness_file", secondary_brightness_file);
1148 if (!secondary_brightness_file.empty()) {
1149 LOGINFO("TWFunc::Set_Brightness: Setting secondary brightness control to %s\n", brightness_value.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001150 TWFunc::write_to_file(secondary_brightness_file, brightness_value);
xNUTxe85f02d2014-07-18 01:30:58 +02001151 }
xNUTxe85f02d2014-07-18 01:30:58 +02001152 }
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001153 return result;
xNUTxe85f02d2014-07-18 01:30:58 +02001154}
1155
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001156bool TWFunc::Toggle_MTP(bool enable) {
1157#ifdef TW_HAS_MTP
1158 static int was_enabled = false;
1159
1160 if (enable && was_enabled) {
1161 if (!PartitionManager.Enable_MTP())
1162 PartitionManager.Disable_MTP();
1163 } else {
1164 was_enabled = DataManager::GetIntValue("tw_mtp_enabled");
1165 PartitionManager.Disable_MTP();
1166 usleep(500);
1167 }
1168 return was_enabled;
1169#else
1170 return false;
1171#endif
1172}
1173
Tom Hite5a926722014-09-15 01:31:03 +00001174void TWFunc::SetPerformanceMode(bool mode) {
1175 if (mode) {
1176 property_set("recovery.perf.mode", "1");
1177 } else {
1178 property_set("recovery.perf.mode", "0");
1179 }
1180 // Some time for events to catch up to init handlers
1181 usleep(500000);
1182}
1183
Jenkins1710bf22014-10-02 20:22:21 -04001184std::string TWFunc::to_string(unsigned long value) {
1185 std::ostringstream os;
1186 os << value;
1187 return os.str();
1188}
1189
Ethan Yonker9132d912015-02-02 10:32:49 -06001190void TWFunc::Disable_Stock_Recovery_Replace(void) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001191 if (PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), false)) {
Ethan Yonker9132d912015-02-02 10:32:49 -06001192 // Disable flashing of stock recovery
1193 if (TWFunc::Path_Exists("/system/recovery-from-boot.p")) {
1194 rename("/system/recovery-from-boot.p", "/system/recovery-from-boot.bak");
Ethan Yonker74db1572015-10-28 12:44:49 -05001195 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 -06001196 sync();
1197 }
Captain Throwback9d6feb52018-07-27 10:05:24 -04001198 PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false);
Ethan Yonker9132d912015-02-02 10:32:49 -06001199 }
1200}
1201
Ethan Yonker483e9f42016-01-11 22:21:18 -06001202unsigned long long TWFunc::IOCTL_Get_Block_Size(const char* block_device) {
1203 unsigned long block_device_size;
1204 int ret = 0;
1205
1206 int fd = open(block_device, O_RDONLY);
1207 if (fd < 0) {
1208 LOGINFO("Find_Partition_Size: Failed to open '%s', (%s)\n", block_device, strerror(errno));
1209 } else {
1210 ret = ioctl(fd, BLKGETSIZE, &block_device_size);
1211 close(fd);
1212 if (ret) {
1213 LOGINFO("Find_Partition_Size: ioctl error: (%s)\n", strerror(errno));
1214 } else {
1215 return (unsigned long long)(block_device_size) * 512LLU;
1216 }
1217 }
1218 return 0;
1219}
1220
bigbiff bigbiffbad332a2016-07-29 21:18:13 -04001221void TWFunc::copy_kernel_log(string curr_storage) {
1222 std::string dmesgDst = curr_storage + "/dmesg.log";
1223 std::string dmesgCmd = "/sbin/dmesg";
1224
1225 std::string result;
1226 Exec_Cmd(dmesgCmd, result);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001227 write_to_file(dmesgDst, result);
bigbiff bigbiffbad332a2016-07-29 21:18:13 -04001228 gui_msg(Msg("copy_kernel_log=Copied kernel log to {1}")(dmesgDst));
1229 tw_set_default_metadata(dmesgDst.c_str());
1230}
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001231
1232bool TWFunc::isNumber(string strtocheck) {
1233 int num = 0;
1234 std::istringstream iss(strtocheck);
1235
1236 if (!(iss >> num).fail())
1237 return true;
1238 else
1239 return false;
1240}
1241
1242int TWFunc::stream_adb_backup(string &Restore_Name) {
1243 string cmd = "/sbin/bu --twrp stream " + Restore_Name;
1244 LOGINFO("stream_adb_backup: %s\n", cmd.c_str());
1245 int ret = TWFunc::Exec_Cmd(cmd);
1246 if (ret != 0)
1247 return -1;
1248 return ret;
1249}
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001250
1251std::string TWFunc::get_cache_dir() {
1252 if (PartitionManager.Find_Partition_By_Path(NON_AB_CACHE_DIR) == NULL) {
SyberHexena8951182019-10-29 18:08:16 -07001253 if (PartitionManager.Find_Partition_By_Path(AB_CACHE_DIR) == NULL) {
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04001254 if (PartitionManager.Find_Partition_By_Path(PERSIST_CACHE_DIR) == NULL) {
1255 LOGINFO("Unable to find a directory to store TWRP logs.");
1256 return "";
1257 }
1258 return PERSIST_CACHE_DIR;
1259 } else {
1260 return AB_CACHE_DIR;
1261 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001262 }
1263 else {
1264 return NON_AB_CACHE_DIR;
1265 }
1266}
1267
1268void TWFunc::check_selinux_support() {
1269 if (TWFunc::Path_Exists("/prebuilt_file_contexts")) {
1270 if (TWFunc::Path_Exists("/file_contexts")) {
1271 printf("Renaming regular /file_contexts -> /file_contexts.bak\n");
1272 rename("/file_contexts", "/file_contexts.bak");
1273 }
1274 printf("Moving /prebuilt_file_contexts -> /file_contexts\n");
1275 rename("/prebuilt_file_contexts", "/file_contexts");
1276 }
1277 struct selinux_opt selinux_options[] = {
1278 { SELABEL_OPT_PATH, "/file_contexts" }
1279 };
1280 selinux_handle = selabel_open(SELABEL_CTX_FILE, selinux_options, 1);
1281 if (!selinux_handle)
1282 printf("No file contexts for SELinux\n");
1283 else
1284 printf("SELinux contexts loaded from /file_contexts\n");
1285 { // Check to ensure SELinux can be supported by the kernel
1286 char *contexts = NULL;
1287 std::string cacheDir = TWFunc::get_cache_dir();
1288 std::string se_context_check = cacheDir + "recovery/";
1289 int ret = 0;
1290
1291 if (cacheDir == NON_AB_CACHE_DIR) {
1292 PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false);
1293 }
1294 if (TWFunc::Path_Exists(se_context_check)) {
1295 ret = lgetfilecon(se_context_check.c_str(), &contexts);
Makornthawat Emeryabc299c2019-03-29 13:45:22 +00001296 if (ret < 0) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001297 LOGINFO("Could not check %s SELinux contexts, using /sbin/teamwin instead which may be inaccurate.\n", se_context_check.c_str());
1298 lgetfilecon("/sbin/teamwin", &contexts);
1299 }
1300 }
1301 if (ret < 0) {
1302 gui_warn("no_kernel_selinux=Kernel does not have support for reading SELinux contexts.");
1303 } else {
1304 free(contexts);
1305 gui_msg("full_selinux=Full SELinux support is present.");
1306 }
1307 }
1308}
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001309
1310bool TWFunc::Is_TWRP_App_In_System() {
1311 if (PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), false)) {
1312 string base_path = PartitionManager.Get_Android_Root_Path();
1313 if (TWFunc::Path_Exists(PartitionManager.Get_Android_Root_Path() + "/system"))
1314 base_path += "/system"; // For devices with system as a root file system (e.g. Pixel)
1315 string install_path = base_path + "/priv-app";
1316 if (!TWFunc::Path_Exists(install_path))
1317 install_path = base_path + "/app";
1318 install_path += "/twrpapp";
1319 if (TWFunc::Path_Exists(install_path)) {
1320 LOGINFO("App found at '%s'\n", install_path.c_str());
1321 DataManager::SetValue("tw_app_installed_in_system", 1);
1322 return true;
1323 }
1324 }
1325 DataManager::SetValue("tw_app_installed_in_system", 0);
bigbiff07f991a2020-03-11 19:24:18 -04001326 PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001327 return false;
1328}
Chaosmaster461e39f2020-02-07 01:48:13 +01001329
1330int TWFunc::Property_Override(string Prop_Name, string Prop_Value) {
1331#ifdef TW_INCLUDE_LIBRESETPROP
1332 return setprop(Prop_Name.c_str(), Prop_Value.c_str(), false);
1333#else
1334 return -2;
1335#endif
1336}
1337
bigbiffa2bd7b72020-05-07 21:45:34 -04001338bool TWFunc::Get_Encryption_Policy(ext4_encryption_policy &policy, std::string path) {
bigbifff62d2492020-05-20 10:15:34 -04001339#ifdef TW_INCLUDE_FBE
bigbiffa2bd7b72020-05-07 21:45:34 -04001340 if (!TWFunc::Path_Exists(path)) {
1341 LOGERR("Unable to find %s to get policy\n", path.c_str());
1342 return false;
1343 }
1344 if (!e4crypt_policy_get_struct(path.c_str(), &policy)) {
1345 LOGERR("No policy set for path %s\n", path.c_str());
1346 return false;
1347 }
bigbifff62d2492020-05-20 10:15:34 -04001348#endif
bigbiffa2bd7b72020-05-07 21:45:34 -04001349 return true;
1350}
1351
1352bool TWFunc::Set_Encryption_Policy(std::string path, const ext4_encryption_policy &policy) {
bigbifff62d2492020-05-20 10:15:34 -04001353#ifdef TW_INCLUDE_FBE
bigbiffa2bd7b72020-05-07 21:45:34 -04001354 if (!TWFunc::Path_Exists(path)) {
1355 LOGERR("unable to find %s to set policy\n", path.c_str());
1356 return false;
1357 }
1358 char binary_policy[EXT4_KEY_DESCRIPTOR_SIZE];
1359 char policy_hex[EXT4_KEY_DESCRIPTOR_SIZE_HEX];
1360 policy_to_hex(binary_policy, policy_hex);
1361 if (!e4crypt_policy_set_struct(path.c_str(), &policy)) {
1362 LOGERR("unable to set policy for path: %s\n", path.c_str());
1363 return false;
1364 }
bigbifff62d2492020-05-20 10:15:34 -04001365#endif
bigbiffa2bd7b72020-05-07 21:45:34 -04001366 return true;
1367}
1368
1369bool TWFunc::Is_Data_Wiped(std::string path) {
bigbifff62d2492020-05-20 10:15:34 -04001370#ifdef TW_INCLUDE_FBE
bigbiffa2bd7b72020-05-07 21:45:34 -04001371 DIR* d = opendir(path.c_str());
1372 size_t file_count = 0;
1373 if (d != NULL) {
1374 struct dirent* de;
1375 while ((de = readdir(d)) != NULL) {
1376 LOGINFO("file: %s\n", de->d_name);
1377 if (strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0)
1378 continue;
1379 if (strncmp(de->d_name, "lost+found", 10) == 0 || strncmp(de->d_name, "media", 5) == 0)
1380 continue;
1381 file_count++;
1382
1383 }
1384 closedir(d);
1385 }
1386 LOGINFO("file_count: %zu\n", file_count);
1387 return file_count == 0;
bigbifff62d2492020-05-20 10:15:34 -04001388#else
1389 return true;
1390#endif
bigbiffa2bd7b72020-05-07 21:45:34 -04001391}
Ethan Yonkeraf2897c2014-02-10 13:07:14 -06001392#endif // ndef BUILD_TWRPTAR_MAIN