Android 5 static bluetooth MAC address for BLE advertising
Asked Answered
O

2

15

Android 5 introduces BLE MAC address rotating for increased privacy. Every time when calling BluetoothLeAdvertiser.startAdvertising(), the MAC-address is changed.

Is it possible to disable address rotating, and just use the same MAC address during the entire lifetime of BluetoothLeAdvertiser?

Operose answered 19/2, 2015 at 9:26 Comment(0)
T
19

The MAC Address is a physical address and does not change. In BLE terminology, it is the Public Device Address or BD_ADDR for BR/EDR. I haven't tried it, but reading it with readAddress() should return the same value each time.

What the Android's BLE framework does is NOT use that address when advertising. It rather enables privacy by using Private Resolvable Addresses which may change every few minutes or so but still allow bonded devices to recognize it using the IRK exchanged at bonding.

For obvious privacy reasons, Android's BLE framework does not allow you to set the Controller to use the public address when advertising. So you cannot disable the "address rotating".

Theodore answered 19/2, 2015 at 17:6 Comment(4)
Could you add some sort of source?Bouffard
Bluetooth 4.2 Core Spec: bluetooth.org/DocMan/handlers/DownloadDoc.ashx?doc_id=286439Theodore
@BogdanAlexandru if the advertisement packets only has the Private Resolvable Addresses, then, how does a ScanFilter based on MAC addresses work? any idea?Exhibition
@KhaledAlanezi It doesn't. The only way to filter for the resolvable addresses it by using 4.2's Enhanced Privacy feature, where you set the IRK into the controller and the latter resolves automatically during scanning. However, like many other things, I don't think these options are available in Android's public API.Theodore
R
3

You can disable the BLE Privacy Feature to avoid the MAC address rotating, and change the bluedroid source code as follows:

http://androidxref.com/5.1.1_r6/xref/external/bluetooth/bluedroid/include/bt_target.h#1326

    * Toggles support for general LE privacy features such as remote address
    * resolution, local address rotation etc.
    */

    #ifndef BLE_PRIVACY_SPT 
    -#define BLE_PRIVACY_SPT         TRUE
    +#define BLE_PRIVACY_SPT         FALSE
    #endif
Rosalinarosalind answered 19/1, 2017 at 8:15 Comment(1)
FLASE? Come on, mate :)Newburg

© 2022 - 2024 — McMap. All rights reserved.