forked from br101/horst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf_options.c
506 lines (446 loc) · 14.5 KB
/
conf_options.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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
/* horst - Highly Optimized Radio Scanning Tool
*
* Copyright (C) 2014 Bruno Randolf ([email protected])
*
* 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; either version 2
* of the License, or (at your option) any later version.
*
* 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 <stdio.h>
#include <string.h>
#include <getopt.h>
#include <err.h>
#include "main.h"
#include "util.h"
#include "control.h"
struct conf_option {
int option;
const char* name;
int value_required;
const char* default_value;
int (*func)(const char* value);
};
static int conf_quiet(__attribute__((unused)) const char* value) {
conf.quiet = 1;
return 1;
}
#if DO_DEBUG
static int conf_debug(__attribute__((unused)) const char* value) {
conf.debug = 1;
return 1;
}
#endif
static int conf_interface(const char* value) {
strncpy(conf.ifname, value, MAX_CONF_VALUE_LEN);
return 1;
}
static int conf_outfile(const char* value) {
dumpfile_open(value);
return 1;
}
static int conf_node_timeout(const char* value) {
conf.node_timeout = atoi(value);
return 1;
}
static int conf_receive_buffer(const char* value) {
conf.recv_buffer_size = atoi(value);
return 1;
}
static int conf_channel_set(const char* value) {
int n = atoi(value);
if (conf.channel_initialized)
channel_change(channel_find_index_from_chan(n));
else
/* We have not yet initialized the channel module, channel will be
* changed in channel_init(). */
conf.channel_num_initial = n;
return 1;
}
static int conf_channel_scan(const char* value) {
if (value != NULL && strcmp(value, "0") == 0)
conf.do_change_channel = 0;
else {
conf.do_change_channel = 1;
conf.display_view = 's'; // show spectrum view
}
return 1;
}
static int conf_channel_dwell(const char* value) {
conf.channel_time = atoi(value) * 1000;
return 1;
}
static int conf_channel_upper(const char* value) {
conf.channel_max = atoi(value);
return 1;
}
static int conf_display_interval(const char* value) {
conf.display_interval = atoi(value) * 1000;
return 1;
}
static int conf_display_view(const char* value) {
if (strcasecmp(value, "history") == 0 || strcasecmp(value, "hist") == 0)
conf.display_view = 'h';
else if (strcasecmp(value, "essid") == 0)
conf.display_view = 'e';
else if (strcasecmp(value, "statistics") == 0 || strcasecmp(value, "stats") == 0)
conf.display_view = 'a';
else if (strcasecmp(value, "spectrum") == 0 || strcasecmp(value, "spec") == 0)
conf.display_view = 's';
return 1;
}
static int conf_server(const char* value) {
if (value != NULL && strcmp(value, "0") == 0)
conf.allow_client = 0;
else
conf.allow_client = 1;
return 1;
}
static int conf_client(const char* value) {
strncpy(conf.serveraddr, value, MAX_CONF_VALUE_LEN);
return 1;
}
static int conf_port(const char* value) {
conf.port = atoi(value);
return 1;
}
static int conf_control_pipe(const char* value) {
/*
* Here it's a bit difficult because -X is used for two purposes:
* 1) allow control pipe (-X with or without argument)
* 2) set the name of the control pipe (-X with argument) which can
* also be used in conjuction with -x
* That's why we don't set a default value (as it would always allow control)
* and especially handle the default name here and in control_send_command()
*/
if (value != NULL)
strncpy(conf.control_pipe, value, MAX_CONF_VALUE_LEN);
else
strncpy(conf.control_pipe, DEFAULT_CONTROL_PIPE, MAX_CONF_VALUE_LEN);
conf.allow_control = 1;
return 1;
}
static int conf_filter_mac(const char* value) {
static int n;
if (n >= MAX_FILTERMAC) {
printlog("Can only handle %d MAC filters", MAX_FILTERMAC);
return 0;
}
conf.do_macfilter = 1;
convert_string_to_mac(value, conf.filtermac[n]);
conf.filtermac_enabled[n] = 1;
n++;
return 1;
}
static int conf_filter_bssid(const char* value) {
convert_string_to_mac(value, conf.filterbssid);
return 1;
}
static int conf_filter_mode(const char* value) {
if (conf.filter_mode == WLAN_MODE_ALL)
conf.filter_mode = 0;
if (strcmp(value, "ALL") == 0)
conf.filter_mode = WLAN_MODE_ALL;
else if (strcmp(value, "AP") == 0)
conf.filter_mode |= WLAN_MODE_AP;
else if (strcmp(value, "STA") == 0)
conf.filter_mode |= WLAN_MODE_STA;
else if (strcmp(value, "ADH") == 0 || strcmp(value, "IBSS") == 0)
conf.filter_mode |= WLAN_MODE_IBSS;
else if (strcmp(value, "PRB") == 0)
conf.filter_mode |= WLAN_MODE_PROBE;
else if (strcmp(value, "WDS") == 0)
conf.filter_mode |= WLAN_MODE_4ADDR;
else if (strcmp(value, "UNKNOWN") == 0)
conf.filter_mode |= WLAN_MODE_UNKNOWN;
return 1;
}
static int conf_filter_pkt(const char* value) {
if (conf.filter_pkt == PKT_TYPE_ALL)
conf.filter_pkt = 0;
if (strcmp(value, "ALL") == 0)
conf.filter_pkt = PKT_TYPE_ALL;
else if (strcmp(value, "CTRL") == 0 || strcmp(value, "CONTROL") == 0)
conf.filter_pkt |= PKT_TYPE_CTRL | PKT_TYPE_ALL_CTRL;
else if (strcmp(value, "MGMT") == 0 || strcmp(value, "MANAGEMENT") == 0)
conf.filter_pkt |= PKT_TYPE_MGMT | PKT_TYPE_ALL_MGMT;
else if (strcmp(value, "DATA") == 0)
conf.filter_pkt |= PKT_TYPE_DATA | PKT_TYPE_ALL_DATA;
else if (strcmp(value, "BADFCS") == 0)
conf.filter_pkt |= PKT_TYPE_BADFCS;
else if (strcmp(value, "BEACON") == 0)
conf.filter_pkt |= PKT_TYPE_BEACON;
else if (strcmp(value, "PROBE") == 0)
conf.filter_pkt |= PKT_TYPE_PROBE;
else if (strcmp(value, "ASSOC") == 0)
conf.filter_pkt |= PKT_TYPE_ASSOC;
else if (strcmp(value, "AUTH") == 0)
conf.filter_pkt |= PKT_TYPE_AUTH;
else if (strcmp(value, "RTS") == 0)
conf.filter_pkt |= PKT_TYPE_RTSCTS;
else if (strcmp(value, "ACK") == 0)
conf.filter_pkt |= PKT_TYPE_ACK;
else if (strcmp(value, "NULL") == 0)
conf.filter_pkt |= PKT_TYPE_NULL;
else if (strcmp(value, "QDATA") == 0)
conf.filter_pkt |= PKT_TYPE_QDATA;
else if (strcmp(value, "ARP") == 0)
conf.filter_pkt |= PKT_TYPE_ARP;
else if (strcmp(value, "IP") == 0)
conf.filter_pkt |= PKT_TYPE_IP;
else if (strcmp(value, "ICMP") == 0)
conf.filter_pkt |= PKT_TYPE_ICMP;
else if (strcmp(value, "UDP") == 0)
conf.filter_pkt |= PKT_TYPE_UDP;
else if (strcmp(value, "TCP") == 0)
conf.filter_pkt |= PKT_TYPE_TCP;
else if (strcmp(optarg, "OLSR") == 0)
conf.filter_pkt |= PKT_TYPE_OLSR;
else if (strcmp(optarg, "BATMAN") == 0)
conf.filter_pkt |= PKT_TYPE_BATMAN;
else if (strcmp(optarg, "MESHZ") == 0)
conf.filter_pkt |= PKT_TYPE_MESHZ;
/* if one of the individual subtype frames is selected we enable the general frame type */
if (conf.filter_pkt & PKT_TYPE_ALL_MGMT)
conf.filter_pkt |= PKT_TYPE_MGMT;
if (conf.filter_pkt & PKT_TYPE_ALL_CTRL)
conf.filter_pkt |= PKT_TYPE_CTRL;
if (conf.filter_pkt & PKT_TYPE_ALL_DATA)
conf.filter_pkt |= PKT_TYPE_DATA;
return 1;
}
static int conf_mac_names(const char* value) {
if (value != NULL)
strncpy(conf.mac_name_file, value, MAX_CONF_VALUE_LEN);
else
strncpy(conf.mac_name_file, DEFAULT_MAC_NAME_FILE, MAX_CONF_VALUE_LEN);
conf.mac_name_lookup = 1;
return 1;
}
static struct conf_option conf_options[] = {
/* C , NAME VALUE REQUIRED, DEFAULT CALLBACK */
{ 'q', "quiet", 0, NULL, conf_quiet }, // NOT dynamic
#if DO_DEBUG
{ 'D', "debug", 0, NULL, conf_debug }, // NOT dynamic
#endif
{ 'i', "interface", 1, "wlan0", conf_interface }, // NOT dynamic
{ 'd', "display_interval", 1, "100", conf_display_interval },
{ 'V', "display_view", 1, NULL, conf_display_view },
{ 'o', "outfile", 1, NULL, conf_outfile },
{ 't', "node_timeout", 1, "60", conf_node_timeout },
{ 'b', "receive_buffer", 1, NULL, conf_receive_buffer }, // NOT dynamic
{ 'C', "channel", 1, NULL, conf_channel_set },
{ 's', "channel_scan", 0, NULL, conf_channel_scan },
{ 0 , "channel_dwell", 1, "250", conf_channel_dwell },
{ 'u', "channel_upper", 1, NULL, conf_channel_upper },
{ 'N', "server", 0, NULL, conf_server }, // NOT dynamic
{ 'n', "client", 1, NULL, conf_client }, // NOT dynamic
{ 'p', "port", 1, "4444", conf_port }, // NOT dynamic
{ 'X', "control_pipe", 2, NULL, conf_control_pipe }, // NOT dynamic
{ 'e', "filter_mac", 1, NULL, conf_filter_mac },
{ 'B', "filter_bssid", 1, NULL, conf_filter_bssid },
{ 'm', "filter_mode", 1, "ALL", conf_filter_mode },
{ 'f', "filter_packet", 1, "ALL", conf_filter_pkt },
{ 'M', "mac_names", 2, NULL, conf_mac_names },
};
/*
* More possible config options:
*
* main view:
* sort nodes by: signal, time, bssid, channel
* spec view:
* show nodes or bars
*/
/*
* This handles command line options from getopt as well as options from the config file
* In the first case 'c' is non-zero and name is NULL
* In the second case 'c' is 0 and name is set
* Value may be null in all cases
*/
int
config_handle_option(int c, const char* name, const char* value) {
unsigned int i;
char* end;
for (i=0; i < sizeof(conf_options)/sizeof(struct conf_option); i++) {
if (((c != 0 && conf_options[i].option == c) ||
(name != NULL && strcmp(conf_options[i].name, name) == 0)) &&
conf_options[i].func != NULL) {
if (!conf.quiet) {
if (value != NULL)
printlog("Set '%s' = '%s'", conf_options[i].name, value);
else
printlog("Set '%s'", conf_options[i].name);
}
if (value != NULL) {
/* split list values and call function multiple times */
while ((end = strchr(value, ',')) != NULL) {
*end = '\0';
conf_options[i].func(value);
value = end + 1;
}
}
/* call function */
return conf_options[i].func(value);
}
}
if (name != NULL)
printlog("Ignoring unknown config option '%s' = '%s'", name, value);
return -1;
}
static void
config_read_file(const char* filename) {
FILE* fp ;
char line[255];
char name[32];
char value[MAX_CONF_VALUE_LEN];
int n;
if ((fp = fopen(filename, "r")) == NULL) {
printlog("Could not open config file '%s'", filename);
return;
}
while (fgets(line, sizeof(line), fp) != NULL) {
if (line[0] == '#' ) // comment
continue;
// Note: 200 below has to match MAX_CONF_VALUE_LEN
n = sscanf(line, " %32[^= \n] = %200[^ \n]", name, value);
if (n < 0) // empty line
continue;
else if (n < 2) // no value
config_handle_option(0, name, NULL);
else
config_handle_option(0, name, value);
}
fclose(fp);
}
static void
config_apply_defaults(void) {
unsigned int i;
for (i=0; i < sizeof(conf_options)/sizeof(struct conf_option); i++) {
if (conf_options[i].default_value != NULL) {
conf_options[i].func(conf_options[i].default_value);
}
}
}
static char*
config_get_getopt_string(char* buf, size_t maxlen, const char* add) {
unsigned int pos = 0;
unsigned int i;
maxlen = maxlen - 1; // we use it as string index
for (i=0; i < sizeof(conf_options)/sizeof(struct conf_option) && pos < maxlen; i++) {
if (conf_options[i].option != 0 && pos < maxlen) {
buf[pos++] = conf_options[i].option;
if (conf_options[i].value_required && pos < maxlen) {
buf[pos++] = ':';
}
if (conf_options[i].value_required == 2 && pos < maxlen) {
buf[pos++] = ':';
}
}
}
buf[pos] = '\0';
if (add != NULL) {
if (pos < maxlen && (maxlen - pos) >= strlen(add))
strncat(buf, add, (maxlen - pos));
else {
printlog("Not enough space for getopt string!");
exit(1);
}
}
return buf;
}
void print_usage(const char* name) {
printf("\nUsage: %s [-h] [-q] [-D] [-c file] [-i interface] [-t sec] [-d ms] [-V view] [-b bytes]\n"
"\t\t[-s] [-u] [-N] [-n IP] [-p port] [-o file] [-X[name]] [-x command]\n"
"\t\t[][-e MAC] [-f PKT_NAME] [-m MODE] [-B BSSID]\n\n"
"General Options: Description (default value)\n"
" -h\t\tHelp\n"
" -q\t\tQuiet, no output\n"
#if DO_DEBUG
" -D\t\tShow lots of debug output, no UI\n"
#endif
" -c <file>\tConfig file (" CONFIG_FILE ")\n"
" -C <chan>\tSet initial channel\n"
" -i <intf>\tInterface name (wlan0)\n"
" -t <sec>\tNode timeout in seconds (60)\n"
" -d <ms>\tDisplay update interval in ms (100)\n"
" -V view\tDisplay view: history|essid|statistics|spectrum\n"
" -b <bytes>\tReceive buffer size in bytes (not set)\n"
" -M[filename]\tMAC address to host name mapping (/tmp/dhcp.leases)\n"
"\nFeature Options:\n"
" -s\t\t(Poor mans) Spectrum analyzer mode\n"
" -u\t\tUpper channel limit\n\n"
" -N\t\tAllow network connection, server mode (off)\n"
" -n <IP>\tConnect to server with <IP>, client mode (off)\n"
" -p <port>\tPort number of server (4444)\n\n"
" -o <filename>\tWrite packet info into 'filename'\n\n"
" -X[filename]\tAllow control socket on 'filename' (/tmp/horst)\n"
" -x <command>\tSend control command\n"
"\nFilter Options:\n"
" Filters are generally 'positive' or 'inclusive' which means you define\n"
" what you want to see, and everything else is getting filtered out.\n"
" If a filter is not set it is inactive and nothing is filtered.\n"
" Most filter options can be specified multiple times and will be combined\n"
" -e <MAC>\tSource MAC addresses (xx:xx:xx:xx:xx:xx), up to 9 times\n"
" -f <PKT_NAME>\tFilter packet types, multiple\n"
" -m <MODE>\tOperating mode: AP|STA|ADH|PRB|WDS|UNKNOWN, multiple\n"
" -B <MAC>\tBSSID (xx:xx:xx:xx:xx:xx), only one\n"
"\n",
name);
}
void
config_parse_file_and_cmdline(int argc, char** argv)
{
char getopt_str[(sizeof(conf_options)/sizeof(struct conf_option))*2 + 10];
char* conf_filename = CONFIG_FILE;
int c;
config_get_getopt_string(getopt_str, sizeof(getopt_str), "hc:x:");
/* first: apply default values */
config_apply_defaults();
/*
* then: handle command line options which are not
* configuration options ("hc:")
*/
while ((c = getopt(argc, argv, getopt_str)) > 0) {
switch (c) {
case 'c':
printlog("Using config file '%s'", optarg);
conf_filename = optarg;
break;
case 'h':
case '?':
print_usage(argv[0]);
exit(0);
}
}
/* read config file */
config_read_file(conf_filename);
/*
* get command line options which are configuration, to let them
* override or add to the config file options
*/
optind = 1;
while ((c = getopt(argc, argv, getopt_str)) > 0) {
config_handle_option(c, NULL, optarg);
}
/*
* and finally get command line options ("commands") which depend
* on config options ("x:")
*/
optind = 1;
while ((c = getopt(argc, argv, getopt_str)) > 0) {
switch (c) {
case 'x':
control_send_command(optarg);
exit(0);
}
}
}