-
Notifications
You must be signed in to change notification settings - Fork 13
/
akWorker.cpp
215 lines (174 loc) · 4.33 KB
/
akWorker.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
#include "akWorker.h"
#include <QUdpSocket>
#include <QNetworkInterface>
#include <QHostInfo>
#include "../../airkiss.h"
#include <QFile>
#include <QTextStream>
#include <stdio.h>
static int msgprint(const char *format, ...)
{
char buf[80];
int i;
va_list vlist;
va_start(vlist, format);
i = vsprintf(buf, format, vlist);
va_end(vlist);
qDebug(buf);
return i;
}
akWorker::akWorker()
{
isrun = true;
lenOut = false;
cmpExit = true;
}
akWorker::~akWorker()
{
isrun = false;
wait();
}
void akWorker::start(QString file, bool nossid, short port)
{
_file = file;
_nossid = nossid;
_port = port;
QThread::start();
}
int akWorker::getframe(QString &str, QByteArray &fm)
{
QStringList list;
int len;
fm.clear();
list = str.split(":");
if (list.count() == 1)
{
len = list.at(0).toInt();
}
else
{
QByteArray tmp;
tmp = list.at(0).toStdString().c_str();
fm = fm.fromHex(tmp);
len = list.at(1).toInt();
}
return len;
}
void akWorker::fromfile()
{
QFile fd;
airkiss_context_t ac;
airkiss_config_t acfg = {0,0,0,0};
int status;
int len;
QString data;
QTextStream in;
QByteArray fm;
fd.setFileName(_file);
if (!fd.open(QIODevice::ReadOnly))
{
emit showMsg("open file fail");
return;
}
in.setDevice(&fd);
acfg.printf = msgprint;
airkiss_init(&ac, &acfg);
while (isrun)
{
char *pf = NULL;
data = in.readLine();
if (data.size() == 0)
break;
len = getframe(data, fm);
if (len == 0)
break;
if (fm.size() > 0)
pf = fm.data();
if (_nossid)
status = airkiss_recv_nossid(&ac, pf, len);
else
status = airkiss_recv(&ac, pf, len);
if (status == AIRKISS_STATUS_COMPLETE)
{
airkiss_result_t res;
QString str;
airkiss_get_result(&ac, &res);
if (_nossid)
str = str.sprintf("ssidcrc: %X, pwd: %s\n", res.ssid_crc, res.pwd);
else
str = str.sprintf("ssid: %s, pwd: %s\n", res.ssid, res.pwd);
emit showMsg(str);
break;
}
else if (status == AIRKISS_STATUS_CHANNEL_LOCKED)
{
emit showMsg("锁定通道");
}
msleep(1);
}
}
void akWorker::fromudp_bc()
{
QUdpSocket *ser;
char buf[1024];
airkiss_context_t ac;
int status = -1;
airkiss_config_t acfg = {0,0,0,0};
ser = new QUdpSocket;
if (!ser->bind(QHostAddress::AnyIPv4, _port, QUdpSocket::ShareAddress))
{
emit showMsg("bind fail");
goto _out;
}
acfg.printf = msgprint;
airkiss_init(&ac, &acfg);
while (isrun)
{
int len;
if (ser->hasPendingDatagrams())
{
len = ser->pendingDatagramSize();
ser->readDatagram(buf, len);
if (lenOut)
{
QString s;
qDebug("%X", len);
s = s.sprintf("%X", len);
emit showMsg(s);
}
if (_nossid)
status = airkiss_recv_nossid(&ac, NULL, len);
else
status = airkiss_recv(&ac, NULL, len);
if (status == AIRKISS_STATUS_COMPLETE)
{
airkiss_result_t res;
QString str;
airkiss_get_result(&ac, &res);
if (_nossid)
str = str.sprintf("ssidcrc: %X, pwd: %s\n", res.ssid_crc, res.pwd);
else
str = str.sprintf("ssid: %s, pwd: %s\n", res.ssid, res.pwd);
emit showMsg(str);
airkiss_change_channel(&ac);
if (cmpExit)
break;
}
}
}
_out:
delete ser;
}
void akWorker::run()
{
if (_file.isEmpty())
fromudp_bc();
else
fromfile();
emit showMsg("退出解析");
}
QString akWorker::genDataSeq(QString pwd, QString r, QString ssid, int baselen)
{
QString ret;
return ret;
}