Ethan Yonker | 6e8c27a | 2016-12-22 17:55:57 -0600 | [diff] [blame] | 1 | /* |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 2 | 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 18 | |
| 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_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 33 | #include <sys/wait.h> |
Dees_Troy | 83bd483 | 2013-05-04 12:39:56 +0000 | [diff] [blame] | 34 | #include <dirent.h> |
Matt Mower | 0c88b84 | 2017-01-15 16:00:49 -0600 | [diff] [blame] | 35 | #include <private/android_filesystem_config.h> |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 36 | |
| 37 | #include <string> |
| 38 | #include <sstream> |
| 39 | #include "../partitions.hpp" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 40 | #include "../twrp-functions.hpp" |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 41 | #include "../openrecoveryscript.hpp" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 42 | |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 43 | #include "install/adb_install.h" |
| 44 | |
| 45 | #include "fuse_sideload.h" |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 46 | #include "blanktimer.hpp" |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 47 | #include "../twinstall.h" |
Ethan Yonker | fbb4353 | 2015-12-28 21:54:50 +0100 | [diff] [blame] | 48 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 49 | extern "C" { |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 50 | #include "../twcommon.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 51 | #include "../variables.h" |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 52 | #include "cutils/properties.h" |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 53 | #include "install/adb_install.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 54 | }; |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 55 | #include "set_metadata.h" |
Ethan Yonker | fbb4353 | 2015-12-28 21:54:50 +0100 | [diff] [blame] | 56 | #include "../minuitwrp/minui.h" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 57 | |
| 58 | #include "rapidxml.hpp" |
| 59 | #include "objects.hpp" |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 60 | #include "tw_atomic.hpp" |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 61 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 62 | GUIAction::mapFunc GUIAction::mf; |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 63 | std::set<string> GUIAction::setActionsRunningInCallerThread; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 64 | static string zip_queue[10]; |
| 65 | static int zip_queue_index; |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 66 | pid_t sideload_child_pid; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 67 | |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 68 | static void *ActionThread_work_wrapper(void *data); |
| 69 | |
| 70 | class ActionThread |
| 71 | { |
| 72 | public: |
| 73 | ActionThread(); |
| 74 | ~ActionThread(); |
| 75 | |
| 76 | void threadActions(GUIAction *act); |
| 77 | void run(void *data); |
| 78 | private: |
| 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 | |
| 92 | static ActionThread action_thread; // for all kinds of longer running actions |
| 93 | static ActionThread cancel_thread; // for longer running "cancel" actions |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 94 | |
| 95 | static void *ActionThread_work_wrapper(void *data) |
| 96 | { |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 97 | static_cast<ActionThread::ThreadData*>(data)->this_->run(data); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 98 | return NULL; |
| 99 | } |
| 100 | |
| 101 | ActionThread::ActionThread() |
| 102 | { |
| 103 | m_thread_running = false; |
| 104 | pthread_mutex_init(&m_act_lock, NULL); |
| 105 | } |
| 106 | |
| 107 | ActionThread::~ActionThread() |
| 108 | { |
| 109 | pthread_mutex_lock(&m_act_lock); |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 110 | if (m_thread_running) { |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 111 | 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 | |
that | 7d3b54f | 2015-01-09 22:52:51 +0100 | [diff] [blame] | 119 | void ActionThread::threadActions(GUIAction *act) |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 120 | { |
| 121 | pthread_mutex_lock(&m_act_lock); |
| 122 | if (m_thread_running) { |
| 123 | pthread_mutex_unlock(&m_act_lock); |
that | 7d3b54f | 2015-01-09 22:52:51 +0100 | [diff] [blame] | 124 | 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()); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 126 | } else { |
| 127 | m_thread_running = true; |
| 128 | pthread_mutex_unlock(&m_act_lock); |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 129 | ThreadData *d = new ThreadData(this, act); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 130 | pthread_create(&m_thread, NULL, &ActionThread_work_wrapper, d); |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | void ActionThread::run(void *data) |
| 135 | { |
| 136 | ThreadData *d = (ThreadData*)data; |
| 137 | GUIAction* act = d->act; |
| 138 | |
| 139 | std::vector<GUIAction::Action>::iterator it; |
that | 7d3b54f | 2015-01-09 22:52:51 +0100 | [diff] [blame] | 140 | for (it = act->mActions.begin(); it != act->mActions.end(); ++it) |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 141 | 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 149 | GUIAction::GUIAction(xml_node<>* node) |
Vojtech Bocek | ede51c5 | 2014-02-07 23:58:09 +0100 | [diff] [blame] | 150 | : GUIObject(node) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 151 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 152 | xml_node<>* child; |
| 153 | xml_node<>* actions; |
| 154 | xml_attribute<>* attr; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 155 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 156 | if (!node) return; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 157 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 158 | if (mf.empty()) { |
Vojtech Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 159 | #define ADD_ACTION(n) mf[#n] = &GUIAction::n |
| 160 | #define ADD_ACTION_EX(name, func) mf[name] = &GUIAction::func |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 161 | // These actions will be run in the caller's thread |
Vojtech Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 162 | 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 Mower | 9a2a205 | 2016-05-31 21:31:22 -0500 | [diff] [blame] | 183 | ADD_ACTION(sleepcounter); |
Vojtech Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 184 | 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 Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 198 | ADD_ACTION(checkpartitionlifetimewrites); |
| 199 | ADD_ACTION(mountsystemtoggle); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 200 | ADD_ACTION(setlanguage); |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 201 | ADD_ACTION(checkforapp); |
Matt Mower | 9472ba1 | 2016-01-20 18:12:47 -0600 | [diff] [blame] | 202 | ADD_ACTION(togglebacklight); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 203 | |
| 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 Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 209 | ADD_ACTION(flash); |
| 210 | ADD_ACTION(wipe); |
| 211 | ADD_ACTION(refreshsizes); |
| 212 | ADD_ACTION(nandroid); |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 213 | ADD_ACTION(fixcontexts); |
Vojtech Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 214 | 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 Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 229 | ADD_ACTION(resize); |
Vojtech Bocek | ecd8918 | 2015-01-15 16:28:54 +0100 | [diff] [blame] | 230 | ADD_ACTION(changefilesystem); |
| 231 | ADD_ACTION(flashimage); |
that | 10ae24f | 2015-12-26 20:53:51 +0100 | [diff] [blame] | 232 | ADD_ACTION(twcmd); |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 233 | ADD_ACTION(setbootslot); |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 234 | ADD_ACTION(installapp); |
Ethan Yonker | 76bbd3a | 2019-05-10 10:50:04 -0500 | [diff] [blame] | 235 | ADD_ACTION(uninstalltwrpsystemapp); |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 236 | ADD_ACTION(repackimage); |
| 237 | ADD_ACTION(fixabrecoverybootloop); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 238 | } |
| 239 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 240 | // First, get the action |
Ethan Yonker | 21ff02a | 2015-02-18 14:35:00 -0600 | [diff] [blame] | 241 | actions = FindNode(node, "actions"); |
| 242 | if (actions) child = FindNode(actions, "action"); |
| 243 | else child = FindNode(node, "action"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 244 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 245 | if (!child) return; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 246 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 247 | while (child) |
| 248 | { |
| 249 | Action action; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 250 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 251 | attr = child->first_attribute("function"); |
| 252 | if (!attr) return; |
Matt Mower | fb1c4ff | 2014-04-16 13:43:36 -0500 | [diff] [blame] | 253 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 254 | action.mFunction = attr->value(); |
| 255 | action.mArg = child->value(); |
| 256 | mActions.push_back(action); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 257 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 258 | child = child->next_sibling("action"); |
| 259 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 260 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 261 | // Now, let's get either the key or region |
Ethan Yonker | 21ff02a | 2015-02-18 14:35:00 -0600 | [diff] [blame] | 262 | child = FindNode(node, "touch"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 263 | if (child) |
| 264 | { |
| 265 | attr = child->first_attribute("key"); |
| 266 | if (attr) |
| 267 | { |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 268 | std::vector<std::string> keys = TWFunc::Split_String(attr->value(), "+"); |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 269 | for (size_t i = 0; i < keys.size(); ++i) |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 270 | { |
| 271 | const int key = getKeyByName(keys[i]); |
| 272 | mKeys[key] = false; |
| 273 | } |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 274 | } |
| 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 291 | } |
| 292 | |
Matt Mower | 25036b7 | 2016-06-24 12:30:18 -0500 | [diff] [blame] | 293 | int GUIAction::NotifyTouch(TOUCH_STATE state, int x __unused, int y __unused) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 294 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 295 | if (state == TOUCH_RELEASE) |
| 296 | doActions(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 297 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 298 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 299 | } |
| 300 | |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 301 | int GUIAction::NotifyKey(int key, bool down) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 302 | { |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 303 | std::map<int, bool>::iterator itr = mKeys.find(key); |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 304 | if (itr == mKeys.end()) |
that | 8834a0f | 2016-01-05 23:29:30 +0100 | [diff] [blame] | 305 | return 1; |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 306 | |
| 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 Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 314 | if (mKeys.size() == 1) { |
| 315 | if (!down && prevState) { |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 316 | doActions(); |
that | d4725ca | 2016-01-19 00:15:21 +0100 | [diff] [blame] | 317 | return 0; |
| 318 | } |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 319 | } else if (down) { |
| 320 | for (itr = mKeys.begin(); itr != mKeys.end(); ++itr) { |
| 321 | if (!itr->second) |
that | 8834a0f | 2016-01-05 23:29:30 +0100 | [diff] [blame] | 322 | return 1; |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | // Passed, all req buttons are pressed, reset them and consume release events |
| 326 | HardwareKeyboard *kb = PageManager::GetHardwareKeyboard(); |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 327 | for (itr = mKeys.begin(); itr != mKeys.end(); ++itr) { |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 328 | kb->ConsumeKeyRelease(itr->first); |
| 329 | itr->second = false; |
| 330 | } |
| 331 | |
| 332 | doActions(); |
that | d4725ca | 2016-01-19 00:15:21 +0100 | [diff] [blame] | 333 | return 0; |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 334 | } |
| 335 | |
that | d4725ca | 2016-01-19 00:15:21 +0100 | [diff] [blame] | 336 | return 1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 337 | } |
| 338 | |
Vojtech Bocek | 0722056 | 2014-02-08 02:05:33 +0100 | [diff] [blame] | 339 | int GUIAction::NotifyVarChange(const std::string& varName, const std::string& value) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 340 | { |
Vojtech Bocek | 0722056 | 2014-02-08 02:05:33 +0100 | [diff] [blame] | 341 | GUIObject::NotifyVarChange(varName, value); |
| 342 | |
Vojtech Bocek | 0b7fe50 | 2014-03-13 17:36:52 +0100 | [diff] [blame] | 343 | if (varName.empty() && !isConditionValid() && mKeys.empty() && !mActionW) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 344 | doActions(); |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 345 | else if ((varName.empty() || IsConditionVariable(varName)) && isConditionValid() && isConditionTrue()) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 346 | doActions(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 347 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 348 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | void GUIAction::simulate_progress_bar(void) |
| 352 | { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 353 | gui_msg("simulating=Simulating actions..."); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 354 | for (int i = 0; i < 5; i++) |
| 355 | { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 356 | if (PartitionManager.stop_backup.get_value()) { |
| 357 | DataManager::SetValue("tw_cancel_backup", 1); |
Matt Mower | 3c36697 | 2015-12-25 19:28:31 -0600 | [diff] [blame] | 358 | gui_msg("backup_cancel=Backup Cancelled"); |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 359 | DataManager::SetValue("ui_progress", 0); |
| 360 | PartitionManager.stop_backup.set_value(0); |
| 361 | return; |
| 362 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 363 | usleep(500000); |
| 364 | DataManager::SetValue("ui_progress", i * 20); |
| 365 | } |
| 366 | } |
| 367 | |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 368 | int GUIAction::flash_zip(std::string filename, int* wipe_cache) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 369 | { |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 370 | int ret_val = 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 371 | |
| 372 | DataManager::SetValue("ui_progress", 0); |
Chaosmaster | d5364a0 | 2020-02-03 15:38:02 +0100 | [diff] [blame] | 373 | DataManager::SetValue("ui_portion_size", 0); |
| 374 | DataManager::SetValue("ui_portion_start", 0); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 375 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 376 | if (filename.empty()) |
| 377 | { |
| 378 | LOGERR("No file specified.\n"); |
| 379 | return -1; |
| 380 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 381 | |
Ethan Yonker | 9598c07 | 2016-01-15 21:54:34 -0600 | [diff] [blame] | 382 | 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_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 391 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 392 | if (simulate) { |
| 393 | simulate_progress_bar(); |
| 394 | } else { |
Dees_Troy | 657c309 | 2012-09-10 20:32:10 -0400 | [diff] [blame] | 395 | ret_val = TWinstall_zip(filename.c_str(), wipe_cache); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 396 | |
| 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 Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 403 | gui_msg("config_twrp=Configuring TWRP..."); |
Vojtech Bocek | 0553420 | 2013-09-11 08:11:56 +0200 | [diff] [blame] | 404 | if (TWFunc::Exec_Cmd("/sbin/installTwrp reinstall") < 0) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 405 | { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 406 | gui_msg("config_twrp_err=Unable to configure TWRP with this kernel."); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 407 | } |
| 408 | } |
| 409 | } |
| 410 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 411 | // Done |
| 412 | DataManager::SetValue("ui_progress", 100); |
| 413 | DataManager::SetValue("ui_progress", 0); |
Chaosmaster | d5364a0 | 2020-02-03 15:38:02 +0100 | [diff] [blame] | 414 | DataManager::SetValue("ui_portion_size", 0); |
| 415 | DataManager::SetValue("ui_portion_start", 0); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 416 | return ret_val; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 417 | } |
| 418 | |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 419 | GUIAction::ThreadType GUIAction::getThreadType(const GUIAction::Action& action) |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 420 | { |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 421 | 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; |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 430 | } |
| 431 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 432 | int GUIAction::doActions() |
| 433 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 434 | if (mActions.size() < 1) |
| 435 | return -1; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 436 | |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 437 | // 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; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 440 | std::vector<Action>::iterator it; |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 441 | 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; |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 451 | break; |
| 452 | } |
that | 7d3b54f | 2015-01-09 22:52:51 +0100 | [diff] [blame] | 453 | } |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 454 | |
| 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 | } |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 471 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 472 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 473 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 474 | } |
| 475 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 476 | int GUIAction::doAction(Action action) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 477 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 478 | DataManager::GetValue(TW_SIMULATE_ACTIONS, simulate); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 479 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 480 | std::string function = gui_parse_text(action.mFunction); |
| 481 | std::string arg = gui_parse_text(action.mArg); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 482 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 483 | // 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | void GUIAction::operation_start(const string operation_name) |
| 493 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 494 | LOGINFO("operation_start: '%s'\n", operation_name.c_str()); |
Samer Diab (S.a.M.e.R_d) | 71e9b04 | 2014-01-07 20:18:47 +0000 | [diff] [blame] | 495 | time(&Start); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 496 | DataManager::SetValue(TW_ACTION_BUSY, 1); |
| 497 | DataManager::SetValue("ui_progress", 0); |
Chaosmaster | d5364a0 | 2020-02-03 15:38:02 +0100 | [diff] [blame] | 498 | DataManager::SetValue("ui_portion_size", 0); |
| 499 | DataManager::SetValue("ui_portion_start", 0); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 500 | DataManager::SetValue("tw_operation", operation_name); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 501 | DataManager::SetValue("tw_operation_state", 0); |
Ethan Yonker | d83c9ea | 2015-01-02 15:22:31 -0600 | [diff] [blame] | 502 | DataManager::SetValue("tw_operation_status", 0); |
bigbiff | 25d25b9 | 2020-06-19 16:07:38 -0400 | [diff] [blame] | 503 | bool tw_ab_device = TWFunc::get_log_dir() != CACHE_LOGS_DIR; |
bigbiff bigbiff | 19874f1 | 2019-01-08 20:06:57 -0500 | [diff] [blame] | 504 | DataManager::SetValue("tw_ab_device", tw_ab_device); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 505 | } |
| 506 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 507 | void GUIAction::operation_end(const int operation_status) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 508 | { |
Samer Diab (S.a.M.e.R_d) | 71e9b04 | 2014-01-07 20:18:47 +0000 | [diff] [blame] | 509 | time_t Stop; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 510 | int simulate_fail; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 511 | 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 bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 519 | if (operation_status != 0) { |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 520 | DataManager::SetValue("tw_operation_status", 1); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 521 | } |
| 522 | else { |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 523 | DataManager::SetValue("tw_operation_status", 0); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 524 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 525 | } |
| 526 | DataManager::SetValue("tw_operation_state", 1); |
| 527 | DataManager::SetValue(TW_ACTION_BUSY, 0); |
bigbiff bigbiff | 8a68c31 | 2013-02-10 14:28:30 -0500 | [diff] [blame] | 528 | blankTimer.resetTimerAndUnblank(); |
LuK1337 | 62326f4 | 2015-09-30 19:57:46 +0200 | [diff] [blame] | 529 | property_set("twrp.action_complete", "1"); |
Samer Diab (S.a.M.e.R_d) | 71e9b04 | 2014-01-07 20:18:47 +0000 | [diff] [blame] | 530 | time(&Stop); |
bigbiff bigbiff | 3ed778a | 2019-03-12 19:28:31 -0400 | [diff] [blame] | 531 | |
| 532 | #ifndef TW_NO_HAPTICS |
Samer Diab (S.a.M.e.R_d) | 71e9b04 | 2014-01-07 20:18:47 +0000 | [diff] [blame] | 533 | if ((int) difftime(Stop, Start) > 10) |
Ethan Yonker | 03db326 | 2014-02-05 08:02:06 -0600 | [diff] [blame] | 534 | DataManager::Vibrate("tw_action_vibrate"); |
bigbiff bigbiff | 3ed778a | 2019-03-12 19:28:31 -0400 | [diff] [blame] | 535 | #endif |
| 536 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 537 | LOGINFO("operation_end - status=%d\n", operation_status); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 538 | } |
| 539 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 540 | int GUIAction::reboot(std::string arg) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 541 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 542 | sync(); |
| 543 | DataManager::SetValue("tw_gui_done", 1); |
| 544 | DataManager::SetValue("tw_reboot_arg", arg); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 545 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 546 | return 0; |
| 547 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 548 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 549 | int GUIAction::home(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 550 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 551 | gui_changePage("main"); |
| 552 | return 0; |
| 553 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 554 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 555 | int 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 | |
| 563 | int GUIAction::page(std::string arg) |
| 564 | { |
LuK1337 | 62326f4 | 2015-09-30 19:57:46 +0200 | [diff] [blame] | 565 | property_set("twrp.action_complete", "0"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 566 | std::string page_name = gui_parse_text(arg); |
| 567 | return gui_changePage(page_name); |
| 568 | } |
| 569 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 570 | int GUIAction::reload(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 571 | { |
Ethan Yonker | e0f1f3b | 2015-10-27 09:49:01 -0500 | [diff] [blame] | 572 | 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. |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 579 | return 0; |
| 580 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 581 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 582 | int GUIAction::readBackup(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 583 | { |
| 584 | string Restore_Name; |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 585 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 586 | DataManager::GetValue("tw_restore", Restore_Name); |
| 587 | PartitionManager.Set_Restore_Files(Restore_Name); |
| 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | int GUIAction::set(std::string arg) |
| 592 | { |
| 593 | if (arg.find('=') != string::npos) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 594 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 595 | string varName = arg.substr(0, arg.find('=')); |
| 596 | string value = arg.substr(arg.find('=') + 1, string::npos); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 597 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 598 | DataManager::GetValue(value, value); |
| 599 | DataManager::SetValue(varName, value); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 600 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 601 | else |
| 602 | DataManager::SetValue(arg, "1"); |
| 603 | return 0; |
| 604 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 605 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 606 | int GUIAction::clear(std::string arg) |
| 607 | { |
| 608 | DataManager::SetValue(arg, "0"); |
| 609 | return 0; |
| 610 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 611 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 612 | int GUIAction::mount(std::string arg) |
| 613 | { |
| 614 | if (arg == "usb") { |
| 615 | DataManager::SetValue(TW_ACTION_BUSY, 1); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 616 | if (!simulate) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 617 | PartitionManager.usb_storage_enable(); |
| 618 | else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 619 | gui_msg("simulating=Simulating actions..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 620 | } else if (!simulate) { |
| 621 | PartitionManager.Mount_By_Path(arg, true); |
| 622 | PartitionManager.Add_MTP_Storage(arg); |
| 623 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 624 | gui_msg("simulating=Simulating actions..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 625 | return 0; |
| 626 | } |
| 627 | |
| 628 | int GUIAction::unmount(std::string arg) |
| 629 | { |
| 630 | if (arg == "usb") { |
| 631 | if (!simulate) |
| 632 | PartitionManager.usb_storage_disable(); |
| 633 | else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 634 | gui_msg("simulating=Simulating actions..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 635 | DataManager::SetValue(TW_ACTION_BUSY, 0); |
| 636 | } else if (!simulate) { |
| 637 | PartitionManager.UnMount_By_Path(arg, true); |
| 638 | } else |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 639 | gui_msg("simulating=Simulating actions..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 640 | return 0; |
| 641 | } |
| 642 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 643 | int GUIAction::restoredefaultsettings(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 644 | { |
| 645 | operation_start("Restore Defaults"); |
| 646 | if (simulate) // Simulated so that people don't accidently wipe out the "simulation is on" setting |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 647 | gui_msg("simulating=Simulating actions..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 648 | 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 Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 657 | int GUIAction::copylog(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 658 | { |
| 659 | operation_start("Copy Log"); |
| 660 | if (!simulate) |
| 661 | { |
bigbiff bigbiff | bad332a | 2016-07-29 21:18:13 -0400 | [diff] [blame] | 662 | string dst, curr_storage; |
| 663 | int copy_kernel_log = 0; |
| 664 | |
| 665 | DataManager::GetValue("tw_include_kernel_log", copy_kernel_log); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 666 | PartitionManager.Mount_Current_Storage(true); |
bigbiff bigbiff | bad332a | 2016-07-29 21:18:13 -0400 | [diff] [blame] | 667 | curr_storage = DataManager::GetCurrentStoragePath(); |
| 668 | dst = curr_storage + "/recovery.log"; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 669 | TWFunc::copy_file("/tmp/recovery.log", dst.c_str(), 0755); |
| 670 | tw_set_default_metadata(dst.c_str()); |
bigbiff bigbiff | bad332a | 2016-07-29 21:18:13 -0400 | [diff] [blame] | 671 | if (copy_kernel_log) |
| 672 | TWFunc::copy_kernel_log(curr_storage); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 673 | sync(); |
bigbiff bigbiff | bad332a | 2016-07-29 21:18:13 -0400 | [diff] [blame] | 674 | gui_msg(Msg("copy_log=Copied recovery log to {1}")(dst)); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 675 | } else |
| 676 | simulate_progress_bar(); |
| 677 | operation_end(0); |
| 678 | return 0; |
| 679 | } |
| 680 | |
| 681 | |
| 682 | int 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 693 | return 0; |
| 694 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 695 | if (arg.find("-") != string::npos) |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 696 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 697 | 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 701 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 702 | 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 Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 727 | if (divide_by != 0) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 728 | { |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 729 | DataManager::GetValue(varName, value); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 730 | DataManager::SetValue(varName, value/divide_by); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 731 | } |
| 732 | return 0; |
| 733 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 734 | LOGERR("Unable to perform compute '%s'\n", arg.c_str()); |
| 735 | return -1; |
| 736 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 737 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 738 | int GUIAction::setguitimezone(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 739 | { |
| 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 | |
| 763 | int GUIAction::overlay(std::string arg) |
| 764 | { |
| 765 | return gui_changeOverlay(arg); |
| 766 | } |
| 767 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 768 | int GUIAction::queuezip(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 769 | { |
| 770 | if (zip_queue_index >= 10) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 771 | gui_msg("max_queue=Maximum zip queue reached!"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 772 | return 0; |
| 773 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 774 | 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_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 777 | DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 778 | } |
| 779 | return 0; |
| 780 | } |
| 781 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 782 | int GUIAction::cancelzip(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 783 | { |
| 784 | if (zip_queue_index <= 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 785 | gui_msg("min_queue=Minimum zip queue reached!"); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 786 | return 0; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 787 | } else { |
| 788 | zip_queue_index--; |
| 789 | DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 790 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 791 | return 0; |
| 792 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 793 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 794 | int GUIAction::queueclear(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 795 | { |
| 796 | zip_queue_index = 0; |
| 797 | DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index); |
| 798 | return 0; |
| 799 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 800 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 801 | int 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 Troy | b21cc64 | 2013-09-10 17:36:41 +0000 | [diff] [blame] | 808 | |
Matt Mower | 9a2a205 | 2016-05-31 21:31:22 -0500 | [diff] [blame] | 809 | int 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 Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 826 | int GUIAction::appenddatetobackupname(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 827 | { |
| 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 Mower | 76b8afc | 2016-06-24 12:04:27 -0500 | [diff] [blame] | 835 | PageManager::NotifyKey(KEY_END, true); |
| 836 | PageManager::NotifyKey(KEY_END, false); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 837 | operation_end(0); |
| 838 | return 0; |
| 839 | } |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 840 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 841 | int GUIAction::generatebackupname(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 842 | { |
| 843 | operation_start("GenerateBackupName"); |
| 844 | TWFunc::Auto_Generate_Backup_Name(); |
| 845 | operation_end(0); |
| 846 | return 0; |
| 847 | } |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 848 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 849 | int GUIAction::checkpartitionlist(std::string arg) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 850 | { |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 851 | string List, part_path; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 852 | int count = 0; |
Ethan Yonker | 87c7bac | 2014-05-25 21:41:08 -0500 | [diff] [blame] | 853 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 854 | 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") { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 864 | // Do nothing |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 865 | } else { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 866 | count++; |
| 867 | } |
| 868 | start_pos = end_pos + 1; |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 869 | end_pos = List.find(";", start_pos); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 870 | } |
| 871 | DataManager::SetValue("tw_check_partition_list", count); |
| 872 | } else { |
| 873 | DataManager::SetValue("tw_check_partition_list", 0); |
| 874 | } |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 875 | return 0; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 876 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 877 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 878 | int GUIAction::getpartitiondetails(std::string arg) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 879 | { |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 880 | string List, part_path; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 881 | |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 882 | 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") { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 893 | // Do nothing |
| 894 | } else { |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 895 | DataManager::SetValue("tw_partition_path", part_path); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 896 | break; |
| 897 | } |
| 898 | start_pos = end_pos + 1; |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 899 | end_pos = List.find(";", start_pos); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 900 | } |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 901 | if (!part_path.empty()) { |
| 902 | TWPartition* Part = PartitionManager.Find_Partition_By_Path(part_path); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 903 | if (Part) { |
| 904 | unsigned long long mb = 1048576; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 905 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 906 | 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 Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 920 | if (Part->Can_Resize()) |
| 921 | DataManager::SetValue("tw_partition_can_resize", 1); |
| 922 | else |
| 923 | DataManager::SetValue("tw_partition_can_resize", 0); |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 924 | if (TWFunc::Path_Exists("/sbin/mkfs.fat")) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 925 | DataManager::SetValue("tw_partition_vfat", 1); |
| 926 | else |
| 927 | DataManager::SetValue("tw_partition_vfat", 0); |
Matt Mower | 80f7b36 | 2015-12-12 15:38:01 -0600 | [diff] [blame] | 928 | if (TWFunc::Path_Exists("/sbin/mkexfatfs")) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 929 | 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 Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 942 | LOGERR("Unable to locate partition: '%s'\n", part_path.c_str()); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 943 | } |
| 944 | } |
| 945 | } |
| 946 | DataManager::SetValue("tw_partition_name", ""); |
| 947 | DataManager::SetValue("tw_partition_file_system", ""); |
Ethan Yonker | 483e9f4 | 2016-01-11 22:21:18 -0600 | [diff] [blame] | 948 | // Set this to 0 to prevent trying to partition this device, just in case |
| 949 | DataManager::SetValue("tw_partition_removable", 0); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 950 | return 0; |
| 951 | } |
| 952 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 953 | int GUIAction::screenshot(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 954 | { |
| 955 | time_t tm; |
| 956 | char path[256]; |
| 957 | int path_len; |
Matt Mower | 0c88b84 | 2017-01-15 16:00:49 -0600 | [diff] [blame] | 958 | uid_t uid = AID_MEDIA_RW; |
| 959 | gid_t gid = AID_MEDIA_RW; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 960 | |
| 961 | const std::string storage = DataManager::GetCurrentStoragePath(); |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 962 | if (PartitionManager.Is_Mounted_By_Path(storage)) { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 963 | snprintf(path, sizeof(path), "%s/Pictures/Screenshots/", storage.c_str()); |
| 964 | } else { |
| 965 | strcpy(path, "/tmp/"); |
| 966 | } |
| 967 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 968 | if (!TWFunc::Create_Dir_Recursive(path, 0775, uid, gid)) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 969 | 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 Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 978 | if (res == 0) { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 979 | chmod(path, 0666); |
| 980 | chown(path, uid, gid); |
| 981 | |
that | 677b13f | 2015-12-26 23:57:31 +0100 | [diff] [blame] | 982 | gui_msg(Msg("screenshot_saved=Screenshot was saved to {1}")(path)); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 983 | |
VDavid003 | 2034a41 | 2019-10-18 22:43:20 +0200 | [diff] [blame] | 984 | // blink to notify that the screenshot was taken |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 985 | 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 Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 990 | gui_err("screenshot_err=Failed to take a screenshot!"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 991 | } |
| 992 | return 0; |
| 993 | } |
| 994 | |
| 995 | int GUIAction::setbrightness(std::string arg) |
| 996 | { |
| 997 | return TWFunc::Set_Brightness(arg); |
| 998 | } |
| 999 | |
| 1000 | int 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 | |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1013 | void GUIAction::reinject_after_flash() |
| 1014 | { |
| 1015 | if (DataManager::GetIntValue(TW_HAS_INJECTTWRP) == 1 && DataManager::GetIntValue(TW_INJECT_AFTER_ZIP) == 1) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1016 | gui_msg("injecttwrp=Injecting TWRP into boot image..."); |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1017 | 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 Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1027 | gui_msg("done=Done."); |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1028 | } |
| 1029 | } |
| 1030 | } |
| 1031 | |
mauronofrio | 6d3bf89 | 2019-10-26 19:47:55 +0200 | [diff] [blame] | 1032 | int GUIAction::ozip_decrypt(string zip_path) |
| 1033 | { |
| 1034 | if (!TWFunc::Path_Exists("/sbin/ozip_decrypt")) { |
| 1035 | return 1; |
| 1036 | } |
| 1037 | gui_msg("ozip_decrypt_decryption=Starting Ozip Decryption..."); |
| 1038 | TWFunc::Exec_Cmd("ozip_decrypt " + (string)TW_OZIP_DECRYPT_KEY + " '" + zip_path + "'"); |
| 1039 | gui_msg("ozip_decrypt_finish=Ozip Decryption Finished!"); |
| 1040 | return 0; |
| 1041 | } |
| 1042 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1043 | int GUIAction::flash(std::string arg) |
| 1044 | { |
| 1045 | int i, ret_val = 0, wipe_cache = 0; |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 1046 | // We're going to jump to this page first, like a loading page |
| 1047 | gui_changePage(arg); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1048 | for (i=0; i<zip_queue_index; i++) { |
that | c7b631b | 2015-06-01 23:36:57 +0200 | [diff] [blame] | 1049 | string zip_path = zip_queue[i]; |
| 1050 | size_t slashpos = zip_path.find_last_of('/'); |
| 1051 | string zip_filename = (slashpos == string::npos) ? zip_path : zip_path.substr(slashpos + 1); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1052 | operation_start("Flashing"); |
mauronofrio | 6d3bf89 | 2019-10-26 19:47:55 +0200 | [diff] [blame] | 1053 | if((zip_path.substr(zip_path.size() - 4, 4)) == "ozip") |
| 1054 | { |
| 1055 | if((ozip_decrypt(zip_path)) != 0) |
| 1056 | { |
| 1057 | LOGERR("Unable to find ozip_decrypt!"); |
| 1058 | break; |
| 1059 | } |
| 1060 | zip_filename = (zip_filename.substr(0, zip_filename.size() - 4)).append("zip"); |
| 1061 | zip_path = (zip_path.substr(0, zip_path.size() - 4)).append("zip"); |
| 1062 | if (!TWFunc::Path_Exists(zip_path)) { |
| 1063 | LOGERR("Unable to find decrypted zip"); |
| 1064 | break; |
| 1065 | } |
| 1066 | } |
that | c7b631b | 2015-06-01 23:36:57 +0200 | [diff] [blame] | 1067 | DataManager::SetValue("tw_filename", zip_path); |
| 1068 | DataManager::SetValue("tw_file", zip_filename); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1069 | DataManager::SetValue(TW_ZIP_INDEX, (i + 1)); |
| 1070 | |
| 1071 | TWFunc::SetPerformanceMode(true); |
that | c7b631b | 2015-06-01 23:36:57 +0200 | [diff] [blame] | 1072 | ret_val = flash_zip(zip_path, &wipe_cache); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1073 | TWFunc::SetPerformanceMode(false); |
| 1074 | if (ret_val != 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1075 | gui_msg(Msg(msg::kError, "zip_err=Error installing zip file '{1}'")(zip_path)); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1076 | ret_val = 1; |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 1077 | break; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1078 | } |
| 1079 | } |
| 1080 | zip_queue_index = 0; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1081 | |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 1082 | if (wipe_cache) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1083 | gui_msg("zip_wipe_cache=One or more zip requested a cache wipe -- Wiping cache now."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1084 | PartitionManager.Wipe_By_Path("/cache"); |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 1085 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1086 | |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1087 | reinject_after_flash(); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1088 | PartitionManager.Update_System_Details(); |
| 1089 | operation_end(ret_val); |
bigbiff | a869fc7 | 2016-03-01 19:40:36 -0500 | [diff] [blame] | 1090 | // This needs to be after the operation_end call so we change pages before we change variables that we display on the screen |
Ethan Yonker | 0d47eb5 | 2015-01-09 11:23:19 -0600 | [diff] [blame] | 1091 | DataManager::SetValue(TW_ZIP_QUEUE_COUNT, zip_queue_index); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1092 | return 0; |
| 1093 | } |
| 1094 | |
| 1095 | int GUIAction::wipe(std::string arg) |
| 1096 | { |
| 1097 | operation_start("Format"); |
| 1098 | DataManager::SetValue("tw_partition", arg); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1099 | int ret_val = false; |
| 1100 | |
| 1101 | if (simulate) { |
| 1102 | simulate_progress_bar(); |
| 1103 | } else { |
| 1104 | if (arg == "data") |
| 1105 | ret_val = PartitionManager.Factory_Reset(); |
| 1106 | else if (arg == "battery") |
| 1107 | ret_val = PartitionManager.Wipe_Battery_Stats(); |
| 1108 | else if (arg == "rotate") |
| 1109 | ret_val = PartitionManager.Wipe_Rotate_Data(); |
| 1110 | else if (arg == "dalvik") |
| 1111 | ret_val = PartitionManager.Wipe_Dalvik_Cache(); |
| 1112 | else if (arg == "DATAMEDIA") { |
| 1113 | ret_val = PartitionManager.Format_Data(); |
| 1114 | } else if (arg == "INTERNAL") { |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 1115 | int has_datamedia; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1116 | |
| 1117 | DataManager::GetValue(TW_HAS_DATA_MEDIA, has_datamedia); |
| 1118 | if (has_datamedia) { |
| 1119 | ret_val = PartitionManager.Wipe_Media_From_Data(); |
| 1120 | } else { |
| 1121 | ret_val = PartitionManager.Wipe_By_Path(DataManager::GetSettingsStoragePath()); |
| 1122 | } |
| 1123 | } else if (arg == "EXTERNAL") { |
| 1124 | string External_Path; |
| 1125 | |
| 1126 | DataManager::GetValue(TW_EXTERNAL_PATH, External_Path); |
| 1127 | ret_val = PartitionManager.Wipe_By_Path(External_Path); |
| 1128 | } else if (arg == "ANDROIDSECURE") { |
| 1129 | ret_val = PartitionManager.Wipe_Android_Secure(); |
| 1130 | } else if (arg == "LIST") { |
| 1131 | string Wipe_List, wipe_path; |
| 1132 | bool skip = false; |
| 1133 | ret_val = true; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1134 | |
| 1135 | DataManager::GetValue("tw_wipe_list", Wipe_List); |
| 1136 | LOGINFO("wipe list '%s'\n", Wipe_List.c_str()); |
| 1137 | if (!Wipe_List.empty()) { |
| 1138 | size_t start_pos = 0, end_pos = Wipe_List.find(";", start_pos); |
| 1139 | while (end_pos != string::npos && start_pos < Wipe_List.size()) { |
| 1140 | wipe_path = Wipe_List.substr(start_pos, end_pos - start_pos); |
| 1141 | LOGINFO("wipe_path '%s'\n", wipe_path.c_str()); |
| 1142 | if (wipe_path == "/and-sec") { |
| 1143 | if (!PartitionManager.Wipe_Android_Secure()) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1144 | gui_msg("and_sec_wipe_err=Unable to wipe android secure"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1145 | ret_val = false; |
| 1146 | break; |
| 1147 | } else { |
| 1148 | skip = true; |
| 1149 | } |
| 1150 | } else if (wipe_path == "DALVIK") { |
| 1151 | if (!PartitionManager.Wipe_Dalvik_Cache()) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1152 | gui_err("dalvik_wipe_err=Failed to wipe dalvik"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1153 | ret_val = false; |
| 1154 | break; |
| 1155 | } else { |
| 1156 | skip = true; |
| 1157 | } |
| 1158 | } else if (wipe_path == "INTERNAL") { |
| 1159 | if (!PartitionManager.Wipe_Media_From_Data()) { |
| 1160 | ret_val = false; |
| 1161 | break; |
| 1162 | } else { |
| 1163 | skip = true; |
Dees_Troy | a13d74f | 2013-03-24 08:54:55 -0500 | [diff] [blame] | 1164 | } |
| 1165 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1166 | if (!skip) { |
| 1167 | if (!PartitionManager.Wipe_By_Path(wipe_path)) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1168 | gui_msg(Msg(msg::kError, "unable_to_wipe=Unable to wipe {1}.")(wipe_path)); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1169 | ret_val = false; |
| 1170 | break; |
| 1171 | } else if (wipe_path == DataManager::GetSettingsStoragePath()) { |
| 1172 | arg = wipe_path; |
| 1173 | } |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1174 | } else { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1175 | skip = false; |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1176 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1177 | start_pos = end_pos + 1; |
| 1178 | end_pos = Wipe_List.find(";", start_pos); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1179 | } |
| 1180 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1181 | } else |
| 1182 | ret_val = PartitionManager.Wipe_By_Path(arg); |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1183 | #ifndef TW_OEM_BUILD |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1184 | if (arg == DataManager::GetSettingsStoragePath()) { |
| 1185 | // If we wiped the settings storage path, recreate the TWRP folder and dump the settings |
| 1186 | string Storage_Path = DataManager::GetSettingsStoragePath(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1187 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1188 | if (PartitionManager.Mount_By_Path(Storage_Path, true)) { |
| 1189 | LOGINFO("Making TWRP folder and saving settings.\n"); |
| 1190 | Storage_Path += "/TWRP"; |
| 1191 | mkdir(Storage_Path.c_str(), 0777); |
| 1192 | DataManager::Flush(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1193 | } else { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1194 | LOGERR("Unable to recreate TWRP folder and save settings.\n"); |
| 1195 | } |
| 1196 | } |
| 1197 | #endif |
| 1198 | } |
| 1199 | PartitionManager.Update_System_Details(); |
| 1200 | if (ret_val) |
| 1201 | ret_val = 0; // 0 is success |
| 1202 | else |
| 1203 | ret_val = 1; // 1 is failure |
| 1204 | operation_end(ret_val); |
| 1205 | return 0; |
| 1206 | } |
Samer Diab (S.a.M.e.R_d) | 71e9b04 | 2014-01-07 20:18:47 +0000 | [diff] [blame] | 1207 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1208 | int GUIAction::refreshsizes(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1209 | { |
| 1210 | operation_start("Refreshing Sizes"); |
| 1211 | if (simulate) { |
| 1212 | simulate_progress_bar(); |
| 1213 | } else |
| 1214 | PartitionManager.Update_System_Details(); |
| 1215 | operation_end(0); |
| 1216 | return 0; |
| 1217 | } |
| 1218 | |
| 1219 | int GUIAction::nandroid(std::string arg) |
| 1220 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1221 | if (simulate) { |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1222 | PartitionManager.stop_backup.set_value(0); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1223 | DataManager::SetValue("tw_partition", "Simulation"); |
| 1224 | simulate_progress_bar(); |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1225 | operation_end(0); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1226 | } else { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1227 | operation_start("Nandroid"); |
| 1228 | int ret = 0; |
| 1229 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1230 | if (arg == "backup") { |
| 1231 | string Backup_Name; |
| 1232 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
Ethan Yonker | 4adc33e | 2016-01-22 16:07:11 -0600 | [diff] [blame] | 1233 | string auto_gen = gui_lookup("auto_generate", "(Auto Generate)"); |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 1234 | 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) { |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1235 | ret = PartitionManager.Run_Backup(false); |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1236 | DataManager::SetValue("tw_encrypt_backup", 0); // reset value so we don't encrypt every subsequent backup |
| 1237 | if (!PartitionManager.stop_backup.get_value()) { |
| 1238 | if (ret == false) |
| 1239 | ret = 1; // 1 for failure |
| 1240 | else |
| 1241 | ret = 0; // 0 for success |
| 1242 | DataManager::SetValue("tw_cancel_backup", 0); |
| 1243 | } else { |
| 1244 | DataManager::SetValue("tw_cancel_backup", 1); |
| 1245 | gui_msg("backup_cancel=Backup Cancelled"); |
| 1246 | ret = 0; |
| 1247 | } |
bigbiff | ce8f83c | 2015-12-12 18:30:21 -0500 | [diff] [blame] | 1248 | } else { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1249 | operation_end(1); |
| 1250 | return -1; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1251 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1252 | DataManager::SetValue(TW_BACKUP_NAME, auto_gen); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1253 | } else if (arg == "restore") { |
| 1254 | string Restore_Name; |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1255 | int gui_adb_backup; |
| 1256 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1257 | DataManager::GetValue("tw_restore", Restore_Name); |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1258 | DataManager::GetValue("tw_enable_adb_backup", gui_adb_backup); |
| 1259 | if (gui_adb_backup) { |
| 1260 | DataManager::SetValue("tw_operation_state", 1); |
| 1261 | if (TWFunc::stream_adb_backup(Restore_Name) == 0) |
| 1262 | ret = 0; // success |
| 1263 | else |
| 1264 | ret = 1; // failure |
| 1265 | DataManager::SetValue("tw_enable_adb_backup", 0); |
| 1266 | ret = 0; // assume success??? |
| 1267 | } else { |
| 1268 | if (PartitionManager.Run_Restore(Restore_Name)) |
| 1269 | ret = 0; // success |
| 1270 | else |
| 1271 | ret = 1; // failure |
| 1272 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1273 | } else { |
bigbiff bigbiff | 19fb79c | 2016-09-05 21:04:51 -0400 | [diff] [blame] | 1274 | operation_end(1); // invalid arg specified, fail |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1275 | return -1; |
| 1276 | } |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1277 | operation_end(ret); |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1278 | return ret; |
| 1279 | } |
| 1280 | return 0; |
| 1281 | } |
| 1282 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1283 | int GUIAction::cancelbackup(std::string arg __unused) { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1284 | if (simulate) { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1285 | PartitionManager.stop_backup.set_value(1); |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1286 | } |
| 1287 | else { |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1288 | int op_status = PartitionManager.Cancel_Backup(); |
| 1289 | if (op_status != 0) |
| 1290 | op_status = 1; // failure |
bigbiff | 7abc5fe | 2015-01-17 16:53:12 -0500 | [diff] [blame] | 1291 | } |
| 1292 | |
| 1293 | return 0; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1294 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1295 | |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1296 | int GUIAction::fixcontexts(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1297 | { |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1298 | int op_status = 0; |
| 1299 | |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1300 | operation_start("Fix Contexts"); |
| 1301 | LOGINFO("fix contexts started!\n"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1302 | if (simulate) { |
| 1303 | simulate_progress_bar(); |
| 1304 | } else { |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1305 | op_status = PartitionManager.Fix_Contexts(); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1306 | if (op_status != 0) |
| 1307 | op_status = 1; // failure |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1308 | } |
that | 73a5295 | 2015-01-28 23:07:34 +0100 | [diff] [blame] | 1309 | operation_end(op_status); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1310 | return 0; |
| 1311 | } |
| 1312 | |
Ethan Yonker | b5fab76 | 2016-01-28 14:03:33 -0600 | [diff] [blame] | 1313 | int GUIAction::fixpermissions(std::string arg) |
| 1314 | { |
| 1315 | return fixcontexts(arg); |
| 1316 | } |
| 1317 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1318 | int GUIAction::dd(std::string arg) |
| 1319 | { |
| 1320 | operation_start("imaging"); |
| 1321 | |
| 1322 | if (simulate) { |
| 1323 | simulate_progress_bar(); |
| 1324 | } else { |
| 1325 | string cmd = "dd " + arg; |
| 1326 | TWFunc::Exec_Cmd(cmd); |
| 1327 | } |
| 1328 | operation_end(0); |
| 1329 | return 0; |
| 1330 | } |
| 1331 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1332 | int GUIAction::partitionsd(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1333 | { |
| 1334 | operation_start("Partition SD Card"); |
| 1335 | int ret_val = 0; |
| 1336 | |
| 1337 | if (simulate) { |
| 1338 | simulate_progress_bar(); |
| 1339 | } else { |
| 1340 | int allow_partition; |
| 1341 | DataManager::GetValue(TW_ALLOW_PARTITION_SDCARD, allow_partition); |
| 1342 | if (allow_partition == 0) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1343 | gui_err("no_real_sdcard=This device does not have a real SD Card! Aborting!"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1344 | } else { |
| 1345 | if (!PartitionManager.Partition_SDCard()) |
| 1346 | ret_val = 1; // failed |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1347 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1348 | } |
| 1349 | operation_end(ret_val); |
| 1350 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1351 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1352 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1353 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1354 | int GUIAction::installhtcdumlock(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1355 | { |
| 1356 | operation_start("Install HTC Dumlock"); |
| 1357 | if (simulate) { |
| 1358 | simulate_progress_bar(); |
| 1359 | } else |
| 1360 | TWFunc::install_htc_dumlock(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1361 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1362 | operation_end(0); |
| 1363 | return 0; |
| 1364 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1365 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1366 | int GUIAction::htcdumlockrestoreboot(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1367 | { |
| 1368 | operation_start("HTC Dumlock Restore Boot"); |
| 1369 | if (simulate) { |
| 1370 | simulate_progress_bar(); |
| 1371 | } else |
| 1372 | TWFunc::htc_dumlock_restore_original_boot(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1373 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1374 | operation_end(0); |
| 1375 | return 0; |
| 1376 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1377 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1378 | int GUIAction::htcdumlockreflashrecovery(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1379 | { |
| 1380 | operation_start("HTC Dumlock Reflash Recovery"); |
| 1381 | if (simulate) { |
| 1382 | simulate_progress_bar(); |
| 1383 | } else |
| 1384 | TWFunc::htc_dumlock_reflash_recovery_to_boot(); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1385 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1386 | operation_end(0); |
| 1387 | return 0; |
| 1388 | } |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1389 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1390 | int GUIAction::cmd(std::string arg) |
| 1391 | { |
| 1392 | int op_status = 0; |
| 1393 | |
| 1394 | operation_start("Command"); |
| 1395 | LOGINFO("Running command: '%s'\n", arg.c_str()); |
| 1396 | if (simulate) { |
| 1397 | simulate_progress_bar(); |
| 1398 | } else { |
| 1399 | op_status = TWFunc::Exec_Cmd(arg); |
| 1400 | if (op_status != 0) |
| 1401 | op_status = 1; |
| 1402 | } |
| 1403 | |
| 1404 | operation_end(op_status); |
| 1405 | return 0; |
| 1406 | } |
| 1407 | |
| 1408 | int GUIAction::terminalcommand(std::string arg) |
| 1409 | { |
| 1410 | int op_status = 0; |
| 1411 | string cmdpath, command; |
| 1412 | |
| 1413 | DataManager::GetValue("tw_terminal_location", cmdpath); |
| 1414 | operation_start("CommandOutput"); |
| 1415 | gui_print("%s # %s\n", cmdpath.c_str(), arg.c_str()); |
| 1416 | if (simulate) { |
| 1417 | simulate_progress_bar(); |
| 1418 | operation_end(op_status); |
Matt Mower | 5aa29ab | 2015-02-25 23:50:55 -0600 | [diff] [blame] | 1419 | } else if (arg == "exit") { |
| 1420 | LOGINFO("Exiting terminal\n"); |
| 1421 | operation_end(op_status); |
| 1422 | page("main"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1423 | } else { |
| 1424 | command = "cd \"" + cmdpath + "\" && " + arg + " 2>&1";; |
| 1425 | LOGINFO("Actual command is: '%s'\n", command.c_str()); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1426 | DataManager::SetValue("tw_terminal_state", 1); |
| 1427 | DataManager::SetValue("tw_background_thread_running", 1); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1428 | FILE* fp; |
| 1429 | char line[512]; |
| 1430 | |
| 1431 | fp = popen(command.c_str(), "r"); |
| 1432 | if (fp == NULL) { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1433 | LOGERR("Error opening command to run (%s).\n", strerror(errno)); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1434 | } else { |
Matt Mower | 23d8aae | 2017-01-06 14:30:33 -0600 | [diff] [blame] | 1435 | int fd = fileno(fp), has_data = 0, check = 0, keep_going = -1; |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1436 | struct timeval timeout; |
| 1437 | fd_set fdset; |
| 1438 | |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 1439 | while (keep_going) |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1440 | { |
| 1441 | FD_ZERO(&fdset); |
| 1442 | FD_SET(fd, &fdset); |
| 1443 | timeout.tv_sec = 0; |
| 1444 | timeout.tv_usec = 400000; |
| 1445 | has_data = select(fd+1, &fdset, NULL, NULL, &timeout); |
| 1446 | if (has_data == 0) { |
| 1447 | // Timeout reached |
| 1448 | DataManager::GetValue("tw_terminal_state", check); |
| 1449 | if (check == 0) { |
| 1450 | keep_going = 0; |
| 1451 | } |
| 1452 | } else if (has_data < 0) { |
| 1453 | // End of execution |
| 1454 | keep_going = 0; |
| 1455 | } else { |
| 1456 | // Try to read output |
Matt Mower | a8a89d1 | 2016-12-30 18:10:37 -0600 | [diff] [blame] | 1457 | if (fgets(line, sizeof(line), fp) != NULL) |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1458 | gui_print("%s", line); // Display output |
| 1459 | else |
| 1460 | keep_going = 0; // Done executing |
| 1461 | } |
| 1462 | } |
| 1463 | fclose(fp); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1464 | } |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1465 | DataManager::SetValue("tw_operation_status", 0); |
| 1466 | DataManager::SetValue("tw_operation_state", 1); |
| 1467 | DataManager::SetValue("tw_terminal_state", 0); |
| 1468 | DataManager::SetValue("tw_background_thread_running", 0); |
| 1469 | DataManager::SetValue(TW_ACTION_BUSY, 0); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1470 | } |
| 1471 | return 0; |
| 1472 | } |
| 1473 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1474 | int GUIAction::killterminal(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1475 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1476 | LOGINFO("Sending kill command...\n"); |
| 1477 | operation_start("KillCommand"); |
| 1478 | DataManager::SetValue("tw_operation_status", 0); |
| 1479 | DataManager::SetValue("tw_operation_state", 1); |
| 1480 | DataManager::SetValue("tw_terminal_state", 0); |
| 1481 | DataManager::SetValue("tw_background_thread_running", 0); |
| 1482 | DataManager::SetValue(TW_ACTION_BUSY, 0); |
| 1483 | return 0; |
| 1484 | } |
| 1485 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1486 | int GUIAction::reinjecttwrp(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1487 | { |
| 1488 | int op_status = 0; |
| 1489 | operation_start("ReinjectTWRP"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1490 | gui_msg("injecttwrp=Injecting TWRP into boot image..."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1491 | if (simulate) { |
| 1492 | simulate_progress_bar(); |
| 1493 | } else { |
| 1494 | TWFunc::Exec_Cmd("injecttwrp --dump /tmp/backup_recovery_ramdisk.img /tmp/injected_boot.img --flash"); |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1495 | gui_msg("done=Done."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1496 | } |
| 1497 | |
| 1498 | operation_end(op_status); |
| 1499 | return 0; |
| 1500 | } |
| 1501 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1502 | int GUIAction::checkbackupname(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1503 | { |
| 1504 | int op_status = 0; |
| 1505 | |
| 1506 | operation_start("CheckBackupName"); |
| 1507 | if (simulate) { |
| 1508 | simulate_progress_bar(); |
| 1509 | } else { |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 1510 | string Backup_Name; |
| 1511 | DataManager::GetValue(TW_BACKUP_NAME, Backup_Name); |
| 1512 | op_status = PartitionManager.Check_Backup_Name(Backup_Name, true, true); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1513 | if (op_status != 0) |
| 1514 | op_status = 1; |
| 1515 | } |
| 1516 | |
| 1517 | operation_end(op_status); |
| 1518 | return 0; |
| 1519 | } |
| 1520 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1521 | int GUIAction::decrypt(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1522 | { |
| 1523 | int op_status = 0; |
| 1524 | |
| 1525 | operation_start("Decrypt"); |
| 1526 | if (simulate) { |
| 1527 | simulate_progress_bar(); |
| 1528 | } else { |
| 1529 | string Password; |
| 1530 | DataManager::GetValue("tw_crypto_password", Password); |
bigbiff | adc599e | 2020-05-28 19:36:30 +0000 | [diff] [blame] | 1531 | op_status = PartitionManager.Decrypt_Device(Password); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1532 | if (op_status != 0) |
| 1533 | op_status = 1; |
| 1534 | else { |
bigbiff | adc599e | 2020-05-28 19:36:30 +0000 | [diff] [blame] | 1535 | |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1536 | DataManager::SetValue(TW_IS_ENCRYPTED, 0); |
| 1537 | |
Ethan Yonker | cf50da5 | 2015-01-12 21:59:07 -0600 | [diff] [blame] | 1538 | int has_datamedia; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1539 | |
Ethan Yonker | cf50da5 | 2015-01-12 21:59:07 -0600 | [diff] [blame] | 1540 | // Check for a custom theme and load it if exists |
| 1541 | DataManager::GetValue(TW_HAS_DATA_MEDIA, has_datamedia); |
| 1542 | if (has_datamedia != 0) { |
| 1543 | if (tw_get_default_metadata(DataManager::GetSettingsStoragePath().c_str()) != 0) { |
Ethan Yonker | d9ff3c5 | 2015-01-21 21:51:20 -0600 | [diff] [blame] | 1544 | LOGINFO("Failed to get default contexts and file mode for storage files.\n"); |
Ethan Yonker | cf50da5 | 2015-01-12 21:59:07 -0600 | [diff] [blame] | 1545 | } else { |
| 1546 | LOGINFO("Got default contexts and file mode for storage files.\n"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1547 | } |
| 1548 | } |
Ethan Yonker | 66a1949 | 2015-12-10 10:19:45 -0600 | [diff] [blame] | 1549 | PartitionManager.Decrypt_Adopted(); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1550 | } |
| 1551 | } |
| 1552 | |
| 1553 | operation_end(op_status); |
| 1554 | return 0; |
| 1555 | } |
| 1556 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1557 | int GUIAction::adbsideload(std::string arg __unused) |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1558 | { |
| 1559 | operation_start("Sideload"); |
| 1560 | if (simulate) { |
| 1561 | simulate_progress_bar(); |
| 1562 | operation_end(0); |
| 1563 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1564 | gui_msg("start_sideload=Starting ADB sideload feature..."); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1565 | bool mtp_was_enabled = TWFunc::Toggle_MTP(false); |
| 1566 | |
| 1567 | // wait for the adb connection |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 1568 | // int ret = apply_from_adb("/", &sideload_child_pid); |
| 1569 | Device::BuiltinAction reboot_action = Device::REBOOT_BOOTLOADER; |
| 1570 | int ret = ApplyFromAdb("/", &reboot_action); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1571 | DataManager::SetValue("tw_has_cancel", 0); // Remove cancel button from gui now that the zip install is going to start |
| 1572 | |
| 1573 | if (ret != 0) { |
| 1574 | if (ret == -2) |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1575 | gui_msg("need_new_adb=You need adb 1.0.32 or newer to sideload to this device."); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1576 | ret = 1; // failure |
| 1577 | } else { |
| 1578 | int wipe_cache = 0; |
| 1579 | int wipe_dalvik = 0; |
| 1580 | DataManager::GetValue("tw_wipe_dalvik", wipe_dalvik); |
| 1581 | |
| 1582 | if (TWinstall_zip(FUSE_SIDELOAD_HOST_PATHNAME, &wipe_cache) == 0) { |
| 1583 | if (wipe_cache || DataManager::GetIntValue("tw_wipe_cache")) |
| 1584 | PartitionManager.Wipe_By_Path("/cache"); |
| 1585 | if (wipe_dalvik) |
| 1586 | PartitionManager.Wipe_Dalvik_Cache(); |
| 1587 | } else { |
| 1588 | ret = 1; // failure |
| 1589 | } |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1590 | } |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1591 | if (sideload_child_pid) { |
| 1592 | LOGINFO("Signaling child sideload process to exit.\n"); |
| 1593 | struct stat st; |
| 1594 | // Calling stat() on this magic filename signals the minadbd |
| 1595 | // subprocess to shut down. |
| 1596 | stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st); |
| 1597 | int status; |
| 1598 | LOGINFO("Waiting for child sideload process to exit.\n"); |
| 1599 | waitpid(sideload_child_pid, &status, 0); |
| 1600 | } |
Dees Troy | 28a85d2 | 2015-04-28 02:03:16 +0000 | [diff] [blame] | 1601 | property_set("ctl.start", "adbd"); |
that | c608548 | 2015-01-09 22:12:43 +0100 | [diff] [blame] | 1602 | TWFunc::Toggle_MTP(mtp_was_enabled); |
| 1603 | reinject_after_flash(); |
| 1604 | operation_end(ret); |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1605 | } |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1606 | return 0; |
| 1607 | } |
| 1608 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1609 | int GUIAction::adbsideloadcancel(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1610 | { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1611 | struct stat st; |
| 1612 | DataManager::SetValue("tw_has_cancel", 0); // Remove cancel button from gui |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1613 | gui_msg("cancel_sideload=Cancelling ADB sideload..."); |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1614 | LOGINFO("Signaling child sideload process to exit.\n"); |
| 1615 | // Calling stat() on this magic filename signals the minadbd |
| 1616 | // subprocess to shut down. |
| 1617 | stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st); |
| 1618 | if (!sideload_child_pid) { |
| 1619 | LOGERR("Unable to get child ID\n"); |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1620 | return 0; |
| 1621 | } |
that | cc8ddca | 2015-01-03 01:59:36 +0100 | [diff] [blame] | 1622 | ::sleep(1); |
| 1623 | LOGINFO("Killing child sideload process.\n"); |
| 1624 | kill(sideload_child_pid, SIGTERM); |
| 1625 | int status; |
| 1626 | LOGINFO("Waiting for child sideload process to exit.\n"); |
| 1627 | waitpid(sideload_child_pid, &status, 0); |
| 1628 | sideload_child_pid = 0; |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1629 | DataManager::SetValue("tw_page_done", "1"); // For OpenRecoveryScript support |
| 1630 | return 0; |
| 1631 | } |
| 1632 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1633 | int GUIAction::openrecoveryscript(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1634 | { |
| 1635 | operation_start("OpenRecoveryScript"); |
| 1636 | if (simulate) { |
| 1637 | simulate_progress_bar(); |
Ethan Yonker | 24e7eb7 | 2015-01-03 16:13:06 -0600 | [diff] [blame] | 1638 | operation_end(0); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1639 | } else { |
that | 10ae24f | 2015-12-26 20:53:51 +0100 | [diff] [blame] | 1640 | int op_status = OpenRecoveryScript::Run_OpenRecoveryScript_Action(); |
Ethan Yonker | e1abe61 | 2015-06-09 11:09:32 -0500 | [diff] [blame] | 1641 | operation_end(op_status); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1642 | } |
| 1643 | return 0; |
| 1644 | } |
| 1645 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1646 | int GUIAction::installsu(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1647 | { |
| 1648 | int op_status = 0; |
| 1649 | |
| 1650 | operation_start("Install SuperSU"); |
| 1651 | if (simulate) { |
| 1652 | simulate_progress_bar(); |
| 1653 | } else { |
Ethan Yonker | fa67cbf | 2018-07-20 12:22:33 -0500 | [diff] [blame] | 1654 | LOGERR("Installing SuperSU was deprecated from TWRP.\n"); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1655 | } |
| 1656 | |
| 1657 | operation_end(op_status); |
| 1658 | return 0; |
| 1659 | } |
| 1660 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1661 | int GUIAction::fixsu(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1662 | { |
| 1663 | int op_status = 0; |
| 1664 | |
| 1665 | operation_start("Fixing Superuser Permissions"); |
| 1666 | if (simulate) { |
| 1667 | simulate_progress_bar(); |
| 1668 | } else { |
| 1669 | LOGERR("Fixing su permissions was deprecated from TWRP.\n"); |
| 1670 | LOGERR("4.3+ ROMs with SELinux will always lose su perms.\n"); |
| 1671 | } |
| 1672 | |
| 1673 | operation_end(op_status); |
| 1674 | return 0; |
| 1675 | } |
| 1676 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1677 | int GUIAction::decrypt_backup(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1678 | { |
| 1679 | int op_status = 0; |
| 1680 | |
| 1681 | operation_start("Try Restore Decrypt"); |
| 1682 | if (simulate) { |
| 1683 | simulate_progress_bar(); |
| 1684 | } else { |
| 1685 | string Restore_Path, Filename, Password; |
| 1686 | DataManager::GetValue("tw_restore", Restore_Path); |
| 1687 | Restore_Path += "/"; |
| 1688 | DataManager::GetValue("tw_restore_password", Password); |
| 1689 | TWFunc::SetPerformanceMode(true); |
| 1690 | if (TWFunc::Try_Decrypting_Backup(Restore_Path, Password)) |
| 1691 | op_status = 0; // success |
| 1692 | else |
| 1693 | op_status = 1; // fail |
| 1694 | TWFunc::SetPerformanceMode(false); |
| 1695 | } |
| 1696 | |
| 1697 | operation_end(op_status); |
| 1698 | return 0; |
| 1699 | } |
| 1700 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1701 | int GUIAction::repair(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1702 | { |
| 1703 | int op_status = 0; |
| 1704 | |
| 1705 | operation_start("Repair Partition"); |
| 1706 | if (simulate) { |
| 1707 | simulate_progress_bar(); |
| 1708 | } else { |
| 1709 | string part_path; |
| 1710 | DataManager::GetValue("tw_partition_mount_point", part_path); |
| 1711 | if (PartitionManager.Repair_By_Path(part_path, true)) { |
| 1712 | op_status = 0; // success |
| 1713 | } else { |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1714 | op_status = 1; // fail |
| 1715 | } |
| 1716 | } |
| 1717 | |
| 1718 | operation_end(op_status); |
| 1719 | return 0; |
| 1720 | } |
| 1721 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1722 | int GUIAction::resize(std::string arg __unused) |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 1723 | { |
| 1724 | int op_status = 0; |
| 1725 | |
| 1726 | operation_start("Resize Partition"); |
| 1727 | if (simulate) { |
| 1728 | simulate_progress_bar(); |
| 1729 | } else { |
| 1730 | string part_path; |
| 1731 | DataManager::GetValue("tw_partition_mount_point", part_path); |
| 1732 | if (PartitionManager.Resize_By_Path(part_path, true)) { |
| 1733 | op_status = 0; // success |
| 1734 | } else { |
Ethan Yonker | a271915 | 2015-05-28 09:44:41 -0500 | [diff] [blame] | 1735 | op_status = 1; // fail |
| 1736 | } |
| 1737 | } |
| 1738 | |
| 1739 | operation_end(op_status); |
| 1740 | return 0; |
| 1741 | } |
| 1742 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1743 | int GUIAction::changefilesystem(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1744 | { |
| 1745 | int op_status = 0; |
| 1746 | |
| 1747 | operation_start("Change File System"); |
| 1748 | if (simulate) { |
| 1749 | simulate_progress_bar(); |
| 1750 | } else { |
| 1751 | string part_path, file_system; |
| 1752 | DataManager::GetValue("tw_partition_mount_point", part_path); |
| 1753 | DataManager::GetValue("tw_action_new_file_system", file_system); |
| 1754 | if (PartitionManager.Wipe_By_Path(part_path, file_system)) { |
| 1755 | op_status = 0; // success |
| 1756 | } else { |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1757 | gui_err("change_fs_err=Error changing file system."); |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1758 | op_status = 1; // fail |
| 1759 | } |
| 1760 | } |
| 1761 | PartitionManager.Update_System_Details(); |
| 1762 | operation_end(op_status); |
| 1763 | return 0; |
| 1764 | } |
| 1765 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1766 | int GUIAction::startmtp(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1767 | { |
| 1768 | int op_status = 0; |
| 1769 | |
| 1770 | operation_start("Start MTP"); |
| 1771 | if (PartitionManager.Enable_MTP()) |
| 1772 | op_status = 0; // success |
| 1773 | else |
| 1774 | op_status = 1; // fail |
| 1775 | |
| 1776 | operation_end(op_status); |
| 1777 | return 0; |
| 1778 | } |
| 1779 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1780 | int GUIAction::stopmtp(std::string arg __unused) |
that | 3f7b1ac | 2014-12-30 11:30:13 +0100 | [diff] [blame] | 1781 | { |
| 1782 | int op_status = 0; |
| 1783 | |
| 1784 | operation_start("Stop MTP"); |
| 1785 | if (PartitionManager.Disable_MTP()) |
| 1786 | op_status = 0; // success |
| 1787 | else |
| 1788 | op_status = 1; // fail |
| 1789 | |
| 1790 | operation_end(op_status); |
| 1791 | return 0; |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1792 | } |
| 1793 | |
Ethan Yonker | d0514ba | 2015-10-22 14:17:47 -0500 | [diff] [blame] | 1794 | int GUIAction::flashimage(std::string arg __unused) |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 1795 | { |
| 1796 | int op_status = 0; |
| 1797 | |
| 1798 | operation_start("Flash Image"); |
Ethan Yonker | dcf2b67 | 2016-09-13 14:41:53 -0500 | [diff] [blame] | 1799 | string path, filename; |
| 1800 | DataManager::GetValue("tw_zip_location", path); |
| 1801 | DataManager::GetValue("tw_file", filename); |
Ethan Yonker | e080c1f | 2016-09-19 13:50:25 -0500 | [diff] [blame] | 1802 | if (PartitionManager.Flash_Image(path, filename)) |
Ethan Yonker | 96af84a | 2015-01-05 14:58:36 -0600 | [diff] [blame] | 1803 | op_status = 0; // success |
| 1804 | else |
| 1805 | op_status = 1; // fail |
| 1806 | |
| 1807 | operation_end(op_status); |
| 1808 | return 0; |
| 1809 | } |
| 1810 | |
that | 10ae24f | 2015-12-26 20:53:51 +0100 | [diff] [blame] | 1811 | int GUIAction::twcmd(std::string arg) |
| 1812 | { |
| 1813 | operation_start("TWRP CLI Command"); |
| 1814 | if (simulate) |
| 1815 | simulate_progress_bar(); |
| 1816 | else |
| 1817 | OpenRecoveryScript::Run_CLI_Command(arg.c_str()); |
| 1818 | operation_end(0); |
| 1819 | return 0; |
| 1820 | } |
| 1821 | |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1822 | int GUIAction::getKeyByName(std::string key) |
| 1823 | { |
that | 8834a0f | 2016-01-05 23:29:30 +0100 | [diff] [blame] | 1824 | if (key == "home") return KEY_HOMEPAGE; // note: KEY_HOME is cursor movement (like KEY_END) |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1825 | else if (key == "menu") return KEY_MENU; |
| 1826 | else if (key == "back") return KEY_BACK; |
| 1827 | else if (key == "search") return KEY_SEARCH; |
| 1828 | else if (key == "voldown") return KEY_VOLUMEDOWN; |
| 1829 | else if (key == "volup") return KEY_VOLUMEUP; |
| 1830 | else if (key == "power") { |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1831 | int ret_val; |
| 1832 | DataManager::GetValue(TW_POWER_BUTTON, ret_val); |
| 1833 | if (!ret_val) |
| 1834 | return KEY_POWER; |
| 1835 | else |
| 1836 | return ret_val; |
| 1837 | } |
| 1838 | |
Vojtech Bocek | fafb0c5 | 2013-07-25 22:53:02 +0200 | [diff] [blame] | 1839 | return atol(key.c_str()); |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1840 | } |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 1841 | |
| 1842 | int GUIAction::checkpartitionlifetimewrites(std::string arg) |
| 1843 | { |
| 1844 | int op_status = 0; |
| 1845 | TWPartition* sys = PartitionManager.Find_Partition_By_Path(arg); |
| 1846 | |
| 1847 | operation_start("Check Partition Lifetime Writes"); |
| 1848 | if (sys) { |
| 1849 | if (sys->Check_Lifetime_Writes() != 0) |
| 1850 | DataManager::SetValue("tw_lifetime_writes", 1); |
| 1851 | else |
| 1852 | DataManager::SetValue("tw_lifetime_writes", 0); |
| 1853 | op_status = 0; // success |
| 1854 | } else { |
| 1855 | DataManager::SetValue("tw_lifetime_writes", 1); |
| 1856 | op_status = 1; // fail |
| 1857 | } |
| 1858 | |
| 1859 | operation_end(op_status); |
| 1860 | return 0; |
| 1861 | } |
| 1862 | |
| 1863 | int GUIAction::mountsystemtoggle(std::string arg) |
| 1864 | { |
| 1865 | int op_status = 0; |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 1866 | bool remount_system = PartitionManager.Is_Mounted_By_Path(PartitionManager.Get_Android_Root_Path()); |
Ethan Yonker | 1673e3d | 2015-10-26 21:51:58 -0500 | [diff] [blame] | 1867 | bool remount_vendor = PartitionManager.Is_Mounted_By_Path("/vendor"); |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 1868 | |
| 1869 | operation_start("Toggle System Mount"); |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 1870 | if (!PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), true)) { |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 1871 | op_status = 1; // fail |
| 1872 | } else { |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 1873 | TWPartition* Part = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path()); |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 1874 | if (Part) { |
Ethan Yonker | d6966f4 | 2015-05-30 14:52:16 -0500 | [diff] [blame] | 1875 | if (arg == "0") { |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 1876 | DataManager::SetValue("tw_mount_system_ro", 0); |
| 1877 | Part->Change_Mount_Read_Only(false); |
| 1878 | } else { |
| 1879 | DataManager::SetValue("tw_mount_system_ro", 1); |
| 1880 | Part->Change_Mount_Read_Only(true); |
| 1881 | } |
| 1882 | if (remount_system) { |
| 1883 | Part->Mount(true); |
| 1884 | } |
| 1885 | op_status = 0; // success |
| 1886 | } else { |
| 1887 | op_status = 1; // fail |
| 1888 | } |
Ethan Yonker | 1673e3d | 2015-10-26 21:51:58 -0500 | [diff] [blame] | 1889 | Part = PartitionManager.Find_Partition_By_Path("/vendor"); |
| 1890 | if (Part) { |
| 1891 | if (arg == "0") { |
| 1892 | Part->Change_Mount_Read_Only(false); |
| 1893 | } else { |
| 1894 | Part->Change_Mount_Read_Only(true); |
| 1895 | } |
| 1896 | if (remount_vendor) { |
| 1897 | Part->Mount(true); |
| 1898 | } |
| 1899 | op_status = 0; // success |
| 1900 | } else { |
| 1901 | op_status = 1; // fail |
| 1902 | } |
Ethan Yonker | eb32b1f | 2015-05-18 10:23:03 -0500 | [diff] [blame] | 1903 | } |
| 1904 | |
| 1905 | operation_end(op_status); |
| 1906 | return 0; |
| 1907 | } |
Ethan Yonker | 74db157 | 2015-10-28 12:44:49 -0500 | [diff] [blame] | 1908 | |
| 1909 | int GUIAction::setlanguage(std::string arg __unused) |
| 1910 | { |
| 1911 | int op_status = 0; |
| 1912 | |
| 1913 | operation_start("Set Language"); |
| 1914 | PageManager::LoadLanguage(DataManager::GetStrValue("tw_language")); |
| 1915 | PageManager::RequestReload(); |
| 1916 | op_status = 0; // success |
| 1917 | |
| 1918 | operation_end(op_status); |
| 1919 | return 0; |
| 1920 | } |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 1921 | |
Matt Mower | 9472ba1 | 2016-01-20 18:12:47 -0600 | [diff] [blame] | 1922 | int GUIAction::togglebacklight(std::string arg __unused) |
| 1923 | { |
| 1924 | blankTimer.toggleBlank(); |
| 1925 | return 0; |
| 1926 | } |
| 1927 | |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 1928 | int GUIAction::setbootslot(std::string arg) |
| 1929 | { |
| 1930 | operation_start("Set Boot Slot"); |
| 1931 | if (!simulate) |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 1932 | PartitionManager.Set_Active_Slot(arg); |
Matt Mower | 029a82d | 2017-01-08 13:12:38 -0600 | [diff] [blame] | 1933 | else |
Ethan Yonker | 1b19016 | 2016-12-05 15:25:19 -0600 | [diff] [blame] | 1934 | simulate_progress_bar(); |
| 1935 | operation_end(0); |
| 1936 | return 0; |
| 1937 | } |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 1938 | |
| 1939 | int GUIAction::checkforapp(std::string arg __unused) |
| 1940 | { |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 1941 | operation_start("Check for TWRP App"); |
| 1942 | if (!simulate) |
| 1943 | { |
| 1944 | string sdkverstr = TWFunc::System_Property_Get("ro.build.version.sdk"); |
| 1945 | int sdkver = 0; |
| 1946 | if (!sdkverstr.empty()) { |
| 1947 | sdkver = atoi(sdkverstr.c_str()); |
| 1948 | } |
| 1949 | if (sdkver <= 13) { |
| 1950 | if (sdkver == 0) |
| 1951 | LOGINFO("Unable to read sdk version from build prop\n"); |
| 1952 | else |
| 1953 | LOGINFO("SDK version too low for TWRP app (%i < 14)\n", sdkver); |
Ethan Yonker | 64c5c0a | 2017-03-06 12:42:54 -0600 | [diff] [blame] | 1954 | DataManager::SetValue("tw_app_install_status", 1); // 0 = no status, 1 = not installed, 2 = already installed or do not install |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 1955 | goto exit; |
| 1956 | } |
Ethan Yonker | 76bbd3a | 2019-05-10 10:50:04 -0500 | [diff] [blame] | 1957 | if (TWFunc::Is_TWRP_App_In_System()) { |
| 1958 | DataManager::SetValue("tw_app_install_status", 2); // 0 = no status, 1 = not installed, 2 = already installed or do not install |
| 1959 | goto exit; |
Ethan Yonker | 5e1a7f9 | 2017-01-18 16:44:54 -0600 | [diff] [blame] | 1960 | } |
| 1961 | if (PartitionManager.Mount_By_Path("/data", false)) { |
Ethan Yonker | 5128d29 | 2017-02-04 19:52:56 -0600 | [diff] [blame] | 1962 | const char parent_path[] = "/data/app"; |
| 1963 | const char app_prefix[] = "me.twrp.twrpapp-"; |
| 1964 | DIR *d = opendir(parent_path); |
| 1965 | if (d) { |
| 1966 | struct dirent *p; |
| 1967 | while ((p = readdir(d))) { |
| 1968 | if (p->d_type != DT_DIR || strlen(p->d_name) < strlen(app_prefix) || strncmp(p->d_name, app_prefix, strlen(app_prefix))) |
| 1969 | continue; |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 1970 | closedir(d); |
Ethan Yonker | 5128d29 | 2017-02-04 19:52:56 -0600 | [diff] [blame] | 1971 | LOGINFO("App found at '%s/%s'\n", parent_path, p->d_name); |
Ethan Yonker | 64c5c0a | 2017-03-06 12:42:54 -0600 | [diff] [blame] | 1972 | DataManager::SetValue("tw_app_install_status", 2); // 0 = no status, 1 = not installed, 2 = already installed or do not install |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 1973 | goto exit; |
| 1974 | } |
Ethan Yonker | 5128d29 | 2017-02-04 19:52:56 -0600 | [diff] [blame] | 1975 | closedir(d); |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 1976 | } |
Ethan Yonker | 64c5c0a | 2017-03-06 12:42:54 -0600 | [diff] [blame] | 1977 | } else { |
| 1978 | LOGINFO("Data partition cannot be mounted during app check\n"); |
| 1979 | DataManager::SetValue("tw_app_install_status", 2); // 0 = no status, 1 = not installed, 2 = already installed or do not install |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 1980 | } |
| 1981 | } else |
| 1982 | simulate_progress_bar(); |
| 1983 | LOGINFO("App not installed\n"); |
| 1984 | DataManager::SetValue("tw_app_install_status", 1); // 0 = no status, 1 = not installed, 2 = already installed |
| 1985 | exit: |
| 1986 | operation_end(0); |
| 1987 | return 0; |
| 1988 | } |
| 1989 | |
| 1990 | int GUIAction::installapp(std::string arg __unused) |
| 1991 | { |
| 1992 | int op_status = 1; |
| 1993 | operation_start("Install TWRP App"); |
| 1994 | if (!simulate) |
| 1995 | { |
| 1996 | if (DataManager::GetIntValue("tw_mount_system_ro") > 0 || DataManager::GetIntValue("tw_app_install_system") == 0) { |
| 1997 | if (PartitionManager.Mount_By_Path("/data", true)) { |
| 1998 | string install_path = "/data/app"; |
| 1999 | string context = "u:object_r:apk_data_file:s0"; |
| 2000 | if (!TWFunc::Path_Exists(install_path)) { |
| 2001 | if (mkdir(install_path.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH)) { |
| 2002 | LOGERR("Error making %s directory: %s\n", install_path.c_str(), strerror(errno)); |
| 2003 | goto exit; |
| 2004 | } |
| 2005 | if (chown(install_path.c_str(), 1000, 1000)) { |
| 2006 | LOGERR("chown %s error: %s\n", install_path.c_str(), strerror(errno)); |
| 2007 | goto exit; |
| 2008 | } |
Ethan Yonker | 4767caf | 2017-01-11 10:45:04 -0600 | [diff] [blame] | 2009 | if (setfilecon(install_path.c_str(), (security_context_t)context.c_str()) < 0) { |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 2010 | LOGERR("setfilecon %s error: %s\n", install_path.c_str(), strerror(errno)); |
| 2011 | goto exit; |
| 2012 | } |
| 2013 | } |
| 2014 | install_path += "/me.twrp.twrpapp-1"; |
| 2015 | if (mkdir(install_path.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH)) { |
| 2016 | LOGERR("Error making %s directory: %s\n", install_path.c_str(), strerror(errno)); |
| 2017 | goto exit; |
| 2018 | } |
| 2019 | if (chown(install_path.c_str(), 1000, 1000)) { |
| 2020 | LOGERR("chown %s error: %s\n", install_path.c_str(), strerror(errno)); |
| 2021 | goto exit; |
| 2022 | } |
Ethan Yonker | 4767caf | 2017-01-11 10:45:04 -0600 | [diff] [blame] | 2023 | if (setfilecon(install_path.c_str(), (security_context_t)context.c_str()) < 0) { |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 2024 | LOGERR("setfilecon %s error: %s\n", install_path.c_str(), strerror(errno)); |
| 2025 | goto exit; |
| 2026 | } |
| 2027 | install_path += "/base.apk"; |
| 2028 | if (TWFunc::copy_file("/sbin/me.twrp.twrpapp.apk", install_path, 0644)) { |
| 2029 | LOGERR("Error copying apk file\n"); |
| 2030 | goto exit; |
| 2031 | } |
| 2032 | if (chown(install_path.c_str(), 1000, 1000)) { |
| 2033 | LOGERR("chown %s error: %s\n", install_path.c_str(), strerror(errno)); |
| 2034 | goto exit; |
| 2035 | } |
Ethan Yonker | 4767caf | 2017-01-11 10:45:04 -0600 | [diff] [blame] | 2036 | if (setfilecon(install_path.c_str(), (security_context_t)context.c_str()) < 0) { |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 2037 | LOGERR("setfilecon %s error: %s\n", install_path.c_str(), strerror(errno)); |
| 2038 | goto exit; |
| 2039 | } |
| 2040 | sync(); |
| 2041 | sync(); |
| 2042 | } |
| 2043 | } else { |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 2044 | if (PartitionManager.Mount_By_Path(PartitionManager.Get_Android_Root_Path(), true)) { |
| 2045 | string base_path = PartitionManager.Get_Android_Root_Path(); |
| 2046 | if (TWFunc::Path_Exists(PartitionManager.Get_Android_Root_Path() + "/system")) |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 2047 | base_path += "/system"; // For devices with system as a root file system (e.g. Pixel) |
| 2048 | string install_path = base_path + "/priv-app"; |
| 2049 | string context = "u:object_r:system_file:s0"; |
| 2050 | if (!TWFunc::Path_Exists(install_path)) |
| 2051 | install_path = base_path + "/app"; |
| 2052 | if (TWFunc::Path_Exists(install_path)) { |
| 2053 | install_path += "/twrpapp"; |
| 2054 | LOGINFO("Installing app to '%s'\n", install_path.c_str()); |
| 2055 | if (mkdir(install_path.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) == 0) { |
Ethan Yonker | 4767caf | 2017-01-11 10:45:04 -0600 | [diff] [blame] | 2056 | if (setfilecon(install_path.c_str(), (security_context_t)context.c_str()) < 0) { |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 2057 | LOGERR("setfilecon %s error: %s\n", install_path.c_str(), strerror(errno)); |
| 2058 | goto exit; |
| 2059 | } |
| 2060 | install_path += "/me.twrp.twrpapp.apk"; |
| 2061 | if (TWFunc::copy_file("/sbin/me.twrp.twrpapp.apk", install_path, 0644)) { |
| 2062 | LOGERR("Error copying apk file\n"); |
| 2063 | goto exit; |
| 2064 | } |
Ethan Yonker | 4767caf | 2017-01-11 10:45:04 -0600 | [diff] [blame] | 2065 | if (setfilecon(install_path.c_str(), (security_context_t)context.c_str()) < 0) { |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 2066 | LOGERR("setfilecon %s error: %s\n", install_path.c_str(), strerror(errno)); |
| 2067 | goto exit; |
| 2068 | } |
Stefan Tauner | 6ad1457 | 2020-01-11 22:28:53 +0100 | [diff] [blame] | 2069 | |
| 2070 | // System apps require their permissions to be pre-set via an XML file in /etc/permissions |
| 2071 | string permission_path = base_path + "/etc/permissions/privapp-permissions-twrpapp.xml"; |
| 2072 | if (TWFunc::copy_file("/sbin/privapp-permissions-twrpapp.xml", permission_path, 0644)) { |
| 2073 | LOGERR("Error copying permission file\n"); |
| 2074 | goto exit; |
| 2075 | } |
| 2076 | if (chown(permission_path.c_str(), 1000, 1000)) { |
| 2077 | LOGERR("chown %s error: %s\n", permission_path.c_str(), strerror(errno)); |
| 2078 | goto exit; |
| 2079 | } |
| 2080 | if (setfilecon(permission_path.c_str(), (security_context_t)context.c_str()) < 0) { |
| 2081 | LOGERR("setfilecon %s error: %s\n", permission_path.c_str(), strerror(errno)); |
| 2082 | goto exit; |
| 2083 | } |
| 2084 | |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 2085 | sync(); |
| 2086 | sync(); |
Captain Throwback | 9d6feb5 | 2018-07-27 10:05:24 -0400 | [diff] [blame] | 2087 | PartitionManager.UnMount_By_Path(PartitionManager.Get_Android_Root_Path(), true); |
Ethan Yonker | b4bff5e | 2016-12-16 07:47:58 -0600 | [diff] [blame] | 2088 | op_status = 0; |
| 2089 | } else { |
| 2090 | LOGERR("Error making app directory '%s': %s\n", strerror(errno)); |
| 2091 | } |
| 2092 | } |
| 2093 | } |
| 2094 | } |
| 2095 | } else |
| 2096 | simulate_progress_bar(); |
| 2097 | exit: |
| 2098 | operation_end(0); |
| 2099 | return 0; |
| 2100 | } |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 2101 | |
Ethan Yonker | 76bbd3a | 2019-05-10 10:50:04 -0500 | [diff] [blame] | 2102 | int GUIAction::uninstalltwrpsystemapp(std::string arg __unused) |
| 2103 | { |
| 2104 | int op_status = 1; |
| 2105 | operation_start("Uninstall TWRP System App"); |
| 2106 | if (!simulate) |
| 2107 | { |
| 2108 | int Mount_System_RO = DataManager::GetIntValue("tw_mount_system_ro"); |
| 2109 | TWPartition* Part = PartitionManager.Find_Partition_By_Path(PartitionManager.Get_Android_Root_Path()); |
| 2110 | if (!Part) { |
| 2111 | LOGERR("Unabled to find system partition.\n"); |
| 2112 | goto exit; |
| 2113 | } |
| 2114 | if (!Part->UnMount(true)) { |
| 2115 | goto exit; |
| 2116 | } |
| 2117 | if (Mount_System_RO > 0) { |
| 2118 | DataManager::SetValue("tw_mount_system_ro", 0); |
| 2119 | Part->Change_Mount_Read_Only(false); |
| 2120 | } |
| 2121 | if (Part->Mount(true)) { |
| 2122 | string base_path = PartitionManager.Get_Android_Root_Path(); |
| 2123 | if (TWFunc::Path_Exists(PartitionManager.Get_Android_Root_Path() + "/system")) |
| 2124 | base_path += "/system"; // For devices with system as a root file system (e.g. Pixel) |
| 2125 | string uninstall_path = base_path + "/priv-app"; |
| 2126 | if (!TWFunc::Path_Exists(uninstall_path)) |
| 2127 | uninstall_path = base_path + "/app"; |
| 2128 | uninstall_path += "/twrpapp"; |
| 2129 | if (TWFunc::Path_Exists(uninstall_path)) { |
| 2130 | LOGINFO("Uninstalling TWRP App from '%s'\n", uninstall_path.c_str()); |
| 2131 | if (TWFunc::removeDir(uninstall_path, false) == 0) { |
| 2132 | sync(); |
| 2133 | op_status = 0; |
| 2134 | DataManager::SetValue("tw_app_installed_in_system", 0); |
| 2135 | DataManager::SetValue("tw_app_install_status", 0); |
| 2136 | } else { |
| 2137 | LOGERR("Unable to remove TWRP app from system.\n"); |
| 2138 | } |
| 2139 | } else { |
| 2140 | LOGINFO("didn't find TWRP app in '%s'\n", uninstall_path.c_str()); |
| 2141 | } |
| 2142 | } |
| 2143 | Part->UnMount(true); |
| 2144 | if (Mount_System_RO > 0) { |
| 2145 | DataManager::SetValue("tw_mount_system_ro", Mount_System_RO); |
| 2146 | Part->Change_Mount_Read_Only(true); |
| 2147 | } |
| 2148 | } else |
| 2149 | simulate_progress_bar(); |
| 2150 | exit: |
| 2151 | operation_end(0); |
| 2152 | return 0; |
| 2153 | } |
| 2154 | |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 2155 | int GUIAction::repackimage(std::string arg __unused) |
| 2156 | { |
| 2157 | int op_status = 1; |
| 2158 | operation_start("Repack Image"); |
| 2159 | if (!simulate) |
| 2160 | { |
| 2161 | std::string path = DataManager::GetStrValue("tw_filename"); |
| 2162 | Repack_Options_struct Repack_Options; |
| 2163 | Repack_Options.Disable_Verity = false; |
| 2164 | Repack_Options.Disable_Force_Encrypt = false; |
| 2165 | Repack_Options.Backup_First = DataManager::GetIntValue("tw_repack_backup_first") != 0; |
| 2166 | if (DataManager::GetIntValue("tw_repack_kernel") == 1) |
| 2167 | Repack_Options.Type = REPLACE_KERNEL; |
| 2168 | else |
| 2169 | Repack_Options.Type = REPLACE_RAMDISK; |
| 2170 | if (!PartitionManager.Repack_Images(path, Repack_Options)) |
| 2171 | goto exit; |
| 2172 | } else |
| 2173 | simulate_progress_bar(); |
| 2174 | op_status = 0; |
| 2175 | exit: |
| 2176 | operation_end(op_status); |
| 2177 | return 0; |
| 2178 | } |
| 2179 | |
| 2180 | int GUIAction::fixabrecoverybootloop(std::string arg __unused) |
| 2181 | { |
| 2182 | int op_status = 1; |
| 2183 | operation_start("Repack Image"); |
| 2184 | if (!simulate) |
| 2185 | { |
| 2186 | if (!TWFunc::Path_Exists("/sbin/magiskboot")) { |
| 2187 | LOGERR("Image repacking tool not present in this TWRP build!"); |
| 2188 | goto exit; |
| 2189 | } |
| 2190 | DataManager::SetProgress(0); |
| 2191 | TWPartition* part = PartitionManager.Find_Partition_By_Path("/boot"); |
| 2192 | if (part) |
| 2193 | gui_msg(Msg("unpacking_image=Unpacking {1}...")(part->Display_Name)); |
| 2194 | else { |
| 2195 | gui_msg(Msg(msg::kError, "unable_to_locate=Unable to locate {1}.")("/boot")); |
| 2196 | goto exit; |
| 2197 | } |
| 2198 | if (!PartitionManager.Prepare_Repack(part, REPACK_ORIG_DIR, DataManager::GetIntValue("tw_repack_backup_first") != 0, gui_lookup("repack", "Repack"))) |
| 2199 | goto exit; |
| 2200 | DataManager::SetProgress(.25); |
| 2201 | gui_msg("fixing_recovery_loop_patch=Patching kernel..."); |
Mohd Faraz | b98b4f7 | 2020-05-10 04:18:30 +0530 | [diff] [blame] | 2202 | std::string command = "cd " REPACK_ORIG_DIR " && /sbin/magiskboot hexpatch kernel 77616E745F696E697472616D667300 736B69705F696E697472616D667300"; |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 2203 | if (TWFunc::Exec_Cmd(command) != 0) { |
| 2204 | gui_msg(Msg(msg::kError, "fix_recovery_loop_patch_error=Error patching kernel.")); |
| 2205 | goto exit; |
| 2206 | } |
| 2207 | std::string header_path = REPACK_ORIG_DIR; |
| 2208 | header_path += "header"; |
| 2209 | if (TWFunc::Path_Exists(header_path)) { |
| 2210 | 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"; |
| 2211 | if (TWFunc::Exec_Cmd(command) != 0) { |
| 2212 | gui_msg(Msg(msg::kError, "fix_recovery_loop_patch_error=Error patching kernel.")); |
| 2213 | goto exit; |
| 2214 | } |
| 2215 | } |
| 2216 | DataManager::SetProgress(.5); |
| 2217 | gui_msg(Msg("repacking_image=Repacking {1}...")(part->Display_Name)); |
Mohd Faraz | b98b4f7 | 2020-05-10 04:18:30 +0530 | [diff] [blame] | 2218 | command = "cd " REPACK_ORIG_DIR " && /sbin/magiskboot repack " REPACK_ORIG_DIR "boot.img"; |
Ethan Yonker | 53796e7 | 2019-01-11 22:49:52 -0600 | [diff] [blame] | 2219 | if (TWFunc::Exec_Cmd(command) != 0) { |
| 2220 | gui_msg(Msg(msg::kError, "repack_error=Error repacking image.")); |
| 2221 | goto exit; |
| 2222 | } |
| 2223 | DataManager::SetProgress(.75); |
| 2224 | std::string path = REPACK_ORIG_DIR; |
| 2225 | std::string file = "new-boot.img"; |
| 2226 | DataManager::SetValue("tw_flash_partition", "/boot;"); |
| 2227 | if (!PartitionManager.Flash_Image(path, file)) { |
| 2228 | LOGINFO("Error flashing new image\n"); |
| 2229 | goto exit; |
| 2230 | } |
| 2231 | DataManager::SetProgress(1); |
| 2232 | TWFunc::removeDir(REPACK_ORIG_DIR, false); |
| 2233 | } else |
| 2234 | simulate_progress_bar(); |
| 2235 | op_status = 0; |
| 2236 | exit: |
| 2237 | operation_end(op_status); |
| 2238 | return 0; |
| 2239 | } |