summaryrefslogtreecommitdiffstats
path: root/src/qtdevicesettings/networksettingsplugin/networksettings/wpasupplicant/qwifisupplicant.cpp
blob: 779475e86d9c12a593c38e5884558a0ccc143d3c (plain)
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc
** All rights reserved.
** For any questions to Digia, please use the contact form at
** http://www.qt.io
**
** This file is part of Qt Enterprise Embedded.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** the contact form at http://www.qt.io
**
****************************************************************************/
#include "qwifisupplicant_p.h"
#include "qwifidevice.h"

#include <poll.h>
#include <unistd.h>
#include <sys/socket.h>
#include <errno.h>

#include <QtCore/QFile>
#include <QtCore/QProcess>

QT_BEGIN_NAMESPACE

Q_LOGGING_CATEGORY(B2QT_WIFI_VERBOSE, "qt.b2qt.wifi.verbose")

#define CONFIG_FILE "/etc/wpa_supplicant.qtwifi.conf"
#define CONTROL_INTERFACE_PATH "/var/run/wpa_supplicant/"

QWifiSupplicant::QWifiSupplicant(QObject *parent) :
    QObject(parent),
    ctrl_conn(0),
    monitor_conn(0),
    interface(QWifiDevice::wifiInterfaceName())
{
    createSupplicantConfig();
}

void QWifiSupplicant::createSupplicantConfig()
{
    QFile supplicantConfig(QLatin1String(CONFIG_FILE));
    if (supplicantConfig.exists())
        return;

    if (supplicantConfig.open(QIODevice::WriteOnly)) {
        supplicantConfig.write("ctrl_interface=" CONTROL_INTERFACE_PATH "\n"
                               "ctrl_interface_group=0\n"
                               "update_config=1\n");
    } else {
       emit raiseError(QLatin1String("failed to create wpa_supplicant configuration file."));
    }
}

bool QWifiSupplicant::startSupplicant()
{
    QString pidFile = QLatin1String("/var/run/wpa_supplicant." + interface + ".pid");
    QString driver(QStringLiteral("nl80211,wext"));

    QStringList arg;
    arg << QStringLiteral("--start") << QStringLiteral("--quiet") << QStringLiteral("--name");
    arg << QStringLiteral("wpa_supplicant") << QStringLiteral("--startas");
    arg << QStringLiteral("/usr/sbin/wpa_supplicant") << QStringLiteral("--pidfile") << pidFile;
    arg << QStringLiteral("--") << QStringLiteral("-B") << QStringLiteral("-P") << pidFile;
    arg << QStringLiteral("-i") << QLatin1String(interface) << QStringLiteral("-c");
    arg << QLatin1String(CONFIG_FILE) << QStringLiteral("-D") << driver;

    QProcess startStopDaemon;
    startStopDaemon.setProcessChannelMode(QProcess::MergedChannels);
    startStopDaemon.start(QStringLiteral("start-stop-daemon"), arg);
    if (!startStopDaemon.waitForStarted()) {
       emit raiseError(startStopDaemon.program() + QLatin1String(": ") + startStopDaemon.errorString());
        return false;
    }
    startStopDaemon.waitForFinished();
    // if the interface socket exists then wpa-supplicant was invoked successfully
    if (!QFile(QLatin1String(CONTROL_INTERFACE_PATH + interface)).exists()) {
       emit raiseError(QLatin1String("failed to invoke wpa_supplicant: "
                                                        + startStopDaemon.readAll()));
        return false;
    }
    // reset sockets used for exiting from hung state
    exit_sockets[0] = exit_sockets[1] = -1;
    return true;
}

bool QWifiSupplicant::stopSupplicant()
{
    QString pidFile = QLatin1String("/var/run/wpa_supplicant." + interface + ".pid");

    if (QFile(pidFile).exists()) {
        QStringList arg;
        arg << QStringLiteral("--stop") << QStringLiteral("--quiet") << QStringLiteral("--name");
        arg << QStringLiteral("wpa_supplicant") << QStringLiteral("--pidfile") << pidFile;

        QProcess startStopDaemon;
        startStopDaemon.start(QStringLiteral("start-stop-daemon"), arg);
        if (!startStopDaemon.waitForStarted()) {
           emit raiseError(startStopDaemon.program() + QLatin1String(": ") + startStopDaemon.errorString());
            return false;
        }
        startStopDaemon.waitForFinished();
        QByteArray error = startStopDaemon.readAllStandardError();
        if (!error.isEmpty()) {
           emit raiseError(QLatin1String("failed to stop a wpa_supplicant process" + error));
            return false;
        }

        QFile::remove(pidFile);
    }

    QFile::remove(QLatin1String(CONTROL_INTERFACE_PATH + interface));

    // workaround for QTEE-957
    QProcess killall;
    killall.start(QStringLiteral("killall"), QStringList() << QStringLiteral("-9") << QStringLiteral("wpa_supplicant"));
    killall.waitForFinished();

    return true;
}

/*! \internal
 *
    wpa_supplicant socket communication code (Apache License 2.0) with few modifications
    from https://android.googlesource.com/platform/hardware/libhardware_legacy/

 */
bool QWifiSupplicant::connectToSupplicant()
{
    static char path[4096];
    snprintf(path, sizeof(path), "%s/%s", CONTROL_INTERFACE_PATH, interface.constData());
    bool connected = true;

    ctrl_conn = wpa_ctrl_open(path);
    if (ctrl_conn == NULL) {
        qCWarning(B2QT_WIFI, "Unable to open connection to wpa_supplicant on \"%s\": %s",
                  path, strerror(errno));
        connected = false;
    }
    monitor_conn = wpa_ctrl_open(path);
    if (monitor_conn == NULL) {
        wpa_ctrl_close(ctrl_conn);
        ctrl_conn = NULL;
        connected = false;
    }
    if (wpa_ctrl_attach(monitor_conn) != 0) {
        wpa_ctrl_close(monitor_conn);
        wpa_ctrl_close(ctrl_conn);
        ctrl_conn = monitor_conn = NULL;
        connected = false;
    }

    if (socketpair(AF_UNIX, SOCK_STREAM, 0, exit_sockets) == -1) {
        wpa_ctrl_close(monitor_conn);
        wpa_ctrl_close(ctrl_conn);
        ctrl_conn = monitor_conn = NULL;
        connected = false;
    }

    if (!connected)
       emit raiseError(QLatin1String("failed to connect to wpa_supplicant"));
    return connected;
}

void QWifiSupplicant::closeSupplicantConnection()
{
    if (ctrl_conn != NULL) {
        wpa_ctrl_close(ctrl_conn);
        ctrl_conn = NULL;
    }

    if (monitor_conn != NULL) {
        wpa_ctrl_close(monitor_conn);
        monitor_conn = NULL;
    }

    if (exit_sockets[0] >= 0) {
        close(exit_sockets[0]);
        exit_sockets[0] = -1;
    }

    if (exit_sockets[1] >= 0) {
        close(exit_sockets[1]);
        exit_sockets[1] = -1;
    }
}

int QWifiSupplicant::waitForEvent(char *buf, size_t buflen)
{
    size_t nread = buflen - 1;
    int result;
    char *match, *match2;

    if (monitor_conn == NULL)
        return snprintf(buf, buflen, WPA_EVENT_TERMINATING " - connection closed");

    result = receiveEvent(buf, &nread);

    // Terminate reception on exit socket
    if (result == -2)
        return snprintf(buf, buflen, WPA_EVENT_TERMINATING " - connection closed");

    if (result < 0) {
        qCWarning(B2QT_WIFI, "receiveEvent failed: %s", strerror(errno));
        return snprintf(buf, buflen, WPA_EVENT_TERMINATING " - recv error");
    }

    buf[nread] = '\0';
    // Check for EOF on the socket
    if (result == 0 && nread == 0) {
        // Fabricate an event to pass up
        qCWarning(B2QT_WIFI, "Received EOF on supplicant socket");
        return snprintf(buf, buflen, WPA_EVENT_TERMINATING " - signal 0 received");
    }

    /*
     * Events strings are in the format
     *
     *     IFNAME=iface <N>CTRL-EVENT-XXX
     *        or
     *     <N>CTRL-EVENT-XXX
     *
     * where N is the message level in numerical form (0=VERBOSE, 1=DEBUG,
     * etc.) and XXX is the event name. The level information is not useful
     * to us, so strip it off.
     */

    if (strncmp(buf, "IFNAME=", (sizeof("IFNAME=") - 1)) == 0) {
        match = strchr(buf, ' ');
        if (match != NULL) {
            if (match[1] == '<') {
                match2 = strchr(match + 2, '>');
                if (match2 != NULL) {
                    nread -= (match2 - match);
                    memmove(match + 1, match2 + 1, nread - (match - buf) + 1);
                }
            }
        } else {
            return snprintf(buf, buflen, "%s", "CTRL-EVENT-IGNORE ");
        }
    } else if (buf[0] == '<') {
        match = strchr(buf, '>');
        if (match != NULL) {
            nread -= (match + 1 - buf);
            memmove(buf, match + 1, nread + 1);
            //qCWarning(B2QT_WIFI, "supplicant generated event without interface - %s", buf);
        }
    } else {
        // let the event go as is!
        qCWarning(B2QT_WIFI, "supplicant generated event without interface and without message level - %s", buf);
    }

    return nread;
}

bool QWifiSupplicant::sendCommand(const QString &command, QByteArray *reply)
{
    QByteArray cmd = command.toLocal8Bit();
    qCDebug(B2QT_WIFI) << "[command]: " << cmd;

    if (ctrl_conn == NULL) {
        qCWarning(B2QT_WIFI, "Not connected to wpa_supplicant");
        return false;
    }

    char data[8192];
    size_t len = sizeof(data) - 1; // -1: room to add a 0-terminator
    int ret = wpa_ctrl_request(ctrl_conn, cmd, strlen(cmd), data, &len, NULL);
    if (ret == -2) {
        qCWarning(B2QT_WIFI) << "command timed out";
        // unblocks the monitor receive socket for termination
        TEMP_FAILURE_RETRY(write(exit_sockets[0], "T", 1));
        return false;
    } else if (ret < 0 || strncmp(data, "FAIL", 4) == 0) {
        return false;
    }

    if (len == sizeof(data) - 1) {
        qCWarning(B2QT_WIFI) << "possible buffer overflow detected";
        return false;
    }

    data[len] = 0;
    qCDebug(B2QT_WIFI_VERBOSE) << "[response]: " << data;
    *reply = QByteArray(data, len);

    return true;
}

int QWifiSupplicant::receiveEvent(char *reply, size_t *reply_len)
{
    int res = 0;
    int ctrlfd = wpa_ctrl_get_fd(monitor_conn);
    struct pollfd rfds[2];

    memset(rfds, 0, 2 * sizeof(struct pollfd));
    rfds[0].fd = ctrlfd;
    rfds[0].events |= POLLIN;
    rfds[1].fd = exit_sockets[1];
    rfds[1].events |= POLLIN;
    res = TEMP_FAILURE_RETRY(poll(rfds, 2, -1));
    if (res < 0) {
        qCWarning(B2QT_WIFI, "Error poll = %d", res);
        return res;
    }
    if (rfds[0].revents & POLLIN) {
        return wpa_ctrl_recv(monitor_conn, reply, reply_len);
    }

    /* it is not rfds[0], then it must be rfts[1] (i.e. the exit socket)
     * or we timed out. In either case, this call has failed ..
     */
    return -2;
}

static inline int hex2num(char c)
{
    if (c >= '0' && c <= '9')
        return c - '0';
    if (c >= 'a' && c <= 'f')
        return c - 'a' + 10;
    if (c >= 'A' && c <= 'F')
        return c - 'A' + 10;
    return -1;
}

static inline int hex2byte(const char *hex)
{
    int a, b;
    a = hex2num(*hex++);
    if (a < 0)
        return -1;
    b = hex2num(*hex++);
    if (b < 0)
        return -1;
    return (a << 4) | b;
}

static inline int printf_decode(char *buf, int maxlen, const char *str)
{
    const char *pos = str;
    int len = 0;
    int val;

    while (*pos) {
        if (len + 1 >= maxlen)
            break;
        switch (*pos) {
        case '\\':
            pos++;
            switch (*pos) {
            case '\\':
                buf[len++] = '\\';
                pos++;
                break;
            case '"':
                buf[len++] = '"';
                pos++;
                break;
            case 'n':
                buf[len++] = '\n';
                pos++;
                break;
            case 'r':
                buf[len++] = '\r';
                pos++;
                break;
            case 't':
                buf[len++] = '\t';
                pos++;
                break;
            case 'e':
                buf[len++] = '\033';
                pos++;
                break;
            case 'x':
                pos++;
                val = hex2byte(pos);
                if (val < 0) {
                    val = hex2num(*pos);
                    if (val < 0)
                        break;
                    buf[len++] = val;
                    pos++;
                } else {
                    buf[len++] = val;
                    pos += 2;
                }
                break;
            case '0':
            case '1':
            case '2':
            case '3':
            case '4':
            case '5':
            case '6':
            case '7':
                val = *pos++ - '0';
                if (*pos >= '0' && *pos <= '7')
                    val = val * 8 + (*pos++ - '0');
                if (*pos >= '0' && *pos <= '7')
                    val = val * 8 + (*pos++ - '0');
                buf[len++] = val;
                break;
            default:
                break;
            }
            break;
        default:
            buf[len++] = *pos++;
            break;
        }
    }
    if (maxlen > len)
        buf[len] = '\0';

    return len;
}

/*! \internal
 *
    Decode wpa_supplicant encoded string, see file hostapd/src/utils/common.c
    in git://w1.fi/hostap.git repository.

    For Ascii encoded string, any octet < 32 or > 127 is encoded as a "\\x"
    followed by the hex representation of the octet. Exception chars are ",
    \\, \\e, \\n, \\r, \\t which are escaped by a backslash

 */
QString QWifiSupplicant::decodeSsid(const QString &encoded)
{
    static char ssid[2048];
    printf_decode(ssid, sizeof(ssid), encoded.toLatin1().constData());
    return QString::fromUtf8(ssid);
}

QT_END_NAMESPACE