Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

corebluetooth scanner does not check on None vallue address #1523

Closed
rrooggiieerr opened this issue Mar 15, 2024 · 10 comments · Fixed by #1539
Closed

corebluetooth scanner does not check on None vallue address #1523

rrooggiieerr opened this issue Mar 15, 2024 · 10 comments · Fixed by #1539
Labels
Backend: Core Bluetooth Issues and PRs relating to the Core Bluetooth backend bug Something isn't working

Comments

@rrooggiieerr
Copy link
Contributor

rrooggiieerr commented Mar 15, 2024

  • bleak version: 0.21.1
  • Python version: 3.11.8
  • Operating System: MacOS Sonoma 14.3
  • BlueZ version (bluetoothctl -v) in case of Linux:

Description

The following exception was logged on my local Home Assistance instance:

2024-03-15 12:21:46.815 ERROR (MainThread) [homeassistant] Error doing job: Exception in callback CentralManagerDelegate.did_discover_peripheral(<CBCentralMan...x60000154d5e0>, <CBPeripheral... disconnected>, {
    kCBAdvD...rLevel = 12;
}, -103)
Traceback (most recent call last):
  File "/opt/homebrew/Cellar/[email protected]/3.11.8/Frameworks/Python.framework/Versions/3.11/lib/python3.11/asyncio/events.py", line 84, in _run
    self._context.run(self._callback, *self._args)
  File "/Users/rogier/workspaces/HomeAssistant/homeassistant-core/venv/lib/python3.11/site-packages/bleak/backends/corebluetooth/CentralManagerDelegate.py", line 265, in did_discover_peripheral
    callback(peripheral, advertisementData, RSSI)
  File "/Users/rogier/workspaces/HomeAssistant/homeassistant-core/venv/lib/python3.11/site-packages/bleak/backends/corebluetooth/scanner.py", line 133, in callback
    address = address_bytes.hex(":").upper()
              ^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'hex'

address_bytes is not checked on being None

What I Did

Just running Home Assistant

Logs

See above

@dlech
Copy link
Collaborator

dlech commented Mar 15, 2024

What is the macOS version?

@dlech dlech added bug Something isn't working Backend: Core Bluetooth Issues and PRs relating to the Core Bluetooth backend labels Mar 15, 2024
@rrooggiieerr
Copy link
Contributor Author

Sonoma 14.3

@dlech
Copy link
Collaborator

dlech commented Mar 15, 2024

I don't know what else could be done here besides raise an error with a more useful message. We can't allow None otherwise there would be no way to tell devices apart. This is using an undocumented feature of macOS which is subject to change or be removed without notice. Bleak doesn't use this by default, but Home Assistant is opting in to using the risky feature. It would probably be better if Home Assistant didn't do this to begin with.

@rrooggiieerr
Copy link
Contributor Author

I understand the undocumented nature of the implementation. My thought would be to check on None value to prevent the AttributeError and just ignore the device if None. Something like:

                address_bytes: bytes = (
                    self._manager.central_manager.retrieveAddressForPeripheral_(p)
                )
                if address_bytes is None:
                    logger.warning("NoneType device address")
                    return
                address = address_bytes.hex(":").upper()

@dlech
Copy link
Collaborator

dlech commented Mar 15, 2024

Is it only some devices but not all devices that return None?

@rrooggiieerr
Copy link
Contributor Author

Seems to be only incidental. And I don't know which device. I'm receiving successful updates from my BLE devices

@dlech
Copy link
Collaborator

dlech commented Mar 15, 2024

If that is the case, then I would take a pull request with the change you suggest. It probably just needs to be logger.debug though and maybe we could include the peripheral ID in the message so we can see what device it is. Maybe it just takes a while to resolve the Bluetooth address and subsequent calls return non-None.

logger.debug("Could not get Bluetooth address for %s. Ignoring this device.", p.identifier().UUIDString())

@rrooggiieerr
Copy link
Contributor Author

rrooggiieerr commented Mar 15, 2024

Ok, fair enough. But I don't have a bleak development environment setup, and don't like to create an untested pull request, even though I'm quite confident it would resolve the matter. Also it's quite difficult to test since the sporadic nature of the None type address. But if you're fine with an untested pull request I'll go ahead.

@dlech
Copy link
Collaborator

dlech commented Mar 15, 2024

Can you test by editing your Home Assistant install?

@rrooggiieerr
Copy link
Contributor Author

I would not know how to reproduce the issue, it happened only once in the last 8 hours

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Backend: Core Bluetooth Issues and PRs relating to the Core Bluetooth backend bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants