summaryrefslogtreecommitdiffstats
path: root/Plugins/DbAndroid/dbandroidjsonconnection.cpp
blob: 2c0023fc03d36486f69bc225a440ccb85c3fca65 (plain) (blame)
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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
#include "dbandroidjsonconnection.h"
#include "dbandroid.h"
#include "adbmanager.h"
#include "services/notifymanager.h"
#include "common/blockingsocket.h"
#include "db/sqlerrorcodes.h"
#include <QJsonObject>
#include <QJsonArray>
#include <QtConcurrent/QtConcurrent>

DbAndroidJsonConnection::DbAndroidJsonConnection(DbAndroid* plugin, QObject *parent) :
    DbAndroidConnection(parent), plugin(plugin)
{
    socket = new BlockingSocket(this);
    adbManager = plugin->getAdbManager();
    connect(socket, SIGNAL(disconnected()), this, SLOT(handlePossibleDisconnection()));
}

DbAndroidJsonConnection::~DbAndroidJsonConnection()
{
    cleanUp();
}

bool DbAndroidJsonConnection::connectToAndroid(const DbAndroidUrl& url)
{
    if (isConnected())
    {
        qWarning() << "Already connected while calling DbAndroidConnection::connect().";
        return false;
    }

    dbUrl = url;
    mode = url.getMode();

    switch (mode)
    {
        case DbAndroidMode::NETWORK:
            return connectToNetwork();
        case DbAndroidMode::USB:
            return connectToDevice();
        case DbAndroidMode::SHELL:
            qCritical() << "SHELL mode encountered in DbAndroidJsonConnection";
            break;
        case DbAndroidMode::null:
            qCritical() << "Null mode encountered in DbAndroidJsonConnection";
            break;
    }

    qCritical() << "Invalid Android db mode while connecting:" << static_cast<int>(mode);
    return false;
}

void DbAndroidJsonConnection::disconnectFromAndroid()
{
    socket->disconnectFromHost();
    connectedState = false;
}

bool DbAndroidJsonConnection::isConnected() const
{
    if (!socket)
        return false;

    return connectedState;
}

QByteArray DbAndroidJsonConnection::send(const QByteArray& data)
{
    QByteArray bytes = sizeToBytes(data.size());
    bytes.append(data);
    return sendBytes(bytes);
}

QString DbAndroidJsonConnection::getDbName() const
{
    return dbUrl.getDbName();
}

QByteArray DbAndroidJsonConnection::sendBytes(const QByteArray& data)
{
    //qDebug() << "Sending" << data;
    bool success = socket->send(data);
    if (!success)
    {
        qCritical() << "Error writing bytes to Android socket:" << socket->getErrorText();
        return QByteArray();
    }

    QByteArray sizeBytes = socket->read(4, 5000, &success);
    if (!success)
    {
        qCritical() << "Error reading response size from Android socket:" << socket->getErrorText();
        return QByteArray();
    }

    qint32 size = bytesToSize(sizeBytes);
    QByteArray responseBytes = socket->read(size, 5000, &success);
    if (!success)
    {
        qCritical() << "Error reading response from Android socket:" << socket->getErrorText();
        return QByteArray();
    }
    //qDebug() << "Received" << responseBytes;
    return responseBytes;
}

void DbAndroidJsonConnection::handleSocketError()
{
    qWarning() << "Blocking socket error in Android connection:" << socket->getErrorText();
    handlePossibleDisconnection();
}

void DbAndroidJsonConnection::handlePossibleDisconnection()
{
    if (connectedState && !socket->isConnected())
    {
        connectedState = false;
        emit disconnected();
    }
}

QByteArray DbAndroidJsonConnection::sizeToBytes(qint32 size)
{
    QByteArray bytes;
    for (int i = 0; i < 4; i++)
        bytes.append((size >> (8*i)) & 0xff);

    return bytes;
}

qint32 DbAndroidJsonConnection::bytesToSize(const QByteArray& bytes)
{
    int size = (((unsigned char)bytes[3]) << 24) |
            (((unsigned char)bytes[2]) << 16) |
            (((unsigned char)bytes[1]) << 8) |
            ((unsigned char)bytes[0]);

    return size;
}

QVariant DbAndroidJsonConnection::convertJsonValue(const QJsonValue& value)
{
    if (value.isArray())
    {
        // BLOB
        QJsonArray blobContainer = value.toArray();
        if (blobContainer.size() < 1)
        {
            qCritical() << "Invalid blob value from Android - empty array.";
            return QByteArray();
        }

        return convertBlob(blobContainer.first().toString());
    }

    // Regular value
    return value.toVariant();
}

bool DbAndroidJsonConnection::connectToNetwork()
{
    if (!dbUrl.isHostValid())
        return false;

    return connectToTcp(dbUrl.getHost(), dbUrl.getPort());
}

bool DbAndroidJsonConnection::connectToDevice()
{
    if (!plugin->isAdbValid())
        return false;

    if (!plugin->getAdbManager()->getDevices().contains(dbUrl.getDevice()))
    {
        notifyWarn(tr("Cannot connect to device %1, because it's not visible to your computer.").arg(dbUrl.getDevice()));
        return false;
    }

    int localPort = plugin->getAdbManager()->makeForwardFor(dbUrl.getDevice(), dbUrl.getPort());
    if (localPort < 0)
    {
        notifyError(tr("Failed to create port forwarding for device %1 for port %2.")
                    .arg(dbUrl.getDevice(), QString::number(dbUrl.getPort())));
        return false;
    }

    return connectToTcp("127.0.0.1", localPort);
}

bool DbAndroidJsonConnection::connectToTcp(const QString& ip, int port)
{
    bool success = socket->connectToHost(ip, port);
    if (!success)
    {
        qWarning() << "Could not connect to network host for Android DB:" << ip << ":" << port <<  ", details:" << socket->getErrorText();
        notifyWarn(tr("Could not connect to network host: %1:%2").arg(ip, QString::number(port)));
        return false;
    }

    connectedState = true;

    // Authenticate
    QString pass = dbUrl.getPassword();
    if (!pass.isEmpty())
    {
        static_qstring(passPharse, "{auth:\"%1\"}");
        QByteArray response = send(passPharse.arg(pass.replace("\"", "\\\"")).toUtf8());
        if (response != PASS_RESPONSE_OK)
        {
            notifyWarn(tr("Cannot connect to %1:%2, because password is invalid.").arg(ip, QString::number(port)));
            handleConnectionFailed();
            return false;
        }
    }

    return true;
}

void DbAndroidJsonConnection::handleConnectionFailed()
{
    connectedState = false;
    socket->disconnectFromHost();
}

void DbAndroidJsonConnection::cleanUp()
{
    disconnectFromAndroid();
    safe_delete(socket);
}

QStringList DbAndroidJsonConnection::getDbList()
{
    if (!isConnected())
    {
        qWarning() << "Called DbAndroidJsonConnection::getDbList() on closed connection.";
        return QStringList();
    }

    QByteArray result = send(LIST_CMD);
    return handleDbListResult(result);
}

QStringList DbAndroidJsonConnection::getAppList()
{
    return QStringList();
}

bool DbAndroidJsonConnection::isAppOkay() const
{
    return true;
}

QStringList DbAndroidJsonConnection::handleDbListResult(const QByteArray& results)
{
    QJsonParseError jsonError;
    QJsonDocument jsonResponse = QJsonDocument::fromJson(results, &jsonError);
    if (jsonError.error != QJsonParseError::NoError)
    {
        qCritical() << "Error while parsing response from Android:" << jsonError.errorString();
        return QStringList();
    }

    QJsonObject responseObject = jsonResponse.object();
    if (responseObject.contains("generic_error"))
    {
        qCritical() << "Generic error from Android:" << responseObject["generic_error"].toInt();
        return QStringList();
    }

    if (!responseObject.contains("list"))
    {
        qCritical() << "Missing 'list' in response from Android.";
        return QStringList();
    }

    QStringList dbNames;
    for (const QVariant& name : responseObject["list"].toArray().toVariantList())
        dbNames << name.toString();

    return dbNames;
}

bool DbAndroidJsonConnection::deleteDatabase(const QString& dbName)
{
    if (!isConnected())
    {
        qWarning() << "Called DbAndroidConnection::deleteDatabase() on closed database.";
        return false;
    }

    QByteArray result = send(QString(DELETE_DB_CMD).arg(dbName).toUtf8());
    return handleStdResult(result);
}

DbAndroidConnection::ExecutionResult DbAndroidJsonConnection::executeQuery(const QString& query)
{
    DbAndroidConnection::ExecutionResult executionResults;
    if (!isConnected())
    {
        executionResults.wasError = true;
        executionResults.errorMsg = tr("Unable to execute query on Android device (connection was closed): %1").arg(query);
        return executionResults;
    }

    QJsonDocument json = wrapQueryInJson(query);
    QByteArray responseBytes = send(json.toJson(QJsonDocument::Compact));

    QJsonParseError jsonError;
    QJsonDocument jsonResponse = QJsonDocument::fromJson(responseBytes, &jsonError);
    if (jsonError.error != QJsonParseError::NoError)
    {
        executionResults.wasError = true;
        executionResults.errorMsg = tr("Error while parsing response from Android: %1").arg(jsonError.errorString());
        return executionResults;
    }

    QJsonObject responseObject = jsonResponse.object();
    if (responseObject.contains("generic_error"))
    {
        executionResults.wasError = true;
        executionResults.errorMsg = tr("Generic error from Android: %1").arg(responseObject["generic_error"].toInt());
        return executionResults;
    }

    if (responseObject.contains("error_code"))
    {
        executionResults.errorCode = responseObject["error_code"].toInt();
        executionResults.errorMsg = responseObject["error_message"].toString();
        return executionResults;
    }

    if (!responseObject.contains("columns"))
    {
        executionResults.wasError = true;
        executionResults.errorMsg = tr("Missing 'columns' in response from Android.");
        return executionResults;
    }

    if (!responseObject.contains("data"))
    {
        executionResults.wasError = true;
        executionResults.errorMsg = tr("Missing 'columns' in response from Android.");
        return executionResults;
    }

    for (const QVariant& col : responseObject["columns"].toArray().toVariantList())
        executionResults.resultColumns << col.toString();

    QJsonArray jsonRows = responseObject["data"].toArray();
    QJsonObject jsonRow;
    QJsonValue jsonValue;
    QVariantHash rowAsMap;
    QVariantList rowAsList;
    QVariant cellValue;
    for (int i = 0, total = jsonRows.size(); i < total; ++i)
    {
        jsonRow = jsonRows[i].toObject();
        for (const QString& colName : executionResults.resultColumns)
        {
            if (!jsonRow.contains(colName))
            {
                executionResults.wasError = true;
                executionResults.errorMsg = tr("Response from Android has missing data for column '%1' in row %2.").arg(colName, QString::number(i+1));
                return executionResults;
            }

            jsonValue = jsonRow[colName];
            cellValue = convertJsonValue(jsonValue);
            rowAsMap[colName] = cellValue;
            rowAsList << cellValue;
        }

        executionResults.resultDataMap << rowAsMap;
        executionResults.resultDataList << rowAsList;

        rowAsMap.clear();
        rowAsList.clear();
    }

    return executionResults;
}

QJsonDocument DbAndroidJsonConnection::wrapQueryInJson(const QString& query)
{
    QJsonDocument doc;

    QJsonObject rootObj;
    rootObj["cmd"] = "QUERY";
    rootObj["db"] = dbUrl.getDbName();
    rootObj["query"] = query;

    doc.setObject(rootObj);
    return doc;
}

bool DbAndroidJsonConnection::handleStdResult(const QByteArray& results)
{
    QJsonParseError jsonError;
    QJsonDocument jsonResponse = QJsonDocument::fromJson(results, &jsonError);
    if (jsonError.error != QJsonParseError::NoError)
    {
        qCritical() << "Error while parsing response from Android:" << jsonError.errorString();
        return false;
    }

    QJsonObject responseObject = jsonResponse.object();
    if (responseObject.contains("generic_error"))
    {
        qCritical() << "Generic error from Android:" << responseObject["generic_error"].toInt();
        return false;
    }

    if (!responseObject.contains("result"))
    {
        qCritical() << "Missing 'result' in response from Android.";
        return false;
    }

    return (responseObject["result"].toString() == "ok");
}