blob: 15d4bdd4162437ff62450b7754263005a5affb39 [file] [log] [blame]
Dees Troy3be70a82013-10-22 14:25:12 +00001/*
bigbiffdf8436b2020-08-30 16:22:34 -04002 Copyright 2012-2020 TeamWin
Dees Troy3be70a82013-10-22 14:25:12 +00003 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>
Adithya R3a59df52021-12-19 00:49:54 +053041#include <thread>
bigbiff22851b92021-09-01 16:46:57 -040042
43#include <android-base/strings.h>
Adithya R3a59df52021-12-19 00:49:54 +053044#include <android-base/chrono_utils.h>
bigbiff22851b92021-09-01 16:46:57 -040045
Dees_Troy38bd7602012-09-14 13:33:53 -040046#include "twrp-functions.hpp"
Dees_Troy2673cec2013-04-02 20:22:16 +000047#include "twcommon.h"
Ethan Yonker472f5062016-02-25 13:47:30 -060048#include "gui/gui.hpp"
Ethan Yonkeraf2897c2014-02-10 13:07:14 -060049#ifndef BUILD_TWRPTAR_MAIN
Dees_Troyb46a6842012-09-25 11:06:46 -040050#include "data.hpp"
Ethan Yonkeraf2897c2014-02-10 13:07:14 -060051#include "partitions.hpp"
Dees_Troy3477d712012-09-27 15:44:01 -040052#include "variables.h"
bigbiffdf8436b2020-08-30 16:22:34 -040053#include "bootloader_message/include/bootloader_message/bootloader_message.h"
Tom Hite5a926722014-09-15 01:31:03 +000054#include "cutils/properties.h"
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -050055#include "cutils/android_reboot.h"
56#include <sys/reboot.h>
Ethan Yonkeraf2897c2014-02-10 13:07:14 -060057#endif // ndef BUILD_TWRPTAR_MAIN
Dees_Troy83bd4832013-05-04 12:39:56 +000058#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
59 #include "openaes/inc/oaes_lib.h"
60#endif
Ethan Yonkerf1179622016-08-25 15:32:21 -050061#include "set_metadata.h"
Dees_Troy38bd7602012-09-14 13:33:53 -040062
Dees_Troyb05ddee2013-01-28 20:24:50 +000063extern "C" {
64 #include "libcrecovery/common.h"
65}
66
Chaosmaster461e39f2020-02-07 01:48:13 +010067#ifdef TW_INCLUDE_LIBRESETPROP
bigbiff922b1212021-12-25 15:43:34 -050068 #include <resetprop.hpp>
Chaosmaster461e39f2020-02-07 01:48:13 +010069#endif
70
bigbiff bigbiff19874f12019-01-08 20:06:57 -050071struct selabel_handle *selinux_handle;
72
bigbiff bigbiff9c754052013-01-09 09:09:08 -050073/* Execute a command */
bigbiffad58e1b2020-07-06 20:24:34 -040074int TWFunc::Exec_Cmd(const string& cmd, string &result, bool combine_stderr) {
Dees_Troy29a06352013-08-24 12:06:47 +000075 FILE* exec;
76 char buffer[130];
77 int ret = 0;
bigbiffad58e1b2020-07-06 20:24:34 -040078 std::string popen_cmd = cmd;
79 if (combine_stderr)
80 popen_cmd = cmd + " 2>&1";
81 exec = __popen(popen_cmd.c_str(), "r");
82
Matt Mowera8a89d12016-12-30 18:10:37 -060083 while (!feof(exec)) {
Dees_Troy29a06352013-08-24 12:06:47 +000084 if (fgets(buffer, 128, exec) != NULL) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -050085 result += buffer;
Dees_Troyb05ddee2013-01-28 20:24:50 +000086 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -050087 }
Dees_Troy29a06352013-08-24 12:06:47 +000088 ret = __pclose(exec);
89 return ret;
bigbiff bigbiff9c754052013-01-09 09:09:08 -050090}
91
Ethan Yonker7e941582019-03-22 08:18:21 -050092int TWFunc::Exec_Cmd(const string& cmd, bool Show_Errors) {
Vojtech Bocek05534202013-09-11 08:11:56 +020093 pid_t pid;
94 int status;
95 switch(pid = fork())
96 {
97 case -1:
bigbiff bigbiff731df792014-02-20 18:26:13 -050098 LOGERR("Exec_Cmd(): vfork failed: %d!\n", errno);
Vojtech Bocek05534202013-09-11 08:11:56 +020099 return -1;
100 case 0: // child
bigbiffad58e1b2020-07-06 20:24:34 -0400101 execl("/system/bin/sh", "sh", "-c", cmd.c_str(), NULL);
Vojtech Bocek05534202013-09-11 08:11:56 +0200102 _exit(127);
103 break;
104 default:
105 {
Ethan Yonker7e941582019-03-22 08:18:21 -0500106 if (TWFunc::Wait_For_Child(pid, &status, cmd, Show_Errors) != 0)
Vojtech Bocek05534202013-09-11 08:11:56 +0200107 return -1;
108 else
109 return 0;
110 }
111 }
112}
113
Dees_Troy38bd7602012-09-14 13:33:53 -0400114// Returns "file.name" from a full /path/to/file.name
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600115string TWFunc::Get_Filename(const string& Path) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400116 size_t pos = Path.find_last_of("/");
117 if (pos != string::npos) {
118 string Filename;
119 Filename = Path.substr(pos + 1, Path.size() - pos - 1);
120 return Filename;
121 } else
122 return Path;
123}
124
125// Returns "/path/to/" from a full /path/to/file.name
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600126string TWFunc::Get_Path(const string& Path) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400127 size_t pos = Path.find_last_of("/");
128 if (pos != string::npos) {
129 string Pathonly;
130 Pathonly = Path.substr(0, pos + 1);
131 return Pathonly;
132 } else
133 return Path;
134}
135
Ethan Yonker7e941582019-03-22 08:18:21 -0500136int TWFunc::Wait_For_Child(pid_t pid, int *status, string Child_Name, bool Show_Errors) {
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600137 pid_t rc_pid;
138
139 rc_pid = waitpid(pid, status, 0);
140 if (rc_pid > 0) {
Vojtech Bocek0fdcbec2015-03-20 15:36:40 +0100141 if (WIFSIGNALED(*status)) {
Ethan Yonker7e941582019-03-22 08:18:21 -0500142 if (Show_Errors)
143 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 -0600144 return -1;
Vojtech Bocek0fdcbec2015-03-20 15:36:40 +0100145 } else if (WEXITSTATUS(*status) == 0) {
146 LOGINFO("%s process ended with RC=%d\n", Child_Name.c_str(), WEXITSTATUS(*status)); // Success
147 } else {
Ethan Yonker7e941582019-03-22 08:18:21 -0500148 if (Show_Errors)
149 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 -0600150 return -1;
151 }
152 } else { // no PID returned
153 if (errno == ECHILD)
that2252d242015-04-03 22:33:04 +0200154 LOGERR("%s no child process exist\n", Child_Name.c_str());
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600155 else {
that2252d242015-04-03 22:33:04 +0200156 LOGERR("%s Unexpected error %d\n", Child_Name.c_str(), errno);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600157 return -1;
158 }
159 }
160 return 0;
161}
162
Ethan Yonkerddb63e22017-01-19 14:01:57 -0600163int TWFunc::Wait_For_Child_Timeout(pid_t pid, int *status, const string& Child_Name, int timeout) {
164 pid_t retpid = waitpid(pid, status, WNOHANG);
165 for (; retpid == 0 && timeout; --timeout) {
166 sleep(1);
167 retpid = waitpid(pid, status, WNOHANG);
168 }
169 if (retpid == 0 && timeout == 0) {
170 LOGERR("%s took too long, killing process\n", Child_Name.c_str());
171 kill(pid, SIGKILL);
Ethan Yonkerddb63e22017-01-19 14:01:57 -0600172 for (timeout = 5; retpid == 0 && timeout; --timeout) {
173 sleep(1);
174 retpid = waitpid(pid, status, WNOHANG);
175 }
176 if (retpid)
177 LOGINFO("Child process killed successfully\n");
178 else
179 LOGINFO("Child process took too long to kill, may be a zombie process\n");
180 return -1;
181 } else if (retpid > 0) {
182 if (WIFSIGNALED(*status)) {
183 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
184 return -1;
185 }
186 } else if (retpid < 0) { // no PID returned
187 if (errno == ECHILD)
188 LOGERR("%s no child process exist\n", Child_Name.c_str());
189 else {
190 LOGERR("%s Unexpected error %d\n", Child_Name.c_str(), errno);
191 return -1;
192 }
193 }
194 return 0;
195}
196
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600197bool TWFunc::Path_Exists(string Path) {
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600198 struct stat st;
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400199 return stat(Path.c_str(), &st) == 0;
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600200}
201
bigbiffce8f83c2015-12-12 18:30:21 -0500202Archive_Type TWFunc::Get_File_Type(string fn) {
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600203 string::size_type i = 0;
204 int firstbyte = 0, secondbyte = 0;
205 char header[3];
206
207 ifstream f;
208 f.open(fn.c_str(), ios::in | ios::binary);
209 f.get(header, 3);
210 f.close();
211 firstbyte = header[i] & 0xff;
212 secondbyte = header[++i] & 0xff;
213
214 if (firstbyte == 0x1f && secondbyte == 0x8b)
bigbiffce8f83c2015-12-12 18:30:21 -0500215 return COMPRESSED;
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600216 else if (firstbyte == 0x4f && secondbyte == 0x41)
bigbiffce8f83c2015-12-12 18:30:21 -0500217 return ENCRYPTED;
218 return UNCOMPRESSED; // default
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600219}
220
221int TWFunc::Try_Decrypting_File(string fn, string password) {
222#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
223 OAES_CTX * ctx = NULL;
224 uint8_t _key_data[32] = "";
225 FILE *f;
226 uint8_t buffer[4096];
227 uint8_t *buffer_out = NULL;
228 uint8_t *ptr = NULL;
229 size_t read_len = 0, out_len = 0;
Matt Mower23d8aae2017-01-06 14:30:33 -0600230 int firstbyte = 0, secondbyte = 0;
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600231 size_t _j = 0;
232 size_t _key_data_len = 0;
233
234 // mostly kanged from OpenAES oaes.c
Matt Mowera8a89d12016-12-30 18:10:37 -0600235 for ( _j = 0; _j < 32; _j++ )
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600236 _key_data[_j] = _j + 1;
237 _key_data_len = password.size();
Matt Mowera8a89d12016-12-30 18:10:37 -0600238 if ( 16 >= _key_data_len )
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600239 _key_data_len = 16;
Matt Mowera8a89d12016-12-30 18:10:37 -0600240 else if ( 24 >= _key_data_len )
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600241 _key_data_len = 24;
242 else
Matt Mowera8a89d12016-12-30 18:10:37 -0600243 _key_data_len = 32;
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600244 memcpy(_key_data, password.c_str(), password.size());
245
246 ctx = oaes_alloc();
247 if (ctx == NULL) {
248 LOGERR("Failed to allocate OAES\n");
249 return -1;
250 }
251
252 oaes_key_import_data(ctx, _key_data, _key_data_len);
253
254 f = fopen(fn.c_str(), "rb");
255 if (f == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500256 LOGERR("Failed to open '%s' to try decrypt: %s\n", fn.c_str(), strerror(errno));
Matt Mower13a8f0b2015-09-26 15:40:03 -0500257 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600258 return -1;
259 }
260 read_len = fread(buffer, sizeof(uint8_t), 4096, f);
261 if (read_len <= 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500262 LOGERR("Read size during try decrypt failed: %s\n", strerror(errno));
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600263 fclose(f);
Matt Mower13a8f0b2015-09-26 15:40:03 -0500264 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600265 return -1;
266 }
267 if (oaes_decrypt(ctx, buffer, read_len, NULL, &out_len) != OAES_RET_SUCCESS) {
268 LOGERR("Error: Failed to retrieve required buffer size for trying decryption.\n");
269 fclose(f);
Matt Mower13a8f0b2015-09-26 15:40:03 -0500270 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600271 return -1;
272 }
273 buffer_out = (uint8_t *) calloc(out_len, sizeof(char));
274 if (buffer_out == NULL) {
275 LOGERR("Failed to allocate output buffer for try decrypt.\n");
276 fclose(f);
Matt Mower13a8f0b2015-09-26 15:40:03 -0500277 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600278 return -1;
279 }
280 if (oaes_decrypt(ctx, buffer, read_len, buffer_out, &out_len) != OAES_RET_SUCCESS) {
281 LOGERR("Failed to decrypt file '%s'\n", fn.c_str());
282 fclose(f);
283 free(buffer_out);
Matt Mower13a8f0b2015-09-26 15:40:03 -0500284 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600285 return 0;
286 }
287 fclose(f);
Matt Mower13a8f0b2015-09-26 15:40:03 -0500288 oaes_free(&ctx);
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600289 if (out_len < 2) {
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500290 LOGINFO("Successfully decrypted '%s' but read length too small.\n", fn.c_str());
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600291 free(buffer_out);
292 return 1; // Decrypted successfully
293 }
294 ptr = buffer_out;
295 firstbyte = *ptr & 0xff;
296 ptr++;
297 secondbyte = *ptr & 0xff;
298 if (firstbyte == 0x1f && secondbyte == 0x8b) {
299 LOGINFO("Successfully decrypted '%s' and file is compressed.\n", fn.c_str());
300 free(buffer_out);
301 return 3; // Compressed
302 }
303 if (out_len >= 262) {
304 ptr = buffer_out + 257;
305 if (strncmp((char*)ptr, "ustar", 5) == 0) {
306 LOGINFO("Successfully decrypted '%s' and file is tar format.\n", fn.c_str());
307 free(buffer_out);
308 return 2; // Tar
309 }
310 }
311 free(buffer_out);
312 LOGINFO("No errors decrypting '%s' but no known file format.\n", fn.c_str());
313 return 1; // Decrypted successfully
314#else
315 LOGERR("Encrypted backup support not included.\n");
316 return -1;
317#endif
318}
319
Ethan Yonker472f5062016-02-25 13:47:30 -0600320unsigned long TWFunc::Get_File_Size(const string& Path) {
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600321 struct stat st;
322
323 if (stat(Path.c_str(), &st) != 0)
324 return 0;
325 return st.st_size;
326}
327
bigbiffee7b7ff2020-03-23 15:08:27 -0400328std::string TWFunc::Remove_Beginning_Slash(const std::string& path) {
329 std::string res;
330 size_t pos = path.find_first_of("/");
331 if (pos != std::string::npos) {
332 res = path.substr(pos+1);
333 }
334 return res;
335}
336
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100337std::string TWFunc::Remove_Trailing_Slashes(const std::string& path, bool leaveLast)
338{
339 std::string res;
340 size_t last_idx = 0, idx = 0;
341
Matt Mowera8a89d12016-12-30 18:10:37 -0600342 while (last_idx != std::string::npos)
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100343 {
Matt Mowera8a89d12016-12-30 18:10:37 -0600344 if (last_idx != 0)
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100345 res += '/';
346
347 idx = path.find_first_of('/', last_idx);
Matt Mowera8a89d12016-12-30 18:10:37 -0600348 if (idx == std::string::npos) {
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100349 res += path.substr(last_idx, idx);
350 break;
351 }
352
353 res += path.substr(last_idx, idx-last_idx);
354 last_idx = path.find_first_not_of('/', idx);
355 }
356
Matt Mowera8a89d12016-12-30 18:10:37 -0600357 if (leaveLast)
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100358 res += '/';
359 return res;
360}
361
Matt Mower2416a502016-04-12 19:54:46 -0500362void TWFunc::Strip_Quotes(char* &str) {
363 if (strlen(str) > 0 && str[0] == '\"')
364 str++;
365 if (strlen(str) > 0 && str[strlen(str)-1] == '\"')
366 str[strlen(str)-1] = 0;
367}
368
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500369vector<string> TWFunc::split_string(const string &in, char del, bool skip_empty) {
370 vector<string> res;
371
372 if (in.empty() || del == '\0')
373 return res;
374
375 string field;
376 istringstream f(in);
377 if (del == '\n') {
Matt Mowera8a89d12016-12-30 18:10:37 -0600378 while (getline(f, field)) {
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500379 if (field.empty() && skip_empty)
380 continue;
Matt Mowera8a89d12016-12-30 18:10:37 -0600381 res.push_back(field);
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500382 }
383 } else {
Matt Mowera8a89d12016-12-30 18:10:37 -0600384 while (getline(f, field, del)) {
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500385 if (field.empty() && skip_empty)
386 continue;
387 res.push_back(field);
388 }
389 }
390 return res;
391}
392
Ethan Yonker472f5062016-02-25 13:47:30 -0600393timespec TWFunc::timespec_diff(timespec& start, timespec& end)
394{
395 timespec temp;
396 if ((end.tv_nsec-start.tv_nsec)<0) {
397 temp.tv_sec = end.tv_sec-start.tv_sec-1;
398 temp.tv_nsec = 1000000000+end.tv_nsec-start.tv_nsec;
399 } else {
400 temp.tv_sec = end.tv_sec-start.tv_sec;
401 temp.tv_nsec = end.tv_nsec-start.tv_nsec;
402 }
403 return temp;
404}
405
406int32_t TWFunc::timespec_diff_ms(timespec& start, timespec& end)
407{
408 return ((end.tv_sec * 1000) + end.tv_nsec/1000000) -
409 ((start.tv_sec * 1000) + start.tv_nsec/1000000);
410}
411
Adithya R3a59df52021-12-19 00:49:54 +0530412bool TWFunc::Wait_For_File(const string& path, std::chrono::nanoseconds timeout) {
413 android::base::Timer t;
414 while (t.duration() < timeout) {
415 struct stat sb;
416 if (stat(path.c_str(), &sb) != -1) {
417 return true;
418 }
419 std::this_thread::sleep_for(10ms);
420 }
421 return false;
422}
423
424bool TWFunc::Wait_For_Battery(std::chrono::nanoseconds timeout) {
425 std::string battery_path;
426#ifdef TW_CUSTOM_BATTERY_PATH
427 battery_path = EXPAND(TW_CUSTOM_BATTERY_PATH);
428#else
429 battery_path = "/sys/class/power_supply/battery";
430#endif
431 if (!battery_path.empty()) return TWFunc::Wait_For_File(battery_path, timeout);
432
433 return false;
434}
435
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600436#ifndef BUILD_TWRPTAR_MAIN
437
Dees_Troy38bd7602012-09-14 13:33:53 -0400438// Returns "/path" from a full /path/to/file.name
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600439string TWFunc::Get_Root_Path(const string& Path) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400440 string Local_Path = Path;
441
442 // Make sure that we have a leading slash
443 if (Local_Path.substr(0, 1) != "/")
444 Local_Path = "/" + Local_Path;
445
446 // Trim the path to get the root path only
447 size_t position = Local_Path.find("/", 2);
448 if (position != string::npos) {
449 Local_Path.resize(position);
450 }
451 return Local_Path;
452}
453
Dees_Troy43d8b002012-09-17 16:00:01 -0400454int TWFunc::Recursive_Mkdir(string Path) {
thatf1408b32016-01-03 11:09:15 +0100455 std::vector<std::string> parts = Split_String(Path, "/", true);
456 std::string cur_path;
457 for (size_t i = 0; i < parts.size(); ++i) {
458 cur_path += "/" + parts[i];
459 if (!TWFunc::Path_Exists(cur_path)) {
460 if (mkdir(cur_path.c_str(), 0777)) {
Matt Mower3c366972015-12-25 19:28:31 -0600461 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 -0600462 return false;
463 } else {
thatf1408b32016-01-03 11:09:15 +0100464 tw_set_default_metadata(cur_path.c_str());
Ethan Yonker4b94cfd2014-12-11 10:00:45 -0600465 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400466 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400467 }
Dees_Troy43d8b002012-09-17 16:00:01 -0400468 return true;
469}
470
Dees_Troyb46a6842012-09-25 11:06:46 -0400471void TWFunc::GUI_Operation_Text(string Read_Value, string Default_Text) {
472 string Display_Text;
473
474 DataManager::GetValue(Read_Value, Display_Text);
475 if (Display_Text.empty())
476 Display_Text = Default_Text;
477
478 DataManager::SetValue("tw_operation", Display_Text);
479 DataManager::SetValue("tw_partition", "");
480}
481
482void TWFunc::GUI_Operation_Text(string Read_Value, string Partition_Name, string Default_Text) {
483 string Display_Text;
484
485 DataManager::GetValue(Read_Value, Display_Text);
486 if (Display_Text.empty())
487 Display_Text = Default_Text;
488
489 DataManager::SetValue("tw_operation", Display_Text);
490 DataManager::SetValue("tw_partition", Partition_Name);
Dees_Troy7c2dec82012-09-26 09:49:14 -0400491}
492
Dees_Troy2673cec2013-04-02 20:22:16 +0000493void TWFunc::Copy_Log(string Source, string Destination) {
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400494 int logPipe[2];
495 int pigz_pid;
496 int destination_fd;
497 std::string destLogBuffer;
498
Dees Troy9d7fdf52013-09-19 20:49:25 +0000499 PartitionManager.Mount_By_Path(Destination, false);
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400500
501 size_t extPos = Destination.find(".gz");
502 std::string uncompressedLog(Destination);
503 uncompressedLog.replace(extPos, Destination.length(), "");
504
505 if (Path_Exists(Destination)) {
506 Archive_Type type = Get_File_Type(Destination);
507 if (type == COMPRESSED) {
508 std::string destFileBuffer;
509 std::string getCompressedContents = "pigz -c -d " + Destination;
bigbiffad58e1b2020-07-06 20:24:34 -0400510 if (Exec_Cmd(getCompressedContents, destFileBuffer, false) < 0) {
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400511 LOGINFO("Unable to get destination logfile contents.\n");
512 return;
513 }
514 destLogBuffer.append(destFileBuffer);
Dees_Troy6ef66352013-02-21 08:26:57 -0600515 }
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400516 } else if (Path_Exists(uncompressedLog)) {
bigbiffd3317052019-12-22 16:05:12 -0500517 std::ifstream uncompressedIfs(uncompressedLog.c_str());
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400518 std::stringstream uncompressedSS;
519 uncompressedSS << uncompressedIfs.rdbuf();
520 uncompressedIfs.close();
521 std::string uncompressedLogBuffer(uncompressedSS.str());
522 destLogBuffer.append(uncompressedLogBuffer);
523 std::remove(uncompressedLog.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600524 }
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400525
bigbiffd3317052019-12-22 16:05:12 -0500526 std::ifstream ifs(Source.c_str());
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400527 std::stringstream ss;
528 ss << ifs.rdbuf();
529 std::string srcLogBuffer(ss.str());
530 ifs.close();
531
532 if (pipe(logPipe) < 0) {
533 LOGINFO("Unable to open pipe to write to persistent log file: %s\n", Destination.c_str());
534 }
535
536 destination_fd = open(Destination.c_str(), O_WRONLY | O_CREAT | O_TRUNC, 0666);
537
538 pigz_pid = fork();
539 if (pigz_pid < 0) {
540 LOGINFO("fork() failed\n");
541 close(destination_fd);
542 close(logPipe[0]);
543 close(logPipe[1]);
544 } else if (pigz_pid == 0) {
545 close(logPipe[1]);
546 dup2(logPipe[0], fileno(stdin));
547 dup2(destination_fd, fileno(stdout));
548 if (execlp("pigz", "pigz", "-", NULL) < 0) {
549 close(destination_fd);
550 close(logPipe[0]);
551 _exit(-1);
552 }
553 } else {
554 close(logPipe[0]);
555 if (write(logPipe[1], destLogBuffer.c_str(), destLogBuffer.size()) < 0) {
556 LOGINFO("Unable to append to persistent log: %s\n", Destination.c_str());
557 close(logPipe[1]);
558 close(destination_fd);
559 return;
560 }
561 if (write(logPipe[1], srcLogBuffer.c_str(), srcLogBuffer.size()) < 0) {
562 LOGINFO("Unable to append to persistent log: %s\n", Destination.c_str());
563 close(logPipe[1]);
564 close(destination_fd);
565 return;
566 }
567 close(logPipe[1]);
568 }
569 close(destination_fd);
Dees_Troya58bead2012-09-27 09:49:29 -0400570}
571
Dees_Troy2673cec2013-04-02 20:22:16 +0000572void TWFunc::Update_Log_File(void) {
bigbiff25d25b92020-06-19 16:07:38 -0400573 std::string recoveryDir = get_log_dir() + "recovery/";
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500574
bigbiff25d25b92020-06-19 16:07:38 -0400575 if (get_log_dir() == CACHE_LOGS_DIR) {
576 if (!PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false)) {
577 LOGINFO("Failed to mount %s for TWFunc::Update_Log_File\n", CACHE_LOGS_DIR);
Dees Troy9d7fdf52013-09-19 20:49:25 +0000578 }
Dees Troy9d7fdf52013-09-19 20:49:25 +0000579 }
Dees_Troya58bead2012-09-27 09:49:29 -0400580
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500581 if (!TWFunc::Path_Exists(recoveryDir)) {
582 LOGINFO("Recreating %s folder.\n", recoveryDir.c_str());
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -0400583 if (!Create_Dir_Recursive(recoveryDir, S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP, 0, 0)) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500584 LOGINFO("Unable to create %s folder.\n", recoveryDir.c_str());
585 }
586 }
587
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400588 std::string logCopy = recoveryDir + "log.gz";
589 std::string lastLogCopy = recoveryDir + "last_log.gz";
Ethan Yonker5f3b8f02021-08-16 15:10:10 -0500590 copy_file(logCopy, lastLogCopy, 0600);
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500591 Copy_Log(TMP_LOG_FILE, logCopy);
592 chown(logCopy.c_str(), 1000, 1000);
593 chmod(logCopy.c_str(), 0600);
594 chmod(lastLogCopy.c_str(), 0640);
595
bigbiff25d25b92020-06-19 16:07:38 -0400596 if (get_log_dir() == CACHE_LOGS_DIR) {
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500597 if (PartitionManager.Mount_By_Path("/cache", false)) {
598 if (unlink("/cache/recovery/command") && errno != ENOENT) {
599 LOGINFO("Can't unlink %s\n", "/cache/recovery/command");
600 }
Dees Troy9d7fdf52013-09-19 20:49:25 +0000601 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500602 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000603 sync();
604}
605
bigbiffdf8436b2020-08-30 16:22:34 -0400606void TWFunc::Clear_Bootloader_Message() {
607 std::string err;
608 if (!clear_bootloader_message(&err)) {
Ian Macdonaldd4851822020-11-02 08:52:32 +0100609 LOGINFO("%s\n", err.c_str());
bigbiffdf8436b2020-08-30 16:22:34 -0400610 }
611}
612
Dees_Troy2673cec2013-04-02 20:22:16 +0000613void TWFunc::Update_Intent_File(string Intent) {
614 if (PartitionManager.Mount_By_Path("/cache", false) && !Intent.empty()) {
Ethan Yonker6e8c27a2016-12-22 17:55:57 -0600615 TWFunc::write_to_file("/cache/recovery/intent", Intent);
Dees_Troy2673cec2013-04-02 20:22:16 +0000616 }
Dees_Troya58bead2012-09-27 09:49:29 -0400617}
618
619// reboot: Reboot the system. Return -1 on error, no return on success
620int TWFunc::tw_reboot(RebootCommand command)
621{
Ethan Yonkerfe916112016-03-14 14:54:37 -0500622 DataManager::Flush();
bigbiff25d25b92020-06-19 16:07:38 -0400623 Update_Log_File();
624
Dees_Troya58bead2012-09-27 09:49:29 -0400625 // Always force a sync before we reboot
Dees_Troy6ef66352013-02-21 08:26:57 -0600626 sync();
Dees_Troya58bead2012-09-27 09:49:29 -0400627
Dees_Troy2673cec2013-04-02 20:22:16 +0000628 switch (command) {
629 case rb_current:
630 case rb_system:
Dees_Troy2673cec2013-04-02 20:22:16 +0000631 Update_Intent_File("s");
632 sync();
bigbiffad58e1b2020-07-06 20:24:34 -0400633 check_and_run_script("/system/bin/rebootsystem.sh", "reboot system");
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500634#ifdef ANDROID_RB_PROPERTY
635 return property_set(ANDROID_RB_PROPERTY, "reboot,");
636#elif defined(ANDROID_RB_RESTART)
637 return android_reboot(ANDROID_RB_RESTART, 0, 0);
638#else
Dees_Troy2673cec2013-04-02 20:22:16 +0000639 return reboot(RB_AUTOBOOT);
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500640#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000641 case rb_recovery:
bigbiffad58e1b2020-07-06 20:24:34 -0400642 check_and_run_script("/system/bin/rebootrecovery.sh", "reboot recovery");
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500643 return property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
Dees_Troy2673cec2013-04-02 20:22:16 +0000644 case rb_bootloader:
bigbiffad58e1b2020-07-06 20:24:34 -0400645 check_and_run_script("/system/bin/rebootbootloader.sh", "reboot bootloader");
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500646 return property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
Dees_Troy2673cec2013-04-02 20:22:16 +0000647 case rb_poweroff:
bigbiffad58e1b2020-07-06 20:24:34 -0400648 check_and_run_script("/system/bin/poweroff.sh", "power off");
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500649#ifdef ANDROID_RB_PROPERTY
650 return property_set(ANDROID_RB_PROPERTY, "shutdown,");
651#elif defined(ANDROID_RB_POWEROFF)
652 return android_reboot(ANDROID_RB_POWEROFF, 0, 0);
653#else
Dees_Troy2673cec2013-04-02 20:22:16 +0000654 return reboot(RB_POWER_OFF);
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500655#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000656 case rb_download:
bigbiffad58e1b2020-07-06 20:24:34 -0400657 check_and_run_script("/system/bin/rebootdownload.sh", "reboot download");
Ethan Yonkerbc2bc6b2015-03-24 21:37:52 -0500658 return property_set(ANDROID_RB_PROPERTY, "reboot,download");
mauronofrioe9a49ef2018-10-03 13:38:16 +0200659 case rb_edl:
bigbiffad58e1b2020-07-06 20:24:34 -0400660 check_and_run_script("/system/bin/rebootedl.sh", "reboot edl");
mauronofrioe9a49ef2018-10-03 13:38:16 +0200661 return property_set(ANDROID_RB_PROPERTY, "reboot,edl");
bigbiffdf8436b2020-08-30 16:22:34 -0400662 case rb_fastboot:
663 return property_set(ANDROID_RB_PROPERTY, "reboot,fastboot");
Dees_Troy2673cec2013-04-02 20:22:16 +0000664 default:
665 return -1;
Dees_Troy6ef66352013-02-21 08:26:57 -0600666 }
667 return -1;
Dees_Troya58bead2012-09-27 09:49:29 -0400668}
669
670void TWFunc::check_and_run_script(const char* script_file, const char* display_name)
671{
672 // Check for and run startup script if script exists
673 struct stat st;
674 if (stat(script_file, &st) == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500675 gui_msg(Msg("run_script=Running {1} script...")(display_name));
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500676 chmod(script_file, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
Vojtech Bocek05534202013-09-11 08:11:56 +0200677 TWFunc::Exec_Cmd(script_file);
Ethan Yonker74db1572015-10-28 12:44:49 -0500678 gui_msg("done=Done.");
Dees_Troya58bead2012-09-27 09:49:29 -0400679 }
Dees_Troy3477d712012-09-27 15:44:01 -0400680}
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500681
682int TWFunc::removeDir(const string path, bool skipParent) {
Dees_Troyce675462013-01-09 19:48:21 +0000683 DIR *d = opendir(path.c_str());
684 int r = 0;
685 string new_path;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500686
Dees_Troyce675462013-01-09 19:48:21 +0000687 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500688 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(path)(strerror(errno)));
Dees_Troyce675462013-01-09 19:48:21 +0000689 return -1;
690 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500691
Dees_Troyce675462013-01-09 19:48:21 +0000692 if (d) {
693 struct dirent *p;
694 while (!r && (p = readdir(d))) {
Dees_Troyce675462013-01-09 19:48:21 +0000695 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
696 continue;
697 new_path = path + "/";
698 new_path.append(p->d_name);
699 if (p->d_type == DT_DIR) {
700 r = removeDir(new_path, true);
701 if (!r) {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500702 if (p->d_type == DT_DIR)
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500703 r = rmdir(new_path.c_str());
704 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000705 LOGINFO("Unable to removeDir '%s': %s\n", new_path.c_str(), strerror(errno));
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500706 }
bigbiff bigbiff98f1f902013-01-19 18:46:13 -0500707 } 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 +0000708 r = unlink(new_path.c_str());
Dees_Troye34c1332013-02-06 19:13:00 +0000709 if (r != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000710 LOGINFO("Unable to unlink '%s: %s'\n", new_path.c_str(), strerror(errno));
Dees_Troye34c1332013-02-06 19:13:00 +0000711 }
Dees_Troyce675462013-01-09 19:48:21 +0000712 }
713 }
714 closedir(d);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500715
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500716 if (!r) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500717 if (skipParent)
718 return 0;
719 else
720 r = rmdir(path.c_str());
721 }
Dees_Troyce675462013-01-09 19:48:21 +0000722 }
723 return r;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500724}
725
bigbiff22851b92021-09-01 16:46:57 -0400726int TWFunc::copy_file(string src, string dst, int mode, bool mount_paths) {
727 if (mount_paths) {
728 PartitionManager.Mount_By_Path(src, false);
729 PartitionManager.Mount_By_Path(dst, false);
730 }
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400731 if (!Path_Exists(src)) {
bigbiff22851b92021-09-01 16:46:57 -0400732 LOGINFO("Path %s does not exist. Unable to copy file to %s\n", src.c_str(), dst.c_str());
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400733 return -1;
734 }
bigbiffd3317052019-12-22 16:05:12 -0500735 std::ifstream srcfile(src.c_str(), ios::binary);
736 std::ofstream dstfile(dst.c_str(), ios::binary);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500737 dstfile << srcfile.rdbuf();
bigbiff850fa282021-10-09 12:37:29 -0400738 if (dstfile.bad()) {
bigbiff bigbiffe3ad5342019-09-18 19:05:59 -0400739 LOGINFO("Unable to copy file %s to %s\n", src.c_str(), dst.c_str());
740 return -1;
741 }
742
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500743 srcfile.close();
744 dstfile.close();
bigbiff22851b92021-09-01 16:46:57 -0400745 if (chmod(dst.c_str(), mode) != 0) {
746 LOGERR("Unable to chmod file: %s. Error: %s\n", dst.c_str(), strerror(errno));
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500747 return -1;
bigbiff22851b92021-09-01 16:46:57 -0400748 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500749 return 0;
750}
Dees_Troy3ee47bc2013-01-25 21:47:37 +0000751
752unsigned int TWFunc::Get_D_Type_From_Stat(string Path) {
753 struct stat st;
754
755 stat(Path.c_str(), &st);
756 if (st.st_mode & S_IFDIR)
757 return DT_DIR;
758 else if (st.st_mode & S_IFBLK)
759 return DT_BLK;
760 else if (st.st_mode & S_IFCHR)
761 return DT_CHR;
762 else if (st.st_mode & S_IFIFO)
763 return DT_FIFO;
764 else if (st.st_mode & S_IFLNK)
765 return DT_LNK;
766 else if (st.st_mode & S_IFREG)
767 return DT_REG;
768 else if (st.st_mode & S_IFSOCK)
769 return DT_SOCK;
770 return DT_UNKNOWN;
Dees_Troye34c1332013-02-06 19:13:00 +0000771}
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500772
773int TWFunc::read_file(string fn, string& results) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200774 ifstream file;
775 file.open(fn.c_str(), ios::in);
776
777 if (file.is_open()) {
bigbiff22851b92021-09-01 16:46:57 -0400778 std::string line;
779 while (std::getline(file, line)) {
780 results += line;
781 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200782 file.close();
783 return 0;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500784 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200785
786 LOGINFO("Cannot find file %s\n", fn.c_str());
787 return -1;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500788}
789
790int TWFunc::read_file(string fn, vector<string>& results) {
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500791 ifstream file;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500792 string line;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500793 file.open(fn.c_str(), ios::in);
794 if (file.is_open()) {
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500795 while (getline(file, line))
796 results.push_back(line);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500797 file.close();
798 return 0;
799 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000800 LOGINFO("Cannot find file %s\n", fn.c_str());
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500801 return -1;
802}
803
xNUTxe85f02d2014-07-18 01:30:58 +0200804int TWFunc::read_file(string fn, uint64_t& results) {
805 ifstream file;
806 file.open(fn.c_str(), ios::in);
807
808 if (file.is_open()) {
809 file >> results;
810 file.close();
811 return 0;
812 }
813
814 LOGINFO("Cannot find file %s\n", fn.c_str());
815 return -1;
816}
817
bigbiff22851b92021-09-01 16:46:57 -0400818bool TWFunc::write_to_file(const string& fn, const string& line) {
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500819 FILE *file;
820 file = fopen(fn.c_str(), "w");
821 if (file != NULL) {
822 fwrite(line.c_str(), line.size(), 1, file);
823 fclose(file);
bigbiff22851b92021-09-01 16:46:57 -0400824 return true;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500825 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000826 LOGINFO("Cannot find file %s\n", fn.c_str());
bigbiff22851b92021-09-01 16:46:57 -0400827 return false;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500828}
829
bigbiff22851b92021-09-01 16:46:57 -0400830bool TWFunc::write_to_file(const string& fn, const std::vector<string> lines) {
831 FILE *file;
832 file = fopen(fn.c_str(), "a+");
833 if (file != NULL) {
834 for (auto&& line: lines) {
835 fwrite(line.c_str(), line.size(), 1, file);
836 fwrite("\n", sizeof(char), 1, file);
837 }
838 fclose(file);
839 return true;
840 }
841 return false;
842}
843
844
Dees_Troy83bd4832013-05-04 12:39:56 +0000845bool TWFunc::Try_Decrypting_Backup(string Restore_Path, string Password) {
846 DIR* d;
847
848 string Filename;
849 Restore_Path += "/";
850 d = opendir(Restore_Path.c_str());
851 if (d == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500852 gui_msg(Msg(msg::kError, "error_opening_strerr=Error opening: '{1}' ({2})")(Restore_Path)(strerror(errno)));
Dees_Troy83bd4832013-05-04 12:39:56 +0000853 return false;
854 }
855
856 struct dirent* de;
857 while ((de = readdir(d)) != NULL) {
858 Filename = Restore_Path;
859 Filename += de->d_name;
bigbiffce8f83c2015-12-12 18:30:21 -0500860 if (TWFunc::Get_File_Type(Filename) == ENCRYPTED) {
Dees_Troy83bd4832013-05-04 12:39:56 +0000861 if (TWFunc::Try_Decrypting_File(Filename, Password) < 2) {
862 DataManager::SetValue("tw_restore_password", ""); // Clear the bad password
863 DataManager::SetValue("tw_restore_display", ""); // Also clear the display mask
864 closedir(d);
865 return false;
866 }
867 }
868 }
869 closedir(d);
870 return true;
871}
872
Dees Troyb21cc642013-09-10 17:36:41 +0000873string TWFunc::Get_Current_Date() {
874 string Current_Date;
875 time_t seconds = time(0);
876 struct tm *t = localtime(&seconds);
877 char timestamp[255];
878 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);
879 Current_Date = timestamp;
880 return Current_Date;
881}
882
Ethan Yonkerb5557892014-02-07 21:43:20 -0600883string TWFunc::System_Property_Get(string Prop_Name) {
Captain Throwback08635862022-01-05 18:58:19 -0500884 return System_Property_Get(Prop_Name, PartitionManager, PartitionManager.Get_Android_Root_Path(), "build.prop");
Chaosmaster65633a42020-02-05 15:24:09 +0100885}
886
Captain Throwbacka1852522021-12-31 21:35:52 -0500887string TWFunc::System_Property_Get(string Prop_Name, TWPartitionManager &PartitionManager, string Mount_Point, string prop_file_name) {
Chaosmaster65633a42020-02-05 15:24:09 +0100888 bool mount_state = PartitionManager.Is_Mounted_By_Path(Mount_Point);
Dees Troyb21cc642013-09-10 17:36:41 +0000889 std::vector<string> buildprop;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600890 string propvalue;
Chaosmaster65633a42020-02-05 15:24:09 +0100891 if (!PartitionManager.Mount_By_Path(Mount_Point, true))
Ethan Yonkerb5557892014-02-07 21:43:20 -0600892 return propvalue;
Captain Throwbacka1852522021-12-31 21:35:52 -0500893 string prop_file = Mount_Point + "/system/" + prop_file_name;
894 if (!TWFunc::Path_Exists(prop_file)) {
895 LOGINFO("Unable to locate file: %s\n", prop_file.c_str());
896 return propvalue;
897 }
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600898 if (TWFunc::read_file(prop_file, buildprop) != 0) {
Captain Throwbacka1852522021-12-31 21:35:52 -0500899 LOGINFO("Unable to open %s for getting '%s'.\n", prop_file_name.c_str(), Prop_Name.c_str());
Vojtech Boceka2e70162013-09-17 17:05:10 +0200900 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
Dees Troyb21cc642013-09-10 17:36:41 +0000901 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100902 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600903 return propvalue;
Dees Troyb21cc642013-09-10 17:36:41 +0000904 }
905 int line_count = buildprop.size();
906 int index;
907 size_t start_pos = 0, end_pos;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600908 string propname;
Dees Troyb21cc642013-09-10 17:36:41 +0000909 for (index = 0; index < line_count; index++) {
910 end_pos = buildprop.at(index).find("=", start_pos);
911 propname = buildprop.at(index).substr(start_pos, end_pos);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600912 if (propname == Prop_Name) {
Dees Troyb21cc642013-09-10 17:36:41 +0000913 propvalue = buildprop.at(index).substr(end_pos + 1, buildprop.at(index).size());
Ethan Yonkerb5557892014-02-07 21:43:20 -0600914 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100915 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600916 return propvalue;
Dees Troyb21cc642013-09-10 17:36:41 +0000917 }
918 }
Dees Troyb21cc642013-09-10 17:36:41 +0000919 if (!mount_state)
Chaosmaster65633a42020-02-05 15:24:09 +0100920 PartitionManager.UnMount_By_Path(Mount_Point, false);
Ethan Yonkerb5557892014-02-07 21:43:20 -0600921 return propvalue;
922}
923
924void TWFunc::Auto_Generate_Backup_Name() {
925 string propvalue = System_Property_Get("ro.build.display.id");
926 if (propvalue.empty()) {
927 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
928 return;
929 }
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400930 else {
931 //remove periods from build display so it doesn't confuse the extension code
932 propvalue.erase(remove(propvalue.begin(), propvalue.end(), '.'), propvalue.end());
933 }
Ethan Yonkerb5557892014-02-07 21:43:20 -0600934 string Backup_Name = Get_Current_Date();
bigbiff74a6d0d2015-02-14 20:49:44 -0500935 Backup_Name += "_" + propvalue;
Ethan Yonkerb5557892014-02-07 21:43:20 -0600936 if (Backup_Name.size() > MAX_BACKUP_NAME_LEN)
937 Backup_Name.resize(MAX_BACKUP_NAME_LEN);
938 // Trailing spaces cause problems on some file systems, so remove them
939 string space_check, space = " ";
940 space_check = Backup_Name.substr(Backup_Name.size() - 1, 1);
941 while (space_check == space) {
942 Backup_Name.resize(Backup_Name.size() - 1);
943 space_check = Backup_Name.substr(Backup_Name.size() - 1, 1);
944 }
bigbiff74a6d0d2015-02-14 20:49:44 -0500945 replace(Backup_Name.begin(), Backup_Name.end(), ' ', '_');
Ethan Yonker53796e72019-01-11 22:49:52 -0600946 if (PartitionManager.Check_Backup_Name(Backup_Name, false, true) != 0) {
947 LOGINFO("Auto generated backup name '%s' is not valid, using date instead.\n", Backup_Name.c_str());
Ethan Yonker92d48e02014-02-26 12:05:55 -0600948 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
Ethan Yonker53796e72019-01-11 22:49:52 -0600949 } else {
950 DataManager::SetValue(TW_BACKUP_NAME, Backup_Name);
Ethan Yonker92d48e02014-02-26 12:05:55 -0600951 }
Vojtech Bocek05534202013-09-11 08:11:56 +0200952}
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100953
nkk7198fc3992017-12-16 16:26:42 +0200954void TWFunc::Fixup_Time_On_Boot(const string& time_paths /* = "" */)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100955{
956#ifdef QCOM_RTC_FIX
nkk7198fc3992017-12-16 16:26:42 +0200957 static bool fixed = false;
958 if (fixed)
959 return;
xNUTxe85f02d2014-07-18 01:30:58 +0200960
961 LOGINFO("TWFunc::Fixup_Time: Pre-fix date and time: %s\n", TWFunc::Get_Current_Date().c_str());
962
963 struct timeval tv;
964 uint64_t offset = 0;
965 std::string sepoch = "/sys/class/rtc/rtc0/since_epoch";
966
967 if (TWFunc::read_file(sepoch, offset) == 0) {
968
969 LOGINFO("TWFunc::Fixup_Time: Setting time offset from file %s\n", sepoch.c_str());
970
971 tv.tv_sec = offset;
972 tv.tv_usec = 0;
973 settimeofday(&tv, NULL);
974
975 gettimeofday(&tv, NULL);
976
Phoenix59146b05f22018-02-03 06:41:08 +0000977 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 +0200978
979 LOGINFO("TWFunc::Fixup_Time: Date and time corrected: %s\n", TWFunc::Get_Current_Date().c_str());
nkk7198fc3992017-12-16 16:26:42 +0200980 fixed = true;
xNUTxe85f02d2014-07-18 01:30:58 +0200981 return;
982
983 }
984
985 } else {
986
987 LOGINFO("TWFunc::Fixup_Time: opening %s failed\n", sepoch.c_str());
988
989 }
990
Ethan Yonker9132d912015-02-02 10:32:49 -0600991 LOGINFO("TWFunc::Fixup_Time: will attempt to use the ats files now.\n");
xNUTxe85f02d2014-07-18 01:30:58 +0200992
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +0100993 // Devices with Qualcomm Snapdragon 800 do some shenanigans with RTC.
994 // They never set it, it just ticks forward from 1970-01-01 00:00,
995 // and then they have files /data/system/time/ats_* with 64bit offset
996 // in miliseconds which, when added to the RTC, gives the correct time.
997 // So, the time is: (offset_from_ats + value_from_RTC)
998 // There are multiple ats files, they are for different systems? Bases?
999 // Like, ats_1 is for modem and ats_2 is for TOD (time of day?).
1000 // Look at file time_genoff.h in CodeAurora, qcom-opensource/time-services
1001
nkk7198fc3992017-12-16 16:26:42 +02001002 std::vector<std::string> paths; // space separated list of paths
1003 if (time_paths.empty()) {
Mauronofrio Matarrese2dab70d2019-03-05 02:22:26 +01001004 paths = Split_String("/data/system/time/ /data/time/ /data/vendor/time/", " ");
nkk7198fc3992017-12-16 16:26:42 +02001005 if (!PartitionManager.Mount_By_Path("/data", false))
1006 return;
1007 } else {
1008 // When specific path(s) are used, Fixup_Time needs those
1009 // partitions to already be mounted!
1010 paths = Split_String(time_paths, " ");
1011 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001012
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001013 FILE *f;
xNUTxe85f02d2014-07-18 01:30:58 +02001014 offset = 0;
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001015 struct dirent *dt;
1016 std::string ats_path;
1017
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001018 // Prefer ats_2, it seems to be the one we want according to logcat on hammerhead
1019 // - it is the one for ATS_TOD (time of day?).
1020 // However, I never saw a device where the offset differs between ats files.
nkk7198fc3992017-12-16 16:26:42 +02001021 for (size_t i = 0; i < paths.size(); ++i)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001022 {
nkk7198fc3992017-12-16 16:26:42 +02001023 DIR *d = opendir(paths[i].c_str());
Matt Mowera8a89d12016-12-30 18:10:37 -06001024 if (!d)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001025 continue;
1026
Matt Mowera8a89d12016-12-30 18:10:37 -06001027 while ((dt = readdir(d)))
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001028 {
Matt Mowera8a89d12016-12-30 18:10:37 -06001029 if (dt->d_type != DT_REG || strncmp(dt->d_name, "ats_", 4) != 0)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001030 continue;
1031
Matt Mowera8a89d12016-12-30 18:10:37 -06001032 if (ats_path.empty() || strcmp(dt->d_name, "ats_2") == 0)
nkk7198fc3992017-12-16 16:26:42 +02001033 ats_path = paths[i] + dt->d_name;
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001034 }
1035
1036 closedir(d);
1037 }
1038
nkk7198fc3992017-12-16 16:26:42 +02001039 if (ats_path.empty()) {
xNUTxe85f02d2014-07-18 01:30:58 +02001040 LOGINFO("TWFunc::Fixup_Time: no ats files found, leaving untouched!\n");
nkk7198fc3992017-12-16 16:26:42 +02001041 } else if ((f = fopen(ats_path.c_str(), "r")) == NULL) {
Dees Troy3e254b92014-03-06 20:24:54 +00001042 LOGINFO("TWFunc::Fixup_Time: failed to open file %s\n", ats_path.c_str());
nkk7198fc3992017-12-16 16:26:42 +02001043 } else if (fread(&offset, sizeof(offset), 1, f) != 1) {
Dees Troy3e254b92014-03-06 20:24:54 +00001044 LOGINFO("TWFunc::Fixup_Time: failed load uint64 from file %s\n", ats_path.c_str());
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001045 fclose(f);
nkk7198fc3992017-12-16 16:26:42 +02001046 } else {
1047 fclose(f);
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001048
nkk7198fc3992017-12-16 16:26:42 +02001049 LOGINFO("TWFunc::Fixup_Time: Setting time offset from file %s, offset %llu\n", ats_path.c_str(), (unsigned long long) offset);
1050 DataManager::SetValue("tw_qcom_ats_offset", (unsigned long long) offset, 1);
1051 fixed = true;
1052 }
1053
1054 if (!fixed) {
1055 // Failed to get offset from ats file, check twrp settings
1056 unsigned long long value;
1057 if (DataManager::GetValue("tw_qcom_ats_offset", value) < 0) {
1058 return;
1059 } else {
1060 offset = (uint64_t) value;
1061 LOGINFO("TWFunc::Fixup_Time: Setting time offset from twrp setting file, offset %llu\n", (unsigned long long) offset);
1062 // Do not consider the settings file as a definitive answer, keep fixed=false so next run will try ats files again
1063 }
1064 }
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001065
1066 gettimeofday(&tv, NULL);
1067
1068 tv.tv_sec += offset/1000;
Phoenix591e444d112018-02-03 07:23:54 +00001069#ifdef TW_CLOCK_OFFSET
1070// Some devices are even quirkier and have ats files that are offset from the actual time
1071 tv.tv_sec = tv.tv_sec + TW_CLOCK_OFFSET;
1072#endif
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001073 tv.tv_usec += (offset%1000)*1000;
1074
Matt Mowera8a89d12016-12-30 18:10:37 -06001075 while (tv.tv_usec >= 1000000)
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001076 {
1077 ++tv.tv_sec;
1078 tv.tv_usec -= 1000000;
1079 }
1080
1081 settimeofday(&tv, NULL);
xNUTxe85f02d2014-07-18 01:30:58 +02001082
1083 LOGINFO("TWFunc::Fixup_Time: Date and time corrected: %s\n", TWFunc::Get_Current_Date().c_str());
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001084#endif
1085}
Ethan Yonkeraf2897c2014-02-10 13:07:14 -06001086
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001087std::vector<std::string> TWFunc::Split_String(const std::string& str, const std::string& delimiter, bool removeEmpty)
1088{
1089 std::vector<std::string> res;
1090 size_t idx = 0, idx_last = 0;
1091
Matt Mowera8a89d12016-12-30 18:10:37 -06001092 while (idx < str.size())
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001093 {
1094 idx = str.find_first_of(delimiter, idx_last);
Matt Mowera8a89d12016-12-30 18:10:37 -06001095 if (idx == std::string::npos)
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001096 idx = str.size();
1097
Matt Mowera8a89d12016-12-30 18:10:37 -06001098 if (idx-idx_last != 0 || !removeEmpty)
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001099 res.push_back(str.substr(idx_last, idx-idx_last));
1100
1101 idx_last = idx + delimiter.size();
1102 }
1103
1104 return res;
1105}
1106
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001107bool TWFunc::Create_Dir_Recursive(const std::string& path, mode_t mode, uid_t uid, gid_t gid)
1108{
1109 std::vector<std::string> parts = Split_String(path, "/");
1110 std::string cur_path;
1111 struct stat info;
Matt Mowera8a89d12016-12-30 18:10:37 -06001112 for (size_t i = 0; i < parts.size(); ++i)
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001113 {
1114 cur_path += "/" + parts[i];
Matt Mowera8a89d12016-12-30 18:10:37 -06001115 if (stat(cur_path.c_str(), &info) < 0 || !S_ISDIR(info.st_mode))
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001116 {
Matt Mowera8a89d12016-12-30 18:10:37 -06001117 if (mkdir(cur_path.c_str(), mode) < 0)
Vojtech Bocek03fd6c52014-03-13 18:46:34 +01001118 return false;
1119 chown(cur_path.c_str(), uid, gid);
1120 }
1121 }
1122 return true;
1123}
1124
xNUTxe85f02d2014-07-18 01:30:58 +02001125int TWFunc::Set_Brightness(std::string brightness_value)
1126{
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001127 int result = -1;
1128 std::string secondary_brightness_file;
xNUTxe85f02d2014-07-18 01:30:58 +02001129
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001130 if (DataManager::GetIntValue("tw_has_brightnesss_file")) {
xNUTxe85f02d2014-07-18 01:30:58 +02001131 LOGINFO("TWFunc::Set_Brightness: Setting brightness control to %s\n", brightness_value.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001132 result = TWFunc::write_to_file(DataManager::GetStrValue("tw_brightness_file"), brightness_value);
Tatsuyuki Ishi548a1752015-12-28 10:08:58 +09001133 DataManager::GetValue("tw_secondary_brightness_file", secondary_brightness_file);
1134 if (!secondary_brightness_file.empty()) {
1135 LOGINFO("TWFunc::Set_Brightness: Setting secondary brightness control to %s\n", brightness_value.c_str());
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001136 TWFunc::write_to_file(secondary_brightness_file, brightness_value);
xNUTxe85f02d2014-07-18 01:30:58 +02001137 }
xNUTxe85f02d2014-07-18 01:30:58 +02001138 }
bigbiff22851b92021-09-01 16:46:57 -04001139 return result ? 0 : -1;
xNUTxe85f02d2014-07-18 01:30:58 +02001140}
1141
bigbiff bigbiffc7eee6f2014-09-02 18:59:01 -04001142bool TWFunc::Toggle_MTP(bool enable) {
1143#ifdef TW_HAS_MTP
1144 static int was_enabled = false;
1145
1146 if (enable && was_enabled) {
1147 if (!PartitionManager.Enable_MTP())
1148 PartitionManager.Disable_MTP();
1149 } else {
1150 was_enabled = DataManager::GetIntValue("tw_mtp_enabled");
1151 PartitionManager.Disable_MTP();
1152 usleep(500);
1153 }
1154 return was_enabled;
1155#else
1156 return false;
1157#endif
1158}
1159
Tom Hite5a926722014-09-15 01:31:03 +00001160void TWFunc::SetPerformanceMode(bool mode) {
1161 if (mode) {
1162 property_set("recovery.perf.mode", "1");
1163 } else {
1164 property_set("recovery.perf.mode", "0");
1165 }
1166 // Some time for events to catch up to init handlers
1167 usleep(500000);
1168}
1169
Jenkins1710bf22014-10-02 20:22:21 -04001170std::string TWFunc::to_string(unsigned long value) {
1171 std::ostringstream os;
1172 os << value;
1173 return os.str();
1174}
1175
Ethan Yonker9132d912015-02-02 10:32:49 -06001176void TWFunc::Disable_Stock_Recovery_Replace(void) {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001177 if (PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), false)) {
Ethan Yonker9132d912015-02-02 10:32:49 -06001178 // Disable flashing of stock recovery
1179 if (TWFunc::Path_Exists("/system/recovery-from-boot.p")) {
1180 rename("/system/recovery-from-boot.p", "/system/recovery-from-boot.bak");
Ethan Yonker74db1572015-10-28 12:44:49 -05001181 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 -06001182 sync();
1183 }
Captain Throwback9d6feb52018-07-27 10:05:24 -04001184 PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false);
Ethan Yonker9132d912015-02-02 10:32:49 -06001185 }
1186}
1187
Ethan Yonker483e9f42016-01-11 22:21:18 -06001188unsigned long long TWFunc::IOCTL_Get_Block_Size(const char* block_device) {
1189 unsigned long block_device_size;
1190 int ret = 0;
1191
1192 int fd = open(block_device, O_RDONLY);
1193 if (fd < 0) {
1194 LOGINFO("Find_Partition_Size: Failed to open '%s', (%s)\n", block_device, strerror(errno));
1195 } else {
1196 ret = ioctl(fd, BLKGETSIZE, &block_device_size);
1197 close(fd);
1198 if (ret) {
1199 LOGINFO("Find_Partition_Size: ioctl error: (%s)\n", strerror(errno));
1200 } else {
1201 return (unsigned long long)(block_device_size) * 512LLU;
1202 }
1203 }
1204 return 0;
1205}
1206
bigbiff bigbiffbad332a2016-07-29 21:18:13 -04001207void TWFunc::copy_kernel_log(string curr_storage) {
1208 std::string dmesgDst = curr_storage + "/dmesg.log";
bigbiffad58e1b2020-07-06 20:24:34 -04001209 std::string dmesgCmd = "/system/bin/dmesg";
bigbiff bigbiffbad332a2016-07-29 21:18:13 -04001210
1211 std::string result;
bigbiffad58e1b2020-07-06 20:24:34 -04001212 Exec_Cmd(dmesgCmd, result, false);
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001213 write_to_file(dmesgDst, result);
bigbiff bigbiffbad332a2016-07-29 21:18:13 -04001214 gui_msg(Msg("copy_kernel_log=Copied kernel log to {1}")(dmesgDst));
1215 tw_set_default_metadata(dmesgDst.c_str());
1216}
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001217
Captain Throwback52978932021-09-05 15:11:07 -04001218void TWFunc::copy_logcat(string curr_storage) {
1219 std::string logcatDst = curr_storage + "/logcat.txt";
1220 std::string logcatCmd = "logcat -d";
1221
1222 std::string result;
1223 Exec_Cmd(logcatCmd, result, false);
1224 write_to_file(logcatDst, result);
1225 gui_msg(Msg("copy_logcat=Copied logcat to {1}")(logcatDst));
1226 tw_set_default_metadata(logcatDst.c_str());
1227}
1228
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001229bool TWFunc::isNumber(string strtocheck) {
1230 int num = 0;
1231 std::istringstream iss(strtocheck);
1232
1233 if (!(iss >> num).fail())
1234 return true;
1235 else
1236 return false;
1237}
1238
1239int TWFunc::stream_adb_backup(string &Restore_Name) {
bigbiffad58e1b2020-07-06 20:24:34 -04001240 string cmd = "/system/bin/bu --twrp stream " + Restore_Name;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001241 LOGINFO("stream_adb_backup: %s\n", cmd.c_str());
1242 int ret = TWFunc::Exec_Cmd(cmd);
1243 if (ret != 0)
1244 return -1;
1245 return ret;
1246}
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001247
bigbiff25d25b92020-06-19 16:07:38 -04001248std::string TWFunc::get_log_dir() {
1249 if (PartitionManager.Find_Partition_By_Path(CACHE_LOGS_DIR) == NULL) {
1250 if (PartitionManager.Find_Partition_By_Path(DATA_LOGS_DIR) == NULL) {
bigbiffaac58612020-08-30 11:18:39 -04001251 LOGINFO("Unable to find a directory to store TWRP logs.");
1252 return "";
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04001253 } else {
bigbiff25d25b92020-06-19 16:07:38 -04001254 return DATA_LOGS_DIR;
bigbiff bigbiffe4bdb152019-03-23 18:33:17 -04001255 }
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001256 }
1257 else {
bigbiff25d25b92020-06-19 16:07:38 -04001258 return CACHE_LOGS_DIR;
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001259 }
1260}
1261
1262void TWFunc::check_selinux_support() {
1263 if (TWFunc::Path_Exists("/prebuilt_file_contexts")) {
1264 if (TWFunc::Path_Exists("/file_contexts")) {
1265 printf("Renaming regular /file_contexts -> /file_contexts.bak\n");
1266 rename("/file_contexts", "/file_contexts.bak");
1267 }
1268 printf("Moving /prebuilt_file_contexts -> /file_contexts\n");
1269 rename("/prebuilt_file_contexts", "/file_contexts");
1270 }
1271 struct selinux_opt selinux_options[] = {
1272 { SELABEL_OPT_PATH, "/file_contexts" }
1273 };
1274 selinux_handle = selabel_open(SELABEL_CTX_FILE, selinux_options, 1);
1275 if (!selinux_handle)
1276 printf("No file contexts for SELinux\n");
1277 else
1278 printf("SELinux contexts loaded from /file_contexts\n");
1279 { // Check to ensure SELinux can be supported by the kernel
1280 char *contexts = NULL;
bigbiff25d25b92020-06-19 16:07:38 -04001281 std::string cacheDir = TWFunc::get_log_dir();
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001282 std::string se_context_check = cacheDir + "recovery/";
1283 int ret = 0;
1284
bigbiff25d25b92020-06-19 16:07:38 -04001285 if (cacheDir == CACHE_LOGS_DIR) {
1286 PartitionManager.Mount_By_Path(CACHE_LOGS_DIR, false);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001287 }
1288 if (TWFunc::Path_Exists(se_context_check)) {
1289 ret = lgetfilecon(se_context_check.c_str(), &contexts);
Makornthawat Emeryabc299c2019-03-29 13:45:22 +00001290 if (ret < 0) {
bigbiffad58e1b2020-07-06 20:24:34 -04001291 LOGINFO("Could not check %s SELinux contexts, using /system/bin/teamwin instead which may be inaccurate.\n", se_context_check.c_str());
1292 lgetfilecon("/system/bin/teamwin", &contexts);
bigbiff bigbiff19874f12019-01-08 20:06:57 -05001293 }
1294 }
1295 if (ret < 0) {
1296 gui_warn("no_kernel_selinux=Kernel does not have support for reading SELinux contexts.");
1297 } else {
1298 free(contexts);
1299 gui_msg("full_selinux=Full SELinux support is present.");
1300 }
1301 }
1302}
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001303
1304bool TWFunc::Is_TWRP_App_In_System() {
bigbiffee7b7ff2020-03-23 15:08:27 -04001305 LOGINFO("checking for twrp app\n");
1306 TWPartition* sys = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
1307 if (!sys->Get_Super_Status()) {
Captain Throwback31c14922020-12-21 11:28:34 -05001308 bool is_system_mounted = true;
1309 if(!PartitionManager.Is_Mounted_By_Path(PartitionManager.Get_Android_Root_Path())) {
1310 is_system_mounted = false;
1311 PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), false);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001312 }
Captain Throwback31c14922020-12-21 11:28:34 -05001313 string base_path = PartitionManager.Get_Android_Root_Path();
1314 if (TWFunc::Path_Exists(PartitionManager.Get_Android_Root_Path() + "/system"))
1315 base_path += "/system"; // For devices with system as a root file system (e.g. Pixel)
1316 string install_path = base_path + "/priv-app";
1317 if (!TWFunc::Path_Exists(install_path))
1318 install_path = base_path + "/app";
1319 install_path += "/twrpapp";
1320 if (TWFunc::Path_Exists(install_path)) {
1321 LOGINFO("App found at '%s'\n", install_path.c_str());
1322 DataManager::SetValue("tw_app_installed_in_system", 1);
1323 return true;
1324 }
1325 if (!is_system_mounted)
1326 PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), false);
bigbiffee7b7ff2020-03-23 15:08:27 -04001327 DataManager::SetValue("tw_app_installed_in_system", 0);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001328 }
1329 DataManager::SetValue("tw_app_installed_in_system", 0);
1330 return false;
1331}
Chaosmaster461e39f2020-02-07 01:48:13 +01001332
epicX271bb3a2020-12-30 01:03:18 +05301333void TWFunc::checkforapp(){
1334
1335 string sdkverstr = System_Property_Get("ro.build.version.sdk");
1336 int sdkver = 0;
1337 if (!sdkverstr.empty()) {
1338 sdkver = atoi(sdkverstr.c_str());
1339 }
1340 if (sdkver <= 13) {
1341 if (sdkver == 0)
1342 LOGINFO("Unable to read sdk version from build prop\n");
1343 else
1344 LOGINFO("SDK version too low for TWRP app (%i < 14)\n", sdkver);
1345 DataManager::SetValue("tw_app_install_status", 1); // 0 = no status, 1 = not installed, 2 = already installed or do not install
1346 goto exit;
1347 }
1348 if (Is_TWRP_App_In_System()) {
1349 DataManager::SetValue("tw_app_install_status", 2); // 0 = no status, 1 = not installed, 2 = already installed or do not install
1350 goto exit;
1351 }
1352 if (PartitionManager.Mount_By_Path("/data", false)) {
1353 const char parent_path[] = "/data/app";
1354 const char app_prefix[] = "me.twrp.twrpapp-";
1355 DIR *d = opendir(parent_path);
1356 if (d) {
1357 struct dirent *p;
1358 while ((p = readdir(d))) {
1359 if (p->d_type != DT_DIR || strlen(p->d_name) < strlen(app_prefix) || strncmp(p->d_name, app_prefix, strlen(app_prefix)))
1360 continue;
1361 closedir(d);
1362 LOGINFO("App found at '%s/%s'\n", parent_path, p->d_name);
1363 DataManager::SetValue("tw_app_install_status", 2); // 0 = no status, 1 = not installed, 2 = already installed or do not install
1364 goto exit;
1365 }
1366 closedir(d);
1367 }
1368 } else {
1369 LOGINFO("Data partition cannot be mounted during app check\n");
1370 DataManager::SetValue("tw_app_install_status", 2); // 0 = no status, 1 = not installed, 2 = already installed or do not install
1371 }
1372
1373 LOGINFO("App not installed\n");
1374 DataManager::SetValue("tw_app_install_status", 1); // 0 = no status, 1 = not installed, 2 = already installed
1375exit:
1376 return;
1377
1378}
1379
Chaosmaster461e39f2020-02-07 01:48:13 +01001380int TWFunc::Property_Override(string Prop_Name, string Prop_Value) {
1381#ifdef TW_INCLUDE_LIBRESETPROP
1382 return setprop(Prop_Name.c_str(), Prop_Value.c_str(), false);
1383#else
1384 return -2;
1385#endif
1386}
1387
bigbiffee7b7ff2020-03-23 15:08:27 -04001388void TWFunc::List_Mounts() {
1389 std::vector<std::string> mounts;
1390 read_file("/proc/mounts", mounts);
1391 LOGINFO("Mounts:\n");
1392 for (auto&& mount: mounts) {
1393 LOGINFO("%s\n", mount.c_str());
1394 }
1395}
1396
bigbiffa957f072021-03-07 18:20:29 -05001397#ifdef TW_INCLUDE_CRYPTO
1398#ifdef USE_FSCRYPT_POLICY_V1
1399bool TWFunc::Get_Encryption_Policy(struct fscrypt_policy_v1 &policy, std::string path) {
1400#else
1401bool TWFunc::Get_Encryption_Policy(struct fscrypt_policy_v2 &policy, std::string path) {
1402#endif
bigbiff7ba75002020-04-11 20:47:09 -04001403 if (!TWFunc::Path_Exists(path)) {
1404 LOGERR("Unable to find %s to get policy\n", path.c_str());
1405 return false;
1406 }
1407 if (!fscrypt_policy_get_struct(path.c_str(), &policy)) {
1408 LOGERR("No policy set for path %s\n", path.c_str());
1409 return false;
1410 }
1411 return true;
1412}
1413
bigbiffa957f072021-03-07 18:20:29 -05001414#ifdef USE_FSCRYPT_POLICY_V1
1415bool TWFunc::Set_Encryption_Policy(std::string path, struct fscrypt_policy_v1 &policy) {
1416#else
1417bool TWFunc::Set_Encryption_Policy(std::string path, struct fscrypt_policy_v2 &policy) {
1418#endif
bigbiff7ba75002020-04-11 20:47:09 -04001419 if (!TWFunc::Path_Exists(path)) {
1420 LOGERR("unable to find %s to set policy\n", path.c_str());
1421 return false;
1422 }
1423 uint8_t binary_policy[FS_KEY_DESCRIPTOR_SIZE];
bigbiffa957f072021-03-07 18:20:29 -05001424 char policy_hex[FSCRYPT_KEY_IDENTIFIER_HEX_SIZE];
1425 bytes_to_hex(binary_policy, FS_KEY_DESCRIPTOR_SIZE, policy_hex);
bigbiff7ba75002020-04-11 20:47:09 -04001426 if (!fscrypt_policy_set_struct(path.c_str(), &policy)) {
1427 LOGERR("unable to set policy for path: %s\n", path.c_str());
1428 return false;
1429 }
1430 return true;
1431}
bigbiffa957f072021-03-07 18:20:29 -05001432#endif
epicXa721f952021-01-04 13:01:31 +05301433
1434string TWFunc::Check_For_TwrpFolder() {
1435 string oldFolder = "";
1436 vector<string> customTWRPFolders;
1437 string mainPath = DataManager::GetCurrentStoragePath();
1438 DIR* d;
1439 struct dirent* de;
1440
epicX11e90832021-03-01 00:02:57 +05301441 if (DataManager::GetIntValue(TW_IS_ENCRYPTED)) {
epicXa721f952021-01-04 13:01:31 +05301442 goto exit;
1443 }
1444
1445
1446 d = opendir(mainPath.c_str());
1447 if (d == NULL) {
1448 goto exit;
1449 }
1450
1451 while ((de = readdir(d)) != NULL) {
1452 string name = de->d_name;
1453 string fullPath = mainPath + '/' + name;
1454 unsigned char type = de->d_type;
1455
epicX11e90832021-03-01 00:02:57 +05301456 if (name == "." || name == "..") continue;
epicXa721f952021-01-04 13:01:31 +05301457
epicX11e90832021-03-01 00:02:57 +05301458 if (type == DT_UNKNOWN) {
epicXa721f952021-01-04 13:01:31 +05301459 type = Get_D_Type_From_Stat(fullPath);
1460 }
1461
epicX11e90832021-03-01 00:02:57 +05301462 if (type == DT_DIR && Path_Exists(fullPath + '/' + TW_SETTINGS_FILE)) {
1463 if ('/' + name == TW_DEFAULT_RECOVERY_FOLDER) {
epicXa721f952021-01-04 13:01:31 +05301464 oldFolder = name;
1465 } else {
1466 customTWRPFolders.push_back(name);
1467 }
1468 }
1469 }
1470
1471 closedir(d);
1472
epicX11e90832021-03-01 00:02:57 +05301473 if (oldFolder == "" && customTWRPFolders.empty()) {
epicXa721f952021-01-04 13:01:31 +05301474 LOGINFO("No recovery folder found. Using default folder.\n");
1475 goto exit;
epicX11e90832021-03-01 00:02:57 +05301476 } else if (customTWRPFolders.empty()) {
epicXa721f952021-01-04 13:01:31 +05301477 LOGINFO("No custom recovery folder found. Using TWRP as default.\n");
1478 goto exit;
1479 } else {
epicX11e90832021-03-01 00:02:57 +05301480 if (customTWRPFolders.size() > 1) {
epicXa721f952021-01-04 13:01:31 +05301481 LOGINFO("More than one custom recovery folder found. Using first one from the list.\n");
1482 } else {
1483 LOGINFO("One custom recovery folder found.\n");
1484 }
1485 string customPath = '/' + customTWRPFolders.at(0);
1486
epicX11e90832021-03-01 00:02:57 +05301487 if (Path_Exists(mainPath + TW_DEFAULT_RECOVERY_FOLDER)) {
epicXa721f952021-01-04 13:01:31 +05301488 string oldBackupFolder = mainPath + TW_DEFAULT_RECOVERY_FOLDER + "/BACKUPS/" + DataManager::GetStrValue("device_id");
1489 string newBackupFolder = mainPath + customPath + "/BACKUPS/" + DataManager::GetStrValue("device_id");
1490
epicX11e90832021-03-01 00:02:57 +05301491 if (Path_Exists(oldBackupFolder)) {
epicXa721f952021-01-04 13:01:31 +05301492 vector<string> backups;
1493 d = opendir(oldBackupFolder.c_str());
1494
1495 if (d != NULL) {
1496 while ((de = readdir(d)) != NULL) {
1497 string name = de->d_name;
1498 unsigned char type = de->d_type;
1499
epicX11e90832021-03-01 00:02:57 +05301500 if (name == "." || name == "..") continue;
epicXa721f952021-01-04 13:01:31 +05301501
epicX11e90832021-03-01 00:02:57 +05301502 if (type == DT_UNKNOWN) {
epicXa721f952021-01-04 13:01:31 +05301503 type = Get_D_Type_From_Stat(mainPath + '/' + name);
1504 }
1505
epicX11e90832021-03-01 00:02:57 +05301506 if (type == DT_DIR) {
epicXa721f952021-01-04 13:01:31 +05301507 backups.push_back(name);
1508 }
1509 }
1510 closedir(d);
1511 }
1512
epicX11e90832021-03-01 00:02:57 +05301513 for (auto it = backups.begin(); it != backups.end(); it++) {
epicXa721f952021-01-04 13:01:31 +05301514 Exec_Cmd("mv -f \"" + oldBackupFolder + '/' + *it + "\" \"" + newBackupFolder + '/' + *it + (Path_Exists(newBackupFolder + '/' + *it) ? "_new\"" : "\""));
1515 }
1516 }
1517 Exec_Cmd("rm -rf \"" + mainPath + TW_DEFAULT_RECOVERY_FOLDER + '\"');
1518 }
1519
1520 return customPath;
1521 }
1522
1523exit:
1524 return TW_DEFAULT_RECOVERY_FOLDER;
1525}
zhenyolka90850472021-11-08 19:05:30 +03001526
1527bool TWFunc::Check_Xml_Format(const std::string filename) {
1528 std::string buffer(' ', 4);
1529 std::string abx_hdr("ABX\x00", 4);
1530 std::ifstream File;
1531 File.open(filename);
1532 if (File.is_open()) {
1533 File.get(&buffer[0], buffer.size());
1534 File.close();
1535 // Android Binary Xml start from these bytes
1536 if(!buffer.compare(0, abx_hdr.size(), abx_hdr))
1537 return false; // bad format, not possible to parse
1538 }
1539 return true; // good format, possible to parse
1540}
1541
Ethan Yonkeraf2897c2014-02-10 13:07:14 -06001542#endif // ndef BUILD_TWRPTAR_MAIN