blob: 97387b765ab087e8b9b7957914a4cbb844ead7c4 [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();
643 Update_Log_File();
Dees_Troya58bead2012-09-27 09:49:29 -0400644 // Always force a sync before we reboot
Dees_Troy6ef66352013-02-21 08:26:57 -0600645 sync();
Dees_Troya58bead2012-09-27 09:49:29 -0400646
Dees_Troy2673cec2013-04-02 20:22:16 +0000647 switch (command) {
648 case rb_current:
649 case rb_system:
Dees_Troy2673cec2013-04-02 20:22:16 +0000650 Update_Intent_File("s");
651 sync();
652 check_and_run_script("/sbin/rebootsystem.sh", "reboot system");
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500653#ifdef ANDROID_RB_PROPERTY
654 return property_set(ANDROID_RB_PROPERTY, "reboot,");
655#elif defined(ANDROID_RB_RESTART)
656 return android_reboot(ANDROID_RB_RESTART, 0, 0);
657#else
Dees_Troy2673cec2013-04-02 20:22:16 +0000658 return reboot(RB_AUTOBOOT);
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500659#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000660 case rb_recovery:
661 check_and_run_script("/sbin/rebootrecovery.sh", "reboot recovery");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600662#ifdef ANDROID_RB_PROPERTY
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500663 return property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600664#else
665 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "recovery");
666#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000667 case rb_bootloader:
668 check_and_run_script("/sbin/rebootbootloader.sh", "reboot bootloader");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600669#ifdef ANDROID_RB_PROPERTY
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500670 return property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600671#else
672 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "bootloader");
673#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000674 case rb_poweroff:
675 check_and_run_script("/sbin/poweroff.sh", "power off");
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500676#ifdef ANDROID_RB_PROPERTY
677 return property_set(ANDROID_RB_PROPERTY, "shutdown,");
678#elif defined(ANDROID_RB_POWEROFF)
679 return android_reboot(ANDROID_RB_POWEROFF, 0, 0);
680#else
Dees_Troy2673cec2013-04-02 20:22:16 +0000681 return reboot(RB_POWER_OFF);
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500682#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000683 case rb_download:
684 check_and_run_script("/sbin/rebootdownload.sh", "reboot download");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600685#ifdef ANDROID_RB_PROPERTY
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500686 return property_set(ANDROID_RB_PROPERTY, "reboot,download");
Ethan Yonker75bf0412014-11-21 13:54:27 -0600687#else
688 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "download");
689#endif
mauronofrioe9a49ef2018-10-03 13:38:16 +0200690 case rb_edl:
691 check_and_run_script("/sbin/rebootedl.sh", "reboot edl");
692#ifdef ANDROID_RB_PROPERTY
693 return property_set(ANDROID_RB_PROPERTY, "reboot,edl");
694#else
695 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "edl");
696#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000697 default:
698 return -1;
Dees_Troy6ef66352013-02-21 08:26:57 -0600699 }
700 return -1;
Dees_Troya58bead2012-09-27 09:49:29 -0400701}
702
703void TWFunc::check_and_run_script(const char* script_file, const char* display_name)
704{
705 // Check for and run startup script if script exists
706 struct stat st;
707 if (stat(script_file, &st) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500708 gui_msg(Msg("run_script=Running {1} script...")(display_name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500709 chmod(script_file, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
Vojtech Bocek05534202013-09-11 08:11:56 +0200710 TWFunc::Exec_Cmd(script_file);
Ethan Yonker74db1572015-10-28 12:44:49 -0500711 gui_msg("done=Done.");
Dees_Troya58bead2012-09-27 09:49:29 -0400712 }
Dees_Troy3477d712012-09-27 15:44:01 -0400713}
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500714
715int TWFunc::removeDir(const string path, bool skipParent) {
Dees_Troyce675462013-01-09 19:48:21 +0000716 DIR *d = opendir(path.c_str());
717 int r = 0;
718 string new_path;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500719
Dees_Troyce675462013-01-09 19:48:21 +0000720 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500721 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(path)(strerror(errno)));
Dees_Troyce675462013-01-09 19:48:21 +0000722 return -1;
723 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500724
Dees_Troyce675462013-01-09 19:48:21 +0000725 if (d) {
726 struct dirent *p;
727 while (!r && (p = readdir(d))) {
Dees_Troyce675462013-01-09 19:48:21 +0000728 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
729 continue;
730 new_path = path + "/";
731 new_path.append(p->d_name);
732 if (p->d_type == DT_DIR) {
733 r = removeDir(new_path, true);
734 if (!r) {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500735 if (p->d_type == DT_DIR)
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500736 r = rmdir(new_path.c_str());
737 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000738 LOGINFO("Unable to removeDir '%s': %s\n", new_path.c_str(), strerror(errno));
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500739 }
bigbiff bigbiff98f1f902013-01-19 18:46:13 -0500740 } 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 +0000741 r = unlink(new_path.c_str());
Dees_Troye34c1332013-02-06 19:13:00 +0000742 if (r != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000743 LOGINFO("Unable to unlink '%s: %s'\n", new_path.c_str(), strerror(errno));
Dees_Troye34c1332013-02-06 19:13:00 +0000744 }
Dees_Troyce675462013-01-09 19:48:21 +0000745 }
746 }
747 closedir(d);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500748
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500749 if (!r) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500750 if (skipParent)
751 return 0;
752 else
753 r = rmdir(path.c_str());
754 }
Dees_Troyce675462013-01-09 19:48:21 +0000755 }
756 return r;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500757}
758
759int TWFunc::copy_file(string src, string dst, int mode) {
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400760 PartitionManager.Mount_By_Path(src, false);
761 PartitionManager.Mount_By_Path(dst, false);
762 if (!Path_Exists(src)) {
763 LOGINFO("Unable to find source file %s\n", src.c_str());
764 return -1;
765 }
bigbiffd3317052019-12-22 16:05:12 -0500766 std::ifstream srcfile(src.c_str(), ios::binary);
767 std::ofstream dstfile(dst.c_str(), ios::binary);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500768 dstfile << srcfile.rdbuf();
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400769 if (!dstfile.bad()) {
770 LOGINFO("Copied file %s to %s\n", src.c_str(), dst.c_str());
771 }
772 else {
773 LOGINFO("Unable to copy file %s to %s\n", src.c_str(), dst.c_str());
774 return -1;
775 }
776
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500777 srcfile.close();
778 dstfile.close();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500779 if (chmod(dst.c_str(), mode) != 0)
780 return -1;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500781 return 0;
782}
Dees_Troy3ee47bc2013-01-25 21:47:37 +0000783
784unsigned int TWFunc::Get_D_Type_From_Stat(string Path) {
785 struct stat st;
786
787 stat(Path.c_str(), &st);
788 if (st.st_mode & S_IFDIR)
789 return DT_DIR;
790 else if (st.st_mode & S_IFBLK)
791 return DT_BLK;
792 else if (st.st_mode & S_IFCHR)
793 return DT_CHR;
794 else if (st.st_mode & S_IFIFO)
795 return DT_FIFO;
796 else if (st.st_mode & S_IFLNK)
797 return DT_LNK;
798 else if (st.st_mode & S_IFREG)
799 return DT_REG;
800 else if (st.st_mode & S_IFSOCK)
801 return DT_SOCK;
802 return DT_UNKNOWN;
Dees_Troye34c1332013-02-06 19:13:00 +0000803}
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500804
805int TWFunc::read_file(string fn, string& results) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200806 ifstream file;
807 file.open(fn.c_str(), ios::in);
808
809 if (file.is_open()) {
810 file >> results;
811 file.close();
812 return 0;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500813 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200814
815 LOGINFO("Cannot find file %s\n", fn.c_str());
816 return -1;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500817}
818
819int TWFunc::read_file(string fn, vector<string>& results) {
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500820 ifstream file;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500821 string line;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500822 file.open(fn.c_str(), ios::in);
823 if (file.is_open()) {
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500824 while (getline(file, line))
825 results.push_back(line);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500826 file.close();
827 return 0;
828 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000829 LOGINFO("Cannot find file %s\n", fn.c_str());
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500830 return -1;
831}
832
xNUTxe85f02d2014-07-18 01:30:58 +0200833int TWFunc::read_file(string fn, uint64_t& results) {
834 ifstream file;
835 file.open(fn.c_str(), ios::in);
836
837 if (file.is_open()) {
838 file >> results;
839 file.close();
840 return 0;
841 }
842
843 LOGINFO("Cannot find file %s\n", fn.c_str());
844 return -1;
845}
846
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600847int TWFunc::write_to_file(const string& fn, const string& line) {
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500848 FILE *file;
849 file = fopen(fn.c_str(), "w");
850 if (file != NULL) {
851 fwrite(line.c_str(), line.size(), 1, file);
852 fclose(file);
853 return 0;
854 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000855 LOGINFO("Cannot find file %s\n", fn.c_str());
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500856 return -1;
857}
858
Dees_Troy83bd4832013-05-04 12:39:56 +0000859bool TWFunc::Try_Decrypting_Backup(string Restore_Path, string Password) {
860 DIR* d;
861
862 string Filename;
863 Restore_Path += "/";
864 d = opendir(Restore_Path.c_str());
865 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500866 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Path)(strerror(errno)));
Dees_Troy83bd4832013-05-04 12:39:56 +0000867 return false;
868 }
869
870 struct dirent* de;
871 while ((de = readdir(d)) != NULL) {
872 Filename = Restore_Path;
873 Filename += de->d_name;
bigbiffce8f83c2015-12-12 18:30:21 -0500874 if (TWFunc::Get_File_Type(Filename) == ENCRYPTED) {
Dees_Troy83bd4832013-05-04 12:39:56 +0000875 if (TWFunc::Try_Decrypting_File(Filename, Password) < 2) {
876 DataManager::SetValue("tw_restore_password", ""); // Clear the bad password
877 DataManager::SetValue("tw_restore_display", ""); // Also clear the display mask
878 closedir(d);
879 return false;
880 }
881 }
882 }
883 closedir(d);
884 return true;
885}
886
Dees Troyb21cc642013-09-10 17:36:41 +0000887string TWFunc::Get_Current_Date() {
888 string Current_Date;
889 time_t seconds = time(0);
890 struct tm *t = localtime(&seconds);
891 char timestamp[255];
892 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);
893 Current_Date = timestamp;
894 return Current_Date;
895}
896
Ethan Yonkerb5557892014-02-07 21:43:20 -0600897string TWFunc::System_Property_Get(string Prop_Name) {
Chaosmaster65633a42020-02-05 15:24:09 +0100898 return System_Property_Get(Prop_Name, PartitionManager, PartitionManager.Get_Android_Root_Path());
899}
900
901string TWFunc::System_Property_Get(string Prop_Name, TWPartitionManager &PartitionManager, string Mount_Point) {
902 bool mount_state = PartitionManager.Is_Mounted_By_Path(Mount_Point);
Dees Troyb21cc642013-09-10 17:36:41 +0000903 std::vector<string> buildprop;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600904 string propvalue;
Chaosmaster65633a42020-02-05 15:24:09 +0100905 if (!PartitionManager.Mount_By_Path(Mount_Point, true))
Ethan Yonkerb5557892014-02-07 21:43:20 -0600906 return propvalue;
Chaosmaster65633a42020-02-05 15:24:09 +0100907 string prop_file = Mount_Point + "/build.prop";
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600908 if (!TWFunc::Path_Exists(prop_file))
Chaosmaster65633a42020-02-05 15:24:09 +0100909 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 -0600910 if (TWFunc::read_file(prop_file, buildprop) != 0) {
Captain Throwback9d6feb52018-07-27 10:05:24 -0400911 LOGINFO("Unable to open build.prop for getting '%s'.\n", Prop_Name.c_str());
Vojtech Boceka2e70162013-09-17 17:05:10 +0200912 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
Dees Troyb21cc642013-09-10 17:36:41 +0000913 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100914 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600915 return propvalue;
Dees Troyb21cc642013-09-10 17:36:41 +0000916 }
917 int line_count = buildprop.size();
918 int index;
919 size_t start_pos = 0, end_pos;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600920 string propname;
Dees Troyb21cc642013-09-10 17:36:41 +0000921 for (index = 0; index < line_count; index++) {
922 end_pos = buildprop.at(index).find("=", start_pos);
923 propname = buildprop.at(index).substr(start_pos, end_pos);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600924 if (propname == Prop_Name) {
Dees Troyb21cc642013-09-10 17:36:41 +0000925 propvalue = buildprop.at(index).substr(end_pos + 1, buildprop.at(index).size());
Ethan Yonkerb5557892014-02-07 21:43:20 -0600926 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100927 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600928 return propvalue;
Dees Troyb21cc642013-09-10 17:36:41 +0000929 }
930 }
Dees Troyb21cc642013-09-10 17:36:41 +0000931 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100932 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600933 return propvalue;
934}
935
936void TWFunc::Auto_Generate_Backup_Name() {
937 string propvalue = System_Property_Get("ro.build.display.id");
938 if (propvalue.empty()) {
939 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
940 return;
941 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400942 else {
943 //remove periods from build display so it doesn't confuse the extension code
944 propvalue.erase(remove(propvalue.begin(), propvalue.end(), '.'), propvalue.end());
945 }
Ethan Yonkerb5557892014-02-07 21:43:20 -0600946 string Backup_Name = Get_Current_Date();
bigbiff74a6d0d2015-02-14 20:49:44 -0500947 Backup_Name += "_" + propvalue;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600948 if (Backup_Name.size() > MAX_BACKUP_NAME_LEN)
949 Backup_Name.resize(MAX_BACKUP_NAME_LEN);
950 // Trailing spaces cause problems on some file systems, so remove them
951 string space_check, space = " ";
952 space_check = Backup_Name.substr(Backup_Name.size() - 1, 1);
953 while (space_check == space) {
954 Backup_Name.resize(Backup_Name.size() - 1);
955 space_check = Backup_Name.substr(Backup_Name.size() - 1, 1);
956 }
bigbiff74a6d0d2015-02-14 20:49:44 -0500957 replace(Backup_Name.begin(), Backup_Name.end(), ' ', '_');
Ethan Yonker53796e72019-01-11 22:49:52 -0600958 if (PartitionManager.Check_Backup_Name(Backup_Name, false, true) != 0) {
959 LOGINFO("Auto generated backup name '%s' is not valid, using date instead.\n", Backup_Name.c_str());
Ethan Yonker92d48e02014-02-26 12:05:55 -0600960 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
Ethan Yonker53796e72019-01-11 22:49:52 -0600961 } else {
962 DataManager::SetValue(TW_BACKUP_NAME, Backup_Name);
Ethan Yonker92d48e02014-02-26 12:05:55 -0600963 }
Vojtech Bocek05534202013-09-11 08:11:56 +0200964}
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100965
nkk7198fc3992017-12-16 16:26:42 +0200966void TWFunc::Fixup_Time_On_Boot(const string& time_paths /* = "" */)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100967{
968#ifdef QCOM_RTC_FIX
nkk7198fc3992017-12-16 16:26:42 +0200969 static bool fixed = false;
970 if (fixed)
971 return;
xNUTxe85f02d2014-07-18 01:30:58 +0200972
973 LOGINFO("TWFunc::Fixup_Time: Pre-fix date and time: %s\n", TWFunc::Get_Current_Date().c_str());
974
975 struct timeval tv;
976 uint64_t offset = 0;
977 std::string sepoch = "/sys/class/rtc/rtc0/since_epoch";
978
979 if (TWFunc::read_file(sepoch, offset) == 0) {
980
981 LOGINFO("TWFunc::Fixup_Time: Setting time offset from file %s\n", sepoch.c_str());
982
983 tv.tv_sec = offset;
984 tv.tv_usec = 0;
985 settimeofday(&tv, NULL);
986
987 gettimeofday(&tv, NULL);
988
Phoenix59146b05f22018-02-03 06:41:08 +0000989 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 +0200990
991 LOGINFO("TWFunc::Fixup_Time: Date and time corrected: %s\n", TWFunc::Get_Current_Date().c_str());
nkk7198fc3992017-12-16 16:26:42 +0200992 fixed = true;
xNUTxe85f02d2014-07-18 01:30:58 +0200993 return;
994
995 }
996
997 } else {
998
999 LOGINFO("TWFunc::Fixup_Time: opening %s failed\n", sepoch.c_str());
1000
1001 }
1002
Ethan Yonker9132d912015-02-02 10:32:49 -06001003 LOGINFO("TWFunc::Fixup_Time: will attempt to use the ats files now.\n");
xNUTxe85f02d2014-07-18 01:30:58 +02001004
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001005 // Devices with Qualcomm Snapdragon 800 do some shenanigans with RTC.
1006 // They never set it, it just ticks forward from 1970-01-01 00:00,
1007 // and then they have files /data/system/time/ats_* with 64bit offset
1008 // in miliseconds which, when added to the RTC, gives the correct time.
1009 // So, the time is: (offset_from_ats + value_from_RTC)
1010 // There are multiple ats files, they are for different systems? Bases?
1011 // Like, ats_1 is for modem and ats_2 is for TOD (time of day?).
1012 // Look at file time_genoff.h in CodeAurora, qcom-opensource/time-services
1013
nkk7198fc3992017-12-16 16:26:42 +02001014 std::vector<std::string> paths; // space separated list of paths
1015 if (time_paths.empty()) {
Mauronofrio Matarrese2dab70d2019-03-05 02:22:26 +01001016 paths = Split_String("/data/system/time/ /data/time/ /data/vendor/time/", " ");
nkk7198fc3992017-12-16 16:26:42 +02001017 if (!PartitionManager.Mount_By_Path("/data", false))
1018 return;
1019 } else {
1020 // When specific path(s) are used, Fixup_Time needs those
1021 // partitions to already be mounted!
1022 paths = Split_String(time_paths, " ");
1023 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001024
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001025 FILE *f;
xNUTxe85f02d2014-07-18 01:30:58 +02001026 offset = 0;
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001027 struct dirent *dt;
1028 std::string ats_path;
1029
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001030 // Prefer ats_2, it seems to be the one we want according to logcat on hammerhead
1031 // - it is the one for ATS_TOD (time of day?).
1032 // However, I never saw a device where the offset differs between ats files.
nkk7198fc3992017-12-16 16:26:42 +02001033 for (size_t i = 0; i < paths.size(); ++i)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001034 {
nkk7198fc3992017-12-16 16:26:42 +02001035 DIR *d = opendir(paths[i].c_str());
Matt Mowera8a89d12016-12-30 18:10:37 -06001036 if (!d)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001037 continue;
1038
Matt Mowera8a89d12016-12-30 18:10:37 -06001039 while ((dt = readdir(d)))
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001040 {
Matt Mowera8a89d12016-12-30 18:10:37 -06001041 if (dt->d_type != DT_REG || strncmp(dt->d_name, "ats_", 4) != 0)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001042 continue;
1043
Matt Mowera8a89d12016-12-30 18:10:37 -06001044 if (ats_path.empty() || strcmp(dt->d_name, "ats_2") == 0)
nkk7198fc3992017-12-16 16:26:42 +02001045 ats_path = paths[i] + dt->d_name;
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001046 }
1047
1048 closedir(d);
1049 }
1050
nkk7198fc3992017-12-16 16:26:42 +02001051 if (ats_path.empty()) {
xNUTxe85f02d2014-07-18 01:30:58 +02001052 LOGINFO("TWFunc::Fixup_Time: no ats files found, leaving untouched!\n");
nkk7198fc3992017-12-16 16:26:42 +02001053 } else if ((f = fopen(ats_path.c_str(), "r")) == NULL) {
Dees Troy3e254b92014-03-06 20:24:54 +00001054 LOGINFO("TWFunc::Fixup_Time: failed to open file %s\n", ats_path.c_str());
nkk7198fc3992017-12-16 16:26:42 +02001055 } else if (fread(&offset, sizeof(offset), 1, f) != 1) {
Dees Troy3e254b92014-03-06 20:24:54 +00001056 LOGINFO("TWFunc::Fixup_Time: failed load uint64 from file %s\n", ats_path.c_str());
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001057 fclose(f);
nkk7198fc3992017-12-16 16:26:42 +02001058 } else {
1059 fclose(f);
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001060
nkk7198fc3992017-12-16 16:26:42 +02001061 LOGINFO("TWFunc::Fixup_Time: Setting time offset from file %s, offset %llu\n", ats_path.c_str(), (unsigned long long) offset);
1062 DataManager::SetValue("tw_qcom_ats_offset", (unsigned long long) offset, 1);
1063 fixed = true;
1064 }
1065
1066 if (!fixed) {
1067 // Failed to get offset from ats file, check twrp settings
1068 unsigned long long value;
1069 if (DataManager::GetValue("tw_qcom_ats_offset", value) < 0) {
1070 return;
1071 } else {
1072 offset = (uint64_t) value;
1073 LOGINFO("TWFunc::Fixup_Time: Setting time offset from twrp setting file, offset %llu\n", (unsigned long long) offset);
1074 // Do not consider the settings file as a definitive answer, keep fixed=false so next run will try ats files again
1075 }
1076 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001077
1078 gettimeofday(&tv, NULL);
1079
1080 tv.tv_sec += offset/1000;
Phoenix591e444d112018-02-03 07:23:54 +00001081#ifdef TW_CLOCK_OFFSET
1082// Some devices are even quirkier and have ats files that are offset from the actual time
1083 tv.tv_sec = tv.tv_sec + TW_CLOCK_OFFSET;
1084#endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001085 tv.tv_usec += (offset%1000)*1000;
1086
Matt Mowera8a89d12016-12-30 18:10:37 -06001087 while (tv.tv_usec >= 1000000)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001088 {
1089 ++tv.tv_sec;
1090 tv.tv_usec -= 1000000;
1091 }
1092
1093 settimeofday(&tv, NULL);
xNUTxe85f02d2014-07-18 01:30:58 +02001094
1095 LOGINFO("TWFunc::Fixup_Time: Date and time corrected: %s\n", TWFunc::Get_Current_Date().c_str());
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001096#endif
1097}
Ethan Yonkeraf2897c2014-02-10 13:07:14 -06001098
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001099std::vector<std::string> TWFunc::Split_String(const std::string& str, const std::string& delimiter, bool removeEmpty)
1100{
1101 std::vector<std::string> res;
1102 size_t idx = 0, idx_last = 0;
1103
Matt Mowera8a89d12016-12-30 18:10:37 -06001104 while (idx < str.size())
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001105 {
1106 idx = str.find_first_of(delimiter, idx_last);
Matt Mowera8a89d12016-12-30 18:10:37 -06001107 if (idx == std::string::npos)
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001108 idx = str.size();
1109
Matt Mowera8a89d12016-12-30 18:10:37 -06001110 if (idx-idx_last != 0 || !removeEmpty)
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001111 res.push_back(str.substr(idx_last, idx-idx_last));
1112
1113 idx_last = idx + delimiter.size();
1114 }
1115
1116 return res;
1117}
1118
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001119bool TWFunc::Create_Dir_Recursive(const std::string& path, mode_t mode, uid_t uid, gid_t gid)
1120{
1121 std::vector<std::string> parts = Split_String(path, "/");
1122 std::string cur_path;
1123 struct stat info;
Matt Mowera8a89d12016-12-30 18:10:37 -06001124 for (size_t i = 0; i < parts.size(); ++i)
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001125 {
1126 cur_path += "/" + parts[i];
Matt Mowera8a89d12016-12-30 18:10:37 -06001127 if (stat(cur_path.c_str(), &info) < 0 || !S_ISDIR(info.st_mode))
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001128 {
Matt Mowera8a89d12016-12-30 18:10:37 -06001129 if (mkdir(cur_path.c_str(), mode) < 0)
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001130 return false;
1131 chown(cur_path.c_str(), uid, gid);
1132 }
1133 }
1134 return true;
1135}
1136
xNUTxe85f02d2014-07-18 01:30:58 +02001137int TWFunc::Set_Brightness(std::string brightness_value)
1138{
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001139 int result = -1;
1140 std::string secondary_brightness_file;
xNUTxe85f02d2014-07-18 01:30:58 +02001141
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001142 if (DataManager::GetIntValue("tw_has_brightnesss_file")) {
xNUTxe85f02d2014-07-18 01:30:58 +02001143 LOGINFO("TWFunc::Set_Brightness: Setting brightness control to %s\n", brightness_value.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001144 result = TWFunc::write_to_file(DataManager::GetStrValue("tw_brightness_file"), brightness_value);
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001145 DataManager::GetValue("tw_secondary_brightness_file", secondary_brightness_file);
1146 if (!secondary_brightness_file.empty()) {
1147 LOGINFO("TWFunc::Set_Brightness: Setting secondary brightness control to %s\n", brightness_value.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001148 TWFunc::write_to_file(secondary_brightness_file, brightness_value);
xNUTxe85f02d2014-07-18 01:30:58 +02001149 }
xNUTxe85f02d2014-07-18 01:30:58 +02001150 }
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001151 return result;
xNUTxe85f02d2014-07-18 01:30:58 +02001152}
1153
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001154bool TWFunc::Toggle_MTP(bool enable) {
1155#ifdef TW_HAS_MTP
1156 static int was_enabled = false;
1157
1158 if (enable && was_enabled) {
1159 if (!PartitionManager.Enable_MTP())
1160 PartitionManager.Disable_MTP();
1161 } else {
1162 was_enabled = DataManager::GetIntValue("tw_mtp_enabled");
1163 PartitionManager.Disable_MTP();
1164 usleep(500);
1165 }
1166 return was_enabled;
1167#else
1168 return false;
1169#endif
1170}
1171
Tom Hite5a926722014-09-15 01:31:03 +00001172void TWFunc::SetPerformanceMode(bool mode) {
1173 if (mode) {
1174 property_set("recovery.perf.mode", "1");
1175 } else {
1176 property_set("recovery.perf.mode", "0");
1177 }
1178 // Some time for events to catch up to init handlers
1179 usleep(500000);
1180}
1181
Jenkins1710bf22014-10-02 20:22:21 -04001182std::string TWFunc::to_string(unsigned long value) {
1183 std::ostringstream os;
1184 os << value;
1185 return os.str();
1186}
1187
Ethan Yonker9132d912015-02-02 10:32:49 -06001188void TWFunc::Disable_Stock_Recovery_Replace(void) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001189 if (PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), false)) {
Ethan Yonker9132d912015-02-02 10:32:49 -06001190 // Disable flashing of stock recovery
1191 if (TWFunc::Path_Exists("/system/recovery-from-boot.p")) {
1192 rename("/system/recovery-from-boot.p", "/system/recovery-from-boot.bak");
Ethan Yonker74db1572015-10-28 12:44:49 -05001193 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 -06001194 sync();
1195 }
Captain Throwback9d6feb52018-07-27 10:05:24 -04001196 PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false);
Ethan Yonker9132d912015-02-02 10:32:49 -06001197 }
1198}
1199
Ethan Yonker483e9f42016-01-11 22:21:18 -06001200unsigned long long TWFunc::IOCTL_Get_Block_Size(const char* block_device) {
1201 unsigned long block_device_size;
1202 int ret = 0;
1203
1204 int fd = open(block_device, O_RDONLY);
1205 if (fd < 0) {
1206 LOGINFO("Find_Partition_Size: Failed to open '%s', (%s)\n", block_device, strerror(errno));
1207 } else {
1208 ret = ioctl(fd, BLKGETSIZE, &block_device_size);
1209 close(fd);
1210 if (ret) {
1211 LOGINFO("Find_Partition_Size: ioctl error: (%s)\n", strerror(errno));
1212 } else {
1213 return (unsigned long long)(block_device_size) * 512LLU;
1214 }
1215 }
1216 return 0;
1217}
1218
bigbiff bigbiffbad332a2016-07-29 21:18:13 -04001219void TWFunc::copy_kernel_log(string curr_storage) {
1220 std::string dmesgDst = curr_storage + "/dmesg.log";
1221 std::string dmesgCmd = "/sbin/dmesg";
1222
1223 std::string result;
1224 Exec_Cmd(dmesgCmd, result);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001225 write_to_file(dmesgDst, result);
bigbiff bigbiffbad332a2016-07-29 21:18:13 -04001226 gui_msg(Msg("copy_kernel_log=Copied kernel log to {1}")(dmesgDst));
1227 tw_set_default_metadata(dmesgDst.c_str());
1228}
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001229
1230bool TWFunc::isNumber(string strtocheck) {
1231 int num = 0;
1232 std::istringstream iss(strtocheck);
1233
1234 if (!(iss >> num).fail())
1235 return true;
1236 else
1237 return false;
1238}
1239
1240int TWFunc::stream_adb_backup(string &Restore_Name) {
1241 string cmd = "/sbin/bu --twrp stream " + Restore_Name;
1242 LOGINFO("stream_adb_backup: %s\n", cmd.c_str());
1243 int ret = TWFunc::Exec_Cmd(cmd);
1244 if (ret != 0)
1245 return -1;
1246 return ret;
1247}
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001248
1249std::string TWFunc::get_cache_dir() {
1250 if (PartitionManager.Find_Partition_By_Path(NON_AB_CACHE_DIR) == NULL) {
SyberHexena8951182019-10-29 18:08:16 -07001251 if (PartitionManager.Find_Partition_By_Path(AB_CACHE_DIR) == NULL) {
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04001252 if (PartitionManager.Find_Partition_By_Path(PERSIST_CACHE_DIR) == NULL) {
1253 LOGINFO("Unable to find a directory to store TWRP logs.");
1254 return "";
1255 }
1256 return PERSIST_CACHE_DIR;
1257 } else {
1258 return AB_CACHE_DIR;
1259 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001260 }
1261 else {
1262 return NON_AB_CACHE_DIR;
1263 }
1264}
1265
1266void TWFunc::check_selinux_support() {
1267 if (TWFunc::Path_Exists("/prebuilt_file_contexts")) {
1268 if (TWFunc::Path_Exists("/file_contexts")) {
1269 printf("Renaming regular /file_contexts -> /file_contexts.bak\n");
1270 rename("/file_contexts", "/file_contexts.bak");
1271 }
1272 printf("Moving /prebuilt_file_contexts -> /file_contexts\n");
1273 rename("/prebuilt_file_contexts", "/file_contexts");
1274 }
1275 struct selinux_opt selinux_options[] = {
1276 { SELABEL_OPT_PATH, "/file_contexts" }
1277 };
1278 selinux_handle = selabel_open(SELABEL_CTX_FILE, selinux_options, 1);
1279 if (!selinux_handle)
1280 printf("No file contexts for SELinux\n");
1281 else
1282 printf("SELinux contexts loaded from /file_contexts\n");
1283 { // Check to ensure SELinux can be supported by the kernel
1284 char *contexts = NULL;
1285 std::string cacheDir = TWFunc::get_cache_dir();
1286 std::string se_context_check = cacheDir + "recovery/";
1287 int ret = 0;
1288
1289 if (cacheDir == NON_AB_CACHE_DIR) {
1290 PartitionManager.Mount_By_Path(NON_AB_CACHE_DIR, false);
1291 }
1292 if (TWFunc::Path_Exists(se_context_check)) {
1293 ret = lgetfilecon(se_context_check.c_str(), &contexts);
Makornthawat Emeryabc299c2019-03-29 13:45:22 +00001294 if (ret < 0) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001295 LOGINFO("Could not check %s SELinux contexts, using /sbin/teamwin instead which may be inaccurate.\n", se_context_check.c_str());
1296 lgetfilecon("/sbin/teamwin", &contexts);
1297 }
1298 }
1299 if (ret < 0) {
1300 gui_warn("no_kernel_selinux=Kernel does not have support for reading SELinux contexts.");
1301 } else {
1302 free(contexts);
1303 gui_msg("full_selinux=Full SELinux support is present.");
1304 }
1305 }
1306}
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001307
1308bool TWFunc::Is_TWRP_App_In_System() {
1309 if (PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), false)) {
1310 string base_path = PartitionManager.Get_Android_Root_Path();
1311 if (TWFunc::Path_Exists(PartitionManager.Get_Android_Root_Path() + "/system"))
1312 base_path += "/system"; // For devices with system as a root file system (e.g. Pixel)
1313 string install_path = base_path + "/priv-app";
1314 if (!TWFunc::Path_Exists(install_path))
1315 install_path = base_path + "/app";
1316 install_path += "/twrpapp";
1317 if (TWFunc::Path_Exists(install_path)) {
1318 LOGINFO("App found at '%s'\n", install_path.c_str());
1319 DataManager::SetValue("tw_app_installed_in_system", 1);
1320 return true;
1321 }
1322 }
1323 DataManager::SetValue("tw_app_installed_in_system", 0);
1324 return false;
1325}
Chaosmaster461e39f2020-02-07 01:48:13 +01001326
1327int TWFunc::Property_Override(string Prop_Name, string Prop_Value) {
1328#ifdef TW_INCLUDE_LIBRESETPROP
1329 return setprop(Prop_Name.c_str(), Prop_Value.c_str(), false);
1330#else
1331 return -2;
1332#endif
1333}
1334
Ethan Yonkeraf2897c2014-02-10 13:07:14 -06001335#endif // ndef BUILD_TWRPTAR_MAIN