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

Add Bumble as BLE backend #15

Open
JPHutchins opened this issue Apr 9, 2024 · 12 comments
Open

Add Bumble as BLE backend #15

JPHutchins opened this issue Apr 9, 2024 · 12 comments
Labels
enhancement New feature or request

Comments

@JPHutchins
Copy link
Collaborator

JPHutchins commented Apr 9, 2024

https://google.github.io/bumble/index.html

Having multiple BLE backends available is comprised of a few steps:

  1. Add HW unit tests that perform SMP BLE operations
  2. Define the common protocol required for an SMP BLE transport
  3. Implement the protocol with Bleak and confirm no regression
  4. Implement the protocol with Bumble and add to the HW unit tests

HW that I currently have available for HW unit tests:

  • nrf52dk 52832
  • nrf52dk 52840
  • adafruit feather nrf52840

I also have a Boradcom BCM2070 USB BLE dongle (Plugable brand) that would be a good candidate for testing Bumble.

Sadly HW tests cannot run in GitHub workflow because this is a public repo: https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#self-hosted-runner-security

I'd love to find a way!

@JPHutchins JPHutchins added the enhancement New feature or request label Apr 9, 2024
@vChavezB
Copy link

vChavezB commented Jul 23, 2024

Hi @JPHutchins , Im not sure if this would be of interest but I added sometime ago support to use bumble with native posix in Zephyr. More specifically, I added an HCI TCP channel that allows an application (e.g. Android Emulator, Bleak, bumble) to communicate over a virtual channel.

This means that in theory some SMP BLE commands could be tested without hardware directly with Zephyr´s BLE SMP Transport. The limitation is that you need a linux host that is compiled with Bluetooth support (not possible with native github runners). For CI this means a dedicated machine.

@JPHutchins
Copy link
Collaborator Author

It seems not very likely, but my preferred approach will be to add Bumble as a backend for Bleak: hbldh/bleak#1588

@vChavezB
Copy link

that sounds like a nice approach as it would also allow to do integration tests without hardware!

@vChavezB
Copy link

vChavezB commented Jul 23, 2024

Attached just a small test I did. Bumble controller over VHCI.

Perhaps not that practical as image management depends on MCUBoot which is not supported by native posix.

bumble_vhci_zephyr_posix.mp4

@JPHutchins
Copy link
Collaborator Author

Whoa, this is amazing! And you're 100% the GitHub runner can't run it?

@JPHutchins
Copy link
Collaborator Author

Evil question: could I host that VHCI myself and have the GitHub runner talk to remotely?

@vChavezB
Copy link

vChavezB commented Jul 23, 2024

This is more or less the setup

graph LR
    A[Zephyr\nposix app] <-->|socket| B[Bumble\nController]<--> C[VHCI]<-->|Bluez dbus| D[Bleak]
Loading

And you're 100% the GitHub runner can't run it?

Yes, the github runner image (ubuntu) does not have the vhci linux module enabled. This requires that the kernel has enabled CONFIG_BT.

could I host that VHCI myself and have the GitHub runner talk to remotely?

As I understand it, the VHCI is just a file descriptor, so I think you could just add it as a remote service, perhaps accessible with github secrets. Then add a custom bumble transport so bumble can access it or instead just make the bumble controller remotely accessible.

graph LR
    subgraph Self-hosted vhci
     
        C[VHCI]
    end
    
    subgraph Runner
            D[Bleak]
            B[Bumble\nController]
        A[Zephyr\nposix app] 
    end
    
    A <-->|socket| B <--> |remote\nsocket| C
    D <-->|remote\nDBus ?| C
Loading

Edit: Just some minor changes on what I think could be done with non-self-hosted github runners.

But to be honest for practical reasons I would host my own runners (Gitlab, Github, etc).

@vChavezB
Copy link

Just another thought, perhaps for the HW runners you could just add a Web hook so your local server runs the test for a specific commit, then reports back the result. How the result is reported back is up to you.

@JPHutchins
Copy link
Collaborator Author

This is a good idea as it gives more control. Yet, the goal is for contributors to be able to run a suite of hardware integration tests, and that still opens me up to arbitrary code execution. Specifically, I want to run the hardware integration tests at the contributors' commit, and they could simply commit whatever they want so that Python runs something nasty on import.

There's the possibility of manual review + run, though. I'd only submit the HW integration workflow once it's clear that the commit is OK.

It's a good idea!

@vChavezB
Copy link

vChavezB commented Nov 13, 2024

I have been experimenting with my bumble backend for bleak and renode.

After some modifications and tinkering around with renode, I am able to emulate firmware (nrf52840) upgrades over BLE with smp client and renode. No batteries required (or in this case no Hardware) 😎

demo_renode.1.mp4

I am typically able to get around 9 KB/s transfer speed, but seems that for the video the emulation performance degraded.

What I am doing is uploading the binary, write image for test , resetting the device, wait for mcuboot to do the swap and check that the version changed.

@JPHutchins
Copy link
Collaborator Author

I have been experimenting with my bumble backend for bleak and renode.

After some modifications and tinkering around with renode, I am able to emulate firmware (nrf52840) upgrades over BLE with smp client and renode. No batteries required (or in this case no Hardware) 😎

demo_renode.1.mp4

I am typically able to get around 9 KB/s transfer speed, but seems that for the video the emulation performance degraded.

What I am doing is uploading the binary, write image for test , resetting the device, wait for mcuboot to do the swap and check that the version changed.

Wow, this is incredible! I haven't tried Renode yet, partially because it sounded "too good to be true" - what do you think about it?

We are maintaining HW regression tests here, https://github.com/intercreate/smpclient/tree/main/examples, they may be useful.

I'd love to get this working in a GitHub workflow at smpclient.

Reminds me to review the Bleak PR again.

@vChavezB
Copy link

vChavezB commented Nov 13, 2024

what do you think about it?

I think that it is a quite handy tool if the peripherals you are interested are supported. You can also write your own drivers (C# and Iron Python). For Bluetooth I find it quite nice (with certain limitations) to emulate connection between different MCUs.

Renode doesnt support exposing a bluetooth radio PHY over a port. I had to use an HCI UART in my Zephyr App and expose this over a port in renode. Then I connected it to the bumble bleak backend.

I tried doing firmware upgrade with the NRF Connect app with Android emulator over bumble but it did not work. The transmission always failed midway. Probably have to tinker with emulation settings.

I'd love to get this working in a GitHub workflow at smpclient.

The integration was not straight forward. I had to develop my own Renode drivers as the Flash controller is not supported. With out it, mcuboot does not work. If you just want to test communication (without bootloader) I think you dont need the extra drivers. In addition I had to tweak with emulation settings to make bluetooth work nicely. If I have some time I will send a PR to the folks of Renode to get support for the Flash controller.

I am currently running this in a pipeline and it works. However, I need to sync the execution of renode and smp client. If the firmware in renode starts too fast and bumble hasnt started yet it will crash as the BT host from zephyr (emulated in renode) will assert.

If I find a nicer way to make it run on a pipeline stabily I will keep you updated. There is a renode python library but so far I havent been able to make it work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants