Skip to content

Commit

Permalink
First draft 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerivec committed Jan 20, 2025
1 parent 8df1028 commit fbc7814
Show file tree
Hide file tree
Showing 36 changed files with 20,676 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# These are supported funding model platforms

github: Nerivec
patreon: Nerivec
buy_me_a_coffee: Nerivec
51 changes: 51 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: CI

on:
push:
pull_request:

jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'

- uses: biomejs/setup-biome@v2
with:
version: latest

- run: npm ci

- run: npm run build:prod

- run: biome ci

tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [20, 22]
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- run: npm ci

- run: npm run build:prod

# coverage disabled in early stages
# - run: npm run test:cov
- run: npm run test

# get some "in-workflow" reference numbers for future comparison
# TODO: send results to PR as needed
- run: npm run bench
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["biomejs.biome", "vitest.explorer"]
}
103 changes: 101 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,101 @@
# zigbee-on-host
ZigBee stack designed to run on a host and communicate with a radio co-processor (RCP)
# ZigBee on Host

Open Source ZigBee stack designed to run on a host and communicate with a radio co-processor (RCP).

Current implementation aims for compatibility with OpenThread RCP firmware. That base provides compatibility with any chip manufacturer that supports it (Silabs, TI, etc.) with the only requirements being proper implementation of the STREAM_RAW mechanism of the Spinel protocol (which allows to send raw 802.15.4 frames, including... ZigBee!) and hardware MAC ACKing (much faster).

_This library can also serve as a base for pentesting ZigBee networks thanks to the ability to easily craft various payloads at any layer of the specification and send them through the raw stream using any network parameters._

> [!IMPORTANT]
> Work in progress! Expect breaking changes without backwards compatibility for a while!
## Development

### Guidelines

Some quick guidelines to keep the codebase maintainable:

- No external production dependencies
- Mark `TODO` / `XXX` / `@deprecated` in code as needed for quick access
- Performance in mind (with the goal to eventually bring the appropriate layers to a lower language as needed)
- No expensive calls (stringify, etc.)
- Bail as early as possible (no unnecessary parsing, holding waiters, etc.)
- Ability to no-op expensive "optional" features
- And the usuals...
- Keep MAC/ZigBee property naming mostly in line with Wireshark for easier debugging
- Keep in line with the ZigBee 3.0 specification, but allow optimization due to the host-driven nature and removal of unnecessary features that won't impact compatibility
- Focus on "Centralized Trust Center" implementation (at least at first)

### Current status

> [~] Partial feature, [?] Uncertain feature
- [x] Encoding/decoding of Spinel & HDLC protocols
- [x] Encoding/decoding of MAC frames
- [x] Encoding/decoding of ZigBee NWK frames
- [ ] lacking reference sniffs for multicast (group)
- [x] Encoding/decoding of ZigBee NWK GP frames
- [ ] lacking reference sniffs, needs full re-check
- [ ] FULLENCR & auth tag checking codepaths
- [x] Encoding/decoding of ZigBee NWK APS frames
- [x] Network forming
- [ ] Network state saving (de facto backups)
- [ ] Deal with frame counters (avoiding too many writes, but preventing mismatch issues)
- [ ] Runtime changing of network parameters (ZDO channel, PAN ID...)
- [~] Joining/Rejoining
- [x] APS TC link key update mechanism (global)
- [x] Direct child router
- [x] Direct child end device
- [ ] Nested device
- [x] Indirect transmission mechanism
- _Crude implementation_
- [ ] Deal with devices lying on `rxOnWhenIdle` property (bad firmware, resulting in transmission type mismatch)
- [ ] Routing
- [ ] Source routing
- [?] Regular routing
- [ ] Coordinator binding
- [ ] InterPAN / Touchlink
- [ ] LQI reporting in messages
- [ ] Install codes
- [?] APS APP link keys
- [ ] R23 (need reference sniffs...)
- [ ] Security
- [ ] Metrics/Statistics
- [ ] Big cleanup of unused / never will use!
- [ ] Loads of testing!
- [ ] Optimize firmware building for this usage

And likely more, and of course a bunch of `TODO`s in the code!

### Testing


#### CLI

Install dev dependencies and build:

```bash
npm install
npm run build
```

Configure parameters in `dist/dev/conf.json` then start CLI (next start will use `zoh.save` file, if not removed):

```bash
npm run dev:cli
```

_Currently, the CLI is output-only._

> [!TIP]
> Running `npm run build:prod` omits the `src/dev` directory.
> [!TIP]
> If having issues with building, try removing the `*.tsbuildinfo` incremental compilation files.
> [!TIP]
> For testing purposes, you can create a network with a regular NCP, then take it over with the RCP by copying all network settings. This allows to bypass the join steps as needed.
#### Zigbee2MQTT

Stay tuned...
51 changes: 51 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": ["dist", "coverage", "node_modules"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 4,
"lineWidth": 150,
"lineEnding": "lf"
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noNonNullAssertion": "off",
"noParameterAssign": "off"
},
"correctness": {
"noUnusedImports": "error",
"noUnusedVariables": {
"level": "warn",
"fix": "none"
}
},
"performance": {
"noBarrelFile": "error",
"noReExportAll": "error"
},
"suspicious": {
"noConstEnum": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}
Loading

0 comments on commit fbc7814

Please sign in to comment.