-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
904 lines (765 loc) · 22.6 KB
/
Copy pathmain.cpp
File metadata and controls
904 lines (765 loc) · 22.6 KB
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
/**
* Code applied from:
* - libnl sources LGPL2.1 https://www.infradead.org/~tgr/libnl/
* - example code from Python libnl port (LGPL2.1):
* https://github.com/Robpol86/libnl/blob/master/example_c/scan_access_points.c
* - as well as iw(8) source code (MIT).
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* This program uses the scanning features of wifi hardware to discover nearby
* wifi access points and prints information about them. Due to libnl / nl80211
* being used, this program only works on somewhat newer wifi drivers.
* Only root can perform scanning due to NL80211_CMD_TRIGGER_SCAN being limited
* to root by default.
*
* This changed version of the example program scan_access_points.c addresses several
* errors that were not handled, scans for more information, rearranges the code
* in a cleaner format and improves on the documentation. In addition, several memory
* leaks with allocated libnl resources are handled.
*/
#include <errno.h>
#include <ctype.h>
#include <netlink/genl/genl.h>
#include <netlink/genl/ctrl.h>
#include <linux/nl80211.h>
#include <net/if.h>
#include <memory>
#include <stdio.h>
#define ARRAY_SIZE(ar) (sizeof(ar)/sizeof(ar[0]))
// These are from iw source code, and they related to parsing authentication suites
const unsigned char ms_oui[3] = { 0x00, 0x50, 0xf2 };
const unsigned char ieee80211_oui[3] = { 0x00, 0x0f, 0xac };
const unsigned char wfa_oui[3] = { 0x50, 0x6f, 0x9a };
// global variable that contains the MAC address for the current scan result,
// used to make sure every print contains clarification for which MAC the data is.
char current_mac[20];
const char* DISCOVER_STR = "AP_DISCOVERED:";
const char* DATA_STR = "AP_DATA:";
inline void dataline() {
printf("%s%s,", DATA_STR, current_mac);
}
struct init_scan_results {
int done;
int aborted;
};
struct print_ies_data {
unsigned char *ie;
int ielen;
};
int error_handler(struct sockaddr_nl* nla, struct nlmsgerr* err, void* arg) {
printf("error_handler() called\n");
int* ret = (int*)arg;
*ret = err->error;
return NL_STOP;
}
// Callback for NL_CB_FINISH
int finish_handler(struct nl_msg* msg, void* arg) {
int* ret = (int*)arg;
*ret = 0;
return NL_SKIP;
}
// Callback for NL_CB_ACK
int ack_handler(struct nl_msg *msg, void* arg) {
int* ret = (int*)arg;
*ret = 0;
return NL_STOP;
}
// Callback for NL_CB_SEQ_CHECK
int no_seq_check(struct nl_msg* msg, void* arg) {
return NL_OK;
}
// From http://git.kernel.org/cgit/linux/kernel/git/jberg/iw.git/tree/util.c
void mac_addr_n2a(char* mac_addr, unsigned char* arg) {
int i, l;
l = 0;
for (i = 0; i < 6; i++) {
if (i == 0) {
sprintf(mac_addr+l, "%02x", arg[i]);
l += 2;
} else {
sprintf(mac_addr+l, ":%02x", arg[i]);
l += 3;
}
}
}
void print_ssid(const uint8_t type, uint8_t len, const uint8_t *data,
const struct print_ies_data *ie_buffer) {
int i;
dataline();
printf("ssid:");
for (i = 0; i < len; i++) {
if (isprint(data[i]) && data[i] != ' ' && data[i] != '\\') {
printf("%c", data[i]);
} else if (data[i] == ' ' && (i != 0 && i != len -1)) {
printf(" ");
} else {
printf("\\x%.2x", data[i]);
}
}
printf("\n");
}
void print_auth(const uint8_t *data) {
// This is copied from iw sources, and I have no idea how this works
// There's a lot of magic numbers going around.
if (memcmp(data, ms_oui, 3) == 0) {
switch (data[3]) {
case 1:
printf("IEEE 802.1X");
break;
case 2:
printf("PSK");
break;
default:
printf("%.02x-%.02x-%.02x:%d", data[0], data[1] ,data[2], data[3]);
break;
}
} else if (memcmp(data, ieee80211_oui, 3) == 0) {
switch (data[3]) {
case 1:
printf("IEEE 802.1X");
break;
case 2:
printf("PSK");
break;
case 3:
printf("FT/IEEE 802.1X");
break;
case 4:
printf("FT/PSK");
break;
case 5:
printf("IEEE 802.1X/SHA-256");
break;
case 6:
printf("PSK/SHA-256");
break;
case 7:
printf("TDLS/TPK");
break;
case 8:
printf("SAE");
break;
case 9:
printf("FT/SAE");
break;
case 11:
printf("IEEE 802.1X/SUITE-B");
break;
case 12:
printf("IEEE 802.1X/SUITE-B-192");
break;
case 13:
printf("FT/IEEE 802.1X/SHA-384");
break;
case 14:
printf("FILS/SHA-256");
break;
case 15:
printf("FILS/SHA-384");
break;
case 16:
printf("FT/FILS/SHA-256");
break;
case 17:
printf("FT/FILS/SHA-384");
break;
case 18:
printf("OWE");
break;
default:
printf("%.02x-%.02x-%.02x:%d", data[0], data[1] ,data[2], data[3]);
break;
}
} else if (memcmp(data, wfa_oui, 3) == 0) {
switch (data[3]) {
case 1:
printf("OSEN");
break;
case 2:
printf("DPP");
break;
default:
printf("%.02x-%.02x-%.02x:%d", data[0], data[1] ,data[2], data[3]);
break;
}
} else {
printf("%.02x-%.02x-%.02x:%d", data[0], data[1] ,data[2], data[3]);
}
}
// Copied from iw sources, no idea what the magic values are
static void print_cipher(const uint8_t *data) {
if (memcmp(data, ms_oui, 3) == 0) {
switch (data[3]) {
case 0:
printf("Use group cipher suite");
break;
case 1:
printf("WEP-40");
break;
case 2:
printf("TKIP");
break;
case 4:
printf("CCMP");
break;
case 5:
printf("WEP-104");
break;
default:
printf("%.02x-%.02x-%.02x:%d", data[0], data[1] ,data[2], data[3]);
break;
}
} else if (memcmp(data, ieee80211_oui, 3) == 0) {
switch (data[3]) {
case 0:
printf("Use group cipher suite");
break;
case 1:
printf("WEP-40");
break;
case 2:
printf("TKIP");
break;
case 4:
printf("CCMP");
break;
case 5:
printf("WEP-104");
break;
case 6:
printf("AES-128-CMAC");
break;
case 7:
printf("NO-GROUP");
break;
case 8:
printf("GCMP");
break;
default:
printf("%.02x-%.02x-%.02x:%d", data[0], data[1] ,data[2], data[3]);
break;
}
} else {
printf("%.02x-%.02x-%.02x:%d", data[0], data[1] ,data[2], data[3]);
}
}
// from iw source code, no idea what's going on here
void print_rsn_ie(const char *defcipher, const char *defauth,
uint8_t len, const uint8_t *data) {
__u16 count, capa;
int i;
int is_osen = 0;
dataline();
if (!is_osen) {
__u16 version;
version = data[0] + (data[1] << 8);
printf("RSN version:%d\n", version);
data += 2;
len -= 2;
}
if (len < 4) {
dataline();
printf("RSN group cipher:%s\n", defcipher);
dataline();
printf("RSN pairwise ciphers:%s\n", defcipher);
return;
}
dataline();
printf("RSN group cipher:");
print_cipher(data);
printf("\n");
data += 4;
len -= 4;
if (len < 2) {
dataline();
printf("RSN pairwise ciphers:%s\n", defcipher);
return;
}
count = data[0] | (data[1] << 8);
if (2 + (count * 4) > len) {
goto invalid;
}
dataline();
printf("RSN pairwise ciphers:");
for (i = 0; i < count; i++) {
printf(",");
print_cipher(data + 2 + (i * 4));
}
printf("\n");
data += 2 + (count * 4);
len -= 2 + (count * 4);
if (len < 2) {
dataline();
printf("RSN authentication suites:%s\n", defauth);
return;
}
count = data[0] | (data[1] << 8);
if (2 + (count * 4) > len) {
goto invalid;
}
dataline();
printf("RSN authentication suites:");
for (i = 0; i < count; i++) {
printf(" ");
print_auth(data + 2 + (i * 4));
}
printf("\n");
data += 2 + (count * 4);
len -= 2 + (count * 4);
if (len >= 2) {
capa = data[0] | (data[1] << 8);
dataline();
printf("RSN capabilities:");
if (capa & 0x0001)
printf(" PreAuth");
if (capa & 0x0002)
printf(" NoPairwise");
switch ((capa & 0x000c) >> 2) {
case 0:
printf(" 1-PTKSA-RC");
break;
case 1:
printf(" 2-PTKSA-RC");
break;
case 2:
printf(" 4-PTKSA-RC");
break;
case 3:
printf(" 16-PTKSA-RC");
break;
}
switch ((capa & 0x0030) >> 4) {
case 0:
printf(" 1-GTKSA-RC");
break;
case 1:
printf(" 2-GTKSA-RC");
break;
case 2:
printf(" 4-GTKSA-RC");
break;
case 3:
printf(" 16-GTKSA-RC");
break;
}
if (capa & 0x0040)
printf(" MFP-required");
if (capa & 0x0080)
printf(" MFP-capable");
if (capa & 0x0200)
printf(" Peerkey-enabled");
if (capa & 0x0400)
printf(" SPP-AMSDU-capable");
if (capa & 0x0800)
printf(" SPP-AMSDU-required");
if (capa & 0x2000)
printf(" Extended-Key-ID");
printf(" (0x%.4x)", capa);
data += 2;
len -= 2;
printf("\n");
}
if (len >= 2) {
int pmkid_count = data[0] | (data[1] << 8);
if (len >= 2 + 16 * pmkid_count) {
dataline();
printf("RSN PMKID count: %d\n", pmkid_count);
/* not printing PMKID values */
data += 2 + 16 * pmkid_count;
len -= 2 + 16 * pmkid_count;
} else {
goto invalid;
}
}
if (len >= 4) {
dataline();
printf("RSN group mgmt cipher suite:");
print_cipher(data);
data += 4;
len -= 4;
printf("\n");
}
invalid:
if (len != 0) {
dataline();
printf("bogus tail data:%d", len);
while (len) {
printf(" %.2x", *data);
data++;
len--;
}
printf("\n");
}
}
// from iw source code
void print_rsn(const uint8_t type, uint8_t len, const uint8_t *data,
const struct print_ies_data *ie_buffer) {
print_rsn_ie("CCMP", "IEEE 802.1X", len, data);
}
// this struct is used to create a handler for specific magic values of
// IE (information element) in the wifi probe or beacon responses. From what
// I gather, each IE requires a bit different type of parsing, and what I do
// here is just directly copied from how iw does it. There's tons of magic
// values in the code, and I couldn't figure out where they are defined.
struct ie_print {
const char* name;
void (*print)(const uint8_t type, uint8_t len, const uint8_t *data,
const struct print_ies_data *ie_buffer);
uint8_t minlen;
uint8_t maxlen;
};
// This array size needs to be adjusted if magic values go beyond it. The array
// contains empty elements for each type of IE that is not handled and is only
// modified at those points where we have an IE handler. See how it is done in
// the beginning of main()
const int MAX_IE_MAGIC = 255;
struct ie_print ieprinters[MAX_IE_MAGIC];
// print a single IE parsed from a probe request or beacon response
static void print_ie(const struct ie_print *p, const uint8_t type, uint8_t len,
const uint8_t *data, const struct print_ies_data *ie_buffer) {
// If no printer function is defined for type of IE
if (p->print == NULL) {
return;
}
//printf(",%s:", p->name);
if (len < p->minlen || len > p->maxlen) {
if (len > 1) {
printf(",invalid %d bytes:", len);
} else if (len) {
printf(",invalid:1 byte %.02x>\n", data[0]);
} else {
printf(",invalid:no data");
}
return;
}
p->print(type, len, data, ie_buffer);
}
// Go through all information elements and print them if a printer for them is defined
void print_ies(unsigned char *ie, int ielen) {
if (ie == NULL || ielen < 0) {
return;
}
struct print_ies_data ie_buffer = {
.ie = ie,
.ielen = ielen
};
while (ielen >= 2 && ielen - 2 >= ie[1]) {
if (ie[0] < ARRAY_SIZE(ieprinters) && ieprinters[ie[0]].name) {
print_ie(&ieprinters[ie[0]], ie[0], ie[1], ie + 2, &ie_buffer);
}
ielen -= ie[1] + 2;
ie += ie[1] + 2;
}
}
// Called by the kernel when the scan is done or has been aborted
int scan_finished_cb(struct nl_msg* msg, void* arg) {
struct genlmsghdr* gnlh = (genlmsghdr*)nlmsg_data(nlmsg_hdr(msg));
struct init_scan_results* results = (init_scan_results*)arg;
if (gnlh->cmd == NL80211_CMD_SCAN_ABORTED) {
results->done = 1;
results->aborted = 1;
} else if (gnlh->cmd == NL80211_CMD_NEW_SCAN_RESULTS) {
results->done = 1;
results->aborted = 0;
}
// else probably an uninteresting multicast message.
return NL_SKIP;
}
// Called by the kernel with a dump of the successful scan's data. Called for each SSID.
int receive_scan_result(struct nl_msg *msg, void *arg) {
struct genlmsghdr* gnlh = (genlmsghdr*)nlmsg_data(nlmsg_hdr(msg));
// Container for netlink attribute indices, each pointing to different parts of the
// netlink message stream. These can be used to then parse further attributes from
// the stream. Go read netlink documentation and see if you have more luck
// understanding how the messaging works.
struct nlattr* tb[NL80211_ATTR_MAX + 1];
// container for parsing the access point's basic service set information (BSS)
struct nlattr* bss[NL80211_BSS_MAX + 1];
// container specifying the types and lengths of data to be parsed from the netlink
// message, I think. The whole message parsing side of netlink is confusing.
struct nla_policy bss_policy[NL80211_BSS_MAX + 1];
memset(bss_policy, 0, sizeof(bss_policy));
memset(bss, 0, sizeof(bss));
memset(tb, 0, sizeof(tb));
bss_policy[NL80211_BSS_TSF] = { .type = NLA_U64 };
bss_policy[NL80211_BSS_FREQUENCY] = { .type = NLA_U32 },
bss_policy[NL80211_BSS_BSSID] = { };
bss_policy[NL80211_BSS_BEACON_INTERVAL] = { .type = NLA_U16 };
bss_policy[NL80211_BSS_CAPABILITY] = { .type = NLA_U16 };
bss_policy[NL80211_BSS_INFORMATION_ELEMENTS] = { };
bss_policy[NL80211_BSS_SIGNAL_MBM] = { .type = NLA_U32 };
bss_policy[NL80211_BSS_SIGNAL_UNSPEC] = { .type = NLA_U8 };
bss_policy[NL80211_BSS_STATUS] = { .type = NLA_U32 };
bss_policy[NL80211_BSS_SEEN_MS_AGO] = { .type = NLA_U32 };
bss_policy[NL80211_BSS_BEACON_IES] = { };
int err = nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0), genlmsg_attrlen(gnlh, 0), NULL);
if (err < 0) {
printf("error creating attribute indices from scan message: %d, %s\n", err, nl_geterror(err));
return NL_SKIP;
}
if (!tb[NL80211_ATTR_BSS]) {
printf("bss info missing\n");
return NL_SKIP;
}
// BSS information is a nested attribute, so a second parse call is needed
err = nla_parse_nested(bss, NL80211_BSS_MAX, tb[NL80211_ATTR_BSS], bss_policy);
if (err < 0) {
printf("failed to parse nested attributes: %d, %s\n", err, nl_geterror(err));
return NL_SKIP;
}
// If BSSID or IE is missing, we can't parse anything beyond this point
if (!bss[NL80211_BSS_BSSID] || !bss[NL80211_BSS_INFORMATION_ELEMENTS]) {
return NL_SKIP;
}
memset(current_mac, '\0', sizeof(current_mac));
mac_addr_n2a(current_mac, (unsigned char*)nla_data(bss[NL80211_BSS_BSSID]));
printf("%s%s\n", DISCOVER_STR, current_mac);
if (bss[NL80211_BSS_SIGNAL_MBM]) {
dataline();
printf("signal strength:%d mBm\n", nla_get_u8(bss[NL80211_BSS_SIGNAL_MBM]));
} else if (bss[NL80211_BSS_SIGNAL_UNSPEC]) {
dataline();
printf("signal strength:%d units\n", nla_get_u8(bss[NL80211_BSS_SIGNAL_UNSPEC]));
}
if (bss[NL80211_BSS_FREQUENCY]) {
dataline();
printf("frequency:%d MHz\n", nla_get_u32(bss[NL80211_BSS_FREQUENCY]));
}
// Information element parsing is based entirely on iw source code. There's a ton of undocumented
// magic values going around, and I didn't really get an understanding how IE is bundled into
// scan responses, but it seems to be binary data of custom structure.
if (bss[NL80211_BSS_INFORMATION_ELEMENTS]) {
struct nlattr* ies = bss[NL80211_BSS_INFORMATION_ELEMENTS];
struct nlattr* bcnies = bss[NL80211_BSS_BEACON_IES];
if (bss[NL80211_BSS_PRESP_DATA] || (bcnies && (nla_len(ies) != nla_len(bcnies) ||
memcmp(nla_data(ies), nla_data(bcnies), nla_len(ies))))) {
}
print_ies((unsigned char*)nla_data(ies), nla_len(ies));
}
// There can be both beacon responses and probe requests in the same scan result, and they
// can contain the same data. This can result in duplicates being printed.
if (bss[NL80211_BSS_BEACON_IES]) {
print_ies((unsigned char*)nla_data(bss[NL80211_BSS_BEACON_IES]), nla_len(bss[NL80211_BSS_BEACON_IES]));
}
printf("\n");
return NL_SKIP;
}
int do_scan_trigger(struct nl_sock* socket, int if_index, int family_id) {
// Starts the scan and waits for it to finish.
// Does not return until the scan is done or has been aborted.
struct init_scan_results results = { .done = 0, .aborted = 0 };
struct nl_msg* msg = NULL;
struct nl_msg* ssids_to_scan = NULL;
struct nl_cb* cb = NULL;
int err;
int ret;
int mcid = -1;
std::shared_ptr<void> defer(nullptr, [&](...){
if (ssids_to_scan != NULL) {
nlmsg_free(ssids_to_scan);
}
if (msg != NULL) {
nlmsg_free(msg);
}
if (cb != NULL) {
nl_cb_put(cb);
}
if (mcid >= 0) {
nl_socket_drop_membership(socket, mcid);
}
});
mcid = genl_ctrl_resolve_grp(socket, "nl80211", "scan");
if (mcid < 0) {
printf("error resolving netlink group name to identifier: %d, %s\n",
mcid, nl_geterror(err));
return 1;
}
// join the netlink socket into the scan group resolved above
err = nl_socket_add_membership(socket, mcid);
if (err < 0) {
printf("error joining scan group: %d, %s\n", err, nl_geterror(err));
return 1;
}
// Allocate netlink messages with the default size
msg = nlmsg_alloc();
ssids_to_scan = nlmsg_alloc();
if (msg == NULL || ssids_to_scan == NULL) {
printf("Failed allocating netlink message\n");
return 1;
}
// allocate a callback handle with default quiet callback type
cb = nl_cb_alloc(NL_CB_DEFAULT);
if (!cb) {
printf("Failed allocating callback\n");
return 1;
}
// Setup the messages and callback handler.
// Construct message header
// I think this function returns something relevant only if the user_header parameter
// is specified as non-zero? I have no idea.
genlmsg_put(msg, NL_AUTO_PORT, NL_AUTO_SEQ, family_id, 0, 0, NL80211_CMD_TRIGGER_SCAN, 0);
// Add message attribute specifying which interface to use.
nla_put_u32(msg, NL80211_ATTR_IFINDEX, if_index);
// Scan all SSIDs
// TODO: what are these values?
nla_put(ssids_to_scan, 1, 0, "");
// Add message attribute specifiying which SSIDs to scan for
nla_put_nested(msg, NL80211_ATTR_SCAN_SSIDS, ssids_to_scan);
// Copied to msg above, no longer need this
nlmsg_free(ssids_to_scan);
ssids_to_scan = NULL;
// Add callbacks - apparently the same callback handle is used for all of them?
ret = nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, scan_finished_cb, &results);
if (ret < 0) {
printf("Failed setting NL_CB_VALID callback: %d, %s\n", ret, nl_geterror(ret));
return 1;
}
ret = nl_cb_err(cb, NL_CB_CUSTOM, error_handler, &err);
if (ret < 0) {
printf("Failed setting NL_CB_CUSTOM callback: %d, %s\n", ret, nl_geterror(ret));;
return 1;
}
ret = nl_cb_set(cb, NL_CB_FINISH, NL_CB_CUSTOM, finish_handler, &err);
if (ret < 0) {
printf("Failed setting NL_CB_FINISH callback: %d, %s\n", ret, nl_geterror(ret));
return 1;
}
int ack_got = 0;
ret = nl_cb_set(cb, NL_CB_ACK, NL_CB_CUSTOM, ack_handler, &ack_got);
if (ret < 0) {
printf("Failed setting NL_CB_ACK callback: %d, %s\n", ret, nl_geterror(ret));
return 1;
}
// No sequence checking for multicast messages
ret = nl_cb_set(cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM, no_seq_check, NULL);
if (ret < 0) {
printf("Failed setting NL_CB_ACK callback: %d, %s\n", ret, nl_geterror(ret));
return 1;
}
// reset error flag
err = 1;
// Send NL80211_CMD_TRIGGER_SCAN to start the scan.
// The kernel may reply with NL80211_CMD_NEW_SCAN_RESULTS on success or
// NL80211_CMD_SCAN_ABORTED if another scan was started by another process.
int written = nl_send_auto(socket, msg);
if (written < 0) {
printf("error in nl_send_auto: %d, %s\n", written, nl_geterror(written));
return 1;
}
printf("nl_send_auto wrote %d bytes\n", written);
printf("Waiting for scan to complete\n");
// wait for NL_CB_ACK
while (ack_got != 0) {
ret = nl_recvmsgs(socket, cb);
if (ret < 0) {
printf("nl_recvmsgs returned error: %d, %s\n", ret, nl_geterror(ret));
return 1;
}
}
if (err < 0) {
printf("error flag set during message transmission: %d, %s\n", err, nl_geterror(err));
return 1;
}
while (results.done != 1) {
// Now wait until the scan is done or aborted
nl_recvmsgs(socket, cb);
}
if (results.aborted == 1) {
printf("scan was aborted\n");
return 1;
}
printf("Scan is done\n");
return 0;
}
int main(int argc, char** argv) {
if (argc < 2) {
printf("usage: programname wifi_adapter_name\nie: ./programname wlp2s0.\n");
return 1;
}
// Specify information element parsers. I don't know where one finds what these
// magic values are supposed to be. They are copied from iw source.
memset(ieprinters, 0, sizeof(ieprinters));
ieprinters[0] = { "SSID", print_ssid, 0, 32 };
ieprinters[48] = { "RSN", print_rsn, 2, 255, };
memset(current_mac, '\0', sizeof(current_mac));
const char* ifname = argv[1];
printf("Using interface: %s\n", ifname);
int if_index = if_nametoindex(ifname);
if (if_index == 0) {
printf("error matching interface %s into a real interface: %d, %s\n",
ifname, errno, strerror(errno));
return 1;
}
// Allocate a netlink socket
struct nl_sock* nlsocket = nl_socket_alloc();
if (nlsocket == NULL) {
printf("Failed allocating nl socket\n");
return 1;
}
struct nl_msg* msg = NULL;
// cleanup when falling out of scope
std::shared_ptr<void> defer(nullptr, [&](...){
if (nlsocket) {
nl_socket_free(nlsocket);
nlsocket = NULL;
}
if (msg) {
nlmsg_free(msg);
}
});
// Connect the allocated socket to libnl
int err = genl_connect(nlsocket);
if (err < 0) {
printf("Error connecting nl socket: %d, %s\n", err, nl_geterror(err));
return 1;
}
// Match the nl80211 netlink family name to its identifier
int family_id = genl_ctrl_resolve(nlsocket, "nl80211");
if (family_id < 0) {
printf("error finding identifier for nl80211 family name: %d, %s\n",
family_id, nl_geterror(family_id));
return 1;
}
// Issue NL80211_CMD_TRIGGER_SCAN to the kernel and wait for it to finish
err = do_scan_trigger(nlsocket, if_index, family_id);
if (err != 0) {
printf("do_scan_trigger() failed with %d\n", err);
return 1;
}
// get info for all SSIDs detected
msg = nlmsg_alloc();
// Setup which command to run
genlmsg_put(msg, 0, 0, family_id, 0, NLM_F_DUMP, NL80211_CMD_GET_SCAN, 0);
// Add message attribute specifying which interface to use
nla_put_u32(msg, NL80211_ATTR_IFINDEX, if_index);
// Add callback for getting data
nl_socket_modify_cb(nlsocket, NL_CB_VALID, NL_CB_CUSTOM, receive_scan_result, NULL);
// Send the message
int ret = nl_send_auto(nlsocket, msg);
if (ret < 0) {
printf("nl_send_auto() failed with: %d, %s\n", ret, nl_geterror(ret));
return 1;
}
// wait for the message to go through
ret = nl_recvmsgs_default(nlsocket);
// TODO: handle invalid number of bytes written
if (ret < 0) {
printf("ERROR: nl_recvmsgs_default() failed with %d, %s\n", ret, nl_geterror(ret));
return 1;
}
return 0;
}