Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

prplfoundation/prplMesh

Repository files navigation

PROJECT HAS MOVED!

This project has migrated to Gitlab. Please check there for the latest version of the repository. The version on github is obsolete and unmaintained. Users are strongly encouraged to update their git remote to point to the new repository:

git remote set-url origin git@gitlab.com:prpl-foundation/prplmesh/prplMesh.git
git remote set-url --push origin git@gitlab.com:prpl-foundation/prplmesh/prplMesh.git

or for https:

git remote set-url origin https://gitlab.com/prpl-foundation/prplmesh/prplMesh.git
git remote set-url --push origin https://gitlab.com/prpl-foundation/prplmesh/prplMesh.git

prplMesh

Build Status

prplMesh is an open-source, carrier-grade and certifiable implementation of the WiFi Alliance’s Multi-AP specification.

The result will be source-code covering both the agent and the controller part of the Multi-AP specification. However, it is scoped as a reference implementation and will leave ample room for differentiation, for example for proprietary IP algorithms making intelligent decisions for the whole Multi-AP network.

In short, the project’s aim is to create a baseline for OEMs and developers to easily integrate Multi-AP into various products and platforms. Initial targets include prplWrt and RDK-B with support for WiFi chipsets from almost any SoC vendor to be used in residential gateways, WiFi extenders from both retail brands and internet service providers.

This project is part of a wider collaboration between Prpl Foundation and Broadband Forum, and is based on a proven full mesh solution contributed by Intel Corp (Controller and Agent running on actual HW).

Architecture documentation can be found in the documentation folder.

The latest build artifacts are always accessible.

Requirements

To build prplMesh, you need (on Ubuntu) the following packages:

sudo apt install curl gcc cmake binutils git autoconf autogen libtool pkg-config \
     libreadline-dev libncurses-dev libssl-dev libjson-c-dev libnl-genl-3-dev \
     python python-yaml python-paramiko repo bridge-utils clang-format ninja-build

If you haven't done so already, set up your git configuration:

git config --global user.email your@email.address
git config --global user.name "Your Name"

There are several dependencies for which we require a specific version. To ease deployment of these, they are collected in a google repo manifest file:

mkdir prplmesh_root
cd prplmesh_root
repo init -u https://github.com/prplfoundation/prplMesh-manifest.git
repo sync
repo forall -p -c 'git checkout $REPO_RREV'

Build Instructions

Use standard CMake to build prplMesh, with a configure-build-install cycle.

To build prplMesh natively in debug mode (for being able to debug with gdb), with all features and tests, and installed in a local directory, run

cmake -DBUILD_TESTS=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../build/install -H. -B../build -G Ninja
ninja -C ../build install

If you prefer, make can be used instead of ninja by removing the -G Ninja part.

For system-level install, the standard DESTDIR approach can be used for installing prplMesh as a package.

DESTDIR=/tmp/prplMesh-install ninja install

Alternatively, tools/maptools.py can be used to build and install prplMesh with a single command.

Note - to build and run with Docker, see provided building with docker

Build artifacts are also available through the following link: https://ftp.essensium.com/owncloud/index.php/s/Sp7esHfmfH3bfwn .

Running Instructions

Once built, prplMesh controller, agent and framework can be started using prplmesh_utils.sh:

cd <path/to/install/dir>/scripts
sudo ./prplmesh_utils.sh start

Debugging Instructions

To debug prplMesh controller, agent or cli it is needed to install 'Native Debug' extension for Visual Studio Code. Also prplMesh solution should be compiled with CMAKE_BUILD_TYPE=Debug flag. Debug instruction:

  1. Start prplMesh solution(read Running Instructions)
  2. To remote debug it is needed to start gdbserver
gdbserver :9999 --attach <pid of controller/agent/cli>
  1. Go to debug tab in the VSCode and choose one the option from the dropdown list.
  2. Add breakpoint and click start debugging.

Log files locations

  • framework /tmp/$USER/mapf
  • controller /tmp/$USER/beerocks/logs/beerocks_controller.log
  • main agent (platform manager & backhaul manager) /tmp/$USER/beerocks/logs/beerocks_agent.log
  • radio agent wlan0 (son_slave_thread & ap manager) /tmp/$USER/beerocks/logs/beerocks_agent_wlan0.log
  • radio agent wlan2 (son_slave_thread & ap manager) /tmp/$USER/beerocks/logs/beerocks_agent_wlan2.log

Checking status

System is operational if you see FSM: CONNECTED --> OPERATIONAL in the main agent log. In the future there will be a bml cli command to verify operational state.

Displaying the connection map (GUI)

There is a tool to display the connection map on a GUI in tools/beerocks_analyzer. Its README file explains how to use it.

Troubleshooting

If master branch does not work / does not pass tests on your computer make sure that:

  • you loaded ebtables kernel module: sudo modprobe ebtables
  • you updated your docker images with tools/docker/image-build.sh