I'm running Android 4.4.2 and I enabled the "Bluetooth HCI snoop log" as described here Sniffing/logging your own Android Bluetooth traffic
After turning bluetooth on and off I rebooted the phone. I could not find the log file in the expected location:
$ adb pull /sdcard/btsnoop_hci.log
remote object '/sdcard/btsnoop_hci.log' does not exist
How can I get to the btsnoop_hci.log?
These logs capture the Host Controller Interface (HCI) packets. For most Android devices, the logs are stored in data/misc/bluetooth/logs .
Bluetooth HCI Snoop Log is a Bluetooth protocol log that keeps track of data sent and received by your Android device. In the USD root or SD storage of your device, you'll find the Btsnoop_hci. log file. For access to the file, you must use network protocol analysis software such as Wireshark.
The BTSnoop file format is suitable for storing Bluetooth® HCI traffic. It closely resembles the snoop format, as documented in RFC 1761. File Format.
UPDATE: The btsnoop hci log seems to be getting phased out of the user-accessible areas on a lot of phones. Assuming you have hci logging enabled, you can get a bugreport
adb bugreport anewbugreportfolder
Then decompress the folder. If you're lucky there is an 'FS' folder that contains the btsnoop_hci.log log several layers down (not sure why some phones have this and some don't.) If you don`t have it, grab the bug report text file that looks like this
bugreport-2018-08-01-15-08-01.txt
Run btsnooz.py against it. Per Google`s instructions,
To extract snoop logs from the bug report, use the btsnooz script.
Get btsnooz.py.
Extract the text version of the bug report.
Run btsnooz.py on the text version of the bug report:
btsnooz.py BUG_REPORT.txt > BTSNOOP.log
As of 1/12/21 the link to btsnooz is here: https://android.googlesource.com/platform/packages/modules/Bluetooth/+/refs/heads/master/system/tools/scripts/btsnooz.py
LEGACY ANSWER:
You can see where your phone is storing the hci log by reading the bt_stack.conf file. Try
adb shell cat /etc/bluetooth/bt_stack.conf
You will see a line that looks like
# BtSnoop log output file
BtSnoopFileName =/sdcard/btsnoop_hci.log <--your file location
It is usually, but not always (depends on the phone) on the root of the sdcard. There is also a line in this configuration file which may reflect if hci logging is actually on or not
# EnableBtSnoop logging function
# valid value : true , false
BtSnoopLogOutput=false
Toggling the 'Enable Bluetooth HCI snoop log' option in the developer options should change it to
# EnableBtSnoop logging function
# valid value : true , false
BtSnoopLogOutput=true
I say "should" because for some phones this doesn't update this file. You should:
BtSnoopLogOutput=true
If none of the 3 options work, you're out of luck. BT Snoop hci logging is a bit inconsistent across different phones. I've seen a few phones where I just couldn't get it to work not matter what but for the most cases you should be able to get it going. A rooted phone is not a requirement.
On Nexus 5X and Pixel C Android O you have to enable bluetooth, enable HCI snooping in developer settings, disable and reenable bluetooth and reboot.
After that you can get the log by going to developer settings and "take bug report" and get a full log.
The file bt_stack.conf is not changed and there is no new file on /sdcard as on other devices
For a user version Pixel/Nexus, you may not have the permission to pull out /data/misc/bluetooth/logs/btsnoop_hci.log. You can get the hci log like this:
adb shell dumpsys bluetooth_manager
adb bugreport > BUG_REPORT.txt
You will get a BUG_REPORT.txt and zip file. HCI log will be found under FS\data\misc\bluetooth\logs of the zip file.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With