blob: db98a363ac6d447b5e7bf8bc7123af493ce91a61 [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>
Dees_Troy38bd7602012-09-14 13:33:53 -040038#include "twrp-functions.hpp"
Dees_Troy2673cec2013-04-02 20:22:16 +000039#include "twcommon.h"
Ethan Yonkeraf2897c2014-02-10 13:07:14 -060040#ifndef BUILD_TWRPTAR_MAIN
Dees_Troyb46a6842012-09-25 11:06:46 -040041#include "data.hpp"
Ethan Yonkeraf2897c2014-02-10 13:07:14 -060042#include "partitions.hpp"
Dees_Troy3477d712012-09-27 15:44:01 -040043#include "variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000044#include "bootloader.h"
Ethan Yonkeraf2897c2014-02-10 13:07:14 -060045#ifdef ANDROID_RB_POWEROFF
46 #include "cutils/android_reboot.h"
47#endif
48#endif // ndef BUILD_TWRPTAR_MAIN
Dees_Troy83bd4832013-05-04 12:39:56 +000049#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
50 #include "openaes/inc/oaes_lib.h"
51#endif
Dees_Troy38bd7602012-09-14 13:33:53 -040052
Dees_Troyb05ddee2013-01-28 20:24:50 +000053extern "C" {
54 #include "libcrecovery/common.h"
55}
56
bigbiff bigbiff9c754052013-01-09 09:09:08 -050057/* Execute a command */
Vojtech Bocek05534202013-09-11 08:11:56 +020058int TWFunc::Exec_Cmd(const string& cmd, string &result) {
Dees_Troy29a06352013-08-24 12:06:47 +000059 FILE* exec;
60 char buffer[130];
61 int ret = 0;
62 exec = __popen(cmd.c_str(), "r");
63 if (!exec) return -1;
64 while(!feof(exec)) {
65 memset(&buffer, 0, sizeof(buffer));
66 if (fgets(buffer, 128, exec) != NULL) {
67 buffer[128] = '\n';
68 buffer[129] = NULL;
bigbiff bigbiff9c754052013-01-09 09:09:08 -050069 result += buffer;
Dees_Troyb05ddee2013-01-28 20:24:50 +000070 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -050071 }
Dees_Troy29a06352013-08-24 12:06:47 +000072 ret = __pclose(exec);
73 return ret;
bigbiff bigbiff9c754052013-01-09 09:09:08 -050074}
75
Vojtech Bocek05534202013-09-11 08:11:56 +020076int TWFunc::Exec_Cmd(const string& cmd) {
77 pid_t pid;
78 int status;
79 switch(pid = fork())
80 {
81 case -1:
bigbiff bigbiff731df792014-02-20 18:26:13 -050082 LOGERR("Exec_Cmd(): vfork failed: %d!\n", errno);
Vojtech Bocek05534202013-09-11 08:11:56 +020083 return -1;
84 case 0: // child
85 execl("/sbin/sh", "sh", "-c", cmd.c_str(), NULL);
86 _exit(127);
87 break;
88 default:
89 {
90 if (TWFunc::Wait_For_Child(pid, &status, cmd) != 0)
91 return -1;
92 else
93 return 0;
94 }
95 }
96}
97
Dees_Troy38bd7602012-09-14 13:33:53 -040098// Returns "file.name" from a full /path/to/file.name
99string TWFunc::Get_Filename(string Path) {
100 size_t pos = Path.find_last_of("/");
101 if (pos != string::npos) {
102 string Filename;
103 Filename = Path.substr(pos + 1, Path.size() - pos - 1);
104 return Filename;
105 } else
106 return Path;
107}
108
109// Returns "/path/to/" from a full /path/to/file.name
110string TWFunc::Get_Path(string Path) {
111 size_t pos = Path.find_last_of("/");
112 if (pos != string::npos) {
113 string Pathonly;
114 Pathonly = Path.substr(0, pos + 1);
115 return Pathonly;
116 } else
117 return Path;
118}
119
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600120int TWFunc::Wait_For_Child(pid_t pid, int *status, string Child_Name) {
121 pid_t rc_pid;
122
123 rc_pid = waitpid(pid, status, 0);
124 if (rc_pid > 0) {
125 if (WEXITSTATUS(*status) == 0)
126 LOGINFO("%s process ended with RC=%d\n", Child_Name.c_str(), WEXITSTATUS(*status)); // Success
127 else if (WIFSIGNALED(*status)) {
128 LOGINFO("%s process ended with signal: %d\n", Child_Name.c_str(), WTERMSIG(*status)); // Seg fault or some other non-graceful termination
129 return -1;
130 } else if (WEXITSTATUS(*status) != 0) {
131 LOGINFO("%s process ended with ERROR=%d\n", Child_Name.c_str(), WEXITSTATUS(*status)); // Graceful exit, but there was an error
132 return -1;
133 }
134 } else { // no PID returned
135 if (errno == ECHILD)
136 LOGINFO("%s no child process exist\n", Child_Name.c_str());
137 else {
138 LOGINFO("%s Unexpected error\n", Child_Name.c_str());
139 return -1;
140 }
141 }
142 return 0;
143}
144
145bool TWFunc::Path_Exists(string Path) {
146 // Check to see if the Path exists
147 struct stat st;
148 if (stat(Path.c_str(), &st) != 0)
149 return false;
150 else
151 return true;
152}
153
154int TWFunc::Get_File_Type(string fn) {
155 string::size_type i = 0;
156 int firstbyte = 0, secondbyte = 0;
157 char header[3];
158
159 ifstream f;
160 f.open(fn.c_str(), ios::in | ios::binary);
161 f.get(header, 3);
162 f.close();
163 firstbyte = header[i] & 0xff;
164 secondbyte = header[++i] & 0xff;
165
166 if (firstbyte == 0x1f && secondbyte == 0x8b)
167 return 1; // Compressed
168 else if (firstbyte == 0x4f && secondbyte == 0x41)
169 return 2; // Encrypted
170 else
171 return 0; // Unknown
172
173 return 0;
174}
175
176int TWFunc::Try_Decrypting_File(string fn, string password) {
177#ifndef TW_EXCLUDE_ENCRYPTED_BACKUPS
178 OAES_CTX * ctx = NULL;
179 uint8_t _key_data[32] = "";
180 FILE *f;
181 uint8_t buffer[4096];
182 uint8_t *buffer_out = NULL;
183 uint8_t *ptr = NULL;
184 size_t read_len = 0, out_len = 0;
185 int firstbyte = 0, secondbyte = 0, key_len;
186 size_t _j = 0;
187 size_t _key_data_len = 0;
188
189 // mostly kanged from OpenAES oaes.c
190 for( _j = 0; _j < 32; _j++ )
191 _key_data[_j] = _j + 1;
192 _key_data_len = password.size();
193 if( 16 >= _key_data_len )
194 _key_data_len = 16;
195 else if( 24 >= _key_data_len )
196 _key_data_len = 24;
197 else
198 _key_data_len = 32;
199 memcpy(_key_data, password.c_str(), password.size());
200
201 ctx = oaes_alloc();
202 if (ctx == NULL) {
203 LOGERR("Failed to allocate OAES\n");
204 return -1;
205 }
206
207 oaes_key_import_data(ctx, _key_data, _key_data_len);
208
209 f = fopen(fn.c_str(), "rb");
210 if (f == NULL) {
211 LOGERR("Failed to open '%s' to try decrypt\n", fn.c_str());
212 return -1;
213 }
214 read_len = fread(buffer, sizeof(uint8_t), 4096, f);
215 if (read_len <= 0) {
216 LOGERR("Read size during try decrypt failed\n");
217 fclose(f);
218 return -1;
219 }
220 if (oaes_decrypt(ctx, buffer, read_len, NULL, &out_len) != OAES_RET_SUCCESS) {
221 LOGERR("Error: Failed to retrieve required buffer size for trying decryption.\n");
222 fclose(f);
223 return -1;
224 }
225 buffer_out = (uint8_t *) calloc(out_len, sizeof(char));
226 if (buffer_out == NULL) {
227 LOGERR("Failed to allocate output buffer for try decrypt.\n");
228 fclose(f);
229 return -1;
230 }
231 if (oaes_decrypt(ctx, buffer, read_len, buffer_out, &out_len) != OAES_RET_SUCCESS) {
232 LOGERR("Failed to decrypt file '%s'\n", fn.c_str());
233 fclose(f);
234 free(buffer_out);
235 return 0;
236 }
237 fclose(f);
238 if (out_len < 2) {
239 LOGINFO("Successfully decrypted '%s' but read length %i too small.\n", fn.c_str(), out_len);
240 free(buffer_out);
241 return 1; // Decrypted successfully
242 }
243 ptr = buffer_out;
244 firstbyte = *ptr & 0xff;
245 ptr++;
246 secondbyte = *ptr & 0xff;
247 if (firstbyte == 0x1f && secondbyte == 0x8b) {
248 LOGINFO("Successfully decrypted '%s' and file is compressed.\n", fn.c_str());
249 free(buffer_out);
250 return 3; // Compressed
251 }
252 if (out_len >= 262) {
253 ptr = buffer_out + 257;
254 if (strncmp((char*)ptr, "ustar", 5) == 0) {
255 LOGINFO("Successfully decrypted '%s' and file is tar format.\n", fn.c_str());
256 free(buffer_out);
257 return 2; // Tar
258 }
259 }
260 free(buffer_out);
261 LOGINFO("No errors decrypting '%s' but no known file format.\n", fn.c_str());
262 return 1; // Decrypted successfully
263#else
264 LOGERR("Encrypted backup support not included.\n");
265 return -1;
266#endif
267}
268
269unsigned long TWFunc::Get_File_Size(string Path) {
270 struct stat st;
271
272 if (stat(Path.c_str(), &st) != 0)
273 return 0;
274 return st.st_size;
275}
276
Vojtech Bocek05f87d62014-03-11 22:08:23 +0100277std::string TWFunc::Remove_Trailing_Slashes(const std::string& path, bool leaveLast)
278{
279 std::string res;
280 size_t last_idx = 0, idx = 0;
281
282 while(last_idx != std::string::npos)
283 {
284 if(last_idx != 0)
285 res += '/';
286
287 idx = path.find_first_of('/', last_idx);
288 if(idx == std::string::npos) {
289 res += path.substr(last_idx, idx);
290 break;
291 }
292
293 res += path.substr(last_idx, idx-last_idx);
294 last_idx = path.find_first_not_of('/', idx);
295 }
296
297 if(leaveLast)
298 res += '/';
299 return res;
300}
301
Ethan Yonker1b7a31b2014-07-03 15:09:22 -0500302vector<string> TWFunc::split_string(const string &in, char del, bool skip_empty) {
303 vector<string> res;
304
305 if (in.empty() || del == '\0')
306 return res;
307
308 string field;
309 istringstream f(in);
310 if (del == '\n') {
311 while(getline(f, field)) {
312 if (field.empty() && skip_empty)
313 continue;
314 res.push_back(field);
315 }
316 } else {
317 while(getline(f, field, del)) {
318 if (field.empty() && skip_empty)
319 continue;
320 res.push_back(field);
321 }
322 }
323 return res;
324}
325
Ethan Yonkeraf2897c2014-02-10 13:07:14 -0600326#ifndef BUILD_TWRPTAR_MAIN
327
Dees_Troy38bd7602012-09-14 13:33:53 -0400328// Returns "/path" from a full /path/to/file.name
329string TWFunc::Get_Root_Path(string Path) {
330 string Local_Path = Path;
331
332 // Make sure that we have a leading slash
333 if (Local_Path.substr(0, 1) != "/")
334 Local_Path = "/" + Local_Path;
335
336 // Trim the path to get the root path only
337 size_t position = Local_Path.find("/", 2);
338 if (position != string::npos) {
339 Local_Path.resize(position);
340 }
341 return Local_Path;
342}
343
344void TWFunc::install_htc_dumlock(void) {
Dees_Troy38bd7602012-09-14 13:33:53 -0400345 int need_libs = 0;
346
347 if (!PartitionManager.Mount_By_Path("/system", true))
348 return;
349
350 if (!PartitionManager.Mount_By_Path("/data", true))
351 return;
352
Dees_Troy2673cec2013-04-02 20:22:16 +0000353 gui_print("Installing HTC Dumlock to system...\n");
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500354 copy_file("/res/htcd/htcdumlocksys", "/system/bin/htcdumlock", 0755);
Dees_Troy8170a922012-09-18 15:40:25 -0400355 if (!Path_Exists("/system/bin/flash_image")) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000356 gui_print("Installing flash_image...\n");
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500357 copy_file("/res/htcd/flash_imagesys", "/system/bin/flash_image", 0755);
Dees_Troy38bd7602012-09-14 13:33:53 -0400358 need_libs = 1;
359 } else
Dees_Troy2673cec2013-04-02 20:22:16 +0000360 gui_print("flash_image is already installed, skipping...\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400361 if (!Path_Exists("/system/bin/dump_image")) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000362 gui_print("Installing dump_image...\n");
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500363 copy_file("/res/htcd/dump_imagesys", "/system/bin/dump_image", 0755);
Dees_Troy38bd7602012-09-14 13:33:53 -0400364 need_libs = 1;
365 } else
Dees_Troy2673cec2013-04-02 20:22:16 +0000366 gui_print("dump_image is already installed, skipping...\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400367 if (need_libs) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000368 gui_print("Installing libs needed for flash_image and dump_image...\n");
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500369 copy_file("/res/htcd/libbmlutils.so", "/system/lib/libbmlutils.so", 0755);
370 copy_file("/res/htcd/libflashutils.so", "/system/lib/libflashutils.so", 0755);
371 copy_file("/res/htcd/libmmcutils.so", "/system/lib/libmmcutils.so", 0755);
372 copy_file("/res/htcd/libmtdutils.so", "/system/lib/libmtdutils.so", 0755);
Dees_Troy38bd7602012-09-14 13:33:53 -0400373 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000374 gui_print("Installing HTC Dumlock app...\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400375 mkdir("/data/app", 0777);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500376 unlink("/data/app/com.teamwin.htcdumlock*");
377 copy_file("/res/htcd/HTCDumlock.apk", "/data/app/com.teamwin.htcdumlock.apk", 0777);
Dees_Troy38bd7602012-09-14 13:33:53 -0400378 sync();
Dees_Troy2673cec2013-04-02 20:22:16 +0000379 gui_print("HTC Dumlock is installed.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400380}
381
382void TWFunc::htc_dumlock_restore_original_boot(void) {
383 if (!PartitionManager.Mount_By_Path("/sdcard", true))
384 return;
385
Dees_Troy2673cec2013-04-02 20:22:16 +0000386 gui_print("Restoring original boot...\n");
Vojtech Bocek05534202013-09-11 08:11:56 +0200387 Exec_Cmd("htcdumlock restore");
Dees_Troy2673cec2013-04-02 20:22:16 +0000388 gui_print("Original boot restored.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400389}
390
391void TWFunc::htc_dumlock_reflash_recovery_to_boot(void) {
392 if (!PartitionManager.Mount_By_Path("/sdcard", true))
393 return;
Dees_Troy2673cec2013-04-02 20:22:16 +0000394 gui_print("Reflashing recovery to boot...\n");
Vojtech Bocek05534202013-09-11 08:11:56 +0200395 Exec_Cmd("htcdumlock recovery noreboot");
Dees_Troy2673cec2013-04-02 20:22:16 +0000396 gui_print("Recovery is flashed to boot.\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400397}
Dees_Troy43d8b002012-09-17 16:00:01 -0400398
399int TWFunc::Recursive_Mkdir(string Path) {
400 string pathCpy = Path;
401 string wholePath;
402 size_t pos = pathCpy.find("/", 2);
403
404 while (pos != string::npos)
405 {
406 wholePath = pathCpy.substr(0, pos);
407 if (mkdir(wholePath.c_str(), 0777) && errno != EEXIST) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000408 LOGERR("Unable to create folder: %s (errno=%d)\n", wholePath.c_str(), errno);
Dees_Troy43d8b002012-09-17 16:00:01 -0400409 return false;
410 }
411
412 pos = pathCpy.find("/", pos + 1);
413 }
414 if (mkdir(wholePath.c_str(), 0777) && errno != EEXIST)
415 return false;
416 return true;
417}
418
Dees_Troyb46a6842012-09-25 11:06:46 -0400419void TWFunc::GUI_Operation_Text(string Read_Value, string Default_Text) {
420 string Display_Text;
421
422 DataManager::GetValue(Read_Value, Display_Text);
423 if (Display_Text.empty())
424 Display_Text = Default_Text;
425
426 DataManager::SetValue("tw_operation", Display_Text);
427 DataManager::SetValue("tw_partition", "");
428}
429
430void TWFunc::GUI_Operation_Text(string Read_Value, string Partition_Name, string Default_Text) {
431 string Display_Text;
432
433 DataManager::GetValue(Read_Value, Display_Text);
434 if (Display_Text.empty())
435 Display_Text = Default_Text;
436
437 DataManager::SetValue("tw_operation", Display_Text);
438 DataManager::SetValue("tw_partition", Partition_Name);
Dees_Troy7c2dec82012-09-26 09:49:14 -0400439}
440
Dees_Troy2673cec2013-04-02 20:22:16 +0000441void TWFunc::Copy_Log(string Source, string Destination) {
Dees Troy9d7fdf52013-09-19 20:49:25 +0000442 PartitionManager.Mount_By_Path(Destination, false);
Dees_Troy2673cec2013-04-02 20:22:16 +0000443 FILE *destination_log = fopen(Destination.c_str(), "a");
444 if (destination_log == NULL) {
445 LOGERR("TWFunc::Copy_Log -- Can't open destination log file: '%s'\n", Destination.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600446 } else {
Dees_Troy2673cec2013-04-02 20:22:16 +0000447 FILE *source_log = fopen(Source.c_str(), "r");
448 if (source_log != NULL) {
449 fseek(source_log, Log_Offset, SEEK_SET);
450 char buffer[4096];
451 while (fgets(buffer, sizeof(buffer), source_log))
452 fputs(buffer, destination_log); // Buffered write of log file
453 Log_Offset = ftell(source_log);
454 fflush(source_log);
455 fclose(source_log);
Dees_Troy6ef66352013-02-21 08:26:57 -0600456 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000457 fflush(destination_log);
458 fclose(destination_log);
Dees_Troy6ef66352013-02-21 08:26:57 -0600459 }
Dees_Troya58bead2012-09-27 09:49:29 -0400460}
461
Dees_Troy2673cec2013-04-02 20:22:16 +0000462void TWFunc::Update_Log_File(void) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500463 // Copy logs to cache so the system can find out what happened.
Dees Troy9d7fdf52013-09-19 20:49:25 +0000464 if (PartitionManager.Mount_By_Path("/cache", false)) {
465 if (!TWFunc::Path_Exists("/cache/recovery/.")) {
466 LOGINFO("Recreating /cache/recovery folder.\n");
467 if (mkdir("/cache/recovery", S_IRWXU | S_IRWXG | S_IWGRP | S_IXGRP) != 0)
468 LOGINFO("Unable to create /cache/recovery folder.\n");
469 }
470 Copy_Log(TMP_LOG_FILE, "/cache/recovery/log");
471 copy_file("/cache/recovery/log", "/cache/recovery/last_log", 600);
472 chown("/cache/recovery/log", 1000, 1000);
473 chmod("/cache/recovery/log", 0600);
474 chmod("/cache/recovery/last_log", 0640);
475 } else {
476 LOGINFO("Failed to mount /cache for TWFunc::Update_Log_File\n");
477 }
Dees_Troya58bead2012-09-27 09:49:29 -0400478
Dees_Troy2673cec2013-04-02 20:22:16 +0000479 // Reset bootloader message
480 TWPartition* Part = PartitionManager.Find_Partition_By_Path("/misc");
481 if (Part != NULL) {
482 struct bootloader_message boot;
483 memset(&boot, 0, sizeof(boot));
484 if (Part->Current_File_System == "mtd") {
485 if (set_bootloader_message_mtd_name(&boot, Part->MTD_Name.c_str()) != 0)
486 LOGERR("Unable to set MTD bootloader message.\n");
487 } else if (Part->Current_File_System == "emmc") {
488 if (set_bootloader_message_block_name(&boot, Part->Actual_Block_Device.c_str()) != 0)
489 LOGERR("Unable to set emmc bootloader message.\n");
490 } else {
491 LOGERR("Unknown file system for /misc: '%s'\n", Part->Current_File_System.c_str());
492 }
493 }
Dees_Troya58bead2012-09-27 09:49:29 -0400494
Dees Troy9d7fdf52013-09-19 20:49:25 +0000495 if (PartitionManager.Mount_By_Path("/cache", true)) {
496 if (unlink("/cache/recovery/command") && errno != ENOENT) {
497 LOGINFO("Can't unlink %s\n", "/cache/recovery/command");
498 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500499 }
Dees_Troya58bead2012-09-27 09:49:29 -0400500
Dees_Troy2673cec2013-04-02 20:22:16 +0000501 sync();
502}
503
504void TWFunc::Update_Intent_File(string Intent) {
505 if (PartitionManager.Mount_By_Path("/cache", false) && !Intent.empty()) {
506 TWFunc::write_file("/cache/recovery/intent", Intent);
507 }
Dees_Troya58bead2012-09-27 09:49:29 -0400508}
509
510// reboot: Reboot the system. Return -1 on error, no return on success
511int TWFunc::tw_reboot(RebootCommand command)
512{
513 // Always force a sync before we reboot
Dees_Troy6ef66352013-02-21 08:26:57 -0600514 sync();
Dees_Troya58bead2012-09-27 09:49:29 -0400515
Dees_Troy2673cec2013-04-02 20:22:16 +0000516 switch (command) {
517 case rb_current:
518 case rb_system:
519 Update_Log_File();
520 Update_Intent_File("s");
521 sync();
522 check_and_run_script("/sbin/rebootsystem.sh", "reboot system");
523 return reboot(RB_AUTOBOOT);
524 case rb_recovery:
525 check_and_run_script("/sbin/rebootrecovery.sh", "reboot recovery");
526 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "recovery");
527 case rb_bootloader:
528 check_and_run_script("/sbin/rebootbootloader.sh", "reboot bootloader");
529 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "bootloader");
530 case rb_poweroff:
531 check_and_run_script("/sbin/poweroff.sh", "power off");
Dees_Troya4438782013-02-22 18:44:00 +0000532#ifdef ANDROID_RB_POWEROFF
Dees_Troy2673cec2013-04-02 20:22:16 +0000533 android_reboot(ANDROID_RB_POWEROFF, 0, 0);
Dees_Troya4438782013-02-22 18:44:00 +0000534#endif
Dees_Troy2673cec2013-04-02 20:22:16 +0000535 return reboot(RB_POWER_OFF);
536 case rb_download:
537 check_and_run_script("/sbin/rebootdownload.sh", "reboot download");
538 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, LINUX_REBOOT_CMD_RESTART2, (void*) "download");
539 default:
540 return -1;
Dees_Troy6ef66352013-02-21 08:26:57 -0600541 }
542 return -1;
Dees_Troya58bead2012-09-27 09:49:29 -0400543}
544
545void TWFunc::check_and_run_script(const char* script_file, const char* display_name)
546{
547 // Check for and run startup script if script exists
548 struct stat st;
549 if (stat(script_file, &st) == 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000550 gui_print("Running %s script...\n", display_name);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500551 chmod(script_file, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
Vojtech Bocek05534202013-09-11 08:11:56 +0200552 TWFunc::Exec_Cmd(script_file);
Dees_Troy2673cec2013-04-02 20:22:16 +0000553 gui_print("\nFinished running %s script.\n", display_name);
Dees_Troya58bead2012-09-27 09:49:29 -0400554 }
Dees_Troy3477d712012-09-27 15:44:01 -0400555}
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500556
557int TWFunc::removeDir(const string path, bool skipParent) {
Dees_Troyce675462013-01-09 19:48:21 +0000558 DIR *d = opendir(path.c_str());
559 int r = 0;
560 string new_path;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500561
Dees_Troyce675462013-01-09 19:48:21 +0000562 if (d == NULL) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000563 LOGERR("Error opening '%s'\n", path.c_str());
Dees_Troyce675462013-01-09 19:48:21 +0000564 return -1;
565 }
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500566
Dees_Troyce675462013-01-09 19:48:21 +0000567 if (d) {
568 struct dirent *p;
569 while (!r && (p = readdir(d))) {
Dees_Troyce675462013-01-09 19:48:21 +0000570 if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, ".."))
571 continue;
572 new_path = path + "/";
573 new_path.append(p->d_name);
574 if (p->d_type == DT_DIR) {
575 r = removeDir(new_path, true);
576 if (!r) {
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500577 if (p->d_type == DT_DIR)
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500578 r = rmdir(new_path.c_str());
579 else
Dees_Troy2673cec2013-04-02 20:22:16 +0000580 LOGINFO("Unable to removeDir '%s': %s\n", new_path.c_str(), strerror(errno));
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500581 }
bigbiff bigbiff98f1f902013-01-19 18:46:13 -0500582 } 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 +0000583 r = unlink(new_path.c_str());
Dees_Troye34c1332013-02-06 19:13:00 +0000584 if (r != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000585 LOGINFO("Unable to unlink '%s: %s'\n", new_path.c_str(), strerror(errno));
Dees_Troye34c1332013-02-06 19:13:00 +0000586 }
Dees_Troyce675462013-01-09 19:48:21 +0000587 }
588 }
589 closedir(d);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500590
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500591 if (!r) {
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500592 if (skipParent)
593 return 0;
594 else
595 r = rmdir(path.c_str());
596 }
Dees_Troyce675462013-01-09 19:48:21 +0000597 }
598 return r;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500599}
600
601int TWFunc::copy_file(string src, string dst, int mode) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000602 LOGINFO("Copying file %s to %s\n", src.c_str(), dst.c_str());
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500603 ifstream srcfile(src.c_str(), ios::binary);
604 ofstream dstfile(dst.c_str(), ios::binary);
605 dstfile << srcfile.rdbuf();
606 srcfile.close();
607 dstfile.close();
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500608 if (chmod(dst.c_str(), mode) != 0)
609 return -1;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500610 return 0;
611}
Dees_Troy3ee47bc2013-01-25 21:47:37 +0000612
613unsigned int TWFunc::Get_D_Type_From_Stat(string Path) {
614 struct stat st;
615
616 stat(Path.c_str(), &st);
617 if (st.st_mode & S_IFDIR)
618 return DT_DIR;
619 else if (st.st_mode & S_IFBLK)
620 return DT_BLK;
621 else if (st.st_mode & S_IFCHR)
622 return DT_CHR;
623 else if (st.st_mode & S_IFIFO)
624 return DT_FIFO;
625 else if (st.st_mode & S_IFLNK)
626 return DT_LNK;
627 else if (st.st_mode & S_IFREG)
628 return DT_REG;
629 else if (st.st_mode & S_IFSOCK)
630 return DT_SOCK;
631 return DT_UNKNOWN;
Dees_Troye34c1332013-02-06 19:13:00 +0000632}
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500633
634int TWFunc::read_file(string fn, string& results) {
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200635 ifstream file;
636 file.open(fn.c_str(), ios::in);
637
638 if (file.is_open()) {
639 file >> results;
640 file.close();
641 return 0;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500642 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200643
644 LOGINFO("Cannot find file %s\n", fn.c_str());
645 return -1;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500646}
647
648int TWFunc::read_file(string fn, vector<string>& results) {
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500649 ifstream file;
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500650 string line;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500651 file.open(fn.c_str(), ios::in);
652 if (file.is_open()) {
bigbiff bigbiffcdcfee42013-02-27 21:11:26 -0500653 while (getline(file, line))
654 results.push_back(line);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500655 file.close();
656 return 0;
657 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000658 LOGINFO("Cannot find file %s\n", fn.c_str());
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500659 return -1;
660}
661
662int TWFunc::write_file(string fn, string& line) {
663 FILE *file;
664 file = fopen(fn.c_str(), "w");
665 if (file != NULL) {
666 fwrite(line.c_str(), line.size(), 1, file);
667 fclose(file);
668 return 0;
669 }
Dees_Troy2673cec2013-04-02 20:22:16 +0000670 LOGINFO("Cannot find file %s\n", fn.c_str());
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500671 return -1;
672}
673
674timespec TWFunc::timespec_diff(timespec& start, timespec& end)
675{
Dees_Troy6ef66352013-02-21 08:26:57 -0600676 timespec temp;
677 if ((end.tv_nsec-start.tv_nsec)<0) {
678 temp.tv_sec = end.tv_sec-start.tv_sec-1;
679 temp.tv_nsec = 1000000000+end.tv_nsec-start.tv_nsec;
680 } else {
681 temp.tv_sec = end.tv_sec-start.tv_sec;
682 temp.tv_nsec = end.tv_nsec-start.tv_nsec;
683 }
684 return temp;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500685}
686
Vojtech Boceke5ffcd12014-02-06 21:17:32 +0100687int32_t TWFunc::timespec_diff_ms(timespec& start, timespec& end)
688{
689 return ((end.tv_sec * 1000) + end.tv_nsec/1000000) -
690 ((start.tv_sec * 1000) + start.tv_nsec/1000000);
691}
692
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200693int TWFunc::drop_caches(void) {
Dees_Troy6ef66352013-02-21 08:26:57 -0600694 string file = "/proc/sys/vm/drop_caches";
695 string value = "3";
696 if (write_file(file, value) != 0)
697 return -1;
698 return 0;
699}
700
701int TWFunc::Check_su_Perms(void) {
702 struct stat st;
703 int ret = 0;
704
705 if (!PartitionManager.Mount_By_Path("/system", false))
706 return 0;
707
708 // Check to ensure that perms are 6755 for all 3 file locations
709 if (stat("/system/bin/su", &st) == 0) {
710 if ((st.st_mode & (S_ISUID | S_ISGID | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)) != (S_ISUID | S_ISGID | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) || st.st_uid != 0 || st.st_gid != 0) {
711 ret = 1;
712 }
713 }
714 if (stat("/system/xbin/su", &st) == 0) {
715 if ((st.st_mode & (S_ISUID | S_ISGID | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)) != (S_ISUID | S_ISGID | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) || st.st_uid != 0 || st.st_gid != 0) {
716 ret += 2;
717 }
718 }
719 if (stat("/system/bin/.ext/.su", &st) == 0) {
720 if ((st.st_mode & (S_ISUID | S_ISGID | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH)) != (S_ISUID | S_ISGID | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) || st.st_uid != 0 || st.st_gid != 0) {
721 ret += 4;
722 }
723 }
724 return ret;
725}
726
727bool TWFunc::Fix_su_Perms(void) {
728 if (!PartitionManager.Mount_By_Path("/system", true))
729 return false;
730
Ethan Yonker0385f512014-02-06 14:33:02 -0600731 string propvalue = System_Property_Get("ro.build.version.sdk");
732 string su_perms = "6755";
733 if (!propvalue.empty()) {
734 int sdk_version = atoi(propvalue.c_str());
735 if (sdk_version >= 18)
736 su_perms = "0755";
737 }
738
Dees_Troy6ef66352013-02-21 08:26:57 -0600739 string file = "/system/bin/su";
740 if (TWFunc::Path_Exists(file)) {
741 if (chown(file.c_str(), 0, 0) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000742 LOGERR("Failed to chown '%s'\n", file.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600743 return false;
744 }
Ethan Yonker0385f512014-02-06 14:33:02 -0600745 if (tw_chmod(file, su_perms) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000746 LOGERR("Failed to chmod '%s'\n", file.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600747 return false;
748 }
749 }
750 file = "/system/xbin/su";
751 if (TWFunc::Path_Exists(file)) {
752 if (chown(file.c_str(), 0, 0) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000753 LOGERR("Failed to chown '%s'\n", file.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600754 return false;
755 }
Ethan Yonker0385f512014-02-06 14:33:02 -0600756 if (tw_chmod(file, su_perms) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000757 LOGERR("Failed to chmod '%s'\n", file.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600758 return false;
759 }
760 }
Dees_Troya7939bb2013-08-29 20:21:12 +0000761 file = "/system/xbin/daemonsu";
762 if (TWFunc::Path_Exists(file)) {
763 if (chown(file.c_str(), 0, 0) != 0) {
764 LOGERR("Failed to chown '%s'\n", file.c_str());
765 return false;
766 }
Ethan Yonker0385f512014-02-06 14:33:02 -0600767 if (tw_chmod(file, "0755") != 0) {
Dees_Troya7939bb2013-08-29 20:21:12 +0000768 LOGERR("Failed to chmod '%s'\n", file.c_str());
769 return false;
770 }
771 }
Dees_Troy6ef66352013-02-21 08:26:57 -0600772 file = "/system/bin/.ext/.su";
773 if (TWFunc::Path_Exists(file)) {
774 if (chown(file.c_str(), 0, 0) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000775 LOGERR("Failed to chown '%s'\n", file.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600776 return false;
777 }
Ethan Yonker0385f512014-02-06 14:33:02 -0600778 if (tw_chmod(file, su_perms) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000779 LOGERR("Failed to chmod '%s'\n", file.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600780 return false;
781 }
782 }
Dees_Troya7939bb2013-08-29 20:21:12 +0000783 file = "/system/etc/install-recovery.sh";
784 if (TWFunc::Path_Exists(file)) {
785 if (chown(file.c_str(), 0, 0) != 0) {
786 LOGERR("Failed to chown '%s'\n", file.c_str());
787 return false;
788 }
789 if (tw_chmod(file, "0755") != 0) {
790 LOGERR("Failed to chmod '%s'\n", file.c_str());
791 return false;
792 }
793 }
794 file = "/system/etc/init.d/99SuperSUDaemon";
795 if (TWFunc::Path_Exists(file)) {
796 if (chown(file.c_str(), 0, 0) != 0) {
797 LOGERR("Failed to chown '%s'\n", file.c_str());
798 return false;
799 }
800 if (tw_chmod(file, "0755") != 0) {
801 LOGERR("Failed to chmod '%s'\n", file.c_str());
802 return false;
803 }
804 }
Dees_Troy6ef66352013-02-21 08:26:57 -0600805 file = "/system/app/Superuser.apk";
806 if (TWFunc::Path_Exists(file)) {
807 if (chown(file.c_str(), 0, 0) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000808 LOGERR("Failed to chown '%s'\n", file.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600809 return false;
810 }
811 if (tw_chmod(file, "0644") != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000812 LOGERR("Failed to chmod '%s'\n", file.c_str());
Dees_Troy6ef66352013-02-21 08:26:57 -0600813 return false;
814 }
815 }
816 sync();
817 if (!PartitionManager.UnMount_By_Path("/system", true))
818 return false;
819 return true;
820}
821
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200822int TWFunc::tw_chmod(const string& fn, const string& mode) {
Dees_Troy6ef66352013-02-21 08:26:57 -0600823 long mask = 0;
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200824 std::string::size_type n = mode.length();
825 int cls = 0;
Dees_Troy6ef66352013-02-21 08:26:57 -0600826
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200827 if(n == 3)
828 ++cls;
829 else if(n != 4)
830 {
831 LOGERR("TWFunc::tw_chmod used with %u long mode string (should be 3 or 4)!\n", mode.length());
832 return -1;
833 }
834
835 for (n = 0; n < mode.length(); ++n, ++cls) {
836 if (cls == 0) {
Dees_Troy6ef66352013-02-21 08:26:57 -0600837 if (mode[n] == '0')
838 continue;
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200839 else if (mode[n] == '1')
Dees_Troy6ef66352013-02-21 08:26:57 -0600840 mask |= S_ISVTX;
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200841 else if (mode[n] == '2')
Dees_Troy6ef66352013-02-21 08:26:57 -0600842 mask |= S_ISGID;
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200843 else if (mode[n] == '4')
Dees_Troy6ef66352013-02-21 08:26:57 -0600844 mask |= S_ISUID;
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200845 else if (mode[n] == '5') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600846 mask |= S_ISVTX;
847 mask |= S_ISUID;
848 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200849 else if (mode[n] == '6') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600850 mask |= S_ISGID;
851 mask |= S_ISUID;
852 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200853 else if (mode[n] == '7') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600854 mask |= S_ISVTX;
855 mask |= S_ISGID;
856 mask |= S_ISUID;
857 }
858 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200859 else if (cls == 1) {
Dees_Troy6ef66352013-02-21 08:26:57 -0600860 if (mode[n] == '7') {
861 mask |= S_IRWXU;
862 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200863 else if (mode[n] == '6') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600864 mask |= S_IRUSR;
865 mask |= S_IWUSR;
866 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200867 else if (mode[n] == '5') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600868 mask |= S_IRUSR;
869 mask |= S_IXUSR;
870 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200871 else if (mode[n] == '4')
Dees_Troy6ef66352013-02-21 08:26:57 -0600872 mask |= S_IRUSR;
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200873 else if (mode[n] == '3') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600874 mask |= S_IWUSR;
875 mask |= S_IRUSR;
876 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200877 else if (mode[n] == '2')
Dees_Troy6ef66352013-02-21 08:26:57 -0600878 mask |= S_IWUSR;
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200879 else if (mode[n] == '1')
Dees_Troy6ef66352013-02-21 08:26:57 -0600880 mask |= S_IXUSR;
881 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200882 else if (cls == 2) {
Dees_Troy6ef66352013-02-21 08:26:57 -0600883 if (mode[n] == '7') {
884 mask |= S_IRWXG;
885 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200886 else if (mode[n] == '6') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600887 mask |= S_IRGRP;
888 mask |= S_IWGRP;
889 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200890 else if (mode[n] == '5') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600891 mask |= S_IRGRP;
892 mask |= S_IXGRP;
893 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200894 else if (mode[n] == '4')
Dees_Troy6ef66352013-02-21 08:26:57 -0600895 mask |= S_IRGRP;
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200896 else if (mode[n] == '3') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600897 mask |= S_IWGRP;
898 mask |= S_IXGRP;
899 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200900 else if (mode[n] == '2')
Dees_Troy6ef66352013-02-21 08:26:57 -0600901 mask |= S_IWGRP;
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200902 else if (mode[n] == '1')
Dees_Troy6ef66352013-02-21 08:26:57 -0600903 mask |= S_IXGRP;
904 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200905 else if (cls == 3) {
Dees_Troy6ef66352013-02-21 08:26:57 -0600906 if (mode[n] == '7') {
907 mask |= S_IRWXO;
908 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200909 else if (mode[n] == '6') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600910 mask |= S_IROTH;
911 mask |= S_IWOTH;
912 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200913 else if (mode[n] == '5') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600914 mask |= S_IROTH;
915 mask |= S_IXOTH;
916 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200917 else if (mode[n] == '4')
918 mask |= S_IROTH;
919 else if (mode[n] == '3') {
Dees_Troy6ef66352013-02-21 08:26:57 -0600920 mask |= S_IWOTH;
921 mask |= S_IXOTH;
922 }
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200923 else if (mode[n] == '2')
Dees_Troy6ef66352013-02-21 08:26:57 -0600924 mask |= S_IWOTH;
Vojtech Bocek37aeb8d2013-08-29 22:38:20 +0200925 else if (mode[n] == '1')
Dees_Troy6ef66352013-02-21 08:26:57 -0600926 mask |= S_IXOTH;
927 }
928 }
929
930 if (chmod(fn.c_str(), mask) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000931 LOGERR("Unable to chmod '%s' %l\n", fn.c_str(), mask);
Dees_Troy6ef66352013-02-21 08:26:57 -0600932 return -1;
933 }
934
935 return 0;
936}
937
938bool TWFunc::Install_SuperSU(void) {
939 if (!PartitionManager.Mount_By_Path("/system", true))
940 return false;
941
Vojtech Bocek05534202013-09-11 08:11:56 +0200942 TWFunc::Exec_Cmd("/sbin/chattr -i /system/xbin/su");
jt1134113ee732013-02-22 23:26:10 -0600943 if (copy_file("/supersu/su", "/system/xbin/su", 0755) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000944 LOGERR("Failed to copy su binary to /system/bin\n");
Dees_Troy6ef66352013-02-21 08:26:57 -0600945 return false;
946 }
Dees_Troya7939bb2013-08-29 20:21:12 +0000947 if (!Path_Exists("/system/bin/.ext")) {
948 mkdir("/system/bin/.ext", 0777);
949 }
Vojtech Bocek05534202013-09-11 08:11:56 +0200950 TWFunc::Exec_Cmd("/sbin/chattr -i /system/bin/.ext/su");
Dees_Troya7939bb2013-08-29 20:21:12 +0000951 if (copy_file("/supersu/su", "/system/bin/.ext/su", 0755) != 0) {
952 LOGERR("Failed to copy su binary to /system/bin/.ext/su\n");
953 return false;
954 }
Vojtech Bocek05534202013-09-11 08:11:56 +0200955 TWFunc::Exec_Cmd("/sbin/chattr -i /system/xbin/daemonsu");
Dees_Troya7939bb2013-08-29 20:21:12 +0000956 if (copy_file("/supersu/su", "/system/xbin/daemonsu", 0755) != 0) {
957 LOGERR("Failed to copy su binary to /system/xbin/daemonsu\n");
958 return false;
959 }
960 if (Path_Exists("/system/etc/init.d")) {
Vojtech Bocek05534202013-09-11 08:11:56 +0200961 TWFunc::Exec_Cmd("/sbin/chattr -i /system/etc/init.d/99SuperSUDaemon");
Dees_Troya7939bb2013-08-29 20:21:12 +0000962 if (copy_file("/supersu/99SuperSUDaemon", "/system/etc/init.d/99SuperSUDaemon", 0755) != 0) {
963 LOGERR("Failed to copy 99SuperSUDaemon to /system/etc/init.d/99SuperSUDaemon\n");
964 return false;
965 }
966 } else {
Vojtech Bocek05534202013-09-11 08:11:56 +0200967 TWFunc::Exec_Cmd("/sbin/chattr -i /system/etc/install-recovery.sh");
Dees_Troya7939bb2013-08-29 20:21:12 +0000968 if (copy_file("/supersu/install-recovery.sh", "/system/etc/install-recovery.sh", 0755) != 0) {
969 LOGERR("Failed to copy install-recovery.sh to /system/etc/install-recovery.sh\n");
970 return false;
971 }
972 }
jt1134113ee732013-02-22 23:26:10 -0600973 if (copy_file("/supersu/Superuser.apk", "/system/app/Superuser.apk", 0644) != 0) {
Dees_Troy2673cec2013-04-02 20:22:16 +0000974 LOGERR("Failed to copy Superuser app to /system/app\n");
Dees_Troy6ef66352013-02-21 08:26:57 -0600975 return false;
976 }
977 if (!Fix_su_Perms())
978 return false;
979 return true;
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500980}
Dees_Troy83bd4832013-05-04 12:39:56 +0000981
Dees_Troy83bd4832013-05-04 12:39:56 +0000982bool TWFunc::Try_Decrypting_Backup(string Restore_Path, string Password) {
983 DIR* d;
984
985 string Filename;
986 Restore_Path += "/";
987 d = opendir(Restore_Path.c_str());
988 if (d == NULL) {
989 LOGERR("Error opening '%s'\n", Restore_Path.c_str());
990 return false;
991 }
992
993 struct dirent* de;
994 while ((de = readdir(d)) != NULL) {
995 Filename = Restore_Path;
996 Filename += de->d_name;
997 if (TWFunc::Get_File_Type(Filename) == 2) {
998 if (TWFunc::Try_Decrypting_File(Filename, Password) < 2) {
999 DataManager::SetValue("tw_restore_password", ""); // Clear the bad password
1000 DataManager::SetValue("tw_restore_display", ""); // Also clear the display mask
1001 closedir(d);
1002 return false;
1003 }
1004 }
1005 }
1006 closedir(d);
1007 return true;
1008}
1009
Dees Troyb21cc642013-09-10 17:36:41 +00001010string TWFunc::Get_Current_Date() {
1011 string Current_Date;
1012 time_t seconds = time(0);
1013 struct tm *t = localtime(&seconds);
1014 char timestamp[255];
1015 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);
1016 Current_Date = timestamp;
1017 return Current_Date;
1018}
1019
Ethan Yonkerb5557892014-02-07 21:43:20 -06001020string TWFunc::System_Property_Get(string Prop_Name) {
Dees Troyb21cc642013-09-10 17:36:41 +00001021 bool mount_state = PartitionManager.Is_Mounted_By_Path("/system");
1022 std::vector<string> buildprop;
Ethan Yonkerb5557892014-02-07 21:43:20 -06001023 string propvalue;
1024 if (!PartitionManager.Mount_By_Path("/system", true))
1025 return propvalue;
Dees Troyb21cc642013-09-10 17:36:41 +00001026 if (TWFunc::read_file("/system/build.prop", buildprop) != 0) {
Ethan Yonkerb5557892014-02-07 21:43:20 -06001027 LOGINFO("Unable to open /system/build.prop for getting '%s'.\n", Prop_Name.c_str());
Vojtech Boceka2e70162013-09-17 17:05:10 +02001028 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
Dees Troyb21cc642013-09-10 17:36:41 +00001029 if (!mount_state)
1030 PartitionManager.UnMount_By_Path("/system", false);
Ethan Yonkerb5557892014-02-07 21:43:20 -06001031 return propvalue;
Dees Troyb21cc642013-09-10 17:36:41 +00001032 }
1033 int line_count = buildprop.size();
1034 int index;
1035 size_t start_pos = 0, end_pos;
Ethan Yonkerb5557892014-02-07 21:43:20 -06001036 string propname;
Dees Troyb21cc642013-09-10 17:36:41 +00001037 for (index = 0; index < line_count; index++) {
1038 end_pos = buildprop.at(index).find("=", start_pos);
1039 propname = buildprop.at(index).substr(start_pos, end_pos);
Ethan Yonkerb5557892014-02-07 21:43:20 -06001040 if (propname == Prop_Name) {
Dees Troyb21cc642013-09-10 17:36:41 +00001041 propvalue = buildprop.at(index).substr(end_pos + 1, buildprop.at(index).size());
Ethan Yonkerb5557892014-02-07 21:43:20 -06001042 if (!mount_state)
1043 PartitionManager.UnMount_By_Path("/system", false);
1044 return propvalue;
Dees Troyb21cc642013-09-10 17:36:41 +00001045 }
1046 }
Dees Troyb21cc642013-09-10 17:36:41 +00001047 if (!mount_state)
1048 PartitionManager.UnMount_By_Path("/system", false);
Ethan Yonkerb5557892014-02-07 21:43:20 -06001049 return propvalue;
1050}
1051
1052void TWFunc::Auto_Generate_Backup_Name() {
1053 string propvalue = System_Property_Get("ro.build.display.id");
1054 if (propvalue.empty()) {
1055 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
1056 return;
1057 }
1058 string Backup_Name = Get_Current_Date();
1059 Backup_Name += " " + propvalue;
1060 if (Backup_Name.size() > MAX_BACKUP_NAME_LEN)
1061 Backup_Name.resize(MAX_BACKUP_NAME_LEN);
1062 // Trailing spaces cause problems on some file systems, so remove them
1063 string space_check, space = " ";
1064 space_check = Backup_Name.substr(Backup_Name.size() - 1, 1);
1065 while (space_check == space) {
1066 Backup_Name.resize(Backup_Name.size() - 1);
1067 space_check = Backup_Name.substr(Backup_Name.size() - 1, 1);
1068 }
1069 DataManager::SetValue(TW_BACKUP_NAME, Backup_Name);
Ethan Yonker92d48e02014-02-26 12:05:55 -06001070 if (PartitionManager.Check_Backup_Name(false) != 0) {
1071 LOGINFO("Auto generated backup name '%s' contains invalid characters, using date instead.\n", Backup_Name.c_str());
1072 DataManager::SetValue(TW_BACKUP_NAME, Get_Current_Date());
1073 }
Vojtech Bocek05534202013-09-11 08:11:56 +02001074}
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001075
1076void TWFunc::Fixup_Time_On_Boot()
1077{
1078#ifdef QCOM_RTC_FIX
1079 // Devices with Qualcomm Snapdragon 800 do some shenanigans with RTC.
1080 // They never set it, it just ticks forward from 1970-01-01 00:00,
1081 // and then they have files /data/system/time/ats_* with 64bit offset
1082 // in miliseconds which, when added to the RTC, gives the correct time.
1083 // So, the time is: (offset_from_ats + value_from_RTC)
1084 // There are multiple ats files, they are for different systems? Bases?
1085 // Like, ats_1 is for modem and ats_2 is for TOD (time of day?).
1086 // Look at file time_genoff.h in CodeAurora, qcom-opensource/time-services
1087
1088 static const char *paths[] = { "/data/system/time/", "/data/time/" };
1089
1090 DIR *d;
1091 FILE *f;
1092 uint64_t offset = 0;
1093 struct timeval tv;
1094 struct dirent *dt;
1095 std::string ats_path;
1096
1097
1098 // Don't fix the time of it already is over year 2000, it is likely already okay, either
1099 // because the RTC is fine or because the recovery already set it and then crashed
1100 gettimeofday(&tv, NULL);
1101 if(tv.tv_sec > 946684800) // timestamp of 2000-01-01 00:00:00
1102 {
1103 LOGINFO("TWFunc::Fixup_Time: not fixing time, it seems to be already okay (after year 2000).\n");
1104 return;
1105 }
1106
1107 if(!PartitionManager.Mount_By_Path("/data", false))
1108 return;
1109
1110 // Prefer ats_2, it seems to be the one we want according to logcat on hammerhead
1111 // - it is the one for ATS_TOD (time of day?).
1112 // However, I never saw a device where the offset differs between ats files.
1113 for(size_t i = 0; i < (sizeof(paths)/sizeof(paths[0])); ++i)
1114 {
1115 DIR *d = opendir(paths[i]);
1116 if(!d)
1117 continue;
1118
1119 while((dt = readdir(d)))
1120 {
1121 if(dt->d_type != DT_REG || strncmp(dt->d_name, "ats_", 4) != 0)
1122 continue;
1123
1124 if(ats_path.empty() || strcmp(dt->d_name, "ats_2") == 0)
1125 ats_path = std::string(paths[i]).append(dt->d_name);
1126 }
1127
1128 closedir(d);
1129 }
1130
1131 if(ats_path.empty())
1132 {
Dees Troy3e254b92014-03-06 20:24:54 +00001133 LOGINFO("TWFunc::Fixup_Time: no ats files found, leaving time as-is!\n");
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001134 return;
1135 }
1136
1137 f = fopen(ats_path.c_str(), "r");
1138 if(!f)
1139 {
Dees Troy3e254b92014-03-06 20:24:54 +00001140 LOGINFO("TWFunc::Fixup_Time: failed to open file %s\n", ats_path.c_str());
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001141 return;
1142 }
1143
1144 if(fread(&offset, sizeof(offset), 1, f) != 1)
1145 {
Dees Troy3e254b92014-03-06 20:24:54 +00001146 LOGINFO("TWFunc::Fixup_Time: failed load uint64 from file %s\n", ats_path.c_str());
Vojtech Bocekd0e38bc2014-02-03 23:36:57 +01001147 fclose(f);
1148 return;
1149 }
1150 fclose(f);
1151
1152 LOGINFO("TWFunc::Fixup_Time: Setting time offset from file %s, offset %llu\n", ats_path.c_str(), offset);
1153
1154 gettimeofday(&tv, NULL);
1155
1156 tv.tv_sec += offset/1000;
1157 tv.tv_usec += (offset%1000)*1000;
1158
1159 while(tv.tv_usec >= 1000000)
1160 {
1161 ++tv.tv_sec;
1162 tv.tv_usec -= 1000000;
1163 }
1164
1165 settimeofday(&tv, NULL);
1166#endif
1167}
Ethan Yonkeraf2897c2014-02-10 13:07:14 -06001168
Vojtech Bocek0b7fe502014-03-13 17:36:52 +01001169std::vector<std::string> TWFunc::Split_String(const std::string& str, const std::string& delimiter, bool removeEmpty)
1170{
1171 std::vector<std::string> res;
1172 size_t idx = 0, idx_last = 0;
1173
1174 while(idx < str.size())
1175 {
1176 idx = str.find_first_of(delimiter, idx_last);
1177 if(idx == std::string::npos)
1178 idx = str.size();
1179
1180 if(idx-idx_last != 0 || !removeEmpty)
1181 res.push_back(str.substr(idx_last, idx-idx_last));
1182
1183 idx_last = idx + delimiter.size();
1184 }
1185
1186 return res;
1187}
1188
Ethan Yonkeraf2897c2014-02-10 13:07:14 -06001189#endif // ndef BUILD_TWRPTAR_MAIN