-
Notifications
You must be signed in to change notification settings - Fork 38
/
adbstatethread.cpp
244 lines (209 loc) · 7.79 KB
/
adbstatethread.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
#include "adbstatethread.hpp"
#include <QtCore/QProcess>
#include <QtCore/QProcessEnvironment>
#include <QtCore/QFile>
#include <QtCore/QDir>
#include <cassert>
#include <QtDebug>
#include <QtCore/QThread>
#include "bhj_help.hpp"
#include "wrench.h"
#include <QTime>
AdbStateThread::AdbStateThread(QObject* parent)
: QThread(parent)
{
pingReplyOK = false;
pingSocket = NULL;
mAdbInput = NULL;
mAdbInputFinished = false;
mConnectTimer = NULL;
}
AdbStateThread::~AdbStateThread()
{
}
void AdbStateThread::onInputDataReady()
{
qDebug() << mAdbInput->getSock()->readAll();
}
void AdbStateThread::canPingInputServer()
{
}
void AdbStateThread::timeOut()
{
}
void AdbStateThread::inputServerFinished()
{
mAdbInputFinished = true;
}
void AdbStateThread::onDisconnected()
{
if (!mConnectTimer) {
mConnectTimer = new QTimer();
mConnectTimer->setSingleShot(true);
connect(mConnectTimer, SIGNAL(timeout()), this, SLOT(onDisconnected()));
}
// at the start, suppose the adb not connected.
QStringList args1 = QStringList() << "sh" << "-c" << "if test \"$(getprop sys.boot_completed)\" = 1; then { echo -n Lin && echo -n ux; }; fi";
QStringList uname_and_error = AdbClient::doAdbShellWithStderr(shell_quote(args1));
QString uname = uname_and_error[0];
static QString lastAdbState;
emit adbStateUpdate("Offline");
if (!uname.contains("Linux")) {
if (uname_and_error.length() > 1) {
emit adbStateInfo("adb", uname_and_error[1]);
}
if (lastAdbState != "Offline") {
qDebug() << "uname: " << uname;
}
lastAdbState = "Offline";
mConnectTimer->start(1000);
return;
}
if (lastAdbState != "Online") {
lastAdbState = "Online";
}
if (pingSocket) {
delete pingSocket;
pingReplyOK = false;
}
pingSocket = new QTcpSocket();
if (!mAdbInput || mAdbInput && mAdbInputFinished) {
if (mAdbInput) {
delete mAdbInput;
mAdbInput = NULL;
}
QString res = AdbClient::doAdbShell("rm /sdcard/setclip-apk.txt;"
"am startservice --user 0 -n com.bhj.setclip/.PutClipService --ei getapk 1;"
"for x in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do "
"if test -e /sdcard/setclip-apk.txt; then echo -n ye && echo s; break; fi; sleep .1; done");
if (!res.contains("yes")) {
res = AdbClient::doAdbShell("rm /sdcard/setclip-apk.txt;"
"am start -n com.bhj.setclip/.MainActivity;"
"am startservice --user 0 -n com.bhj.setclip/.PutClipService --ei getapk 1;"
"for x in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do "
"if test -e /sdcard/setclip-apk.txt; then echo -n ye && echo s; break; fi; sleep .1; done");
}
if (!res.contains("yes")) {
emit adbStateInfo("prompt", "需要重新安装小扳手辅助apk,请允许");
if (!AdbClient::doAdbPush("Setclip.apk", "/data/local/tmp/Setclip.apk")) {
emit adbStateInfo("info", "无法上传小扳手辅助apk");
mConnectTimer->start(1000);
return;
}
QString res = AdbClient::doAdbShell("pm install -r /data/local/tmp/Setclip.apk");
if (!res.contains("Success")) {
if (res.contains("INSTALL_FAILED_UNKNOWN_SOURCES")) {
emit adbStateInfo("prompt",
"安装小扳手辅助apk失败,请检查手机安全设置是否禁止通过USB安装:\n\n"
"(在Smartisan手机上,打开:设置->安全中心->高级设置->应用程序安装来源管理,勾选“未知来源”)\n\n"
+ res);
} else {
emit adbStateInfo("prompt", "安装小扳手辅助apk失败,请检查手机安全设置是否禁止通过USB安装:\n\n" + res);
}
mConnectTimer->start(1000);
return;
} else {
emit adbStateInfo("info", "小扳手辅助apk安装成功");
}
}
mAdbInput = AdbClient::doAdbPipe("if test -e /sdcard/setclip-apk.txt; then sh /sdcard/setclip-apk.txt app_process /system/bin/ com.Wrench.Input 2>/dev/null; else echo apk not found?; fi");
mAdbInputFinished = false;
connect(mAdbInput->getSock(), SIGNAL(readyRead()), this, SLOT(onInputDataReady()));
connect(mAdbInput->getSock(), SIGNAL(readChannelFinished()), this, SLOT(inputServerFinished()));
}
QString adb_serial = AdbClient::getAdbSerial();
if (adb_serial.isEmpty()) {
AdbClient::doAdbForward("host:forward:tcp:28888;localabstract:Wrench");
} else {
AdbClient::doAdbForward("host-serial:" + adb_serial + ":forward:tcp:28888;localabstract:Wrench");
}
pingSocket->connectToHost("127.0.0.1", 28888 + QProcessEnvironment::systemEnvironment().value("WRENCH_INSTANCE", "0").toInt(), QIODevice::ReadWrite);
if (!pingSocket->waitForConnected()) {
qDebug() << "can't connect ping";
mConnectTimer->start(1000);
return;
}
if (!_writex(*pingSocket, "ping\n", 5)) {
qDebug() << "Can't write ping";
mConnectTimer->start(1000);
return;
}
if (!pingSocket->waitForReadyRead(500)) {
qDebug() << "Can't wait for read from adb input server\n";
mConnectTimer->start(1000);
return;
} else {
qDebug() << "Ping adb input server ok";
}
if (QString(pingSocket->readLine(100)).contains("input ok")) {
emit adbStateUpdate("Online");
connect(pingSocket, SIGNAL(readChannelFinished()), this, SLOT(onDisconnected()), Qt::QueuedConnection);
} else {
qDebug() << "Can't read";
mConnectTimer->start(1000);
return;
}
}
void die(const char* how)
{
fprintf(stderr, "%s\n", how);
exit(1);
}
QString getExecutionOutput(const QString& cmd, const QStringList& args)
{
QProcess p;
p.setStandardOutputFile(QDir::temp().filePath(QString().sprintf("adb-state-repair-center.%lx", long(QThread::currentThreadId()))));
p.setStandardErrorFile(QDir::temp().filePath(QString().sprintf("adb-state-repair-center.%lx", long(QThread::currentThreadId()))));
p.start(cmd, args);
if (!p.waitForFinished(-1)) {
p.kill();
p.waitForFinished();
} else {
QFile result(QDir::temp().filePath(QString().sprintf("adb-state-repair-center.%lx", long(QThread::currentThreadId()))));
result.open(QIODevice::ReadOnly);
QString ret = result.readAll();
ret.replace("\r", "");
while (ret.endsWith("\n")) {
ret.chop(1);
}
result.close();
result.remove();
return ret;
}
return "";
}
QString shell_quote(const QString& str)
{
QString res = str;
res.replace("'", "'\\''");
res = "'" + res + "'";
return res;
}
QStringList shell_quote(const QStringList& args)
{
QStringList qargs;
foreach (const QString& arg, args) {
qargs << shell_quote(arg);
}
return qargs;
}
QString adb_quote_shell(const QStringList& args)
{
return AdbClient::doAdbShell(shell_quote(args));
}
QString getExecutionOutput(const QString& cmd)
{
if (cmd.contains(" ")) {
QStringList args = cmd.split(" ");
QString new_cmd = args.front();
args.pop_front();
return getExecutionOutput(new_cmd, args);
} else
return getExecutionOutput(cmd, QStringList());
}
void AdbStateThread::run()
{
this->moveToThread(this);
onDisconnected();
exec();
}