-
Notifications
You must be signed in to change notification settings - Fork 2
/
tx.c
477 lines (356 loc) · 12.6 KB
/
tx.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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
// (c)2015 befinitiv
/*
* This program 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; version 2.
*
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <time.h>
#include "fec.h"
#include "lib.h"
#include "wifibroadcast.h"
#define MAX_PACKET_LENGTH 4192
#define MAX_USER_PACKET_LENGTH 1450
#define MAX_DATA_OR_FEC_PACKETS_PER_BLOCK 32
#define FIFO_NAME "/tmp/fifo%d"
#define MAX_FIFOS 8
/* this is the template radiotap header we send packets out with */
static const u8 u8aRadiotapHeader[] = {
0x00, 0x00, // <-- radiotap version
0x0c, 0x00, // <- radiotap header lengt
0x04, 0x80, 0x00, 0x00, // <-- bitmap
0x22,
0x0,
0x18, 0x00
};
/* Penumbra IEEE80211 header */
//the last byte of the mac address is recycled as a port number
#define SRC_MAC_LASTBYTE 15
#define DST_MAC_LASTBYTE 21
static u8 u8aIeeeHeader[] = {
0x08, 0x01, 0x00, 0x00,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0x13, 0x22, 0x33, 0x44, 0x55, 0x66,
0x13, 0x22, 0x33, 0x44, 0x55, 0x66,
0x10, 0x86,
};
int flagHelp = 0;
void
usage(void)
{
printf(
"(c)2015 befinitiv. Based on packetspammer by Andy Green. Licensed under GPL2\n"
"\n"
"Usage: tx [options] <interface>\n\nOptions\n"
"-r <count> Number of FEC packets per block (default 4). Needs to match with rx.\n\n"
"-f <bytes> Number of bytes per packet (default %d. max %d). This is also the FEC block size. Needs to match with rx\n"
"-p <port> Port number 0-255 (default 0)\n"
"-b <count> Number of data packets in a block (default 8). Needs to match with rx.\n"
"-x <count> Number of transmissions of a block (default 1)\n"
"-m <bytes> Minimum number of bytes per frame (default: 0)\n"
"-s <stream> If <stream> is > 1 then the parameter changes \"tx\" input from stdin to named fifos. Each fifo transports a stream over a different port (starting at -p port and incrementing). Fifo names are \"%s\". (default 1)\n"
"Example:\n"
" iwconfig wlan0 down\n"
" iw dev wlan0 set monitor otherbss fcsfail\n"
" ifconfig wlan0 up\n"
" iwconfig wlan0 channel 13\n"
" tx wlan0 Reads data over stdin and sends it out over wlan0\n"
"\n", MAX_USER_PACKET_LENGTH, MAX_USER_PACKET_LENGTH, FIFO_NAME);
exit(1);
}
void set_port_no(uint8_t *pu, uint8_t port) {
//dirty hack: the last byte of the mac address is the port number. this makes it easy to filter out specific ports via wireshark
pu[sizeof(u8aRadiotapHeader) + SRC_MAC_LASTBYTE] = port;
pu[sizeof(u8aRadiotapHeader) + DST_MAC_LASTBYTE] = port;
}
typedef struct {
int seq_nr;
int fd;
int curr_pb;
packet_buffer_t *pbl;
} fifo_t;
int packet_header_init(uint8_t *packet_header) {
u8 *pu8 = packet_header;
memcpy(packet_header, u8aRadiotapHeader, sizeof(u8aRadiotapHeader));
pu8 += sizeof(u8aRadiotapHeader);
memcpy(pu8, u8aIeeeHeader, sizeof (u8aIeeeHeader));
pu8 += sizeof (u8aIeeeHeader);
//determine the length of the header
return pu8 - packet_header;
}
void fifo_init(fifo_t *fifo, int fifo_count, int block_size) {
int i;
for(i=0; i<fifo_count; ++i) {
int j;
fifo[i].seq_nr = 0;
fifo[i].fd = -1;
fifo[i].curr_pb = 0;
fifo[i].pbl = lib_alloc_packet_buffer_list(block_size, MAX_PACKET_LENGTH);
//prepare the buffers with headers
for(j=0; j<block_size; ++j) {
fifo[i].pbl[j].len = 0;
}
}
}
void fifo_open(fifo_t *fifo, int fifo_count) {
int i;
if(fifo_count > 1) {
//new FIFO style
//first, create all required fifos
for(i=0; i<fifo_count; ++i) {
char fn[256];
sprintf(fn, FIFO_NAME, i);
unlink(fn);
if(mkfifo(fn, 0666) != 0) {
fprintf(stderr, "Error creating FIFO \"%s\"\n", fn);
exit(1);
}
}
//second: wait for the data sources to connect
for(i=0; i<fifo_count; ++i) {
char fn[256];
sprintf(fn, FIFO_NAME, i);
printf("Waiting for \"%s\" being opened from the data source... \n", fn);
if((fifo[i].fd = open(fn, O_RDONLY)) < 0) {
fprintf(stderr, "Error opening FIFO \"%s\"\n", fn);
exit(1);
}
printf("OK\n");
}
}
else {
//old style STDIN input
fifo[0].fd = STDIN_FILENO;
}
}
void fifo_create_select_set(fifo_t *fifo, int fifo_count, fd_set *fifo_set, int *max_fifo_fd) {
int i;
FD_ZERO(fifo_set);
for(i=0; i<fifo_count; ++i) {
FD_SET(fifo[i].fd, fifo_set);
if(fifo[i].fd > *max_fifo_fd) {
*max_fifo_fd = fifo[i].fd;
}
}
}
void pb_transmit_packet(pcap_t *ppcap, int seq_nr, uint8_t *packet_transmit_buffer, int packet_header_len, const uint8_t *packet_data, int packet_length) {
//add header outside of FEC
wifi_packet_header_t *wph = (wifi_packet_header_t*)(packet_transmit_buffer + packet_header_len);
wph->sequence_number = seq_nr;
//copy data
memcpy(packet_transmit_buffer + packet_header_len + sizeof(wifi_packet_header_t), packet_data, packet_length);
int plen = packet_length + packet_header_len + sizeof(wifi_packet_header_t);
int r = pcap_inject(ppcap, packet_transmit_buffer, plen);
if (r != plen) {
pcap_perror(ppcap, "Trouble injecting packet");
exit(1);
}
}
void pb_transmit_block(packet_buffer_t *pbl, pcap_t *ppcap, int *seq_nr, int port, int packet_length, uint8_t *packet_transmit_buffer, int packet_header_len, int data_packets_per_block, int fec_packets_per_block, int transmission_count) {
int i;
uint8_t *data_blocks[MAX_DATA_OR_FEC_PACKETS_PER_BLOCK];
uint8_t fec_pool[MAX_DATA_OR_FEC_PACKETS_PER_BLOCK][MAX_USER_PACKET_LENGTH];
uint8_t *fec_blocks[MAX_DATA_OR_FEC_PACKETS_PER_BLOCK];
for(i=0; i<data_packets_per_block; ++i) {
data_blocks[i] = pbl[i].data;
}
if(fec_packets_per_block) {
for(i=0; i<fec_packets_per_block; ++i) {
fec_blocks[i] = fec_pool[i];
}
fec_encode(packet_length, data_blocks, data_packets_per_block, (unsigned char **)fec_blocks, fec_packets_per_block);
}
uint8_t *pb = packet_transmit_buffer;
set_port_no(pb, port);
pb += packet_header_len;
int x;
for(x=0; x<transmission_count; ++x) {
//send data and FEC packets interleaved
int di = 0;
int fi = 0;
int seq_nr_tmp = *seq_nr;
while(di < data_packets_per_block || fi < fec_packets_per_block) {
if(di < data_packets_per_block) {
pb_transmit_packet(ppcap, seq_nr_tmp, packet_transmit_buffer, packet_header_len, data_blocks[di], packet_length);
seq_nr_tmp++;
di++;
}
if(fi < fec_packets_per_block) {
pb_transmit_packet(ppcap, seq_nr_tmp, packet_transmit_buffer, packet_header_len, fec_blocks[fi], packet_length);
seq_nr_tmp++;
fi++;
}
}
}
*seq_nr += data_packets_per_block + fec_packets_per_block;
//reset the length back
for(i=0; i< data_packets_per_block; ++i) {
pbl[i].len = 0;
}
}
int
main(int argc, char *argv[])
{
char szErrbuf[PCAP_ERRBUF_SIZE];
int i;
pcap_t *ppcap = NULL;
char fBrokenSocket = 0;
int pcnt = 0;
time_t start_time;
uint8_t packet_transmit_buffer[MAX_PACKET_LENGTH];
size_t packet_header_length = 0;
fd_set fifo_set;
int max_fifo_fd = -1;
fifo_t fifo[MAX_FIFOS];
int param_transmission_count = 1;
int param_data_packets_per_block = 8;
int param_fec_packets_per_block = 4;
int param_packet_length = MAX_USER_PACKET_LENGTH;
int param_port = 0;
int param_min_packet_length = 0;
int param_fifo_count = 1;
printf("Raw data transmitter (c) 2015 befinitiv GPL2\n");
while (1) {
int nOptionIndex;
static const struct option optiona[] = {
{ "help", no_argument, &flagHelp, 1 },
{ 0, 0, 0, 0 }
};
int c = getopt_long(argc, argv, "r:hf:p:b:m:s:x:",
optiona, &nOptionIndex);
if (c == -1)
break;
switch (c) {
case 0: // long option
break;
case 'h': // help
usage();
case 'r': // retransmissions
param_fec_packets_per_block = atoi(optarg);
break;
case 'f': // MTU
param_packet_length = atoi(optarg);
break;
case 'p': //port
param_port = atoi(optarg);
break;
case 'b': //retransmission block size
param_data_packets_per_block = atoi(optarg);
break;
case 'm'://minimum packet length
param_min_packet_length = atoi(optarg);
break;
case 's': //how many streams (fifos) do we have in parallel
param_fifo_count = atoi(optarg);
break;
case 'x': //how often is a block transmitted
param_transmission_count = atoi(optarg);
break;
default:
fprintf(stderr, "unknown switch %c\n", c);
usage();
break;
}
}
if (optind >= argc)
usage();
if(param_packet_length > MAX_USER_PACKET_LENGTH) {
fprintf(stderr, "Packet length is limited to %d bytes (you requested %d bytes)\n", MAX_USER_PACKET_LENGTH, param_packet_length);
return (1);
}
if(param_min_packet_length > param_packet_length) {
fprintf(stderr, "Your minimum packet length is higher that your maximum packet length (%d > %d)\n", param_min_packet_length, param_packet_length);
return (1);
}
if(param_fifo_count > MAX_FIFOS) {
fprintf(stderr, "The maximum number of streams (FIFOS) is %d (you requested %d)\n", MAX_FIFOS, param_fifo_count);
return (1);
}
if(param_data_packets_per_block > MAX_DATA_OR_FEC_PACKETS_PER_BLOCK || param_fec_packets_per_block > MAX_DATA_OR_FEC_PACKETS_PER_BLOCK) {
fprintf(stderr, "Data and FEC packets per block are limited to %d (you requested %d data, %d FEC)\n", MAX_DATA_OR_FEC_PACKETS_PER_BLOCK, param_data_packets_per_block, param_fec_packets_per_block);
return (1);
}
packet_header_length = packet_header_init(packet_transmit_buffer);
fifo_init(fifo, param_fifo_count, param_data_packets_per_block);
fifo_open(fifo, param_fifo_count);
fifo_create_select_set(fifo, param_fifo_count, &fifo_set, &max_fifo_fd);
//initialize forward error correction
fec_init();
// open the interface in pcap
szErrbuf[0] = '\0';
ppcap = pcap_open_live(argv[optind], 800, 1, 20, szErrbuf);
if (ppcap == NULL) {
fprintf(stderr, "Unable to open interface %s in pcap: %s\n",
argv[optind], szErrbuf);
return (1);
}
pcap_setnonblock(ppcap, 0, szErrbuf);
start_time = time(NULL);
while (!fBrokenSocket) {
fd_set rdfs;
int ret;
rdfs = fifo_set;
//wait for new data on the fifos
ret = select(max_fifo_fd + 1, &rdfs, NULL, NULL, NULL);
if(ret < 0) {
perror("select");
return (1);
}
//cycle through all fifos and look for new data
for(i=0; i<param_fifo_count && ret; ++i) {
if(!FD_ISSET(fifo[i].fd, &rdfs)) {
continue;
}
ret--;
packet_buffer_t *pb = fifo[i].pbl + fifo[i].curr_pb;
//if the buffer is fresh we add a payload header
if(pb->len == 0) {
pb->len += sizeof(payload_header_t); //make space for a length field (will be filled later)
}
//read the data
int inl = read(fifo[i].fd, pb->data + pb->len, param_packet_length - pb->len);
if(inl < 0 || inl > param_packet_length-pb->len){
perror("reading stdin");
return 1;
}
if(inl == 0) {
//EOF
fprintf(stderr, "Warning: Lost connection to fifo %d. Please make sure that a data source is connected\n", i);
usleep(1e5);
continue;
}
pb->len += inl;
//check if this packet is finished
if(pb->len >= param_min_packet_length) {
payload_header_t *ph = (payload_header_t*)pb->data;
ph->data_length = pb->len - sizeof(payload_header_t); //write the length into the packet. this is needed since with fec we cannot use the wifi packet lentgh anymore. We could also set the user payload to a fixed size but this would introduce additional latency since tx would need to wait until that amount of data has been received
pcnt++;
//check if this block is finished
if(fifo[i].curr_pb == param_data_packets_per_block-1) {
pb_transmit_block(fifo[i].pbl, ppcap, &(fifo[i].seq_nr), i+param_port, param_packet_length, packet_transmit_buffer, packet_header_length, param_data_packets_per_block, param_fec_packets_per_block, param_transmission_count);
fifo[i].curr_pb = 0;
}
else {
fifo[i].curr_pb++;
}
}
}
if(pcnt % 128 == 0) {
printf("%d data packets sent (interface rate: %.3f)\n", pcnt, 1.0 * pcnt / param_data_packets_per_block * (param_data_packets_per_block + param_fec_packets_per_block) / (time(NULL) - start_time));
}
}
printf("Broken socket\n");
return (0);
}