2018-04-02 01:30:24 +02:00
|
|
|
|
|
|
|
// Basic Config
|
|
|
|
#include "globals.h"
|
|
|
|
|
|
|
|
#ifdef BLECOUNTER
|
2018-04-02 14:34:16 +02:00
|
|
|
#include <BLEDevice.h>
|
|
|
|
#include <BLEUtils.h>
|
|
|
|
#include <BLEScan.h>
|
|
|
|
#include <BLEAdvertisedDevice.h>
|
2018-04-02 01:30:24 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef VENDORFILTER
|
2018-04-02 14:34:16 +02:00
|
|
|
#include <array>
|
|
|
|
#include <algorithm>
|
|
|
|
#include "vendor_array.h"
|
2018-04-02 01:30:24 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Local logging tag
|
|
|
|
static const char *TAG = "macsniff";
|
|
|
|
|
|
|
|
static wifi_country_t wifi_country = {.cc=WIFI_MY_COUNTRY, .schan=WIFI_CHANNEL_MIN, .nchan=WIFI_CHANNEL_MAX, .policy=WIFI_COUNTRY_POLICY_MANUAL};
|
|
|
|
|
|
|
|
uint16_t currentScanDevice = 0;
|
2018-04-04 12:45:31 +02:00
|
|
|
uint16_t salt;
|
|
|
|
|
|
|
|
uint16_t salt_reset(void) {
|
|
|
|
salt = random(65536); // get new 16bit random for salting hashes
|
|
|
|
return salt;
|
|
|
|
}
|
2018-04-02 01:30:24 +02:00
|
|
|
|
|
|
|
bool mac_add(uint8_t *paddr, int8_t rssi, bool sniff_type) {
|
|
|
|
|
2018-04-05 08:48:08 +02:00
|
|
|
char buff[16]; // temporary buffer for printf
|
2018-04-03 13:18:31 +02:00
|
|
|
bool added = false;
|
2018-04-04 12:45:31 +02:00
|
|
|
uint32_t addr2int;
|
2018-04-02 09:30:03 +02:00
|
|
|
uint32_t vendor2int;
|
|
|
|
uint16_t hashedmac;
|
2018-04-02 01:30:24 +02:00
|
|
|
|
2018-04-05 21:47:43 +02:00
|
|
|
// only last 3 MAC Address bytes are used for MAC Address Anonymization
|
2018-04-05 14:33:30 +02:00
|
|
|
// but since it's uint32 we take 4 bytes to avoid 1st value to be 0
|
|
|
|
addr2int = ( (uint32_t)paddr[2] ) | ( (uint32_t)paddr[3] << 8 ) | ( (uint32_t)paddr[4] << 16 ) | ( (uint32_t)paddr[5] << 24 );
|
2018-04-02 01:30:24 +02:00
|
|
|
|
|
|
|
#ifdef VENDORFILTER
|
2018-04-02 14:34:16 +02:00
|
|
|
vendor2int = ( (uint32_t)paddr[2] ) | ( (uint32_t)paddr[1] << 8 ) | ( (uint32_t)paddr[0] << 16 );
|
|
|
|
// No vendor filter for BLE
|
|
|
|
if ( (sniff_type==MAC_SNIFF_BLE) || std::find(vendors.begin(), vendors.end(), vendor2int) != vendors.end() ) {
|
2018-04-02 01:30:24 +02:00
|
|
|
#endif
|
|
|
|
|
2018-04-02 09:30:03 +02:00
|
|
|
// salt and hash MAC, and if new unique one, store identifier in container and increment counter on display
|
|
|
|
// https://en.wikipedia.org/wiki/MAC_Address_Anonymization
|
|
|
|
|
2018-04-05 14:33:30 +02:00
|
|
|
addr2int += (uint32_t) salt; // add 16-bit salt to pseudo MAC
|
2018-04-04 18:02:30 +02:00
|
|
|
snprintf(buff, sizeof(buff), "%08X", addr2int); // convert unsigned 32-bit salted MAC to 8 digit hex string
|
2018-04-05 14:33:30 +02:00
|
|
|
hashedmac = rokkit(&buff[3], 5); // hash MAC last string value, use 5 chars to fit hash in uint16_t container
|
2018-04-04 14:23:02 +02:00
|
|
|
auto newmac = macs.insert(hashedmac); // add hashed MAC to total container if new unique
|
|
|
|
added = newmac.second ? true:false; // true if hashed MAC is unique in container
|
2018-04-02 02:59:55 +02:00
|
|
|
|
2018-04-05 16:26:25 +02:00
|
|
|
// Insert only if it was not found on global count
|
|
|
|
if (added) {
|
|
|
|
if (sniff_type == MAC_SNIFF_WIFI ) {
|
|
|
|
rgb_set_color(COLOR_GREEN);
|
|
|
|
wifis.insert(hashedmac); // add hashed MAC to wifi container if new unique
|
|
|
|
} else if (sniff_type == MAC_SNIFF_BLE ) {
|
|
|
|
rgb_set_color(COLOR_MAGENTA);
|
|
|
|
bles.insert(hashedmac); // add hashed MAC to BLE container if new unique
|
|
|
|
}
|
|
|
|
// Not sure user will have time to see the LED
|
|
|
|
// TBD do light off further in the code
|
2018-04-03 21:26:51 +02:00
|
|
|
rgb_set_color(COLOR_NONE);
|
2018-04-05 16:26:25 +02:00
|
|
|
}
|
|
|
|
|
2018-04-05 14:33:30 +02:00
|
|
|
ESP_LOGI(TAG, "%s RSSI %ddBi -> MAC %s -> Hash %04X -> WiFi:%d BLE:%d %s",
|
2018-04-05 16:26:25 +02:00
|
|
|
sniff_type==MAC_SNIFF_WIFI ? "WiFi":"BLE ",
|
|
|
|
rssi, buff, hashedmac,
|
2018-04-05 14:33:30 +02:00
|
|
|
(int) wifis.size(), (int) bles.size(),
|
2018-04-05 16:26:25 +02:00
|
|
|
added ? "New" : "Already seen");
|
2018-04-02 01:30:24 +02:00
|
|
|
|
|
|
|
#ifdef VENDORFILTER
|
|
|
|
} else {
|
|
|
|
// Very noisy
|
|
|
|
//ESP_LOGI(TAG, "Filtered MAC %02X:%02X:%02X:%02X:%02X:%02X", paddr[0],paddr[1],paddr[2],paddr[3],paddr[5],paddr[5]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-04-02 14:34:16 +02:00
|
|
|
// True if MAC WiFi/BLE was new
|
2018-04-03 13:18:31 +02:00
|
|
|
return added; // function returns bool if a new and unique Wifi or BLE mac was counted (true) or not (false)
|
2018-04-02 01:30:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef BLECOUNTER
|
|
|
|
|
|
|
|
class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks {
|
|
|
|
void onResult(BLEAdvertisedDevice advertisedDevice) {
|
2018-04-05 08:48:08 +02:00
|
|
|
int lastcount = (int) macs.size();
|
2018-04-02 01:30:24 +02:00
|
|
|
uint8_t *p = (uint8_t *) advertisedDevice.getAddress().getNative();
|
2018-04-06 18:19:10 +02:00
|
|
|
|
|
|
|
/* to be done here:
|
|
|
|
#ifdef VENDORFILTER
|
|
|
|
|
|
|
|
filter BLE devices using their advertisements to get second filter additional to vendor OUI
|
|
|
|
if vendorfiltering is on, we ...
|
|
|
|
- want to count: mobile phones and tablets
|
|
|
|
- don't want to count: beacons, peripherals (earphones, headsets, printers), cars and machines
|
|
|
|
see
|
|
|
|
https://github.com/nkolban/ESP32_BLE_Arduino/blob/master/src/BLEAdvertisedDevice.cpp
|
|
|
|
|
|
|
|
http://www.libelium.com/products/meshlium/smartphone-detection/
|
|
|
|
|
2018-04-06 21:34:25 +02:00
|
|
|
http://dev.ti.com/tirex/content/simplelink_academy_cc2640r2sdk_1_12_01_16/modules/ble_scan_adv_basic/ble_scan_adv_basic.html
|
|
|
|
|
2018-04-06 18:19:10 +02:00
|
|
|
"The Class of Device (CoD) in case of Bluetooth which allows us to differentiate the type of
|
|
|
|
device (smartphone, handsfree, computer, LAN/network AP). With this parameter we can
|
|
|
|
differentiate among pedestrians and vehicles."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2018-04-02 01:30:24 +02:00
|
|
|
// Current devices seen on this scan session
|
|
|
|
currentScanDevice++;
|
2018-04-06 17:52:24 +02:00
|
|
|
u8x8.setCursor(11,3);
|
|
|
|
u8x8.printf("%-4d", currentScanDevice);
|
|
|
|
// add this device and show new count total if it was not previously added
|
2018-04-05 08:48:08 +02:00
|
|
|
if ( mac_add(p, advertisedDevice.getRSSI(), MAC_SNIFF_BLE) ) {
|
|
|
|
char buff[16];
|
2018-04-06 17:19:37 +02:00
|
|
|
snprintf(buff, sizeof(buff), "PAX:%-4d", (int) macs.size()); // convert 16-bit MAC counter to decimal counter value
|
2018-04-05 08:48:08 +02:00
|
|
|
u8x8.draw2x2String(0, 0, buff); // display number on unique macs total Wifi + BLE
|
|
|
|
}
|
2018-04-02 01:30:24 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void BLECount() {
|
2018-04-03 13:18:31 +02:00
|
|
|
ESP_LOGI(TAG, "BLE scan started");
|
2018-04-02 01:30:24 +02:00
|
|
|
currentScanDevice = 0; // Set 0 seen device on this scan session
|
2018-04-06 17:19:37 +02:00
|
|
|
u8x8.drawString(0,3,"Scanning->");
|
|
|
|
BLEDevice::init(""); // we don't want to be seen by a name
|
2018-04-02 01:30:24 +02:00
|
|
|
BLEScan* pBLEScan = BLEDevice::getScan(); //create new scan
|
|
|
|
pBLEScan->setAdvertisedDeviceCallbacks(new MyAdvertisedDeviceCallbacks());
|
2018-04-06 17:52:24 +02:00
|
|
|
pBLEScan->setActiveScan(false); // An active scan would mean that we will wish a scan response.
|
2018-04-06 21:34:25 +02:00
|
|
|
pBLEScan->setWindow(BLESCANWINDOW);
|
|
|
|
pBLEScan->setInterval(BLESCANINTERVAL);
|
2018-04-06 17:52:24 +02:00
|
|
|
BLEScanResults foundDevices = pBLEScan->start(cfg.blescantime); // note: this is a blocking call
|
2018-04-04 14:23:02 +02:00
|
|
|
int blenum=foundDevices.getCount();
|
|
|
|
ESP_LOGI(TAG, "BLE scan done, seen %d device(s)", blenum);
|
2018-04-02 01:30:24 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void wifi_sniffer_init(void) {
|
2018-04-02 09:30:03 +02:00
|
|
|
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
|
|
|
|
cfg.nvs_enable = 0; // we don't need any wifi settings from NVRAM
|
|
|
|
wifi_promiscuous_filter_t filter = {.filter_mask = WIFI_PROMIS_FILTER_MASK_MGMT}; // we need only MGMT frames
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_init(&cfg)); // configure Wifi with cfg
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_set_country(&wifi_country)); // set locales for RF and channels
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_set_storage(WIFI_STORAGE_RAM)); // we don't need NVRAM
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_set_mode(WIFI_MODE_NULL));
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_set_promiscuous_filter(&filter)); // set MAC frame filter
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_set_promiscuous_rx_cb(&wifi_sniffer_packet_handler));
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_set_promiscuous(true)); // now switch on monitor mode
|
2018-04-02 01:30:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void wifi_sniffer_set_channel(uint8_t channel) {
|
|
|
|
esp_wifi_set_channel(channel, WIFI_SECOND_CHAN_NONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void wifi_sniffer_packet_handler(void* buff, wifi_promiscuous_pkt_type_t type) {
|
|
|
|
const wifi_promiscuous_pkt_t *ppkt = (wifi_promiscuous_pkt_t *)buff;
|
|
|
|
const wifi_ieee80211_packet_t *ipkt = (wifi_ieee80211_packet_t *)ppkt->payload;
|
|
|
|
const wifi_ieee80211_mac_hdr_t *hdr = &ipkt->hdr;
|
|
|
|
|
|
|
|
if (( cfg.rssilimit == 0 ) || (ppkt->rx_ctrl.rssi > cfg.rssilimit )) { // rssi is negative value
|
|
|
|
uint8_t *p = (uint8_t *) hdr->addr2;
|
|
|
|
mac_add(p, ppkt->rx_ctrl.rssi, MAC_SNIFF_WIFI) ;
|
|
|
|
} else {
|
2018-04-04 14:23:02 +02:00
|
|
|
ESP_LOGI(TAG, "WiFi RSSI %d -> ignoring (limit: %d)", ppkt->rx_ctrl.rssi, cfg.rssilimit);
|
2018-04-02 01:30:24 +02:00
|
|
|
}
|
2018-04-06 16:09:01 +02:00
|
|
|
//yield();
|
2018-04-02 01:30:24 +02:00
|
|
|
}
|
|
|
|
|