Compare commits
66 commits
main
...
sequential
Author | SHA1 | Date | |
---|---|---|---|
|
315da55b2b | ||
|
84f7b5f5de | ||
|
dab51ce911 | ||
|
6e141d69f3 | ||
|
a2a5691ade | ||
|
b40a0afbd0 | ||
|
8e2340363f | ||
|
28ec278756 | ||
|
42470e1a34 | ||
|
864692845b | ||
|
8d9bd1332c | ||
|
9070e87944 | ||
|
aa159d1772 | ||
|
df311ac6e0 | ||
|
e2277a17a4 | ||
|
eb21772a09 | ||
|
6c6f74e2e0 | ||
|
78f2282cd4 | ||
|
526e592a5c | ||
|
c2e72e5f0a | ||
|
dcbfa1f0e3 | ||
|
1c26df0712 | ||
|
2e0a09b532 | ||
|
fccf9fa5f6 | ||
|
f89f77c3f3 | ||
|
d48b97d77f | ||
|
86083bd831 | ||
|
e817fa8411 | ||
|
a539f4621e | ||
|
2f2e332c75 | ||
|
86fb8ce1f0 | ||
|
5fc3d2d510 | ||
|
2a2bdab9c5 | ||
|
0677a5938a | ||
|
fdea2863fa | ||
|
7437cf2c94 | ||
|
1392810a6c | ||
|
bb275cd50a | ||
|
b21f257c47 | ||
|
6ea96c390e | ||
|
669ef8accc | ||
|
1895f34439 | ||
|
fb2d5a4a23 | ||
|
cf7fac7631 | ||
|
4c83112b33 | ||
|
b4f92b0063 | ||
|
875ac697ad | ||
|
40a476e0d9 | ||
|
d12e1cfa13 | ||
|
e9b4dc5a5c | ||
|
c28df04cb5 | ||
|
52185ec9a4 | ||
|
a7ca17fabc | ||
|
17002db7e1 | ||
|
1ef431eceb | ||
|
c594cf1c55 | ||
|
117c36ee61 | ||
|
625baa72a3 | ||
|
2b6317a9e2 | ||
|
0b807f03a6 | ||
|
86a1b5ce7e | ||
|
d82e9ec0af | ||
|
f7a887c1d2 | ||
|
26fb6b01c5 | ||
|
c11a1a1372 | ||
|
d446007f6b |
144 changed files with 2107 additions and 3798 deletions
26
.github/workflows/build-tlv-tool.yml
vendored
Normal file
26
.github/workflows/build-tlv-tool.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: Build-TLV-Tool
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build
|
||||
run: cd tools/tlv_tool; cargo build --verbose
|
||||
- name: Archive artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: tlv_tool
|
||||
path: tools/tlv_tool/target/debug/tlv_tool
|
||||
|
39
.github/workflows/ci-tlv-tool.yml
vendored
39
.github/workflows/ci-tlv-tool.yml
vendored
|
@ -1,39 +0,0 @@
|
|||
name: CITLVTool
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
schedule:
|
||||
- cron: "20 7 * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build_tlv_tool:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Fmt
|
||||
run: cargo fmt -- --check
|
||||
working-directory: tools/tlv
|
||||
|
||||
- name: Clippy
|
||||
run: cargo clippy --no-deps -- -Dwarnings
|
||||
working-directory: tools/tlv
|
||||
|
||||
- name: Build
|
||||
run: cargo build
|
||||
working-directory: tools/tlv
|
||||
|
||||
- name: Archive artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: tlv
|
||||
path: tools/tlv/target/debug/tlv
|
48
.github/workflows/ci.yml
vendored
48
.github/workflows/ci.yml
vendored
|
@ -1,48 +0,0 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
schedule:
|
||||
- cron: "50 6 * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
RUST_TOOLCHAIN: nightly
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build_and_test:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
crypto-backend: ['rustcrypto', 'mbedtls', 'openssl']
|
||||
features: ['', 'alloc', 'os']
|
||||
toolchain: ['stable', 'nightly']
|
||||
|
||||
steps:
|
||||
- name: Rust
|
||||
if: matrix.toolchain == 'nightly'
|
||||
uses: dtolnay/rust-toolchain@v1
|
||||
with:
|
||||
toolchain: ${{ env.RUST_TOOLCHAIN }}
|
||||
components: rustfmt, clippy, rust-src
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Fmt
|
||||
run: cargo +${{ matrix.toolchain == 'nightly' && env.RUST_TOOLCHAIN || 'stable'}} fmt -- --check
|
||||
|
||||
- name: Clippy
|
||||
run: cargo +${{ matrix.toolchain == 'nightly' && env.RUST_TOOLCHAIN || 'stable'}} clippy --no-deps --no-default-features --features ${{matrix.crypto-backend}},${{matrix.features}},${{ matrix.toolchain == 'nightly' && 'nightly' || ''}} -- -Dwarnings
|
||||
|
||||
- name: Build
|
||||
run: cargo +${{ matrix.toolchain == 'nightly' && env.RUST_TOOLCHAIN || 'stable'}} build --no-default-features --features ${{matrix.crypto-backend}},${{matrix.features}},${{ matrix.toolchain == 'nightly' && 'nightly' || ''}}
|
||||
|
||||
- name: Test
|
||||
if: matrix.features == 'os'
|
||||
run: cargo +${{ matrix.toolchain == 'nightly' && env.RUST_TOOLCHAIN || 'stable'}} test --no-default-features --features ${{matrix.crypto-backend}},${{matrix.features}},${{ matrix.toolchain == 'nightly' && 'nightly' || ''}} -- --test-threads=1
|
17
.github/workflows/publish-dry-run.yml
vendored
17
.github/workflows/publish-dry-run.yml
vendored
|
@ -1,17 +0,0 @@
|
|||
name: PublishDryRun
|
||||
|
||||
on: workflow_dispatch
|
||||
|
||||
env:
|
||||
CRATE_NAME: rs-matter
|
||||
|
||||
jobs:
|
||||
publish_dry_run:
|
||||
name: PublishDryRun
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: PublishDryRun
|
||||
run: cargo publish -p rs-matter --dry-run
|
14
.github/workflows/publish-macros-dry-run.yml
vendored
14
.github/workflows/publish-macros-dry-run.yml
vendored
|
@ -1,14 +0,0 @@
|
|||
name: PublishMacrosDryRun
|
||||
|
||||
on: workflow_dispatch
|
||||
|
||||
jobs:
|
||||
publish_macros_dry_run:
|
||||
name: PublishMacrosDryRun
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: PublishDryRun-Macros
|
||||
run: cargo publish -p rs-matter-macros --dry-run
|
17
.github/workflows/publish-macros.yml
vendored
17
.github/workflows/publish-macros.yml
vendored
|
@ -1,17 +0,0 @@
|
|||
name: PublishMacros
|
||||
|
||||
on: workflow_dispatch
|
||||
|
||||
jobs:
|
||||
publish_macros:
|
||||
name: PublishMacros
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Login
|
||||
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
|
||||
|
||||
- name: Publish-Macros
|
||||
run: cargo publish -p rs-matter-macros
|
32
.github/workflows/publish.yml
vendored
32
.github/workflows/publish.yml
vendored
|
@ -1,32 +0,0 @@
|
|||
name: Publish
|
||||
|
||||
on: workflow_dispatch
|
||||
|
||||
env:
|
||||
CRATE_NAME: rs-matter
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: Publish
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Login
|
||||
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
|
||||
|
||||
- name: Publish
|
||||
run: cargo publish -p rs-matter
|
||||
|
||||
- name: Get the crate version from cargo
|
||||
run: |
|
||||
version=$(cd rs-matter; cargo metadata --format-version=1 --no-deps | jq -r ".packages[] | select(.name == \"${{env.CRATE_NAME}}\") | .version")
|
||||
echo "crate_version=$version" >> $GITHUB_ENV
|
||||
echo "${{env.CRATE_NAME}} version: $version"
|
||||
|
||||
- name: Tag the new release
|
||||
uses: rickstaa/action-create-tag@v1
|
||||
with:
|
||||
tag: v${{env.crate_version}}
|
||||
message: "Release v${{env.crate_version}}"
|
22
.github/workflows/test-linux-mbedtls.yml
vendored
Normal file
22
.github/workflows/test-linux-mbedtls.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: Test-Linux-mbedTLS
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build_and_test:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build
|
||||
run: cd matter; cargo build --verbose --no-default-features --features crypto_mbedtls
|
||||
- name: Run tests
|
||||
run: cd matter; cargo test --verbose --no-default-features --features crypto_mbedtls -- --test-threads=1
|
22
.github/workflows/test-linux-openssl.yml
vendored
Normal file
22
.github/workflows/test-linux-openssl.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: Test-Linux-OpenSSL
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build_and_test:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build
|
||||
run: cd matter; cargo build --verbose --no-default-features --features crypto_openssl
|
||||
- name: Run tests
|
||||
run: cd matter; cargo test --verbose --no-default-features --features crypto_openssl -- --test-threads=1
|
22
.github/workflows/test-linux-rustcrypto.yml
vendored
Normal file
22
.github/workflows/test-linux-rustcrypto.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: Test-Linux-RustCrypto
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build_and_test:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build
|
||||
run: cd matter; cargo build --verbose --no-default-features --features crypto_rustcrypto
|
||||
- name: Run tests
|
||||
run: cd matter; cargo test --verbose --no-default-features --features crypto_rustcrypto -- --test-threads=1
|
|
@ -1,11 +1,11 @@
|
|||
[workspace]
|
||||
resolver = "2"
|
||||
members = ["rs-matter", "rs-matter-macros"]
|
||||
members = ["matter", "matter_macro_derive"]
|
||||
|
||||
exclude = ["examples/*", "tools/tlv"]
|
||||
exclude = ["examples/*"]
|
||||
|
||||
# For compatibility with ESP IDF
|
||||
[patch.crates-io]
|
||||
smol = { git = "https://github.com/esp-rs-compat/smol" }
|
||||
polling = { git = "https://github.com/esp-rs-compat/polling" }
|
||||
socket2 = { git = "https://github.com/esp-rs-compat/socket2" }
|
||||
|
||||
|
|
27
README.md
27
README.md
|
@ -1,32 +1,29 @@
|
|||
# rs-matter: The Rust Implementation of Matter
|
||||
# matter-rs: The Rust Implementation of Matter
|
||||
|
||||

|
||||
[](https://raw.githubusercontent.com/project-chip/matter-rs/main/LICENSE)
|
||||
[](https://github.com/project-chip/matter-rs/actions/workflows/ci.yml)
|
||||
[](https://github.com/project-chip/matter-rs/actions/workflows/ci-tlv-tool.yml)
|
||||
[](https://crates.io/crates/rs-matter)
|
||||
[](https://matrix.to/#/#matter-rs:matrix.org)
|
||||
 [](https://raw.githubusercontent.com/project-chip/matter-rs/main/LICENSE)
|
||||
|
||||
[](https://github.com/project-chip/matter-rs/actions/workflows/test-linux-openssl.yml)
|
||||
[](https://github.com/project-chip/matter-rs/actions/workflows/test-linux-mbedtls.yml)
|
||||
|
||||
## Build
|
||||
|
||||
### Building the library
|
||||
Building the library:
|
||||
|
||||
```
|
||||
$ cargo build
|
||||
```
|
||||
|
||||
### Building and running the example (Linux, MacOS X)
|
||||
Building and running the example (Linux, MacOS X):
|
||||
|
||||
```
|
||||
$ cargo run --example onoff_light
|
||||
```
|
||||
|
||||
### Building the example (Espressif's ESP-IDF)
|
||||
|
||||
Building the example (Espressif's ESP-IDF):
|
||||
* Install all build prerequisites described [here](https://github.com/esp-rs/esp-idf-template#prerequisites)
|
||||
* Build with the following command line:
|
||||
```
|
||||
export MCU=esp32; export CARGO_TARGET_XTENSA_ESP32_ESPIDF_LINKER=ldproxy; export RUSTFLAGS="-C default-linker-libraries"; export WIFI_SSID=ssid;export WIFI_PASS=pass; cargo build --example onoff_light --no-default-features --features esp-idf --target xtensa-esp32-espidf -Zbuild-std=std,panic_abort
|
||||
export MCU=esp32; export CARGO_TARGET_XTENSA_ESP32_ESPIDF_LINKER=ldproxy; export RUSTFLAGS="-C default-linker-libraries"; export WIFI_SSID=ssid;export WIFI_PASS=pass; cargo build --example onoff_light --no-default-features --features std,crypto_rustcrypto --target xtensa-esp32-espidf -Zbuild-std=std,panic_abort
|
||||
```
|
||||
* If you are building for a different Espressif MCU, change the `MCU` variable, the `xtensa-esp32-espidf` target and the name of the `CARGO_TARGET_<esp-idf-target-uppercase>_LINKER` variable to match your MCU and its Rust target. Available Espressif MCUs and targets are:
|
||||
* esp32 / xtensa-esp32-espidf
|
||||
|
@ -34,14 +31,10 @@ export MCU=esp32; export CARGO_TARGET_XTENSA_ESP32_ESPIDF_LINKER=ldproxy; export
|
|||
* esp32s3 / xtensa-esp32s3-espidf
|
||||
* esp32c3 / riscv32imc-esp-espidf
|
||||
* esp32c5 / riscv32imc-esp-espidf
|
||||
* esp32c6 / riscv32imac-esp-espidf
|
||||
* esp32c6 / risxcv32imac-esp-espidf
|
||||
* Put in `WIFI_SSID` / `WIFI_PASS` the SSID & password for your wireless router
|
||||
* Flash using the `espflash` utility described in the build prerequsites' link above
|
||||
|
||||
### Building the example (ESP32-XX baremetal or RP2040)
|
||||
|
||||
Coming soon!
|
||||
|
||||
## Test
|
||||
|
||||
With the `chip-tool` (the current tool for testing Matter) use the Ethernet commissioning mechanism:
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
use rs_matter::data_model::sdm::dev_att::{DataType, DevAttDataFetcher};
|
||||
use rs_matter::error::{Error, ErrorCode};
|
||||
use matter::data_model::sdm::dev_att::{DataType, DevAttDataFetcher};
|
||||
use matter::error::{Error, ErrorCode};
|
||||
|
||||
pub struct HardCodedDevAtt {}
|
||||
|
||||
|
|
18
examples/onoff_light/src/lib.rs
Normal file
18
examples/onoff_light/src/lib.rs
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (c) 2020-2022 Project CHIP Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
pub mod dev_att;
|
|
@ -20,26 +20,27 @@ use core::pin::pin;
|
|||
|
||||
use embassy_futures::select::select3;
|
||||
use log::info;
|
||||
use rs_matter::core::{CommissioningData, Matter};
|
||||
use rs_matter::data_model::cluster_basic_information::BasicInfoConfig;
|
||||
use rs_matter::data_model::cluster_on_off;
|
||||
use rs_matter::data_model::device_types::DEV_TYPE_ON_OFF_LIGHT;
|
||||
use rs_matter::data_model::objects::*;
|
||||
use rs_matter::data_model::root_endpoint;
|
||||
use rs_matter::data_model::system_model::descriptor;
|
||||
use rs_matter::error::Error;
|
||||
use rs_matter::mdns::{MdnsRunBuffers, MdnsService};
|
||||
use rs_matter::secure_channel::spake2p::VerifierData;
|
||||
use rs_matter::transport::core::RunBuffers;
|
||||
use rs_matter::transport::network::{Ipv4Addr, Ipv6Addr, NetworkStack};
|
||||
use rs_matter::utils::select::EitherUnwrap;
|
||||
use matter::core::{CommissioningData, Matter};
|
||||
use matter::data_model::cluster_basic_information::BasicInfoConfig;
|
||||
use matter::data_model::cluster_on_off;
|
||||
use matter::data_model::device_types::DEV_TYPE_ON_OFF_LIGHT;
|
||||
use matter::data_model::objects::*;
|
||||
use matter::data_model::root_endpoint;
|
||||
use matter::data_model::system_model::descriptor;
|
||||
use matter::error::Error;
|
||||
use matter::mdns::{DefaultMdns, DefaultMdnsRunner};
|
||||
use matter::persist::FilePsm;
|
||||
use matter::secure_channel::spake2p::VerifierData;
|
||||
use matter::transport::network::{Ipv4Addr, Ipv6Addr};
|
||||
use matter::transport::runner::{RxBuf, TransportRunner, TxBuf};
|
||||
use matter::utils::select::EitherUnwrap;
|
||||
|
||||
mod dev_att;
|
||||
|
||||
#[cfg(feature = "std")]
|
||||
fn main() -> Result<(), Error> {
|
||||
let thread = std::thread::Builder::new()
|
||||
.stack_size(160 * 1024)
|
||||
.stack_size(140 * 1024)
|
||||
.spawn(run)
|
||||
.unwrap();
|
||||
|
||||
|
@ -57,11 +58,10 @@ fn run() -> Result<(), Error> {
|
|||
initialize_logger();
|
||||
|
||||
info!(
|
||||
"Matter memory: mDNS={}, Matter={}, MdnsBuffers={}, RunBuffers={}",
|
||||
core::mem::size_of::<MdnsService>(),
|
||||
"Matter memory: mDNS={}, Matter={}, TransportRunner={}",
|
||||
core::mem::size_of::<DefaultMdns>(),
|
||||
core::mem::size_of::<Matter>(),
|
||||
core::mem::size_of::<MdnsRunBuffers>(),
|
||||
core::mem::size_of::<RunBuffers>(),
|
||||
core::mem::size_of::<TransportRunner>(),
|
||||
);
|
||||
|
||||
let dev_det = BasicInfoConfig {
|
||||
|
@ -72,38 +72,45 @@ fn run() -> Result<(), Error> {
|
|||
sw_ver_str: "1",
|
||||
serial_no: "aabbccdd",
|
||||
device_name: "OnOff Light",
|
||||
product_name: "Light123",
|
||||
vendor_name: "Vendor PQR",
|
||||
};
|
||||
|
||||
let psm_path = std::env::temp_dir().join("matter-iot");
|
||||
info!("Persisting from/to {}", psm_path.display());
|
||||
|
||||
#[cfg(all(feature = "std", not(target_os = "espidf")))]
|
||||
let psm = matter::persist::FilePsm::new(psm_path)?;
|
||||
|
||||
let (ipv4_addr, ipv6_addr, interface) = initialize_network()?;
|
||||
|
||||
let mdns = DefaultMdns::new(
|
||||
0,
|
||||
"matter-demo",
|
||||
ipv4_addr.octets(),
|
||||
Some(ipv6_addr.octets()),
|
||||
interface,
|
||||
&dev_det,
|
||||
matter::MATTER_PORT,
|
||||
);
|
||||
|
||||
let mut mdns_runner = DefaultMdnsRunner::new(&mdns);
|
||||
|
||||
info!("mDNS initialized: {:p}, {:p}", &mdns, &mdns_runner);
|
||||
|
||||
let dev_att = dev_att::HardCodedDevAtt::new();
|
||||
|
||||
#[cfg(feature = "std")]
|
||||
let epoch = rs_matter::utils::epoch::sys_epoch;
|
||||
let epoch = matter::utils::epoch::sys_epoch;
|
||||
|
||||
#[cfg(feature = "std")]
|
||||
let rand = rs_matter::utils::rand::sys_rand;
|
||||
let rand = matter::utils::rand::sys_rand;
|
||||
|
||||
// NOTE (no_std): For no_std, provide your own function here
|
||||
#[cfg(not(feature = "std"))]
|
||||
let epoch = rs_matter::utils::epoch::dummy_epoch;
|
||||
let epoch = matter::utils::epoch::dummy_epoch;
|
||||
|
||||
// NOTE (no_std): For no_std, provide your own function here
|
||||
#[cfg(not(feature = "std"))]
|
||||
let rand = rs_matter::utils::rand::dummy_rand;
|
||||
|
||||
let mdns = MdnsService::new(
|
||||
0,
|
||||
"rs-matter-demo",
|
||||
ipv4_addr.octets(),
|
||||
Some((ipv6_addr.octets(), interface)),
|
||||
&dev_det,
|
||||
rs_matter::MATTER_PORT,
|
||||
);
|
||||
|
||||
info!("mDNS initialized");
|
||||
let rand = matter::utils::rand::dummy_rand;
|
||||
|
||||
let matter = Matter::new(
|
||||
// vid/pid should match those in the DAC
|
||||
|
@ -112,62 +119,87 @@ fn run() -> Result<(), Error> {
|
|||
&mdns,
|
||||
epoch,
|
||||
rand,
|
||||
rs_matter::MATTER_PORT,
|
||||
matter::MATTER_PORT,
|
||||
);
|
||||
|
||||
info!("Matter initialized");
|
||||
info!("Matter initialized: {:p}", &matter);
|
||||
|
||||
let mut runner = TransportRunner::new(&matter);
|
||||
|
||||
info!("Transport Runner initialized: {:p}", &runner);
|
||||
|
||||
let mut tx_buf = TxBuf::uninit();
|
||||
let mut rx_buf = RxBuf::uninit();
|
||||
|
||||
#[cfg(all(feature = "std", not(target_os = "espidf")))]
|
||||
let mut psm = rs_matter::persist::Psm::new(&matter, std::env::temp_dir().join("rs-matter"))?;
|
||||
{
|
||||
let mut buf = [0; 4096];
|
||||
let buf = &mut buf;
|
||||
if let Some(data) = psm.load("acls", buf)? {
|
||||
matter.load_acls(data)?;
|
||||
}
|
||||
|
||||
if let Some(data) = psm.load("fabrics", buf)? {
|
||||
matter.load_fabrics(data)?;
|
||||
}
|
||||
}
|
||||
|
||||
let node = Node {
|
||||
id: 0,
|
||||
endpoints: &[
|
||||
root_endpoint::endpoint(0),
|
||||
Endpoint {
|
||||
id: 1,
|
||||
device_type: DEV_TYPE_ON_OFF_LIGHT,
|
||||
clusters: &[descriptor::CLUSTER, cluster_on_off::CLUSTER],
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
let handler = HandlerCompat(handler(&matter));
|
||||
|
||||
// When using a custom UDP stack, remove the network stack initialization below
|
||||
// and call `Matter::run_piped()` instead, by utilizing the TX & RX `Pipe` structs
|
||||
// to push/pull your UDP packets from/to the Matter stack.
|
||||
// Ditto for `MdnsService`.
|
||||
//
|
||||
// When using the `embassy-net` feature (as opposed to the Rust Standard Library network stack),
|
||||
// this initialization would be more complex.
|
||||
let stack = NetworkStack::new();
|
||||
|
||||
let mut mdns_buffers = MdnsRunBuffers::new();
|
||||
let mut mdns_runner = pin!(mdns.run(&stack, &mut mdns_buffers));
|
||||
|
||||
let mut buffers = RunBuffers::new();
|
||||
let runner = matter.run(
|
||||
&stack,
|
||||
&mut buffers,
|
||||
CommissioningData {
|
||||
// TODO: Hard-coded for now
|
||||
verifier: VerifierData::new_with_pw(123456, *matter.borrow()),
|
||||
discriminator: 250,
|
||||
},
|
||||
&handler,
|
||||
);
|
||||
let matter = &matter;
|
||||
let node = &node;
|
||||
let handler = &handler;
|
||||
let runner = &mut runner;
|
||||
let tx_buf = &mut tx_buf;
|
||||
let rx_buf = &mut rx_buf;
|
||||
|
||||
info!(
|
||||
"Matter transport runner memory: {}",
|
||||
core::mem::size_of_val(&runner)
|
||||
"About to run wth node {:p}, handler {:p}, transport runner {:p}, mdns_runner {:p}",
|
||||
node, handler, runner, &mdns_runner
|
||||
);
|
||||
|
||||
let mut runner = pin!(runner);
|
||||
let mut fut = pin!(async move {
|
||||
// NOTE (no_std): On no_std, the `run_udp` is a no-op so you might want to replace it with `run` and
|
||||
// connect the pipes of the `run` method with your own UDP stack
|
||||
let mut transport = pin!(runner.run_udp(
|
||||
tx_buf,
|
||||
rx_buf,
|
||||
CommissioningData {
|
||||
// TODO: Hard-coded for now
|
||||
verifier: VerifierData::new_with_pw(123456, *matter.borrow()),
|
||||
discriminator: 250,
|
||||
},
|
||||
&handler,
|
||||
));
|
||||
|
||||
#[cfg(all(feature = "std", not(target_os = "espidf")))]
|
||||
let mut psm_runner = pin!(psm.run());
|
||||
// NOTE (no_std): On no_std, the `run_udp` is a no-op so you might want to replace it with `run` and
|
||||
// connect the pipes of the `run` method with your own UDP stack
|
||||
let mut mdns = pin!(mdns_runner.run_udp());
|
||||
|
||||
#[cfg(not(all(feature = "std", not(target_os = "espidf"))))]
|
||||
let mut psm_runner = pin!(core::future::pending());
|
||||
|
||||
let runner = select3(&mut runner, &mut mdns_runner, &mut psm_runner);
|
||||
let mut save = pin!(save(matter, &psm));
|
||||
select3(&mut transport, &mut mdns, &mut save).await.unwrap()
|
||||
});
|
||||
|
||||
// NOTE: For no_std, replace with your own no_std way of polling the future
|
||||
#[cfg(feature = "std")]
|
||||
async_io::block_on(runner).unwrap()?;
|
||||
smol::block_on(&mut fut)?;
|
||||
|
||||
// NOTE (no_std): For no_std, replace with your own more efficient no_std executor,
|
||||
// because the executor used below is a simple busy-loop poller
|
||||
#[cfg(not(feature = "std"))]
|
||||
embassy_futures::block_on(&mut runner).unwrap()?;
|
||||
embassy_futures::block_on(&mut fut)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
@ -225,8 +257,8 @@ fn initialize_logger() {
|
|||
#[inline(never)]
|
||||
fn initialize_network() -> Result<(Ipv4Addr, Ipv6Addr, u32), Error> {
|
||||
use log::error;
|
||||
use matter::error::ErrorCode;
|
||||
use nix::{net::if_::InterfaceFlags, sys::socket::SockaddrIn6};
|
||||
use rs_matter::error::ErrorCode;
|
||||
|
||||
let interfaces = || {
|
||||
nix::ifaddrs::getifaddrs().unwrap().filter(|ia| {
|
||||
|
@ -271,6 +303,26 @@ fn initialize_network() -> Result<(Ipv4Addr, Ipv6Addr, u32), Error> {
|
|||
Ok((ip, ipv6, 0 as _))
|
||||
}
|
||||
|
||||
#[cfg(all(feature = "std", not(target_os = "espidf")))]
|
||||
#[inline(never)]
|
||||
async fn save(matter: &Matter<'_>, psm: &FilePsm) -> Result<(), Error> {
|
||||
let mut buf = [0; 4096];
|
||||
let buf = &mut buf;
|
||||
|
||||
loop {
|
||||
matter.wait_changed().await;
|
||||
if matter.is_changed() {
|
||||
if let Some(data) = matter.store_acls(buf)? {
|
||||
psm.store("acls", data)?;
|
||||
}
|
||||
|
||||
if let Some(data) = matter.store_fabrics(buf)? {
|
||||
psm.store("fabrics", data)?;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(target_os = "espidf")]
|
||||
#[inline(never)]
|
||||
fn initialize_logger() {
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
use rs_matter::data_model::sdm::dev_att::{DataType, DevAttDataFetcher};
|
||||
use rs_matter::error::Error;
|
||||
use matter::data_model::sdm::dev_att::{DataType, DevAttDataFetcher};
|
||||
use matter::error::Error;
|
||||
|
||||
pub struct HardCodedDevAtt {}
|
||||
|
||||
|
|
18
examples/speaker/src/lib.rs
Normal file
18
examples/speaker/src/lib.rs
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (c) 2020-2022 Project CHIP Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
// TODO pub mod dev_att;
|
|
@ -17,11 +17,11 @@
|
|||
|
||||
// TODO
|
||||
// mod dev_att;
|
||||
// use rs_matter::core::{self, CommissioningData};
|
||||
// use rs_matter::data_model::cluster_basic_information::BasicInfoConfig;
|
||||
// use rs_matter::data_model::cluster_media_playback::{Commands, MediaPlaybackCluster};
|
||||
// use rs_matter::data_model::device_types::DEV_TYPE_ON_SMART_SPEAKER;
|
||||
// use rs_matter::secure_channel::spake2p::VerifierData;
|
||||
// use matter::core::{self, CommissioningData};
|
||||
// use matter::data_model::cluster_basic_information::BasicInfoConfig;
|
||||
// use matter::data_model::cluster_media_playback::{Commands, MediaPlaybackCluster};
|
||||
// use matter::data_model::device_types::DEV_TYPE_ON_SMART_SPEAKER;
|
||||
// use matter::secure_channel::spake2p::VerifierData;
|
||||
|
||||
fn main() {
|
||||
// env_logger::init();
|
||||
|
|
|
@ -15,13 +15,12 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
use rs_matter::core::{self, CommissioningData};
|
||||
use rs_matter::data_model::cluster_basic_information::BasicInfoConfig;
|
||||
use rs_matter::data_model::cluster_media_playback::{Commands, MediaPlaybackCluster};
|
||||
use rs_matter::data_model::device_types::DEV_TYPE_ON_SMART_SPEAKER;
|
||||
use rs_matter::secure_channel::spake2p::VerifierData;
|
||||
|
||||
mod dev_att;
|
||||
use matter::core::{self, CommissioningData};
|
||||
use matter::data_model::cluster_basic_information::BasicInfoConfig;
|
||||
use matter::data_model::cluster_media_playback::{Commands, MediaPlaybackCluster};
|
||||
use matter::data_model::device_types::DEV_TYPE_ON_SMART_SPEAKER;
|
||||
use matter::secure_channel::spake2p::VerifierData;
|
||||
|
||||
fn main() {
|
||||
env_logger::init();
|
||||
|
|
|
@ -1,31 +1,32 @@
|
|||
[package]
|
||||
name = "rs-matter"
|
||||
version = "0.1.1"
|
||||
edition = "2021"
|
||||
authors = ["Kedar Sovani <kedars@gmail.com>", "Ivan Markov", "Project CHIP Authors"]
|
||||
description = "Native Rust implementation of the Matter (Smart-Home) ecosystem"
|
||||
repository = "https://github.com/project-chip/matter-rs"
|
||||
name = "matter-iot"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = ["Kedar Sovani <kedars@gmail.com>"]
|
||||
description = "Native RUST implementation of the Matter (Smart-Home) ecosystem"
|
||||
repository = "https://github.com/kedars/matter-rs"
|
||||
readme = "README.md"
|
||||
keywords = ["matter", "smart", "smart-home", "IoT", "ESP32"]
|
||||
categories = ["embedded", "network-programming"]
|
||||
license = "Apache-2.0"
|
||||
license = "MIT"
|
||||
|
||||
[lib]
|
||||
name = "matter"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[features]
|
||||
default = ["os", "mbedtls"]
|
||||
default = ["os", "crypto_rustcrypto"]
|
||||
os = ["std", "backtrace", "env_logger", "nix", "critical-section/std", "embassy-sync/std", "embassy-time/std"]
|
||||
esp-idf = ["std", "rustcrypto", "esp-idf-sys"]
|
||||
std = ["alloc", "rand", "async-io", "esp-idf-sys?/std", "embassy-time/generic-queue-16"]
|
||||
std = ["alloc", "rand", "qrcode", "async-io", "smol", "esp-idf-sys/std"]
|
||||
backtrace = []
|
||||
alloc = []
|
||||
nightly = []
|
||||
openssl = ["alloc", "dep:openssl", "foreign-types", "hmac", "sha2"]
|
||||
mbedtls = ["alloc", "dep:mbedtls"]
|
||||
rustcrypto = ["alloc", "sha2", "hmac", "pbkdf2", "hkdf", "aes", "ccm", "p256", "elliptic-curve", "crypto-bigint", "x509-cert", "rand_core"]
|
||||
embassy-net = ["dep:embassy-net", "dep:embassy-net-driver", "smoltcp"]
|
||||
zeroconf = ["dep:zeroconf"]
|
||||
crypto_openssl = ["alloc", "openssl", "foreign-types", "hmac", "sha2"]
|
||||
crypto_mbedtls = ["alloc", "mbedtls"]
|
||||
crypto_rustcrypto = ["alloc", "sha2", "hmac", "pbkdf2", "hkdf", "aes", "ccm", "p256", "elliptic-curve", "crypto-bigint", "x509-cert", "rand_core"]
|
||||
|
||||
[dependencies]
|
||||
rs-matter-macros = { version = "0.1", path = "../rs-matter-macros" }
|
||||
matter_macro_derive = { path = "../matter_macro_derive" }
|
||||
bitflags = { version = "1.3", default-features = false }
|
||||
byteorder = { version = "1.4.3", default-features = false }
|
||||
heapless = "0.7.16"
|
||||
|
@ -41,24 +42,19 @@ owo-colors = "3"
|
|||
time = { version = "0.3", default-features = false }
|
||||
verhoeff = { version = "1", default-features = false }
|
||||
embassy-futures = "0.1"
|
||||
embassy-time = "0.1.1"
|
||||
embassy-time = { version = "0.1.1", features = ["generic-queue-8"] }
|
||||
embassy-sync = "0.2"
|
||||
critical-section = "1.1.1"
|
||||
domain = { version = "0.7.2", default_features = false, features = ["heapless"] }
|
||||
portable-atomic = "1"
|
||||
qrcodegen-no-heap = "1.8"
|
||||
|
||||
# embassy-net dependencies
|
||||
embassy-net = { version = "0.1", features = ["igmp", "proto-ipv6", "udp"], optional = true }
|
||||
embassy-net-driver = { version = "0.1", optional = true }
|
||||
smoltcp = { version = "0.10", default-features = false, optional = true }
|
||||
|
||||
# STD-only dependencies
|
||||
rand = { version = "0.8.5", optional = true }
|
||||
async-io = { version = "=1.12", optional = true } # =1.12 for compatibility with ESP IDF
|
||||
qrcode = { version = "0.12", default-features = false, optional = true } # Print QR code
|
||||
smol = { version = "1.2", optional = true } # =1.2 for compatibility with ESP IDF
|
||||
async-io = { version = "=1.12", optional = true } # =1.2 for compatibility with ESP IDF
|
||||
|
||||
# crypto
|
||||
openssl = { version = "0.10.55", optional = true }
|
||||
openssl = { git = "https://github.com/sfackler/rust-openssl", optional = true }
|
||||
foreign-types = { version = "0.3.2", optional = true }
|
||||
|
||||
# rust-crypto
|
||||
|
@ -77,26 +73,20 @@ x509-cert = { version = "0.2.0", default-features = false, features = ["pem"], o
|
|||
[target.'cfg(target_os = "macos")'.dependencies]
|
||||
astro-dnssd = { version = "0.3" }
|
||||
|
||||
[target.'cfg(target_os = "linux")'.dependencies]
|
||||
zeroconf = { version = "0.12", optional = true }
|
||||
|
||||
[target.'cfg(not(target_os = "espidf"))'.dependencies]
|
||||
mbedtls = { version = "0.9", optional = true }
|
||||
mbedtls = { git = "https://github.com/fortanix/rust-mbedtls", optional = true }
|
||||
env_logger = { version = "0.10.0", optional = true }
|
||||
nix = { version = "0.26", features = ["net"], optional = true }
|
||||
|
||||
[target.'cfg(target_os = "espidf")'.dependencies]
|
||||
esp-idf-sys = { version = "0.33", optional = true, default-features = false, features = ["native"] }
|
||||
esp-idf-sys = { version = "0.33", default-features = false, features = ["native", "binstart"] }
|
||||
esp-idf-hal = { version = "0.41", features = ["embassy-sync", "critical-section"] }
|
||||
esp-idf-svc = { version = "0.46", features = ["embassy-time-driver"] }
|
||||
embedded-svc = "0.25"
|
||||
|
||||
[build-dependencies]
|
||||
embuild = "0.31.2"
|
||||
|
||||
[target.'cfg(target_os = "espidf")'.dev-dependencies]
|
||||
esp-idf-sys = { version = "0.33", default-features = false, features = ["binstart"] }
|
||||
esp-idf-hal = { version = "0.41", features = ["embassy-sync", "critical-section"] }
|
||||
esp-idf-svc = { version = "0.46", features = ["embassy-time-driver"] }
|
||||
embedded-svc = { version = "0.25" }
|
||||
|
||||
[[example]]
|
||||
name = "onoff_light"
|
||||
path = "../examples/onoff_light/src/main.rs"
|
|
@ -22,7 +22,7 @@ use crate::{
|
|||
error::{Error, ErrorCode},
|
||||
fabric,
|
||||
interaction_model::messages::GenericPath,
|
||||
tlv::{self, FromTLV, Nullable, TLVElement, TLVList, TLVWriter, TagType, ToTLV},
|
||||
tlv::{self, FromTLV, TLVElement, TLVList, TLVWriter, TagType, ToTLV},
|
||||
transport::session::{Session, SessionMode, MAX_CAT_IDS_PER_NOC},
|
||||
utils::writebuf::WriteBuf,
|
||||
};
|
||||
|
@ -282,15 +282,7 @@ impl Target {
|
|||
}
|
||||
|
||||
type Subjects = [Option<u64>; SUBJECTS_PER_ENTRY];
|
||||
|
||||
type Targets = Nullable<[Option<Target>; TARGETS_PER_ENTRY]>;
|
||||
impl Targets {
|
||||
fn init_notnull() -> Self {
|
||||
const INIT_TARGETS: Option<Target> = None;
|
||||
Nullable::NotNull([INIT_TARGETS; TARGETS_PER_ENTRY])
|
||||
}
|
||||
}
|
||||
|
||||
type Targets = [Option<Target>; TARGETS_PER_ENTRY];
|
||||
#[derive(ToTLV, FromTLV, Clone, Debug, PartialEq)]
|
||||
#[tlvargs(start = 1)]
|
||||
pub struct AclEntry {
|
||||
|
@ -306,12 +298,14 @@ pub struct AclEntry {
|
|||
impl AclEntry {
|
||||
pub fn new(fab_idx: u8, privilege: Privilege, auth_mode: AuthMode) -> Self {
|
||||
const INIT_SUBJECTS: Option<u64> = None;
|
||||
const INIT_TARGETS: Option<Target> = None;
|
||||
let privilege = privilege;
|
||||
Self {
|
||||
fab_idx: Some(fab_idx),
|
||||
privilege,
|
||||
auth_mode,
|
||||
subjects: [INIT_SUBJECTS; SUBJECTS_PER_ENTRY],
|
||||
targets: Targets::init_notnull(),
|
||||
targets: [INIT_TARGETS; TARGETS_PER_ENTRY],
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -330,20 +324,12 @@ impl AclEntry {
|
|||
}
|
||||
|
||||
pub fn add_target(&mut self, target: Target) -> Result<(), Error> {
|
||||
if self.targets.is_null() {
|
||||
self.targets = Targets::init_notnull();
|
||||
}
|
||||
let index = self
|
||||
.targets
|
||||
.as_ref()
|
||||
.notnull()
|
||||
.unwrap()
|
||||
.iter()
|
||||
.position(|s| s.is_none())
|
||||
.ok_or(ErrorCode::NoSpace)?;
|
||||
|
||||
self.targets.as_mut().notnull().unwrap()[index] = Some(target);
|
||||
|
||||
self.targets[index] = Some(target);
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
@ -372,17 +358,12 @@ impl AclEntry {
|
|||
fn match_access_desc(&self, object: &AccessDesc) -> bool {
|
||||
let mut allow = false;
|
||||
let mut entries_exist = false;
|
||||
match self.targets.as_ref().notnull() {
|
||||
None => allow = true, // Allow if targets are NULL
|
||||
Some(targets) => {
|
||||
for t in targets.iter().flatten() {
|
||||
entries_exist = true;
|
||||
if (t.endpoint.is_none() || t.endpoint == object.path.endpoint)
|
||||
&& (t.cluster.is_none() || t.cluster == object.path.cluster)
|
||||
{
|
||||
allow = true
|
||||
}
|
||||
}
|
||||
for t in self.targets.iter().flatten() {
|
||||
entries_exist = true;
|
||||
if (t.endpoint.is_none() || t.endpoint == object.path.endpoint)
|
||||
&& (t.cluster.is_none() || t.cluster == object.path.cluster)
|
||||
{
|
||||
allow = true
|
||||
}
|
||||
}
|
||||
if !entries_exist {
|
|
@ -264,8 +264,8 @@ impl<'a> CertConsumer for ASN1Writer<'a> {
|
|||
self.write_str(0x06, oid)
|
||||
}
|
||||
|
||||
fn utctime(&mut self, _tag: &str, epoch: u64) -> Result<(), Error> {
|
||||
let matter_epoch = MATTER_EPOCH_SECS + epoch;
|
||||
fn utctime(&mut self, _tag: &str, epoch: u32) -> Result<(), Error> {
|
||||
let matter_epoch = MATTER_EPOCH_SECS + epoch as u64;
|
||||
|
||||
let dt = OffsetDateTime::from_unix_timestamp(matter_epoch as _).unwrap();
|
||||
|
|
@ -21,7 +21,7 @@ use crate::{
|
|||
crypto::KeyPair,
|
||||
error::{Error, ErrorCode},
|
||||
tlv::{self, FromTLV, OctetStr, TLVArray, TLVElement, TLVWriter, TagType, ToTLV},
|
||||
utils::{epoch::MATTER_CERT_DOESNT_EXPIRE, writebuf::WriteBuf},
|
||||
utils::writebuf::WriteBuf,
|
||||
};
|
||||
use log::error;
|
||||
use num_derive::FromPrimitive;
|
||||
|
@ -175,7 +175,7 @@ fn encode_extended_key_usage(
|
|||
w.end_seq()
|
||||
}
|
||||
|
||||
#[derive(FromTLV, ToTLV, Default, Debug, PartialEq)]
|
||||
#[derive(FromTLV, ToTLV, Default, Debug)]
|
||||
#[tlvargs(start = 1)]
|
||||
struct BasicConstraints {
|
||||
is_ca: bool,
|
||||
|
@ -215,8 +215,8 @@ fn encode_extension_end(w: &mut dyn CertConsumer) -> Result<(), Error> {
|
|||
w.end_seq()
|
||||
}
|
||||
|
||||
#[derive(FromTLV, ToTLV, Default, Debug, PartialEq)]
|
||||
#[tlvargs(lifetime = "'a", start = 1, datatype = "list", unordered)]
|
||||
#[derive(FromTLV, ToTLV, Default, Debug)]
|
||||
#[tlvargs(lifetime = "'a", start = 1, datatype = "list")]
|
||||
struct Extensions<'a> {
|
||||
basic_const: Option<BasicConstraints>,
|
||||
key_usage: Option<u16>,
|
||||
|
@ -298,7 +298,7 @@ enum DnTags {
|
|||
NocCat = 22,
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq)]
|
||||
#[derive(Debug)]
|
||||
enum DistNameValue<'a> {
|
||||
Uint(u64),
|
||||
Utf8Str(&'a [u8]),
|
||||
|
@ -307,7 +307,7 @@ enum DistNameValue<'a> {
|
|||
|
||||
const MAX_DN_ENTRIES: usize = 5;
|
||||
|
||||
#[derive(Default, Debug, PartialEq)]
|
||||
#[derive(Default, Debug)]
|
||||
struct DistNames<'a> {
|
||||
// The order in which the DNs arrive is important, as the signing
|
||||
// requires that the ASN1 notation retains the same order
|
||||
|
@ -545,7 +545,7 @@ fn encode_dn_value(
|
|||
w.end_set()
|
||||
}
|
||||
|
||||
#[derive(FromTLV, ToTLV, Default, Debug, PartialEq)]
|
||||
#[derive(FromTLV, ToTLV, Default, Debug)]
|
||||
#[tlvargs(lifetime = "'a", start = 1)]
|
||||
pub struct Cert<'a> {
|
||||
serial_no: OctetStr<'a>,
|
||||
|
@ -650,14 +650,8 @@ impl<'a> Cert<'a> {
|
|||
self.issuer.encode("Issuer:", w)?;
|
||||
|
||||
w.start_seq("Validity:")?;
|
||||
w.utctime("Not Before:", self.not_before.into())?;
|
||||
if self.not_after == 0 {
|
||||
// As per the spec a Not-After value of 0, indicates no well-defined
|
||||
// expiration date and should return in GeneralizedTime of 99991231235959Z
|
||||
w.utctime("Not After:", MATTER_CERT_DOESNT_EXPIRE)?;
|
||||
} else {
|
||||
w.utctime("Not After:", self.not_after.into())?;
|
||||
}
|
||||
w.utctime("Not Before:", self.not_before)?;
|
||||
w.utctime("Not After:", self.not_after)?;
|
||||
w.end_seq()?;
|
||||
|
||||
self.subject.encode("Subject:", w)?;
|
||||
|
@ -716,9 +710,8 @@ impl<'a> CertVerifier<'a> {
|
|||
let k = KeyPair::new_from_public(parent.get_pubkey())?;
|
||||
k.verify_msg(asn1, self.cert.get_signature()).map_err(|e| {
|
||||
error!(
|
||||
"Error in signature verification of certificate: {:x?} by {:x?}",
|
||||
self.cert.get_subject_key_id(),
|
||||
parent.get_subject_key_id()
|
||||
"Error in signature verification of certificate: {:x?}",
|
||||
self.cert.get_subject_key_id()
|
||||
);
|
||||
e
|
||||
})?;
|
||||
|
@ -751,7 +744,7 @@ pub trait CertConsumer {
|
|||
fn start_ctx(&mut self, tag: &str, id: u8) -> Result<(), Error>;
|
||||
fn end_ctx(&mut self) -> Result<(), Error>;
|
||||
fn oid(&mut self, tag: &str, oid: &[u8]) -> Result<(), Error>;
|
||||
fn utctime(&mut self, tag: &str, epoch: u64) -> Result<(), Error>;
|
||||
fn utctime(&mut self, tag: &str, epoch: u32) -> Result<(), Error>;
|
||||
}
|
||||
|
||||
const MAX_DEPTH: usize = 10;
|
||||
|
@ -833,16 +826,6 @@ mod tests {
|
|||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_zero_value_of_not_after_field() {
|
||||
let noc = Cert::new(&test_vectors::NOC_NOT_AFTER_ZERO).unwrap();
|
||||
let rca = Cert::new(&test_vectors::RCA_FOR_NOC_NOT_AFTER_ZERO).unwrap();
|
||||
|
||||
let v = noc.verify_chain_start();
|
||||
let v = v.add_cert(&rca).unwrap();
|
||||
v.finalise().unwrap();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_cert_corrupted() {
|
||||
use crate::error::ErrorCode;
|
||||
|
@ -858,10 +841,9 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn test_tlv_conversions() {
|
||||
let test_input: [&[u8]; 4] = [
|
||||
let test_input: [&[u8]; 3] = [
|
||||
&test_vectors::NOC1_SUCCESS,
|
||||
&test_vectors::ICAC1_SUCCESS,
|
||||
&test_vectors::ICAC2_SUCCESS,
|
||||
&test_vectors::RCA1_SUCCESS,
|
||||
];
|
||||
|
||||
|
@ -873,10 +855,7 @@ mod tests {
|
|||
let mut wb = WriteBuf::new(&mut buf);
|
||||
let mut tw = TLVWriter::new(&mut wb);
|
||||
cert.to_tlv(&mut tw, TagType::Anonymous).unwrap();
|
||||
|
||||
let root2 = tlv::get_root_node(wb.as_slice()).unwrap();
|
||||
let cert2 = Cert::from_tlv(&root2).unwrap();
|
||||
assert_eq!(cert, cert2);
|
||||
assert_eq!(*input, wb.as_slice());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -915,23 +894,6 @@ mod tests {
|
|||
89, 175, 253, 78, 212, 7, 69, 207, 140, 45, 129, 249, 64, 104, 70, 68, 43, 164, 19,
|
||||
126, 114, 138, 79, 104, 238, 20, 226, 88, 118, 105, 56, 12, 92, 31, 171, 24,
|
||||
];
|
||||
// This cert has two of the fields in the extensions list swapped to a different order to be non-consecutive
|
||||
pub const ICAC2_SUCCESS: [u8; 263] = [
|
||||
21, 48, 1, 16, 67, 38, 73, 198, 26, 31, 20, 101, 57, 46, 16, 143, 77, 160, 128, 161,
|
||||
36, 2, 1, 55, 3, 39, 20, 255, 90, 200, 17, 145, 105, 71, 215, 24, 38, 4, 123, 59, 211,
|
||||
42, 38, 5, 35, 11, 27, 52, 55, 6, 39, 19, 254, 111, 27, 53, 189, 134, 103, 200, 24, 36,
|
||||
7, 1, 36, 8, 1, 48, 9, 65, 4, 88, 188, 13, 87, 50, 3, 213, 248, 182, 12, 240, 164, 220,
|
||||
127, 150, 65, 81, 244, 125, 24, 48, 203, 83, 111, 133, 175, 182, 10, 40, 80, 147, 28,
|
||||
39, 121, 183, 61, 159, 178, 231, 133, 75, 189, 143, 136, 191, 254, 115, 228, 186, 129,
|
||||
56, 137, 213, 177, 13, 46, 97, 202, 95, 41, 5, 16, 24, 228, 55, 10, 53, 1, 41, 1, 36,
|
||||
2, 0, 24, 48, 5, 20, 243, 119, 107, 152, 3, 212, 205, 76, 85, 38, 158, 240, 27, 213,
|
||||
11, 235, 33, 21, 38, 5, 48, 4, 20, 88, 240, 172, 159, 2, 82, 193, 71, 83, 67, 184, 97,
|
||||
99, 61, 125, 67, 232, 202, 171, 107, 36, 2, 96, 24, 48, 11, 64, 70, 43, 150, 195, 194,
|
||||
170, 43, 125, 91, 213, 210, 221, 175, 131, 131, 85, 22, 247, 213, 18, 101, 189, 30,
|
||||
134, 20, 226, 217, 145, 41, 225, 181, 150, 28, 200, 52, 237, 218, 195, 144, 209, 205,
|
||||
73, 88, 114, 139, 216, 85, 170, 63, 238, 164, 69, 35, 69, 39, 87, 211, 234, 57, 98, 19,
|
||||
43, 13, 0, 24,
|
||||
];
|
||||
// A single byte in the auth key id is changed in this
|
||||
pub const NOC1_AUTH_KEY_FAIL: [u8; 247] = [
|
||||
0x15, 0x30, 0x1, 0x1, 0x1, 0x24, 0x2, 0x1, 0x37, 0x3, 0x24, 0x13, 0x1, 0x24, 0x15, 0x1,
|
||||
|
@ -1150,47 +1112,5 @@ mod tests {
|
|||
0x16, 0x80, 0x14, 0x72, 0xc2, 0x01, 0xf7, 0x57, 0x19, 0x13, 0xb3, 0x48, 0xca, 0x00,
|
||||
0xca, 0x7b, 0x45, 0xf4, 0x77, 0x46, 0x68, 0xc9, 0x7e,
|
||||
];
|
||||
|
||||
/// An NOC that contains a Not-After validity field of '0'
|
||||
pub const NOC_NOT_AFTER_ZERO: [u8; 251] = [
|
||||
0x15, 0x30, 0x1, 0x1, 0x1, 0x24, 0x2, 0x1, 0x37, 0x3, 0x27, 0x14, 0xfc, 0x8d, 0xcf,
|
||||
0x45, 0x19, 0xff, 0x9a, 0x9a, 0x24, 0x15, 0x1, 0x18, 0x26, 0x4, 0x21, 0x39, 0x5a, 0x2c,
|
||||
0x24, 0x5, 0x0, 0x37, 0x6, 0x24, 0x15, 0x1, 0x26, 0x11, 0x6c, 0x4a, 0x95, 0xd2, 0x18,
|
||||
0x24, 0x7, 0x1, 0x24, 0x8, 0x1, 0x30, 0x9, 0x41, 0x4, 0x41, 0x7f, 0xb1, 0x61, 0xb0,
|
||||
0xbe, 0x19, 0x41, 0x81, 0xb9, 0x9f, 0xe8, 0x7b, 0xdd, 0xdf, 0xc4, 0x46, 0xe0, 0x74,
|
||||
0xba, 0x83, 0x21, 0xda, 0x3d, 0xf7, 0x88, 0x68, 0x14, 0xa6, 0x9d, 0xa9, 0x14, 0x88,
|
||||
0x94, 0x1e, 0xd3, 0x86, 0x62, 0xc7, 0x6f, 0xb4, 0x79, 0xd2, 0xaf, 0x34, 0xe7, 0xd6,
|
||||
0x4d, 0x87, 0x29, 0x67, 0x10, 0x73, 0xb9, 0x81, 0xe0, 0x9, 0xe1, 0x13, 0xbb, 0x6a,
|
||||
0xd2, 0x21, 0xaa, 0x37, 0xa, 0x35, 0x1, 0x28, 0x1, 0x18, 0x24, 0x2, 0x1, 0x36, 0x3,
|
||||
0x4, 0x2, 0x4, 0x1, 0x18, 0x30, 0x4, 0x14, 0x98, 0xaf, 0xa1, 0x3d, 0x41, 0x67, 0x7a,
|
||||
0x34, 0x8c, 0x67, 0x6c, 0xcc, 0x17, 0x6e, 0xd5, 0x58, 0xd8, 0x2b, 0x86, 0x8, 0x30, 0x5,
|
||||
0x14, 0xf8, 0xcf, 0xd0, 0x45, 0x6b, 0xe, 0xd1, 0x6f, 0xc5, 0x67, 0xdf, 0x81, 0xd7,
|
||||
0xe9, 0xb7, 0xeb, 0x39, 0x78, 0xec, 0x40, 0x18, 0x30, 0xb, 0x40, 0xf9, 0x80, 0x94,
|
||||
0xbf, 0xcf, 0x72, 0xa5, 0x54, 0x87, 0x12, 0x35, 0xc, 0x38, 0x79, 0xa8, 0xb, 0x21, 0x94,
|
||||
0xb5, 0x71, 0x2, 0xcb, 0xb, 0xda, 0xf9, 0x6c, 0x54, 0xcb, 0x50, 0x4b, 0x2, 0x5, 0xea,
|
||||
0xff, 0xfd, 0xb2, 0x1b, 0x24, 0x30, 0x79, 0xb1, 0x69, 0x87, 0xa5, 0x7, 0xc6, 0x76,
|
||||
0x15, 0x70, 0xc0, 0xec, 0x14, 0xd3, 0x9f, 0x1a, 0xa7, 0xe1, 0xca, 0x25, 0x2e, 0x44,
|
||||
0xfc, 0x96, 0x4d, 0x18,
|
||||
];
|
||||
pub const RCA_FOR_NOC_NOT_AFTER_ZERO: [u8; 251] = [
|
||||
0x15, 0x30, 0x1, 0x1, 0x0, 0x24, 0x2, 0x1, 0x37, 0x3, 0x27, 0x14, 0xfc, 0x8d, 0xcf,
|
||||
0x45, 0x19, 0xff, 0x9a, 0x9a, 0x24, 0x15, 0x1, 0x18, 0x26, 0x4, 0xb1, 0x2a, 0x38, 0x2c,
|
||||
0x26, 0x5, 0x31, 0x5e, 0x19, 0x2e, 0x37, 0x6, 0x27, 0x14, 0xfc, 0x8d, 0xcf, 0x45, 0x19,
|
||||
0xff, 0x9a, 0x9a, 0x24, 0x15, 0x1, 0x18, 0x24, 0x7, 0x1, 0x24, 0x8, 0x1, 0x30, 0x9,
|
||||
0x41, 0x4, 0x15, 0x69, 0x1e, 0x7b, 0x6a, 0xea, 0x5, 0xdb, 0xf8, 0x4b, 0xfd, 0xdc, 0x6c,
|
||||
0x75, 0x46, 0x74, 0xb0, 0x60, 0xdb, 0x4, 0x71, 0xb6, 0xd0, 0x52, 0xf2, 0xf8, 0xe6,
|
||||
0xbb, 0xd, 0xe5, 0x60, 0x1f, 0x84, 0x66, 0x4f, 0x3c, 0x90, 0x89, 0xa6, 0xc6, 0x99,
|
||||
0x61, 0xfb, 0x89, 0xf7, 0xa, 0xa6, 0xe4, 0xa2, 0x21, 0xd3, 0x37, 0x30, 0x1b, 0xd2,
|
||||
0x11, 0xc5, 0xcc, 0x0, 0xf4, 0x7a, 0x14, 0xfc, 0x3c, 0x37, 0xa, 0x35, 0x1, 0x29, 0x1,
|
||||
0x18, 0x24, 0x2, 0x60, 0x30, 0x4, 0x14, 0xf8, 0xcf, 0xd0, 0x45, 0x6b, 0xe, 0xd1, 0x6f,
|
||||
0xc5, 0x67, 0xdf, 0x81, 0xd7, 0xe9, 0xb7, 0xeb, 0x39, 0x78, 0xec, 0x40, 0x30, 0x5,
|
||||
0x14, 0xf8, 0xcf, 0xd0, 0x45, 0x6b, 0xe, 0xd1, 0x6f, 0xc5, 0x67, 0xdf, 0x81, 0xd7,
|
||||
0xe9, 0xb7, 0xeb, 0x39, 0x78, 0xec, 0x40, 0x18, 0x30, 0xb, 0x40, 0x4c, 0xae, 0xac,
|
||||
0xc1, 0x26, 0xdd, 0x56, 0xc, 0x85, 0x86, 0xbc, 0xeb, 0xa2, 0xb5, 0xb7, 0xdf, 0x49,
|
||||
0x92, 0x62, 0xcd, 0x2a, 0xb6, 0x4e, 0xc5, 0x31, 0x7c, 0xd9, 0xb, 0x1c, 0xe9, 0x6e,
|
||||
0xe5, 0x82, 0xc7, 0xb8, 0xda, 0x22, 0x31, 0x7b, 0x23, 0x5a, 0x2a, 0xe6, 0x76, 0x28,
|
||||
0xb6, 0xd4, 0xc7, 0x7b, 0x1c, 0x9c, 0x85, 0x71, 0x5f, 0xe6, 0xf6, 0x21, 0x50, 0x5c,
|
||||
0xa7, 0x7c, 0xc7, 0x1d, 0x9a, 0x18,
|
||||
];
|
||||
}
|
||||
}
|
|
@ -122,8 +122,8 @@ impl<'a, 'b> CertConsumer for CertPrinter<'a, 'b> {
|
|||
}
|
||||
Ok(())
|
||||
}
|
||||
fn utctime(&mut self, tag: &str, epoch: u64) -> Result<(), Error> {
|
||||
let matter_epoch = MATTER_EPOCH_SECS + epoch;
|
||||
fn utctime(&mut self, tag: &str, epoch: u32) -> Result<(), Error> {
|
||||
let matter_epoch = MATTER_EPOCH_SECS + epoch as u64;
|
||||
|
||||
let dt = OffsetDateTime::from_unix_timestamp(matter_epoch as _).unwrap();
|
||||
|
|
@ -17,8 +17,6 @@
|
|||
|
||||
use core::{borrow::Borrow, cell::RefCell};
|
||||
|
||||
use embassy_sync::{blocking_mutex::raw::NoopRawMutex, mutex::Mutex};
|
||||
|
||||
use crate::{
|
||||
acl::AclMgr,
|
||||
data_model::{
|
||||
|
@ -30,11 +28,8 @@ use crate::{
|
|||
mdns::Mdns,
|
||||
pairing::{print_pairing_code_and_qr, DiscoveryCapabilities},
|
||||
secure_channel::{pake::PaseMgr, spake2p::VerifierData},
|
||||
transport::{
|
||||
exchange::{ExchangeCtx, MAX_EXCHANGES},
|
||||
session::SessionMgr,
|
||||
},
|
||||
utils::{epoch::Epoch, rand::Rand, select::Notification},
|
||||
transport::exchange::Notification,
|
||||
utils::{epoch::Epoch, rand::Rand},
|
||||
};
|
||||
|
||||
/* The Matter Port */
|
||||
|
@ -50,22 +45,17 @@ pub struct CommissioningData {
|
|||
|
||||
/// The primary Matter Object
|
||||
pub struct Matter<'a> {
|
||||
fabric_mgr: RefCell<FabricMgr>,
|
||||
pub acl_mgr: RefCell<AclMgr>, // Public for tests
|
||||
pase_mgr: RefCell<PaseMgr>,
|
||||
failsafe: RefCell<FailSafe>,
|
||||
persist_notification: Notification,
|
||||
pub(crate) send_notification: Notification,
|
||||
mdns: &'a dyn Mdns,
|
||||
pub(crate) epoch: Epoch,
|
||||
pub(crate) rand: Rand,
|
||||
dev_det: &'a BasicInfoConfig<'a>,
|
||||
dev_att: &'a dyn DevAttDataFetcher,
|
||||
pub(crate) port: u16,
|
||||
pub(crate) exchanges: RefCell<heapless::Vec<ExchangeCtx, MAX_EXCHANGES>>,
|
||||
pub(crate) ephemeral: RefCell<Option<ExchangeCtx>>,
|
||||
pub(crate) ephemeral_mutex: Mutex<NoopRawMutex, ()>,
|
||||
pub session_mgr: RefCell<SessionMgr>, // Public for tests
|
||||
pub fabric_mgr: RefCell<FabricMgr>,
|
||||
pub acl_mgr: RefCell<AclMgr>,
|
||||
pub pase_mgr: RefCell<PaseMgr>,
|
||||
pub failsafe: RefCell<FailSafe>,
|
||||
pub persist_notification: Notification,
|
||||
pub mdns: &'a dyn Mdns,
|
||||
pub epoch: Epoch,
|
||||
pub rand: Rand,
|
||||
pub dev_det: &'a BasicInfoConfig<'a>,
|
||||
pub dev_att: &'a dyn DevAttDataFetcher,
|
||||
pub port: u16,
|
||||
}
|
||||
|
||||
impl<'a> Matter<'a> {
|
||||
|
@ -104,17 +94,12 @@ impl<'a> Matter<'a> {
|
|||
pase_mgr: RefCell::new(PaseMgr::new(epoch, rand)),
|
||||
failsafe: RefCell::new(FailSafe::new()),
|
||||
persist_notification: Notification::new(),
|
||||
send_notification: Notification::new(),
|
||||
mdns,
|
||||
epoch,
|
||||
rand,
|
||||
dev_det,
|
||||
dev_att,
|
||||
port,
|
||||
exchanges: RefCell::new(heapless::Vec::new()),
|
||||
ephemeral: RefCell::new(None),
|
||||
ephemeral_mutex: Mutex::new(()),
|
||||
session_mgr: RefCell::new(SessionMgr::new(epoch, rand)),
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -175,7 +160,6 @@ impl<'a> Matter<'a> {
|
|||
Ok(false)
|
||||
}
|
||||
}
|
||||
|
||||
pub fn notify_changed(&self) {
|
||||
if self.is_changed() {
|
||||
self.persist_notification.signal(());
|
|
@ -17,8 +17,6 @@
|
|||
|
||||
extern crate alloc;
|
||||
|
||||
use core::fmt::{self, Debug};
|
||||
|
||||
use alloc::sync::Arc;
|
||||
|
||||
use log::{error, info};
|
||||
|
@ -357,9 +355,3 @@ impl Sha256 {
|
|||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Debug for Sha256 {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
|
||||
write!(f, "Sha256")
|
||||
}
|
||||
}
|
|
@ -15,8 +15,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
use core::fmt::{self, Debug};
|
||||
|
||||
use crate::error::{Error, ErrorCode};
|
||||
use crate::utils::rand::Rand;
|
||||
|
||||
|
@ -59,8 +57,7 @@ impl HmacSha256 {
|
|||
}
|
||||
|
||||
pub fn update(&mut self, data: &[u8]) -> Result<(), Error> {
|
||||
self.ctx.update(data);
|
||||
Ok(())
|
||||
Ok(self.ctx.update(data))
|
||||
}
|
||||
|
||||
pub fn finish(self, out: &mut [u8]) -> Result<(), Error> {
|
||||
|
@ -119,7 +116,7 @@ impl KeyPair {
|
|||
fn private_key(&self) -> Result<&EcKey<Private>, Error> {
|
||||
match &self.key {
|
||||
KeyType::Public(_) => Err(ErrorCode::Invalid.into()),
|
||||
KeyType::Private(k) => Ok(k),
|
||||
KeyType::Private(k) => Ok(&k),
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -228,7 +225,7 @@ impl KeyPair {
|
|||
}
|
||||
|
||||
const P256_KEY_LEN: usize = 256 / 8;
|
||||
pub fn pubkey_from_der(der: &[u8], out_key: &mut [u8]) -> Result<(), Error> {
|
||||
pub fn pubkey_from_der<'a>(der: &'a [u8], out_key: &mut [u8]) -> Result<(), Error> {
|
||||
if out_key.len() != P256_KEY_LEN {
|
||||
error!("Insufficient length");
|
||||
Err(ErrorCode::NoSpace.into())
|
||||
|
@ -287,7 +284,7 @@ pub fn decrypt_in_place(
|
|||
) -> Result<usize, Error> {
|
||||
let tag_start = data.len() - super::AEAD_MIC_LEN_BYTES;
|
||||
let (data, tag) = data.split_at_mut(tag_start);
|
||||
let result = lowlevel_decrypt_aead(key, Some(nonce), ad, data, tag)?;
|
||||
let result = lowlevel_decrypt_aead(key, Some(nonce), ad, data, &tag)?;
|
||||
data[..result.len()].copy_from_slice(result.as_slice());
|
||||
Ok(result.len())
|
||||
}
|
||||
|
@ -394,9 +391,3 @@ impl Sha256 {
|
|||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl Debug for Sha256 {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
|
||||
write!(f, "Sha256")
|
||||
}
|
||||
}
|
|
@ -37,29 +37,37 @@ pub const ECDH_SHARED_SECRET_LEN_BYTES: usize = 32;
|
|||
|
||||
pub const EC_SIGNATURE_LEN_BYTES: usize = 64;
|
||||
|
||||
#[cfg(all(feature = "mbedtls", target_os = "espidf"))]
|
||||
#[cfg(all(feature = "crypto_mbedtls", target_os = "espidf"))]
|
||||
mod crypto_esp_mbedtls;
|
||||
#[cfg(all(feature = "mbedtls", target_os = "espidf"))]
|
||||
#[cfg(all(feature = "crypto_mbedtls", target_os = "espidf"))]
|
||||
pub use self::crypto_esp_mbedtls::*;
|
||||
|
||||
#[cfg(all(feature = "mbedtls", not(target_os = "espidf")))]
|
||||
#[cfg(all(feature = "crypto_mbedtls", not(target_os = "espidf")))]
|
||||
mod crypto_mbedtls;
|
||||
#[cfg(all(feature = "mbedtls", not(target_os = "espidf")))]
|
||||
#[cfg(all(feature = "crypto_mbedtls", not(target_os = "espidf")))]
|
||||
pub use self::crypto_mbedtls::*;
|
||||
|
||||
#[cfg(feature = "openssl")]
|
||||
#[cfg(feature = "crypto_openssl")]
|
||||
mod crypto_openssl;
|
||||
#[cfg(feature = "openssl")]
|
||||
#[cfg(feature = "crypto_openssl")]
|
||||
pub use self::crypto_openssl::*;
|
||||
|
||||
#[cfg(feature = "rustcrypto")]
|
||||
#[cfg(feature = "crypto_rustcrypto")]
|
||||
mod crypto_rustcrypto;
|
||||
#[cfg(feature = "rustcrypto")]
|
||||
#[cfg(feature = "crypto_rustcrypto")]
|
||||
pub use self::crypto_rustcrypto::*;
|
||||
|
||||
#[cfg(not(any(feature = "openssl", feature = "mbedtls", feature = "rustcrypto")))]
|
||||
#[cfg(not(any(
|
||||
feature = "crypto_openssl",
|
||||
feature = "crypto_mbedtls",
|
||||
feature = "crypto_rustcrypto"
|
||||
)))]
|
||||
pub mod crypto_dummy;
|
||||
#[cfg(not(any(feature = "openssl", feature = "mbedtls", feature = "rustcrypto")))]
|
||||
#[cfg(not(any(
|
||||
feature = "crypto_openssl",
|
||||
feature = "crypto_mbedtls",
|
||||
feature = "crypto_rustcrypto"
|
||||
)))]
|
||||
pub use self::crypto_dummy::*;
|
||||
|
||||
impl<'a> FromTLV<'a> for KeyPair {
|
|
@ -15,15 +15,10 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
use core::{cell::RefCell, convert::TryInto};
|
||||
use core::convert::TryInto;
|
||||
|
||||
use super::objects::*;
|
||||
use crate::{
|
||||
attribute_enum,
|
||||
error::{Error, ErrorCode},
|
||||
utils::rand::Rand,
|
||||
};
|
||||
use heapless::String;
|
||||
use crate::{attribute_enum, error::Error, utils::rand::Rand};
|
||||
use strum::FromRepr;
|
||||
|
||||
pub const ID: u32 = 0x0028;
|
||||
|
@ -32,11 +27,8 @@ pub const ID: u32 = 0x0028;
|
|||
#[repr(u16)]
|
||||
pub enum Attributes {
|
||||
DMRevision(AttrType<u8>) = 0,
|
||||
VendorName(AttrUtfType) = 1,
|
||||
VendorId(AttrType<u16>) = 2,
|
||||
ProductName(AttrUtfType) = 3,
|
||||
ProductId(AttrType<u16>) = 4,
|
||||
NodeLabel(AttrUtfType) = 5,
|
||||
HwVer(AttrType<u16>) = 7,
|
||||
SwVer(AttrType<u32>) = 9,
|
||||
SwVerString(AttrUtfType) = 0xa,
|
||||
|
@ -47,11 +39,8 @@ attribute_enum!(Attributes);
|
|||
|
||||
pub enum AttributesDiscriminants {
|
||||
DMRevision = 0,
|
||||
VendorName = 1,
|
||||
VendorId = 2,
|
||||
ProductName = 3,
|
||||
ProductId = 4,
|
||||
NodeLabel = 5,
|
||||
HwVer = 7,
|
||||
SwVer = 9,
|
||||
SwVerString = 0xa,
|
||||
|
@ -68,8 +57,6 @@ pub struct BasicInfoConfig<'a> {
|
|||
pub serial_no: &'a str,
|
||||
/// Device name; up to 32 characters
|
||||
pub device_name: &'a str,
|
||||
pub vendor_name: &'a str,
|
||||
pub product_name: &'a str,
|
||||
}
|
||||
|
||||
pub const CLUSTER: Cluster<'static> = Cluster {
|
||||
|
@ -83,31 +70,16 @@ pub const CLUSTER: Cluster<'static> = Cluster {
|
|||
Access::RV,
|
||||
Quality::FIXED,
|
||||
),
|
||||
Attribute::new(
|
||||
AttributesDiscriminants::VendorName as u16,
|
||||
Access::RV,
|
||||
Quality::FIXED,
|
||||
),
|
||||
Attribute::new(
|
||||
AttributesDiscriminants::VendorId as u16,
|
||||
Access::RV,
|
||||
Quality::FIXED,
|
||||
),
|
||||
Attribute::new(
|
||||
AttributesDiscriminants::ProductName as u16,
|
||||
Access::RV,
|
||||
Quality::FIXED,
|
||||
),
|
||||
Attribute::new(
|
||||
AttributesDiscriminants::ProductId as u16,
|
||||
Access::RV,
|
||||
Quality::FIXED,
|
||||
),
|
||||
Attribute::new(
|
||||
AttributesDiscriminants::NodeLabel as u16,
|
||||
Access::RWVM,
|
||||
Quality::N,
|
||||
),
|
||||
Attribute::new(
|
||||
AttributesDiscriminants::HwVer as u16,
|
||||
Access::RV,
|
||||
|
@ -135,16 +107,13 @@ pub const CLUSTER: Cluster<'static> = Cluster {
|
|||
pub struct BasicInfoCluster<'a> {
|
||||
data_ver: Dataver,
|
||||
cfg: &'a BasicInfoConfig<'a>,
|
||||
node_label: RefCell<String<32>>, // Max node-label as per the spec
|
||||
}
|
||||
|
||||
impl<'a> BasicInfoCluster<'a> {
|
||||
pub fn new(cfg: &'a BasicInfoConfig<'a>, rand: Rand) -> Self {
|
||||
let node_label = RefCell::new(String::from(""));
|
||||
Self {
|
||||
data_ver: Dataver::new(rand),
|
||||
cfg,
|
||||
node_label,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -155,13 +124,8 @@ impl<'a> BasicInfoCluster<'a> {
|
|||
} else {
|
||||
match attr.attr_id.try_into()? {
|
||||
Attributes::DMRevision(codec) => codec.encode(writer, 1),
|
||||
Attributes::VendorName(codec) => codec.encode(writer, self.cfg.vendor_name),
|
||||
Attributes::VendorId(codec) => codec.encode(writer, self.cfg.vid),
|
||||
Attributes::ProductName(codec) => codec.encode(writer, self.cfg.product_name),
|
||||
Attributes::ProductId(codec) => codec.encode(writer, self.cfg.pid),
|
||||
Attributes::NodeLabel(codec) => {
|
||||
codec.encode(writer, self.node_label.borrow().as_str())
|
||||
}
|
||||
Attributes::HwVer(codec) => codec.encode(writer, self.cfg.hw_ver),
|
||||
Attributes::SwVer(codec) => codec.encode(writer, self.cfg.sw_ver),
|
||||
Attributes::SwVerString(codec) => codec.encode(writer, self.cfg.sw_ver_str),
|
||||
|
@ -172,35 +136,12 @@ impl<'a> BasicInfoCluster<'a> {
|
|||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
pub fn write(&self, attr: &AttrDetails, data: AttrData) -> Result<(), Error> {
|
||||
let data = data.with_dataver(self.data_ver.get())?;
|
||||
|
||||
match attr.attr_id.try_into()? {
|
||||
Attributes::NodeLabel(codec) => {
|
||||
*self.node_label.borrow_mut() = String::from(
|
||||
codec
|
||||
.decode(data)
|
||||
.map_err(|_| Error::new(ErrorCode::InvalidAction))?,
|
||||
);
|
||||
}
|
||||
_ => return Err(Error::new(ErrorCode::InvalidAction)),
|
||||
}
|
||||
|
||||
self.data_ver.changed();
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> Handler for BasicInfoCluster<'a> {
|
||||
fn read(&self, attr: &AttrDetails, encoder: AttrDataEncoder) -> Result<(), Error> {
|
||||
BasicInfoCluster::read(self, attr, encoder)
|
||||
}
|
||||
|
||||
fn write(&self, attr: &AttrDetails, data: AttrData) -> Result<(), Error> {
|
||||
BasicInfoCluster::write(self, attr, data)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> NonBlockingHandler for BasicInfoCluster<'a> {}
|
|
@ -54,7 +54,7 @@ pub const CLUSTER: Cluster<'static> = Cluster {
|
|||
Attribute::new(
|
||||
AttributesDiscriminants::OnOff as u16,
|
||||
Access::RV,
|
||||
Quality::SN,
|
||||
Quality::PERSISTENT,
|
||||
),
|
||||
],
|
||||
commands: &[
|
|
@ -15,7 +15,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
use portable_atomic::{AtomicU32, Ordering};
|
||||
use core::sync::atomic::{AtomicU32, Ordering};
|
||||
|
||||
use super::objects::*;
|
||||
use crate::{
|
||||
|
@ -28,12 +28,6 @@ use crate::{
|
|||
// TODO: For now...
|
||||
static SUBS_ID: AtomicU32 = AtomicU32::new(1);
|
||||
|
||||
/// The Maximum number of expanded writer request per transaction
|
||||
///
|
||||
/// The write requests are first wildcard-expanded, and these many number of
|
||||
/// write requests per-transaction will be supported.
|
||||
pub const MAX_WRITE_ATTRS_IN_ONE_TRANS: usize = 7;
|
||||
|
||||
pub struct DataModel<T>(T);
|
||||
|
||||
impl<T> DataModel<T> {
|
||||
|
@ -99,21 +93,8 @@ impl<T> DataModel<T> {
|
|||
ref mut driver,
|
||||
} => {
|
||||
let accessor = driver.accessor()?;
|
||||
// The spec expects that a single write request like DeleteList + AddItem
|
||||
// should cause all ACLs of that fabric to be deleted and the new one to be added (Case 1).
|
||||
//
|
||||
// This is in conflict with the immediate-effect expectation of ACL: an ACL
|
||||
// write should instantaneously update the ACL so that immediate next WriteAttribute
|
||||
// *in the same WriteRequest* should see that effect (Case 2).
|
||||
//
|
||||
// As with the C++ SDK, here we do all the ACLs checks first, before any write begins.
|
||||
// Thus we support the Case1 by doing this. It does come at the cost of maintaining an
|
||||
// additional list of expanded write requests as we start processing those.
|
||||
let node = metadata.node();
|
||||
let write_attrs: heapless::Vec<_, MAX_WRITE_ATTRS_IN_ONE_TRANS> =
|
||||
node.write(req, &accessor).collect();
|
||||
|
||||
for item in write_attrs {
|
||||
for item in metadata.node().write(req, &accessor) {
|
||||
AttrDataEncoder::handle_write(&item, &self.0, &mut driver.writer()?)
|
||||
.await?;
|
||||
}
|
|
@ -14,7 +14,6 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#![allow(clippy::bad_bit_mask)]
|
||||
|
||||
use crate::data_model::objects::GlobalElements;
|
||||
|
||||
|
@ -40,12 +39,9 @@ bitflags! {
|
|||
const READ_PRIVILEGE_MASK = Self::NEED_VIEW.bits | Self::NEED_MANAGE.bits | Self::NEED_OPERATE.bits | Self::NEED_ADMIN.bits;
|
||||
const WRITE_PRIVILEGE_MASK = Self::NEED_MANAGE.bits | Self::NEED_OPERATE.bits | Self::NEED_ADMIN.bits;
|
||||
const RV = Self::READ.bits | Self::NEED_VIEW.bits;
|
||||
const RF = Self::READ.bits | Self::FAB_SCOPED.bits;
|
||||
const RA = Self::READ.bits | Self::NEED_ADMIN.bits;
|
||||
const RWVA = Self::READ.bits | Self::WRITE.bits | Self::NEED_VIEW.bits | Self::NEED_ADMIN.bits;
|
||||
const RWFA = Self::READ.bits | Self::WRITE.bits | Self::FAB_SCOPED.bits | Self::NEED_ADMIN.bits;
|
||||
const RWVM = Self::READ.bits | Self::WRITE.bits | Self::NEED_VIEW.bits | Self::NEED_MANAGE.bits;
|
||||
const RWFVM = Self::READ.bits | Self::WRITE.bits | Self::FAB_SCOPED.bits |Self::NEED_VIEW.bits | Self::NEED_MANAGE.bits;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -76,16 +72,10 @@ bitflags! {
|
|||
#[derive(Default)]
|
||||
pub struct Quality: u8 {
|
||||
const NONE = 0x00;
|
||||
const SCENE = 0x01; // Short: S
|
||||
const PERSISTENT = 0x02; // Short: N
|
||||
const FIXED = 0x04; // Short: F
|
||||
const NULLABLE = 0x08; // Short: X
|
||||
|
||||
const SN = Self::SCENE.bits | Self::PERSISTENT.bits;
|
||||
const S = Self::SCENE.bits;
|
||||
const N = Self::PERSISTENT.bits;
|
||||
const F = Self::FIXED.bits;
|
||||
const X = Self::NULLABLE.bits;
|
||||
const SCENE = 0x01;
|
||||
const PERSISTENT = 0x02;
|
||||
const FIXED = 0x03;
|
||||
const NULLABLE = 0x04;
|
||||
}
|
||||
}
|
||||
|
|
@ -141,7 +141,7 @@ impl<'a, 'b, 'c> AttrDataEncoder<'a, 'b, 'c> {
|
|||
|
||||
#[cfg(feature = "nightly")]
|
||||
{
|
||||
handler.read(attr, encoder).await
|
||||
handler.read(&attr, encoder).await
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -181,7 +181,9 @@ impl<'a, 'b, 'c> AttrDataEncoder<'a, 'b, 'c> {
|
|||
|
||||
#[cfg(feature = "nightly")]
|
||||
{
|
||||
handler.write(attr, AttrData::new(attr.dataver, data)).await
|
||||
handler
|
||||
.write(&attr, AttrData::new(attr.dataver, &data))
|
||||
.await
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -355,7 +357,7 @@ impl<'a, 'b, 'c> CmdDataEncoder<'a, 'b, 'c> {
|
|||
|
||||
#[cfg(feature = "nightly")]
|
||||
{
|
||||
handler.invoke(exchange, cmd, data, encoder).await
|
||||
handler.invoke(exchange, &cmd, &data, encoder).await
|
||||
}
|
||||
};
|
||||
|
|
@ -1,20 +1,3 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (c) 2020-2022 Project CHIP Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
use crate::data_model::objects::Node;
|
||||
|
||||
#[cfg(feature = "nightly")]
|
|
@ -15,12 +15,8 @@ use super::{
|
|||
sdm::{
|
||||
admin_commissioning::{self, AdminCommCluster},
|
||||
dev_att::DevAttDataFetcher,
|
||||
ethernet_nw_diagnostics::{self, EthNwDiagCluster},
|
||||
failsafe::FailSafe,
|
||||
general_commissioning::{self, GenCommCluster},
|
||||
general_diagnostics::{self, GenDiagCluster},
|
||||
group_key_management,
|
||||
group_key_management::GrpKeyMgmtCluster,
|
||||
noc::{self, NocCluster},
|
||||
nw_commissioning::{self, NwCommCluster},
|
||||
},
|
||||
|
@ -37,13 +33,10 @@ pub type RootEndpointHandler<'a> = handler_chain_type!(
|
|||
NwCommCluster,
|
||||
AdminCommCluster<'a>,
|
||||
NocCluster<'a>,
|
||||
AccessControlCluster<'a>,
|
||||
GenDiagCluster,
|
||||
EthNwDiagCluster,
|
||||
GrpKeyMgmtCluster
|
||||
AccessControlCluster<'a>
|
||||
);
|
||||
|
||||
pub const CLUSTERS: [Cluster<'static>; 10] = [
|
||||
pub const CLUSTERS: [Cluster<'static>; 7] = [
|
||||
descriptor::CLUSTER,
|
||||
cluster_basic_information::CLUSTER,
|
||||
general_commissioning::CLUSTER,
|
||||
|
@ -51,9 +44,6 @@ pub const CLUSTERS: [Cluster<'static>; 10] = [
|
|||
admin_commissioning::CLUSTER,
|
||||
noc::CLUSTER,
|
||||
access_control::CLUSTER,
|
||||
general_diagnostics::CLUSTER,
|
||||
ethernet_nw_diagnostics::CLUSTER,
|
||||
group_key_management::CLUSTER,
|
||||
];
|
||||
|
||||
pub const fn endpoint(id: EndptId) -> Endpoint<'static> {
|
||||
|
@ -105,21 +95,6 @@ pub fn wrap<'a>(
|
|||
rand: Rand,
|
||||
) -> RootEndpointHandler<'a> {
|
||||
EmptyHandler
|
||||
.chain(
|
||||
endpoint_id,
|
||||
group_key_management::ID,
|
||||
GrpKeyMgmtCluster::new(rand),
|
||||
)
|
||||
.chain(
|
||||
endpoint_id,
|
||||
ethernet_nw_diagnostics::ID,
|
||||
EthNwDiagCluster::new(rand),
|
||||
)
|
||||
.chain(
|
||||
endpoint_id,
|
||||
general_diagnostics::ID,
|
||||
GenDiagCluster::new(rand),
|
||||
)
|
||||
.chain(
|
||||
endpoint_id,
|
||||
access_control::ID,
|
|
@ -34,7 +34,7 @@ enum NocState {
|
|||
#[derive(PartialEq)]
|
||||
pub struct ArmedCtx {
|
||||
session_mode: SessionMode,
|
||||
timeout: u16,
|
||||
timeout: u8,
|
||||
noc_state: NocState,
|
||||
}
|
||||
|
||||
|
@ -54,7 +54,7 @@ impl FailSafe {
|
|||
Self { state: State::Idle }
|
||||
}
|
||||
|
||||
pub fn arm(&mut self, timeout: u16, session_mode: SessionMode) -> Result<(), Error> {
|
||||
pub fn arm(&mut self, timeout: u8, session_mode: SessionMode) -> Result<(), Error> {
|
||||
match &mut self.state {
|
||||
State::Idle => {
|
||||
self.state = State::Armed(ArmedCtx {
|
|
@ -117,19 +117,13 @@ pub const CLUSTER: Cluster<'static> = Cluster {
|
|||
|
||||
#[derive(FromTLV, ToTLV)]
|
||||
struct FailSafeParams {
|
||||
expiry_len: u16,
|
||||
bread_crumb: u64,
|
||||
}
|
||||
|
||||
#[derive(ToTLV)]
|
||||
struct BasicCommissioningInfo {
|
||||
expiry_len: u16,
|
||||
max_cmltv_failsafe_secs: u16,
|
||||
expiry_len: u8,
|
||||
bread_crumb: u8,
|
||||
}
|
||||
|
||||
pub struct GenCommCluster<'a> {
|
||||
data_ver: Dataver,
|
||||
basic_comm_info: BasicCommissioningInfo,
|
||||
expiry_len: u16,
|
||||
failsafe: &'a RefCell<FailSafe>,
|
||||
}
|
||||
|
||||
|
@ -139,10 +133,7 @@ impl<'a> GenCommCluster<'a> {
|
|||
data_ver: Dataver::new(rand),
|
||||
failsafe,
|
||||
// TODO: Arch-Specific
|
||||
basic_comm_info: BasicCommissioningInfo {
|
||||
expiry_len: 120,
|
||||
max_cmltv_failsafe_secs: 120,
|
||||
},
|
||||
expiry_len: 120,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -166,8 +157,10 @@ impl<'a> GenCommCluster<'a> {
|
|||
codec.encode(writer, RegLocationType::IndoorOutdoor as _)
|
||||
}
|
||||
Attributes::BasicCommissioningInfo(_) => {
|
||||
self.basic_comm_info
|
||||
.to_tlv(&mut writer, AttrDataWriter::TAG)?;
|
||||
writer.start_struct(AttrDataWriter::TAG)?;
|
||||
writer.u16(TagType::Context(0), self.expiry_len)?;
|
||||
writer.end_container()?;
|
||||
|
||||
writer.complete()
|
||||
}
|
||||
}
|
|
@ -17,10 +17,7 @@
|
|||
|
||||
pub mod admin_commissioning;
|
||||
pub mod dev_att;
|
||||
pub mod ethernet_nw_diagnostics;
|
||||
pub mod failsafe;
|
||||
pub mod general_commissioning;
|
||||
pub mod general_diagnostics;
|
||||
pub mod group_key_management;
|
||||
pub mod noc;
|
||||
pub mod nw_commissioning;
|
|
@ -186,7 +186,7 @@ struct NocResp<'a> {
|
|||
#[tlvargs(lifetime = "'a")]
|
||||
struct AddNocReq<'a> {
|
||||
noc_value: OctetStr<'a>,
|
||||
icac_value: Option<OctetStr<'a>>,
|
||||
icac_value: OctetStr<'a>,
|
||||
ipk_value: OctetStr<'a>,
|
||||
case_admin_subject: u64,
|
||||
vendor_id: u16,
|
||||
|
@ -358,17 +358,13 @@ impl<'a> NocCluster<'a> {
|
|||
|
||||
let noc = heapless::Vec::from_slice(r.noc_value.0).map_err(|_| NocStatus::InvalidNOC)?;
|
||||
|
||||
let icac = if let Some(icac_value) = r.icac_value {
|
||||
if !icac_value.0.is_empty() {
|
||||
let icac_cert = Cert::new(icac_value.0).map_err(|_| NocStatus::InvalidNOC)?;
|
||||
info!("Received ICAC as: {}", icac_cert);
|
||||
let icac = if !r.icac_value.0.is_empty() {
|
||||
let icac_cert = Cert::new(r.icac_value.0).map_err(|_| NocStatus::InvalidNOC)?;
|
||||
info!("Received ICAC as: {}", icac_cert);
|
||||
|
||||
let icac =
|
||||
heapless::Vec::from_slice(icac_value.0).map_err(|_| NocStatus::InvalidNOC)?;
|
||||
Some(icac)
|
||||
} else {
|
||||
None
|
||||
}
|
||||
let icac =
|
||||
heapless::Vec::from_slice(r.icac_value.0).map_err(|_| NocStatus::InvalidNOC)?;
|
||||
Some(icac)
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
@ -605,20 +601,6 @@ impl<'a> NocCluster<'a> {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
fn add_rca_to_session_noc_data(exchange: &Exchange, data: &TLVElement) -> Result<(), Error> {
|
||||
exchange.with_session_mut(|sess| {
|
||||
let noc_data = sess.get_noc_data().ok_or(ErrorCode::NoSession)?;
|
||||
|
||||
let req = CommonReq::from_tlv(data).map_err(Error::map_invalid_command)?;
|
||||
info!("Received Trusted Cert:{:x?}", req.str);
|
||||
|
||||
noc_data.root_ca =
|
||||
heapless::Vec::from_slice(req.str.0).map_err(|_| ErrorCode::BufferTooSmall)?;
|
||||
|
||||
Ok(())
|
||||
})
|
||||
}
|
||||
|
||||
fn handle_command_addtrustedrootcert(
|
||||
&self,
|
||||
exchange: &Exchange,
|
||||
|
@ -631,12 +613,21 @@ impl<'a> NocCluster<'a> {
|
|||
|
||||
// This may happen on CASE or PASE. For PASE, the existence of NOC Data is necessary
|
||||
match exchange.with_session(|sess| Ok(sess.get_session_mode().clone()))? {
|
||||
SessionMode::Case(_) => {
|
||||
// TODO - Updating the Trusted RCA of an existing Fabric
|
||||
Self::add_rca_to_session_noc_data(exchange, data)?;
|
||||
}
|
||||
SessionMode::Case(_) => error!("CASE: AddTrustedRootCert handling pending"), // For a CASE Session, we just return success for now,
|
||||
SessionMode::Pase => {
|
||||
Self::add_rca_to_session_noc_data(exchange, data)?;
|
||||
exchange.with_session_mut(|sess| {
|
||||
let noc_data = sess.get_noc_data().ok_or(ErrorCode::NoSession)?;
|
||||
|
||||
let req = CommonReq::from_tlv(data).map_err(Error::map_invalid_command)?;
|
||||
info!("Received Trusted Cert:{:x?}", req.str);
|
||||
|
||||
noc_data.root_ca = heapless::Vec::from_slice(req.str.0)
|
||||
.map_err(|_| ErrorCode::BufferTooSmall)?;
|
||||
|
||||
Ok(())
|
||||
})?;
|
||||
|
||||
// TODO
|
||||
}
|
||||
_ => (),
|
||||
}
|
74
matter/src/data_model/sdm/nw_commissioning.rs
Normal file
74
matter/src/data_model/sdm/nw_commissioning.rs
Normal file
|
@ -0,0 +1,74 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (c) 2020-2022 Project CHIP Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
use crate::{
|
||||
data_model::objects::{
|
||||
AttrDataEncoder, AttrDetails, ChangeNotifier, Cluster, Dataver, Handler,
|
||||
NonBlockingHandler, ATTRIBUTE_LIST, FEATURE_MAP,
|
||||
},
|
||||
error::{Error, ErrorCode},
|
||||
utils::rand::Rand,
|
||||
};
|
||||
|
||||
pub const ID: u32 = 0x0031;
|
||||
|
||||
enum FeatureMap {
|
||||
_Wifi = 0x01,
|
||||
_Thread = 0x02,
|
||||
Ethernet = 0x04,
|
||||
}
|
||||
|
||||
pub const CLUSTER: Cluster<'static> = Cluster {
|
||||
id: ID as _,
|
||||
feature_map: FeatureMap::Ethernet as _,
|
||||
attributes: &[FEATURE_MAP, ATTRIBUTE_LIST],
|
||||
commands: &[],
|
||||
};
|
||||
|
||||
pub struct NwCommCluster {
|
||||
data_ver: Dataver,
|
||||
}
|
||||
|
||||
impl NwCommCluster {
|
||||
pub fn new(rand: Rand) -> Self {
|
||||
Self {
|
||||
data_ver: Dataver::new(rand),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Handler for NwCommCluster {
|
||||
fn read(&self, attr: &AttrDetails, encoder: AttrDataEncoder) -> Result<(), Error> {
|
||||
if let Some(writer) = encoder.with_dataver(self.data_ver.get())? {
|
||||
if attr.is_system() {
|
||||
CLUSTER.read(attr.attr_id, writer)
|
||||
} else {
|
||||
Err(ErrorCode::AttributeNotFound.into())
|
||||
}
|
||||
} else {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl NonBlockingHandler for NwCommCluster {}
|
||||
|
||||
impl ChangeNotifier<()> for NwCommCluster {
|
||||
fn consume_change(&mut self) -> Option<()> {
|
||||
self.data_ver.consume_change(())
|
||||
}
|
||||
}
|
|
@ -47,8 +47,6 @@ pub enum ErrorCode {
|
|||
NoMemory,
|
||||
NoSession,
|
||||
NoSpace,
|
||||
NoSpaceExchanges,
|
||||
NoSpaceSessions,
|
||||
NoSpaceAckTable,
|
||||
NoSpaceRetransTable,
|
||||
NoTagFound,
|
||||
|
@ -85,8 +83,6 @@ pub struct Error {
|
|||
code: ErrorCode,
|
||||
#[cfg(all(feature = "std", feature = "backtrace"))]
|
||||
backtrace: std::backtrace::Backtrace,
|
||||
#[cfg(all(feature = "std", feature = "backtrace"))]
|
||||
inner: Option<Box<dyn std::error::Error + Send>>,
|
||||
}
|
||||
|
||||
impl Error {
|
||||
|
@ -95,22 +91,6 @@ impl Error {
|
|||
code,
|
||||
#[cfg(all(feature = "std", feature = "backtrace"))]
|
||||
backtrace: std::backtrace::Backtrace::capture(),
|
||||
#[cfg(all(feature = "std", feature = "backtrace"))]
|
||||
inner: None,
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(all(feature = "std", feature = "backtrace"))]
|
||||
pub fn new_with_details(
|
||||
code: ErrorCode,
|
||||
detailed_err: Box<dyn std::error::Error + Send>,
|
||||
) -> Self {
|
||||
Self {
|
||||
code,
|
||||
#[cfg(all(feature = "std", feature = "backtrace"))]
|
||||
backtrace: std::backtrace::Backtrace::capture(),
|
||||
#[cfg(all(feature = "std", feature = "backtrace"))]
|
||||
inner: Some(detailed_err),
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -123,11 +103,6 @@ impl Error {
|
|||
&self.backtrace
|
||||
}
|
||||
|
||||
#[cfg(all(feature = "std", feature = "backtrace"))]
|
||||
pub fn details(&self) -> Option<&(dyn std::error::Error + Send)> {
|
||||
self.inner.as_ref().map(|err| err.as_ref())
|
||||
}
|
||||
|
||||
pub fn remap<F>(self, matcher: F, to: Self) -> Self
|
||||
where
|
||||
F: FnOnce(&Self) -> bool,
|
||||
|
@ -159,16 +134,10 @@ impl Error {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg(all(feature = "std", feature = "backtrace"))]
|
||||
impl From<std::io::Error> for Error {
|
||||
fn from(e: std::io::Error) -> Self {
|
||||
Self::new_with_details(ErrorCode::StdIoError, Box::new(e))
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(all(feature = "std", not(feature = "backtrace")))]
|
||||
#[cfg(feature = "std")]
|
||||
impl From<std::io::Error> for Error {
|
||||
fn from(_e: std::io::Error) -> Self {
|
||||
// Keep things simple for now
|
||||
Self::new(ErrorCode::StdIoError)
|
||||
}
|
||||
}
|
||||
|
@ -180,7 +149,7 @@ impl<T> From<std::sync::PoisonError<T>> for Error {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg(feature = "openssl")]
|
||||
#[cfg(feature = "crypto_openssl")]
|
||||
impl From<openssl::error::ErrorStack> for Error {
|
||||
fn from(e: openssl::error::ErrorStack) -> Self {
|
||||
::log::error!("Error in TLS: {}", e);
|
||||
|
@ -188,7 +157,7 @@ impl From<openssl::error::ErrorStack> for Error {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg(all(feature = "mbedtls", not(target_os = "espidf")))]
|
||||
#[cfg(all(feature = "crypto_mbedtls", not(target_os = "espidf")))]
|
||||
impl From<mbedtls::Error> for Error {
|
||||
fn from(e: mbedtls::Error) -> Self {
|
||||
::log::error!("Error in TLS: {}", e);
|
||||
|
@ -204,7 +173,7 @@ impl From<esp_idf_sys::EspError> for Error {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg(feature = "rustcrypto")]
|
||||
#[cfg(feature = "crypto_rustcrypto")]
|
||||
impl From<ccm::aead::Error> for Error {
|
||||
fn from(_e: ccm::aead::Error) -> Self {
|
||||
Self::new(ErrorCode::Crypto)
|
||||
|
@ -250,21 +219,7 @@ impl fmt::Debug for Error {
|
|||
|
||||
impl fmt::Display for Error {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
#[cfg(all(feature = "std", feature = "backtrace"))]
|
||||
{
|
||||
write!(
|
||||
f,
|
||||
"{:?}: {}",
|
||||
self.code(),
|
||||
self.inner
|
||||
.as_ref()
|
||||
.map_or(String::new(), |err| { err.to_string() })
|
||||
)
|
||||
}
|
||||
#[cfg(not(all(feature = "std", feature = "backtrace")))]
|
||||
{
|
||||
write!(f, "{:?}", self.code())
|
||||
}
|
||||
write!(f, "{:?}", self.code())
|
||||
}
|
||||
}
|
||||
|
|
@ -33,6 +33,7 @@ use crate::{
|
|||
|
||||
const COMPRESSED_FABRIC_ID_LEN: usize = 8;
|
||||
|
||||
#[allow(dead_code)]
|
||||
#[derive(Debug, ToTLV)]
|
||||
#[tlvargs(lifetime = "'a", start = 1)]
|
||||
pub struct FabricDescriptor<'a> {
|
|
@ -609,7 +609,7 @@ impl<'a, 'r, 'p> Interaction<'a, 'r, 'p> {
|
|||
rx: &mut Packet<'_>,
|
||||
tx: &mut Packet<'_>,
|
||||
) -> Result<Option<Duration>, Error> {
|
||||
let epoch = exchange.matter.epoch;
|
||||
let epoch = exchange.transport().matter().epoch;
|
||||
|
||||
let mut opcode: OpCode = rx.get_proto_opcode()?;
|
||||
|
||||
|
@ -632,7 +632,7 @@ impl<'a, 'r, 'p> Interaction<'a, 'r, 'p> {
|
|||
#[inline(always)]
|
||||
pub fn new<S>(
|
||||
exchange: &'r mut Exchange<'a>,
|
||||
rx: &'r Packet<'p>,
|
||||
rx: &'r mut Packet<'p>,
|
||||
tx: &'r mut Packet<'p>,
|
||||
rx_status: &'r mut Packet<'p>,
|
||||
subscription_id: S,
|
||||
|
@ -641,7 +641,7 @@ impl<'a, 'r, 'p> Interaction<'a, 'r, 'p> {
|
|||
where
|
||||
S: FnOnce() -> u32,
|
||||
{
|
||||
let epoch = exchange.matter.epoch;
|
||||
let epoch = exchange.transport().matter().epoch;
|
||||
|
||||
let opcode = rx.get_proto_opcode()?;
|
||||
let rx_data = rx.as_slice();
|
|
@ -23,15 +23,14 @@
|
|||
//! Currently Ethernet based transport is supported.
|
||||
//!
|
||||
//! # Examples
|
||||
//! ```ignore
|
||||
//! /// TODO: Fix once new API has stabilized a bit
|
||||
//! use rs_matter::{Matter, CommissioningData};
|
||||
//! use rs_matter::data_model::device_types::device_type_add_on_off_light;
|
||||
//! use rs_matter::data_model::cluster_basic_information::BasicInfoConfig;
|
||||
//! use rs_matter::secure_channel::spake2p::VerifierData;
|
||||
//! TODO: Fix once new API has stabilized a bit
|
||||
//! use matter::{Matter, CommissioningData};
|
||||
//! use matter::data_model::device_types::device_type_add_on_off_light;
|
||||
//! use matter::data_model::cluster_basic_information::BasicInfoConfig;
|
||||
//! use matter::secure_channel::spake2p::VerifierData;
|
||||
//!
|
||||
//! # use rs_matter::data_model::sdm::dev_att::{DataType, DevAttDataFetcher};
|
||||
//! # use rs_matter::error::Error;
|
||||
//! # use matter::data_model::sdm::dev_att::{DataType, DevAttDataFetcher};
|
||||
//! # use matter::error::Error;
|
||||
//! # pub struct DevAtt{}
|
||||
//! # impl DevAttDataFetcher for DevAtt{
|
||||
//! # fn get_devatt_data(&self, data_type: DataType, data: &mut [u8]) -> Result<usize, Error> { Ok(0) }
|
||||
|
@ -66,15 +65,12 @@
|
|||
//! }
|
||||
//! // Start the Matter Daemon
|
||||
//! // matter.start_daemon().unwrap();
|
||||
//! ```
|
||||
//!
|
||||
//! Start off exploring by going to the [Matter] object.
|
||||
#![cfg_attr(not(feature = "std"), no_std)]
|
||||
#![allow(stable_features)]
|
||||
#![allow(unknown_lints)]
|
||||
#![cfg_attr(feature = "nightly", feature(async_fn_in_trait))]
|
||||
#![cfg_attr(feature = "nightly", allow(async_fn_in_trait))]
|
||||
#![cfg_attr(feature = "nightly", feature(impl_trait_projections))]
|
||||
#![cfg_attr(feature = "nightly", allow(incomplete_features))]
|
||||
|
||||
pub mod acl;
|
||||
pub mod cert;
|
|
@ -23,8 +23,6 @@ use crate::{data_model::cluster_basic_information::BasicInfoConfig, error::Error
|
|||
pub mod astro;
|
||||
pub mod builtin;
|
||||
pub mod proto;
|
||||
#[cfg(all(feature = "std", feature = "zeroconf", target_os = "linux"))]
|
||||
pub mod zeroconf;
|
||||
|
||||
pub trait Mdns {
|
||||
fn add(&self, service: &str, mode: ServiceMode) -> Result<(), Error>;
|
||||
|
@ -58,14 +56,16 @@ where
|
|||
}
|
||||
|
||||
#[cfg(all(feature = "std", target_os = "macos"))]
|
||||
pub use astro::MdnsService;
|
||||
#[cfg(all(feature = "std", target_os = "macos"))]
|
||||
pub use astro::MdnsUdpBuffers;
|
||||
pub type DefaultMdns<'a> = astro::Mdns<'a>;
|
||||
|
||||
#[cfg(all(feature = "std", target_os = "macos"))]
|
||||
pub type DefaultMdnsRunner<'a> = astro::MdnsRunner<'a>;
|
||||
|
||||
#[cfg(any(feature = "std", feature = "embassy-net"))]
|
||||
pub use builtin::MdnsRunBuffers;
|
||||
#[cfg(not(all(feature = "std", target_os = "macos")))]
|
||||
pub use builtin::MdnsService;
|
||||
pub type DefaultMdns<'a> = builtin::Mdns<'a>;
|
||||
|
||||
#[cfg(not(all(feature = "std", target_os = "macos")))]
|
||||
pub type DefaultMdnsRunner<'a> = builtin::MdnsRunner<'a>;
|
||||
|
||||
pub struct DummyMdns;
|
||||
|
|
@ -9,32 +9,21 @@ use crate::{
|
|||
use astro_dnssd::{DNSServiceBuilder, RegisteredDnsService};
|
||||
use log::info;
|
||||
|
||||
use super::{MdnsRunBuffers, ServiceMode};
|
||||
use super::ServiceMode;
|
||||
|
||||
/// Only for API-compatibility with builtin::MdnsRunner
|
||||
pub struct MdnsUdpBuffers(());
|
||||
|
||||
/// Only for API-compatibility with builtin::MdnsRunner
|
||||
impl MdnsUdpBuffers {
|
||||
#[inline(always)]
|
||||
pub const fn new() -> Self {
|
||||
Self(())
|
||||
}
|
||||
}
|
||||
|
||||
pub struct MdnsService<'a> {
|
||||
pub struct Mdns<'a> {
|
||||
dev_det: &'a BasicInfoConfig<'a>,
|
||||
matter_port: u16,
|
||||
services: RefCell<HashMap<String, RegisteredDnsService>>,
|
||||
}
|
||||
|
||||
impl<'a> MdnsService<'a> {
|
||||
/// This constructor takes extra parameters for API-compatibility with builtin::MdnsRunner
|
||||
impl<'a> Mdns<'a> {
|
||||
pub fn new(
|
||||
_id: u16,
|
||||
_hostname: &str,
|
||||
_ip: [u8; 4],
|
||||
_ipv6: Option<([u8; 16], u32)>,
|
||||
_ipv6: Option<[u8; 16]>,
|
||||
_interface: u32,
|
||||
dev_det: &'a BasicInfoConfig<'a>,
|
||||
matter_port: u16,
|
||||
) -> Self {
|
||||
|
@ -89,35 +78,30 @@ impl<'a> MdnsService<'a> {
|
|||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
/// Only for API-compatibility with builtin::MdnsRunner
|
||||
pub async fn run_piped(
|
||||
&mut self,
|
||||
_tx_pipe: &Pipe<'_>,
|
||||
_rx_pipe: &Pipe<'_>,
|
||||
) -> Result<(), Error> {
|
||||
pub struct MdnsRunner<'a>(&'a Mdns<'a>);
|
||||
|
||||
impl<'a> MdnsRunner<'a> {
|
||||
pub const fn new(mdns: &'a Mdns<'a>) -> Self {
|
||||
Self(mdns)
|
||||
}
|
||||
|
||||
pub async fn run_udp(&mut self) -> Result<(), Error> {
|
||||
core::future::pending::<Result<(), Error>>().await
|
||||
}
|
||||
|
||||
/// Only for API-compatibility with builtin::MdnsRunner
|
||||
pub async fn run<D>(
|
||||
&self,
|
||||
_stack: &crate::transport::network::NetworkStack<D>,
|
||||
_buffers: &mut MdnsRunBuffers,
|
||||
) -> Result<(), Error>
|
||||
where
|
||||
D: crate::transport::network::NetworkStackDriver,
|
||||
{
|
||||
pub async fn run(&self, _tx_pipe: &Pipe<'_>, _rx_pipe: &Pipe<'_>) -> Result<(), Error> {
|
||||
core::future::pending::<Result<(), Error>>().await
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> super::Mdns for MdnsService<'a> {
|
||||
impl<'a> super::Mdns for Mdns<'a> {
|
||||
fn add(&self, service: &str, mode: ServiceMode) -> Result<(), Error> {
|
||||
MdnsService::add(self, service, mode)
|
||||
Mdns::add(self, service, mode)
|
||||
}
|
||||
|
||||
fn remove(&self, service: &str) -> Result<(), Error> {
|
||||
MdnsService::remove(self, service)
|
||||
Mdns::remove(self, service)
|
||||
}
|
||||
}
|
|
@ -1,19 +1,17 @@
|
|||
use core::{cell::RefCell, pin::pin};
|
||||
use core::{cell::RefCell, mem::MaybeUninit, pin::pin};
|
||||
|
||||
use domain::base::name::FromStrError;
|
||||
use domain::base::{octets::ParseError, ShortBuf};
|
||||
use embassy_futures::select::select;
|
||||
use embassy_futures::select::{select, select3};
|
||||
use embassy_time::{Duration, Timer};
|
||||
use log::info;
|
||||
|
||||
use crate::data_model::cluster_basic_information::BasicInfoConfig;
|
||||
use crate::error::{Error, ErrorCode};
|
||||
#[cfg(any(feature = "std", feature = "embassy-net"))]
|
||||
use crate::transport::network::IpAddr;
|
||||
use crate::transport::network::{
|
||||
Address, Ipv4Addr, Ipv6Addr, SocketAddr, SocketAddrV4, SocketAddrV6,
|
||||
};
|
||||
use crate::transport::network::{Address, IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr};
|
||||
use crate::transport::packet::{MAX_RX_BUF_SIZE, MAX_TX_BUF_SIZE};
|
||||
use crate::transport::pipe::{Chunk, Pipe};
|
||||
use crate::transport::udp::UdpListener;
|
||||
use crate::utils::select::{EitherUnwrap, Notification};
|
||||
|
||||
use super::{
|
||||
|
@ -21,47 +19,33 @@ use super::{
|
|||
Service, ServiceMode,
|
||||
};
|
||||
|
||||
const IP_BIND_ADDR: IpAddr = IpAddr::V6(Ipv6Addr::UNSPECIFIED);
|
||||
|
||||
const IP_BROADCAST_ADDR: Ipv4Addr = Ipv4Addr::new(224, 0, 0, 251);
|
||||
const IPV6_BROADCAST_ADDR: Ipv6Addr = Ipv6Addr::new(0xff02, 0, 0, 0, 0, 0, 0, 0x00fb);
|
||||
|
||||
const PORT: u16 = 5353;
|
||||
|
||||
#[cfg(any(feature = "std", feature = "embassy-net"))]
|
||||
pub struct MdnsRunBuffers {
|
||||
udp: crate::transport::udp::UdpBuffers,
|
||||
tx_buf: core::mem::MaybeUninit<[u8; crate::transport::packet::MAX_TX_BUF_SIZE]>,
|
||||
rx_buf: core::mem::MaybeUninit<[u8; crate::transport::packet::MAX_RX_BUF_SIZE]>,
|
||||
}
|
||||
type MdnsTxBuf = MaybeUninit<[u8; MAX_TX_BUF_SIZE]>;
|
||||
type MdnsRxBuf = MaybeUninit<[u8; MAX_RX_BUF_SIZE]>;
|
||||
|
||||
#[cfg(any(feature = "std", feature = "embassy-net"))]
|
||||
impl MdnsRunBuffers {
|
||||
#[inline(always)]
|
||||
pub const fn new() -> Self {
|
||||
Self {
|
||||
udp: crate::transport::udp::UdpBuffers::new(),
|
||||
tx_buf: core::mem::MaybeUninit::uninit(),
|
||||
rx_buf: core::mem::MaybeUninit::uninit(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub struct MdnsService<'a> {
|
||||
pub struct Mdns<'a> {
|
||||
host: Host<'a>,
|
||||
#[allow(unused)]
|
||||
interface: Option<u32>,
|
||||
interface: u32,
|
||||
dev_det: &'a BasicInfoConfig<'a>,
|
||||
matter_port: u16,
|
||||
services: RefCell<heapless::Vec<(heapless::String<40>, ServiceMode), 4>>,
|
||||
notification: Notification,
|
||||
}
|
||||
|
||||
impl<'a> MdnsService<'a> {
|
||||
impl<'a> Mdns<'a> {
|
||||
#[inline(always)]
|
||||
pub const fn new(
|
||||
id: u16,
|
||||
hostname: &'a str,
|
||||
ip: [u8; 4],
|
||||
ipv6: Option<([u8; 16], u32)>,
|
||||
ipv6: Option<[u8; 16]>,
|
||||
interface: u32,
|
||||
dev_det: &'a BasicInfoConfig<'a>,
|
||||
matter_port: u16,
|
||||
) -> Self {
|
||||
|
@ -70,17 +54,9 @@ impl<'a> MdnsService<'a> {
|
|||
id,
|
||||
hostname,
|
||||
ip,
|
||||
ipv6: if let Some((ipv6, _)) = ipv6 {
|
||||
Some(ipv6)
|
||||
} else {
|
||||
None
|
||||
},
|
||||
},
|
||||
interface: if let Some((_, interface)) = ipv6 {
|
||||
Some(interface)
|
||||
} else {
|
||||
None
|
||||
ipv6,
|
||||
},
|
||||
interface,
|
||||
dev_det,
|
||||
matter_port,
|
||||
services: RefCell::new(heapless::Vec::new()),
|
||||
|
@ -123,41 +99,33 @@ impl<'a> MdnsService<'a> {
|
|||
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(any(feature = "std", feature = "embassy-net"))]
|
||||
pub async fn run<D>(
|
||||
&self,
|
||||
stack: &crate::transport::network::NetworkStack<D>,
|
||||
buffers: &mut MdnsRunBuffers,
|
||||
) -> Result<(), Error>
|
||||
where
|
||||
D: crate::transport::network::NetworkStackDriver,
|
||||
{
|
||||
let mut udp = crate::transport::udp::UdpListener::new(
|
||||
stack,
|
||||
crate::transport::network::SocketAddr::new(IpAddr::V6(Ipv6Addr::UNSPECIFIED), PORT),
|
||||
&mut buffers.udp,
|
||||
)
|
||||
.await?;
|
||||
pub struct MdnsRunner<'a>(&'a Mdns<'a>);
|
||||
|
||||
// V6 multicast does not work with smoltcp yet (see https://github.com/smoltcp-rs/smoltcp/pull/602)
|
||||
#[cfg(not(feature = "embassy-net"))]
|
||||
if let Some(interface) = self.interface {
|
||||
udp.join_multicast_v6(IPV6_BROADCAST_ADDR, interface)
|
||||
.await?;
|
||||
}
|
||||
impl<'a> MdnsRunner<'a> {
|
||||
pub const fn new(mdns: &'a Mdns<'a>) -> Self {
|
||||
Self(mdns)
|
||||
}
|
||||
|
||||
udp.join_multicast_v4(
|
||||
IP_BROADCAST_ADDR,
|
||||
crate::transport::network::Ipv4Addr::from(self.host.ip),
|
||||
)
|
||||
.await?;
|
||||
pub async fn run_udp(&mut self) -> Result<(), Error> {
|
||||
let mut tx_buf = MdnsTxBuf::uninit();
|
||||
let mut rx_buf = MdnsRxBuf::uninit();
|
||||
|
||||
let tx_pipe = Pipe::new(unsafe { buffers.tx_buf.assume_init_mut() });
|
||||
let rx_pipe = Pipe::new(unsafe { buffers.rx_buf.assume_init_mut() });
|
||||
let tx_buf = &mut tx_buf;
|
||||
let rx_buf = &mut rx_buf;
|
||||
|
||||
let tx_pipe = Pipe::new(unsafe { tx_buf.assume_init_mut() });
|
||||
let rx_pipe = Pipe::new(unsafe { rx_buf.assume_init_mut() });
|
||||
|
||||
let tx_pipe = &tx_pipe;
|
||||
let rx_pipe = &rx_pipe;
|
||||
|
||||
let mut udp = UdpListener::new(SocketAddr::new(IP_BIND_ADDR, PORT)).await?;
|
||||
|
||||
udp.join_multicast_v6(IPV6_BROADCAST_ADDR, self.0.interface)?;
|
||||
udp.join_multicast_v4(IP_BROADCAST_ADDR, Ipv4Addr::from(self.0.host.ip))?;
|
||||
|
||||
let udp = &udp;
|
||||
|
||||
let mut tx = pin!(async move {
|
||||
|
@ -198,51 +166,45 @@ impl<'a> MdnsService<'a> {
|
|||
}
|
||||
});
|
||||
|
||||
let mut run = pin!(async move { self.run_piped(tx_pipe, rx_pipe).await });
|
||||
let mut run = pin!(async move { self.run(tx_pipe, rx_pipe).await });
|
||||
|
||||
embassy_futures::select::select3(&mut tx, &mut rx, &mut run)
|
||||
.await
|
||||
.unwrap()
|
||||
select3(&mut tx, &mut rx, &mut run).await.unwrap()
|
||||
}
|
||||
|
||||
pub async fn run_piped(&self, tx_pipe: &Pipe<'_>, rx_pipe: &Pipe<'_>) -> Result<(), Error> {
|
||||
pub async fn run(&self, tx_pipe: &Pipe<'_>, rx_pipe: &Pipe<'_>) -> Result<(), Error> {
|
||||
let mut broadcast = pin!(self.broadcast(tx_pipe));
|
||||
let mut respond = pin!(self.respond(rx_pipe, tx_pipe));
|
||||
|
||||
select(&mut broadcast, &mut respond).await.unwrap()
|
||||
}
|
||||
|
||||
#[allow(clippy::await_holding_refcell_ref)]
|
||||
async fn broadcast(&self, tx_pipe: &Pipe<'_>) -> Result<(), Error> {
|
||||
loop {
|
||||
select(
|
||||
self.notification.wait(),
|
||||
self.0.notification.wait(),
|
||||
Timer::after(Duration::from_secs(30)),
|
||||
)
|
||||
.await;
|
||||
|
||||
for addr in [
|
||||
Some(SocketAddr::V4(SocketAddrV4::new(IP_BROADCAST_ADDR, PORT))),
|
||||
self.interface.map(|interface| {
|
||||
SocketAddr::V6(SocketAddrV6::new(IPV6_BROADCAST_ADDR, PORT, 0, interface))
|
||||
}),
|
||||
]
|
||||
.into_iter()
|
||||
.flatten()
|
||||
{
|
||||
IpAddr::V4(IP_BROADCAST_ADDR),
|
||||
IpAddr::V6(IPV6_BROADCAST_ADDR),
|
||||
] {
|
||||
loop {
|
||||
let sent = {
|
||||
let mut data = tx_pipe.data.lock().await;
|
||||
|
||||
if data.chunk.is_none() {
|
||||
let len = self.host.broadcast(self, data.buf, 60)?;
|
||||
let len = self.0.host.broadcast(&self.0, data.buf, 60)?;
|
||||
|
||||
if len > 0 {
|
||||
info!("Broadcasting mDNS entry to {addr}");
|
||||
info!("Broadasting mDNS entry to {}:{}", addr, PORT);
|
||||
|
||||
data.chunk = Some(Chunk {
|
||||
start: 0,
|
||||
end: len,
|
||||
addr: Address::Udp(addr),
|
||||
addr: Address::Udp(SocketAddr::new(addr, PORT)),
|
||||
});
|
||||
|
||||
tx_pipe.data_supplied_notification.signal(());
|
||||
|
@ -264,6 +226,7 @@ impl<'a> MdnsService<'a> {
|
|||
}
|
||||
}
|
||||
|
||||
#[allow(clippy::await_holding_refcell_ref)]
|
||||
async fn respond(&self, rx_pipe: &Pipe<'_>, tx_pipe: &Pipe<'_>) -> Result<(), Error> {
|
||||
loop {
|
||||
{
|
||||
|
@ -277,7 +240,7 @@ impl<'a> MdnsService<'a> {
|
|||
let mut tx_data = tx_pipe.data.lock().await;
|
||||
|
||||
if tx_data.chunk.is_none() {
|
||||
let len = self.host.respond(self, data, tx_data.buf, 60)?;
|
||||
let len = self.0.host.respond(&self.0, data, tx_data.buf, 60)?;
|
||||
|
||||
if len > 0 {
|
||||
info!("Replying to mDNS query from {}", rx_chunk.addr);
|
||||
|
@ -316,24 +279,24 @@ impl<'a> MdnsService<'a> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a> Services for MdnsService<'a> {
|
||||
impl<'a> super::Mdns for Mdns<'a> {
|
||||
fn add(&self, service: &str, mode: ServiceMode) -> Result<(), Error> {
|
||||
Mdns::add(self, service, mode)
|
||||
}
|
||||
|
||||
fn remove(&self, service: &str) -> Result<(), Error> {
|
||||
Mdns::remove(self, service)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> Services for Mdns<'a> {
|
||||
type Error = crate::error::Error;
|
||||
|
||||
fn for_each<F>(&self, callback: F) -> Result<(), Error>
|
||||
where
|
||||
F: FnMut(&Service) -> Result<(), Error>,
|
||||
{
|
||||
MdnsService::for_each(self, callback)
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> super::Mdns for MdnsService<'a> {
|
||||
fn add(&self, service: &str, mode: ServiceMode) -> Result<(), Error> {
|
||||
MdnsService::add(self, service, mode)
|
||||
}
|
||||
|
||||
fn remove(&self, service: &str) -> Result<(), Error> {
|
||||
MdnsService::remove(self, service)
|
||||
Mdns::for_each(self, callback)
|
||||
}
|
||||
}
|
||||
|
|
@ -31,7 +31,7 @@ use crate::{
|
|||
|
||||
use self::{
|
||||
code::{compute_pairing_code, pretty_print_pairing_code},
|
||||
qr::{compute_qr_code_text, print_qr_code},
|
||||
qr::{compute_qr_code, print_qr_code},
|
||||
};
|
||||
|
||||
pub struct DiscoveryCapabilities {
|
||||
|
@ -88,15 +88,15 @@ pub fn print_pairing_code_and_qr(
|
|||
buf: &mut [u8],
|
||||
) -> Result<(), Error> {
|
||||
let pairing_code = compute_pairing_code(comm_data);
|
||||
let qr_code = compute_qr_code_text(dev_det, comm_data, discovery_capabilities, buf)?;
|
||||
let qr_code = compute_qr_code(dev_det, comm_data, discovery_capabilities, buf)?;
|
||||
|
||||
pretty_print_pairing_code(&pairing_code);
|
||||
print_qr_code(qr_code)?;
|
||||
print_qr_code(qr_code);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn passwd_from_comm_data(comm_data: &CommissioningData) -> u32 {
|
||||
pub(self) fn passwd_from_comm_data(comm_data: &CommissioningData) -> u32 {
|
||||
// todo: should this be part of the comm_data implementation?
|
||||
match comm_data.verifier.data {
|
||||
VerifierOption::Password(pwd) => pwd,
|
|
@ -15,10 +15,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
use core::mem::MaybeUninit;
|
||||
|
||||
use qrcodegen_no_heap::{QrCode, QrCodeEcc, Version};
|
||||
|
||||
use crate::{
|
||||
error::ErrorCode,
|
||||
tlv::{TLVWriter, TagType},
|
||||
|
@ -323,153 +319,28 @@ fn estimate_struct_overhead(first_field_size: usize) -> usize {
|
|||
first_field_size + 4 + 2
|
||||
}
|
||||
|
||||
pub(crate) fn print_qr_code(qr_code_text: &str) -> Result<(), Error> {
|
||||
info!("QR Code Text: {}", qr_code_text);
|
||||
pub(super) fn print_qr_code(qr_code: &str) {
|
||||
info!("QR Code: {}", qr_code);
|
||||
|
||||
let mut tmp_buf = MaybeUninit::<[u8; Version::MAX.buffer_len()]>::uninit();
|
||||
let mut out_buf = MaybeUninit::<[u8; 7000]>::uninit();
|
||||
#[cfg(feature = "std")]
|
||||
{
|
||||
use qrcode::{render::unicode, QrCode, Version};
|
||||
|
||||
let tmp_buf = unsafe { tmp_buf.assume_init_mut() };
|
||||
let out_buf = unsafe { out_buf.assume_init_mut() };
|
||||
let needed_version = compute_qr_version(qr_code);
|
||||
let code =
|
||||
QrCode::with_version(qr_code, Version::Normal(needed_version), qrcode::EcLevel::M)
|
||||
.unwrap();
|
||||
let image = code
|
||||
.render::<unicode::Dense1x2>()
|
||||
.dark_color(unicode::Dense1x2::Light)
|
||||
.light_color(unicode::Dense1x2::Dark)
|
||||
.build();
|
||||
|
||||
let qr_code = compute_qr_code(qr_code_text, out_buf, tmp_buf)?;
|
||||
|
||||
info!(
|
||||
"\n{}",
|
||||
TextImage::Unicode.render(&qr_code, 4, false, out_buf)?
|
||||
);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[derive(Debug, Copy, Clone, Eq, PartialEq)]
|
||||
pub enum TextImage {
|
||||
Ascii,
|
||||
Ansi,
|
||||
Unicode,
|
||||
}
|
||||
|
||||
impl TextImage {
|
||||
pub fn render<'a>(
|
||||
&self,
|
||||
qr_code: &QrCode,
|
||||
border: u8,
|
||||
invert: bool,
|
||||
out_buf: &'a mut [u8],
|
||||
) -> Result<&'a str, Error> {
|
||||
let mut offset = 0;
|
||||
|
||||
for c in self.render_iter(qr_code, border, invert) {
|
||||
let mut dst = [0; 4];
|
||||
let bytes = c.encode_utf8(&mut dst).as_bytes();
|
||||
|
||||
if offset + bytes.len() > out_buf.len() {
|
||||
return Err(ErrorCode::BufferTooSmall)?;
|
||||
} else {
|
||||
out_buf[offset..offset + bytes.len()].copy_from_slice(bytes);
|
||||
offset += bytes.len();
|
||||
}
|
||||
}
|
||||
|
||||
Ok(unsafe { core::str::from_utf8_unchecked(&out_buf[..offset]) })
|
||||
}
|
||||
|
||||
pub fn render_iter<'a>(
|
||||
&self,
|
||||
qr_code: &'a QrCode<'a>,
|
||||
border: u8,
|
||||
invert: bool,
|
||||
) -> impl Iterator<Item = char> + 'a {
|
||||
let border: i32 = border as _;
|
||||
let console_type = *self;
|
||||
|
||||
(-border..qr_code.size() + border)
|
||||
.filter(move |y| console_type != Self::Unicode || (y - -border) % 2 == 0)
|
||||
.flat_map(move |y| (-border..qr_code.size() + border + 1).map(move |x| (x, y)))
|
||||
.map(move |(x, y)| {
|
||||
if x < qr_code.size() + border {
|
||||
let white = !qr_code.get_module(x, y) ^ invert;
|
||||
|
||||
match console_type {
|
||||
Self::Ascii => {
|
||||
if white {
|
||||
"#"
|
||||
} else {
|
||||
" "
|
||||
}
|
||||
}
|
||||
Self::Ansi => {
|
||||
let prev_white = if x > -border {
|
||||
Some(qr_code.get_module(x - 1, y))
|
||||
} else {
|
||||
None
|
||||
}
|
||||
.map(|prev_white| !prev_white ^ invert);
|
||||
|
||||
if prev_white != Some(white) {
|
||||
if white {
|
||||
"\x1b[47m "
|
||||
} else {
|
||||
"\x1b[40m "
|
||||
}
|
||||
} else {
|
||||
" "
|
||||
}
|
||||
}
|
||||
Self::Unicode => {
|
||||
if white == !qr_code.get_module(x, y + 1) ^ invert {
|
||||
if white {
|
||||
"\u{2588}"
|
||||
} else {
|
||||
" "
|
||||
}
|
||||
} else if white {
|
||||
"\u{2580}"
|
||||
} else {
|
||||
"\u{2584}"
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
"\x1b[0m\n"
|
||||
}
|
||||
})
|
||||
.flat_map(str::chars)
|
||||
info!("\n{}", image);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn compute_qr_code<'a>(
|
||||
qr_code_text: &str,
|
||||
tmp_buf: &mut [u8],
|
||||
out_buf: &'a mut [u8],
|
||||
) -> Result<QrCode<'a>, Error> {
|
||||
let needed_version = compute_qr_code_version(qr_code_text);
|
||||
|
||||
let code = QrCode::encode_text(
|
||||
qr_code_text,
|
||||
tmp_buf,
|
||||
out_buf,
|
||||
QrCodeEcc::Medium,
|
||||
Version::new(needed_version),
|
||||
Version::new(needed_version),
|
||||
None,
|
||||
false,
|
||||
)
|
||||
.map_err(|_| ErrorCode::BufferTooSmall)?;
|
||||
|
||||
Ok(code)
|
||||
}
|
||||
|
||||
pub fn compute_qr_code_version(qr_code_text: &str) -> u8 {
|
||||
match qr_code_text.len() {
|
||||
0..=38 => 2,
|
||||
39..=61 => 3,
|
||||
62..=90 => 4,
|
||||
_ => 5,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn compute_qr_code_text<'a>(
|
||||
dev_det: &BasicInfoConfig,
|
||||
comm_data: &CommissioningData,
|
||||
discovery_capabilities: DiscoveryCapabilities,
|
||||
|
@ -479,6 +350,16 @@ pub fn compute_qr_code_text<'a>(
|
|||
payload_base38_representation(&qr_code_data, buf)
|
||||
}
|
||||
|
||||
#[cfg(feature = "std")]
|
||||
fn compute_qr_version(qr_data: &str) -> i16 {
|
||||
match qr_data.len() {
|
||||
0..=38 => 2,
|
||||
39..=61 => 3,
|
||||
62..=90 => 4,
|
||||
_ => 5,
|
||||
}
|
||||
}
|
||||
|
||||
fn populate_bits(
|
||||
bits: &mut [u8],
|
||||
offset: &mut usize,
|
|
@ -15,63 +15,31 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
#[cfg(feature = "std")]
|
||||
pub use fileio::*;
|
||||
pub use file_psm::*;
|
||||
|
||||
#[cfg(feature = "std")]
|
||||
pub mod fileio {
|
||||
mod file_psm {
|
||||
use std::fs;
|
||||
use std::io::{Read, Write};
|
||||
use std::path::{Path, PathBuf};
|
||||
use std::path::PathBuf;
|
||||
|
||||
use log::info;
|
||||
|
||||
use crate::error::{Error, ErrorCode};
|
||||
use crate::Matter;
|
||||
|
||||
pub struct Psm<'a> {
|
||||
matter: &'a Matter<'a>,
|
||||
pub struct FilePsm {
|
||||
dir: PathBuf,
|
||||
buf: [u8; 4096],
|
||||
}
|
||||
|
||||
impl<'a> Psm<'a> {
|
||||
#[inline(always)]
|
||||
pub fn new(matter: &'a Matter<'a>, dir: PathBuf) -> Result<Self, Error> {
|
||||
impl FilePsm {
|
||||
pub fn new(dir: PathBuf) -> Result<Self, Error> {
|
||||
fs::create_dir_all(&dir)?;
|
||||
|
||||
info!("Persisting from/to {}", dir.display());
|
||||
|
||||
let mut buf = [0; 4096];
|
||||
|
||||
if let Some(data) = Self::load(&dir, "acls", &mut buf)? {
|
||||
matter.load_acls(data)?;
|
||||
}
|
||||
|
||||
if let Some(data) = Self::load(&dir, "fabrics", &mut buf)? {
|
||||
matter.load_fabrics(data)?;
|
||||
}
|
||||
|
||||
Ok(Self { matter, dir, buf })
|
||||
Ok(Self { dir })
|
||||
}
|
||||
|
||||
pub async fn run(&mut self) -> Result<(), Error> {
|
||||
loop {
|
||||
self.matter.wait_changed().await;
|
||||
|
||||
if self.matter.is_changed() {
|
||||
if let Some(data) = self.matter.store_acls(&mut self.buf)? {
|
||||
Self::store(&self.dir, "acls", data)?;
|
||||
}
|
||||
|
||||
if let Some(data) = self.matter.store_fabrics(&mut self.buf)? {
|
||||
Self::store(&self.dir, "fabrics", data)?;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn load<'b>(dir: &Path, key: &str, buf: &'b mut [u8]) -> Result<Option<&'b [u8]>, Error> {
|
||||
let path = dir.join(key);
|
||||
pub fn load<'a>(&self, key: &str, buf: &'a mut [u8]) -> Result<Option<&'a [u8]>, Error> {
|
||||
let path = self.dir.join(key);
|
||||
|
||||
match fs::File::open(path) {
|
||||
Ok(mut file) => {
|
||||
|
@ -101,8 +69,8 @@ pub mod fileio {
|
|||
}
|
||||
}
|
||||
|
||||
fn store(dir: &Path, key: &str, data: &[u8]) -> Result<(), Error> {
|
||||
let path = dir.join(key);
|
||||
pub fn store(&self, key: &str, data: &[u8]) -> Result<(), Error> {
|
||||
let path = self.dir.join(key);
|
||||
|
||||
let mut file = fs::File::create(path)?;
|
||||
|
|
@ -87,93 +87,110 @@ impl<'a> Case<'a> {
|
|||
self.handle_casesigma3(exchange, rx, tx, &mut session).await
|
||||
}
|
||||
|
||||
#[allow(clippy::await_holding_refcell_ref)]
|
||||
async fn handle_casesigma3(
|
||||
&mut self,
|
||||
exchange: &mut Exchange<'_>,
|
||||
rx: &Packet<'_>,
|
||||
rx: &mut Packet<'_>,
|
||||
tx: &mut Packet<'_>,
|
||||
case_session: &mut CaseSession,
|
||||
) -> Result<(), Error> {
|
||||
rx.check_proto_opcode(OpCode::CASESigma3 as _)?;
|
||||
|
||||
let result = {
|
||||
let fabric_mgr = self.fabric_mgr.borrow();
|
||||
let fabric_mgr = self.fabric_mgr.borrow();
|
||||
|
||||
let fabric = fabric_mgr.get_fabric(case_session.local_fabric_idx)?;
|
||||
if let Some(fabric) = fabric {
|
||||
let root = get_root_node_struct(rx.as_slice())?;
|
||||
let encrypted = root.find_tag(1)?.slice()?;
|
||||
let fabric = fabric_mgr.get_fabric(case_session.local_fabric_idx)?;
|
||||
if fabric.is_none() {
|
||||
drop(fabric_mgr);
|
||||
complete_with_status(
|
||||
exchange,
|
||||
tx,
|
||||
common::SCStatusCodes::NoSharedTrustRoots,
|
||||
None,
|
||||
)
|
||||
.await?;
|
||||
return Ok(());
|
||||
}
|
||||
// Safe to unwrap here
|
||||
let fabric = fabric.unwrap();
|
||||
|
||||
let mut decrypted = alloc!([0; 800]);
|
||||
if encrypted.len() > decrypted.len() {
|
||||
error!("Data too large");
|
||||
Err(ErrorCode::NoSpace)?;
|
||||
}
|
||||
let decrypted = &mut decrypted[..encrypted.len()];
|
||||
decrypted.copy_from_slice(encrypted);
|
||||
let root = get_root_node_struct(rx.as_slice())?;
|
||||
let encrypted = root.find_tag(1)?.slice()?;
|
||||
|
||||
let len =
|
||||
Case::get_sigma3_decryption(fabric.ipk.op_key(), case_session, decrypted)?;
|
||||
let decrypted = &decrypted[..len];
|
||||
let mut decrypted = alloc!([0; 800]);
|
||||
if encrypted.len() > decrypted.len() {
|
||||
error!("Data too large");
|
||||
Err(ErrorCode::NoSpace)?;
|
||||
}
|
||||
let decrypted = &mut decrypted[..encrypted.len()];
|
||||
decrypted.copy_from_slice(encrypted);
|
||||
|
||||
let root = get_root_node_struct(decrypted)?;
|
||||
let d = Sigma3Decrypt::from_tlv(&root)?;
|
||||
let len = Case::get_sigma3_decryption(fabric.ipk.op_key(), case_session, decrypted)?;
|
||||
let decrypted = &decrypted[..len];
|
||||
|
||||
let initiator_noc = alloc!(Cert::new(d.initiator_noc.0)?);
|
||||
let mut initiator_icac = None;
|
||||
if let Some(icac) = d.initiator_icac {
|
||||
initiator_icac = Some(alloc!(Cert::new(icac.0)?));
|
||||
}
|
||||
let root = get_root_node_struct(decrypted)?;
|
||||
let d = Sigma3Decrypt::from_tlv(&root)?;
|
||||
|
||||
#[cfg(feature = "alloc")]
|
||||
let initiator_icac_mut = initiator_icac.as_deref();
|
||||
let initiator_noc = alloc!(Cert::new(d.initiator_noc.0)?);
|
||||
let mut initiator_icac = None;
|
||||
if let Some(icac) = d.initiator_icac {
|
||||
initiator_icac = Some(alloc!(Cert::new(icac.0)?));
|
||||
}
|
||||
|
||||
#[cfg(not(feature = "alloc"))]
|
||||
let initiator_icac_mut = initiator_icac.as_ref();
|
||||
#[cfg(feature = "alloc")]
|
||||
let initiator_icac_mut = initiator_icac.as_deref();
|
||||
|
||||
if let Err(e) = Case::validate_certs(fabric, &initiator_noc, initiator_icac_mut) {
|
||||
error!("Certificate Chain doesn't match: {}", e);
|
||||
Err(SCStatusCodes::InvalidParameter)
|
||||
} else if let Err(e) = Case::validate_sigma3_sign(
|
||||
d.initiator_noc.0,
|
||||
d.initiator_icac.map(|a| a.0),
|
||||
&initiator_noc,
|
||||
d.signature.0,
|
||||
case_session,
|
||||
) {
|
||||
error!("Sigma3 Signature doesn't match: {}", e);
|
||||
Err(SCStatusCodes::InvalidParameter)
|
||||
} else {
|
||||
// Only now do we add this message to the TT Hash
|
||||
let mut peer_catids: NocCatIds = Default::default();
|
||||
initiator_noc.get_cat_ids(&mut peer_catids);
|
||||
case_session.tt_hash.update(rx.as_slice())?;
|
||||
#[cfg(not(feature = "alloc"))]
|
||||
let initiator_icac_mut = initiator_icac.as_ref();
|
||||
|
||||
Ok(Case::get_session_clone_data(
|
||||
fabric.ipk.op_key(),
|
||||
fabric.get_node_id(),
|
||||
initiator_noc.get_node_id()?,
|
||||
exchange.with_session(|sess| Ok(sess.get_peer_addr()))?,
|
||||
case_session,
|
||||
&peer_catids,
|
||||
)?)
|
||||
}
|
||||
} else {
|
||||
Err(SCStatusCodes::NoSharedTrustRoots)
|
||||
}
|
||||
};
|
||||
if let Err(e) = Case::validate_certs(fabric, &initiator_noc, initiator_icac_mut) {
|
||||
error!("Certificate Chain doesn't match: {}", e);
|
||||
complete_with_status(exchange, tx, common::SCStatusCodes::InvalidParameter, None)
|
||||
.await?;
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
let status = match result {
|
||||
Ok(clone_data) => {
|
||||
exchange.clone_session(tx, &clone_data).await?;
|
||||
SCStatusCodes::SessionEstablishmentSuccess
|
||||
}
|
||||
Err(status) => status,
|
||||
};
|
||||
if Case::validate_sigma3_sign(
|
||||
d.initiator_noc.0,
|
||||
d.initiator_icac.map(|a| a.0),
|
||||
&initiator_noc,
|
||||
d.signature.0,
|
||||
case_session,
|
||||
)
|
||||
.is_err()
|
||||
{
|
||||
error!("Sigma3 Signature doesn't match");
|
||||
complete_with_status(exchange, tx, common::SCStatusCodes::InvalidParameter, None)
|
||||
.await?;
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
complete_with_status(exchange, tx, status, None).await
|
||||
// Only now do we add this message to the TT Hash
|
||||
let mut peer_catids: NocCatIds = Default::default();
|
||||
initiator_noc.get_cat_ids(&mut peer_catids);
|
||||
case_session.tt_hash.update(rx.as_slice())?;
|
||||
let clone_data = Case::get_session_clone_data(
|
||||
fabric.ipk.op_key(),
|
||||
fabric.get_node_id(),
|
||||
initiator_noc.get_node_id()?,
|
||||
exchange.with_session(|sess| Ok(sess.get_peer_addr()))?,
|
||||
case_session,
|
||||
&peer_catids,
|
||||
)?;
|
||||
|
||||
// TODO: Handle NoSpace
|
||||
exchange.with_session_mgr_mut(|sess_mgr| sess_mgr.clone_session(&clone_data))?;
|
||||
|
||||
complete_with_status(
|
||||
exchange,
|
||||
tx,
|
||||
SCStatusCodes::SessionEstablishmentSuccess,
|
||||
None,
|
||||
)
|
||||
.await
|
||||
}
|
||||
|
||||
#[allow(clippy::await_holding_refcell_ref)]
|
||||
async fn handle_casesigma1(
|
||||
&mut self,
|
||||
exchange: &mut Exchange<'_>,
|
||||
|
@ -204,7 +221,7 @@ impl<'a> Case<'a> {
|
|||
return Ok(());
|
||||
}
|
||||
|
||||
let local_sessid = exchange.get_next_sess_id();
|
||||
let local_sessid = exchange.with_session_mgr_mut(|mgr| Ok(mgr.get_next_sess_id()))?;
|
||||
case_session.peer_sessid = r.initiator_sessid;
|
||||
case_session.local_sessid = local_sessid;
|
||||
case_session.tt_hash.update(rx_buf)?;
|
||||
|
@ -238,76 +255,70 @@ impl<'a> Case<'a> {
|
|||
const MAX_ENCRYPTED_SIZE: usize = 800;
|
||||
|
||||
let mut encrypted = alloc!([0; MAX_ENCRYPTED_SIZE]);
|
||||
let mut signature = alloc!([0u8; crypto::EC_SIGNATURE_LEN_BYTES]);
|
||||
|
||||
let fabric_found = {
|
||||
let encrypted_len = {
|
||||
let mut signature = alloc!([0u8; crypto::EC_SIGNATURE_LEN_BYTES]);
|
||||
let fabric_mgr = self.fabric_mgr.borrow();
|
||||
|
||||
let fabric = fabric_mgr.get_fabric(case_session.local_fabric_idx)?;
|
||||
if let Some(fabric) = fabric {
|
||||
#[cfg(feature = "alloc")]
|
||||
let signature_mut = &mut *signature;
|
||||
|
||||
#[cfg(not(feature = "alloc"))]
|
||||
let signature_mut = &mut signature;
|
||||
|
||||
let sign_len = Case::get_sigma2_sign(
|
||||
fabric,
|
||||
&case_session.our_pub_key,
|
||||
&case_session.peer_pub_key,
|
||||
signature_mut,
|
||||
)?;
|
||||
let signature = &signature[..sign_len];
|
||||
|
||||
#[cfg(feature = "alloc")]
|
||||
let encrypted_mut = &mut *encrypted;
|
||||
|
||||
#[cfg(not(feature = "alloc"))]
|
||||
let encrypted_mut = &mut encrypted;
|
||||
|
||||
let encrypted_len = Case::get_sigma2_encryption(
|
||||
fabric,
|
||||
self.rand,
|
||||
&our_random,
|
||||
case_session,
|
||||
signature,
|
||||
encrypted_mut,
|
||||
)?;
|
||||
|
||||
let encrypted = &encrypted[0..encrypted_len];
|
||||
|
||||
// Generate our Response Body
|
||||
tx.reset();
|
||||
tx.set_proto_id(PROTO_ID_SECURE_CHANNEL);
|
||||
tx.set_proto_opcode(OpCode::CASESigma2 as u8);
|
||||
|
||||
let mut tw = TLVWriter::new(tx.get_writebuf()?);
|
||||
tw.start_struct(TagType::Anonymous)?;
|
||||
tw.str8(TagType::Context(1), &our_random)?;
|
||||
tw.u16(TagType::Context(2), local_sessid)?;
|
||||
tw.str8(TagType::Context(3), &case_session.our_pub_key)?;
|
||||
tw.str16(TagType::Context(4), encrypted)?;
|
||||
tw.end_container()?;
|
||||
|
||||
case_session.tt_hash.update(tx.as_mut_slice())?;
|
||||
|
||||
true
|
||||
} else {
|
||||
false
|
||||
if fabric.is_none() {
|
||||
drop(fabric_mgr);
|
||||
complete_with_status(
|
||||
exchange,
|
||||
tx,
|
||||
common::SCStatusCodes::NoSharedTrustRoots,
|
||||
None,
|
||||
)
|
||||
.await?;
|
||||
return Ok(());
|
||||
}
|
||||
};
|
||||
|
||||
if fabric_found {
|
||||
exchange.exchange(tx, rx).await
|
||||
} else {
|
||||
complete_with_status(
|
||||
exchange,
|
||||
tx,
|
||||
common::SCStatusCodes::NoSharedTrustRoots,
|
||||
None,
|
||||
)
|
||||
.await
|
||||
}
|
||||
#[cfg(feature = "alloc")]
|
||||
let signature_mut = &mut *signature;
|
||||
|
||||
#[cfg(not(feature = "alloc"))]
|
||||
let signature_mut = &mut signature;
|
||||
|
||||
let sign_len = Case::get_sigma2_sign(
|
||||
fabric.unwrap(),
|
||||
&case_session.our_pub_key,
|
||||
&case_session.peer_pub_key,
|
||||
signature_mut,
|
||||
)?;
|
||||
let signature = &signature[..sign_len];
|
||||
|
||||
#[cfg(feature = "alloc")]
|
||||
let encrypted_mut = &mut *encrypted;
|
||||
|
||||
#[cfg(not(feature = "alloc"))]
|
||||
let encrypted_mut = &mut encrypted;
|
||||
|
||||
Case::get_sigma2_encryption(
|
||||
fabric.unwrap(),
|
||||
self.rand,
|
||||
&our_random,
|
||||
case_session,
|
||||
signature,
|
||||
encrypted_mut,
|
||||
)?
|
||||
};
|
||||
let encrypted = &encrypted[0..encrypted_len];
|
||||
|
||||
// Generate our Response Body
|
||||
tx.reset();
|
||||
tx.set_proto_id(PROTO_ID_SECURE_CHANNEL);
|
||||
tx.set_proto_opcode(OpCode::CASESigma2 as u8);
|
||||
|
||||
let mut tw = TLVWriter::new(tx.get_writebuf()?);
|
||||
tw.start_struct(TagType::Anonymous)?;
|
||||
tw.str8(TagType::Context(1), &our_random)?;
|
||||
tw.u16(TagType::Context(2), local_sessid)?;
|
||||
tw.str8(TagType::Context(3), &case_session.our_pub_key)?;
|
||||
tw.str16(TagType::Context(4), encrypted)?;
|
||||
tw.end_container()?;
|
||||
|
||||
case_session.tt_hash.update(tx.as_mut_slice())?;
|
||||
|
||||
exchange.exchange(tx, rx).await
|
||||
}
|
||||
|
||||
fn get_session_clone_data(
|
||||
|
@ -474,7 +485,7 @@ impl<'a> Case<'a> {
|
|||
fn get_sigma2_key(
|
||||
ipk: &[u8],
|
||||
our_random: &[u8],
|
||||
case_session: &CaseSession,
|
||||
case_session: &mut CaseSession,
|
||||
key: &mut [u8],
|
||||
) -> Result<(), Error> {
|
||||
const S2K_INFO: [u8; 6] = [0x53, 0x69, 0x67, 0x6d, 0x61, 0x32];
|
||||
|
@ -504,7 +515,7 @@ impl<'a> Case<'a> {
|
|||
fabric: &Fabric,
|
||||
rand: Rand,
|
||||
our_random: &[u8],
|
||||
case_session: &CaseSession,
|
||||
case_session: &mut CaseSession,
|
||||
signature: &[u8],
|
||||
out: &mut [u8],
|
||||
) -> Result<usize, Error> {
|
|
@ -78,8 +78,8 @@ pub fn create_sc_status_report(
|
|||
// the session will be closed soon
|
||||
GeneralCode::Success
|
||||
}
|
||||
SCStatusCodes::Busy => GeneralCode::Busy,
|
||||
SCStatusCodes::InvalidParameter
|
||||
SCStatusCodes::Busy
|
||||
| SCStatusCodes::InvalidParameter
|
||||
| SCStatusCodes::NoSharedTrustRoots
|
||||
| SCStatusCodes::SessionNotFound => GeneralCode::Failure,
|
||||
};
|
|
@ -15,13 +15,17 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#[cfg(not(any(feature = "openssl", feature = "mbedtls", feature = "rustcrypto")))]
|
||||
#[cfg(not(any(
|
||||
feature = "crypto_openssl",
|
||||
feature = "crypto_mbedtls",
|
||||
feature = "crypto_rustcrypto"
|
||||
)))]
|
||||
pub use super::crypto_dummy::CryptoSpake2;
|
||||
#[cfg(all(feature = "mbedtls", target_os = "espidf"))]
|
||||
#[cfg(all(feature = "crypto_mbedtls", target_os = "espidf"))]
|
||||
pub use super::crypto_esp_mbedtls::CryptoSpake2;
|
||||
#[cfg(all(feature = "mbedtls", not(target_os = "espidf")))]
|
||||
#[cfg(all(feature = "crypto_mbedtls", not(target_os = "espidf")))]
|
||||
pub use super::crypto_mbedtls::CryptoSpake2;
|
||||
#[cfg(feature = "openssl")]
|
||||
#[cfg(feature = "crypto_openssl")]
|
||||
pub use super::crypto_openssl::CryptoSpake2;
|
||||
#[cfg(feature = "rustcrypto")]
|
||||
#[cfg(feature = "crypto_rustcrypto")]
|
||||
pub use super::crypto_rustcrypto::CryptoSpake2;
|
|
@ -186,7 +186,7 @@ impl CryptoSpake2 {
|
|||
let (Z, V) = Self::get_ZV_as_verifier(
|
||||
&self.w0,
|
||||
&self.L,
|
||||
&self.M,
|
||||
&mut self.M,
|
||||
&X,
|
||||
&self.xy,
|
||||
&self.order,
|
||||
|
@ -228,7 +228,7 @@ impl CryptoSpake2 {
|
|||
fn get_ZV_as_prover(
|
||||
w0: &Mpi,
|
||||
w1: &Mpi,
|
||||
N: &EcPoint,
|
||||
N: &mut EcPoint,
|
||||
Y: &EcPoint,
|
||||
x: &Mpi,
|
||||
order: &Mpi,
|
||||
|
@ -264,7 +264,7 @@ impl CryptoSpake2 {
|
|||
fn get_ZV_as_verifier(
|
||||
w0: &Mpi,
|
||||
L: &EcPoint,
|
||||
M: &EcPoint,
|
||||
M: &mut EcPoint,
|
||||
X: &EcPoint,
|
||||
y: &Mpi,
|
||||
order: &Mpi,
|
||||
|
@ -292,7 +292,7 @@ impl CryptoSpake2 {
|
|||
Ok((Z, V))
|
||||
}
|
||||
|
||||
fn invert(group: &EcGroup, num: &EcPoint) -> Result<EcPoint, mbedtls::Error> {
|
||||
fn invert(group: &mut EcGroup, num: &EcPoint) -> Result<EcPoint, mbedtls::Error> {
|
||||
let p = group.p()?;
|
||||
let num_y = num.y()?;
|
||||
let inverted_num_y = p.sub(&num_y)?;
|
|
@ -235,7 +235,7 @@ impl CryptoSpake2 {
|
|||
let mut len_buf: [u8; 8] = [0; 8];
|
||||
LittleEndian::write_u64(&mut len_buf, buf.len() as u64);
|
||||
tt.update(&len_buf)?;
|
||||
if !buf.is_empty() {
|
||||
if buf.len() > 0 {
|
||||
tt.update(buf)?;
|
||||
}
|
||||
Ok(())
|
||||
|
@ -263,7 +263,6 @@ impl CryptoSpake2 {
|
|||
#[inline(always)]
|
||||
#[allow(non_snake_case)]
|
||||
#[allow(dead_code)]
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
fn get_ZV_as_prover(
|
||||
w0: &BigNum,
|
||||
w1: &BigNum,
|
||||
|
@ -299,7 +298,6 @@ impl CryptoSpake2 {
|
|||
#[inline(always)]
|
||||
#[allow(non_snake_case)]
|
||||
#[allow(dead_code)]
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
fn get_ZV_as_verifier(
|
||||
w0: &BigNum,
|
||||
L: &EcPoint,
|
|
@ -17,15 +17,19 @@
|
|||
|
||||
pub mod case;
|
||||
pub mod common;
|
||||
#[cfg(not(any(feature = "openssl", feature = "mbedtls", feature = "rustcrypto")))]
|
||||
#[cfg(not(any(
|
||||
feature = "crypto_openssl",
|
||||
feature = "crypto_mbedtls",
|
||||
feature = "crypto_rustcrypto"
|
||||
)))]
|
||||
mod crypto_dummy;
|
||||
#[cfg(all(feature = "mbedtls", target_os = "espidf"))]
|
||||
#[cfg(all(feature = "crypto_mbedtls", target_os = "espidf"))]
|
||||
mod crypto_esp_mbedtls;
|
||||
#[cfg(all(feature = "mbedtls", not(target_os = "espidf")))]
|
||||
#[cfg(all(feature = "crypto_mbedtls", not(target_os = "espidf")))]
|
||||
mod crypto_mbedtls;
|
||||
#[cfg(feature = "openssl")]
|
||||
#[cfg(feature = "crypto_openssl")]
|
||||
pub mod crypto_openssl;
|
||||
#[cfg(feature = "rustcrypto")]
|
||||
#[cfg(feature = "crypto_rustcrypto")]
|
||||
pub mod crypto_rustcrypto;
|
||||
|
||||
pub mod core;
|
|
@ -158,7 +158,7 @@ impl<'a> Pake<'a> {
|
|||
async fn handle_pasepake3(
|
||||
&mut self,
|
||||
exchange: &mut Exchange<'_>,
|
||||
rx: &Packet<'_>,
|
||||
rx: &mut Packet<'_>,
|
||||
tx: &mut Packet<'_>,
|
||||
mdns: &dyn Mdns,
|
||||
spake2p: &mut Spake2P,
|
||||
|
@ -167,9 +167,9 @@ impl<'a> Pake<'a> {
|
|||
self.update_timeout(exchange, tx, true).await?;
|
||||
|
||||
let cA = extract_pasepake_1_or_3_params(rx.as_slice())?;
|
||||
let (status, ke) = spake2p.handle_cA(cA);
|
||||
let (status_code, ke) = spake2p.handle_cA(cA);
|
||||
|
||||
let result = if status == SCStatusCodes::SessionEstablishmentSuccess {
|
||||
let clone_data = if status_code == SCStatusCodes::SessionEstablishmentSuccess {
|
||||
// Get the keys
|
||||
let ke = ke.ok_or(ErrorCode::Invalid)?;
|
||||
let mut session_keys: [u8; 48] = [0; 48];
|
||||
|
@ -194,25 +194,26 @@ impl<'a> Pake<'a> {
|
|||
.att_challenge
|
||||
.copy_from_slice(&session_keys[32..48]);
|
||||
|
||||
Ok(clone_data)
|
||||
// Queue a transport mgr request to add a new session
|
||||
Some(clone_data)
|
||||
} else {
|
||||
Err(status)
|
||||
None
|
||||
};
|
||||
|
||||
let status = match result {
|
||||
Ok(clone_data) => {
|
||||
exchange.clone_session(tx, &clone_data).await?;
|
||||
self.pase.borrow_mut().disable_pase_session(mdns)?;
|
||||
if let Some(clone_data) = clone_data {
|
||||
// TODO: Handle NoSpace
|
||||
exchange.with_session_mgr_mut(|sess_mgr| sess_mgr.clone_session(&clone_data))?;
|
||||
|
||||
SCStatusCodes::SessionEstablishmentSuccess
|
||||
}
|
||||
Err(status) => status,
|
||||
};
|
||||
self.pase.borrow_mut().disable_pase_session(mdns)?;
|
||||
}
|
||||
|
||||
complete_with_status(exchange, tx, status, None).await
|
||||
complete_with_status(exchange, tx, status_code, None).await?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[allow(non_snake_case)]
|
||||
#[allow(clippy::await_holding_refcell_ref)]
|
||||
async fn handle_pasepake1(
|
||||
&mut self,
|
||||
exchange: &mut Exchange<'_>,
|
||||
|
@ -223,32 +224,32 @@ impl<'a> Pake<'a> {
|
|||
rx.check_proto_opcode(OpCode::PASEPake1 as _)?;
|
||||
self.update_timeout(exchange, tx, false).await?;
|
||||
|
||||
{
|
||||
let pase = self.pase.borrow();
|
||||
let session = pase.session.as_ref().ok_or(ErrorCode::NoSession)?;
|
||||
let pase = self.pase.borrow();
|
||||
let session = pase.session.as_ref().ok_or(ErrorCode::NoSession)?;
|
||||
|
||||
let pA = extract_pasepake_1_or_3_params(rx.as_slice())?;
|
||||
let mut pB: [u8; 65] = [0; 65];
|
||||
let mut cB: [u8; 32] = [0; 32];
|
||||
spake2p.start_verifier(&session.verifier)?;
|
||||
spake2p.handle_pA(pA, &mut pB, &mut cB, pase.rand)?;
|
||||
let pA = extract_pasepake_1_or_3_params(rx.as_slice())?;
|
||||
let mut pB: [u8; 65] = [0; 65];
|
||||
let mut cB: [u8; 32] = [0; 32];
|
||||
spake2p.start_verifier(&session.verifier)?;
|
||||
spake2p.handle_pA(pA, &mut pB, &mut cB, pase.rand)?;
|
||||
|
||||
// Generate response
|
||||
tx.reset();
|
||||
tx.set_proto_id(PROTO_ID_SECURE_CHANNEL);
|
||||
tx.set_proto_opcode(OpCode::PASEPake2 as u8);
|
||||
// Generate response
|
||||
tx.reset();
|
||||
tx.set_proto_id(PROTO_ID_SECURE_CHANNEL);
|
||||
tx.set_proto_opcode(OpCode::PASEPake2 as u8);
|
||||
|
||||
let mut tw = TLVWriter::new(tx.get_writebuf()?);
|
||||
let resp = Pake1Resp {
|
||||
pb: OctetStr(&pB),
|
||||
cb: OctetStr(&cB),
|
||||
};
|
||||
resp.to_tlv(&mut tw, TagType::Anonymous)?;
|
||||
}
|
||||
let mut tw = TLVWriter::new(tx.get_writebuf()?);
|
||||
let resp = Pake1Resp {
|
||||
pb: OctetStr(&pB),
|
||||
cb: OctetStr(&cB),
|
||||
};
|
||||
resp.to_tlv(&mut tw, TagType::Anonymous)?;
|
||||
|
||||
drop(pase);
|
||||
exchange.exchange(tx, rx).await
|
||||
}
|
||||
|
||||
#[allow(clippy::await_holding_refcell_ref)]
|
||||
async fn handle_pbkdfparamrequest(
|
||||
&mut self,
|
||||
exchange: &mut Exchange<'_>,
|
||||
|
@ -259,51 +260,52 @@ impl<'a> Pake<'a> {
|
|||
rx.check_proto_opcode(OpCode::PBKDFParamRequest as _)?;
|
||||
self.update_timeout(exchange, tx, true).await?;
|
||||
|
||||
{
|
||||
let pase = self.pase.borrow();
|
||||
let session = pase.session.as_ref().ok_or(ErrorCode::NoSession)?;
|
||||
let pase = self.pase.borrow();
|
||||
let session = pase.session.as_ref().ok_or(ErrorCode::NoSession)?;
|
||||
|
||||
let root = tlv::get_root_node(rx.as_slice())?;
|
||||
let a = PBKDFParamReq::from_tlv(&root)?;
|
||||
if a.passcode_id != 0 {
|
||||
error!("Can't yet handle passcode_id != 0");
|
||||
Err(ErrorCode::Invalid)?;
|
||||
}
|
||||
|
||||
let mut our_random: [u8; 32] = [0; 32];
|
||||
(self.pase.borrow().rand)(&mut our_random);
|
||||
|
||||
let local_sessid = exchange.get_next_sess_id();
|
||||
let spake2p_data: u32 = ((local_sessid as u32) << 16) | a.initiator_ssid as u32;
|
||||
spake2p.set_app_data(spake2p_data);
|
||||
|
||||
// Generate response
|
||||
tx.reset();
|
||||
tx.set_proto_id(PROTO_ID_SECURE_CHANNEL);
|
||||
tx.set_proto_opcode(OpCode::PBKDFParamResponse as u8);
|
||||
|
||||
let mut tw = TLVWriter::new(tx.get_writebuf()?);
|
||||
let mut resp = PBKDFParamResp {
|
||||
init_random: a.initiator_random,
|
||||
our_random: OctetStr(&our_random),
|
||||
local_sessid,
|
||||
params: None,
|
||||
};
|
||||
if !a.has_params {
|
||||
let params_resp = PBKDFParamRespParams {
|
||||
count: session.verifier.count,
|
||||
salt: OctetStr(&session.verifier.salt),
|
||||
};
|
||||
resp.params = Some(params_resp);
|
||||
}
|
||||
resp.to_tlv(&mut tw, TagType::Anonymous)?;
|
||||
|
||||
spake2p.set_context(rx.as_slice(), tx.as_mut_slice())?;
|
||||
let root = tlv::get_root_node(rx.as_slice())?;
|
||||
let a = PBKDFParamReq::from_tlv(&root)?;
|
||||
if a.passcode_id != 0 {
|
||||
error!("Can't yet handle passcode_id != 0");
|
||||
Err(ErrorCode::Invalid)?;
|
||||
}
|
||||
|
||||
let mut our_random: [u8; 32] = [0; 32];
|
||||
(self.pase.borrow().rand)(&mut our_random);
|
||||
|
||||
let local_sessid = exchange.with_session_mgr_mut(|mgr| Ok(mgr.get_next_sess_id()))?;
|
||||
let spake2p_data: u32 = ((local_sessid as u32) << 16) | a.initiator_ssid as u32;
|
||||
spake2p.set_app_data(spake2p_data);
|
||||
|
||||
// Generate response
|
||||
tx.reset();
|
||||
tx.set_proto_id(PROTO_ID_SECURE_CHANNEL);
|
||||
tx.set_proto_opcode(OpCode::PBKDFParamResponse as u8);
|
||||
|
||||
let mut tw = TLVWriter::new(tx.get_writebuf()?);
|
||||
let mut resp = PBKDFParamResp {
|
||||
init_random: a.initiator_random,
|
||||
our_random: OctetStr(&our_random),
|
||||
local_sessid,
|
||||
params: None,
|
||||
};
|
||||
if !a.has_params {
|
||||
let params_resp = PBKDFParamRespParams {
|
||||
count: session.verifier.count,
|
||||
salt: OctetStr(&session.verifier.salt),
|
||||
};
|
||||
resp.params = Some(params_resp);
|
||||
}
|
||||
resp.to_tlv(&mut tw, TagType::Anonymous)?;
|
||||
|
||||
spake2p.set_context(rx.as_slice(), tx.as_mut_slice())?;
|
||||
|
||||
drop(pase);
|
||||
|
||||
exchange.exchange(tx, rx).await
|
||||
}
|
||||
|
||||
#[allow(clippy::await_holding_refcell_ref)]
|
||||
async fn update_timeout(
|
||||
&mut self,
|
||||
exchange: &mut Exchange<'_>,
|
||||
|
@ -312,38 +314,36 @@ impl<'a> Pake<'a> {
|
|||
) -> Result<(), Error> {
|
||||
self.check_session(exchange, tx).await?;
|
||||
|
||||
let status = {
|
||||
let mut pase = self.pase.borrow_mut();
|
||||
let mut pase = self.pase.borrow_mut();
|
||||
|
||||
if pase
|
||||
.timeout
|
||||
.as_ref()
|
||||
.map(|sd| sd.is_sess_expired(pase.epoch))
|
||||
.unwrap_or(false)
|
||||
{
|
||||
pase.timeout = None;
|
||||
}
|
||||
if pase
|
||||
.timeout
|
||||
.as_ref()
|
||||
.map(|sd| sd.is_sess_expired(pase.epoch))
|
||||
.unwrap_or(false)
|
||||
{
|
||||
pase.timeout = None;
|
||||
}
|
||||
|
||||
if let Some(sd) = pase.timeout.as_mut() {
|
||||
if &sd.exch_id != exchange.id() {
|
||||
info!("Other PAKE session in progress");
|
||||
Some(SCStatusCodes::Busy)
|
||||
} else {
|
||||
None
|
||||
}
|
||||
} else if new {
|
||||
None
|
||||
let status = if let Some(sd) = pase.timeout.as_mut() {
|
||||
if &sd.exch_id != exchange.id() {
|
||||
info!("Other PAKE session in progress");
|
||||
Some(SCStatusCodes::Busy)
|
||||
} else {
|
||||
error!("PAKE session not found or expired");
|
||||
Some(SCStatusCodes::SessionNotFound)
|
||||
None
|
||||
}
|
||||
} else if new {
|
||||
None
|
||||
} else {
|
||||
error!("PAKE session not found or expired");
|
||||
Some(SCStatusCodes::SessionNotFound)
|
||||
};
|
||||
|
||||
if let Some(status) = status {
|
||||
drop(pase);
|
||||
|
||||
complete_with_status(exchange, tx, status, None).await
|
||||
} else {
|
||||
let mut pase = self.pase.borrow_mut();
|
||||
|
||||
pase.timeout = Some(Timeout::new(exchange, pase.epoch));
|
||||
|
||||
Ok(())
|
|
@ -47,7 +47,7 @@ mod parser;
|
|||
mod traits;
|
||||
mod writer;
|
||||
|
||||
pub use matter_macro_derive::{FromTLV, ToTLV};
|
||||
pub use parser::*;
|
||||
pub use rs_matter_macros::{FromTLV, ToTLV};
|
||||
pub use traits::*;
|
||||
pub use writer::*;
|
|
@ -265,20 +265,6 @@ pub enum Nullable<T> {
|
|||
}
|
||||
|
||||
impl<T> Nullable<T> {
|
||||
pub fn as_mut(&mut self) -> Nullable<&mut T> {
|
||||
match self {
|
||||
Nullable::Null => Nullable::Null,
|
||||
Nullable::NotNull(t) => Nullable::NotNull(t),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn as_ref(&self) -> Nullable<&T> {
|
||||
match self {
|
||||
Nullable::Null => Nullable::Null,
|
||||
Nullable::NotNull(t) => Nullable::NotNull(t),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn is_null(&self) -> bool {
|
||||
match self {
|
||||
Nullable::Null => true,
|
||||
|
@ -286,7 +272,7 @@ impl<T> Nullable<T> {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn notnull(self) -> Option<T> {
|
||||
pub fn unwrap_notnull(self) -> Option<T> {
|
||||
match self {
|
||||
Nullable::Null => None,
|
||||
Nullable::NotNull(t) => Some(t),
|
||||
|
@ -371,28 +357,6 @@ impl<'a, T: FromTLV<'a> + Clone> Iterator for TLVArrayIter<'a, T> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a, 'b, T> PartialEq<TLVArray<'b, T>> for TLVArray<'a, T>
|
||||
where
|
||||
T: ToTLV + FromTLV<'a> + Clone + PartialEq,
|
||||
'b: 'a,
|
||||
{
|
||||
fn eq(&self, other: &TLVArray<'b, T>) -> bool {
|
||||
let mut iter1 = self.iter();
|
||||
let mut iter2 = other.iter();
|
||||
loop {
|
||||
match (iter1.next(), iter2.next()) {
|
||||
(None, None) => return true,
|
||||
(Some(x), Some(y)) => {
|
||||
if x != y {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
_ => return false,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, T> PartialEq<&[T]> for TLVArray<'a, T>
|
||||
where
|
||||
T: ToTLV + FromTLV<'a> + Clone + PartialEq,
|
||||
|
@ -486,7 +450,7 @@ impl<'a> ToTLV for TLVElement<'a> {
|
|||
mod tests {
|
||||
use super::{FromTLV, OctetStr, TLVWriter, TagType, ToTLV};
|
||||
use crate::{error::Error, tlv::TLVList, utils::writebuf::WriteBuf};
|
||||
use rs_matter_macros::{FromTLV, ToTLV};
|
||||
use matter_macro_derive::{FromTLV, ToTLV};
|
||||
|
||||
#[derive(ToTLV)]
|
||||
struct TestDerive {
|
415
matter/src/transport/core.rs
Normal file
415
matter/src/transport/core.rs
Normal file
|
@ -0,0 +1,415 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (c) 2020-2022 Project CHIP Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
use core::{borrow::Borrow, cell::RefCell};
|
||||
|
||||
use crate::{error::ErrorCode, secure_channel::common::OpCode, Matter};
|
||||
use embassy_futures::select::select;
|
||||
use embassy_time::{Duration, Timer};
|
||||
use log::info;
|
||||
|
||||
use crate::{
|
||||
error::Error, secure_channel::common::PROTO_ID_SECURE_CHANNEL, transport::packet::Packet,
|
||||
};
|
||||
|
||||
use super::{
|
||||
exchange::{
|
||||
Exchange, ExchangeCtr, ExchangeCtx, ExchangeId, ExchangeState, Notification, Role,
|
||||
MAX_EXCHANGES,
|
||||
},
|
||||
mrp::ReliableMessage,
|
||||
session::SessionMgr,
|
||||
};
|
||||
|
||||
#[derive(Debug)]
|
||||
enum OpCodeDescriptor {
|
||||
SecureChannel(OpCode),
|
||||
InteractionModel(crate::interaction_model::core::OpCode),
|
||||
Unknown(u8),
|
||||
}
|
||||
|
||||
impl From<u8> for OpCodeDescriptor {
|
||||
fn from(value: u8) -> Self {
|
||||
if let Some(opcode) = num::FromPrimitive::from_u8(value) {
|
||||
Self::SecureChannel(opcode)
|
||||
} else if let Some(opcode) = num::FromPrimitive::from_u8(value) {
|
||||
Self::InteractionModel(opcode)
|
||||
} else {
|
||||
Self::Unknown(value)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub struct Transport<'a> {
|
||||
matter: &'a Matter<'a>,
|
||||
pub(crate) exchanges: RefCell<heapless::Vec<ExchangeCtx, MAX_EXCHANGES>>,
|
||||
pub(crate) send_notification: Notification,
|
||||
pub session_mgr: RefCell<SessionMgr>,
|
||||
}
|
||||
|
||||
impl<'a> Transport<'a> {
|
||||
#[inline(always)]
|
||||
pub fn new(matter: &'a Matter<'a>) -> Self {
|
||||
let epoch = matter.epoch;
|
||||
let rand = matter.rand;
|
||||
|
||||
Self {
|
||||
matter,
|
||||
exchanges: RefCell::new(heapless::Vec::new()),
|
||||
send_notification: Notification::new(),
|
||||
session_mgr: RefCell::new(SessionMgr::new(epoch, rand)),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn matter(&self) -> &'a Matter<'a> {
|
||||
self.matter
|
||||
}
|
||||
|
||||
pub async fn initiate(&self, _fabric_id: u64, _node_id: u64) -> Result<Exchange<'a>, Error> {
|
||||
unimplemented!()
|
||||
}
|
||||
|
||||
pub fn process_rx<'r>(
|
||||
&'r self,
|
||||
construction_notification: &'r Notification,
|
||||
src_rx: &mut Packet<'_>,
|
||||
) -> Result<Option<ExchangeCtr<'r>>, Error> {
|
||||
self.purge()?;
|
||||
|
||||
let mut exchanges = self.exchanges.borrow_mut();
|
||||
let (ctx, new) = match self.post_recv(&mut exchanges, src_rx) {
|
||||
Ok((ctx, new)) => (ctx, new),
|
||||
Err(e) => match e.code() {
|
||||
ErrorCode::Duplicate => {
|
||||
self.send_notification.signal(());
|
||||
return Ok(None);
|
||||
}
|
||||
_ => Err(e)?,
|
||||
},
|
||||
};
|
||||
|
||||
src_rx.log("Got packet");
|
||||
|
||||
if src_rx.proto.is_ack() {
|
||||
if new {
|
||||
Err(ErrorCode::Invalid)?;
|
||||
} else {
|
||||
let state = &mut ctx.state;
|
||||
|
||||
match state {
|
||||
ExchangeState::ExchangeRecv {
|
||||
tx_acknowledged, ..
|
||||
} => {
|
||||
*tx_acknowledged = true;
|
||||
}
|
||||
ExchangeState::CompleteAcknowledge { notification, .. } => {
|
||||
unsafe { notification.as_ref() }.unwrap().signal(());
|
||||
ctx.state = ExchangeState::Closed;
|
||||
}
|
||||
_ => {
|
||||
// TODO: Error handling
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
self.matter().notify_changed();
|
||||
}
|
||||
}
|
||||
|
||||
if new {
|
||||
let constructor = ExchangeCtr {
|
||||
exchange: Exchange {
|
||||
id: ctx.id.clone(),
|
||||
transport: self,
|
||||
notification: Notification::new(),
|
||||
},
|
||||
construction_notification,
|
||||
};
|
||||
|
||||
self.matter().notify_changed();
|
||||
|
||||
Ok(Some(constructor))
|
||||
} else if src_rx.proto.proto_id == PROTO_ID_SECURE_CHANNEL
|
||||
&& src_rx.proto.proto_opcode == OpCode::MRPStandAloneAck as u8
|
||||
{
|
||||
// Standalone ack, do nothing
|
||||
Ok(None)
|
||||
} else {
|
||||
let state = &mut ctx.state;
|
||||
|
||||
match state {
|
||||
ExchangeState::ExchangeRecv {
|
||||
rx, notification, ..
|
||||
} => {
|
||||
let rx = unsafe { rx.as_mut() }.unwrap();
|
||||
rx.load(src_rx)?;
|
||||
|
||||
unsafe { notification.as_ref() }.unwrap().signal(());
|
||||
*state = ExchangeState::Active;
|
||||
}
|
||||
_ => {
|
||||
// TODO: Error handling
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
self.matter().notify_changed();
|
||||
|
||||
Ok(None)
|
||||
}
|
||||
}
|
||||
|
||||
pub async fn wait_construction(
|
||||
&self,
|
||||
construction_notification: &Notification,
|
||||
src_rx: &Packet<'_>,
|
||||
exchange_id: &ExchangeId,
|
||||
) -> Result<(), Error> {
|
||||
construction_notification.wait().await;
|
||||
|
||||
let mut exchanges = self.exchanges.borrow_mut();
|
||||
|
||||
let ctx = Self::get(&mut exchanges, exchange_id).unwrap();
|
||||
|
||||
let state = &mut ctx.state;
|
||||
|
||||
match state {
|
||||
ExchangeState::Construction { rx, notification } => {
|
||||
let rx = unsafe { rx.as_mut() }.unwrap();
|
||||
rx.load(src_rx)?;
|
||||
|
||||
unsafe { notification.as_ref() }.unwrap().signal(());
|
||||
*state = ExchangeState::Active;
|
||||
}
|
||||
_ => unreachable!(),
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub async fn wait_tx(&self) -> Result<(), Error> {
|
||||
select(
|
||||
self.send_notification.wait(),
|
||||
Timer::after(Duration::from_millis(100)),
|
||||
)
|
||||
.await;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub async fn pull_tx(&self, dest_tx: &mut Packet<'_>) -> Result<bool, Error> {
|
||||
self.purge()?;
|
||||
|
||||
let mut exchanges = self.exchanges.borrow_mut();
|
||||
|
||||
let ctx = exchanges.iter_mut().find(|ctx| {
|
||||
matches!(
|
||||
&ctx.state,
|
||||
ExchangeState::Acknowledge { .. }
|
||||
| ExchangeState::ExchangeSend { .. }
|
||||
// | ExchangeState::ExchangeRecv {
|
||||
// tx_acknowledged: false,
|
||||
// ..
|
||||
// }
|
||||
| ExchangeState::Complete { .. } // | ExchangeState::CompleteAcknowledge { .. }
|
||||
) || ctx.mrp.is_ack_ready(*self.matter.borrow())
|
||||
});
|
||||
|
||||
if let Some(ctx) = ctx {
|
||||
self.matter().notify_changed();
|
||||
|
||||
let state = &mut ctx.state;
|
||||
|
||||
let send = match state {
|
||||
ExchangeState::Acknowledge { notification } => {
|
||||
ReliableMessage::prepare_ack(ctx.id.id, dest_tx);
|
||||
|
||||
unsafe { notification.as_ref() }.unwrap().signal(());
|
||||
*state = ExchangeState::Active;
|
||||
|
||||
true
|
||||
}
|
||||
ExchangeState::ExchangeSend {
|
||||
tx,
|
||||
rx,
|
||||
notification,
|
||||
} => {
|
||||
let tx = unsafe { tx.as_ref() }.unwrap();
|
||||
dest_tx.load(tx)?;
|
||||
|
||||
*state = ExchangeState::ExchangeRecv {
|
||||
_tx: tx,
|
||||
tx_acknowledged: false,
|
||||
rx: *rx,
|
||||
notification: *notification,
|
||||
};
|
||||
|
||||
true
|
||||
}
|
||||
// ExchangeState::ExchangeRecv { .. } => {
|
||||
// // TODO: Re-send the tx package if due
|
||||
// false
|
||||
// }
|
||||
ExchangeState::Complete { tx, notification } => {
|
||||
let tx = unsafe { tx.as_ref() }.unwrap();
|
||||
dest_tx.load(tx)?;
|
||||
|
||||
*state = ExchangeState::CompleteAcknowledge {
|
||||
_tx: tx as *const _,
|
||||
notification: *notification,
|
||||
};
|
||||
|
||||
true
|
||||
}
|
||||
// ExchangeState::CompleteAcknowledge { .. } => {
|
||||
// // TODO: Re-send the tx package if due
|
||||
// false
|
||||
// }
|
||||
_ => {
|
||||
ReliableMessage::prepare_ack(ctx.id.id, dest_tx);
|
||||
true
|
||||
}
|
||||
};
|
||||
|
||||
if send {
|
||||
dest_tx.log("Sending packet");
|
||||
|
||||
self.pre_send(ctx, dest_tx)?;
|
||||
self.matter().notify_changed();
|
||||
|
||||
return Ok(true);
|
||||
}
|
||||
}
|
||||
|
||||
Ok(false)
|
||||
}
|
||||
|
||||
fn purge(&self) -> Result<(), Error> {
|
||||
loop {
|
||||
let mut exchanges = self.exchanges.borrow_mut();
|
||||
|
||||
if let Some(index) = exchanges.iter_mut().enumerate().find_map(|(index, ctx)| {
|
||||
matches!(ctx.state, ExchangeState::Closed).then_some(index)
|
||||
}) {
|
||||
exchanges.swap_remove(index);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn post_recv<'r>(
|
||||
&self,
|
||||
exchanges: &'r mut heapless::Vec<ExchangeCtx, MAX_EXCHANGES>,
|
||||
rx: &mut Packet<'_>,
|
||||
) -> Result<(&'r mut ExchangeCtx, bool), Error> {
|
||||
rx.plain_hdr_decode()?;
|
||||
|
||||
// Get the session
|
||||
|
||||
let mut session_mgr = self.session_mgr.borrow_mut();
|
||||
|
||||
let sess_index = session_mgr.post_recv(rx)?;
|
||||
let session = session_mgr.mut_by_index(sess_index).unwrap();
|
||||
|
||||
// Decrypt the message
|
||||
session.recv(self.matter.epoch, rx)?;
|
||||
|
||||
// Get the exchange
|
||||
// TODO: Handle out of space
|
||||
let (exch, new) = Self::register(
|
||||
exchanges,
|
||||
ExchangeId::load(rx),
|
||||
Role::complementary(rx.proto.is_initiator()),
|
||||
// We create a new exchange, only if the peer is the initiator
|
||||
rx.proto.is_initiator(),
|
||||
)?;
|
||||
|
||||
// Message Reliability Protocol
|
||||
exch.mrp.recv(rx, self.matter.epoch)?;
|
||||
|
||||
Ok((exch, new))
|
||||
}
|
||||
|
||||
fn pre_send(&self, ctx: &mut ExchangeCtx, tx: &mut Packet) -> Result<(), Error> {
|
||||
let mut session_mgr = self.session_mgr.borrow_mut();
|
||||
let sess_index = session_mgr
|
||||
.get(
|
||||
ctx.id.session_id.id,
|
||||
ctx.id.session_id.peer_addr,
|
||||
ctx.id.session_id.peer_nodeid,
|
||||
ctx.id.session_id.is_encrypted,
|
||||
)
|
||||
.ok_or(ErrorCode::NoSession)?;
|
||||
|
||||
let session = session_mgr.mut_by_index(sess_index).unwrap();
|
||||
|
||||
tx.proto.exch_id = ctx.id.id;
|
||||
if ctx.role == Role::Initiator {
|
||||
tx.proto.set_initiator();
|
||||
}
|
||||
|
||||
session.pre_send(tx)?;
|
||||
ctx.mrp.pre_send(tx)?;
|
||||
session_mgr.send(sess_index, tx)
|
||||
}
|
||||
|
||||
fn register(
|
||||
exchanges: &mut heapless::Vec<ExchangeCtx, MAX_EXCHANGES>,
|
||||
id: ExchangeId,
|
||||
role: Role,
|
||||
create_new: bool,
|
||||
) -> Result<(&mut ExchangeCtx, bool), Error> {
|
||||
let exchange_index = exchanges
|
||||
.iter_mut()
|
||||
.enumerate()
|
||||
.find_map(|(index, exchange)| (exchange.id == id).then_some(index));
|
||||
|
||||
if let Some(exchange_index) = exchange_index {
|
||||
let exchange = &mut exchanges[exchange_index];
|
||||
if exchange.role == role {
|
||||
Ok((exchange, false))
|
||||
} else {
|
||||
Err(ErrorCode::NoExchange.into())
|
||||
}
|
||||
} else if create_new {
|
||||
info!("Creating new exchange: {:?}", id);
|
||||
|
||||
let exchange = ExchangeCtx {
|
||||
id,
|
||||
role,
|
||||
mrp: ReliableMessage::new(),
|
||||
state: ExchangeState::Active,
|
||||
};
|
||||
|
||||
exchanges.push(exchange).map_err(|_| ErrorCode::NoSpace)?;
|
||||
|
||||
Ok((exchanges.iter_mut().next_back().unwrap(), true))
|
||||
} else {
|
||||
Err(ErrorCode::NoExchange.into())
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) fn get<'r>(
|
||||
exchanges: &'r mut heapless::Vec<ExchangeCtx, MAX_EXCHANGES>,
|
||||
id: &ExchangeId,
|
||||
) -> Option<&'r mut ExchangeCtx> {
|
||||
exchanges.iter_mut().find(|exchange| exchange.id == *id)
|
||||
}
|
||||
}
|
|
@ -1,19 +1,23 @@
|
|||
use embassy_sync::blocking_mutex::raw::NoopRawMutex;
|
||||
|
||||
use crate::{
|
||||
acl::Accessor,
|
||||
error::{Error, ErrorCode},
|
||||
utils::{epoch::Epoch, select::Notification},
|
||||
Matter,
|
||||
};
|
||||
|
||||
use super::{
|
||||
core::Transport,
|
||||
mrp::ReliableMessage,
|
||||
network::Address,
|
||||
packet::Packet,
|
||||
session::{CloneData, Session, SessionMgr},
|
||||
session::{Session, SessionMgr},
|
||||
};
|
||||
|
||||
pub const MAX_EXCHANGES: usize = 8;
|
||||
|
||||
pub type Notification = embassy_sync::signal::Signal<NoopRawMutex, ()>;
|
||||
|
||||
#[derive(Debug, PartialEq, Eq, Copy, Clone, Default)]
|
||||
pub(crate) enum Role {
|
||||
#[default]
|
||||
|
@ -39,110 +43,6 @@ pub(crate) struct ExchangeCtx {
|
|||
pub(crate) state: ExchangeState,
|
||||
}
|
||||
|
||||
impl ExchangeCtx {
|
||||
pub(crate) fn get<'r>(
|
||||
exchanges: &'r mut heapless::Vec<ExchangeCtx, MAX_EXCHANGES>,
|
||||
id: &ExchangeId,
|
||||
) -> Option<&'r mut ExchangeCtx> {
|
||||
exchanges.iter_mut().find(|exchange| exchange.id == *id)
|
||||
}
|
||||
|
||||
pub fn new_ephemeral(session_id: SessionId, reply_to: Option<&Packet<'_>>) -> Self {
|
||||
Self {
|
||||
id: ExchangeId {
|
||||
id: if let Some(rx) = reply_to {
|
||||
rx.proto.exch_id
|
||||
} else {
|
||||
0
|
||||
},
|
||||
session_id: session_id.clone(),
|
||||
},
|
||||
role: if reply_to.is_some() {
|
||||
Role::Responder
|
||||
} else {
|
||||
Role::Initiator
|
||||
},
|
||||
mrp: ReliableMessage::new(),
|
||||
state: ExchangeState::Active,
|
||||
}
|
||||
}
|
||||
|
||||
pub(crate) fn prep_ephemeral(
|
||||
session_id: SessionId,
|
||||
session_mgr: &mut SessionMgr,
|
||||
reply_to: Option<&Packet<'_>>,
|
||||
tx: &mut Packet<'_>,
|
||||
) -> Result<ExchangeCtx, Error> {
|
||||
let mut ctx = Self::new_ephemeral(session_id.clone(), reply_to);
|
||||
|
||||
let sess_index = session_mgr.get(
|
||||
session_id.id,
|
||||
session_id.peer_addr,
|
||||
session_id.peer_nodeid,
|
||||
session_id.is_encrypted,
|
||||
);
|
||||
|
||||
let epoch = session_mgr.epoch;
|
||||
let rand = session_mgr.rand;
|
||||
|
||||
if let Some(rx) = reply_to {
|
||||
ctx.mrp.recv(rx, epoch)?;
|
||||
} else {
|
||||
tx.proto.set_initiator();
|
||||
}
|
||||
|
||||
tx.unset_reliable();
|
||||
|
||||
if let Some(sess_index) = sess_index {
|
||||
let session = session_mgr.mut_by_index(sess_index).unwrap();
|
||||
ctx.pre_send_sess(session, tx, epoch)?;
|
||||
} else {
|
||||
let mut session =
|
||||
Session::new(session_id.peer_addr, session_id.peer_nodeid, epoch, rand);
|
||||
ctx.pre_send_sess(&mut session, tx, epoch)?;
|
||||
}
|
||||
|
||||
Ok(ctx)
|
||||
}
|
||||
|
||||
pub(crate) fn pre_send(
|
||||
&mut self,
|
||||
session_mgr: &mut SessionMgr,
|
||||
tx: &mut Packet,
|
||||
) -> Result<(), Error> {
|
||||
let epoch = session_mgr.epoch;
|
||||
|
||||
let sess_index = session_mgr
|
||||
.get(
|
||||
self.id.session_id.id,
|
||||
self.id.session_id.peer_addr,
|
||||
self.id.session_id.peer_nodeid,
|
||||
self.id.session_id.is_encrypted,
|
||||
)
|
||||
.ok_or(ErrorCode::NoSession)?;
|
||||
|
||||
let session = session_mgr.mut_by_index(sess_index).unwrap();
|
||||
|
||||
self.pre_send_sess(session, tx, epoch)
|
||||
}
|
||||
|
||||
pub(crate) fn pre_send_sess(
|
||||
&mut self,
|
||||
session: &mut Session,
|
||||
tx: &mut Packet,
|
||||
epoch: Epoch,
|
||||
) -> Result<(), Error> {
|
||||
tx.proto.exch_id = self.id.id;
|
||||
if self.role == Role::Initiator {
|
||||
tx.proto.set_initiator();
|
||||
}
|
||||
|
||||
session.pre_send(tx)?;
|
||||
self.mrp.pre_send(tx)?;
|
||||
session.send(epoch, tx)
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub(crate) enum ExchangeState {
|
||||
Construction {
|
||||
|
@ -185,9 +85,6 @@ impl<'a> ExchangeCtr<'a> {
|
|||
self.exchange.id()
|
||||
}
|
||||
|
||||
#[allow(clippy::all)]
|
||||
// Should be #[allow(clippy::needless_pass_by_ref_mut)], but this is only in 1.73 which is not released yet
|
||||
// rx is actually modified, but via an unsafe `*mut Packet<'static>` and apparently Clippy can't see this
|
||||
pub async fn get(mut self, rx: &mut Packet<'_>) -> Result<Exchange<'a>, Error> {
|
||||
let construction_notification = self.construction_notification;
|
||||
|
||||
|
@ -247,7 +144,7 @@ impl SessionId {
|
|||
}
|
||||
pub struct Exchange<'a> {
|
||||
pub(crate) id: ExchangeId,
|
||||
pub(crate) matter: &'a Matter<'a>,
|
||||
pub(crate) transport: &'a Transport<'a>,
|
||||
pub(crate) notification: Notification,
|
||||
}
|
||||
|
||||
|
@ -256,8 +153,21 @@ impl<'a> Exchange<'a> {
|
|||
&self.id
|
||||
}
|
||||
|
||||
pub fn matter(&self) -> &Matter<'a> {
|
||||
self.transport.matter()
|
||||
}
|
||||
|
||||
pub fn transport(&self) -> &Transport<'a> {
|
||||
self.transport
|
||||
}
|
||||
|
||||
pub fn accessor(&self) -> Result<Accessor<'a>, Error> {
|
||||
self.with_session(|sess| Ok(Accessor::for_session(sess, &self.matter.acl_mgr)))
|
||||
self.with_session(|sess| {
|
||||
Ok(Accessor::for_session(
|
||||
sess,
|
||||
&self.transport.matter().acl_mgr,
|
||||
))
|
||||
})
|
||||
}
|
||||
|
||||
pub fn with_session_mut<F, T>(&self, f: F) -> Result<T, Error>
|
||||
|
@ -265,7 +175,7 @@ impl<'a> Exchange<'a> {
|
|||
F: FnOnce(&mut Session) -> Result<T, Error>,
|
||||
{
|
||||
self.with_ctx(|_self, ctx| {
|
||||
let mut session_mgr = _self.matter.session_mgr.borrow_mut();
|
||||
let mut session_mgr = _self.transport.session_mgr.borrow_mut();
|
||||
|
||||
let sess_index = session_mgr
|
||||
.get(
|
||||
|
@ -287,6 +197,19 @@ impl<'a> Exchange<'a> {
|
|||
self.with_session_mut(|sess| f(sess))
|
||||
}
|
||||
|
||||
pub fn with_session_mgr_mut<F, T>(&self, f: F) -> Result<T, Error>
|
||||
where
|
||||
F: FnOnce(&mut SessionMgr) -> Result<T, Error>,
|
||||
{
|
||||
let mut session_mgr = self.transport.session_mgr.borrow_mut();
|
||||
|
||||
f(&mut session_mgr)
|
||||
}
|
||||
|
||||
pub async fn initiate(&mut self, fabric_id: u64, node_id: u64) -> Result<Exchange<'a>, Error> {
|
||||
self.transport.initiate(fabric_id, node_id).await
|
||||
}
|
||||
|
||||
pub async fn acknowledge(&mut self) -> Result<(), Error> {
|
||||
let wait = self.with_ctx_mut(|_self, ctx| {
|
||||
if !matches!(ctx.state, ExchangeState::Active) {
|
||||
|
@ -299,7 +222,7 @@ impl<'a> Exchange<'a> {
|
|||
ctx.state = ExchangeState::Acknowledge {
|
||||
notification: &_self.notification as *const _,
|
||||
};
|
||||
_self.matter.send_notification.signal(());
|
||||
_self.transport.send_notification.signal(());
|
||||
|
||||
Ok(true)
|
||||
}
|
||||
|
@ -312,12 +235,8 @@ impl<'a> Exchange<'a> {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
pub async fn exchange(
|
||||
&mut self,
|
||||
tx: &mut Packet<'_>,
|
||||
rx: &mut Packet<'_>,
|
||||
) -> Result<(), Error> {
|
||||
let tx: &mut Packet<'static> = unsafe { core::mem::transmute(tx) };
|
||||
pub async fn exchange(&mut self, tx: &Packet<'_>, rx: &mut Packet<'_>) -> Result<(), Error> {
|
||||
let tx: &Packet<'static> = unsafe { core::mem::transmute(tx) };
|
||||
let rx: &mut Packet<'static> = unsafe { core::mem::transmute(rx) };
|
||||
|
||||
self.with_ctx_mut(|_self, ctx| {
|
||||
|
@ -325,15 +244,12 @@ impl<'a> Exchange<'a> {
|
|||
Err(ErrorCode::NoExchange)?;
|
||||
}
|
||||
|
||||
let mut session_mgr = _self.matter.session_mgr.borrow_mut();
|
||||
ctx.pre_send(&mut session_mgr, tx)?;
|
||||
|
||||
ctx.state = ExchangeState::ExchangeSend {
|
||||
tx: tx as *const _,
|
||||
rx: rx as *mut _,
|
||||
notification: &_self.notification as *const _,
|
||||
};
|
||||
_self.matter.send_notification.signal(());
|
||||
_self.transport.send_notification.signal(());
|
||||
|
||||
Ok(())
|
||||
})?;
|
||||
|
@ -343,26 +259,23 @@ impl<'a> Exchange<'a> {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
pub async fn complete(mut self, tx: &mut Packet<'_>) -> Result<(), Error> {
|
||||
pub async fn complete(mut self, tx: &Packet<'_>) -> Result<(), Error> {
|
||||
self.send_complete(tx).await
|
||||
}
|
||||
|
||||
pub async fn send_complete(&mut self, tx: &mut Packet<'_>) -> Result<(), Error> {
|
||||
let tx: &mut Packet<'static> = unsafe { core::mem::transmute(tx) };
|
||||
pub async fn send_complete(&mut self, tx: &Packet<'_>) -> Result<(), Error> {
|
||||
let tx: &Packet<'static> = unsafe { core::mem::transmute(tx) };
|
||||
|
||||
self.with_ctx_mut(|_self, ctx| {
|
||||
if !matches!(ctx.state, ExchangeState::Active) {
|
||||
Err(ErrorCode::NoExchange)?;
|
||||
}
|
||||
|
||||
let mut session_mgr = _self.matter.session_mgr.borrow_mut();
|
||||
ctx.pre_send(&mut session_mgr, tx)?;
|
||||
|
||||
ctx.state = ExchangeState::Complete {
|
||||
tx: tx as *const _,
|
||||
notification: &_self.notification as *const _,
|
||||
};
|
||||
_self.matter.send_notification.signal(());
|
||||
_self.transport.send_notification.signal(());
|
||||
|
||||
Ok(())
|
||||
})?;
|
||||
|
@ -372,38 +285,13 @@ impl<'a> Exchange<'a> {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
pub(crate) fn get_next_sess_id(&mut self) -> u16 {
|
||||
self.matter.session_mgr.borrow_mut().get_next_sess_id()
|
||||
}
|
||||
|
||||
pub(crate) async fn clone_session(
|
||||
&mut self,
|
||||
tx: &mut Packet<'_>,
|
||||
clone_data: &CloneData,
|
||||
) -> Result<usize, Error> {
|
||||
loop {
|
||||
let result = self
|
||||
.matter
|
||||
.session_mgr
|
||||
.borrow_mut()
|
||||
.clone_session(clone_data);
|
||||
|
||||
match result {
|
||||
Err(err) if err.code() == ErrorCode::NoSpaceSessions => {
|
||||
self.matter.evict_session(tx).await?
|
||||
}
|
||||
other => break other,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn with_ctx<F, T>(&self, f: F) -> Result<T, Error>
|
||||
where
|
||||
F: FnOnce(&Self, &ExchangeCtx) -> Result<T, Error>,
|
||||
{
|
||||
let mut exchanges = self.matter.exchanges.borrow_mut();
|
||||
let mut exchanges = self.transport.exchanges.borrow_mut();
|
||||
|
||||
let exchange = ExchangeCtx::get(&mut exchanges, &self.id).ok_or(ErrorCode::NoExchange)?; // TODO
|
||||
let exchange = Transport::get(&mut exchanges, &self.id).ok_or(ErrorCode::NoExchange)?; // TODO
|
||||
|
||||
f(self, exchange)
|
||||
}
|
||||
|
@ -412,9 +300,9 @@ impl<'a> Exchange<'a> {
|
|||
where
|
||||
F: FnOnce(&mut Self, &mut ExchangeCtx) -> Result<T, Error>,
|
||||
{
|
||||
let mut exchanges = self.matter.exchanges.borrow_mut();
|
||||
let mut exchanges = self.transport.exchanges.borrow_mut();
|
||||
|
||||
let exchange = ExchangeCtx::get(&mut exchanges, &self.id).ok_or(ErrorCode::NoExchange)?; // TODO
|
||||
let exchange = Transport::get(&mut exchanges, &self.id).ok_or(ErrorCode::NoExchange)?; // TODO
|
||||
|
||||
f(self, exchange)
|
||||
}
|
||||
|
@ -424,7 +312,7 @@ impl<'a> Drop for Exchange<'a> {
|
|||
fn drop(&mut self) {
|
||||
let _ = self.with_ctx_mut(|_self, ctx| {
|
||||
ctx.state = ExchangeState::Closed;
|
||||
_self.matter.send_notification.signal(());
|
||||
_self.transport.send_notification.signal(());
|
||||
|
||||
Ok(())
|
||||
});
|
|
@ -24,5 +24,6 @@ pub mod packet;
|
|||
pub mod pipe;
|
||||
pub mod plain_hdr;
|
||||
pub mod proto_hdr;
|
||||
pub mod runner;
|
||||
pub mod session;
|
||||
pub mod udp;
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue