forked from rovo89/Xposed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xposed_safemode.cpp
332 lines (279 loc) · 11.5 KB
/
xposed_safemode.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
/*
* Detects input combinations for recovering from bootloops.
*
* The safemode trigger is detected if exactly one of the physical keys is pressed in
* the first 2 seconds after detection startup (or already held down), and a total of
* 5 consecutive presses of that same key are performed in the subsequent 5 seconds.
*
* 2 short vibrations are performed when the first key is pressed; an additional
* vibration is performed for each subsequent press of the same key, and a final
* long vibration is performed if the trigger was successful.
*
* The initial 2-second delay can be disabled through configuration; in that case,
* one of the keys must already be pressed when the detection starts, otherwise
* the detection fails and no delays are introduced.
*
* References:
* /frameworks/base/services/input/EventHub.cpp (AOSP)
* /include/uapi/linux/input.h (Linux)
* Using the Input Subsystem, Linux Journal
*/
#include "xposed_safemode.h"
#include <dirent.h>
#include <fcntl.h>
#include <linux/input.h>
#include <sys/epoll.h>
#include <time.h>
#include <stdio.h>
#define INITIAL_DELAY 2
#define DETECTION_TIMEOUT 5
#define DETECTION_PRESSES 5
#define VIBRATOR_CONTROL "/sys/class/timed_output/vibrator/enable"
#define VIBRATION_SHORT 150
#define VIBRATION_LONG 500
#define VIBRATION_INTERVAL 200
static const char *DEVICE_PATH = "/dev/input";
#define MAX_DEVICES 4
#define test_bit(bit, array) (array[bit/8] & (1<<(bit%8)))
static const int physical_keycodes[] = { KEY_VOLUMEDOWN, KEY_VOLUMEUP, KEY_POWER,
KEY_HOME, KEY_BACK, KEY_MENU, KEY_CAMERA };
static void vibrate(int count, int duration_ms, int interval_ms) {
int fd;
int len;
char value[30];
if ((fd = open(VIBRATOR_CONTROL, O_RDWR)) < 0)
// Failed to open the control file, ignore it
return;
len = sprintf(value, "%d\n", duration_ms);
for (int i = 0; i < count; i++) {
if (i != 0)
// Pause between the several vibrations
usleep((duration_ms + interval_ms) * 1000);
// Vibrate (asynchronously)
write(fd, value, len);
}
close(fd);
}
/*
* Enumerates the existing input devices and opens handles for the ones that
* report the relevant keys.
*
* Arguments:
* - *fds: is filled on output with the file handles for the opened devices
* - max_fds: maximum available entries in the fds array
* - *pressedKey: is filled on output with
* 0 if no key was found being held down at this instant
* -1 if more than one key was found being held down
* id of the pressed key, if only a single one was being held down
* Returns:
* - the number of opened device handles, filled in the *fds output parameter
* - 0 if no devices were opened
*/
static int openKeyDevices(int *fds, int max_fds, int *pressedKey) {
char devname[PATH_MAX];
char *filename;
DIR *dir;
struct dirent *de;
int count = 0;
// No key was detected as pressed, for the moment
*pressedKey = 0;
dir = opendir(DEVICE_PATH);
if(dir == NULL)
return 0;
strcpy(devname, DEVICE_PATH);
filename = devname + strlen(devname);
*filename++ = '/';
while (count < max_fds && (de = readdir(dir))) {
// Skip '.' and '..'
if(de->d_name[0] == '.' &&
(de->d_name[1] == '\0' ||
(de->d_name[1] == '.' && de->d_name[2] == '\0')))
continue;
strcpy(filename, de->d_name);
int fd = open(devname, O_RDWR | O_CLOEXEC);
if(fd < 0)
// Skip files that could not be opened
continue;
// Check if this device reports one of the relevant keys
uint8_t keyBitmask[(KEY_MAX + 1) / 8];
memset(keyBitmask, 0, sizeof(keyBitmask));
ioctl(fd, EVIOCGBIT(EV_KEY, sizeof(keyBitmask)), keyBitmask);
bool reportsKeys = false;
for (size_t i = 0; i < sizeof(physical_keycodes) / sizeof(physical_keycodes[0]); i++) {
if (test_bit(physical_keycodes[i], keyBitmask)) {
reportsKeys = true;
break;
}
}
if (!reportsKeys) {
// This device doesn't report any of the relevant keys
// Skip to the next one
close(fd);
continue;
}
fds[count++] = fd;
// Check if one of the keys is currently pressed on this device, to report it to the caller
memset(keyBitmask, 0, sizeof(keyBitmask));
ioctl(fd, EVIOCGKEY(sizeof(keyBitmask)), keyBitmask);
for (size_t i = 0; i < sizeof(physical_keycodes) / sizeof(physical_keycodes[0]); i++) {
if (test_bit(physical_keycodes[i], keyBitmask)) {
// One of the relevant keys was detected as held down
// We'll report it to be pressed, but only if there isn't more than one key being pressed
if (*pressedKey == 0) {
// No key was being pressed, this one will be reported
*pressedKey = physical_keycodes[i];
} else {
// Another key was already found to be pressed, report multiple keys to the caller
*pressedKey = -1;
break;
}
}
}
}
closedir(dir);
return count;
}
/*
* Computes the remaining time, in ms, from the current time to the supplied expiration moment
*/
int getRemainingTime(struct timespec expiration) {
struct timespec now;
clock_gettime(CLOCK_MONOTONIC, &now);
if (now.tv_sec > expiration.tv_sec)
return 0;
else
return (expiration.tv_sec - now.tv_sec) * 1000 + (expiration.tv_nsec - now.tv_nsec) / 1000000;
}
namespace xposed {
bool detectSafemodeTrigger(bool skipInitialDelay) {
int efd = -1;
int fds[MAX_DEVICES];
int deviceCount = 0;
int pressedKey = 0;
int triggerPresses = 0;
bool result = false;
// Open input devices that report one of the relevant physical keys
deviceCount = openKeyDevices(fds, sizeof(fds) / sizeof(fds[0]), &pressedKey);
if (deviceCount == 0)
// No input devices found, abort detection
goto leave;
if (pressedKey < 0)
// More than one key was initially pressed
// Immediately report a negative detection, with no further delays
goto leave;
if (pressedKey == 0 && skipInitialDelay)
// A single key wasn't held down and the initial delay is disabled
// Immediately report a negative detection, with no further delays
goto leave;
// Prepare waiting mechanism for received events in all devices
if ((efd = epoll_create(deviceCount)) < 0)
// Failed to create the epoll handle, abort
goto leave;
// Register each device descriptor in the epoll handle
struct epoll_event eventPollItems[MAX_DEVICES];
for (int i = 0; i < deviceCount; i++) {
memset(&eventPollItems[i], 0, sizeof(eventPollItems[i]));
eventPollItems[i].events = EPOLLIN;
eventPollItems[i].data.fd = fds[i];
if (epoll_ctl(efd, EPOLL_CTL_ADD, fds[i], &eventPollItems[i]))
// Failed to add device descriptor to the epoll handle, abort
goto leave;
}
int timeout_ms;
struct timespec expiration;
clock_gettime(CLOCK_MONOTONIC, &expiration);
expiration.tv_sec += INITIAL_DELAY;
// Wait up to INITIAL_DELAY seconds for an initial keypress, it no key was initially down
while (pressedKey == 0 && (timeout_ms = getRemainingTime(expiration)) > 0) {
// Wait for next input event in one of the opened devices
int pollResult = epoll_wait(efd, eventPollItems, sizeof(eventPollItems) / sizeof(eventPollItems[0]), timeout_ms);
if (pollResult < 0)
// Failed to wait for event, abort
goto leave;
// Loop through the opened devices where a new event is available
for (int i = 0; i < pollResult; i++) {
struct input_event evt;
int32_t readSize = read(eventPollItems[i].data.fd, &evt, sizeof(evt));
if (readSize != sizeof(evt))
// Invalid size read, ignore
continue;
if (evt.type != EV_KEY)
// Only consider key events
continue;
if (evt.value != 1)
// Ignore key releases, we're monitoring presses
continue;
for (size_t j = 0; j < sizeof(physical_keycodes) / sizeof(physical_keycodes[0]); j++) {
if (evt.code == physical_keycodes[j]) {
// One of the keys was pressed, end the initial detection
// No need to check for duplicate keys, as the events are reported sequentially
// and multiple presses can't be reported at once
pressedKey = evt.code;
break;
}
}
}
}
if (pressedKey == 0)
// No key was pressed during the initial delay or upfront, so the detection has failed
goto leave;
// Notify the user that the safemode sequence has been started and we're waiting for
// the remaining key presses
vibrate(2, VIBRATION_SHORT, VIBRATION_INTERVAL);
// Detection will wait at most DETECTION_TIMEOUT seconds
clock_gettime(CLOCK_MONOTONIC, &expiration);
expiration.tv_sec += DETECTION_TIMEOUT;
// Initial key press is counted as well
triggerPresses++;
// Loop waiting for the same key to be pressed the appropriate number of times, a different key to
// be pressed, or the timeout to be reached
while (triggerPresses < DETECTION_PRESSES && (timeout_ms = getRemainingTime(expiration)) > 0) {
// Wait for next input event
int pollResult = epoll_wait(efd, eventPollItems, sizeof(eventPollItems) / sizeof(eventPollItems[0]), timeout_ms);
if (pollResult < 0)
// Failed to wait for event, abort
goto leave;
// Loop through the opened devices where a new event is available
for (int i = 0; i < pollResult; i++) {
struct input_event evt;
int32_t readSize = read(eventPollItems[i].data.fd, &evt, sizeof(evt));
if (readSize != sizeof(evt))
// Invalid size read, ignore
continue;
if (evt.type != EV_KEY)
// Only consider key events
continue;
if (evt.value != 1)
// Ignore key releases, we're monitoring presses
continue;
for (size_t j = 0; j < sizeof(physical_keycodes) / sizeof(physical_keycodes[0]); j++) {
if (evt.code == physical_keycodes[j]) {
if (pressedKey == evt.code) {
// The same key was pressed again, increment the counter and notify the user
triggerPresses++;
// The final key press will be confirmed with a long vibration later
if (triggerPresses < DETECTION_PRESSES)
vibrate(1, VIBRATION_SHORT, 0);
} else {
// A key was pressed other than the initial one
// Abort the detection and avoid further delays
goto leave;
}
break;
}
}
}
}
// Was safemode successfully triggered?
if (triggerPresses >= DETECTION_PRESSES) {
vibrate(1, VIBRATION_LONG, 0);
result = true;
}
leave:
if (efd >= 0)
close(efd);
for (int i = 0; i < deviceCount; i++)
close(fds[i]);
return result;
}
}