blob: b7d9119ec7fba2d7c53764ee872a3a21383cf0d1 [file] [log] [blame]
Ethan Yonker6e8c27a2016-12-22 17:55:57 -06001/*
Dees_Troya13d74f2013-03-24 08:54:55 -05002 Copyright 2013 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*/
Dees_Troy51a0e822012-09-05 15:24:24 -040018
19#include <stdarg.h>
20#include <stdio.h>
21#include <stdlib.h>
22#include <string.h>
23#include <fcntl.h>
24#include <sys/stat.h>
25#include <sys/time.h>
26#include <sys/mman.h>
27#include <sys/types.h>
28#include <sys/ioctl.h>
29#include <linux/input.h>
30#include <time.h>
31#include <unistd.h>
32#include <stdlib.h>
Dees_Troy657c3092012-09-10 20:32:10 -040033#include <sys/wait.h>
Dees_Troy83bd4832013-05-04 12:39:56 +000034#include <dirent.h>
Matt Mower0c88b842017-01-15 16:00:49 -060035#include <private/android_filesystem_config.h>
Dees_Troy51a0e822012-09-05 15:24:24 -040036
37#include <string>
38#include <sstream>
39#include "../partitions.hpp"
Dees_Troy38bd7602012-09-14 13:33:53 -040040#include "../twrp-functions.hpp"
Dees_Troy812660f2012-09-20 09:55:17 -040041#include "../openrecoveryscript.hpp"
Dees_Troy51a0e822012-09-05 15:24:24 -040042
bigbiffd58ba182020-03-23 10:02:29 -040043#include "install/adb_install.h"
44
45#include "fuse_sideload.h"
bigbiff bigbiff8a68c312013-02-10 14:28:30 -050046#include "blanktimer.hpp"
Ethan Yonker8373cfe2017-09-08 06:50:54 -050047#include "../twinstall.h"
Ethan Yonkerfbb43532015-12-28 21:54:50 +010048
Dees_Troy51a0e822012-09-05 15:24:24 -040049extern "C" {
Dees_Troy2673cec2013-04-02 20:22:16 +000050#include "../twcommon.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040051#include "../variables.h"
Dees_Troy2673cec2013-04-02 20:22:16 +000052#include "cutils/properties.h"
bigbiffd58ba182020-03-23 10:02:29 -040053#include "install/adb_install.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040054};
bigbiffd58ba182020-03-23 10:02:29 -040055#include "set_metadata.h"
Ethan Yonkerfbb43532015-12-28 21:54:50 +010056#include "../minuitwrp/minui.h"
Dees_Troy51a0e822012-09-05 15:24:24 -040057
58#include "rapidxml.hpp"
59#include "objects.hpp"
bigbiffd58ba182020-03-23 10:02:29 -040060#include "tw_atomic.hpp"
Dees_Troy51a0e822012-09-05 15:24:24 -040061
that3f7b1ac2014-12-30 11:30:13 +010062GUIAction::mapFunc GUIAction::mf;
thatc6085482015-01-09 22:12:43 +010063std::set<string> GUIAction::setActionsRunningInCallerThread;
that3f7b1ac2014-12-30 11:30:13 +010064static string zip_queue[10];
65static int zip_queue_index;
thatcc8ddca2015-01-03 01:59:36 +010066pid_t sideload_child_pid;
that3f7b1ac2014-12-30 11:30:13 +010067
that73a52952015-01-28 23:07:34 +010068static void *ActionThread_work_wrapper(void *data);
69
70class ActionThread
71{
72public:
73 ActionThread();
74 ~ActionThread();
75
76 void threadActions(GUIAction *act);
77 void run(void *data);
78private:
79 friend void *ActionThread_work_wrapper(void*);
80 struct ThreadData
81 {
82 ActionThread *this_;
83 GUIAction *act;
84 ThreadData(ActionThread *this_, GUIAction *act) : this_(this_), act(act) {}
85 };
86
87 pthread_t m_thread;
88 bool m_thread_running;
89 pthread_mutex_t m_act_lock;
90};
91
92static ActionThread action_thread; // for all kinds of longer running actions
93static ActionThread cancel_thread; // for longer running "cancel" actions
thatc6085482015-01-09 22:12:43 +010094
95static void *ActionThread_work_wrapper(void *data)
96{
that73a52952015-01-28 23:07:34 +010097 static_cast<ActionThread::ThreadData*>(data)->this_->run(data);
thatc6085482015-01-09 22:12:43 +010098 return NULL;
99}
100
101ActionThread::ActionThread()
102{
103 m_thread_running = false;
104 pthread_mutex_init(&m_act_lock, NULL);
105}
106
107ActionThread::~ActionThread()
108{
109 pthread_mutex_lock(&m_act_lock);
Matt Mowera8a89d12016-12-30 18:10:37 -0600110 if (m_thread_running) {
thatc6085482015-01-09 22:12:43 +0100111 pthread_mutex_unlock(&m_act_lock);
112 pthread_join(m_thread, NULL);
113 } else {
114 pthread_mutex_unlock(&m_act_lock);
115 }
116 pthread_mutex_destroy(&m_act_lock);
117}
118
that7d3b54f2015-01-09 22:52:51 +0100119void ActionThread::threadActions(GUIAction *act)
thatc6085482015-01-09 22:12:43 +0100120{
121 pthread_mutex_lock(&m_act_lock);
122 if (m_thread_running) {
123 pthread_mutex_unlock(&m_act_lock);
that7d3b54f2015-01-09 22:52:51 +0100124 LOGERR("Another threaded action is already running -- not running %u actions starting with '%s'\n",
125 act->mActions.size(), act->mActions[0].mFunction.c_str());
thatc6085482015-01-09 22:12:43 +0100126 } else {
127 m_thread_running = true;
128 pthread_mutex_unlock(&m_act_lock);
that73a52952015-01-28 23:07:34 +0100129 ThreadData *d = new ThreadData(this, act);
thatc6085482015-01-09 22:12:43 +0100130 pthread_create(&m_thread, NULL, &ActionThread_work_wrapper, d);
131 }
132}
133
134void ActionThread::run(void *data)
135{
136 ThreadData *d = (ThreadData*)data;
137 GUIAction* act = d->act;
138
139 std::vector<GUIAction::Action>::iterator it;
that7d3b54f2015-01-09 22:52:51 +0100140 for (it = act->mActions.begin(); it != act->mActions.end(); ++it)
thatc6085482015-01-09 22:12:43 +0100141 act->doAction(*it);
142
143 pthread_mutex_lock(&m_act_lock);
144 m_thread_running = false;
145 pthread_mutex_unlock(&m_act_lock);
146 delete d;
147}
148
Dees_Troy51a0e822012-09-05 15:24:24 -0400149GUIAction::GUIAction(xml_node<>* node)
Vojtech Bocekede51c52014-02-07 23:58:09 +0100150 : GUIObject(node)
Dees_Troy51a0e822012-09-05 15:24:24 -0400151{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200152 xml_node<>* child;
153 xml_node<>* actions;
154 xml_attribute<>* attr;
Dees_Troy51a0e822012-09-05 15:24:24 -0400155
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200156 if (!node) return;
Dees_Troy51a0e822012-09-05 15:24:24 -0400157
that3f7b1ac2014-12-30 11:30:13 +0100158 if (mf.empty()) {
Vojtech Bocekecd89182015-01-15 16:28:54 +0100159#define ADD_ACTION(n) mf[#n] = &GUIAction::n
160#define ADD_ACTION_EX(name, func) mf[name] = &GUIAction::func
thatc6085482015-01-09 22:12:43 +0100161 // These actions will be run in the caller's thread
Vojtech Bocekecd89182015-01-15 16:28:54 +0100162 ADD_ACTION(reboot);
163 ADD_ACTION(home);
164 ADD_ACTION(key);
165 ADD_ACTION(page);
166 ADD_ACTION(reload);
167 ADD_ACTION(readBackup);
168 ADD_ACTION(set);
169 ADD_ACTION(clear);
170 ADD_ACTION(mount);
171 ADD_ACTION(unmount);
172 ADD_ACTION_EX("umount", unmount);
173 ADD_ACTION(restoredefaultsettings);
174 ADD_ACTION(copylog);
175 ADD_ACTION(compute);
176 ADD_ACTION_EX("addsubtract", compute);
177 ADD_ACTION(setguitimezone);
178 ADD_ACTION(overlay);
179 ADD_ACTION(queuezip);
180 ADD_ACTION(cancelzip);
181 ADD_ACTION(queueclear);
182 ADD_ACTION(sleep);
Matt Mower9a2a2052016-05-31 21:31:22 -0500183 ADD_ACTION(sleepcounter);
Vojtech Bocekecd89182015-01-15 16:28:54 +0100184 ADD_ACTION(appenddatetobackupname);
185 ADD_ACTION(generatebackupname);
186 ADD_ACTION(checkpartitionlist);
187 ADD_ACTION(getpartitiondetails);
188 ADD_ACTION(screenshot);
189 ADD_ACTION(setbrightness);
190 ADD_ACTION(fileexists);
191 ADD_ACTION(killterminal);
192 ADD_ACTION(checkbackupname);
193 ADD_ACTION(adbsideloadcancel);
194 ADD_ACTION(fixsu);
195 ADD_ACTION(startmtp);
196 ADD_ACTION(stopmtp);
197 ADD_ACTION(cancelbackup);
Ethan Yonkereb32b1f2015-05-18 10:23:03 -0500198 ADD_ACTION(checkpartitionlifetimewrites);
199 ADD_ACTION(mountsystemtoggle);
Ethan Yonker74db1572015-10-28 12:44:49 -0500200 ADD_ACTION(setlanguage);
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600201 ADD_ACTION(checkforapp);
Matt Mower9472ba12016-01-20 18:12:47 -0600202 ADD_ACTION(togglebacklight);
thatc6085482015-01-09 22:12:43 +0100203
204 // remember actions that run in the caller thread
205 for (mapFunc::const_iterator it = mf.begin(); it != mf.end(); ++it)
206 setActionsRunningInCallerThread.insert(it->first);
207
208 // These actions will run in a separate thread
Vojtech Bocekecd89182015-01-15 16:28:54 +0100209 ADD_ACTION(flash);
210 ADD_ACTION(wipe);
211 ADD_ACTION(refreshsizes);
212 ADD_ACTION(nandroid);
Ethan Yonkerb5fab762016-01-28 14:03:33 -0600213 ADD_ACTION(fixcontexts);
Vojtech Bocekecd89182015-01-15 16:28:54 +0100214 ADD_ACTION(fixpermissions);
215 ADD_ACTION(dd);
216 ADD_ACTION(partitionsd);
217 ADD_ACTION(installhtcdumlock);
218 ADD_ACTION(htcdumlockrestoreboot);
219 ADD_ACTION(htcdumlockreflashrecovery);
220 ADD_ACTION(cmd);
221 ADD_ACTION(terminalcommand);
222 ADD_ACTION(reinjecttwrp);
223 ADD_ACTION(decrypt);
224 ADD_ACTION(adbsideload);
225 ADD_ACTION(openrecoveryscript);
226 ADD_ACTION(installsu);
227 ADD_ACTION(decrypt_backup);
228 ADD_ACTION(repair);
Ethan Yonkera2719152015-05-28 09:44:41 -0500229 ADD_ACTION(resize);
Vojtech Bocekecd89182015-01-15 16:28:54 +0100230 ADD_ACTION(changefilesystem);
231 ADD_ACTION(flashimage);
that10ae24f2015-12-26 20:53:51 +0100232 ADD_ACTION(twcmd);
Ethan Yonker1b190162016-12-05 15:25:19 -0600233 ADD_ACTION(setbootslot);
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -0600234 ADD_ACTION(installapp);
Ethan Yonker76bbd3a2019-05-10 10:50:04 -0500235 ADD_ACTION(uninstalltwrpsystemapp);
Ethan Yonker53796e72019-01-11 22:49:52 -0600236 ADD_ACTION(repackimage);
237 ADD_ACTION(fixabrecoverybootloop);
that3f7b1ac2014-12-30 11:30:13 +0100238 }
239
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200240 // First, get the action
Ethan Yonker21ff02a2015-02-18 14:35:00 -0600241 actions = FindNode(node, "actions");
242 if (actions) child = FindNode(actions, "action");
243 else child = FindNode(node, "action");
Dees_Troy51a0e822012-09-05 15:24:24 -0400244
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200245 if (!child) return;
Dees_Troy51a0e822012-09-05 15:24:24 -0400246
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200247 while (child)
248 {
249 Action action;
Dees_Troy51a0e822012-09-05 15:24:24 -0400250
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200251 attr = child->first_attribute("function");
252 if (!attr) return;
Matt Mowerfb1c4ff2014-04-16 13:43:36 -0500253
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200254 action.mFunction = attr->value();
255 action.mArg = child->value();
256 mActions.push_back(action);
Dees_Troy51a0e822012-09-05 15:24:24 -0400257
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200258 child = child->next_sibling("action");
259 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400260
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200261 // Now, let's get either the key or region
Ethan Yonker21ff02a2015-02-18 14:35:00 -0600262 child = FindNode(node, "touch");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200263 if (child)
264 {
265 attr = child->first_attribute("key");
266 if (attr)
267 {
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100268 std::vector<std::string> keys = TWFunc::Split_String(attr->value(), "+");
Matt Mowera8a89d12016-12-30 18:10:37 -0600269 for (size_t i = 0; i < keys.size(); ++i)
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100270 {
271 const int key = getKeyByName(keys[i]);
272 mKeys[key] = false;
273 }
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200274 }
275 else
276 {
277 attr = child->first_attribute("x");
278 if (!attr) return;
279 mActionX = atol(attr->value());
280 attr = child->first_attribute("y");
281 if (!attr) return;
282 mActionY = atol(attr->value());
283 attr = child->first_attribute("w");
284 if (!attr) return;
285 mActionW = atol(attr->value());
286 attr = child->first_attribute("h");
287 if (!attr) return;
288 mActionH = atol(attr->value());
289 }
290 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400291}
292
Matt Mower25036b72016-06-24 12:30:18 -0500293int GUIAction::NotifyTouch(TOUCH_STATE state, int x __unused, int y __unused)
Dees_Troy51a0e822012-09-05 15:24:24 -0400294{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200295 if (state == TOUCH_RELEASE)
296 doActions();
Dees_Troy51a0e822012-09-05 15:24:24 -0400297
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200298 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400299}
300
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100301int GUIAction::NotifyKey(int key, bool down)
Dees_Troy51a0e822012-09-05 15:24:24 -0400302{
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100303 std::map<int, bool>::iterator itr = mKeys.find(key);
Matt Mowera8a89d12016-12-30 18:10:37 -0600304 if (itr == mKeys.end())
that8834a0f2016-01-05 23:29:30 +0100305 return 1;
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100306
307 bool prevState = itr->second;
308 itr->second = down;
309
310 // If there is only one key for this action, wait for key up so it
311 // doesn't trigger with multi-key actions.
312 // Else, check if all buttons are pressed, then consume their release events
313 // so they don't trigger one-button actions and reset mKeys pressed status
Matt Mowera8a89d12016-12-30 18:10:37 -0600314 if (mKeys.size() == 1) {
315 if (!down && prevState) {
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100316 doActions();
thatd4725ca2016-01-19 00:15:21 +0100317 return 0;
318 }
Matt Mowera8a89d12016-12-30 18:10:37 -0600319 } else if (down) {
320 for (itr = mKeys.begin(); itr != mKeys.end(); ++itr) {
321 if (!itr->second)
that8834a0f2016-01-05 23:29:30 +0100322 return 1;
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100323 }
324
325 // Passed, all req buttons are pressed, reset them and consume release events
326 HardwareKeyboard *kb = PageManager::GetHardwareKeyboard();
Matt Mowera8a89d12016-12-30 18:10:37 -0600327 for (itr = mKeys.begin(); itr != mKeys.end(); ++itr) {
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100328 kb->ConsumeKeyRelease(itr->first);
329 itr->second = false;
330 }
331
332 doActions();
thatd4725ca2016-01-19 00:15:21 +0100333 return 0;
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100334 }
335
thatd4725ca2016-01-19 00:15:21 +0100336 return 1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400337}
338
Vojtech Bocek07220562014-02-08 02:05:33 +0100339int GUIAction::NotifyVarChange(const std::string& varName, const std::string& value)
Dees_Troy51a0e822012-09-05 15:24:24 -0400340{
Vojtech Bocek07220562014-02-08 02:05:33 +0100341 GUIObject::NotifyVarChange(varName, value);
342
Vojtech Bocek0b7fe502014-03-13 17:36:52 +0100343 if (varName.empty() && !isConditionValid() && mKeys.empty() && !mActionW)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200344 doActions();
Matt Mowera8a89d12016-12-30 18:10:37 -0600345 else if ((varName.empty() || IsConditionVariable(varName)) && isConditionValid() && isConditionTrue())
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200346 doActions();
Dees_Troy51a0e822012-09-05 15:24:24 -0400347
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200348 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400349}
350
351void GUIAction::simulate_progress_bar(void)
352{
Ethan Yonker74db1572015-10-28 12:44:49 -0500353 gui_msg("simulating=Simulating actions...");
Dees_Troy51a0e822012-09-05 15:24:24 -0400354 for (int i = 0; i < 5; i++)
355 {
bigbiff7abc5fe2015-01-17 16:53:12 -0500356 if (PartitionManager.stop_backup.get_value()) {
357 DataManager::SetValue("tw_cancel_backup", 1);
Matt Mower3c366972015-12-25 19:28:31 -0600358 gui_msg("backup_cancel=Backup Cancelled");
bigbiff7abc5fe2015-01-17 16:53:12 -0500359 DataManager::SetValue("ui_progress", 0);
360 PartitionManager.stop_backup.set_value(0);
361 return;
362 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400363 usleep(500000);
364 DataManager::SetValue("ui_progress", i * 20);
365 }
366}
367
Ethan Yonker0d47eb52015-01-09 11:23:19 -0600368int GUIAction::flash_zip(std::string filename, int* wipe_cache)
Dees_Troy51a0e822012-09-05 15:24:24 -0400369{
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200370 int ret_val = 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400371
372 DataManager::SetValue("ui_progress", 0);
Chaosmasterd5364a02020-02-03 15:38:02 +0100373 DataManager::SetValue("ui_portion_size", 0);
374 DataManager::SetValue("ui_portion_start", 0);
Dees_Troy51a0e822012-09-05 15:24:24 -0400375
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200376 if (filename.empty())
377 {
378 LOGERR("No file specified.\n");
379 return -1;
380 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400381
Ethan Yonker9598c072016-01-15 21:54:34 -0600382 if (!TWFunc::Path_Exists(filename)) {
383 if (!PartitionManager.Mount_By_Path(filename, true)) {
384 return -1;
385 }
386 if (!TWFunc::Path_Exists(filename)) {
387 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")(filename));
388 return -1;
389 }
390 }
Dees_Troy657c3092012-09-10 20:32:10 -0400391
Dees_Troy51a0e822012-09-05 15:24:24 -0400392 if (simulate) {
393 simulate_progress_bar();
394 } else {
Dees_Troy657c3092012-09-10 20:32:10 -0400395 ret_val = TWinstall_zip(filename.c_str(), wipe_cache);
Dees_Troy51a0e822012-09-05 15:24:24 -0400396
397 // Now, check if we need to ensure TWRP remains installed...
398 struct stat st;
399 if (stat("/sbin/installTwrp", &st) == 0)
400 {
401 DataManager::SetValue("tw_operation", "Configuring TWRP");
402 DataManager::SetValue("tw_partition", "");
Ethan Yonker74db1572015-10-28 12:44:49 -0500403 gui_msg("config_twrp=Configuring TWRP...");
Vojtech Bocek05534202013-09-11 08:11:56 +0200404 if (TWFunc::Exec_Cmd("/sbin/installTwrp reinstall") < 0)
Dees_Troy51a0e822012-09-05 15:24:24 -0400405 {
Ethan Yonker74db1572015-10-28 12:44:49 -0500406 gui_msg("config_twrp_err=Unable to configure TWRP with this kernel.");
Dees_Troy51a0e822012-09-05 15:24:24 -0400407 }
408 }
409 }
410
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200411 // Done
412 DataManager::SetValue("ui_progress", 100);
413 DataManager::SetValue("ui_progress", 0);
Chaosmasterd5364a02020-02-03 15:38:02 +0100414 DataManager::SetValue("ui_portion_size", 0);
415 DataManager::SetValue("ui_portion_start", 0);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200416 return ret_val;
Dees_Troy51a0e822012-09-05 15:24:24 -0400417}
418
that73a52952015-01-28 23:07:34 +0100419GUIAction::ThreadType GUIAction::getThreadType(const GUIAction::Action& action)
thatc6085482015-01-09 22:12:43 +0100420{
that73a52952015-01-28 23:07:34 +0100421 string func = gui_parse_text(action.mFunction);
422 bool needsThread = setActionsRunningInCallerThread.find(func) == setActionsRunningInCallerThread.end();
423 if (needsThread) {
424 if (func == "cancelbackup")
425 return THREAD_CANCEL;
426 else
427 return THREAD_ACTION;
428 }
429 return THREAD_NONE;
thatc6085482015-01-09 22:12:43 +0100430}
431
Dees_Troy51a0e822012-09-05 15:24:24 -0400432int GUIAction::doActions()
433{
that3f7b1ac2014-12-30 11:30:13 +0100434 if (mActions.size() < 1)
435 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400436
that73a52952015-01-28 23:07:34 +0100437 // Determine in which thread to run the actions.
438 // Do it for all actions at once before starting, so that we can cancel the whole batch if the thread is already busy.
439 ThreadType threadType = THREAD_NONE;
that3f7b1ac2014-12-30 11:30:13 +0100440 std::vector<Action>::iterator it;
that73a52952015-01-28 23:07:34 +0100441 for (it = mActions.begin(); it != mActions.end(); ++it) {
442 ThreadType tt = getThreadType(*it);
443 if (tt == THREAD_NONE)
444 continue;
445 if (threadType == THREAD_NONE)
446 threadType = tt;
447 else if (threadType != tt) {
448 LOGERR("Can't mix normal and cancel actions in the same list.\n"
449 "Running the whole batch in the cancel thread.\n");
450 threadType = THREAD_CANCEL;
thatc6085482015-01-09 22:12:43 +0100451 break;
452 }
that7d3b54f2015-01-09 22:52:51 +0100453 }
that73a52952015-01-28 23:07:34 +0100454
455 // Now run the actions in the desired thread.
456 switch (threadType) {
457 case THREAD_ACTION:
458 action_thread.threadActions(this);
459 break;
460
461 case THREAD_CANCEL:
462 cancel_thread.threadActions(this);
463 break;
464
465 default: {
466 // no iterators here because theme reloading might kill our object
467 const size_t cnt = mActions.size();
468 for (size_t i = 0; i < cnt; ++i)
469 doAction(mActions[i]);
470 }
thatc6085482015-01-09 22:12:43 +0100471 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400472
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200473 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -0400474}
475
that3f7b1ac2014-12-30 11:30:13 +0100476int GUIAction::doAction(Action action)
Dees_Troy51a0e822012-09-05 15:24:24 -0400477{
that3f7b1ac2014-12-30 11:30:13 +0100478 DataManager::GetValue(TW_SIMULATE_ACTIONS, simulate);
Dees_Troy51a0e822012-09-05 15:24:24 -0400479
that3f7b1ac2014-12-30 11:30:13 +0100480 std::string function = gui_parse_text(action.mFunction);
481 std::string arg = gui_parse_text(action.mArg);
Dees_Troy51a0e822012-09-05 15:24:24 -0400482
that3f7b1ac2014-12-30 11:30:13 +0100483 // find function and execute it
484 mapFunc::const_iterator funcitr = mf.find(function);
485 if (funcitr != mf.end())
486 return (this->*funcitr->second)(arg);
487
488 LOGERR("Unknown action '%s'\n", function.c_str());
489 return -1;
Dees_Troy51a0e822012-09-05 15:24:24 -0400490}
491
492void GUIAction::operation_start(const string operation_name)
493{
that3f7b1ac2014-12-30 11:30:13 +0100494 LOGINFO("operation_start: '%s'\n", operation_name.c_str());
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +0000495 time(&Start);
Dees_Troy51a0e822012-09-05 15:24:24 -0400496 DataManager::SetValue(TW_ACTION_BUSY, 1);
497 DataManager::SetValue("ui_progress", 0);
Chaosmasterd5364a02020-02-03 15:38:02 +0100498 DataManager::SetValue("ui_portion_size", 0);
499 DataManager::SetValue("ui_portion_start", 0);
Dees_Troy51a0e822012-09-05 15:24:24 -0400500 DataManager::SetValue("tw_operation", operation_name);
Dees_Troy51a0e822012-09-05 15:24:24 -0400501 DataManager::SetValue("tw_operation_state", 0);
Ethan Yonkerd83c9ea2015-01-02 15:22:31 -0600502 DataManager::SetValue("tw_operation_status", 0);
bigbiff bigbiff19874f12019-01-08 20:06:57 -0500503 bool tw_ab_device = TWFunc::get_cache_dir() != NON_AB_CACHE_DIR;
504 DataManager::SetValue("tw_ab_device", tw_ab_device);
Dees_Troy51a0e822012-09-05 15:24:24 -0400505}
506
that3f7b1ac2014-12-30 11:30:13 +0100507void GUIAction::operation_end(const int operation_status)
Dees_Troy51a0e822012-09-05 15:24:24 -0400508{
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +0000509 time_t Stop;
Dees_Troy51a0e822012-09-05 15:24:24 -0400510 int simulate_fail;
Dees_Troy51a0e822012-09-05 15:24:24 -0400511 DataManager::SetValue("ui_progress", 100);
512 if (simulate) {
513 DataManager::GetValue(TW_SIMULATE_FAIL, simulate_fail);
514 if (simulate_fail != 0)
515 DataManager::SetValue("tw_operation_status", 1);
516 else
517 DataManager::SetValue("tw_operation_status", 0);
518 } else {
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500519 if (operation_status != 0) {
Dees_Troy51a0e822012-09-05 15:24:24 -0400520 DataManager::SetValue("tw_operation_status", 1);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500521 }
522 else {
Dees_Troy51a0e822012-09-05 15:24:24 -0400523 DataManager::SetValue("tw_operation_status", 0);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500524 }
Dees_Troy51a0e822012-09-05 15:24:24 -0400525 }
526 DataManager::SetValue("tw_operation_state", 1);
527 DataManager::SetValue(TW_ACTION_BUSY, 0);
bigbiff bigbiff8a68c312013-02-10 14:28:30 -0500528 blankTimer.resetTimerAndUnblank();
LuK133762326f42015-09-30 19:57:46 +0200529 property_set("twrp.action_complete", "1");
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +0000530 time(&Stop);
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400531
532#ifndef TW_NO_HAPTICS
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +0000533 if ((int) difftime(Stop, Start) > 10)
Ethan Yonker03db3262014-02-05 08:02:06 -0600534 DataManager::Vibrate("tw_action_vibrate");
bigbiff bigbiff3ed778a2019-03-12 19:28:31 -0400535#endif
536
that3f7b1ac2014-12-30 11:30:13 +0100537 LOGINFO("operation_end - status=%d\n", operation_status);
Dees_Troy51a0e822012-09-05 15:24:24 -0400538}
539
that3f7b1ac2014-12-30 11:30:13 +0100540int GUIAction::reboot(std::string arg)
Dees_Troy51a0e822012-09-05 15:24:24 -0400541{
that3f7b1ac2014-12-30 11:30:13 +0100542 sync();
543 DataManager::SetValue("tw_gui_done", 1);
544 DataManager::SetValue("tw_reboot_arg", arg);
Dees_Troy51a0e822012-09-05 15:24:24 -0400545
that3f7b1ac2014-12-30 11:30:13 +0100546 return 0;
547}
Dees_Troy51a0e822012-09-05 15:24:24 -0400548
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500549int GUIAction::home(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100550{
that3f7b1ac2014-12-30 11:30:13 +0100551 gui_changePage("main");
552 return 0;
553}
Dees_Troy51a0e822012-09-05 15:24:24 -0400554
that3f7b1ac2014-12-30 11:30:13 +0100555int GUIAction::key(std::string arg)
556{
557 const int key = getKeyByName(arg);
558 PageManager::NotifyKey(key, true);
559 PageManager::NotifyKey(key, false);
560 return 0;
561}
562
563int GUIAction::page(std::string arg)
564{
LuK133762326f42015-09-30 19:57:46 +0200565 property_set("twrp.action_complete", "0");
that3f7b1ac2014-12-30 11:30:13 +0100566 std::string page_name = gui_parse_text(arg);
567 return gui_changePage(page_name);
568}
569
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500570int GUIAction::reload(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100571{
Ethan Yonkere0f1f3b2015-10-27 09:49:01 -0500572 PageManager::RequestReload();
573 // The actual reload is handled in pages.cpp in PageManager::RunReload()
574 // The reload will occur on the next Update or Render call and will
575 // be performed in the rendoer thread instead of the action thread
576 // to prevent crashing which could occur when we start deleting
577 // GUI resources in the action thread while we attempt to render
578 // with those same resources in another thread.
that3f7b1ac2014-12-30 11:30:13 +0100579 return 0;
580}
Dees_Troy51a0e822012-09-05 15:24:24 -0400581
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500582int GUIAction::readBackup(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100583{
584 string Restore_Name;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -0400585
that3f7b1ac2014-12-30 11:30:13 +0100586 DataManager::GetValue("tw_restore", Restore_Name);
587 PartitionManager.Set_Restore_Files(Restore_Name);
588 return 0;
589}
590
591int GUIAction::set(std::string arg)
592{
593 if (arg.find('=') != string::npos)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200594 {
that3f7b1ac2014-12-30 11:30:13 +0100595 string varName = arg.substr(0, arg.find('='));
596 string value = arg.substr(arg.find('=') + 1, string::npos);
Dees_Troy51a0e822012-09-05 15:24:24 -0400597
that3f7b1ac2014-12-30 11:30:13 +0100598 DataManager::GetValue(value, value);
599 DataManager::SetValue(varName, value);
Vojtech Bocekfafb0c52013-07-25 22:53:02 +0200600 }
that3f7b1ac2014-12-30 11:30:13 +0100601 else
602 DataManager::SetValue(arg, "1");
603 return 0;
604}
Dees_Troy51a0e822012-09-05 15:24:24 -0400605
that3f7b1ac2014-12-30 11:30:13 +0100606int GUIAction::clear(std::string arg)
607{
608 DataManager::SetValue(arg, "0");
609 return 0;
610}
Dees_Troy51a0e822012-09-05 15:24:24 -0400611
that3f7b1ac2014-12-30 11:30:13 +0100612int GUIAction::mount(std::string arg)
613{
614 if (arg == "usb") {
615 DataManager::SetValue(TW_ACTION_BUSY, 1);
Dees_Troy51a0e822012-09-05 15:24:24 -0400616 if (!simulate)
that3f7b1ac2014-12-30 11:30:13 +0100617 PartitionManager.usb_storage_enable();
618 else
Ethan Yonker74db1572015-10-28 12:44:49 -0500619 gui_msg("simulating=Simulating actions...");
that3f7b1ac2014-12-30 11:30:13 +0100620 } else if (!simulate) {
621 PartitionManager.Mount_By_Path(arg, true);
622 PartitionManager.Add_MTP_Storage(arg);
623 } else
Ethan Yonker74db1572015-10-28 12:44:49 -0500624 gui_msg("simulating=Simulating actions...");
that3f7b1ac2014-12-30 11:30:13 +0100625 return 0;
626}
627
628int GUIAction::unmount(std::string arg)
629{
630 if (arg == "usb") {
631 if (!simulate)
632 PartitionManager.usb_storage_disable();
633 else
Ethan Yonker74db1572015-10-28 12:44:49 -0500634 gui_msg("simulating=Simulating actions...");
that3f7b1ac2014-12-30 11:30:13 +0100635 DataManager::SetValue(TW_ACTION_BUSY, 0);
636 } else if (!simulate) {
637 PartitionManager.UnMount_By_Path(arg, true);
638 } else
Ethan Yonker74db1572015-10-28 12:44:49 -0500639 gui_msg("simulating=Simulating actions...");
that3f7b1ac2014-12-30 11:30:13 +0100640 return 0;
641}
642
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500643int GUIAction::restoredefaultsettings(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100644{
645 operation_start("Restore Defaults");
646 if (simulate) // Simulated so that people don't accidently wipe out the "simulation is on" setting
Ethan Yonker74db1572015-10-28 12:44:49 -0500647 gui_msg("simulating=Simulating actions...");
that3f7b1ac2014-12-30 11:30:13 +0100648 else {
649 DataManager::ResetDefaults();
650 PartitionManager.Update_System_Details();
651 PartitionManager.Mount_Current_Storage(true);
652 }
653 operation_end(0);
654 return 0;
655}
656
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500657int GUIAction::copylog(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100658{
659 operation_start("Copy Log");
660 if (!simulate)
661 {
bigbiff bigbiffbad332a2016-07-29 21:18:13 -0400662 string dst, curr_storage;
663 int copy_kernel_log = 0;
664
665 DataManager::GetValue("tw_include_kernel_log", copy_kernel_log);
that3f7b1ac2014-12-30 11:30:13 +0100666 PartitionManager.Mount_Current_Storage(true);
bigbiff bigbiffbad332a2016-07-29 21:18:13 -0400667 curr_storage = DataManager::GetCurrentStoragePath();
668 dst = curr_storage + "/recovery.log";
that3f7b1ac2014-12-30 11:30:13 +0100669 TWFunc::copy_file("/tmp/recovery.log", dst.c_str(), 0755);
670 tw_set_default_metadata(dst.c_str());
bigbiff bigbiffbad332a2016-07-29 21:18:13 -0400671 if (copy_kernel_log)
672 TWFunc::copy_kernel_log(curr_storage);
that3f7b1ac2014-12-30 11:30:13 +0100673 sync();
bigbiff bigbiffbad332a2016-07-29 21:18:13 -0400674 gui_msg(Msg("copy_log=Copied recovery log to {1}")(dst));
that3f7b1ac2014-12-30 11:30:13 +0100675 } else
676 simulate_progress_bar();
677 operation_end(0);
678 return 0;
679}
680
681
682int GUIAction::compute(std::string arg)
683{
684 if (arg.find("+") != string::npos)
685 {
686 string varName = arg.substr(0, arg.find('+'));
687 string string_to_add = arg.substr(arg.find('+') + 1, string::npos);
688 int amount_to_add = atoi(string_to_add.c_str());
689 int value;
690
691 DataManager::GetValue(varName, value);
692 DataManager::SetValue(varName, value + amount_to_add);
Dees_Troy51a0e822012-09-05 15:24:24 -0400693 return 0;
694 }
that3f7b1ac2014-12-30 11:30:13 +0100695 if (arg.find("-") != string::npos)
Dees_Troy51a0e822012-09-05 15:24:24 -0400696 {
that3f7b1ac2014-12-30 11:30:13 +0100697 string varName = arg.substr(0, arg.find('-'));
698 string string_to_subtract = arg.substr(arg.find('-') + 1, string::npos);
699 int amount_to_subtract = atoi(string_to_subtract.c_str());
700 int value;
Dees_Troy51a0e822012-09-05 15:24:24 -0400701
that3f7b1ac2014-12-30 11:30:13 +0100702 DataManager::GetValue(varName, value);
703 value -= amount_to_subtract;
704 if (value <= 0)
705 value = 0;
706 DataManager::SetValue(varName, value);
707 return 0;
708 }
709 if (arg.find("*") != string::npos)
710 {
711 string varName = arg.substr(0, arg.find('*'));
712 string multiply_by_str = gui_parse_text(arg.substr(arg.find('*') + 1, string::npos));
713 int multiply_by = atoi(multiply_by_str.c_str());
714 int value;
715
716 DataManager::GetValue(varName, value);
717 DataManager::SetValue(varName, value*multiply_by);
718 return 0;
719 }
720 if (arg.find("/") != string::npos)
721 {
722 string varName = arg.substr(0, arg.find('/'));
723 string divide_by_str = gui_parse_text(arg.substr(arg.find('/') + 1, string::npos));
724 int divide_by = atoi(divide_by_str.c_str());
725 int value;
726
Matt Mowera8a89d12016-12-30 18:10:37 -0600727 if (divide_by != 0)
that3f7b1ac2014-12-30 11:30:13 +0100728 {
Dees_Troy51a0e822012-09-05 15:24:24 -0400729 DataManager::GetValue(varName, value);
that3f7b1ac2014-12-30 11:30:13 +0100730 DataManager::SetValue(varName, value/divide_by);
Dees_Troy51a0e822012-09-05 15:24:24 -0400731 }
732 return 0;
733 }
that3f7b1ac2014-12-30 11:30:13 +0100734 LOGERR("Unable to perform compute '%s'\n", arg.c_str());
735 return -1;
736}
Dees_Troy51a0e822012-09-05 15:24:24 -0400737
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500738int GUIAction::setguitimezone(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100739{
740 string SelectedZone;
741 DataManager::GetValue(TW_TIME_ZONE_GUISEL, SelectedZone); // read the selected time zone into SelectedZone
742 string Zone = SelectedZone.substr(0, SelectedZone.find(';')); // parse to get time zone
743 string DSTZone = SelectedZone.substr(SelectedZone.find(';') + 1, string::npos); // parse to get DST component
744
745 int dst;
746 DataManager::GetValue(TW_TIME_ZONE_GUIDST, dst); // check wether user chose to use DST
747
748 string offset;
749 DataManager::GetValue(TW_TIME_ZONE_GUIOFFSET, offset); // pull in offset
750
751 string NewTimeZone = Zone;
752 if (offset != "0")
753 NewTimeZone += ":" + offset;
754
755 if (dst != 0)
756 NewTimeZone += DSTZone;
757
758 DataManager::SetValue(TW_TIME_ZONE_VAR, NewTimeZone);
759 DataManager::update_tz_environment_variables();
760 return 0;
761}
762
763int GUIAction::overlay(std::string arg)
764{
765 return gui_changeOverlay(arg);
766}
767
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500768int GUIAction::queuezip(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100769{
770 if (zip_queue_index >= 10) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500771 gui_msg("max_queue=Maximum zip queue reached!");
Dees_Troy51a0e822012-09-05 15:24:24 -0400772 return 0;
773 }
that3f7b1ac2014-12-30 11:30:13 +0100774 DataManager::GetValue("tw_filename", zip_queue[zip_queue_index]);
775 if (strlen(zip_queue[zip_queue_index].c_str()) > 0) {
776 zip_queue_index++;
Dees_Troy51a0e822012-09-05 15:24:24 -0400777 DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index);
that3f7b1ac2014-12-30 11:30:13 +0100778 }
779 return 0;
780}
781
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500782int GUIAction::cancelzip(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100783{
784 if (zip_queue_index <= 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -0500785 gui_msg("min_queue=Minimum zip queue reached!");
Dees_Troy51a0e822012-09-05 15:24:24 -0400786 return 0;
that3f7b1ac2014-12-30 11:30:13 +0100787 } else {
788 zip_queue_index--;
789 DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index);
Dees_Troy51a0e822012-09-05 15:24:24 -0400790 }
that3f7b1ac2014-12-30 11:30:13 +0100791 return 0;
792}
Dees_Troy51a0e822012-09-05 15:24:24 -0400793
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500794int GUIAction::queueclear(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100795{
796 zip_queue_index = 0;
797 DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index);
798 return 0;
799}
Dees_Troy51a0e822012-09-05 15:24:24 -0400800
that3f7b1ac2014-12-30 11:30:13 +0100801int GUIAction::sleep(std::string arg)
802{
803 operation_start("Sleep");
804 usleep(atoi(arg.c_str()));
805 operation_end(0);
806 return 0;
807}
Dees Troyb21cc642013-09-10 17:36:41 +0000808
Matt Mower9a2a2052016-05-31 21:31:22 -0500809int GUIAction::sleepcounter(std::string arg)
810{
811 operation_start("SleepCounter");
812 // Ensure user notices countdown in case it needs to be cancelled
813 blankTimer.resetTimerAndUnblank();
814 int total = atoi(arg.c_str());
815 for (int t = total; t > 0; t--) {
816 int progress = (int)(((float)(total-t)/(float)total)*100.0);
817 DataManager::SetValue("ui_progress", progress);
818 ::sleep(1);
819 DataManager::SetValue("tw_sleep", t-1);
820 }
821 DataManager::SetValue("ui_progress", 100);
822 operation_end(0);
823 return 0;
824}
825
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500826int GUIAction::appenddatetobackupname(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100827{
828 operation_start("AppendDateToBackupName");
829 string Backup_Name;
830 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
831 Backup_Name += TWFunc::Get_Current_Date();
832 if (Backup_Name.size() > MAX_BACKUP_NAME_LEN)
833 Backup_Name.resize(MAX_BACKUP_NAME_LEN);
834 DataManager::SetValue(TW_BACKUP_NAME, Backup_Name);
Matt Mower76b8afc2016-06-24 12:04:27 -0500835 PageManager::NotifyKey(KEY_END, true);
836 PageManager::NotifyKey(KEY_END, false);
that3f7b1ac2014-12-30 11:30:13 +0100837 operation_end(0);
838 return 0;
839}
Ethan Yonker87c7bac2014-05-25 21:41:08 -0500840
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500841int GUIAction::generatebackupname(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100842{
843 operation_start("GenerateBackupName");
844 TWFunc::Auto_Generate_Backup_Name();
845 operation_end(0);
846 return 0;
847}
Ethan Yonker87c7bac2014-05-25 21:41:08 -0500848
Ethan Yonker483e9f42016-01-11 22:21:18 -0600849int GUIAction::checkpartitionlist(std::string arg)
that3f7b1ac2014-12-30 11:30:13 +0100850{
Ethan Yonker483e9f42016-01-11 22:21:18 -0600851 string List, part_path;
that3f7b1ac2014-12-30 11:30:13 +0100852 int count = 0;
Ethan Yonker87c7bac2014-05-25 21:41:08 -0500853
Ethan Yonker483e9f42016-01-11 22:21:18 -0600854 if (arg.empty())
855 arg = "tw_wipe_list";
856 DataManager::GetValue(arg, List);
857 LOGINFO("checkpartitionlist list '%s'\n", List.c_str());
858 if (!List.empty()) {
859 size_t start_pos = 0, end_pos = List.find(";", start_pos);
860 while (end_pos != string::npos && start_pos < List.size()) {
861 part_path = List.substr(start_pos, end_pos - start_pos);
862 LOGINFO("checkpartitionlist part_path '%s'\n", part_path.c_str());
863 if (part_path == "/and-sec" || part_path == "DALVIK" || part_path == "INTERNAL") {
that3f7b1ac2014-12-30 11:30:13 +0100864 // Do nothing
Dees_Troy51a0e822012-09-05 15:24:24 -0400865 } else {
that3f7b1ac2014-12-30 11:30:13 +0100866 count++;
867 }
868 start_pos = end_pos + 1;
Ethan Yonker483e9f42016-01-11 22:21:18 -0600869 end_pos = List.find(";", start_pos);
that3f7b1ac2014-12-30 11:30:13 +0100870 }
871 DataManager::SetValue("tw_check_partition_list", count);
872 } else {
873 DataManager::SetValue("tw_check_partition_list", 0);
874 }
Matt Mowera8a89d12016-12-30 18:10:37 -0600875 return 0;
that3f7b1ac2014-12-30 11:30:13 +0100876}
Dees_Troy51a0e822012-09-05 15:24:24 -0400877
Ethan Yonker483e9f42016-01-11 22:21:18 -0600878int GUIAction::getpartitiondetails(std::string arg)
that3f7b1ac2014-12-30 11:30:13 +0100879{
Ethan Yonker483e9f42016-01-11 22:21:18 -0600880 string List, part_path;
Dees_Troy51a0e822012-09-05 15:24:24 -0400881
Ethan Yonker483e9f42016-01-11 22:21:18 -0600882 if (arg.empty())
883 arg = "tw_wipe_list";
884 DataManager::GetValue(arg, List);
885 LOGINFO("getpartitiondetails list '%s'\n", List.c_str());
886 if (!List.empty()) {
887 size_t start_pos = 0, end_pos = List.find(";", start_pos);
888 part_path = List;
889 while (end_pos != string::npos && start_pos < List.size()) {
890 part_path = List.substr(start_pos, end_pos - start_pos);
891 LOGINFO("getpartitiondetails part_path '%s'\n", part_path.c_str());
892 if (part_path == "/and-sec" || part_path == "DALVIK" || part_path == "INTERNAL") {
that3f7b1ac2014-12-30 11:30:13 +0100893 // Do nothing
894 } else {
Ethan Yonker483e9f42016-01-11 22:21:18 -0600895 DataManager::SetValue("tw_partition_path", part_path);
that3f7b1ac2014-12-30 11:30:13 +0100896 break;
897 }
898 start_pos = end_pos + 1;
Ethan Yonker483e9f42016-01-11 22:21:18 -0600899 end_pos = List.find(";", start_pos);
that3f7b1ac2014-12-30 11:30:13 +0100900 }
Ethan Yonker483e9f42016-01-11 22:21:18 -0600901 if (!part_path.empty()) {
902 TWPartition* Part = PartitionManager.Find_Partition_By_Path(part_path);
that3f7b1ac2014-12-30 11:30:13 +0100903 if (Part) {
904 unsigned long long mb = 1048576;
Dees_Troya13d74f2013-03-24 08:54:55 -0500905
that3f7b1ac2014-12-30 11:30:13 +0100906 DataManager::SetValue("tw_partition_name", Part->Display_Name);
907 DataManager::SetValue("tw_partition_mount_point", Part->Mount_Point);
908 DataManager::SetValue("tw_partition_file_system", Part->Current_File_System);
909 DataManager::SetValue("tw_partition_size", Part->Size / mb);
910 DataManager::SetValue("tw_partition_used", Part->Used / mb);
911 DataManager::SetValue("tw_partition_free", Part->Free / mb);
912 DataManager::SetValue("tw_partition_backup_size", Part->Backup_Size / mb);
913 DataManager::SetValue("tw_partition_removable", Part->Removable);
914 DataManager::SetValue("tw_partition_is_present", Part->Is_Present);
915
916 if (Part->Can_Repair())
917 DataManager::SetValue("tw_partition_can_repair", 1);
918 else
919 DataManager::SetValue("tw_partition_can_repair", 0);
Ethan Yonkera2719152015-05-28 09:44:41 -0500920 if (Part->Can_Resize())
921 DataManager::SetValue("tw_partition_can_resize", 1);
922 else
923 DataManager::SetValue("tw_partition_can_resize", 0);
Matt Mower18794c82015-11-11 16:22:45 -0600924 if (TWFunc::Path_Exists("/sbin/mkfs.fat"))
that3f7b1ac2014-12-30 11:30:13 +0100925 DataManager::SetValue("tw_partition_vfat", 1);
926 else
927 DataManager::SetValue("tw_partition_vfat", 0);
Matt Mower80f7b362015-12-12 15:38:01 -0600928 if (TWFunc::Path_Exists("/sbin/mkexfatfs"))
that3f7b1ac2014-12-30 11:30:13 +0100929 DataManager::SetValue("tw_partition_exfat", 1);
930 else
931 DataManager::SetValue("tw_partition_exfat", 0);
932 if (TWFunc::Path_Exists("/sbin/mkfs.f2fs"))
933 DataManager::SetValue("tw_partition_f2fs", 1);
934 else
935 DataManager::SetValue("tw_partition_f2fs", 0);
936 if (TWFunc::Path_Exists("/sbin/mke2fs"))
937 DataManager::SetValue("tw_partition_ext", 1);
938 else
939 DataManager::SetValue("tw_partition_ext", 0);
940 return 0;
941 } else {
Ethan Yonker483e9f42016-01-11 22:21:18 -0600942 LOGERR("Unable to locate partition: '%s'\n", part_path.c_str());
that3f7b1ac2014-12-30 11:30:13 +0100943 }
944 }
945 }
946 DataManager::SetValue("tw_partition_name", "");
947 DataManager::SetValue("tw_partition_file_system", "");
Ethan Yonker483e9f42016-01-11 22:21:18 -0600948 // Set this to 0 to prevent trying to partition this device, just in case
949 DataManager::SetValue("tw_partition_removable", 0);
that3f7b1ac2014-12-30 11:30:13 +0100950 return 0;
951}
952
Ethan Yonkerd0514ba2015-10-22 14:17:47 -0500953int GUIAction::screenshot(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +0100954{
955 time_t tm;
956 char path[256];
957 int path_len;
Matt Mower0c88b842017-01-15 16:00:49 -0600958 uid_t uid = AID_MEDIA_RW;
959 gid_t gid = AID_MEDIA_RW;
that3f7b1ac2014-12-30 11:30:13 +0100960
961 const std::string storage = DataManager::GetCurrentStoragePath();
Matt Mowera8a89d12016-12-30 18:10:37 -0600962 if (PartitionManager.Is_Mounted_By_Path(storage)) {
that3f7b1ac2014-12-30 11:30:13 +0100963 snprintf(path, sizeof(path), "%s/Pictures/Screenshots/", storage.c_str());
964 } else {
965 strcpy(path, "/tmp/");
966 }
967
Matt Mowera8a89d12016-12-30 18:10:37 -0600968 if (!TWFunc::Create_Dir_Recursive(path, 0775, uid, gid))
that3f7b1ac2014-12-30 11:30:13 +0100969 return 0;
970
971 tm = time(NULL);
972 path_len = strlen(path);
973
974 // Screenshot_2014-01-01-18-21-38.png
975 strftime(path+path_len, sizeof(path)-path_len, "Screenshot_%Y-%m-%d-%H-%M-%S.png", localtime(&tm));
976
977 int res = gr_save_screenshot(path);
Matt Mowera8a89d12016-12-30 18:10:37 -0600978 if (res == 0) {
that3f7b1ac2014-12-30 11:30:13 +0100979 chmod(path, 0666);
980 chown(path, uid, gid);
981
that677b13f2015-12-26 23:57:31 +0100982 gui_msg(Msg("screenshot_saved=Screenshot was saved to {1}")(path));
that3f7b1ac2014-12-30 11:30:13 +0100983
VDavid0032034a412019-10-18 22:43:20 +0200984 // blink to notify that the screenshot was taken
that3f7b1ac2014-12-30 11:30:13 +0100985 gr_color(255, 255, 255, 255);
986 gr_fill(0, 0, gr_fb_width(), gr_fb_height());
987 gr_flip();
988 gui_forceRender();
989 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -0500990 gui_err("screenshot_err=Failed to take a screenshot!");
that3f7b1ac2014-12-30 11:30:13 +0100991 }
992 return 0;
993}
994
995int GUIAction::setbrightness(std::string arg)
996{
997 return TWFunc::Set_Brightness(arg);
998}
999
1000int GUIAction::fileexists(std::string arg)
1001{
1002 struct stat st;
1003 string newpath = arg + "/.";
1004
1005 operation_start("FileExists");
1006 if (stat(arg.c_str(), &st) == 0 || stat(newpath.c_str(), &st) == 0)
1007 operation_end(0);
1008 else
1009 operation_end(1);
1010 return 0;
1011}
1012
thatcc8ddca2015-01-03 01:59:36 +01001013void GUIAction::reinject_after_flash()
1014{
1015 if (DataManager::GetIntValue(TW_HAS_INJECTTWRP) == 1 && DataManager::GetIntValue(TW_INJECT_AFTER_ZIP) == 1) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001016 gui_msg("injecttwrp=Injecting TWRP into boot image...");
thatcc8ddca2015-01-03 01:59:36 +01001017 if (simulate) {
1018 simulate_progress_bar();
1019 } else {
1020 TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot");
1021 if (Boot == NULL || Boot->Current_File_System != "emmc")
1022 TWFunc::Exec_Cmd("injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash");
1023 else {
1024 string injectcmd = "injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash bd=" + Boot->Actual_Block_Device;
1025 TWFunc::Exec_Cmd(injectcmd);
1026 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001027 gui_msg("done=Done.");
thatcc8ddca2015-01-03 01:59:36 +01001028 }
1029 }
1030}
1031
that3f7b1ac2014-12-30 11:30:13 +01001032int GUIAction::flash(std::string arg)
1033{
1034 int i, ret_val = 0, wipe_cache = 0;
Ethan Yonker0d47eb52015-01-09 11:23:19 -06001035 // We're going to jump to this page first, like a loading page
1036 gui_changePage(arg);
that3f7b1ac2014-12-30 11:30:13 +01001037 for (i=0; i<zip_queue_index; i++) {
thatc7b631b2015-06-01 23:36:57 +02001038 string zip_path = zip_queue[i];
1039 size_t slashpos = zip_path.find_last_of('/');
1040 string zip_filename = (slashpos == string::npos) ? zip_path : zip_path.substr(slashpos + 1);
that3f7b1ac2014-12-30 11:30:13 +01001041 operation_start("Flashing");
thatc7b631b2015-06-01 23:36:57 +02001042 DataManager::SetValue("tw_filename", zip_path);
1043 DataManager::SetValue("tw_file", zip_filename);
that3f7b1ac2014-12-30 11:30:13 +01001044 DataManager::SetValue(TW_ZIP_INDEX, (i + 1));
1045
1046 TWFunc::SetPerformanceMode(true);
thatc7b631b2015-06-01 23:36:57 +02001047 ret_val = flash_zip(zip_path, &wipe_cache);
that3f7b1ac2014-12-30 11:30:13 +01001048 TWFunc::SetPerformanceMode(false);
1049 if (ret_val != 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001050 gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(zip_path));
that3f7b1ac2014-12-30 11:30:13 +01001051 ret_val = 1;
Ethan Yonker0d47eb52015-01-09 11:23:19 -06001052 break;
that3f7b1ac2014-12-30 11:30:13 +01001053 }
1054 }
1055 zip_queue_index = 0;
that3f7b1ac2014-12-30 11:30:13 +01001056
Ethan Yonker0d47eb52015-01-09 11:23:19 -06001057 if (wipe_cache) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001058 gui_msg("zip_wipe_cache=One or more zip requested a cache wipe -- Wiping cache now.");
that3f7b1ac2014-12-30 11:30:13 +01001059 PartitionManager.Wipe_By_Path("/cache");
Ethan Yonker0d47eb52015-01-09 11:23:19 -06001060 }
that3f7b1ac2014-12-30 11:30:13 +01001061
thatcc8ddca2015-01-03 01:59:36 +01001062 reinject_after_flash();
that3f7b1ac2014-12-30 11:30:13 +01001063 PartitionManager.Update_System_Details();
1064 operation_end(ret_val);
bigbiffa869fc72016-03-01 19:40:36 -05001065 // This needs to be after the operation_end call so we change pages before we change variables that we display on the screen
Ethan Yonker0d47eb52015-01-09 11:23:19 -06001066 DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index);
that3f7b1ac2014-12-30 11:30:13 +01001067 return 0;
1068}
1069
1070int GUIAction::wipe(std::string arg)
1071{
1072 operation_start("Format");
1073 DataManager::SetValue("tw_partition", arg);
that3f7b1ac2014-12-30 11:30:13 +01001074 int ret_val = false;
1075
1076 if (simulate) {
1077 simulate_progress_bar();
1078 } else {
1079 if (arg == "data")
1080 ret_val = PartitionManager.Factory_Reset();
1081 else if (arg == "battery")
1082 ret_val = PartitionManager.Wipe_Battery_Stats();
1083 else if (arg == "rotate")
1084 ret_val = PartitionManager.Wipe_Rotate_Data();
1085 else if (arg == "dalvik")
1086 ret_val = PartitionManager.Wipe_Dalvik_Cache();
1087 else if (arg == "DATAMEDIA") {
1088 ret_val = PartitionManager.Format_Data();
1089 } else if (arg == "INTERNAL") {
Matt Mower23d8aae2017-01-06 14:30:33 -06001090 int has_datamedia;
that3f7b1ac2014-12-30 11:30:13 +01001091
1092 DataManager::GetValue(TW_HAS_DATA_MEDIA, has_datamedia);
1093 if (has_datamedia) {
1094 ret_val = PartitionManager.Wipe_Media_From_Data();
1095 } else {
1096 ret_val = PartitionManager.Wipe_By_Path(DataManager::GetSettingsStoragePath());
1097 }
1098 } else if (arg == "EXTERNAL") {
1099 string External_Path;
1100
1101 DataManager::GetValue(TW_EXTERNAL_PATH, External_Path);
1102 ret_val = PartitionManager.Wipe_By_Path(External_Path);
1103 } else if (arg == "ANDROIDSECURE") {
1104 ret_val = PartitionManager.Wipe_Android_Secure();
1105 } else if (arg == "LIST") {
1106 string Wipe_List, wipe_path;
1107 bool skip = false;
1108 ret_val = true;
that3f7b1ac2014-12-30 11:30:13 +01001109
1110 DataManager::GetValue("tw_wipe_list", Wipe_List);
1111 LOGINFO("wipe list '%s'\n", Wipe_List.c_str());
1112 if (!Wipe_List.empty()) {
1113 size_t start_pos = 0, end_pos = Wipe_List.find(";", start_pos);
1114 while (end_pos != string::npos && start_pos < Wipe_List.size()) {
1115 wipe_path = Wipe_List.substr(start_pos, end_pos - start_pos);
1116 LOGINFO("wipe_path '%s'\n", wipe_path.c_str());
1117 if (wipe_path == "/and-sec") {
1118 if (!PartitionManager.Wipe_Android_Secure()) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001119 gui_msg("and_sec_wipe_err=Unable to wipe android secure");
that3f7b1ac2014-12-30 11:30:13 +01001120 ret_val = false;
1121 break;
1122 } else {
1123 skip = true;
1124 }
1125 } else if (wipe_path == "DALVIK") {
1126 if (!PartitionManager.Wipe_Dalvik_Cache()) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001127 gui_err("dalvik_wipe_err=Failed to wipe dalvik");
that3f7b1ac2014-12-30 11:30:13 +01001128 ret_val = false;
1129 break;
1130 } else {
1131 skip = true;
1132 }
1133 } else if (wipe_path == "INTERNAL") {
1134 if (!PartitionManager.Wipe_Media_From_Data()) {
1135 ret_val = false;
1136 break;
1137 } else {
1138 skip = true;
Dees_Troya13d74f2013-03-24 08:54:55 -05001139 }
1140 }
that3f7b1ac2014-12-30 11:30:13 +01001141 if (!skip) {
1142 if (!PartitionManager.Wipe_By_Path(wipe_path)) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001143 gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(wipe_path));
that3f7b1ac2014-12-30 11:30:13 +01001144 ret_val = false;
1145 break;
1146 } else if (wipe_path == DataManager::GetSettingsStoragePath()) {
1147 arg = wipe_path;
1148 }
Dees_Troy38bd7602012-09-14 13:33:53 -04001149 } else {
that3f7b1ac2014-12-30 11:30:13 +01001150 skip = false;
Dees_Troy38bd7602012-09-14 13:33:53 -04001151 }
that3f7b1ac2014-12-30 11:30:13 +01001152 start_pos = end_pos + 1;
1153 end_pos = Wipe_List.find(";", start_pos);
Dees_Troy51a0e822012-09-05 15:24:24 -04001154 }
1155 }
that3f7b1ac2014-12-30 11:30:13 +01001156 } else
1157 ret_val = PartitionManager.Wipe_By_Path(arg);
that73a52952015-01-28 23:07:34 +01001158#ifndef TW_OEM_BUILD
that3f7b1ac2014-12-30 11:30:13 +01001159 if (arg == DataManager::GetSettingsStoragePath()) {
1160 // If we wiped the settings storage path, recreate the TWRP folder and dump the settings
1161 string Storage_Path = DataManager::GetSettingsStoragePath();
Dees_Troy51a0e822012-09-05 15:24:24 -04001162
that3f7b1ac2014-12-30 11:30:13 +01001163 if (PartitionManager.Mount_By_Path(Storage_Path, true)) {
1164 LOGINFO("Making TWRP folder and saving settings.\n");
1165 Storage_Path += "/TWRP";
1166 mkdir(Storage_Path.c_str(), 0777);
1167 DataManager::Flush();
Dees_Troy51a0e822012-09-05 15:24:24 -04001168 } else {
that3f7b1ac2014-12-30 11:30:13 +01001169 LOGERR("Unable to recreate TWRP folder and save settings.\n");
1170 }
1171 }
1172#endif
1173 }
1174 PartitionManager.Update_System_Details();
1175 if (ret_val)
1176 ret_val = 0; // 0 is success
1177 else
1178 ret_val = 1; // 1 is failure
1179 operation_end(ret_val);
1180 return 0;
1181}
Samer Diab (S.a.M.e.R_d)71e9b042014-01-07 20:18:47 +00001182
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001183int GUIAction::refreshsizes(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001184{
1185 operation_start("Refreshing Sizes");
1186 if (simulate) {
1187 simulate_progress_bar();
1188 } else
1189 PartitionManager.Update_System_Details();
1190 operation_end(0);
1191 return 0;
1192}
1193
1194int GUIAction::nandroid(std::string arg)
1195{
that3f7b1ac2014-12-30 11:30:13 +01001196 if (simulate) {
that73a52952015-01-28 23:07:34 +01001197 PartitionManager.stop_backup.set_value(0);
that3f7b1ac2014-12-30 11:30:13 +01001198 DataManager::SetValue("tw_partition", "Simulation");
1199 simulate_progress_bar();
that73a52952015-01-28 23:07:34 +01001200 operation_end(0);
that3f7b1ac2014-12-30 11:30:13 +01001201 } else {
bigbiff7abc5fe2015-01-17 16:53:12 -05001202 operation_start("Nandroid");
1203 int ret = 0;
1204
that3f7b1ac2014-12-30 11:30:13 +01001205 if (arg == "backup") {
1206 string Backup_Name;
1207 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
Ethan Yonker4adc33e2016-01-22 16:07:11 -06001208 string auto_gen = gui_lookup("auto_generate", "(Auto Generate)");
Ethan Yonker53796e72019-01-11 22:49:52 -06001209 if (Backup_Name == auto_gen || Backup_Name == gui_lookup("curr_date", "(Current Date)") || Backup_Name == "0" || Backup_Name == "(" || PartitionManager.Check_Backup_Name(Backup_Name, true, true) == 0) {
bigbiffce8f83c2015-12-12 18:30:21 -05001210 ret = PartitionManager.Run_Backup(false);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001211 DataManager::SetValue("tw_encrypt_backup", 0); // reset value so we don't encrypt every subsequent backup
1212 if (!PartitionManager.stop_backup.get_value()) {
1213 if (ret == false)
1214 ret = 1; // 1 for failure
1215 else
1216 ret = 0; // 0 for success
1217 DataManager::SetValue("tw_cancel_backup", 0);
1218 } else {
1219 DataManager::SetValue("tw_cancel_backup", 1);
1220 gui_msg("backup_cancel=Backup Cancelled");
1221 ret = 0;
1222 }
bigbiffce8f83c2015-12-12 18:30:21 -05001223 } else {
that3f7b1ac2014-12-30 11:30:13 +01001224 operation_end(1);
1225 return -1;
that3f7b1ac2014-12-30 11:30:13 +01001226 }
Ethan Yonker74db1572015-10-28 12:44:49 -05001227 DataManager::SetValue(TW_BACKUP_NAME, auto_gen);
that3f7b1ac2014-12-30 11:30:13 +01001228 } else if (arg == "restore") {
1229 string Restore_Name;
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001230 int gui_adb_backup;
1231
that3f7b1ac2014-12-30 11:30:13 +01001232 DataManager::GetValue("tw_restore", Restore_Name);
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001233 DataManager::GetValue("tw_enable_adb_backup", gui_adb_backup);
1234 if (gui_adb_backup) {
1235 DataManager::SetValue("tw_operation_state", 1);
1236 if (TWFunc::stream_adb_backup(Restore_Name) == 0)
1237 ret = 0; // success
1238 else
1239 ret = 1; // failure
1240 DataManager::SetValue("tw_enable_adb_backup", 0);
1241 ret = 0; // assume success???
1242 } else {
1243 if (PartitionManager.Run_Restore(Restore_Name))
1244 ret = 0; // success
1245 else
1246 ret = 1; // failure
1247 }
that3f7b1ac2014-12-30 11:30:13 +01001248 } else {
bigbiff bigbiff19fb79c2016-09-05 21:04:51 -04001249 operation_end(1); // invalid arg specified, fail
bigbiff7abc5fe2015-01-17 16:53:12 -05001250 return -1;
1251 }
that73a52952015-01-28 23:07:34 +01001252 operation_end(ret);
bigbiff7abc5fe2015-01-17 16:53:12 -05001253 return ret;
1254 }
1255 return 0;
1256}
1257
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001258int GUIAction::cancelbackup(std::string arg __unused) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001259 if (simulate) {
bigbiff7abc5fe2015-01-17 16:53:12 -05001260 PartitionManager.stop_backup.set_value(1);
bigbiff7abc5fe2015-01-17 16:53:12 -05001261 }
1262 else {
bigbiff7abc5fe2015-01-17 16:53:12 -05001263 int op_status = PartitionManager.Cancel_Backup();
1264 if (op_status != 0)
1265 op_status = 1; // failure
bigbiff7abc5fe2015-01-17 16:53:12 -05001266 }
1267
1268 return 0;
that3f7b1ac2014-12-30 11:30:13 +01001269}
Dees_Troy51a0e822012-09-05 15:24:24 -04001270
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001271int GUIAction::fixcontexts(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001272{
that73a52952015-01-28 23:07:34 +01001273 int op_status = 0;
1274
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001275 operation_start("Fix Contexts");
1276 LOGINFO("fix contexts started!\n");
that3f7b1ac2014-12-30 11:30:13 +01001277 if (simulate) {
1278 simulate_progress_bar();
1279 } else {
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001280 op_status = PartitionManager.Fix_Contexts();
that3f7b1ac2014-12-30 11:30:13 +01001281 if (op_status != 0)
1282 op_status = 1; // failure
that3f7b1ac2014-12-30 11:30:13 +01001283 }
that73a52952015-01-28 23:07:34 +01001284 operation_end(op_status);
that3f7b1ac2014-12-30 11:30:13 +01001285 return 0;
1286}
1287
Ethan Yonkerb5fab762016-01-28 14:03:33 -06001288int GUIAction::fixpermissions(std::string arg)
1289{
1290 return fixcontexts(arg);
1291}
1292
that3f7b1ac2014-12-30 11:30:13 +01001293int GUIAction::dd(std::string arg)
1294{
1295 operation_start("imaging");
1296
1297 if (simulate) {
1298 simulate_progress_bar();
1299 } else {
1300 string cmd = "dd " + arg;
1301 TWFunc::Exec_Cmd(cmd);
1302 }
1303 operation_end(0);
1304 return 0;
1305}
1306
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001307int GUIAction::partitionsd(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001308{
1309 operation_start("Partition SD Card");
1310 int ret_val = 0;
1311
1312 if (simulate) {
1313 simulate_progress_bar();
1314 } else {
1315 int allow_partition;
1316 DataManager::GetValue(TW_ALLOW_PARTITION_SDCARD, allow_partition);
1317 if (allow_partition == 0) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001318 gui_err("no_real_sdcard=This device does not have a real SD Card! Aborting!");
that3f7b1ac2014-12-30 11:30:13 +01001319 } else {
1320 if (!PartitionManager.Partition_SDCard())
1321 ret_val = 1; // failed
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001322 }
that3f7b1ac2014-12-30 11:30:13 +01001323 }
1324 operation_end(ret_val);
1325 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -04001326
that3f7b1ac2014-12-30 11:30:13 +01001327}
Dees_Troy51a0e822012-09-05 15:24:24 -04001328
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001329int GUIAction::installhtcdumlock(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001330{
1331 operation_start("Install HTC Dumlock");
1332 if (simulate) {
1333 simulate_progress_bar();
1334 } else
1335 TWFunc::install_htc_dumlock();
Dees_Troy51a0e822012-09-05 15:24:24 -04001336
that3f7b1ac2014-12-30 11:30:13 +01001337 operation_end(0);
1338 return 0;
1339}
Dees_Troy51a0e822012-09-05 15:24:24 -04001340
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001341int GUIAction::htcdumlockrestoreboot(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001342{
1343 operation_start("HTC Dumlock Restore Boot");
1344 if (simulate) {
1345 simulate_progress_bar();
1346 } else
1347 TWFunc::htc_dumlock_restore_original_boot();
Dees_Troy51a0e822012-09-05 15:24:24 -04001348
that3f7b1ac2014-12-30 11:30:13 +01001349 operation_end(0);
1350 return 0;
1351}
Dees_Troy51a0e822012-09-05 15:24:24 -04001352
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001353int GUIAction::htcdumlockreflashrecovery(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001354{
1355 operation_start("HTC Dumlock Reflash Recovery");
1356 if (simulate) {
1357 simulate_progress_bar();
1358 } else
1359 TWFunc::htc_dumlock_reflash_recovery_to_boot();
Dees_Troy51a0e822012-09-05 15:24:24 -04001360
that3f7b1ac2014-12-30 11:30:13 +01001361 operation_end(0);
1362 return 0;
1363}
Dees_Troy51a0e822012-09-05 15:24:24 -04001364
that3f7b1ac2014-12-30 11:30:13 +01001365int GUIAction::cmd(std::string arg)
1366{
1367 int op_status = 0;
1368
1369 operation_start("Command");
1370 LOGINFO("Running command: '%s'\n", arg.c_str());
1371 if (simulate) {
1372 simulate_progress_bar();
1373 } else {
1374 op_status = TWFunc::Exec_Cmd(arg);
1375 if (op_status != 0)
1376 op_status = 1;
1377 }
1378
1379 operation_end(op_status);
1380 return 0;
1381}
1382
1383int GUIAction::terminalcommand(std::string arg)
1384{
1385 int op_status = 0;
1386 string cmdpath, command;
1387
1388 DataManager::GetValue("tw_terminal_location", cmdpath);
1389 operation_start("CommandOutput");
1390 gui_print("%s # %s\n", cmdpath.c_str(), arg.c_str());
1391 if (simulate) {
1392 simulate_progress_bar();
1393 operation_end(op_status);
Matt Mower5aa29ab2015-02-25 23:50:55 -06001394 } else if (arg == "exit") {
1395 LOGINFO("Exiting terminal\n");
1396 operation_end(op_status);
1397 page("main");
that3f7b1ac2014-12-30 11:30:13 +01001398 } else {
1399 command = "cd \"" + cmdpath + "\" && " + arg + " 2>&1";;
1400 LOGINFO("Actual command is: '%s'\n", command.c_str());
that3f7b1ac2014-12-30 11:30:13 +01001401 DataManager::SetValue("tw_terminal_state", 1);
1402 DataManager::SetValue("tw_background_thread_running", 1);
thatc6085482015-01-09 22:12:43 +01001403 FILE* fp;
1404 char line[512];
1405
1406 fp = popen(command.c_str(), "r");
1407 if (fp == NULL) {
Ethan Yonker74db1572015-10-28 12:44:49 -05001408 LOGERR("Error opening command to run (%s).\n", strerror(errno));
thatc6085482015-01-09 22:12:43 +01001409 } else {
Matt Mower23d8aae2017-01-06 14:30:33 -06001410 int fd = fileno(fp), has_data = 0, check = 0, keep_going = -1;
thatc6085482015-01-09 22:12:43 +01001411 struct timeval timeout;
1412 fd_set fdset;
1413
Matt Mowera8a89d12016-12-30 18:10:37 -06001414 while (keep_going)
thatc6085482015-01-09 22:12:43 +01001415 {
1416 FD_ZERO(&fdset);
1417 FD_SET(fd, &fdset);
1418 timeout.tv_sec = 0;
1419 timeout.tv_usec = 400000;
1420 has_data = select(fd+1, &fdset, NULL, NULL, &timeout);
1421 if (has_data == 0) {
1422 // Timeout reached
1423 DataManager::GetValue("tw_terminal_state", check);
1424 if (check == 0) {
1425 keep_going = 0;
1426 }
1427 } else if (has_data < 0) {
1428 // End of execution
1429 keep_going = 0;
1430 } else {
1431 // Try to read output
Matt Mowera8a89d12016-12-30 18:10:37 -06001432 if (fgets(line, sizeof(line), fp) != NULL)
thatc6085482015-01-09 22:12:43 +01001433 gui_print("%s", line); // Display output
1434 else
1435 keep_going = 0; // Done executing
1436 }
1437 }
1438 fclose(fp);
Dees_Troy51a0e822012-09-05 15:24:24 -04001439 }
thatc6085482015-01-09 22:12:43 +01001440 DataManager::SetValue("tw_operation_status", 0);
1441 DataManager::SetValue("tw_operation_state", 1);
1442 DataManager::SetValue("tw_terminal_state", 0);
1443 DataManager::SetValue("tw_background_thread_running", 0);
1444 DataManager::SetValue(TW_ACTION_BUSY, 0);
that3f7b1ac2014-12-30 11:30:13 +01001445 }
1446 return 0;
1447}
1448
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001449int GUIAction::killterminal(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001450{
that3f7b1ac2014-12-30 11:30:13 +01001451 LOGINFO("Sending kill command...\n");
1452 operation_start("KillCommand");
1453 DataManager::SetValue("tw_operation_status", 0);
1454 DataManager::SetValue("tw_operation_state", 1);
1455 DataManager::SetValue("tw_terminal_state", 0);
1456 DataManager::SetValue("tw_background_thread_running", 0);
1457 DataManager::SetValue(TW_ACTION_BUSY, 0);
1458 return 0;
1459}
1460
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001461int GUIAction::reinjecttwrp(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001462{
1463 int op_status = 0;
1464 operation_start("ReinjectTWRP");
Ethan Yonker74db1572015-10-28 12:44:49 -05001465 gui_msg("injecttwrp=Injecting TWRP into boot image...");
that3f7b1ac2014-12-30 11:30:13 +01001466 if (simulate) {
1467 simulate_progress_bar();
1468 } else {
1469 TWFunc::Exec_Cmd("injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash");
Ethan Yonker74db1572015-10-28 12:44:49 -05001470 gui_msg("done=Done.");
that3f7b1ac2014-12-30 11:30:13 +01001471 }
1472
1473 operation_end(op_status);
1474 return 0;
1475}
1476
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001477int GUIAction::checkbackupname(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001478{
1479 int op_status = 0;
1480
1481 operation_start("CheckBackupName");
1482 if (simulate) {
1483 simulate_progress_bar();
1484 } else {
Ethan Yonker53796e72019-01-11 22:49:52 -06001485 string Backup_Name;
1486 DataManager::GetValue(TW_BACKUP_NAME, Backup_Name);
1487 op_status = PartitionManager.Check_Backup_Name(Backup_Name, true, true);
that3f7b1ac2014-12-30 11:30:13 +01001488 if (op_status != 0)
1489 op_status = 1;
1490 }
1491
1492 operation_end(op_status);
1493 return 0;
1494}
1495
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001496int GUIAction::decrypt(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001497{
1498 int op_status = 0;
1499
1500 operation_start("Decrypt");
1501 if (simulate) {
1502 simulate_progress_bar();
1503 } else {
1504 string Password;
1505 DataManager::GetValue("tw_crypto_password", Password);
bigbiffadc599e2020-05-28 19:36:30 +00001506 op_status = PartitionManager.Decrypt_Device(Password);
that3f7b1ac2014-12-30 11:30:13 +01001507 if (op_status != 0)
1508 op_status = 1;
1509 else {
bigbiffadc599e2020-05-28 19:36:30 +00001510
that3f7b1ac2014-12-30 11:30:13 +01001511 DataManager::SetValue(TW_IS_ENCRYPTED, 0);
1512
Ethan Yonkercf50da52015-01-12 21:59:07 -06001513 int has_datamedia;
that3f7b1ac2014-12-30 11:30:13 +01001514
Ethan Yonkercf50da52015-01-12 21:59:07 -06001515 // Check for a custom theme and load it if exists
1516 DataManager::GetValue(TW_HAS_DATA_MEDIA, has_datamedia);
1517 if (has_datamedia != 0) {
1518 if (tw_get_default_metadata(DataManager::GetSettingsStoragePath().c_str()) != 0) {
Ethan Yonkerd9ff3c52015-01-21 21:51:20 -06001519 LOGINFO("Failed to get default contexts and file mode for storage files.\n");
Ethan Yonkercf50da52015-01-12 21:59:07 -06001520 } else {
1521 LOGINFO("Got default contexts and file mode for storage files.\n");
that3f7b1ac2014-12-30 11:30:13 +01001522 }
1523 }
Ethan Yonker66a19492015-12-10 10:19:45 -06001524 PartitionManager.Decrypt_Adopted();
that3f7b1ac2014-12-30 11:30:13 +01001525 }
1526 }
1527
1528 operation_end(op_status);
1529 return 0;
1530}
1531
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001532int GUIAction::adbsideload(std::string arg __unused)
thatcc8ddca2015-01-03 01:59:36 +01001533{
1534 operation_start("Sideload");
1535 if (simulate) {
1536 simulate_progress_bar();
1537 operation_end(0);
1538 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001539 gui_msg("start_sideload=Starting ADB sideload feature...");
thatc6085482015-01-09 22:12:43 +01001540 bool mtp_was_enabled = TWFunc::Toggle_MTP(false);
1541
1542 // wait for the adb connection
bigbiffd58ba182020-03-23 10:02:29 -04001543 // int ret = apply_from_adb("/", &sideload_child_pid);
1544 Device::BuiltinAction reboot_action = Device::REBOOT_BOOTLOADER;
1545 int ret = ApplyFromAdb("/", &reboot_action);
thatc6085482015-01-09 22:12:43 +01001546 DataManager::SetValue("tw_has_cancel", 0); // Remove cancel button from gui now that the zip install is going to start
1547
1548 if (ret != 0) {
1549 if (ret == -2)
Ethan Yonker74db1572015-10-28 12:44:49 -05001550 gui_msg("need_new_adb=You need adb 1.0.32 or newer to sideload to this device.");
thatc6085482015-01-09 22:12:43 +01001551 ret = 1; // failure
1552 } else {
1553 int wipe_cache = 0;
1554 int wipe_dalvik = 0;
1555 DataManager::GetValue("tw_wipe_dalvik", wipe_dalvik);
1556
1557 if (TWinstall_zip(FUSE_SIDELOAD_HOST_PATHNAME, &wipe_cache) == 0) {
1558 if (wipe_cache || DataManager::GetIntValue("tw_wipe_cache"))
1559 PartitionManager.Wipe_By_Path("/cache");
1560 if (wipe_dalvik)
1561 PartitionManager.Wipe_Dalvik_Cache();
1562 } else {
1563 ret = 1; // failure
1564 }
thatcc8ddca2015-01-03 01:59:36 +01001565 }
thatc6085482015-01-09 22:12:43 +01001566 if (sideload_child_pid) {
1567 LOGINFO("Signaling child sideload process to exit.\n");
1568 struct stat st;
1569 // Calling stat() on this magic filename signals the minadbd
1570 // subprocess to shut down.
1571 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st);
1572 int status;
1573 LOGINFO("Waiting for child sideload process to exit.\n");
1574 waitpid(sideload_child_pid, &status, 0);
1575 }
Dees Troy28a85d22015-04-28 02:03:16 +00001576 property_set("ctl.start", "adbd");
thatc6085482015-01-09 22:12:43 +01001577 TWFunc::Toggle_MTP(mtp_was_enabled);
1578 reinject_after_flash();
1579 operation_end(ret);
thatcc8ddca2015-01-03 01:59:36 +01001580 }
that3f7b1ac2014-12-30 11:30:13 +01001581 return 0;
1582}
1583
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001584int GUIAction::adbsideloadcancel(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001585{
that3f7b1ac2014-12-30 11:30:13 +01001586 struct stat st;
1587 DataManager::SetValue("tw_has_cancel", 0); // Remove cancel button from gui
Ethan Yonker74db1572015-10-28 12:44:49 -05001588 gui_msg("cancel_sideload=Cancelling ADB sideload...");
thatcc8ddca2015-01-03 01:59:36 +01001589 LOGINFO("Signaling child sideload process to exit.\n");
1590 // Calling stat() on this magic filename signals the minadbd
1591 // subprocess to shut down.
1592 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st);
1593 if (!sideload_child_pid) {
1594 LOGERR("Unable to get child ID\n");
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001595 return 0;
1596 }
thatcc8ddca2015-01-03 01:59:36 +01001597 ::sleep(1);
1598 LOGINFO("Killing child sideload process.\n");
1599 kill(sideload_child_pid, SIGTERM);
1600 int status;
1601 LOGINFO("Waiting for child sideload process to exit.\n");
1602 waitpid(sideload_child_pid, &status, 0);
1603 sideload_child_pid = 0;
that3f7b1ac2014-12-30 11:30:13 +01001604 DataManager::SetValue("tw_page_done", "1"); // For OpenRecoveryScript support
1605 return 0;
1606}
1607
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001608int GUIAction::openrecoveryscript(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001609{
1610 operation_start("OpenRecoveryScript");
1611 if (simulate) {
1612 simulate_progress_bar();
Ethan Yonker24e7eb72015-01-03 16:13:06 -06001613 operation_end(0);
that3f7b1ac2014-12-30 11:30:13 +01001614 } else {
that10ae24f2015-12-26 20:53:51 +01001615 int op_status = OpenRecoveryScript::Run_OpenRecoveryScript_Action();
Ethan Yonkere1abe612015-06-09 11:09:32 -05001616 operation_end(op_status);
that3f7b1ac2014-12-30 11:30:13 +01001617 }
1618 return 0;
1619}
1620
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001621int GUIAction::installsu(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001622{
1623 int op_status = 0;
1624
1625 operation_start("Install SuperSU");
1626 if (simulate) {
1627 simulate_progress_bar();
1628 } else {
Ethan Yonkerfa67cbf2018-07-20 12:22:33 -05001629 LOGERR("Installing SuperSU was deprecated from TWRP.\n");
that3f7b1ac2014-12-30 11:30:13 +01001630 }
1631
1632 operation_end(op_status);
1633 return 0;
1634}
1635
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001636int GUIAction::fixsu(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001637{
1638 int op_status = 0;
1639
1640 operation_start("Fixing Superuser Permissions");
1641 if (simulate) {
1642 simulate_progress_bar();
1643 } else {
1644 LOGERR("Fixing su permissions was deprecated from TWRP.\n");
1645 LOGERR("4.3+ ROMs with SELinux will always lose su perms.\n");
1646 }
1647
1648 operation_end(op_status);
1649 return 0;
1650}
1651
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001652int GUIAction::decrypt_backup(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001653{
1654 int op_status = 0;
1655
1656 operation_start("Try Restore Decrypt");
1657 if (simulate) {
1658 simulate_progress_bar();
1659 } else {
1660 string Restore_Path, Filename, Password;
1661 DataManager::GetValue("tw_restore", Restore_Path);
1662 Restore_Path += "/";
1663 DataManager::GetValue("tw_restore_password", Password);
1664 TWFunc::SetPerformanceMode(true);
1665 if (TWFunc::Try_Decrypting_Backup(Restore_Path, Password))
1666 op_status = 0; // success
1667 else
1668 op_status = 1; // fail
1669 TWFunc::SetPerformanceMode(false);
1670 }
1671
1672 operation_end(op_status);
1673 return 0;
1674}
1675
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001676int GUIAction::repair(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001677{
1678 int op_status = 0;
1679
1680 operation_start("Repair Partition");
1681 if (simulate) {
1682 simulate_progress_bar();
1683 } else {
1684 string part_path;
1685 DataManager::GetValue("tw_partition_mount_point", part_path);
1686 if (PartitionManager.Repair_By_Path(part_path, true)) {
1687 op_status = 0; // success
1688 } else {
that3f7b1ac2014-12-30 11:30:13 +01001689 op_status = 1; // fail
1690 }
1691 }
1692
1693 operation_end(op_status);
1694 return 0;
1695}
1696
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001697int GUIAction::resize(std::string arg __unused)
Ethan Yonkera2719152015-05-28 09:44:41 -05001698{
1699 int op_status = 0;
1700
1701 operation_start("Resize Partition");
1702 if (simulate) {
1703 simulate_progress_bar();
1704 } else {
1705 string part_path;
1706 DataManager::GetValue("tw_partition_mount_point", part_path);
1707 if (PartitionManager.Resize_By_Path(part_path, true)) {
1708 op_status = 0; // success
1709 } else {
Ethan Yonkera2719152015-05-28 09:44:41 -05001710 op_status = 1; // fail
1711 }
1712 }
1713
1714 operation_end(op_status);
1715 return 0;
1716}
1717
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001718int GUIAction::changefilesystem(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001719{
1720 int op_status = 0;
1721
1722 operation_start("Change File System");
1723 if (simulate) {
1724 simulate_progress_bar();
1725 } else {
1726 string part_path, file_system;
1727 DataManager::GetValue("tw_partition_mount_point", part_path);
1728 DataManager::GetValue("tw_action_new_file_system", file_system);
1729 if (PartitionManager.Wipe_By_Path(part_path, file_system)) {
1730 op_status = 0; // success
1731 } else {
Ethan Yonker74db1572015-10-28 12:44:49 -05001732 gui_err("change_fs_err=Error changing file system.");
that3f7b1ac2014-12-30 11:30:13 +01001733 op_status = 1; // fail
1734 }
1735 }
1736 PartitionManager.Update_System_Details();
1737 operation_end(op_status);
1738 return 0;
1739}
1740
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001741int GUIAction::startmtp(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001742{
1743 int op_status = 0;
1744
1745 operation_start("Start MTP");
1746 if (PartitionManager.Enable_MTP())
1747 op_status = 0; // success
1748 else
1749 op_status = 1; // fail
1750
1751 operation_end(op_status);
1752 return 0;
1753}
1754
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001755int GUIAction::stopmtp(std::string arg __unused)
that3f7b1ac2014-12-30 11:30:13 +01001756{
1757 int op_status = 0;
1758
1759 operation_start("Stop MTP");
1760 if (PartitionManager.Disable_MTP())
1761 op_status = 0; // success
1762 else
1763 op_status = 1; // fail
1764
1765 operation_end(op_status);
1766 return 0;
Dees_Troy51a0e822012-09-05 15:24:24 -04001767}
1768
Ethan Yonkerd0514ba2015-10-22 14:17:47 -05001769int GUIAction::flashimage(std::string arg __unused)
Ethan Yonker96af84a2015-01-05 14:58:36 -06001770{
1771 int op_status = 0;
1772
1773 operation_start("Flash Image");
Ethan Yonkerdcf2b672016-09-13 14:41:53 -05001774 string path, filename;
1775 DataManager::GetValue("tw_zip_location", path);
1776 DataManager::GetValue("tw_file", filename);
Ethan Yonkere080c1f2016-09-19 13:50:25 -05001777 if (PartitionManager.Flash_Image(path, filename))
Ethan Yonker96af84a2015-01-05 14:58:36 -06001778 op_status = 0; // success
1779 else
1780 op_status = 1; // fail
1781
1782 operation_end(op_status);
1783 return 0;
1784}
1785
that10ae24f2015-12-26 20:53:51 +01001786int GUIAction::twcmd(std::string arg)
1787{
1788 operation_start("TWRP CLI Command");
1789 if (simulate)
1790 simulate_progress_bar();
1791 else
1792 OpenRecoveryScript::Run_CLI_Command(arg.c_str());
1793 operation_end(0);
1794 return 0;
1795}
1796
Dees_Troy51a0e822012-09-05 15:24:24 -04001797int GUIAction::getKeyByName(std::string key)
1798{
that8834a0f2016-01-05 23:29:30 +01001799 if (key == "home") return KEY_HOMEPAGE; // note: KEY_HOME is cursor movement (like KEY_END)
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001800 else if (key == "menu") return KEY_MENU;
1801 else if (key == "back") return KEY_BACK;
1802 else if (key == "search") return KEY_SEARCH;
1803 else if (key == "voldown") return KEY_VOLUMEDOWN;
1804 else if (key == "volup") return KEY_VOLUMEUP;
1805 else if (key == "power") {
Dees_Troy51a0e822012-09-05 15:24:24 -04001806 int ret_val;
1807 DataManager::GetValue(TW_POWER_BUTTON, ret_val);
1808 if (!ret_val)
1809 return KEY_POWER;
1810 else
1811 return ret_val;
1812 }
1813
Vojtech Bocekfafb0c52013-07-25 22:53:02 +02001814 return atol(key.c_str());
Dees_Troy51a0e822012-09-05 15:24:24 -04001815}
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001816
1817int GUIAction::checkpartitionlifetimewrites(std::string arg)
1818{
1819 int op_status = 0;
1820 TWPartition* sys = PartitionManager.Find_Partition_By_Path(arg);
1821
1822 operation_start("Check Partition Lifetime Writes");
1823 if (sys) {
1824 if (sys->Check_Lifetime_Writes() != 0)
1825 DataManager::SetValue("tw_lifetime_writes", 1);
1826 else
1827 DataManager::SetValue("tw_lifetime_writes", 0);
1828 op_status = 0; // success
1829 } else {
1830 DataManager::SetValue("tw_lifetime_writes", 1);
1831 op_status = 1; // fail
1832 }
1833
1834 operation_end(op_status);
1835 return 0;
1836}
1837
1838int GUIAction::mountsystemtoggle(std::string arg)
1839{
1840 int op_status = 0;
Captain Throwback9d6feb52018-07-27 10:05:24 -04001841 bool remount_system = PartitionManager.Is_Mounted_By_Path(PartitionManager.Get_Android_Root_Path());
Ethan Yonker1673e3d2015-10-26 21:51:58 -05001842 bool remount_vendor = PartitionManager.Is_Mounted_By_Path("/vendor");
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001843
1844 operation_start("Toggle System Mount");
Captain Throwback9d6feb52018-07-27 10:05:24 -04001845 if (!PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), true)) {
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001846 op_status = 1; // fail
1847 } else {
Captain Throwback9d6feb52018-07-27 10:05:24 -04001848 TWPartition* Part = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001849 if (Part) {
Ethan Yonkerd6966f42015-05-30 14:52:16 -05001850 if (arg == "0") {
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001851 DataManager::SetValue("tw_mount_system_ro", 0);
1852 Part->Change_Mount_Read_Only(false);
1853 } else {
1854 DataManager::SetValue("tw_mount_system_ro", 1);
1855 Part->Change_Mount_Read_Only(true);
1856 }
1857 if (remount_system) {
1858 Part->Mount(true);
1859 }
1860 op_status = 0; // success
1861 } else {
1862 op_status = 1; // fail
1863 }
Ethan Yonker1673e3d2015-10-26 21:51:58 -05001864 Part = PartitionManager.Find_Partition_By_Path("/vendor");
1865 if (Part) {
1866 if (arg == "0") {
1867 Part->Change_Mount_Read_Only(false);
1868 } else {
1869 Part->Change_Mount_Read_Only(true);
1870 }
1871 if (remount_vendor) {
1872 Part->Mount(true);
1873 }
1874 op_status = 0; // success
1875 } else {
1876 op_status = 1; // fail
1877 }
Ethan Yonkereb32b1f2015-05-18 10:23:03 -05001878 }
1879
1880 operation_end(op_status);
1881 return 0;
1882}
Ethan Yonker74db1572015-10-28 12:44:49 -05001883
1884int GUIAction::setlanguage(std::string arg __unused)
1885{
1886 int op_status = 0;
1887
1888 operation_start("Set Language");
1889 PageManager::LoadLanguage(DataManager::GetStrValue("tw_language"));
1890 PageManager::RequestReload();
1891 op_status = 0; // success
1892
1893 operation_end(op_status);
1894 return 0;
1895}
Ethan Yonker1b190162016-12-05 15:25:19 -06001896
Matt Mower9472ba12016-01-20 18:12:47 -06001897int GUIAction::togglebacklight(std::string arg __unused)
1898{
1899 blankTimer.toggleBlank();
1900 return 0;
1901}
1902
Ethan Yonker1b190162016-12-05 15:25:19 -06001903int GUIAction::setbootslot(std::string arg)
1904{
1905 operation_start("Set Boot Slot");
1906 if (!simulate)
Ethan Yonker1b190162016-12-05 15:25:19 -06001907 PartitionManager.Set_Active_Slot(arg);
Matt Mower029a82d2017-01-08 13:12:38 -06001908 else
Ethan Yonker1b190162016-12-05 15:25:19 -06001909 simulate_progress_bar();
1910 operation_end(0);
1911 return 0;
1912}
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06001913
1914int GUIAction::checkforapp(std::string arg __unused)
1915{
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06001916 operation_start("Check for TWRP App");
1917 if (!simulate)
1918 {
1919 string sdkverstr = TWFunc::System_Property_Get("ro.build.version.sdk");
1920 int sdkver = 0;
1921 if (!sdkverstr.empty()) {
1922 sdkver = atoi(sdkverstr.c_str());
1923 }
1924 if (sdkver <= 13) {
1925 if (sdkver == 0)
1926 LOGINFO("Unable to read sdk version from build prop\n");
1927 else
1928 LOGINFO("SDK version too low for TWRP app (%i < 14)\n", sdkver);
Ethan Yonker64c5c0a2017-03-06 12:42:54 -06001929 DataManager::SetValue("tw_app_install_status", 1); // 0 = no status, 1 = not installed, 2 = already installed or do not install
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06001930 goto exit;
1931 }
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05001932 if (TWFunc::Is_TWRP_App_In_System()) {
1933 DataManager::SetValue("tw_app_install_status", 2); // 0 = no status, 1 = not installed, 2 = already installed or do not install
1934 goto exit;
Ethan Yonker5e1a7f92017-01-18 16:44:54 -06001935 }
1936 if (PartitionManager.Mount_By_Path("/data", false)) {
Ethan Yonker5128d292017-02-04 19:52:56 -06001937 const char parent_path[] = "/data/app";
1938 const char app_prefix[] = "me.twrp.twrpapp-";
1939 DIR *d = opendir(parent_path);
1940 if (d) {
1941 struct dirent *p;
1942 while ((p = readdir(d))) {
1943 if (p->d_type != DT_DIR || strlen(p->d_name) < strlen(app_prefix) || strncmp(p->d_name, app_prefix, strlen(app_prefix)))
1944 continue;
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06001945 closedir(d);
Ethan Yonker5128d292017-02-04 19:52:56 -06001946 LOGINFO("App found at '%s/%s'\n", parent_path, p->d_name);
Ethan Yonker64c5c0a2017-03-06 12:42:54 -06001947 DataManager::SetValue("tw_app_install_status", 2); // 0 = no status, 1 = not installed, 2 = already installed or do not install
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06001948 goto exit;
1949 }
Ethan Yonker5128d292017-02-04 19:52:56 -06001950 closedir(d);
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06001951 }
Ethan Yonker64c5c0a2017-03-06 12:42:54 -06001952 } else {
1953 LOGINFO("Data partition cannot be mounted during app check\n");
1954 DataManager::SetValue("tw_app_install_status", 2); // 0 = no status, 1 = not installed, 2 = already installed or do not install
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06001955 }
1956 } else
1957 simulate_progress_bar();
1958 LOGINFO("App not installed\n");
1959 DataManager::SetValue("tw_app_install_status", 1); // 0 = no status, 1 = not installed, 2 = already installed
1960exit:
1961 operation_end(0);
1962 return 0;
1963}
1964
1965int GUIAction::installapp(std::string arg __unused)
1966{
1967 int op_status = 1;
1968 operation_start("Install TWRP App");
1969 if (!simulate)
1970 {
1971 if (DataManager::GetIntValue("tw_mount_system_ro") > 0 || DataManager::GetIntValue("tw_app_install_system") == 0) {
1972 if (PartitionManager.Mount_By_Path("/data", true)) {
1973 string install_path = "/data/app";
1974 string context = "u:object_r:apk_data_file:s0";
1975 if (!TWFunc::Path_Exists(install_path)) {
1976 if (mkdir(install_path.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH)) {
1977 LOGERR("Error making %s directory: %s\n", install_path.c_str(), strerror(errno));
1978 goto exit;
1979 }
1980 if (chown(install_path.c_str(), 1000, 1000)) {
1981 LOGERR("chown %s error: %s\n", install_path.c_str(), strerror(errno));
1982 goto exit;
1983 }
Ethan Yonker4767caf2017-01-11 10:45:04 -06001984 if (setfilecon(install_path.c_str(), (security_context_t)context.c_str()) < 0) {
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06001985 LOGERR("setfilecon %s error: %s\n", install_path.c_str(), strerror(errno));
1986 goto exit;
1987 }
1988 }
1989 install_path += "/me.twrp.twrpapp-1";
1990 if (mkdir(install_path.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH)) {
1991 LOGERR("Error making %s directory: %s\n", install_path.c_str(), strerror(errno));
1992 goto exit;
1993 }
1994 if (chown(install_path.c_str(), 1000, 1000)) {
1995 LOGERR("chown %s error: %s\n", install_path.c_str(), strerror(errno));
1996 goto exit;
1997 }
Ethan Yonker4767caf2017-01-11 10:45:04 -06001998 if (setfilecon(install_path.c_str(), (security_context_t)context.c_str()) < 0) {
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06001999 LOGERR("setfilecon %s error: %s\n", install_path.c_str(), strerror(errno));
2000 goto exit;
2001 }
2002 install_path += "/base.apk";
2003 if (TWFunc::copy_file("/sbin/me.twrp.twrpapp.apk", install_path, 0644)) {
2004 LOGERR("Error copying apk file\n");
2005 goto exit;
2006 }
2007 if (chown(install_path.c_str(), 1000, 1000)) {
2008 LOGERR("chown %s error: %s\n", install_path.c_str(), strerror(errno));
2009 goto exit;
2010 }
Ethan Yonker4767caf2017-01-11 10:45:04 -06002011 if (setfilecon(install_path.c_str(), (security_context_t)context.c_str()) < 0) {
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06002012 LOGERR("setfilecon %s error: %s\n", install_path.c_str(), strerror(errno));
2013 goto exit;
2014 }
2015 sync();
2016 sync();
2017 }
2018 } else {
Captain Throwback9d6feb52018-07-27 10:05:24 -04002019 if (PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), true)) {
2020 string base_path = PartitionManager.Get_Android_Root_Path();
2021 if (TWFunc::Path_Exists(PartitionManager.Get_Android_Root_Path() + "/system"))
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06002022 base_path += "/system"; // For devices with system as a root file system (e.g. Pixel)
2023 string install_path = base_path + "/priv-app";
2024 string context = "u:object_r:system_file:s0";
2025 if (!TWFunc::Path_Exists(install_path))
2026 install_path = base_path + "/app";
2027 if (TWFunc::Path_Exists(install_path)) {
2028 install_path += "/twrpapp";
2029 LOGINFO("Installing app to '%s'\n", install_path.c_str());
2030 if (mkdir(install_path.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) == 0) {
Ethan Yonker4767caf2017-01-11 10:45:04 -06002031 if (setfilecon(install_path.c_str(), (security_context_t)context.c_str()) < 0) {
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06002032 LOGERR("setfilecon %s error: %s\n", install_path.c_str(), strerror(errno));
2033 goto exit;
2034 }
2035 install_path += "/me.twrp.twrpapp.apk";
2036 if (TWFunc::copy_file("/sbin/me.twrp.twrpapp.apk", install_path, 0644)) {
2037 LOGERR("Error copying apk file\n");
2038 goto exit;
2039 }
Ethan Yonker4767caf2017-01-11 10:45:04 -06002040 if (setfilecon(install_path.c_str(), (security_context_t)context.c_str()) < 0) {
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06002041 LOGERR("setfilecon %s error: %s\n", install_path.c_str(), strerror(errno));
2042 goto exit;
2043 }
2044 sync();
2045 sync();
Captain Throwback9d6feb52018-07-27 10:05:24 -04002046 PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), true);
Ethan Yonkerb4bff5e2016-12-16 07:47:58 -06002047 op_status = 0;
2048 } else {
2049 LOGERR("Error making app directory '%s': %s\n", strerror(errno));
2050 }
2051 }
2052 }
2053 }
2054 } else
2055 simulate_progress_bar();
2056exit:
2057 operation_end(0);
2058 return 0;
2059}
Ethan Yonker53796e72019-01-11 22:49:52 -06002060
Ethan Yonker76bbd3a2019-05-10 10:50:04 -05002061int GUIAction::uninstalltwrpsystemapp(std::string arg __unused)
2062{
2063 int op_status = 1;
2064 operation_start("Uninstall TWRP System App");
2065 if (!simulate)
2066 {
2067 int Mount_System_RO = DataManager::GetIntValue("tw_mount_system_ro");
2068 TWPartition* Part = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path());
2069 if (!Part) {
2070 LOGERR("Unabled to find system partition.\n");
2071 goto exit;
2072 }
2073 if (!Part->UnMount(true)) {
2074 goto exit;
2075 }
2076 if (Mount_System_RO > 0) {
2077 DataManager::SetValue("tw_mount_system_ro", 0);
2078 Part->Change_Mount_Read_Only(false);
2079 }
2080 if (Part->Mount(true)) {
2081 string base_path = PartitionManager.Get_Android_Root_Path();
2082 if (TWFunc::Path_Exists(PartitionManager.Get_Android_Root_Path() + "/system"))
2083 base_path += "/system"; // For devices with system as a root file system (e.g. Pixel)
2084 string uninstall_path = base_path + "/priv-app";
2085 if (!TWFunc::Path_Exists(uninstall_path))
2086 uninstall_path = base_path + "/app";
2087 uninstall_path += "/twrpapp";
2088 if (TWFunc::Path_Exists(uninstall_path)) {
2089 LOGINFO("Uninstalling TWRP App from '%s'\n", uninstall_path.c_str());
2090 if (TWFunc::removeDir(uninstall_path, false) == 0) {
2091 sync();
2092 op_status = 0;
2093 DataManager::SetValue("tw_app_installed_in_system", 0);
2094 DataManager::SetValue("tw_app_install_status", 0);
2095 } else {
2096 LOGERR("Unable to remove TWRP app from system.\n");
2097 }
2098 } else {
2099 LOGINFO("didn't find TWRP app in '%s'\n", uninstall_path.c_str());
2100 }
2101 }
2102 Part->UnMount(true);
2103 if (Mount_System_RO > 0) {
2104 DataManager::SetValue("tw_mount_system_ro", Mount_System_RO);
2105 Part->Change_Mount_Read_Only(true);
2106 }
2107 } else
2108 simulate_progress_bar();
2109exit:
2110 operation_end(0);
2111 return 0;
2112}
2113
Ethan Yonker53796e72019-01-11 22:49:52 -06002114int GUIAction::repackimage(std::string arg __unused)
2115{
2116 int op_status = 1;
2117 operation_start("Repack Image");
2118 if (!simulate)
2119 {
2120 std::string path = DataManager::GetStrValue("tw_filename");
2121 Repack_Options_struct Repack_Options;
2122 Repack_Options.Disable_Verity = false;
2123 Repack_Options.Disable_Force_Encrypt = false;
2124 Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0;
2125 if (DataManager::GetIntValue("tw_repack_kernel") == 1)
2126 Repack_Options.Type = REPLACE_KERNEL;
2127 else
2128 Repack_Options.Type = REPLACE_RAMDISK;
2129 if (!PartitionManager.Repack_Images(path, Repack_Options))
2130 goto exit;
2131 } else
2132 simulate_progress_bar();
2133 op_status = 0;
2134exit:
2135 operation_end(op_status);
2136 return 0;
2137}
2138
2139int GUIAction::fixabrecoverybootloop(std::string arg __unused)
2140{
2141 int op_status = 1;
2142 operation_start("Repack Image");
2143 if (!simulate)
2144 {
2145 if (!TWFunc::Path_Exists("/sbin/magiskboot")) {
2146 LOGERR("Image repacking tool not present in this TWRP build!");
2147 goto exit;
2148 }
2149 DataManager::SetProgress(0);
2150 TWPartition* part = PartitionManager.Find_Partition_By_Path("/boot");
2151 if (part)
2152 gui_msg(Msg("unpacking_image=Unpacking {1}...")(part->Display_Name));
2153 else {
2154 gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/boot"));
2155 goto exit;
2156 }
2157 if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, DataManager::GetIntValue("tw_repack_backup_first") != 0, gui_lookup("repack", "Repack")))
2158 goto exit;
2159 DataManager::SetProgress(.25);
2160 gui_msg("fixing_recovery_loop_patch=Patching kernel...");
2161 std::string command = "cd " REPACK_ORIG_DIR " && /sbin/magiskboot --hexpatch kernel 77616E745F696E697472616D667300 736B69705F696E697472616D667300";
2162 if (TWFunc::Exec_Cmd(command) != 0) {
2163 gui_msg(Msg(msg::kError, "fix_recovery_loop_patch_error=Error patching kernel."));
2164 goto exit;
2165 }
2166 std::string header_path = REPACK_ORIG_DIR;
2167 header_path += "header";
2168 if (TWFunc::Path_Exists(header_path)) {
2169 command = "cd " REPACK_ORIG_DIR " && sed -i \"s|$(grep '^cmdline=' header | cut -d= -f2-)|$(grep '^cmdline=' header | cut -d= -f2- | sed -e 's/skip_override//' -e 's/ */ /g' -e 's/[ \t]*$//')|\" header";
2170 if (TWFunc::Exec_Cmd(command) != 0) {
2171 gui_msg(Msg(msg::kError, "fix_recovery_loop_patch_error=Error patching kernel."));
2172 goto exit;
2173 }
2174 }
2175 DataManager::SetProgress(.5);
2176 gui_msg(Msg("repacking_image=Repacking {1}...")(part->Display_Name));
2177 command = "cd " REPACK_ORIG_DIR " && /sbin/magiskboot --repack " REPACK_ORIG_DIR "boot.img";
2178 if (TWFunc::Exec_Cmd(command) != 0) {
2179 gui_msg(Msg(msg::kError, "repack_error=Error repacking image."));
2180 goto exit;
2181 }
2182 DataManager::SetProgress(.75);
2183 std::string path = REPACK_ORIG_DIR;
2184 std::string file = "new-boot.img";
2185 DataManager::SetValue("tw_flash_partition", "/boot;");
2186 if (!PartitionManager.Flash_Image(path, file)) {
2187 LOGINFO("Error flashing new image\n");
2188 goto exit;
2189 }
2190 DataManager::SetProgress(1);
2191 TWFunc::removeDir(REPACK_ORIG_DIR, false);
2192 } else
2193 simulate_progress_bar();
2194 op_status = 0;
2195exit:
2196 operation_end(op_status);
2197 return 0;
2198}