-
Notifications
You must be signed in to change notification settings - Fork 12
/
ajinject.c
420 lines (329 loc) · 8.9 KB
/
ajinject.c
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
/*
This file is part of lorcon
lorcon is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
lorcon is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with lorcon; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Copyright (c) 2005 dragorn and Joshua Wright
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef SYS_LINUX
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <time.h>
#include <sys/socket.h>
#include <net/ethernet.h>
#include <errno.h>
#include <netpacket/packet.h>
#include <sys/ioctl.h>
#include <linux/types.h>
#include <linux/if.h>
#include <linux/wireless.h>
#include <fcntl.h>
#include "ajinject.h"
#include "tx80211.h"
#include "tx80211_packet.h"
int tx80211_airjack_init(struct tx80211 *in_tx)
{
in_tx->capabilities = tx80211_airjack_capabilities();
in_tx->open_callthrough = &ajinj_open;
in_tx->close_callthrough = &ajinj_close;
in_tx->setmode_callthrough = &ajinj_setmode;
in_tx->getmode_callthrough = &ajinj_getmode;
in_tx->getchan_callthrough = &ajinj_getchannel;
in_tx->setchan_callthrough = &ajinj_setchannel;
in_tx->txpacket_callthrough = &ajinj_send;
in_tx->setfuncmode_callthrough = NULL;
return 0;
}
int tx80211_airjack_capabilities()
{
return (TX80211_CAP_SNIFF | TX80211_CAP_TRANSMIT | TX80211_CAP_DSSSTX);
}
/* A few function wrappers, standardized to be used as callthroughs, passing
the appropriate parameters to the aj_set/get functions. */
int ajinj_open(struct tx80211 *ajinj)
{
return (ajinj->raw_fd = aj_getsocket(ajinj->ifname));
}
int ajinj_close(struct tx80211 *ajinj)
{
return (close(ajinj->raw_fd));
}
int ajinj_setchannel(struct tx80211 *ajinj, int channel)
{
return (aj_setchannel(ajinj->ifname, channel));
}
int ajinj_setmode(struct tx80211 *ajinj, int mode)
{
return (aj_setmode(ajinj->ifname, mode));
}
int ajinj_getmode(struct tx80211 *ajinj)
{
return -1; /* TODO */
}
int ajinj_getchannel(struct tx80211 *ajinj)
{
return -1; /* TODO */
}
int ajinj_send(struct tx80211 *ajinj, struct tx80211_packet *in_pkt)
{
return (aj_xmitframe(ajinj->ifname, in_pkt->packet, in_pkt->plen,
ajinj->errstr));
}
/* End wrapper functions */
/* aj_getnonblock accepts the airjack_data structure with an open socket, and
returns whether the interface is currently in blocking (0) or nonblock (1)
mode. */
int aj_getnonblock(char *ifname)
{
int flags, mode, sock;
if ((sock = aj_getsocket(ifname)) < 0) {
close(sock);
return (-1);
}
flags = fcntl(sock, F_GETFL, 0);
if (flags < 0) {
close(sock);
return (-1);
}
mode = flags & O_NONBLOCK;
close(sock);
return (mode);
}
/* aj_setmonitor sets or disables RFMON mode for AirJack interfaces */
int aj_setmonitor(char *ifname, int rfmonset)
{
struct aj_config ajconf;
struct ifreq req;
int sock;
if ((sock = aj_getsocket(ifname)) < 0) {
close(sock);
return (-1);
}
req.ifr_data = (char *)&ajconf;
strncpy(req.ifr_name, ifname, sizeof(req.ifr_name));
/* populate the structure */
if (ioctl(sock, SIOCAJGMODE, &req) < 0) {
close(sock);
return (-1);
}
ajconf.monitor = rfmonset;
if (ioctl(sock, SIOCAJSMODE, &req) < 0) {
close(sock);
return (-1);
}
return (0);
}
/* aj_setmode sets the operating mode for AirJack interfaces */
int aj_setmode(char *ifname, int mode)
{
struct aj_config ajconf;
struct ifreq req;
int sock;
if ((sock = aj_getsocket(ifname)) < 0) {
close(sock);
return (-1);
}
req.ifr_data = (char *)&ajconf;
strncpy(req.ifr_name, ifname, sizeof(req.ifr_name));
/* populate the structure */
if (ioctl(sock, SIOCAJGMODE, &req) < 0) {
close(sock);
return (-1);
}
ajconf.mode = mode;
if (ioctl(sock, SIOCAJSMODE, &req) < 0) {
close(sock);
return (-1);
}
close(sock);
return (0);
}
/* aj_setchannel changes the airjack card to the specified channel */
int aj_setchannel(char *ifname, int channel)
{
struct aj_config ajconf;
struct ifreq req;
int sock;
if ((sock = aj_getsocket(ifname)) < 0) {
close(sock);
return (-1);
}
req.ifr_data = (char *)&ajconf;
strncpy(req.ifr_name, ifname, sizeof(req.ifr_name));
/* populate the structure */
if (ioctl(sock, SIOCAJGMODE, &req) < 0) {
close(sock);
return (-1);
}
ajconf.channel = channel;
if (ioctl(sock, SIOCAJSMODE, &req) < 0) {
close(sock);
return (-1);
}
close(sock);
return (0);
}
int aj_setessid(char *ifname, char *essid, int len)
{
struct aj_config ajconf;
struct ifreq req;
int sock;
if ((sock = aj_getsocket(ifname)) < 0) {
close(sock);
return (-1);
}
req.ifr_data = (char *)&ajconf;
strncpy(req.ifr_name, ifname, sizeof(req.ifr_name));
/* populate the structure */
if (ioctl(sock, SIOCAJGMODE, &req) < 0) {
close(sock);
return (-1);
}
strncpy((char *)ajconf.essid+1, essid, len);
ajconf.essid[0] = len;
if (ioctl(sock, SIOCAJSMODE, &req) < 0) {
close(sock);
return (-1);
}
close(sock);
return (0);
}
int aj_setmac(char *ifname, uint8_t *mac)
{
struct aj_config ajconf;
struct ifreq req;
int sock;
if ((sock = aj_getsocket(ifname)) < 0) {
close(sock);
return (-1);
}
req.ifr_data = (char *)&ajconf;
strncpy(req.ifr_name, ifname, sizeof(req.ifr_name));
/* populate the structure */
if (ioctl(sock, SIOCAJGMODE, &req) < 0) {
close(sock);
return (-1);
}
memcpy(ajconf.ownmac, mac, 6);
if (ioctl(sock, SIOCAJSMODE, &req) < 0) {
close(sock);
return (-1);
}
close(sock);
return (0);
}
/* aj_xmitframe accepts a 8-bit array of data, and a number of bytes to send
with an open socket. If we are blocking on the socket, just transmit the
data and return 0 is send returns the same number of bytes sent. If we are
in nonblock mode, perform a select on the socket and if it is available for
writing, send the data. If it is not available for writing, we loop and
keep trying to send until select returns the socket as available. Note that
this behavior is different from the aj_recvframe function that will
immediately return of select indicates that the socket is not ready to
deliver a frame. */
int aj_xmitframe(char *ifname, uint8_t *xmit, int len, char *errstr)
{
int xmitlen = 0;
int n = 0, sock;
struct timeval tv;
fd_set saved_set, wset;
if ((sock = aj_getsocket(ifname)) < 0) {
close(sock);
return (-1);
}
if (aj_getnonblock(ifname) == 0) {
/* We are blocking, just transmit the data */
xmitlen = write(sock, &xmit, len);
} else {
/* We are nonblock, perform a select on the socket */
FD_ZERO(&saved_set);
FD_SET(sock, &saved_set);
tv.tv_sec = 0;
tv.tv_usec = 250000;
while (1) {
wset = saved_set;
n = select(sock + 1, NULL, &wset, NULL, &tv);
if (n < 0) {
if (errno == EINTR || errno == EAGAIN) {
continue;
} else {
snprintf(errstr, TX80211_STATUS_MAX,
"select on write socket "
"returned %d: %s.\n", errno,
strerror(errno));
return TX80211_ENOTX;
}
} else if (n == 0) {
/* timeout expired before a filehandle was
populated. try again. */
continue;
} else {
printf("select returned %d.\n", n);
/* select returned > 0, transmit the packet */
printf("before send errno: %d\n", errno);
xmitlen = write(sock, &xmit, len);
printf("after send errno: %d\n", errno);
printf("send returned %d.\n", xmitlen);
break;
}
} /* end while(1) */
}
close(sock);
if (len == xmitlen) {
return (0);
} else {
snprintf(errstr, TX80211_STATUS_MAX, "send returned %d, not %d "
"bytes: %s", xmitlen, len, strerror(errno));
return TX80211_ENOTX;
}
}
/* aj_getsocket accepts the AirJack interface char * and
return a socket, or -1 on error. This is cribbed right from essid_jack.c,
thanks Abaddon. */
int aj_getsocket(char *ifname)
{
struct sockaddr_ll addr;
struct ifreq req;
struct aj_config aj_conf;
int sock;
/* open the link layer socket */
if ((sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL))) < 0) {
return (-1);
}
/* get the interface index */
memset(&req, 0, sizeof(struct ifreq));
memset(&aj_conf, 0, sizeof(struct aj_config));
strcpy(req.ifr_name, ifname);
if (ioctl(sock, SIOCGIFINDEX, &req) < 0) {
close(sock);
return (-1);
}
/* bind the socket to the interface */
memset(&addr, 0, sizeof(struct sockaddr_ll));
addr.sll_ifindex = req.ifr_ifindex;
addr.sll_protocol = htons(ETH_P_ALL);
addr.sll_family = AF_PACKET;
if (bind(sock, (struct sockaddr *)&addr,
sizeof(struct sockaddr_ll)) < 0) {
close(sock);
return (-1);
}
return (sock);
}
#endif /* linux */