Compare commits
30 Commits
d8dd17ee92
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 0677695b16 | |||
|
|
558910621b | ||
|
|
d7fe3a6377 | ||
|
|
27925a67ad | ||
| a0ac63f05c | |||
|
|
8dabec893e | ||
|
|
3d4bba3584 | ||
| 3ff0875c48 | |||
|
|
7cc745182f | ||
|
|
7de235f144 | ||
|
|
2b8acad415 | ||
|
|
95799e5da8 | ||
|
|
49e5f2c7f6 | ||
|
|
00426e597d | ||
|
|
10486e6a32 | ||
|
|
55b5b9361f | ||
|
|
5824df16b1 | ||
|
|
39d5dfd2e8 | ||
|
|
add058f1d5 | ||
|
|
5ecf3508d6 | ||
|
|
2b53023234 | ||
|
|
850e2b8669 | ||
|
|
4e11c27129 | ||
|
|
84e1ef7c85 | ||
|
|
7e23b3b2ec | ||
|
|
bb28d311a1 | ||
|
|
3302bb8995 | ||
|
|
772936937b | ||
|
|
7a64bcd1bf | ||
|
|
943d0ee72f |
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -1 +0,0 @@
|
|||||||
* text=auto eol=lf
|
|
||||||
109
AGENTS.md
109
AGENTS.md
@@ -1,13 +1,16 @@
|
|||||||
# AGENTS.md
|
# AGENTS.md
|
||||||
|
|
||||||
This file provides guidance to Codex (Codex.ai/code) when working with code in this repository.
|
Guidance for coding agents (Claude Code, Codex, …) working in this repository.
|
||||||
|
|
||||||
## Project Overview
|
## Project Overview
|
||||||
|
|
||||||
Arbiter is a **permissioned signing service** for cryptocurrency wallets. It consists of:
|
Arbiter is a **permissioned signing service** for cryptocurrency wallets:
|
||||||
|
|
||||||
- **`server/`** — Rust gRPC daemon that holds encrypted keys and enforces policies
|
- **`server/`** — Rust gRPC daemon that holds encrypted keys and enforces policies
|
||||||
- **`operator/`** — Flutter desktop app (macOS/Windows) with a Rust backend via Rinf
|
- **`useragent/`** — Flutter app (desktop + mobile + web targets) with a Rust core via `flutter_rust_bridge`
|
||||||
- **`protobufs/`** — Protocol Buffer definitions shared between server and client
|
- **`protobufs/`** — Protocol Buffer definitions shared between server and clients
|
||||||
|
- **`docs/`** — `ARCHITECTURE.md` (peer types, flows, threat model) and `IMPLEMENTATION.md`; treat them as the design source of truth and update them when behaviour changes
|
||||||
|
- **`scripts/`** — helper scripts, e.g. `gen_erc20_registry.py`
|
||||||
|
|
||||||
The vault never exposes key material; it only produces signatures when requests satisfy configured policies.
|
The vault never exposes key material; it only produces signatures when requests satisfy configured policies.
|
||||||
|
|
||||||
@@ -18,7 +21,7 @@ Tools are managed via [mise](https://mise.jdx.dev/). Install all required tools:
|
|||||||
mise install
|
mise install
|
||||||
```
|
```
|
||||||
|
|
||||||
Key versions: Rust 1.93.0 (with clippy), Flutter 3.38.9-stable, protoc 29.6, diesel_cli 2.3.6 (sqlite).
|
Key versions live in `mise.toml` (currently Rust 1.95.0 with clippy, Flutter 3.41.7-stable, protoc 29.6, diesel_cli 2.3.7 with `sqlite-bundled`, Python 3.14). Also provided there: `cargo-nextest`, `cargo-audit`, `cargo-vet`, `cargo-shear`, `cargo-mutants`, `cargo-features-manager`, `cargo-edit`, `ast-grep`, `flutter_rust_bridge_codegen`.
|
||||||
|
|
||||||
## Server (Rust workspace at `server/`)
|
## Server (Rust workspace at `server/`)
|
||||||
|
|
||||||
@@ -26,10 +29,14 @@ Key versions: Rust 1.93.0 (with clippy), Flutter 3.38.9-stable, protoc 29.6, die
|
|||||||
|
|
||||||
| Crate | Purpose |
|
| Crate | Purpose |
|
||||||
|---|---|
|
|---|---|
|
||||||
| `arbiter-proto` | Generated gRPC stubs + protobuf types; compiled from `protobufs/*.proto` via `tonic-prost-build` |
|
| `arbiter-proto` | Generated gRPC stubs + protobuf types (`tonic-prost-build`); also `ArbiterUrl`, `home_path()`, `BOOTSTRAP_PATH` |
|
||||||
| `arbiter-server` | Main daemon — actors, DB, EVM policy engine, gRPC service implementation |
|
| `arbiter-crypto` | Shared crypto primitives: `authn` (ML-DSA), `safecell` (hardened memory), `hashing::Hashable`, re-exported `x-wing` |
|
||||||
| `arbiter-operator` | Rust client library for the operator side of the gRPC protocol |
|
| `arbiter-macros` | `#[derive(Hashable)]` — canonical hashing of structs for the DB integrity layer |
|
||||||
| `arbiter-client` | Rust client library for SDK clients |
|
| `arbiter-server` | Main daemon — actors, peers, DB, EVM policy engine, gRPC service implementation |
|
||||||
|
| `arbiter-client` | Rust client library for SDK clients (`ArbiterClient`, EVM wallet, key storage) |
|
||||||
|
| `arbiter-tokens-registry` | Generated ERC-20 token registry used by token-transfer policies |
|
||||||
|
|
||||||
|
Workspace lints (`server/Cargo.toml`) are strict: most of clippy `pedantic`/`nursery` plus a large restriction set. `as` casts, indexing/slicing, `dbg!`, float arithmetic and undocumented `unsafe` are denied or warned — expect to add an `#[expect(..., reason = "...")]` rather than to silence a lint globally.
|
||||||
|
|
||||||
### Common Commands
|
### Common Commands
|
||||||
|
|
||||||
@@ -42,54 +49,78 @@ cargo build
|
|||||||
# Run the server daemon
|
# Run the server daemon
|
||||||
cargo run -p arbiter-server
|
cargo run -p arbiter-server
|
||||||
|
|
||||||
# Run all tests (preferred over cargo test)
|
# Run all tests (preferred over cargo test; CI uses --all-features)
|
||||||
cargo nextest run
|
cargo nextest run
|
||||||
|
|
||||||
# Run a single test
|
# Run a single test
|
||||||
cargo nextest run <test_name>
|
cargo nextest run <test_name>
|
||||||
|
|
||||||
# Lint
|
# Lint (CI runs it with -D warnings)
|
||||||
cargo clippy
|
cargo clippy --all -- -D warnings
|
||||||
|
|
||||||
# Security audit
|
# Security audit
|
||||||
cargo audit
|
cargo audit
|
||||||
|
|
||||||
|
# Supply-chain review (config in server/supply-chain/)
|
||||||
|
cargo vet
|
||||||
|
|
||||||
# Check unused dependencies
|
# Check unused dependencies
|
||||||
cargo shear
|
cargo shear
|
||||||
|
|
||||||
# Run snapshot tests and update snapshots
|
# Mutation testing
|
||||||
cargo insta review
|
cargo mutants
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### CI
|
||||||
|
|
||||||
|
Woodpecker pipelines in `.woodpecker/` run on `server/**` changes: `server-lint` (clippy), `server-test` (nextest, `--all-features`), `server-audit`, `server-vet`, plus `useragent-analyze` for the Flutter app.
|
||||||
|
|
||||||
### Architecture
|
### Architecture
|
||||||
|
|
||||||
The server is actor-based using the **kameo** crate. All long-lived state lives in `GlobalActors`:
|
The server is actor-based using the **kameo** crate. Long-lived state lives in `GlobalActors` (`src/actors/mod.rs`):
|
||||||
|
|
||||||
- **`Bootstrapper`** — Manages the one-time bootstrap token written to `~/.arbiter/bootstrap_token` on first run.
|
- **`Bootstrapper`** — one-time bootstrap token, written to `~/.arbiter/bootstrap_token` on first run
|
||||||
- **`Vault`** — Holds the encrypted root key and manages the Sealed/Unsealed vault state machine. On unseal, decrypts the root key into a `memsafe` hardened memory cell.
|
- **`Vault`** — encrypted root key and the Sealed/Unsealed state machine; on unseal decrypts the root key into a `memsafe`-backed `SafeCell`
|
||||||
- **`FlowCoordinator`** — Coordinates cross-connection flow between operators and SDK clients.
|
- **`FlowCoordinator`** — cross-connection flow between operators and SDK clients
|
||||||
- **`EvmActor`** — Handles EVM transaction policy enforcement and signing.
|
- **`OperatorRegistry`** — tracks currently connected operators
|
||||||
|
- **`EvmActor`** — EVM transaction policy enforcement and signing
|
||||||
|
- **`events`** — a `kameo_actors::MessageBus` (`DeliveryStrategy::Guaranteed`) for cross-actor notifications
|
||||||
|
|
||||||
Per-connection actors live under `actors/operator/` and `actors/client/`, each with `auth` (challenge-response authentication) and `session` (post-auth operations) sub-modules.
|
Per-connection state lives under **`src/peers/`**, not `actors/`: `peers/client/` and `peers/operator/`, each with `auth` (challenge-response) and `session` (post-auth) sub-modules; the operator side additionally has `vault_gate/` for the unseal handshake.
|
||||||
|
|
||||||
**Database:** SQLite via `diesel-async` + `bb8` connection pool. Schema managed by embedded Diesel migrations in `crates/arbiter-server/migrations/`. DB file lives at `~/.arbiter/arbiter.sqlite`. Tests use a temp-file DB via `db::create_test_pool()`.
|
The gRPC surface lives in **`src/grpc/`**, split per peer (`client/`, `operator/`, `common/`) and per direction (`inbound.rs` — requests to the daemon, `outbound.rs` — server-initiated streams), with `request_tracker.rs` correlating the two.
|
||||||
|
|
||||||
|
EVM logic is in `src/evm/`: `policies/ether_transfer/`, `policies/token_transfers/`, `abi.rs`, `safe_signer.rs`.
|
||||||
|
|
||||||
|
**Database:** SQLite via `diesel-async` + `bb8`. Schema in `src/db/schema.rs`, models in `src/db/models.rs`, embedded migrations in `crates/arbiter-server/migrations/`. DB file lives at `~/.arbiter/arbiter.sqlite`; tests use a temp-file DB via `db::create_test_pool()`.
|
||||||
|
|
||||||
|
Entity ids are newtypes generated by the `declare_id!` macro in `db::models` (`OperatorId`, `ChainId`, …), each a `#[repr(transparent)]` wrapper over `i32` with `to_raw`/`from_raw`. Pass these around instead of bare `i32`.
|
||||||
|
|
||||||
|
**Row integrity:** sensitive rows are covered by an HMAC-SHA256 envelope (`src/crypto/integrity/`, table `integrity_envelope`), keyed from the vault root key. A struct becomes coverable by deriving `arbiter_macros::Hashable` and implementing `Integrable` (`KIND` + `VERSION`). When adding or changing a covered entity, keep the derive and the payload version in sync — a mismatch surfaces as `PayloadVersionMismatch` or `MacMismatch` at runtime.
|
||||||
|
|
||||||
**Cryptography:**
|
**Cryptography:**
|
||||||
- Authentication: ed25519 (challenge-response, nonce-tracked per peer)
|
- Authentication: **ML-DSA-87** (post-quantum, `arbiter-crypto::authn::v1`), challenge-response with per-peer nonce tracking
|
||||||
- Encryption at rest: XChaCha20-Poly1305 (versioned via `scheme` field for transparent migration on unseal)
|
- Encryption at rest: XChaCha20-Poly1305, versioned modules (`crypto/encryption/v1.rs`) with a `schema_version` column for transparent migration on unseal
|
||||||
- Password KDF: Argon2
|
- Password KDF: Argon2
|
||||||
- Unseal transport: X25519 ephemeral key exchange
|
- Unseal transport: X25519 ephemeral key exchange (`peers/operator/vault_gate/`); `x-wing` (hybrid PQ KEM) is available via `arbiter-crypto`
|
||||||
- TLS: self-signed certificate (aws-lc-rs backend), fingerprint distributed via `ArbiterUrl`
|
- TLS: self-signed certificate (rustls + aws-lc-rs, `prefer-post-quantum`), fingerprint distributed via `ArbiterUrl`
|
||||||
|
|
||||||
**Protocol:** gRPC with Protocol Buffers. The `ArbiterUrl` type encodes host, port, CA cert, and bootstrap token into a single shareable string (printed to console on first run).
|
Crypto modules are versioned by convention: `mod.rs` re-exports the current `vN`. Add a `v(N+1)` rather than editing an existing version in place.
|
||||||
|
|
||||||
|
**Protocol:** gRPC with Protocol Buffers. `ArbiterUrl` encodes host, port, CA cert and bootstrap token into a single shareable string (printed to console on first run).
|
||||||
|
|
||||||
### Proto Regeneration
|
### Proto Regeneration
|
||||||
|
|
||||||
When `.proto` files in `protobufs/` change, rebuild to regenerate:
|
`arbiter-proto/build.rs` compiles `arbiter.proto`, `operator.proto`, `client.proto` and `evm.proto` (with their `shared/`, `operator/`, `client/` includes) on build:
|
||||||
```sh
|
```sh
|
||||||
cd server && cargo build -p arbiter-proto
|
cd server && cargo build -p arbiter-proto
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Dart protobuf stubs are generated separately, from the repo root:
|
||||||
|
```sh
|
||||||
|
mise run codegen # protoc --dart_out=grpc:useragent/lib/proto
|
||||||
|
```
|
||||||
|
|
||||||
### Database Migrations
|
### Database Migrations
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
@@ -100,6 +131,8 @@ diesel migration generate <name> --migration-dir crates/arbiter-server/migration
|
|||||||
diesel migration run --migration-dir crates/arbiter-server/migrations
|
diesel migration run --migration-dir crates/arbiter-server/migrations
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Pre-release policy: there is a single `init` migration and no deployed databases yet, so schema changes are made by editing that migration directly instead of stacking new ones. Regenerate `src/db/schema.rs` after changing it.
|
||||||
|
|
||||||
### Code Conventions
|
### Code Conventions
|
||||||
|
|
||||||
**`#[must_use]` Attribute:**
|
**`#[must_use]` Attribute:**
|
||||||
@@ -121,29 +154,23 @@ pub fn verify(&self, nonce: i32, context: &[u8], signature: &Signature) -> bool
|
|||||||
|
|
||||||
This forces callers to either use the return value or explicitly ignore it with `let _ = ...;`, preventing silent failures.
|
This forces callers to either use the return value or explicitly ignore it with `let _ = ...;`, preventing silent failures.
|
||||||
|
|
||||||
## Operator (Flutter + Rinf at `operator/`)
|
## User Agent (Flutter + flutter_rust_bridge at `useragent/`)
|
||||||
|
|
||||||
The Flutter app uses [Rinf](https://rinf.cunarist.org) to call Rust code. The Rust logic lives in `operator/native/hub/` as a separate crate that uses `arbiter-operator` for the gRPC client.
|
The Flutter app calls Rust through [flutter_rust_bridge](https://cjycode.com/flutter_rust_bridge/) 2.12.0. The Rust side is the `rust_lib_arbiter` crate at `useragent/rust/`; everything exposed to Dart is declared in `useragent/rust/src/api/` and lands in `useragent/lib/src/rust/` (see `useragent/flutter_rust_bridge.yaml`). Dart UI code is organised as `lib/features/`, `lib/screens/`, `lib/widgets/`, `lib/providers/`, `lib/theme/`, with routing in `lib/router.dart` (`router.gr.dart` is generated).
|
||||||
|
|
||||||
Communication between Dart and Rust uses typed **signals** defined in `operator/native/hub/src/signals/`. After modifying signal structs, regenerate Dart bindings:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
cd operator && rinf gen
|
|
||||||
```
|
|
||||||
|
|
||||||
### Common Commands
|
### Common Commands
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
cd operator
|
cd useragent
|
||||||
|
|
||||||
# Run the app (macOS or Windows)
|
# Run the app
|
||||||
flutter run
|
flutter run
|
||||||
|
|
||||||
# Regenerate Rust↔Dart signal bindings
|
# Regenerate Rust↔Dart bindings after editing rust/src/api/
|
||||||
rinf gen
|
mise run codegen # flutter_rust_bridge_codegen generate
|
||||||
|
|
||||||
# Analyze Dart code
|
# Analyze Dart code (also run in CI)
|
||||||
flutter analyze
|
flutter analyze
|
||||||
```
|
```
|
||||||
|
|
||||||
The Rinf Rust entry point is `operator/native/hub/src/lib.rs`. It spawns actors defined in `operator/native/hub/src/actors/` which handle Dart↔server communication via signals.
|
Note: `app/` contains only stale generated Flutter artifacts and is not the application source.
|
||||||
|
|||||||
@@ -2,8 +2,6 @@ syntax = "proto3";
|
|||||||
|
|
||||||
package arbiter.operator.governance;
|
package arbiter.operator.governance;
|
||||||
|
|
||||||
import "google/protobuf/empty.proto";
|
|
||||||
|
|
||||||
message Request {
|
message Request {
|
||||||
oneof payload {
|
oneof payload {
|
||||||
CreateProposalRequest create = 1;
|
CreateProposalRequest create = 1;
|
||||||
@@ -15,13 +13,14 @@ message Request {
|
|||||||
message CreateProposalRequest {
|
message CreateProposalRequest {
|
||||||
oneof kind {
|
oneof kind {
|
||||||
ApproveSdkClientPayload approve_sdk_client = 1;
|
ApproveSdkClientPayload approve_sdk_client = 1;
|
||||||
GrantWalletAccessPayload grant_wallet_access = 2;
|
GrantWalletAccessPayload grant_wallet_access = 3;
|
||||||
ReplaceOperatorPayload replace_operator = 3;
|
ApproveServerUpdatePayload approve_server_update = 4;
|
||||||
google.protobuf.Empty trigger_rekey = 4;
|
ReplaceOperatorPayload replace_operator = 5;
|
||||||
ApprovePersistentGrantPayload approve_persistent_grant = 5;
|
UpdateShamirParametersPayload update_shamir_parameters = 6;
|
||||||
ApproveOneOffTransactionPayload approve_one_off_transaction = 6;
|
ApprovePersistentGrantPayload approve_persistent_grant = 7;
|
||||||
|
ApproveOneOffTransactionPayload approve_one_off_transaction = 8;
|
||||||
}
|
}
|
||||||
optional uint32 ttl_secs = 7;
|
optional uint32 ttl_secs = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ReplaceOperatorPayload {
|
message ReplaceOperatorPayload {
|
||||||
@@ -29,6 +28,12 @@ message ReplaceOperatorPayload {
|
|||||||
bytes new_pubkey = 2;
|
bytes new_pubkey = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message UpdateShamirParametersPayload {
|
||||||
|
uint32 new_n = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ApproveServerUpdatePayload {}
|
||||||
|
|
||||||
message ApproveSdkClientPayload {
|
message ApproveSdkClientPayload {
|
||||||
int32 client_id = 1;
|
int32 client_id = 1;
|
||||||
}
|
}
|
||||||
|
|||||||
328
server/Cargo.lock
generated
328
server/Cargo.lock
generated
@@ -24,7 +24,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crypto-common 0.1.7",
|
"crypto-common 0.1.7",
|
||||||
"generic-array 0.14.7",
|
"generic-array",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -674,12 +674,6 @@ dependencies = [
|
|||||||
"libc",
|
"libc",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "anstyle"
|
|
||||||
version = "1.0.14"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "anyhow"
|
name = "anyhow"
|
||||||
version = "1.0.102"
|
version = "1.0.102"
|
||||||
@@ -713,7 +707,6 @@ dependencies = [
|
|||||||
"memsafe",
|
"memsafe",
|
||||||
"ml-dsa",
|
"ml-dsa",
|
||||||
"rand 0.10.1",
|
"rand 0.10.1",
|
||||||
"strum 0.28.0",
|
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"x-wing",
|
"x-wing",
|
||||||
]
|
]
|
||||||
@@ -773,14 +766,12 @@ dependencies = [
|
|||||||
"kameo",
|
"kameo",
|
||||||
"kameo_actors",
|
"kameo_actors",
|
||||||
"ml-dsa",
|
"ml-dsa",
|
||||||
"mockall",
|
|
||||||
"mutants",
|
"mutants",
|
||||||
"pem",
|
"pem",
|
||||||
"proptest",
|
"proptest",
|
||||||
"prost",
|
|
||||||
"prost-types",
|
"prost-types",
|
||||||
"rand 0.10.1",
|
"rand 0.10.1",
|
||||||
"rand_core 0.6.4",
|
"rand_core 0.10.1",
|
||||||
"rcgen",
|
"rcgen",
|
||||||
"restructed",
|
"restructed",
|
||||||
"rstest",
|
"rstest",
|
||||||
@@ -796,7 +787,6 @@ dependencies = [
|
|||||||
"tonic",
|
"tonic",
|
||||||
"tracing",
|
"tracing",
|
||||||
"tracing-subscriber",
|
"tracing-subscriber",
|
||||||
"vsss-rs",
|
|
||||||
"x25519-dalek 2.0.1",
|
"x25519-dalek 2.0.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -1294,7 +1284,7 @@ version = "0.10.4"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"generic-array 0.14.7",
|
"generic-array",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -1623,22 +1613,8 @@ version = "0.5.5"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"generic-array 0.14.7",
|
"generic-array",
|
||||||
"rand_core 0.6.4",
|
"rand_core 0.6.4",
|
||||||
"serdect 0.2.0",
|
|
||||||
"subtle",
|
|
||||||
"zeroize",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "crypto-bigint"
|
|
||||||
version = "0.6.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "96272c2ff28b807e09250b180ad1fb7889a3258f7455759b5c3c58b719467130"
|
|
||||||
dependencies = [
|
|
||||||
"num-traits",
|
|
||||||
"rand_core 0.6.4",
|
|
||||||
"serdect 0.3.0",
|
|
||||||
"subtle",
|
"subtle",
|
||||||
"zeroize",
|
"zeroize",
|
||||||
]
|
]
|
||||||
@@ -1649,7 +1625,7 @@ version = "0.1.7"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"generic-array 0.14.7",
|
"generic-array",
|
||||||
"rand_core 0.6.4",
|
"rand_core 0.6.4",
|
||||||
"typenum",
|
"typenum",
|
||||||
]
|
]
|
||||||
@@ -1952,7 +1928,7 @@ version = "0.9.0"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
|
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"generic-array 0.14.7",
|
"generic-array",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -1990,12 +1966,6 @@ dependencies = [
|
|||||||
"syn 2.0.117",
|
"syn 2.0.117",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "downcast"
|
|
||||||
version = "0.11.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "downcast-rs"
|
name = "downcast-rs"
|
||||||
version = "2.0.2"
|
version = "2.0.2"
|
||||||
@@ -2038,7 +2008,7 @@ dependencies = [
|
|||||||
"digest 0.10.7",
|
"digest 0.10.7",
|
||||||
"elliptic-curve",
|
"elliptic-curve",
|
||||||
"rfc6979",
|
"rfc6979",
|
||||||
"serdect 0.2.0",
|
"serdect",
|
||||||
"signature 2.2.0",
|
"signature 2.2.0",
|
||||||
"spki 0.7.3",
|
"spki 0.7.3",
|
||||||
]
|
]
|
||||||
@@ -2071,32 +2041,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base16ct",
|
"base16ct",
|
||||||
"crypto-bigint 0.5.5",
|
"crypto-bigint",
|
||||||
"digest 0.10.7",
|
"digest 0.10.7",
|
||||||
"ff",
|
"ff",
|
||||||
"generic-array 0.14.7",
|
"generic-array",
|
||||||
"group",
|
"group",
|
||||||
"hkdf",
|
|
||||||
"pkcs8 0.10.2",
|
"pkcs8 0.10.2",
|
||||||
"rand_core 0.6.4",
|
"rand_core 0.6.4",
|
||||||
"sec1",
|
"sec1",
|
||||||
"serdect 0.2.0",
|
"serdect",
|
||||||
"subtle",
|
"subtle",
|
||||||
"tap",
|
|
||||||
"zeroize",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "elliptic-curve-tools"
|
|
||||||
version = "0.2.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "1de2b6fae800f08032a6ea32995b52925b1d451bff9d445c8ab2932323277faf"
|
|
||||||
dependencies = [
|
|
||||||
"elliptic-curve",
|
|
||||||
"heapless",
|
|
||||||
"hex",
|
|
||||||
"multiexp",
|
|
||||||
"serde",
|
|
||||||
"zeroize",
|
"zeroize",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -2170,7 +2124,6 @@ version = "0.13.1"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitvec",
|
|
||||||
"rand_core 0.6.4",
|
"rand_core 0.6.4",
|
||||||
"subtle",
|
"subtle",
|
||||||
]
|
]
|
||||||
@@ -2248,15 +2201,6 @@ dependencies = [
|
|||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "fragile"
|
|
||||||
version = "2.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "8878864ba14bb86e818a412bfd6f18f9eabd4ec0f008a28e8f7eb61db532fcf9"
|
|
||||||
dependencies = [
|
|
||||||
"futures-core",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "fs_extra"
|
name = "fs_extra"
|
||||||
version = "1.3.0"
|
version = "1.3.0"
|
||||||
@@ -2380,17 +2324,6 @@ dependencies = [
|
|||||||
"zeroize",
|
"zeroize",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "generic-array"
|
|
||||||
version = "1.4.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "dab9e9188e97a93276e1fe7b56401b851e2b45a46d045ca658100c1303ada649"
|
|
||||||
dependencies = [
|
|
||||||
"rustversion",
|
|
||||||
"serde_core",
|
|
||||||
"typenum",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "getrandom"
|
name = "getrandom"
|
||||||
version = "0.2.17"
|
version = "0.2.17"
|
||||||
@@ -2474,15 +2407,6 @@ dependencies = [
|
|||||||
"tracing",
|
"tracing",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "hash32"
|
|
||||||
version = "0.3.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
||||||
dependencies = [
|
|
||||||
"byteorder",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hashbrown"
|
name = "hashbrown"
|
||||||
version = "0.12.3"
|
version = "0.12.3"
|
||||||
@@ -2523,16 +2447,6 @@ version = "0.17.0"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "heapless"
|
|
||||||
version = "0.8.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
||||||
dependencies = [
|
|
||||||
"hash32",
|
|
||||||
"stable_deref_trait",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "heck"
|
name = "heck"
|
||||||
version = "0.5.0"
|
version = "0.5.0"
|
||||||
@@ -2560,15 +2474,6 @@ dependencies = [
|
|||||||
"arrayvec",
|
"arrayvec",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "hkdf"
|
|
||||||
version = "0.12.4"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
||||||
dependencies = [
|
|
||||||
"hmac 0.12.1",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hmac"
|
name = "hmac"
|
||||||
version = "0.12.1"
|
version = "0.12.1"
|
||||||
@@ -2639,7 +2544,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "08d46837a0ed51fe95bd3b05de33cd64a1ee88fc797477ca48446872504507c5"
|
checksum = "08d46837a0ed51fe95bd3b05de33cd64a1ee88fc797477ca48446872504507c5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ctutils",
|
"ctutils",
|
||||||
"serde",
|
|
||||||
"typenum",
|
"typenum",
|
||||||
"zeroize",
|
"zeroize",
|
||||||
]
|
]
|
||||||
@@ -2905,7 +2809,7 @@ version = "0.1.4"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"generic-array 0.14.7",
|
"generic-array",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3044,15 +2948,15 @@ dependencies = [
|
|||||||
"ecdsa",
|
"ecdsa",
|
||||||
"elliptic-curve",
|
"elliptic-curve",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"serdect 0.2.0",
|
"serdect",
|
||||||
"sha2 0.10.9",
|
"sha2 0.10.9",
|
||||||
"signature 2.2.0",
|
"signature 2.2.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kameo"
|
name = "kameo"
|
||||||
version = "0.22.2"
|
version = "0.20.0"
|
||||||
source = "git+https://github.com/hdbg/kameo.git?rev=17af90e3#17af90e3ae95fc6f89fa31a2f1b9506ac127f0b7"
|
source = "git+https://github.com/hdbg/kameo.git?rev=805b417#805b41783fe90b54827ecad142b422c7a9b69b9a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"downcast-rs",
|
"downcast-rs",
|
||||||
"dyn-clone",
|
"dyn-clone",
|
||||||
@@ -3065,8 +2969,8 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kameo_actors"
|
name = "kameo_actors"
|
||||||
version = "0.8.1"
|
version = "0.5.0"
|
||||||
source = "git+https://github.com/hdbg/kameo.git?rev=17af90e3#17af90e3ae95fc6f89fa31a2f1b9506ac127f0b7"
|
source = "git+https://github.com/hdbg/kameo.git?rev=805b417#805b41783fe90b54827ecad142b422c7a9b69b9a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures",
|
"futures",
|
||||||
"glob",
|
"glob",
|
||||||
@@ -3077,13 +2981,14 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kameo_macros"
|
name = "kameo_macros"
|
||||||
version = "0.21.1"
|
version = "0.20.0"
|
||||||
source = "git+https://github.com/hdbg/kameo.git?rev=17af90e3#17af90e3ae95fc6f89fa31a2f1b9506ac127f0b7"
|
source = "git+https://github.com/hdbg/kameo.git?rev=805b417#805b41783fe90b54827ecad142b422c7a9b69b9a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"darling 0.23.0",
|
||||||
"heck",
|
"heck",
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
"syn 3.0.4",
|
"syn 2.0.117",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3374,32 +3279,6 @@ dependencies = [
|
|||||||
"zeroize",
|
"zeroize",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "mockall"
|
|
||||||
version = "0.15.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "1a6ceddfe3ce334925e96bf420fdb2dcee5bed6c632a168ece622676dadeaf8a"
|
|
||||||
dependencies = [
|
|
||||||
"cfg-if",
|
|
||||||
"downcast",
|
|
||||||
"fragile",
|
|
||||||
"mockall_derive",
|
|
||||||
"predicates",
|
|
||||||
"predicates-tree",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "mockall_derive"
|
|
||||||
version = "0.15.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "9cfe16fbe8a314aeec0b861ac24e60b1e123e97634bab045475b9d6a18416fd8"
|
|
||||||
dependencies = [
|
|
||||||
"cfg-if",
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"syn 2.0.117",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "module-lattice"
|
name = "module-lattice"
|
||||||
version = "0.2.2"
|
version = "0.2.2"
|
||||||
@@ -3412,20 +3291,6 @@ dependencies = [
|
|||||||
"zeroize",
|
"zeroize",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "multiexp"
|
|
||||||
version = "0.4.2"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "7ec2ce93a6f06ac6cae04c1da3f2a6a24fcfc1f0eb0b4e0f3d302f0df45326cb"
|
|
||||||
dependencies = [
|
|
||||||
"ff",
|
|
||||||
"group",
|
|
||||||
"rand_core 0.6.4",
|
|
||||||
"rustversion",
|
|
||||||
"std-shims",
|
|
||||||
"zeroize",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "multimap"
|
name = "multimap"
|
||||||
version = "0.10.1"
|
version = "0.10.1"
|
||||||
@@ -3457,20 +3322,6 @@ dependencies = [
|
|||||||
"windows-sys 0.61.2",
|
"windows-sys 0.61.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "num"
|
|
||||||
version = "0.4.3"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
||||||
dependencies = [
|
|
||||||
"num-bigint",
|
|
||||||
"num-complex",
|
|
||||||
"num-integer",
|
|
||||||
"num-iter",
|
|
||||||
"num-rational",
|
|
||||||
"num-traits",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "num-bigint"
|
name = "num-bigint"
|
||||||
version = "0.4.6"
|
version = "0.4.6"
|
||||||
@@ -3479,19 +3330,6 @@ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"num-integer",
|
"num-integer",
|
||||||
"num-traits",
|
"num-traits",
|
||||||
"rand 0.8.6",
|
|
||||||
"serde",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "num-complex"
|
|
||||||
version = "0.4.6"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
||||||
dependencies = [
|
|
||||||
"num-traits",
|
|
||||||
"rand 0.8.6",
|
|
||||||
"serde",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3509,29 +3347,6 @@ dependencies = [
|
|||||||
"num-traits",
|
"num-traits",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "num-iter"
|
|
||||||
version = "0.1.45"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
|
|
||||||
dependencies = [
|
|
||||||
"autocfg",
|
|
||||||
"num-integer",
|
|
||||||
"num-traits",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "num-rational"
|
|
||||||
version = "0.4.2"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
||||||
dependencies = [
|
|
||||||
"num-bigint",
|
|
||||||
"num-integer",
|
|
||||||
"num-traits",
|
|
||||||
"serde",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "num-traits"
|
name = "num-traits"
|
||||||
version = "0.2.19"
|
version = "0.2.19"
|
||||||
@@ -3833,32 +3648,6 @@ dependencies = [
|
|||||||
"zerocopy",
|
"zerocopy",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "predicates"
|
|
||||||
version = "3.1.4"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
||||||
dependencies = [
|
|
||||||
"anstyle",
|
|
||||||
"predicates-core",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "predicates-core"
|
|
||||||
version = "1.0.10"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "predicates-tree"
|
|
||||||
version = "1.0.13"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
|
|
||||||
dependencies = [
|
|
||||||
"predicates-core",
|
|
||||||
"termtree",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "prettyplease"
|
name = "prettyplease"
|
||||||
version = "0.2.37"
|
version = "0.2.37"
|
||||||
@@ -4666,9 +4455,9 @@ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"base16ct",
|
"base16ct",
|
||||||
"der 0.7.10",
|
"der 0.7.10",
|
||||||
"generic-array 0.14.7",
|
"generic-array",
|
||||||
"pkcs8 0.10.2",
|
"pkcs8 0.10.2",
|
||||||
"serdect 0.2.0",
|
"serdect",
|
||||||
"subtle",
|
"subtle",
|
||||||
"zeroize",
|
"zeroize",
|
||||||
]
|
]
|
||||||
@@ -4834,16 +4623,6 @@ dependencies = [
|
|||||||
"serde",
|
"serde",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "serdect"
|
|
||||||
version = "0.3.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "f42f67da2385b51a5f9652db9c93d78aeaf7610bf5ec366080b6de810604af53"
|
|
||||||
dependencies = [
|
|
||||||
"base16ct",
|
|
||||||
"serde",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sha2"
|
name = "sha2"
|
||||||
version = "0.10.9"
|
version = "0.10.9"
|
||||||
@@ -5009,12 +4788,6 @@ dependencies = [
|
|||||||
"windows-sys 0.61.2",
|
"windows-sys 0.61.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "spin"
|
|
||||||
version = "0.10.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spki"
|
name = "spki"
|
||||||
version = "0.7.3"
|
version = "0.7.3"
|
||||||
@@ -5059,17 +4832,6 @@ version = "1.1.0"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "std-shims"
|
|
||||||
version = "0.1.5"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "227c4f8561598188d0df96dbe749824576174bba278b5b6bb2eacff1066067d0"
|
|
||||||
dependencies = [
|
|
||||||
"hashbrown 0.16.1",
|
|
||||||
"rustversion",
|
|
||||||
"spin",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "string_morph"
|
name = "string_morph"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
@@ -5173,17 +4935,6 @@ dependencies = [
|
|||||||
"unicode-ident",
|
"unicode-ident",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "syn"
|
|
||||||
version = "3.0.4"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"unicode-ident",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "syn-solidity"
|
name = "syn-solidity"
|
||||||
version = "1.5.7"
|
version = "1.5.7"
|
||||||
@@ -5245,12 +4996,6 @@ dependencies = [
|
|||||||
"windows-sys 0.61.2",
|
"windows-sys 0.61.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "termtree"
|
|
||||||
version = "0.5.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "test-log"
|
name = "test-log"
|
||||||
version = "0.2.20"
|
version = "0.2.20"
|
||||||
@@ -5830,27 +5575,6 @@ version = "0.9.5"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "vsss-rs"
|
|
||||||
version = "5.4.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "6ec751bdcc8bda099e269b24cc6b4ad14f9ce8b0490c1599174070e792ecd70c"
|
|
||||||
dependencies = [
|
|
||||||
"crypto-bigint 0.5.5",
|
|
||||||
"crypto-bigint 0.6.1",
|
|
||||||
"elliptic-curve",
|
|
||||||
"elliptic-curve-tools",
|
|
||||||
"generic-array 1.4.1",
|
|
||||||
"hex",
|
|
||||||
"hybrid-array",
|
|
||||||
"num",
|
|
||||||
"rand_core 0.6.4",
|
|
||||||
"serde",
|
|
||||||
"sha3 0.10.9",
|
|
||||||
"subtle",
|
|
||||||
"zeroize",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wait-timeout"
|
name = "wait-timeout"
|
||||||
version = "0.2.1"
|
version = "0.2.1"
|
||||||
@@ -6538,18 +6262,18 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zeroize"
|
name = "zeroize"
|
||||||
version = "1.8.2"
|
version = "1.9.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"zeroize_derive",
|
"zeroize_derive",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zeroize_derive"
|
name = "zeroize_derive"
|
||||||
version = "1.4.3"
|
version = "1.5.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
|||||||
@@ -12,8 +12,8 @@ base64 = "0.22.1"
|
|||||||
chrono = { version = "0.4.44", features = ["serde"] }
|
chrono = { version = "0.4.44", features = ["serde"] }
|
||||||
futures = "0.3.32"
|
futures = "0.3.32"
|
||||||
k256 = { version = "0.13.4", features = ["ecdsa", "pkcs8"] }
|
k256 = { version = "0.13.4", features = ["ecdsa", "pkcs8"] }
|
||||||
kameo = {git = "https://github.com/hdbg/kameo.git", rev = "17af90e3"}
|
kameo = {git = "https://github.com/hdbg/kameo.git", rev = "805b417"}
|
||||||
kameo_actors = {git = "https://github.com/hdbg/kameo.git", rev = "17af90e3"}
|
kameo_actors = {git = "https://github.com/hdbg/kameo.git", rev = "805b417"}
|
||||||
hmac = "0.13.0"
|
hmac = "0.13.0"
|
||||||
miette = { version = "7.6.0", features = ["fancy", "serde"] }
|
miette = { version = "7.6.0", features = ["fancy", "serde"] }
|
||||||
ml-dsa = { version = "0.1.0-rc.9", features = ["zeroize"] }
|
ml-dsa = { version = "0.1.0-rc.9", features = ["zeroize"] }
|
||||||
@@ -21,13 +21,13 @@ mutants = "0.0.4"
|
|||||||
prost = "0.14.3"
|
prost = "0.14.3"
|
||||||
prost-types = { version = "0.14.3", features = ["chrono"] }
|
prost-types = { version = "0.14.3", features = ["chrono"] }
|
||||||
rand = "0.10.1"
|
rand = "0.10.1"
|
||||||
|
rand_core = "0.10.1"
|
||||||
rcgen = { version = "0.14.7", features = [ "aws_lc_rs", "pem", "x509-parser", "zeroize" ], default-features = false }
|
rcgen = { version = "0.14.7", features = [ "aws_lc_rs", "pem", "x509-parser", "zeroize" ], default-features = false }
|
||||||
rstest = "0.26.1"
|
rstest = "0.26.1"
|
||||||
rustls = { version = "0.23.40", features = ["aws-lc-rs", "logging", "prefer-post-quantum", "std"], default-features = false }
|
rustls = { version = "0.23.40", features = ["aws-lc-rs", "logging", "prefer-post-quantum", "std"], default-features = false }
|
||||||
rustls-pki-types = "1.14.1"
|
rustls-pki-types = "1.14.1"
|
||||||
sha2 = "0.11"
|
sha2 = "0.11"
|
||||||
smlang = "0.8.0"
|
smlang = "0.8.0"
|
||||||
strum = { version = "0.28.0", features = ["derive"] }
|
|
||||||
thiserror = "2.0.18"
|
thiserror = "2.0.18"
|
||||||
tokio = { version = "1.52.1", features = ["full"] }
|
tokio = { version = "1.52.1", features = ["full"] }
|
||||||
tokio-stream = { version = "0.1.18", features = ["full"] }
|
tokio-stream = { version = "0.1.18", features = ["full"] }
|
||||||
@@ -77,6 +77,7 @@ needless_pass_by_ref_mut = "allow"
|
|||||||
pub_underscore_fields = "allow"
|
pub_underscore_fields = "allow"
|
||||||
redundant_pub_crate = "allow"
|
redundant_pub_crate = "allow"
|
||||||
uninhabited_references = "allow" # safe with unsafe_code = "forbid" and standard uninhabited pattern (match *self {})
|
uninhabited_references = "allow" # safe with unsafe_code = "forbid" and standard uninhabited pattern (match *self {})
|
||||||
|
too-many-lines = "allow" # this is a very common pattern in server code, and it's not always possible to break it down into smaller modules without hurting readability
|
||||||
|
|
||||||
# restriction lints
|
# restriction lints
|
||||||
alloc_instead_of_core = "warn"
|
alloc_instead_of_core = "warn"
|
||||||
@@ -107,6 +108,7 @@ indexing_slicing = "warn"
|
|||||||
infinite_loop = "warn"
|
infinite_loop = "warn"
|
||||||
inline_asm_x86_att_syntax = "warn"
|
inline_asm_x86_att_syntax = "warn"
|
||||||
inline_asm_x86_intel_syntax = "warn"
|
inline_asm_x86_intel_syntax = "warn"
|
||||||
|
integer_division = "warn"
|
||||||
large_include_file = "warn"
|
large_include_file = "warn"
|
||||||
lossy_float_literal = "warn"
|
lossy_float_literal = "warn"
|
||||||
map_with_unused_argument_over_ranges = "warn"
|
map_with_unused_argument_over_ranges = "warn"
|
||||||
@@ -168,4 +170,3 @@ nursery = { level = "warn", priority = -1 }
|
|||||||
pedantic = { level = "warn", priority = -1 }
|
pedantic = { level = "warn", priority = -1 }
|
||||||
|
|
||||||
type_repetition_in_bounds = "allow" # sometimes, it's better for readability this way
|
type_repetition_in_bounds = "allow" # sometimes, it's better for readability this way
|
||||||
unused_async_trait_impl = "allow"
|
|
||||||
|
|||||||
@@ -26,5 +26,3 @@ trait-assoc-item-kinds-order = [
|
|||||||
"type",
|
"type",
|
||||||
"fn",
|
"fn",
|
||||||
] # community tested standard
|
] # community tested standard
|
||||||
|
|
||||||
too-many-lines-threshold = 150
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ use crate::{
|
|||||||
storage::StorageError,
|
storage::StorageError,
|
||||||
transport::{ClientTransport, next_request_id},
|
transport::{ClientTransport, next_request_id},
|
||||||
};
|
};
|
||||||
use arbiter_crypto::authn::{self, SigningContext, SigningKey};
|
use arbiter_crypto::authn::{self, CLIENT_CONTEXT, SigningKey};
|
||||||
use arbiter_proto::{
|
use arbiter_proto::{
|
||||||
ClientMetadata,
|
ClientMetadata,
|
||||||
proto::{
|
proto::{
|
||||||
@@ -100,7 +100,7 @@ async fn send_auth_challenge_solution(
|
|||||||
key: &SigningKey,
|
key: &SigningKey,
|
||||||
challenge: AuthChallenge,
|
challenge: AuthChallenge,
|
||||||
) -> Result<(), AuthError> {
|
) -> Result<(), AuthError> {
|
||||||
let timestamp = DateTime::from_timestamp_nanos(challenge.timestamp_nanos as i64);
|
let timestamp = DateTime::from_timestamp_nanos(challenge.timestamp_nanos.cast_signed());
|
||||||
let challenge = authn::AuthChallenge {
|
let challenge = authn::AuthChallenge {
|
||||||
nonce: *challenge
|
nonce: *challenge
|
||||||
.random
|
.random
|
||||||
@@ -110,7 +110,7 @@ async fn send_auth_challenge_solution(
|
|||||||
};
|
};
|
||||||
let challenge_payload: Vec<u8> = challenge.format();
|
let challenge_payload: Vec<u8> = challenge.format();
|
||||||
let signature = key
|
let signature = key
|
||||||
.sign_message(&challenge_payload, SigningContext::Client)
|
.sign_message(&challenge_payload, CLIENT_CONTEXT)
|
||||||
.map_err(|_| AuthError::UnexpectedAuthResponse)?
|
.map_err(|_| AuthError::UnexpectedAuthResponse)?
|
||||||
.to_bytes();
|
.to_bytes();
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ edition = "2024"
|
|||||||
ml-dsa = {workspace = true, optional = true }
|
ml-dsa = {workspace = true, optional = true }
|
||||||
rand = {workspace = true, optional = true}
|
rand = {workspace = true, optional = true}
|
||||||
memsafe = {version = "0.4.0", optional = true}
|
memsafe = {version = "0.4.0", optional = true}
|
||||||
strum = { workspace = true, optional = true }
|
|
||||||
hmac.workspace = true
|
hmac.workspace = true
|
||||||
alloy.workspace = true
|
alloy.workspace = true
|
||||||
x-wing = { version = "0.1.0-rc.0", features = ["zeroize"] }
|
x-wing = { version = "0.1.0-rc.0", features = ["zeroize"] }
|
||||||
@@ -19,7 +18,7 @@ workspace = true
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["authn", "safecell"]
|
default = ["authn", "safecell"]
|
||||||
authn = ["dep:ml-dsa", "dep:rand", "dep:strum"]
|
authn = ["dep:ml-dsa", "dep:rand"]
|
||||||
safecell = ["dep:memsafe"]
|
safecell = ["dep:memsafe"]
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|||||||
@@ -5,25 +5,9 @@ use ml_dsa::{
|
|||||||
SigningKey as MlDsaSigningKey, VerifyingKey as MlDsaVerifyingKey, signature::Keypair as _,
|
SigningKey as MlDsaSigningKey, VerifyingKey as MlDsaVerifyingKey, signature::Keypair as _,
|
||||||
};
|
};
|
||||||
use rand::RngExt;
|
use rand::RngExt;
|
||||||
use strum::IntoStaticStr;
|
|
||||||
|
|
||||||
/// Domain separation tag mixed into every ML-DSA signature.
|
pub static CLIENT_CONTEXT: &[u8] = b"arbiter_client";
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, IntoStaticStr)]
|
pub static OPERATOR_CONTEXT: &[u8] = b"arbiter_operator";
|
||||||
pub enum SigningContext {
|
|
||||||
#[strum(serialize = "arbiter_client")]
|
|
||||||
Client,
|
|
||||||
#[strum(serialize = "arbiter_operator")]
|
|
||||||
Operator,
|
|
||||||
#[strum(serialize = "arbiter_governance_vote")]
|
|
||||||
GovernanceVote,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl SigningContext {
|
|
||||||
#[must_use]
|
|
||||||
pub fn as_bytes(self) -> &'static [u8] {
|
|
||||||
<&'static str>::from(self).as_bytes()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const NONCE_SIZE: usize = 32;
|
const NONCE_SIZE: usize = 32;
|
||||||
|
|
||||||
@@ -101,26 +85,10 @@ impl PublicKey {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub fn verify(
|
pub fn verify(&self, challenge: &AuthChallenge, context: &[u8], signature: &Signature) -> bool {
|
||||||
&self,
|
|
||||||
challenge: &AuthChallenge,
|
|
||||||
context: SigningContext,
|
|
||||||
signature: &Signature,
|
|
||||||
) -> bool {
|
|
||||||
let challenge = challenge.format();
|
let challenge = challenge.format();
|
||||||
self.0
|
self.0
|
||||||
.verify_with_context(&challenge, context.as_bytes(), &signature.0)
|
.verify_with_context(&challenge, context, &signature.0)
|
||||||
}
|
|
||||||
|
|
||||||
#[must_use]
|
|
||||||
pub fn verify_message(
|
|
||||||
&self,
|
|
||||||
message: &[u8],
|
|
||||||
context: SigningContext,
|
|
||||||
signature: &Signature,
|
|
||||||
) -> bool {
|
|
||||||
self.0
|
|
||||||
.verify_with_context(message, context.as_bytes(), &signature.0)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -147,21 +115,17 @@ impl SigningKey {
|
|||||||
self.0.verifying_key().into()
|
self.0.verifying_key().into()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn sign_message(
|
pub fn sign_message(&self, message: &[u8], context: &[u8]) -> Result<Signature, Error> {
|
||||||
&self,
|
|
||||||
message: &[u8],
|
|
||||||
context: SigningContext,
|
|
||||||
) -> Result<Signature, Error> {
|
|
||||||
self.0
|
self.0
|
||||||
.signing_key()
|
.signing_key()
|
||||||
.sign_deterministic(message, context.as_bytes())
|
.sign_deterministic(message, context)
|
||||||
.map(Into::into)
|
.map(Into::into)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn sign_challenge(
|
pub fn sign_challenge(
|
||||||
&self,
|
&self,
|
||||||
challenge: &AuthChallenge,
|
challenge: &AuthChallenge,
|
||||||
context: SigningContext,
|
context: &[u8],
|
||||||
) -> Result<Signature, Error> {
|
) -> Result<Signature, Error> {
|
||||||
let challenge = challenge.format();
|
let challenge = challenge.format();
|
||||||
|
|
||||||
@@ -228,7 +192,7 @@ mod tests {
|
|||||||
|
|
||||||
use crate::authn::AuthChallenge;
|
use crate::authn::AuthChallenge;
|
||||||
|
|
||||||
use super::{PublicKey, Signature, SigningContext, SigningKey};
|
use super::{CLIENT_CONTEXT, PublicKey, Signature, SigningKey, OPERATOR_CONTEXT};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn public_key_round_trip_decodes() {
|
fn public_key_round_trip_decodes() {
|
||||||
@@ -244,7 +208,7 @@ mod tests {
|
|||||||
fn signature_round_trip_decodes() {
|
fn signature_round_trip_decodes() {
|
||||||
let key = SigningKey::generate();
|
let key = SigningKey::generate();
|
||||||
let signature = key
|
let signature = key
|
||||||
.sign_message(b"challenge", SigningContext::Client)
|
.sign_message(b"challenge", CLIENT_CONTEXT)
|
||||||
.expect("signature should be created");
|
.expect("signature should be created");
|
||||||
|
|
||||||
let decoded =
|
let decoded =
|
||||||
@@ -259,11 +223,11 @@ mod tests {
|
|||||||
let public_key = key.public_key();
|
let public_key = key.public_key();
|
||||||
let challenge = AuthChallenge::generate(&mut rand::rng());
|
let challenge = AuthChallenge::generate(&mut rand::rng());
|
||||||
let signature = key
|
let signature = key
|
||||||
.sign_challenge(&challenge, SigningContext::Client)
|
.sign_challenge(&challenge, CLIENT_CONTEXT)
|
||||||
.expect("signature should be created");
|
.expect("signature should be created");
|
||||||
|
|
||||||
assert!(public_key.verify(&challenge, SigningContext::Client, &signature));
|
assert!(public_key.verify(&challenge, CLIENT_CONTEXT, &signature));
|
||||||
assert!(!public_key.verify(&challenge, SigningContext::Operator, &signature));
|
assert!(!public_key.verify(&challenge, OPERATOR_CONTEXT, &signature));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
@@ -276,13 +240,13 @@ mod tests {
|
|||||||
let challenge = AuthChallenge::generate(&mut rand::rng());
|
let challenge = AuthChallenge::generate(&mut rand::rng());
|
||||||
|
|
||||||
let signature = restored
|
let signature = restored
|
||||||
.sign_challenge(&challenge, SigningContext::Client)
|
.sign_challenge(&challenge, CLIENT_CONTEXT)
|
||||||
.expect("signature should be created");
|
.expect("signature should be created");
|
||||||
|
|
||||||
assert!(
|
assert!(
|
||||||
restored
|
restored
|
||||||
.public_key()
|
.public_key()
|
||||||
.verify(&challenge, SigningContext::Client, &signature)
|
.verify(&challenge, CLIENT_CONTEXT, &signature)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ pub trait SafeCellHandle<T> {
|
|||||||
fn read(&mut self) -> Self::CellRead<'_>;
|
fn read(&mut self) -> Self::CellRead<'_>;
|
||||||
fn write(&mut self) -> Self::CellWrite<'_>;
|
fn write(&mut self) -> Self::CellWrite<'_>;
|
||||||
|
|
||||||
fn new_inline_default<F>(f: F) -> Self
|
fn new_inline<F>(f: F) -> Self
|
||||||
where
|
where
|
||||||
Self: Sized,
|
Self: Sized,
|
||||||
T: Default,
|
T: Default,
|
||||||
@@ -36,14 +36,6 @@ pub trait SafeCellHandle<T> {
|
|||||||
cell
|
cell
|
||||||
}
|
}
|
||||||
|
|
||||||
fn new_inline<F>(f: Box<F>) -> Self
|
|
||||||
where
|
|
||||||
Self: Sized,
|
|
||||||
F: for<'a> FnOnce() -> T,
|
|
||||||
{
|
|
||||||
Self::new(f())
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
fn read_inline<F, R>(&mut self, f: F) -> R
|
fn read_inline<F, R>(&mut self, f: F) -> R
|
||||||
where
|
where
|
||||||
|
|||||||
@@ -23,10 +23,6 @@ pub mod proto {
|
|||||||
tonic::include_proto!("arbiter.operator.evm");
|
tonic::include_proto!("arbiter.operator.evm");
|
||||||
}
|
}
|
||||||
|
|
||||||
pub mod governance {
|
|
||||||
tonic::include_proto!("arbiter.operator.governance");
|
|
||||||
}
|
|
||||||
|
|
||||||
pub mod sdk_client {
|
pub mod sdk_client {
|
||||||
tonic::include_proto!("arbiter.operator.sdk_client");
|
tonic::include_proto!("arbiter.operator.sdk_client");
|
||||||
}
|
}
|
||||||
@@ -38,10 +34,6 @@ pub mod proto {
|
|||||||
tonic::include_proto!("arbiter.operator.vault.bootstrap");
|
tonic::include_proto!("arbiter.operator.vault.bootstrap");
|
||||||
}
|
}
|
||||||
|
|
||||||
pub mod rekey {
|
|
||||||
tonic::include_proto!("arbiter.operator.vault.rekey");
|
|
||||||
}
|
|
||||||
|
|
||||||
pub mod unseal {
|
pub mod unseal {
|
||||||
tonic::include_proto!("arbiter.operator.vault.unseal");
|
tonic::include_proto!("arbiter.operator.vault.unseal");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,18 +31,18 @@ diesel_migrations = { version = "2.3.2", features = ["sqlite"] }
|
|||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
tokio-stream.workspace = true
|
tokio-stream.workspace = true
|
||||||
rand.workspace = true
|
rand.workspace = true
|
||||||
|
rand_core.workspace = true
|
||||||
rcgen.workspace = true
|
rcgen.workspace = true
|
||||||
chrono.workspace = true
|
chrono.workspace = true
|
||||||
kameo.workspace = true
|
kameo.workspace = true
|
||||||
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
|
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
|
||||||
argon2 = { version = "0.5.3", features = ["zeroize"] }
|
argon2 = { version = "0.5.3", features = ["zeroize"] }
|
||||||
restructed = "0.2.2"
|
restructed = "0.2.2"
|
||||||
strum.workspace = true
|
strum = { version = "0.28.0", features = ["derive"] }
|
||||||
pem = "3.0.6"
|
pem = "3.0.6"
|
||||||
sha2.workspace = true
|
sha2.workspace = true
|
||||||
hmac.workspace = true
|
hmac.workspace = true
|
||||||
alloy.workspace = true
|
alloy.workspace = true
|
||||||
prost.workspace = true
|
|
||||||
prost-types.workspace = true
|
prost-types.workspace = true
|
||||||
arbiter-tokens-registry.path = "../arbiter-tokens-registry"
|
arbiter-tokens-registry.path = "../arbiter-tokens-registry"
|
||||||
anyhow = "1.0.102"
|
anyhow = "1.0.102"
|
||||||
@@ -51,15 +51,12 @@ subtle = "2.6.1"
|
|||||||
x25519-dalek.workspace = true
|
x25519-dalek.workspace = true
|
||||||
k256.workspace = true
|
k256.workspace = true
|
||||||
kameo_actors.workspace = true
|
kameo_actors.workspace = true
|
||||||
vsss-rs = "5.4.0"
|
|
||||||
rand_core = "0.6"
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
proptest = "1.11.0"
|
proptest = "1.11.0"
|
||||||
rstest.workspace = true
|
rstest.workspace = true
|
||||||
test-log = { version = "0.2", default-features = false, features = ["trace"] }
|
test-log = { version = "0.2", default-features = false, features = ["trace"] }
|
||||||
ml-dsa.workspace = true
|
ml-dsa.workspace = true
|
||||||
mockall = "0.15.0"
|
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
doctest = false
|
doctest = false
|
||||||
|
|||||||
@@ -56,7 +56,6 @@ create table if not exists operator (
|
|||||||
|
|
||||||
share blob not null,
|
share blob not null,
|
||||||
share_nonce blob not null,
|
share_nonce blob not null,
|
||||||
share_salt blob not null,
|
|
||||||
|
|
||||||
created_at integer not null default(unixepoch ('now')),
|
created_at integer not null default(unixepoch ('now')),
|
||||||
updated_at integer not null default(unixepoch ('now'))
|
updated_at integer not null default(unixepoch ('now'))
|
||||||
@@ -216,156 +215,3 @@ create table if not exists integrity_envelope (
|
|||||||
) STRICT;
|
) STRICT;
|
||||||
|
|
||||||
create unique index if not exists uniq_integrity_envelope_entity on integrity_envelope (entity_kind, entity_id);
|
create unique index if not exists uniq_integrity_envelope_entity on integrity_envelope (entity_kind, entity_id);
|
||||||
|
|
||||||
create table if not exists proposal (
|
|
||||||
id integer not null primary key,
|
|
||||||
kind text not null,
|
|
||||||
initiator_id integer not null references operator_identity(id) on delete restrict,
|
|
||||||
created_at integer not null default(unixepoch('now')),
|
|
||||||
expires_at integer not null,
|
|
||||||
status text not null default 'pending'
|
|
||||||
check (status in ('pending', 'approved', 'rejected'))
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
-- Parameters of an approved-or-pending proposal
|
|
||||||
create table if not exists proposal_approve_sdk_client (
|
|
||||||
proposal_id integer not null primary key references proposal(id) on delete cascade,
|
|
||||||
client_id integer not null references program_client(id) on delete restrict
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
create table if not exists proposal_grant_wallet_access (
|
|
||||||
proposal_id integer not null primary key references proposal(id) on delete cascade,
|
|
||||||
wallet_id integer not null references evm_wallet(id) on delete restrict,
|
|
||||||
client_id integer not null references program_client(id) on delete restrict
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
create table if not exists proposal_replace_operator (
|
|
||||||
proposal_id integer not null primary key references proposal(id) on delete cascade,
|
|
||||||
old_operator_id integer not null references operator_identity(id) on delete restrict,
|
|
||||||
new_pubkey blob not null
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
-- The transaction an operator votes to sign.
|
|
||||||
create table if not exists proposal_one_off_transaction (
|
|
||||||
proposal_id integer not null primary key references proposal(id) on delete cascade,
|
|
||||||
client_id integer not null references program_client(id) on delete restrict,
|
|
||||||
wallet_address blob not null check (length(wallet_address) = 20),
|
|
||||||
chain_id integer not null,
|
|
||||||
nonce integer not null,
|
|
||||||
gas_limit integer not null,
|
|
||||||
max_fee_per_gas blob not null check (length(max_fee_per_gas) = 16),
|
|
||||||
max_priority_fee_per_gas blob not null check (length(max_priority_fee_per_gas) = 16),
|
|
||||||
to_address blob not null check (length(to_address) = 20),
|
|
||||||
value blob not null check (length(value) = 32),
|
|
||||||
input blob not null
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
-- The grant an operator votes to creat
|
|
||||||
create table if not exists proposal_persistent_grant (
|
|
||||||
proposal_id integer not null primary key references proposal (id) on delete cascade,
|
|
||||||
wallet_access_id integer not null references evm_wallet_access (id) on delete restrict,
|
|
||||||
chain_id integer not null, -- EIP-155 chain ID
|
|
||||||
valid_from integer, -- unix timestamp (seconds), null = no lower bound
|
|
||||||
valid_until integer, -- unix timestamp (seconds), null = no upper bound
|
|
||||||
max_gas_fee_per_gas blob check (max_gas_fee_per_gas is null or length(max_gas_fee_per_gas) = 32),
|
|
||||||
max_priority_fee_per_gas blob check (max_priority_fee_per_gas is null or length(max_priority_fee_per_gas) = 32),
|
|
||||||
rate_limit_count integer, -- max transactions in window, null = unlimited
|
|
||||||
rate_limit_window_secs integer, -- window duration in seconds, null = unlimited
|
|
||||||
check ((rate_limit_count is null) = (rate_limit_window_secs is null))
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
-- `specific = ether_transfer`
|
|
||||||
create table if not exists proposal_persistent_grant_ether (
|
|
||||||
proposal_id integer not null primary key references proposal_persistent_grant (proposal_id) on delete cascade,
|
|
||||||
window_secs integer not null,
|
|
||||||
max_volume blob not null check (length(max_volume) = 32)
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
create table if not exists proposal_persistent_grant_ether_target (
|
|
||||||
id integer not null primary key,
|
|
||||||
proposal_id integer not null references proposal_persistent_grant_ether (proposal_id) on delete cascade,
|
|
||||||
address blob not null check (length(address) = 20)
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
create unique index if not exists uniq_proposal_ether_target on proposal_persistent_grant_ether_target (proposal_id, address);
|
|
||||||
|
|
||||||
-- `specific = token_transfer`
|
|
||||||
create table if not exists proposal_persistent_grant_token (
|
|
||||||
proposal_id integer not null primary key references proposal_persistent_grant (proposal_id) on delete cascade,
|
|
||||||
token_contract blob not null check (length(token_contract) = 20),
|
|
||||||
receiver blob check (receiver is null or length(receiver) = 20)
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
create table if not exists proposal_persistent_grant_token_limit (
|
|
||||||
id integer not null primary key,
|
|
||||||
proposal_id integer not null references proposal_persistent_grant_token (proposal_id) on delete cascade,
|
|
||||||
window_secs integer not null,
|
|
||||||
max_volume blob not null check (length(max_volume) = 32)
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
create table if not exists proposal_vote (
|
|
||||||
id integer not null primary key,
|
|
||||||
proposal_id integer not null references proposal(id) on delete cascade,
|
|
||||||
operator_id integer not null references operator_identity(id) on delete restrict,
|
|
||||||
approve integer not null check (approve in (0, 1)),
|
|
||||||
signature blob not null,
|
|
||||||
voted_at integer not null default(unixepoch('now')),
|
|
||||||
unique (proposal_id, operator_id)
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
|
|
||||||
-- The signature the vault produced for an approved transaction, by component.
|
|
||||||
--
|
|
||||||
-- secp256k1 signatures have three common encodings (Electrum v=27/28, raw parity,
|
|
||||||
-- ERC-2098 compact); a single blob would not say which one it holds. `y_parity` is
|
|
||||||
-- the raw bit -- add 27 to rebuild the Electrum form `Signature::as_bytes` emits.
|
|
||||||
create table if not exists proposal_one_off_transaction_result (
|
|
||||||
proposal_id integer not null primary key
|
|
||||||
references proposal_one_off_transaction (proposal_id) on delete cascade,
|
|
||||||
r blob not null check (length(r) = 32),
|
|
||||||
s blob not null check (length(s) = 32),
|
|
||||||
y_parity integer not null check (y_parity in (0, 1)),
|
|
||||||
created_at integer not null default(unixepoch('now'))
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
-- ===============================
|
|
||||||
-- Recovery Operators (§3.4/§3.5/§3.6)
|
|
||||||
-- ===============================
|
|
||||||
|
|
||||||
-- Encrypted Shamir shares for recovery operators (mirrors the `operator` table).
|
|
||||||
create table if not exists recovery_operator (
|
|
||||||
id integer not null primary key references recovery_operator_identity(id) on delete restrict,
|
|
||||||
share blob not null,
|
|
||||||
share_nonce blob not null,
|
|
||||||
share_salt blob not null,
|
|
||||||
created_at integer not null default(unixepoch('now')),
|
|
||||||
updated_at integer not null default(unixepoch('now'))
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
create table if not exists recovery_operator_identity (
|
|
||||||
id integer not null primary key,
|
|
||||||
public_key blob not null unique,
|
|
||||||
created_at integer not null default(unixepoch('now')),
|
|
||||||
updated_at integer not null default(unixepoch('now'))
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
-- One active wakeup request at a time. A request is pending when cancelled_at IS NULL
|
|
||||||
-- and requested_at + 14 days > now. It becomes active (recovery live) after 14 days.
|
|
||||||
create table if not exists recovery_wakeup_request (
|
|
||||||
id integer not null primary key,
|
|
||||||
requested_by integer not null references operator_identity(id) on delete restrict,
|
|
||||||
requested_at integer not null default(unixepoch('now')),
|
|
||||||
cancelled_by integer references operator_identity(id) on delete restrict,
|
|
||||||
cancelled_at integer
|
|
||||||
) STRICT;
|
|
||||||
|
|
||||||
-- Votes cast by recovery operators; only allowed on replace_operator proposals.
|
|
||||||
create table if not exists recovery_proposal_vote (
|
|
||||||
id integer not null primary key,
|
|
||||||
proposal_id integer not null references proposal(id) on delete cascade,
|
|
||||||
recovery_operator_id integer not null references recovery_operator_identity(id) on delete restrict,
|
|
||||||
approve integer not null check (approve in (0, 1)),
|
|
||||||
signature blob not null,
|
|
||||||
voted_at integer not null default(unixepoch('now')),
|
|
||||||
unique (proposal_id, recovery_operator_id)
|
|
||||||
) STRICT;
|
|
||||||
|
|||||||
@@ -1,29 +1,48 @@
|
|||||||
use crate::db::{self, DatabasePool, schema};
|
use crate::db::{self, DatabasePool, schema};
|
||||||
|
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
||||||
use arbiter_proto::{BOOTSTRAP_PATH, home_path};
|
use arbiter_proto::{BOOTSTRAP_PATH, home_path};
|
||||||
|
|
||||||
use diesel::QueryDsl;
|
use diesel::QueryDsl;
|
||||||
use diesel_async::RunQueryDsl;
|
use diesel_async::RunQueryDsl;
|
||||||
use kameo::{Actor, messages};
|
use kameo::{Actor, messages};
|
||||||
use rand::{RngExt, distr::Alphanumeric, make_rng, rngs::StdRng};
|
use rand::{RngExt, distr::Alphanumeric, rngs::SysRng};
|
||||||
|
use rand_core::UnwrapErr;
|
||||||
|
use std::path::{Path, PathBuf};
|
||||||
use subtle::ConstantTimeEq as _;
|
use subtle::ConstantTimeEq as _;
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
use tracing::warn;
|
||||||
|
|
||||||
const TOKEN_LENGTH: usize = 64;
|
const TOKEN_LENGTH: usize = 64;
|
||||||
|
|
||||||
pub async fn generate_token() -> Result<String, std::io::Error> {
|
async fn write_token_file(path: &Path, content: &str) -> Result<(), std::io::Error> {
|
||||||
let rng: StdRng = make_rng();
|
tokio::fs::write(path, content.as_bytes()).await?;
|
||||||
|
|
||||||
let token = rng.sample_iter(Alphanumeric).take(TOKEN_LENGTH).fold(
|
#[cfg(unix)]
|
||||||
String::default(),
|
{
|
||||||
|mut accum, char| {
|
use std::os::unix::fs::PermissionsExt as _;
|
||||||
accum += char.to_string().as_str();
|
tokio::fs::set_permissions(path, std::fs::Permissions::from_mode(0o600)).await?;
|
||||||
accum
|
}
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
tokio::fs::write(home_path()?.join(BOOTSTRAP_PATH), token.as_str()).await?;
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
Ok(token)
|
async fn generate_token(path: &Path) -> Result<SafeCell<[u8; TOKEN_LENGTH]>, std::io::Error> {
|
||||||
|
let mut cell = SafeCell::new([0u8; TOKEN_LENGTH]);
|
||||||
|
{
|
||||||
|
let mut buf = cell.write();
|
||||||
|
for (slot, b) in buf
|
||||||
|
.iter_mut()
|
||||||
|
.zip(UnwrapErr(SysRng).sample_iter(Alphanumeric))
|
||||||
|
{
|
||||||
|
*slot = b;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let token_str = cell.read_inline(|buf| String::from_utf8_lossy(buf.as_ref()).into_owned());
|
||||||
|
|
||||||
|
write_token_file(path, &token_str).await?;
|
||||||
|
|
||||||
|
Ok(cell)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Error, Debug)]
|
#[derive(Error, Debug)]
|
||||||
@@ -40,7 +59,8 @@ pub enum Error {
|
|||||||
|
|
||||||
#[derive(Actor)]
|
#[derive(Actor)]
|
||||||
pub struct Bootstrapper {
|
pub struct Bootstrapper {
|
||||||
token: Option<String>,
|
token: Option<SafeCell<[u8; TOKEN_LENGTH]>>,
|
||||||
|
token_path: Option<PathBuf>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Bootstrapper {
|
impl Bootstrapper {
|
||||||
@@ -54,34 +74,37 @@ impl Bootstrapper {
|
|||||||
.await?
|
.await?
|
||||||
};
|
};
|
||||||
|
|
||||||
let token = if row_count == 0 {
|
let (token, token_path) = if row_count == 0 {
|
||||||
let token = generate_token().await?;
|
let path = home_path()?.join(BOOTSTRAP_PATH);
|
||||||
Some(token)
|
let token = generate_token(&path).await?;
|
||||||
|
(Some(token), Some(path))
|
||||||
} else {
|
} else {
|
||||||
None
|
(None, None)
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok(Self { token })
|
Ok(Self { token, token_path })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Bootstrapper {
|
||||||
|
fn is_correct_token(&mut self, token: &[u8]) -> bool {
|
||||||
|
self.token.as_mut().is_some_and(|expected| {
|
||||||
|
expected.read_inline(|exp| bool::from(exp.as_ref().ct_eq(token)))
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[messages]
|
#[messages]
|
||||||
impl Bootstrapper {
|
impl Bootstrapper {
|
||||||
#[message]
|
#[message]
|
||||||
pub fn is_correct_token(&self, token: String) -> bool {
|
pub async fn consume_token(&mut self, token: Vec<u8>) -> bool {
|
||||||
self.token.as_ref().is_some_and(|expected| {
|
if self.is_correct_token(&token) {
|
||||||
let expected_bytes = expected.as_bytes();
|
|
||||||
let token_bytes = token.as_bytes();
|
|
||||||
|
|
||||||
let choice = expected_bytes.ct_eq(token_bytes);
|
|
||||||
bool::from(choice)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
#[message]
|
|
||||||
pub fn consume_token(&mut self, token: String) -> bool {
|
|
||||||
if self.is_correct_token(token) {
|
|
||||||
self.token = None;
|
self.token = None;
|
||||||
|
if let Some(path) = self.token_path.take()
|
||||||
|
&& let Err(e) = tokio::fs::remove_file(&path).await
|
||||||
|
{
|
||||||
|
warn!(error = ?e, path = ?path, "Failed to delete bootstrap token file after consumption");
|
||||||
|
}
|
||||||
true
|
true
|
||||||
} else {
|
} else {
|
||||||
false
|
false
|
||||||
@@ -92,7 +115,9 @@ impl Bootstrapper {
|
|||||||
#[messages]
|
#[messages]
|
||||||
impl Bootstrapper {
|
impl Bootstrapper {
|
||||||
#[message]
|
#[message]
|
||||||
pub fn get_token(&self) -> Option<String> {
|
pub fn get_token(&mut self) -> Option<String> {
|
||||||
self.token.clone()
|
self.token
|
||||||
|
.as_mut()
|
||||||
|
.map(|cell| cell.read_inline(|buf| String::from_utf8_lossy(buf.as_ref()).into_owned()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,9 @@
|
|||||||
use crate::{
|
use crate::{
|
||||||
actors::{
|
actors::vault::{CreateNew, Decrypt, Vault},
|
||||||
proposal_manager::events::ProposalApproved,
|
crypto::integrity::{self, Integrable},
|
||||||
vault::{CreateNew, Decrypt, Vault},
|
|
||||||
},
|
|
||||||
crypto::integrity,
|
|
||||||
db::{
|
db::{
|
||||||
DatabaseError, DatabasePool,
|
DatabaseError, DatabasePool,
|
||||||
models::{self, EvmWalletId, ProposalId},
|
models::{self, EvmWalletId},
|
||||||
proposal::{ProposalKind, grant_wallet_access, one_off_transaction, persistent_grant},
|
|
||||||
schema,
|
schema,
|
||||||
},
|
},
|
||||||
evm::{
|
evm::{
|
||||||
@@ -27,17 +23,37 @@ use diesel::{
|
|||||||
ExpressionMethods, OptionalExtension as _, QueryDsl, SelectableHelper as _, dsl::insert_into,
|
ExpressionMethods, OptionalExtension as _, QueryDsl, SelectableHelper as _, dsl::insert_into,
|
||||||
};
|
};
|
||||||
use diesel_async::RunQueryDsl;
|
use diesel_async::RunQueryDsl;
|
||||||
use kameo::{Actor, actor::ActorRef, messages, prelude::Message};
|
use kameo::{Actor, actor::ActorRef, messages};
|
||||||
use rand::{SeedableRng, rng, rngs::StdRng};
|
use rand::{SeedableRng, rng, rngs::StdRng};
|
||||||
use tracing::error;
|
use tracing::error;
|
||||||
|
|
||||||
pub use crate::evm::safe_signer;
|
pub use crate::evm::safe_signer;
|
||||||
|
|
||||||
|
/// Integrity guard that binds a wallet's encrypted key ID to its Ethereum address.
|
||||||
|
/// Both fields are included in the HMAC — swapping `aead_encrypted_id` in the DB
|
||||||
|
/// invalidates the envelope MAC, and the AEAD ciphertext is also bound to `address`
|
||||||
|
/// as AAD, so decryption fails too.
|
||||||
|
#[derive(arbiter_macros::Hashable)]
|
||||||
|
struct EvmWalletIntegrity {
|
||||||
|
aead_encrypted_id: i32,
|
||||||
|
address: Address,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Integrable for EvmWalletIntegrity {
|
||||||
|
const KIND: &'static str = "evm_wallet";
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, thiserror::Error)]
|
#[derive(Debug, thiserror::Error)]
|
||||||
pub enum SignTransactionError {
|
pub enum SignTransactionError {
|
||||||
#[error("Wallet not found")]
|
#[error("Wallet not found")]
|
||||||
WalletNotFound,
|
WalletNotFound,
|
||||||
|
|
||||||
|
#[error("Decrypted key does not match requested wallet address")]
|
||||||
|
KeyAddressMismatch,
|
||||||
|
|
||||||
|
#[error("Internal signing error")]
|
||||||
|
Internal,
|
||||||
|
|
||||||
#[error("Database error: {0}")]
|
#[error("Database error: {0}")]
|
||||||
Database(#[from] DatabaseError),
|
Database(#[from] DatabaseError),
|
||||||
|
|
||||||
@@ -67,9 +83,12 @@ pub enum Error {
|
|||||||
|
|
||||||
#[error("Integrity violation: {0}")]
|
#[error("Integrity violation: {0}")]
|
||||||
Integrity(#[from] integrity::Error),
|
Integrity(#[from] integrity::Error),
|
||||||
|
}
|
||||||
|
|
||||||
#[error("Signing error: {0}")]
|
impl From<diesel::result::Error> for Error {
|
||||||
Sign(#[from] SignTransactionError),
|
fn from(e: diesel::result::Error) -> Self {
|
||||||
|
Self::Database(DatabaseError::from(e))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Actor)]
|
#[derive(Actor)]
|
||||||
@@ -105,20 +124,39 @@ impl EvmActor {
|
|||||||
|
|
||||||
let aead_id: i32 = self
|
let aead_id: i32 = self
|
||||||
.vault
|
.vault
|
||||||
.ask(CreateNew { plaintext })
|
.ask(CreateNew {
|
||||||
|
plaintext,
|
||||||
|
aad: address.as_slice().to_vec(),
|
||||||
|
})
|
||||||
.await
|
.await
|
||||||
.map_err(|_| Error::VaultSend)?;
|
.map_err(|_| Error::VaultSend)?;
|
||||||
|
|
||||||
let mut conn = self.db.get().await.map_err(DatabaseError::from)?;
|
let mut conn = self.db.get().await.map_err(DatabaseError::from)?;
|
||||||
let wallet_id = insert_into(schema::evm_wallet::table)
|
let wallet_id = conn
|
||||||
|
.exclusive_transaction(async |conn| {
|
||||||
|
let wallet_id: i32 = insert_into(schema::evm_wallet::table)
|
||||||
.values(&models::NewEvmWallet {
|
.values(&models::NewEvmWallet {
|
||||||
address: address.as_slice().to_vec(),
|
address: address.as_slice().to_vec(),
|
||||||
aead_encrypted_id: aead_id,
|
aead_encrypted_id: aead_id,
|
||||||
})
|
})
|
||||||
.returning(schema::evm_wallet::id)
|
.returning(schema::evm_wallet::id)
|
||||||
.get_result(&mut conn)
|
.get_result(conn)
|
||||||
.await
|
.await
|
||||||
.map_err(DatabaseError::from)?;
|
.map_err(DatabaseError::from)
|
||||||
|
.map_err(Error::Database)?;
|
||||||
|
|
||||||
|
integrity::sign_entity(
|
||||||
|
conn,
|
||||||
|
&self.vault,
|
||||||
|
&EvmWalletIntegrity { address, aead_encrypted_id: aead_id },
|
||||||
|
wallet_id,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.map_err(Error::Integrity)?;
|
||||||
|
|
||||||
|
Ok::<i32, Error>(wallet_id)
|
||||||
|
})
|
||||||
|
.await?;
|
||||||
|
|
||||||
Ok((wallet_id, address))
|
Ok((wallet_id, address))
|
||||||
}
|
}
|
||||||
@@ -168,23 +206,14 @@ impl EvmActor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[message]
|
#[message]
|
||||||
pub async fn operator_delete_grant(&mut self, grant_id: i32) -> Result<(), Error> {
|
pub async fn useragent_delete_grant(
|
||||||
let mut conn = self.db.get().await.map_err(DatabaseError::from)?;
|
&mut self,
|
||||||
|
grant_id: i32,
|
||||||
let affected = diesel::update(schema::evm_basic_grant::table)
|
) -> Result<(), Error> {
|
||||||
.filter(schema::evm_basic_grant::id.eq(grant_id))
|
self.engine
|
||||||
.set(schema::evm_basic_grant::revoked_at.eq(models::SqliteTimestamp::now()))
|
.revoke_grant(grant_id)
|
||||||
.execute(&mut conn)
|
|
||||||
.await
|
.await
|
||||||
.map_err(DatabaseError::from)?;
|
.map_err(Error::from)
|
||||||
|
|
||||||
if affected == 0 {
|
|
||||||
return Err(Error::Database(DatabaseError::from(
|
|
||||||
diesel::result::Error::NotFound,
|
|
||||||
)));
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[message]
|
#[message]
|
||||||
@@ -258,16 +287,51 @@ impl EvmActor {
|
|||||||
.ok_or(SignTransactionError::WalletNotFound)?;
|
.ok_or(SignTransactionError::WalletNotFound)?;
|
||||||
drop(conn);
|
drop(conn);
|
||||||
|
|
||||||
|
let mut conn = self.db.get().await.map_err(DatabaseError::from)?;
|
||||||
|
let attestation = integrity::verify_entity(
|
||||||
|
&mut conn,
|
||||||
|
&self.vault,
|
||||||
|
&EvmWalletIntegrity {
|
||||||
|
address: wallet_address,
|
||||||
|
aead_encrypted_id: wallet.aead_encrypted_id,
|
||||||
|
},
|
||||||
|
wallet.id.to_raw(),
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.map_err(|e| {
|
||||||
|
error!(?e, ?wallet.id, "EVM wallet integrity check failed");
|
||||||
|
SignTransactionError::Internal
|
||||||
|
})?;
|
||||||
|
drop(conn);
|
||||||
|
|
||||||
|
if attestation != integrity::AttestationStatus::Attested {
|
||||||
|
error!(
|
||||||
|
?wallet.id,
|
||||||
|
"EVM wallet integrity unavailable; refusing to sign"
|
||||||
|
);
|
||||||
|
return Err(SignTransactionError::Internal);
|
||||||
|
}
|
||||||
|
|
||||||
let raw_key: SafeCell<Vec<u8>> = self
|
let raw_key: SafeCell<Vec<u8>> = self
|
||||||
.vault
|
.vault
|
||||||
.ask(Decrypt {
|
.ask(Decrypt {
|
||||||
aead_id: wallet.aead_encrypted_id,
|
aead_id: wallet.aead_encrypted_id,
|
||||||
|
aad: wallet.address.clone(),
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.map_err(|_| SignTransactionError::VaultSend)?;
|
.map_err(|_| SignTransactionError::VaultSend)?;
|
||||||
|
|
||||||
let signer = safe_signer::SafeSigner::from_cell(raw_key)?;
|
let signer = safe_signer::SafeSigner::from_cell(raw_key)?;
|
||||||
|
|
||||||
|
if signer.address() != wallet_address {
|
||||||
|
error!(
|
||||||
|
expected = %wallet_address,
|
||||||
|
actual = %signer.address(),
|
||||||
|
"Decrypted private key address does not match requested wallet"
|
||||||
|
);
|
||||||
|
return Err(SignTransactionError::KeyAddressMismatch);
|
||||||
|
}
|
||||||
|
|
||||||
self.engine
|
self.engine
|
||||||
.evaluate_transaction(wallet_access, transaction.clone(), RunKind::Execution)
|
.evaluate_transaction(wallet_access, transaction.clone(), RunKind::Execution)
|
||||||
.await?;
|
.await?;
|
||||||
@@ -275,142 +339,3 @@ impl EvmActor {
|
|||||||
Ok(signer.sign_transaction_sync(&mut transaction)?)
|
Ok(signer.sign_transaction_sync(&mut transaction)?)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Message<ProposalApproved> for EvmActor {
|
|
||||||
type Reply = ();
|
|
||||||
|
|
||||||
/// Every subscriber sees every approval and acts only on the kinds it owns.
|
|
||||||
async fn handle(
|
|
||||||
&mut self,
|
|
||||||
msg: ProposalApproved,
|
|
||||||
_ctx: &mut kameo::prelude::Context<Self, Self::Reply>,
|
|
||||||
) -> Self::Reply {
|
|
||||||
let result = match msg.kind {
|
|
||||||
ProposalKind::GrantWalletAccess(settings) => self.grant_wallet_access(&settings).await,
|
|
||||||
ProposalKind::ApprovePersistentGrant(settings) => {
|
|
||||||
self.create_persistent_grant(*settings).await
|
|
||||||
}
|
|
||||||
ProposalKind::ApproveOneOffTransaction(settings) => {
|
|
||||||
self.sign_one_off_transaction(msg.id, *settings).await
|
|
||||||
}
|
|
||||||
_ => return,
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Err(error) = result {
|
|
||||||
error!(
|
|
||||||
?error,
|
|
||||||
proposal_id = msg.id.to_raw(),
|
|
||||||
"Failed to execute an approved proposal"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl EvmActor {
|
|
||||||
async fn grant_wallet_access(
|
|
||||||
&mut self,
|
|
||||||
settings: &grant_wallet_access::Settings,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
let mut conn = self.db.get().await.map_err(DatabaseError::from)?;
|
|
||||||
|
|
||||||
insert_into(schema::evm_wallet_access::table)
|
|
||||||
.values((
|
|
||||||
schema::evm_wallet_access::wallet_id.eq(EvmWalletId::from_raw(settings.wallet_id)),
|
|
||||||
schema::evm_wallet_access::client_id.eq(settings.client_id),
|
|
||||||
))
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(DatabaseError::from)?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn create_persistent_grant(
|
|
||||||
&mut self,
|
|
||||||
grant: persistent_grant::Settings,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
use crate::evm::policies::{
|
|
||||||
TransactionRateLimit, VolumeRateLimit, ether_transfer, token_transfers,
|
|
||||||
};
|
|
||||||
use alloy::primitives::U256;
|
|
||||||
use chrono::Duration;
|
|
||||||
|
|
||||||
let volume = |limit: persistent_grant::VolumeLimit| VolumeRateLimit {
|
|
||||||
max_volume: U256::from_be_bytes(limit.max_volume),
|
|
||||||
window: Duration::seconds(limit.window_secs),
|
|
||||||
};
|
|
||||||
|
|
||||||
let basic = SharedGrantSettings {
|
|
||||||
wallet_access_id: grant.wallet_access_id,
|
|
||||||
chain: grant.chain_id,
|
|
||||||
valid_from: grant
|
|
||||||
.valid_from_secs
|
|
||||||
.and_then(|s| chrono::DateTime::from_timestamp(s, 0)),
|
|
||||||
valid_until: grant
|
|
||||||
.valid_until_secs
|
|
||||||
.and_then(|s| chrono::DateTime::from_timestamp(s, 0)),
|
|
||||||
max_gas_fee_per_gas: grant.max_gas_fee_per_gas.map(U256::from_be_bytes),
|
|
||||||
max_priority_fee_per_gas: grant.max_priority_fee_per_gas.map(U256::from_be_bytes),
|
|
||||||
rate_limit: grant.rate_limit.map(|r| TransactionRateLimit {
|
|
||||||
count: r.count,
|
|
||||||
window: Duration::seconds(r.window_secs),
|
|
||||||
}),
|
|
||||||
};
|
|
||||||
|
|
||||||
let specific = match grant.specific {
|
|
||||||
persistent_grant::Specific::EtherTransfer { targets, limit } => {
|
|
||||||
SpecificGrant::EtherTransfer(ether_transfer::Settings {
|
|
||||||
target: targets.into_iter().map(Address::from).collect(),
|
|
||||||
limit: volume(limit),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
persistent_grant::Specific::TokenTransfer {
|
|
||||||
token_contract,
|
|
||||||
receiver,
|
|
||||||
volume_limits,
|
|
||||||
} => SpecificGrant::TokenTransfer(token_transfers::Settings {
|
|
||||||
token_contract: Address::from(token_contract),
|
|
||||||
target: receiver.map(Address::from),
|
|
||||||
volume_limits: volume_limits.into_iter().map(volume).collect(),
|
|
||||||
}),
|
|
||||||
};
|
|
||||||
|
|
||||||
self.operator_create_grant(basic, specific).await?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn sign_one_off_transaction(
|
|
||||||
&mut self,
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
tx: one_off_transaction::Settings,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
use alloy::{
|
|
||||||
eips::eip2930::AccessList,
|
|
||||||
primitives::{Bytes, TxKind, U256},
|
|
||||||
};
|
|
||||||
|
|
||||||
let transaction = TxEip1559 {
|
|
||||||
chain_id: tx.chain_id,
|
|
||||||
nonce: tx.nonce,
|
|
||||||
gas_limit: tx.gas_limit,
|
|
||||||
max_fee_per_gas: tx.max_fee_per_gas,
|
|
||||||
max_priority_fee_per_gas: tx.max_priority_fee_per_gas,
|
|
||||||
to: TxKind::Call(Address::from(tx.to)),
|
|
||||||
value: U256::from_be_bytes(tx.value),
|
|
||||||
input: Bytes::from(tx.input),
|
|
||||||
access_list: AccessList::default(),
|
|
||||||
};
|
|
||||||
|
|
||||||
let signature = self
|
|
||||||
.client_sign_transaction(tx.client_id, Address::from(tx.wallet_address), transaction)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let mut conn = self.db.get().await.map_err(DatabaseError::from)?;
|
|
||||||
one_off_transaction::store_signature(proposal_id, &signature, &mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(DatabaseError::from)?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -11,7 +11,9 @@ use kameo::{
|
|||||||
prelude::{ActorId, ActorRef, ActorStopReason, Context, WeakActorRef},
|
prelude::{ActorId, ActorRef, ActorStopReason, Context, WeakActorRef},
|
||||||
reply::ReplySender,
|
reply::ReplySender,
|
||||||
};
|
};
|
||||||
use std::ops::ControlFlow;
|
use std::{ops::ControlFlow, time::Duration};
|
||||||
|
|
||||||
|
const APPROVAL_TIMEOUT: Duration = Duration::from_secs(30);
|
||||||
|
|
||||||
pub struct Args {
|
pub struct Args {
|
||||||
pub client: ClientProfile,
|
pub client: ClientProfile,
|
||||||
@@ -64,6 +66,14 @@ impl Actor for ClientApprovalController {
|
|||||||
.await;
|
.await;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let weak = actor_ref.downgrade();
|
||||||
|
tokio::spawn(async move {
|
||||||
|
tokio::time::sleep(APPROVAL_TIMEOUT).await;
|
||||||
|
if let Some(r) = weak.upgrade() {
|
||||||
|
let _ = r.tell(OnApprovalTimeout {}).await;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
Ok(this)
|
Ok(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -104,4 +114,14 @@ impl ClientApprovalController {
|
|||||||
ctx.stop();
|
ctx.stop();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Fired after `APPROVAL_TIMEOUT` elapses. Any operator that hasn't responded
|
||||||
|
/// by then is treated as a denial to prevent zombie sessions from blocking the flow.
|
||||||
|
#[message(ctx)]
|
||||||
|
pub fn on_approval_timeout(&mut self, ctx: &mut Context<Self, ()>) {
|
||||||
|
if self.pending > 0 {
|
||||||
|
self.send_reply(Ok(false));
|
||||||
|
ctx.stop();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,6 +20,8 @@ pub mod client_connect_approval;
|
|||||||
|
|
||||||
pub struct FlowCoordinator {
|
pub struct FlowCoordinator {
|
||||||
pub clients: HashMap<ActorId, ActorRef<ClientSession>>,
|
pub clients: HashMap<ActorId, ActorRef<ClientSession>>,
|
||||||
|
/// Maps DB `client_id` → `ActorId` for fast connected-client lookup.
|
||||||
|
client_ids: HashMap<i32, ActorId>,
|
||||||
operator_registry: ActorRef<OperatorRegistry>,
|
operator_registry: ActorRef<OperatorRegistry>,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -27,6 +29,7 @@ impl FlowCoordinator {
|
|||||||
pub fn new(operator_registry: ActorRef<OperatorRegistry>) -> Self {
|
pub fn new(operator_registry: ActorRef<OperatorRegistry>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
clients: HashMap::default(),
|
clients: HashMap::default(),
|
||||||
|
client_ids: HashMap::default(),
|
||||||
operator_registry,
|
operator_registry,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -48,6 +51,7 @@ impl Actor for FlowCoordinator {
|
|||||||
_: ActorStopReason,
|
_: ActorStopReason,
|
||||||
) -> Result<ControlFlow<ActorStopReason>, Self::Error> {
|
) -> Result<ControlFlow<ActorStopReason>, Self::Error> {
|
||||||
if self.clients.remove(&id).is_some() {
|
if self.clients.remove(&id).is_some() {
|
||||||
|
self.client_ids.retain(|_, actor_id| *actor_id != id);
|
||||||
info!(
|
info!(
|
||||||
?id,
|
?id,
|
||||||
actor = "FlowCoordinator",
|
actor = "FlowCoordinator",
|
||||||
@@ -75,14 +79,28 @@ impl FlowCoordinator {
|
|||||||
#[message(ctx)]
|
#[message(ctx)]
|
||||||
pub async fn register_client(
|
pub async fn register_client(
|
||||||
&mut self,
|
&mut self,
|
||||||
|
client_id: i32,
|
||||||
actor: ActorRef<ClientSession>,
|
actor: ActorRef<ClientSession>,
|
||||||
ctx: &mut Context<Self, ()>,
|
ctx: &mut Context<Self, ()>,
|
||||||
) {
|
) {
|
||||||
info!(id = %actor.id(), actor = "FlowCoordinator", event = "client.connected");
|
info!(id = %actor.id(), client_id, actor = "FlowCoordinator", event = "client.connected");
|
||||||
ctx.actor_ref().link(&actor).await;
|
ctx.actor_ref().link(&actor).await;
|
||||||
|
self.client_ids.insert(client_id, actor.id());
|
||||||
self.clients.insert(actor.id(), actor);
|
self.clients.insert(actor.id(), actor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[message]
|
||||||
|
pub fn is_client_connected(&self, client_id: i32) -> bool {
|
||||||
|
self.client_ids.contains_key(&client_id)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns the DB `client_ids` of all currently connected SDK clients.
|
||||||
|
/// Used by operator sessions on startup to seed their approved-client set.
|
||||||
|
#[message]
|
||||||
|
pub fn get_connected_client_ids(&self) -> Vec<i32> {
|
||||||
|
self.client_ids.keys().copied().collect()
|
||||||
|
}
|
||||||
|
|
||||||
#[message(ctx)]
|
#[message(ctx)]
|
||||||
pub async fn request_client_approval(
|
pub async fn request_client_approval(
|
||||||
&mut self,
|
&mut self,
|
||||||
|
|||||||
@@ -1,30 +1,20 @@
|
|||||||
use crate::{
|
use crate::{
|
||||||
actors::{
|
actors::{
|
||||||
bootstrap::Bootstrapper,
|
bootstrap::Bootstrapper, evm::EvmActor, flow_coordinator::FlowCoordinator,
|
||||||
evm::EvmActor,
|
operator_registry::OperatorRegistry, vault::Vault,
|
||||||
flow_coordinator::FlowCoordinator,
|
|
||||||
operator_registry::OperatorRegistry,
|
|
||||||
proposal_manager::{ProposalManager, events::ProposalApproved},
|
|
||||||
vault::Vault,
|
|
||||||
vault_coordinator::VaultCoordinator,
|
|
||||||
},
|
},
|
||||||
db,
|
db,
|
||||||
};
|
};
|
||||||
|
|
||||||
use kameo::actor::{ActorRef, Spawn};
|
use kameo::actor::{ActorRef, Spawn};
|
||||||
use kameo_actors::{
|
use kameo_actors::{DeliveryStrategy, message_bus::MessageBus};
|
||||||
DeliveryStrategy,
|
|
||||||
message_bus::{MessageBus, Register},
|
|
||||||
};
|
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
||||||
pub mod bootstrap;
|
pub mod bootstrap;
|
||||||
pub mod evm;
|
pub mod evm;
|
||||||
pub mod flow_coordinator;
|
pub mod flow_coordinator;
|
||||||
pub mod operator_registry;
|
pub mod operator_registry;
|
||||||
pub mod proposal_manager;
|
|
||||||
pub mod vault;
|
pub mod vault;
|
||||||
pub mod vault_coordinator;
|
|
||||||
|
|
||||||
#[derive(Error, Debug)]
|
#[derive(Error, Debug)]
|
||||||
pub enum SpawnError {
|
pub enum SpawnError {
|
||||||
@@ -40,11 +30,9 @@ pub enum SpawnError {
|
|||||||
pub struct GlobalActors {
|
pub struct GlobalActors {
|
||||||
pub vault: ActorRef<Vault>,
|
pub vault: ActorRef<Vault>,
|
||||||
pub bootstrapper: ActorRef<Bootstrapper>,
|
pub bootstrapper: ActorRef<Bootstrapper>,
|
||||||
pub vault_coordinator: ActorRef<VaultCoordinator>,
|
|
||||||
pub flow_coordinator: ActorRef<FlowCoordinator>,
|
pub flow_coordinator: ActorRef<FlowCoordinator>,
|
||||||
pub operator_registry: ActorRef<OperatorRegistry>,
|
pub operator_registry: ActorRef<OperatorRegistry>,
|
||||||
pub evm: ActorRef<EvmActor>,
|
pub evm: ActorRef<EvmActor>,
|
||||||
pub proposal_manager: ActorRef<ProposalManager>,
|
|
||||||
pub events: ActorRef<MessageBus>,
|
pub events: ActorRef<MessageBus>,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -57,31 +45,15 @@ impl GlobalActors {
|
|||||||
let message_bus = Self::spawn_message_bus();
|
let message_bus = Self::spawn_message_bus();
|
||||||
let key_holder = Vault::spawn(Vault::new(db.clone(), message_bus.clone()).await?);
|
let key_holder = Vault::spawn(Vault::new(db.clone(), message_bus.clone()).await?);
|
||||||
let operator_registry = OperatorRegistry::spawn(OperatorRegistry::default());
|
let operator_registry = OperatorRegistry::spawn(OperatorRegistry::default());
|
||||||
let evm = EvmActor::spawn(EvmActor::new(key_holder.clone(), db.clone()));
|
|
||||||
let vault_coordinator = VaultCoordinator::spawn(VaultCoordinator::new(
|
|
||||||
db.clone(),
|
|
||||||
key_holder.clone(),
|
|
||||||
));
|
|
||||||
// Approved proposals are executed by whoever owns the kind, not by ProposalManager.
|
|
||||||
for recipient in [
|
|
||||||
evm.clone().recipient::<ProposalApproved>(),
|
|
||||||
vault_coordinator.clone().recipient::<ProposalApproved>(),
|
|
||||||
key_holder.clone().recipient::<ProposalApproved>(),
|
|
||||||
] {
|
|
||||||
let _ = message_bus.tell(Register(recipient)).await;
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
bootstrapper: Bootstrapper::spawn(Bootstrapper::new(&db).await?),
|
bootstrapper: Bootstrapper::spawn(Bootstrapper::new(&db).await?),
|
||||||
proposal_manager: ProposalManager::spawn(ProposalManager::new(db, message_bus.clone())),
|
evm: EvmActor::spawn(EvmActor::new(key_holder.clone(), db)),
|
||||||
vault: key_holder,
|
vault: key_holder,
|
||||||
vault_coordinator,
|
|
||||||
flow_coordinator: FlowCoordinator::spawn(FlowCoordinator::new(
|
flow_coordinator: FlowCoordinator::spawn(FlowCoordinator::new(
|
||||||
operator_registry.clone(),
|
operator_registry.clone(),
|
||||||
)),
|
)),
|
||||||
operator_registry,
|
operator_registry,
|
||||||
events: message_bus,
|
events: message_bus,
|
||||||
evm,
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,333 +0,0 @@
|
|||||||
use crate::{
|
|
||||||
actors::proposal_manager::{
|
|
||||||
events::ProposalApproved,
|
|
||||||
store::{DieselProposalStore, ProposalStore, Tally},
|
|
||||||
},
|
|
||||||
crypto::governance,
|
|
||||||
db::{
|
|
||||||
self,
|
|
||||||
models::{
|
|
||||||
NewProposalVote, NewRecoveryProposalVote, OperatorIdentityId, Proposal, ProposalId,
|
|
||||||
ProposalStatus, RecoveryOperatorIdentityId, SqliteTimestamp,
|
|
||||||
},
|
|
||||||
proposal::{ProposalKind, ProposalKindTag},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
use chrono::Utc;
|
|
||||||
use kameo::{Actor, actor::ActorRef, messages};
|
|
||||||
use kameo_actors::message_bus::{MessageBus, Publish};
|
|
||||||
use std::sync::Arc;
|
|
||||||
use tracing::warn;
|
|
||||||
|
|
||||||
pub mod events;
|
|
||||||
pub mod store;
|
|
||||||
|
|
||||||
pub const DEFAULT_TTL_SECS: u32 = 7 * 24 * 60 * 60; // 7 days
|
|
||||||
pub const MAX_TTL_SECS: u32 = DEFAULT_TTL_SECS;
|
|
||||||
|
|
||||||
/// Recovery operators stay asleep for this long after a wake-up is requested, so the other
|
|
||||||
/// operators have time to dispute it (§3.6).
|
|
||||||
const WAKEUP_DELAY_SECS: i32 = 14 * 24 * 60 * 60; // 14 days
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
||||||
pub enum VoteOutcome {
|
|
||||||
Pending,
|
|
||||||
Approved,
|
|
||||||
Rejected,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, thiserror::Error)]
|
|
||||||
pub enum Error {
|
|
||||||
#[error("Proposal not found")]
|
|
||||||
ProposalNotFound,
|
|
||||||
#[error("Proposal is not pending")]
|
|
||||||
ProposalNotPending,
|
|
||||||
#[error("Proposal has expired")]
|
|
||||||
ProposalExpired,
|
|
||||||
#[error("Requested TTL exceeds the maximum of {} seconds", MAX_TTL_SECS)]
|
|
||||||
TtlTooLong,
|
|
||||||
#[error("Operator already voted on this proposal")]
|
|
||||||
AlreadyVoted,
|
|
||||||
#[error("Invalid vote signature")]
|
|
||||||
InvalidSignature,
|
|
||||||
#[error("Operator not found")]
|
|
||||||
OperatorNotFound,
|
|
||||||
#[error("Database connection error: {0}")]
|
|
||||||
DatabaseConnection(#[from] db::PoolError),
|
|
||||||
#[error("Database query error: {0}")]
|
|
||||||
DatabaseQuery(#[from] diesel::result::Error),
|
|
||||||
#[error("Proposal manager is unavailable")]
|
|
||||||
Unavailable,
|
|
||||||
#[error("Recovery operators are sleeping")]
|
|
||||||
RecoveryNotActive,
|
|
||||||
#[error("Recovery operators may only vote on operator replacement")]
|
|
||||||
NotAllowedForRecoveryOperator,
|
|
||||||
#[error("A recovery wake-up is already pending or active")]
|
|
||||||
WakeupAlreadyPending,
|
|
||||||
#[error("No active recovery wake-up to cancel")]
|
|
||||||
NoActiveWakeup,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub struct ProposalSummary {
|
|
||||||
pub id: ProposalId,
|
|
||||||
pub kind: ProposalKindTag,
|
|
||||||
pub initiator_id: OperatorIdentityId,
|
|
||||||
pub expires_at: SqliteTimestamp,
|
|
||||||
pub approve_count: i64,
|
|
||||||
pub reject_count: i64,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Actor)]
|
|
||||||
pub struct ProposalManager {
|
|
||||||
pub(crate) store: Arc<dyn ProposalStore>,
|
|
||||||
pub(crate) events: ActorRef<MessageBus>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ProposalManager {
|
|
||||||
pub fn new(db: db::DatabasePool, events: ActorRef<MessageBus>) -> Self {
|
|
||||||
Self::with_store(Arc::new(DieselProposalStore::new(db)), events)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Builds the actor over an arbitrary store, so tests can supply a mock.
|
|
||||||
pub(crate) const fn with_store(
|
|
||||||
store: Arc<dyn ProposalStore>,
|
|
||||||
events: ActorRef<MessageBus>,
|
|
||||||
) -> Self {
|
|
||||||
Self { store, events }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[messages]
|
|
||||||
impl ProposalManager {
|
|
||||||
#[message]
|
|
||||||
pub async fn create_proposal(
|
|
||||||
&mut self,
|
|
||||||
kind: ProposalKind,
|
|
||||||
initiator_id: OperatorIdentityId,
|
|
||||||
ttl_secs: Option<u32>,
|
|
||||||
) -> Result<ProposalId, Error> {
|
|
||||||
let ttl = ttl_secs.unwrap_or(DEFAULT_TTL_SECS);
|
|
||||||
if ttl > MAX_TTL_SECS {
|
|
||||||
return Err(Error::TtlTooLong);
|
|
||||||
}
|
|
||||||
let expires_at =
|
|
||||||
SqliteTimestamp::from(Utc::now() + chrono::Duration::seconds(i64::from(ttl)));
|
|
||||||
|
|
||||||
self.store.create(kind, initiator_id, expires_at).await
|
|
||||||
}
|
|
||||||
|
|
||||||
#[message]
|
|
||||||
pub async fn query_pending(&mut self, operator_id: OperatorIdentityId) -> Vec<ProposalSummary> {
|
|
||||||
self.store
|
|
||||||
.pending_for(operator_id)
|
|
||||||
.await
|
|
||||||
.unwrap_or_else(|e| {
|
|
||||||
warn!(?e, "query_pending failed");
|
|
||||||
vec![]
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
#[message]
|
|
||||||
pub async fn cast_vote(
|
|
||||||
&mut self,
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
operator_id: OperatorIdentityId,
|
|
||||||
approve: bool,
|
|
||||||
signature: Vec<u8>,
|
|
||||||
) -> Result<VoteOutcome, Error> {
|
|
||||||
let proposal = self.store.load(proposal_id).await?;
|
|
||||||
|
|
||||||
// Checked before the status check so AlreadyVoted takes priority.
|
|
||||||
if self.store.has_voted(proposal_id, operator_id).await? {
|
|
||||||
return Err(Error::AlreadyVoted);
|
|
||||||
}
|
|
||||||
|
|
||||||
Self::check_votable(&proposal)?;
|
|
||||||
|
|
||||||
let public_key = self.store.operator_public_key(operator_id).await?;
|
|
||||||
governance::verify_vote(&public_key, proposal_id, approve, &signature)
|
|
||||||
.map_err(|_| Error::InvalidSignature)?;
|
|
||||||
|
|
||||||
self.store
|
|
||||||
.record_vote(NewProposalVote {
|
|
||||||
proposal_id,
|
|
||||||
operator_id,
|
|
||||||
approve,
|
|
||||||
signature,
|
|
||||||
})
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let mut tally = self.store.tally(proposal_id).await?;
|
|
||||||
// §3.5: recovery operators only join the electorate once they are awake.
|
|
||||||
if !self.store.is_recovery_active().await? {
|
|
||||||
tally.total_recovery = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
self.settle(&proposal, &tally).await
|
|
||||||
}
|
|
||||||
|
|
||||||
/// §3.6: Any ordinary operator may request recovery wake-up.
|
|
||||||
/// Fails if a wake-up is already pending or active.
|
|
||||||
#[message]
|
|
||||||
pub async fn request_recovery_wakeup(
|
|
||||||
&mut self,
|
|
||||||
operator_id: OperatorIdentityId,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
if self.store.has_uncancelled_wakeup().await? {
|
|
||||||
return Err(Error::WakeupAlreadyPending);
|
|
||||||
}
|
|
||||||
self.store.request_wakeup(operator_id).await
|
|
||||||
}
|
|
||||||
|
|
||||||
/// §3.6: Any ordinary operator may cancel a pending wake-up request.
|
|
||||||
/// Fails if there is no uncancelled request.
|
|
||||||
#[message]
|
|
||||||
pub async fn cancel_recovery_wakeup(
|
|
||||||
&mut self,
|
|
||||||
operator_id: OperatorIdentityId,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
if self.store.cancel_wakeup(operator_id).await? {
|
|
||||||
Ok(())
|
|
||||||
} else {
|
|
||||||
Err(Error::NoActiveWakeup)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// §3.5: Recovery operators may only vote on operator replacement proposals.
|
|
||||||
/// §3.6: Voting is gated behind recovery being active (14-day window elapsed).
|
|
||||||
#[message]
|
|
||||||
pub async fn cast_recovery_vote(
|
|
||||||
&mut self,
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
recovery_operator_id: RecoveryOperatorIdentityId,
|
|
||||||
approve: bool,
|
|
||||||
signature: Vec<u8>,
|
|
||||||
) -> Result<VoteOutcome, Error> {
|
|
||||||
let proposal = self.store.load(proposal_id).await?;
|
|
||||||
|
|
||||||
if proposal.kind != ProposalKindTag::ReplaceOperator {
|
|
||||||
return Err(Error::NotAllowedForRecoveryOperator);
|
|
||||||
}
|
|
||||||
|
|
||||||
if !self.store.is_recovery_active().await? {
|
|
||||||
return Err(Error::RecoveryNotActive);
|
|
||||||
}
|
|
||||||
|
|
||||||
if self
|
|
||||||
.store
|
|
||||||
.has_recovery_voted(proposal_id, recovery_operator_id)
|
|
||||||
.await?
|
|
||||||
{
|
|
||||||
return Err(Error::AlreadyVoted);
|
|
||||||
}
|
|
||||||
|
|
||||||
Self::check_votable(&proposal)?;
|
|
||||||
|
|
||||||
let public_key = self
|
|
||||||
.store
|
|
||||||
.recovery_operator_public_key(recovery_operator_id)
|
|
||||||
.await?;
|
|
||||||
governance::verify_vote(&public_key, proposal_id, approve, &signature)
|
|
||||||
.map_err(|_| Error::InvalidSignature)?;
|
|
||||||
|
|
||||||
self.store
|
|
||||||
.record_recovery_vote(NewRecoveryProposalVote {
|
|
||||||
proposal_id,
|
|
||||||
recovery_operator_id,
|
|
||||||
approve,
|
|
||||||
signature,
|
|
||||||
})
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let tally = self.store.tally(proposal_id).await?;
|
|
||||||
self.settle(&proposal, &tally).await
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ProposalManager {
|
|
||||||
/// A vote only counts while the proposal is still open.
|
|
||||||
fn check_votable(proposal: &Proposal) -> Result<(), Error> {
|
|
||||||
if proposal.status != ProposalStatus::Pending {
|
|
||||||
return Err(Error::ProposalNotPending);
|
|
||||||
}
|
|
||||||
if proposal.expires_at.0 <= Utc::now() {
|
|
||||||
return Err(Error::ProposalExpired);
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Pure quorum arithmetic — no I/O, so the rules can be tested directly (§3.3).
|
|
||||||
///
|
|
||||||
/// A proposal is rejected once approval has become unreachable: even if every voter
|
|
||||||
/// who has not spoken yet approved, the threshold could not be met.
|
|
||||||
#[must_use]
|
|
||||||
pub(crate) const fn evaluate_quorum(tally: &Tally, requires_full_quorum: bool) -> VoteOutcome {
|
|
||||||
let total_eligible = tally.total_ordinary + tally.total_recovery;
|
|
||||||
|
|
||||||
#[expect(
|
|
||||||
clippy::cast_possible_truncation,
|
|
||||||
clippy::cast_sign_loss,
|
|
||||||
clippy::cast_possible_wrap,
|
|
||||||
clippy::as_conversions,
|
|
||||||
reason = "operator counts are always small positive integers"
|
|
||||||
)]
|
|
||||||
// §3.3: key-rotation proposals require every eligible voter to approve.
|
|
||||||
// §3.5: when recovery is active, recovery operators are eligible too.
|
|
||||||
let threshold: i64 = if requires_full_quorum {
|
|
||||||
total_eligible
|
|
||||||
} else {
|
|
||||||
crate::crypto::shamir::shamir_threshold(tally.total_ordinary as usize) as i64
|
|
||||||
};
|
|
||||||
|
|
||||||
if tally.approve >= threshold {
|
|
||||||
VoteOutcome::Approved
|
|
||||||
} else if tally.reject > total_eligible - threshold {
|
|
||||||
VoteOutcome::Rejected
|
|
||||||
} else {
|
|
||||||
VoteOutcome::Pending
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Applies the quorum rules to a fresh tally and records whatever they decide.
|
|
||||||
async fn settle(&self, proposal: &Proposal, tally: &Tally) -> Result<VoteOutcome, Error> {
|
|
||||||
let outcome = Self::evaluate_quorum(tally, proposal.kind.requires_full_quorum());
|
|
||||||
|
|
||||||
match outcome {
|
|
||||||
VoteOutcome::Approved => self.announce_approval(proposal).await?,
|
|
||||||
VoteOutcome::Rejected => {
|
|
||||||
self.store
|
|
||||||
.set_status(proposal.id, ProposalStatus::Rejected)
|
|
||||||
.await?;
|
|
||||||
}
|
|
||||||
VoteOutcome::Pending => {}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(outcome)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Marks the proposal approved and hands the outcome to whoever owns that kind.
|
|
||||||
///
|
|
||||||
/// The outcome is published, not executed: this actor coordinates voting and nothing
|
|
||||||
/// else. Executors subscribe on the bus, so a vote is answered once the quorum is
|
|
||||||
/// recorded rather than once the effect has landed.
|
|
||||||
async fn announce_approval(&self, proposal: &Proposal) -> Result<(), Error> {
|
|
||||||
self.store
|
|
||||||
.set_status(proposal.id, ProposalStatus::Approved)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let kind = self.store.load_kind(proposal.id, proposal.kind).await?;
|
|
||||||
let _ = self
|
|
||||||
.events
|
|
||||||
.tell(Publish(ProposalApproved {
|
|
||||||
id: proposal.id,
|
|
||||||
kind,
|
|
||||||
}))
|
|
||||||
.await;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests;
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
use crate::db::{models::ProposalId, proposal::ProposalKind};
|
|
||||||
|
|
||||||
/// Published once a proposal reaches its approval threshold.
|
|
||||||
///
|
|
||||||
/// Executors subscribe on the global `MessageBus` and act on the kinds they own;
|
|
||||||
/// `ProposalManager` does not know who acts on an outcome, or whether anyone does.
|
|
||||||
#[derive(Debug, Clone)]
|
|
||||||
pub struct ProposalApproved {
|
|
||||||
pub id: ProposalId,
|
|
||||||
pub kind: ProposalKind,
|
|
||||||
}
|
|
||||||
@@ -1,409 +0,0 @@
|
|||||||
//! Database access for [`super::ProposalManager`], behind a trait.
|
|
||||||
//!
|
|
||||||
//! The actor holds a `dyn ProposalStore` rather than a connection pool, so the quorum
|
|
||||||
//! rules can be exercised against a mock instead of a live SQLite file.
|
|
||||||
|
|
||||||
use super::{Error, ProposalSummary, WAKEUP_DELAY_SECS};
|
|
||||||
use crate::db::{
|
|
||||||
self,
|
|
||||||
functions::unixepoch,
|
|
||||||
models::{
|
|
||||||
NewProposal, NewProposalVote, NewRecoveryProposalVote, NewRecoveryWakeupRequest,
|
|
||||||
OperatorIdentityId, Proposal, ProposalId, ProposalStatus, RecoveryOperatorIdentityId,
|
|
||||||
SqliteTimestamp,
|
|
||||||
},
|
|
||||||
proposal::{ProposalKind, ProposalKindTag},
|
|
||||||
schema,
|
|
||||||
};
|
|
||||||
|
|
||||||
use async_trait::async_trait;
|
|
||||||
use chrono::Utc;
|
|
||||||
use diesel::{
|
|
||||||
ExpressionMethods as _, QueryDsl,
|
|
||||||
dsl::{exists, select},
|
|
||||||
};
|
|
||||||
use diesel_async::{AsyncConnection as _, RunQueryDsl};
|
|
||||||
use std::collections::HashMap;
|
|
||||||
use strum::IntoDiscriminant as _;
|
|
||||||
|
|
||||||
/// Everything the quorum rules need to know about one proposal's votes.
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
||||||
pub struct Tally {
|
|
||||||
pub approve: i64,
|
|
||||||
pub reject: i64,
|
|
||||||
pub total_ordinary: i64,
|
|
||||||
pub total_recovery: i64,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg_attr(test, mockall::automock)]
|
|
||||||
#[async_trait]
|
|
||||||
pub trait ProposalStore: Send + Sync + 'static {
|
|
||||||
/// Writes the proposal and its kind-specific rows in one transaction.
|
|
||||||
async fn create(
|
|
||||||
&self,
|
|
||||||
kind: ProposalKind,
|
|
||||||
initiator_id: OperatorIdentityId,
|
|
||||||
expires_at: SqliteTimestamp,
|
|
||||||
) -> Result<ProposalId, Error>;
|
|
||||||
|
|
||||||
async fn load(&self, id: ProposalId) -> Result<Proposal, Error>;
|
|
||||||
|
|
||||||
async fn load_kind(&self, id: ProposalId, tag: ProposalKindTag) -> Result<ProposalKind, Error>;
|
|
||||||
|
|
||||||
async fn has_voted(
|
|
||||||
&self,
|
|
||||||
id: ProposalId,
|
|
||||||
operator_id: OperatorIdentityId,
|
|
||||||
) -> Result<bool, Error>;
|
|
||||||
|
|
||||||
async fn has_recovery_voted(
|
|
||||||
&self,
|
|
||||||
id: ProposalId,
|
|
||||||
recovery_operator_id: RecoveryOperatorIdentityId,
|
|
||||||
) -> Result<bool, Error>;
|
|
||||||
|
|
||||||
async fn operator_public_key(&self, id: OperatorIdentityId) -> Result<Vec<u8>, Error>;
|
|
||||||
|
|
||||||
async fn recovery_operator_public_key(
|
|
||||||
&self,
|
|
||||||
id: RecoveryOperatorIdentityId,
|
|
||||||
) -> Result<Vec<u8>, Error>;
|
|
||||||
|
|
||||||
async fn record_vote(&self, vote: NewProposalVote) -> Result<(), Error>;
|
|
||||||
|
|
||||||
async fn record_recovery_vote(&self, vote: NewRecoveryProposalVote) -> Result<(), Error>;
|
|
||||||
|
|
||||||
/// Vote counts for one proposal, alongside the size of each electorate.
|
|
||||||
async fn tally(&self, id: ProposalId) -> Result<Tally, Error>;
|
|
||||||
|
|
||||||
async fn set_status(&self, id: ProposalId, status: ProposalStatus) -> Result<(), Error>;
|
|
||||||
|
|
||||||
/// Pending, unexpired proposals this operator has not voted on yet.
|
|
||||||
async fn pending_for(
|
|
||||||
&self,
|
|
||||||
operator_id: OperatorIdentityId,
|
|
||||||
) -> Result<Vec<ProposalSummary>, Error>;
|
|
||||||
|
|
||||||
/// True once an uncancelled wake-up request has outlived the dispute window.
|
|
||||||
async fn is_recovery_active(&self) -> Result<bool, Error>;
|
|
||||||
|
|
||||||
/// True while any wake-up request stands, whether or not the window has elapsed.
|
|
||||||
async fn has_uncancelled_wakeup(&self) -> Result<bool, Error>;
|
|
||||||
|
|
||||||
async fn request_wakeup(&self, operator_id: OperatorIdentityId) -> Result<(), Error>;
|
|
||||||
|
|
||||||
/// Returns false when there was no uncancelled request to cancel.
|
|
||||||
async fn cancel_wakeup(&self, operator_id: OperatorIdentityId) -> Result<bool, Error>;
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct DieselProposalStore {
|
|
||||||
db: db::DatabasePool,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl DieselProposalStore {
|
|
||||||
pub const fn new(db: db::DatabasePool) -> Self {
|
|
||||||
Self { db }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// `NotFound` means the row is absent, which every caller reports as its own error.
|
|
||||||
fn missing(absent: Error) -> impl FnOnce(diesel::result::Error) -> Error {
|
|
||||||
move |e| match e {
|
|
||||||
diesel::result::Error::NotFound => absent,
|
|
||||||
other => Error::DatabaseQuery(other),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[async_trait]
|
|
||||||
impl ProposalStore for DieselProposalStore {
|
|
||||||
async fn create(
|
|
||||||
&self,
|
|
||||||
kind: ProposalKind,
|
|
||||||
initiator_id: OperatorIdentityId,
|
|
||||||
expires_at: SqliteTimestamp,
|
|
||||||
) -> Result<ProposalId, Error> {
|
|
||||||
let id = self
|
|
||||||
.db
|
|
||||||
.get()
|
|
||||||
.await?
|
|
||||||
.transaction(async |conn| {
|
|
||||||
let id: ProposalId = diesel::insert_into(schema::proposal::table)
|
|
||||||
.values(&NewProposal {
|
|
||||||
kind: kind.discriminant(),
|
|
||||||
initiator_id,
|
|
||||||
expires_at,
|
|
||||||
})
|
|
||||||
.returning(schema::proposal::id)
|
|
||||||
.get_result(conn)
|
|
||||||
.await?;
|
|
||||||
db::proposal::insert_kind(conn, id, &kind).await?;
|
|
||||||
Ok::<_, diesel::result::Error>(id)
|
|
||||||
})
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok(id)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn load(&self, id: ProposalId) -> Result<Proposal, Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
schema::proposal::table
|
|
||||||
.find(id)
|
|
||||||
.first(&mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(missing(Error::ProposalNotFound))
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn load_kind(&self, id: ProposalId, tag: ProposalKindTag) -> Result<ProposalKind, Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
db::proposal::load_kind(&mut conn, id, tag)
|
|
||||||
.await
|
|
||||||
.map_err(Error::from)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn has_voted(
|
|
||||||
&self,
|
|
||||||
id: ProposalId,
|
|
||||||
operator_id: OperatorIdentityId,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
select(exists(
|
|
||||||
schema::proposal_vote::table
|
|
||||||
.filter(schema::proposal_vote::proposal_id.eq(id))
|
|
||||||
.filter(schema::proposal_vote::operator_id.eq(operator_id)),
|
|
||||||
))
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(Error::from)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn has_recovery_voted(
|
|
||||||
&self,
|
|
||||||
id: ProposalId,
|
|
||||||
recovery_operator_id: RecoveryOperatorIdentityId,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
select(exists(
|
|
||||||
schema::recovery_proposal_vote::table
|
|
||||||
.filter(schema::recovery_proposal_vote::proposal_id.eq(id))
|
|
||||||
.filter(
|
|
||||||
schema::recovery_proposal_vote::recovery_operator_id.eq(recovery_operator_id),
|
|
||||||
),
|
|
||||||
))
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(Error::from)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn operator_public_key(&self, id: OperatorIdentityId) -> Result<Vec<u8>, Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
schema::operator_identity::table
|
|
||||||
.find(id)
|
|
||||||
.select(schema::operator_identity::public_key)
|
|
||||||
.first(&mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(missing(Error::OperatorNotFound))
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn recovery_operator_public_key(
|
|
||||||
&self,
|
|
||||||
id: RecoveryOperatorIdentityId,
|
|
||||||
) -> Result<Vec<u8>, Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
schema::recovery_operator_identity::table
|
|
||||||
.find(id)
|
|
||||||
.select(schema::recovery_operator_identity::public_key)
|
|
||||||
.first(&mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(missing(Error::OperatorNotFound))
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn record_vote(&self, vote: NewProposalVote) -> Result<(), Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
diesel::insert_into(schema::proposal_vote::table)
|
|
||||||
.values(&vote)
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await?;
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn record_recovery_vote(&self, vote: NewRecoveryProposalVote) -> Result<(), Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
diesel::insert_into(schema::recovery_proposal_vote::table)
|
|
||||||
.values(&vote)
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await?;
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn tally(&self, id: ProposalId) -> Result<Tally, Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
|
|
||||||
let ordinary_approve: i64 = schema::proposal_vote::table
|
|
||||||
.filter(schema::proposal_vote::proposal_id.eq(id))
|
|
||||||
.filter(schema::proposal_vote::approve.eq(true))
|
|
||||||
.count()
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await?;
|
|
||||||
let recovery_approve: i64 = schema::recovery_proposal_vote::table
|
|
||||||
.filter(schema::recovery_proposal_vote::proposal_id.eq(id))
|
|
||||||
.filter(schema::recovery_proposal_vote::approve.eq(true))
|
|
||||||
.count()
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let ordinary_reject: i64 = schema::proposal_vote::table
|
|
||||||
.filter(schema::proposal_vote::proposal_id.eq(id))
|
|
||||||
.filter(schema::proposal_vote::approve.eq(false))
|
|
||||||
.count()
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await?;
|
|
||||||
let recovery_reject: i64 = schema::recovery_proposal_vote::table
|
|
||||||
.filter(schema::recovery_proposal_vote::proposal_id.eq(id))
|
|
||||||
.filter(schema::recovery_proposal_vote::approve.eq(false))
|
|
||||||
.count()
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let total_ordinary: i64 = schema::operator_identity::table
|
|
||||||
.count()
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await?;
|
|
||||||
let total_recovery: i64 = schema::recovery_operator_identity::table
|
|
||||||
.count()
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok(Tally {
|
|
||||||
approve: ordinary_approve + recovery_approve,
|
|
||||||
reject: ordinary_reject + recovery_reject,
|
|
||||||
total_ordinary,
|
|
||||||
total_recovery,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn set_status(&self, id: ProposalId, status: ProposalStatus) -> Result<(), Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
diesel::update(schema::proposal::table.find(id))
|
|
||||||
.set(schema::proposal::status.eq(status))
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await?;
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn pending_for(
|
|
||||||
&self,
|
|
||||||
operator_id: OperatorIdentityId,
|
|
||||||
) -> Result<Vec<ProposalSummary>, Error> {
|
|
||||||
#[expect(
|
|
||||||
clippy::cast_possible_truncation,
|
|
||||||
clippy::as_conversions,
|
|
||||||
reason = "fixme! #84; this will break in 2038"
|
|
||||||
)]
|
|
||||||
let now_ts = Utc::now().timestamp() as i32;
|
|
||||||
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
|
|
||||||
let voted_ids: Vec<ProposalId> = schema::proposal_vote::table
|
|
||||||
.filter(schema::proposal_vote::operator_id.eq(operator_id))
|
|
||||||
.select(schema::proposal_vote::proposal_id)
|
|
||||||
.load(&mut conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let proposals: Vec<Proposal> = schema::proposal::table
|
|
||||||
.filter(schema::proposal::status.eq(ProposalStatus::Pending))
|
|
||||||
.filter(schema::proposal::expires_at.gt(now_ts))
|
|
||||||
.filter(diesel::dsl::not(schema::proposal::id.eq_any(&voted_ids)))
|
|
||||||
.load(&mut conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let ids: Vec<ProposalId> = proposals.iter().map(|p| p.id).collect();
|
|
||||||
let tallies: Vec<(ProposalId, bool, i64)> = schema::proposal_vote::table
|
|
||||||
.filter(schema::proposal_vote::proposal_id.eq_any(&ids))
|
|
||||||
.group_by((
|
|
||||||
schema::proposal_vote::proposal_id,
|
|
||||||
schema::proposal_vote::approve,
|
|
||||||
))
|
|
||||||
.select((
|
|
||||||
schema::proposal_vote::proposal_id,
|
|
||||||
schema::proposal_vote::approve,
|
|
||||||
diesel::dsl::count_star(),
|
|
||||||
))
|
|
||||||
.load(&mut conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let mut by_proposal: HashMap<ProposalId, (i64, i64)> = HashMap::new();
|
|
||||||
for (proposal_id, approve, count) in tallies {
|
|
||||||
let entry = by_proposal.entry(proposal_id).or_insert((0, 0));
|
|
||||||
if approve {
|
|
||||||
entry.0 += count;
|
|
||||||
} else {
|
|
||||||
entry.1 += count;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(proposals
|
|
||||||
.into_iter()
|
|
||||||
.map(|p| {
|
|
||||||
let (approve_count, reject_count) =
|
|
||||||
by_proposal.get(&p.id).copied().unwrap_or((0, 0));
|
|
||||||
ProposalSummary {
|
|
||||||
id: p.id,
|
|
||||||
kind: p.kind,
|
|
||||||
initiator_id: p.initiator_id,
|
|
||||||
expires_at: p.expires_at,
|
|
||||||
approve_count,
|
|
||||||
reject_count,
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.collect())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn is_recovery_active(&self) -> Result<bool, Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
select(exists(
|
|
||||||
schema::recovery_wakeup_request::table
|
|
||||||
.filter(schema::recovery_wakeup_request::cancelled_at.is_null())
|
|
||||||
.filter(
|
|
||||||
schema::recovery_wakeup_request::requested_at
|
|
||||||
.le(unixepoch("now") - WAKEUP_DELAY_SECS),
|
|
||||||
),
|
|
||||||
))
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(Error::from)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn has_uncancelled_wakeup(&self) -> Result<bool, Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
select(exists(schema::recovery_wakeup_request::table.filter(
|
|
||||||
schema::recovery_wakeup_request::cancelled_at.is_null(),
|
|
||||||
)))
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(Error::from)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn request_wakeup(&self, operator_id: OperatorIdentityId) -> Result<(), Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
diesel::insert_into(schema::recovery_wakeup_request::table)
|
|
||||||
.values(&NewRecoveryWakeupRequest {
|
|
||||||
requested_by: operator_id,
|
|
||||||
})
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await?;
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn cancel_wakeup(&self, operator_id: OperatorIdentityId) -> Result<bool, Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
let rows = diesel::update(schema::recovery_wakeup_request::table)
|
|
||||||
.filter(schema::recovery_wakeup_request::cancelled_at.is_null())
|
|
||||||
.set((
|
|
||||||
schema::recovery_wakeup_request::cancelled_by.eq(Some(operator_id)),
|
|
||||||
schema::recovery_wakeup_request::cancelled_at.eq(Some(SqliteTimestamp::now())),
|
|
||||||
))
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await?;
|
|
||||||
Ok(rows > 0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,222 +0,0 @@
|
|||||||
//! The quorum rules, exercised without a database.
|
|
||||||
//!
|
|
||||||
//! These assertions are the point of [`super::store::ProposalStore`]: until the actor took
|
|
||||||
//! its data through a trait, checking that two of three operators carry an ordinary
|
|
||||||
//! proposal meant opening SQLite and registering operators first.
|
|
||||||
|
|
||||||
use super::{
|
|
||||||
ProposalManager, VoteOutcome,
|
|
||||||
store::{MockProposalStore, Tally},
|
|
||||||
};
|
|
||||||
use crate::{
|
|
||||||
actors::GlobalActors,
|
|
||||||
crypto::governance::vote_message,
|
|
||||||
db::{
|
|
||||||
models::{OperatorIdentityId, Proposal, ProposalId, ProposalStatus, SqliteTimestamp},
|
|
||||||
proposal::ProposalKindTag,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
use arbiter_crypto::authn::{SigningContext, SigningKey};
|
|
||||||
use chrono::{Duration, Utc};
|
|
||||||
use std::sync::Arc;
|
|
||||||
|
|
||||||
const fn tally(approve: i64, reject: i64, ordinary: i64, recovery: i64) -> Tally {
|
|
||||||
Tally {
|
|
||||||
approve,
|
|
||||||
reject,
|
|
||||||
total_ordinary: ordinary,
|
|
||||||
total_recovery: recovery,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn simple_majority_approves_at_two_of_three() {
|
|
||||||
assert_eq!(
|
|
||||||
ProposalManager::evaluate_quorum(&tally(2, 0, 3, 0), false),
|
|
||||||
VoteOutcome::Approved
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn one_of_three_is_not_yet_a_majority() {
|
|
||||||
assert_eq!(
|
|
||||||
ProposalManager::evaluate_quorum(&tally(1, 0, 3, 0), false),
|
|
||||||
VoteOutcome::Pending
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn full_quorum_kind_needs_every_voter() {
|
|
||||||
assert_eq!(
|
|
||||||
ProposalManager::evaluate_quorum(&tally(2, 0, 3, 0), true),
|
|
||||||
VoteOutcome::Pending,
|
|
||||||
"two of three must not carry a key-rotation proposal"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn recovery_voters_count_towards_full_quorum() {
|
|
||||||
assert_eq!(
|
|
||||||
ProposalManager::evaluate_quorum(&tally(3, 0, 2, 1), true),
|
|
||||||
VoteOutcome::Approved
|
|
||||||
);
|
|
||||||
assert_eq!(
|
|
||||||
ProposalManager::evaluate_quorum(&tally(2, 0, 2, 1), true),
|
|
||||||
VoteOutcome::Pending,
|
|
||||||
"the sleeping recovery operator still owes a vote"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn rejection_is_decided_once_approval_is_unreachable() {
|
|
||||||
// Threshold is 2 of 3, so two rejections leave at most one approval available.
|
|
||||||
assert_eq!(
|
|
||||||
ProposalManager::evaluate_quorum(&tally(0, 2, 3, 0), false),
|
|
||||||
VoteOutcome::Rejected
|
|
||||||
);
|
|
||||||
assert_eq!(
|
|
||||||
ProposalManager::evaluate_quorum(&tally(0, 1, 3, 0), false),
|
|
||||||
VoteOutcome::Pending,
|
|
||||||
"one rejection still leaves two approvals reachable"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn a_single_rejection_sinks_a_full_quorum_proposal() {
|
|
||||||
assert_eq!(
|
|
||||||
ProposalManager::evaluate_quorum(&tally(2, 1, 3, 0), true),
|
|
||||||
VoteOutcome::Rejected
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
fn pending_proposal(id: ProposalId, kind: ProposalKindTag) -> Proposal {
|
|
||||||
let now = Utc::now();
|
|
||||||
Proposal {
|
|
||||||
id,
|
|
||||||
kind,
|
|
||||||
initiator_id: OperatorIdentityId::from_raw(1),
|
|
||||||
created_at: SqliteTimestamp::from(now),
|
|
||||||
expires_at: SqliteTimestamp::from(now + Duration::days(1)),
|
|
||||||
status: ProposalStatus::Pending,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The mock earns its keep here: reaching quorum must flip the stored status to
|
|
||||||
/// `Approved` exactly once. Signature verification stays real -- only the database is
|
|
||||||
/// stubbed out.
|
|
||||||
#[tokio::test]
|
|
||||||
async fn reaching_quorum_marks_the_proposal_approved() {
|
|
||||||
let id = ProposalId::from_raw(1);
|
|
||||||
let voter = OperatorIdentityId::from_raw(1);
|
|
||||||
let key = SigningKey::generate();
|
|
||||||
let signature = key
|
|
||||||
.sign_message(&vote_message(id, true), SigningContext::GovernanceVote)
|
|
||||||
.expect("signing a vote must succeed");
|
|
||||||
let public_key = key.public_key().to_bytes();
|
|
||||||
|
|
||||||
let mut store = MockProposalStore::new();
|
|
||||||
store
|
|
||||||
.expect_load()
|
|
||||||
.returning(move |id| Ok(pending_proposal(id, ProposalKindTag::TriggerRekey)));
|
|
||||||
store.expect_has_voted().returning(|_, _| Ok(false));
|
|
||||||
store
|
|
||||||
.expect_operator_public_key()
|
|
||||||
.returning(move |_| Ok(public_key.clone()));
|
|
||||||
store.expect_record_vote().returning(|_| Ok(()));
|
|
||||||
store.expect_is_recovery_active().returning(|| Ok(false));
|
|
||||||
store.expect_tally().returning(|_| Ok(tally(1, 0, 1, 0)));
|
|
||||||
store
|
|
||||||
.expect_set_status()
|
|
||||||
.withf(move |got, status| *got == id && *status == ProposalStatus::Approved)
|
|
||||||
.times(1)
|
|
||||||
.returning(|_, _| Ok(()));
|
|
||||||
store
|
|
||||||
.expect_load_kind()
|
|
||||||
.returning(|_, _| Ok(crate::db::proposal::ProposalKind::TriggerRekey));
|
|
||||||
|
|
||||||
let mut manager =
|
|
||||||
ProposalManager::with_store(Arc::new(store), GlobalActors::spawn_message_bus());
|
|
||||||
|
|
||||||
let outcome = manager
|
|
||||||
.cast_vote(id, voter, true, signature.to_bytes())
|
|
||||||
.await
|
|
||||||
.expect("a valid vote must be accepted");
|
|
||||||
|
|
||||||
assert_eq!(outcome, VoteOutcome::Approved);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// A vote that does not reach the threshold must leave the stored status alone.
|
|
||||||
#[tokio::test]
|
|
||||||
async fn a_vote_short_of_quorum_does_not_touch_the_status() {
|
|
||||||
let id = ProposalId::from_raw(7);
|
|
||||||
let voter = OperatorIdentityId::from_raw(2);
|
|
||||||
let key = SigningKey::generate();
|
|
||||||
let signature = key
|
|
||||||
.sign_message(&vote_message(id, true), SigningContext::GovernanceVote)
|
|
||||||
.expect("signing a vote must succeed");
|
|
||||||
let public_key = key.public_key().to_bytes();
|
|
||||||
|
|
||||||
let mut store = MockProposalStore::new();
|
|
||||||
store
|
|
||||||
.expect_load()
|
|
||||||
.returning(move |id| Ok(pending_proposal(id, ProposalKindTag::ApproveSdkClient)));
|
|
||||||
store.expect_has_voted().returning(|_, _| Ok(false));
|
|
||||||
store
|
|
||||||
.expect_operator_public_key()
|
|
||||||
.returning(move |_| Ok(public_key.clone()));
|
|
||||||
store.expect_record_vote().returning(|_| Ok(()));
|
|
||||||
store.expect_is_recovery_active().returning(|| Ok(false));
|
|
||||||
store.expect_tally().returning(|_| Ok(tally(1, 0, 3, 0)));
|
|
||||||
store.expect_set_status().never();
|
|
||||||
|
|
||||||
let mut manager =
|
|
||||||
ProposalManager::with_store(Arc::new(store), GlobalActors::spawn_message_bus());
|
|
||||||
|
|
||||||
let outcome = manager
|
|
||||||
.cast_vote(id, voter, true, signature.to_bytes())
|
|
||||||
.await
|
|
||||||
.expect("a valid vote must be accepted");
|
|
||||||
|
|
||||||
assert_eq!(outcome, VoteOutcome::Pending);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// A sleeping recovery electorate must not raise the bar for an ordinary proposal.
|
|
||||||
#[tokio::test]
|
|
||||||
async fn sleeping_recovery_operators_do_not_count_towards_quorum() {
|
|
||||||
let id = ProposalId::from_raw(9);
|
|
||||||
let voter = OperatorIdentityId::from_raw(3);
|
|
||||||
let key = SigningKey::generate();
|
|
||||||
let signature = key
|
|
||||||
.sign_message(&vote_message(id, true), SigningContext::GovernanceVote)
|
|
||||||
.expect("signing a vote must succeed");
|
|
||||||
let public_key = key.public_key().to_bytes();
|
|
||||||
|
|
||||||
let mut store = MockProposalStore::new();
|
|
||||||
store
|
|
||||||
.expect_load()
|
|
||||||
.returning(move |id| Ok(pending_proposal(id, ProposalKindTag::ApproveSdkClient)));
|
|
||||||
store.expect_has_voted().returning(|_, _| Ok(false));
|
|
||||||
store
|
|
||||||
.expect_operator_public_key()
|
|
||||||
.returning(move |_| Ok(public_key.clone()));
|
|
||||||
store.expect_record_vote().returning(|_| Ok(()));
|
|
||||||
store.expect_is_recovery_active().returning(|| Ok(false));
|
|
||||||
// Two recovery operators exist but are asleep, so the threshold stays at 1 of 1.
|
|
||||||
store.expect_tally().returning(|_| Ok(tally(1, 0, 1, 2)));
|
|
||||||
store.expect_set_status().times(1).returning(|_, _| Ok(()));
|
|
||||||
store.expect_load_kind().returning(|_, _| {
|
|
||||||
Ok(crate::db::proposal::ProposalKind::ApproveSdkClient(
|
|
||||||
crate::db::proposal::approve_sdk_client::Settings { client_id: 1 },
|
|
||||||
))
|
|
||||||
});
|
|
||||||
|
|
||||||
let mut manager =
|
|
||||||
ProposalManager::with_store(Arc::new(store), GlobalActors::spawn_message_bus());
|
|
||||||
|
|
||||||
let outcome = manager
|
|
||||||
.cast_vote(id, voter, true, signature.to_bytes())
|
|
||||||
.await
|
|
||||||
.expect("a valid vote must be accepted");
|
|
||||||
|
|
||||||
assert_eq!(outcome, VoteOutcome::Approved);
|
|
||||||
}
|
|
||||||
@@ -1,15 +1,13 @@
|
|||||||
use crate::{
|
use crate::{
|
||||||
actors::proposal_manager::events::ProposalApproved,
|
|
||||||
crypto::{
|
crypto::{
|
||||||
KeyCell,
|
KeyCell, derive_key,
|
||||||
encryption::v1::{self, Nonce},
|
encryption::v1::{self, Nonce},
|
||||||
integrity::{self, v1::HmacSha256},
|
integrity::v1::HmacSha256,
|
||||||
},
|
},
|
||||||
db::{
|
db::{
|
||||||
self,
|
self,
|
||||||
models::{self, RootKeyHistory, RootKeyHistoryId},
|
models::{self, RootKeyHistory, RootKeyHistoryId},
|
||||||
proposal::ProposalKind,
|
schema::{self},
|
||||||
schema,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
||||||
@@ -21,10 +19,10 @@ use diesel::{
|
|||||||
};
|
};
|
||||||
use diesel_async::{AsyncConnection, RunQueryDsl};
|
use diesel_async::{AsyncConnection, RunQueryDsl};
|
||||||
use hmac::{KeyInit as _, Mac as _};
|
use hmac::{KeyInit as _, Mac as _};
|
||||||
use kameo::{Actor, Reply, actor::ActorRef, messages, prelude::Message};
|
use kameo::{Actor, Reply, actor::ActorRef, messages};
|
||||||
use kameo_actors::message_bus::{MessageBus, Publish};
|
use kameo_actors::message_bus::{MessageBus, Publish};
|
||||||
use strum::{EnumDiscriminants, IntoDiscriminant};
|
use strum::{EnumDiscriminants, IntoDiscriminant};
|
||||||
use tracing::{error, info};
|
use tracing::{error, info, warn};
|
||||||
|
|
||||||
pub mod events {
|
pub mod events {
|
||||||
#[derive(Clone, Copy)]
|
#[derive(Clone, Copy)]
|
||||||
@@ -47,6 +45,8 @@ pub enum Error {
|
|||||||
Sealed,
|
Sealed,
|
||||||
#[error("Invalid key provided")]
|
#[error("Invalid key provided")]
|
||||||
InvalidKey,
|
InvalidKey,
|
||||||
|
#[error("Vault locked: too many failed unseal attempts")]
|
||||||
|
LockedOut,
|
||||||
|
|
||||||
#[error("Requested aead entry not found")]
|
#[error("Requested aead entry not found")]
|
||||||
NotFound,
|
NotFound,
|
||||||
@@ -62,6 +62,9 @@ pub enum Error {
|
|||||||
|
|
||||||
#[error("Broken database")]
|
#[error("Broken database")]
|
||||||
BrokenDatabase,
|
BrokenDatabase,
|
||||||
|
|
||||||
|
#[error("Integrity key version mismatch: envelope uses key {envelope:?}, current key is {current:?}")]
|
||||||
|
KeyVersionMismatch { envelope: RootKeyHistoryId, current: RootKeyHistoryId },
|
||||||
}
|
}
|
||||||
|
|
||||||
struct Unsealed {
|
struct Unsealed {
|
||||||
@@ -81,6 +84,8 @@ enum State {
|
|||||||
Unsealed(Unsealed),
|
Unsealed(Unsealed),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const MAX_UNSEAL_ATTEMPTS: u32 = 5;
|
||||||
|
|
||||||
/// Manages vault root key and tracks current state of the vault (bootstrapped/unbootstrapped, sealed/unsealed).
|
/// Manages vault root key and tracks current state of the vault (bootstrapped/unbootstrapped, sealed/unsealed).
|
||||||
///
|
///
|
||||||
/// Provides API for encrypting and decrypting data using the vault root key.
|
/// Provides API for encrypting and decrypting data using the vault root key.
|
||||||
@@ -90,8 +95,10 @@ pub struct Vault {
|
|||||||
db: db::DatabasePool,
|
db: db::DatabasePool,
|
||||||
state: State,
|
state: State,
|
||||||
events: ActorRef<MessageBus>,
|
events: ActorRef<MessageBus>,
|
||||||
|
unseal_failures: u32,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[messages]
|
||||||
impl Vault {
|
impl Vault {
|
||||||
pub async fn new(db: db::DatabasePool, events: ActorRef<MessageBus>) -> Result<Self, Error> {
|
pub async fn new(db: db::DatabasePool, events: ActorRef<MessageBus>) -> Result<Self, Error> {
|
||||||
let state = {
|
let state = {
|
||||||
@@ -111,10 +118,10 @@ impl Vault {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok(Self { db, state, events })
|
Ok(Self { db, state, events, unseal_failures: 0 })
|
||||||
}
|
}
|
||||||
|
|
||||||
// Exclusive transaction to avoid race conditions if multiple vaults write
|
// Exclusive transaction to avoid race condtions if multiple vaults write
|
||||||
// additional layer of protection against nonce-reuse
|
// additional layer of protection against nonce-reuse
|
||||||
async fn get_new_nonce(
|
async fn get_new_nonce(
|
||||||
pool: &db::DatabasePool,
|
pool: &db::DatabasePool,
|
||||||
@@ -159,37 +166,33 @@ impl Vault {
|
|||||||
State::Sealed { .. } => Err(Error::Sealed),
|
State::Sealed { .. } => Err(Error::Sealed),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#[messages]
|
|
||||||
impl Vault {
|
|
||||||
#[message]
|
#[message]
|
||||||
pub async fn bootstrap(&mut self, mut seal_key: KeyCell) -> Result<(), Error> {
|
pub async fn bootstrap(&mut self, seal_key_raw: SafeCell<Vec<u8>>) -> Result<(), Error> {
|
||||||
if !matches!(&self.state, State::Unbootstrapped) {
|
if !matches!(self.state, State::Unbootstrapped) {
|
||||||
return Err(Error::AlreadyBootstrapped);
|
return Err(Error::AlreadyBootstrapped);
|
||||||
}
|
}
|
||||||
|
let salt = v1::generate_salt();
|
||||||
|
let mut seal_key = derive_key(seal_key_raw, &salt);
|
||||||
let mut root_key = KeyCell::new_secure_random();
|
let mut root_key = KeyCell::new_secure_random();
|
||||||
|
|
||||||
// Zero nonces are fine because they are one-time
|
// Zero nonces are fine because they are one-time
|
||||||
let root_key_nonce = Nonce::default();
|
let root_key_nonce = Nonce::default();
|
||||||
let data_encryption_nonce = Nonce::default();
|
let data_encryption_nonce = Nonce::default();
|
||||||
|
|
||||||
// Generate salt (kept for schema compat)
|
let root_key_ciphertext: Vec<u8> = root_key.0.read_inline(|reader| {
|
||||||
let root_key_salt = v1::generate_salt();
|
let root_key_reader = reader.as_slice();
|
||||||
|
|
||||||
let root_key_ciphertext: Vec<u8> = root_key.0.read_inline(|rk| {
|
|
||||||
seal_key
|
seal_key
|
||||||
.encrypt(&root_key_nonce, v1::ROOT_KEY_TAG, rk.as_slice())
|
.encrypt(&root_key_nonce, v1::ROOT_KEY_TAG, root_key_reader)
|
||||||
.map_err(|err| {
|
.map_err(|err| {
|
||||||
error!(?err, "Fatal bootstrap error");
|
error!(?err, "Fatal bootstrap error");
|
||||||
Error::Encryption(err)
|
Error::Encryption(err)
|
||||||
})
|
})
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
let data_encryption_nonce_bytes = data_encryption_nonce.to_vec();
|
|
||||||
let mut conn = self.db.get().await?;
|
let mut conn = self.db.get().await?;
|
||||||
|
|
||||||
|
let data_encryption_nonce_bytes = data_encryption_nonce.to_vec();
|
||||||
let root_key_history_id = conn
|
let root_key_history_id = conn
|
||||||
.transaction(async |conn| {
|
.transaction(async |conn| {
|
||||||
let root_key_history_id = insert_into(schema::root_key_history::table)
|
let root_key_history_id = insert_into(schema::root_key_history::table)
|
||||||
@@ -199,7 +202,7 @@ impl Vault {
|
|||||||
root_key_encryption_nonce: root_key_nonce.to_vec(),
|
root_key_encryption_nonce: root_key_nonce.to_vec(),
|
||||||
data_encryption_nonce: data_encryption_nonce_bytes.clone(),
|
data_encryption_nonce: data_encryption_nonce_bytes.clone(),
|
||||||
schema_version: 1,
|
schema_version: 1,
|
||||||
salt: root_key_salt.to_vec(),
|
salt: salt.to_vec(),
|
||||||
})
|
})
|
||||||
.returning(schema::root_key_history::id)
|
.returning(schema::root_key_history::id)
|
||||||
.get_result(&mut *conn)
|
.get_result(&mut *conn)
|
||||||
@@ -228,47 +231,70 @@ impl Vault {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[message]
|
#[message]
|
||||||
pub async fn try_unseal(&mut self, mut seal_key: KeyCell) -> Result<(), Error> {
|
pub async fn try_unseal(&mut self, seal_key_raw: SafeCell<Vec<u8>>) -> Result<(), Error> {
|
||||||
|
if self.unseal_failures >= MAX_UNSEAL_ATTEMPTS {
|
||||||
|
return Err(Error::LockedOut);
|
||||||
|
}
|
||||||
|
|
||||||
let State::Sealed {
|
let State::Sealed {
|
||||||
root_key_history_id,
|
root_key_history_id,
|
||||||
} = &self.state
|
} = &self.state
|
||||||
else {
|
else {
|
||||||
return Err(Error::NotBootstrapped);
|
return Err(Error::NotBootstrapped);
|
||||||
};
|
};
|
||||||
let root_key_history_id = *root_key_history_id;
|
|
||||||
|
|
||||||
// We don't want to hold connection while doing expensive work
|
// We don't want to hold connection while doing expensive KDF work
|
||||||
let current_key = {
|
let current_key = {
|
||||||
let mut conn = self.db.get().await?;
|
let mut conn = self.db.get().await?;
|
||||||
schema::root_key_history::table
|
schema::root_key_history::table
|
||||||
.filter(schema::root_key_history::id.eq(root_key_history_id))
|
.filter(schema::root_key_history::id.eq(*root_key_history_id))
|
||||||
.select(RootKeyHistory::as_select())
|
.select(RootKeyHistory::as_select())
|
||||||
.first(&mut conn)
|
.first(&mut conn)
|
||||||
.await?
|
.await?
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let salt = ¤t_key.salt;
|
||||||
|
let salt = v1::Salt::try_from(salt.as_slice()).map_err(|_| {
|
||||||
|
error!("Broken database: invalid salt for root key");
|
||||||
|
Error::BrokenDatabase
|
||||||
|
})?;
|
||||||
|
let mut seal_key = derive_key(seal_key_raw, &salt);
|
||||||
|
|
||||||
|
let mut root_key = SafeCell::new(current_key.ciphertext.clone());
|
||||||
|
|
||||||
let nonce =
|
let nonce =
|
||||||
Nonce::try_from(current_key.root_key_encryption_nonce.as_slice()).map_err(|()| {
|
Nonce::try_from(current_key.root_key_encryption_nonce.as_slice()).map_err(|()| {
|
||||||
error!("Broken database: invalid nonce for root key");
|
error!("Broken database: invalid nonce for root key");
|
||||||
Error::BrokenDatabase
|
Error::BrokenDatabase
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
let mut root_key_bytes = SafeCell::new(current_key.ciphertext.clone());
|
if seal_key
|
||||||
seal_key
|
.decrypt_in_place(&nonce, v1::ROOT_KEY_TAG, &mut root_key)
|
||||||
.decrypt_in_place(&nonce, v1::ROOT_KEY_TAG, &mut root_key_bytes)
|
.is_err()
|
||||||
.map_err(|err| {
|
{
|
||||||
error!(?err, "Failed to unseal root key: invalid seal key");
|
self.unseal_failures += 1;
|
||||||
Error::InvalidKey
|
if self.unseal_failures >= MAX_UNSEAL_ATTEMPTS {
|
||||||
})?;
|
error!(
|
||||||
|
attempts = self.unseal_failures,
|
||||||
let root_key = KeyCell::try_from(root_key_bytes).map_err(|()| {
|
"Vault locked: maximum failed unseal attempts reached"
|
||||||
error!("Broken database: invalid encryption key size");
|
);
|
||||||
Error::BrokenDatabase
|
} else {
|
||||||
})?;
|
warn!(
|
||||||
|
attempts = self.unseal_failures,
|
||||||
|
remaining = MAX_UNSEAL_ATTEMPTS - self.unseal_failures,
|
||||||
|
"Failed unseal attempt"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return Err(Error::InvalidKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
self.unseal_failures = 0;
|
||||||
self.state = State::Unsealed(Unsealed {
|
self.state = State::Unsealed(Unsealed {
|
||||||
root_key_history_id: current_key.id,
|
root_key_history_id: current_key.id,
|
||||||
root_key,
|
root_key: KeyCell::try_from(root_key).map_err(|err| {
|
||||||
|
error!(?err, "Broken database: invalid encryption key size");
|
||||||
|
Error::BrokenDatabase
|
||||||
|
})?,
|
||||||
});
|
});
|
||||||
|
|
||||||
info!("Vault unsealed successfully");
|
info!("Vault unsealed successfully");
|
||||||
@@ -277,79 +303,10 @@ impl Vault {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Re-encrypts the root key with `new_seal_key` and records a new root_key_history row.
|
/// Decrypts an AEAD entry. The `aad` must match the value used at encryption time;
|
||||||
/// Called after a Shamir re-key so the old seal key is no longer sufficient to unseal.
|
/// a mismatch causes authentication failure, preventing cross-wallet key swaps.
|
||||||
#[message]
|
#[message]
|
||||||
pub async fn rekey_root_key(&mut self, mut new_seal_key: KeyCell) -> Result<(), Error> {
|
pub async fn decrypt(&mut self, aead_id: i32, aad: Vec<u8>) -> Result<SafeCell<Vec<u8>>, Error> {
|
||||||
let Unsealed {
|
|
||||||
root_key,
|
|
||||||
root_key_history_id,
|
|
||||||
} = Self::expect_unsealed(&mut self.state)?;
|
|
||||||
|
|
||||||
let new_nonce = Nonce::default();
|
|
||||||
let new_salt = v1::generate_salt();
|
|
||||||
|
|
||||||
let new_ciphertext: Vec<u8> = root_key.0.read_inline(|rk| {
|
|
||||||
new_seal_key
|
|
||||||
.encrypt(&new_nonce, v1::ROOT_KEY_TAG, rk.as_slice())
|
|
||||||
.map_err(|err| {
|
|
||||||
error!(?err, "Fatal rekey error");
|
|
||||||
Error::Encryption(err)
|
|
||||||
})
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let data_encryption_nonce = Nonce::default();
|
|
||||||
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
let new_root_key_history_id: i32 = conn
|
|
||||||
.transaction(async |conn| {
|
|
||||||
let new_id = insert_into(schema::root_key_history::table)
|
|
||||||
.values(&models::NewRootKeyHistory {
|
|
||||||
ciphertext: new_ciphertext,
|
|
||||||
tag: v1::ROOT_KEY_TAG.to_vec(),
|
|
||||||
root_key_encryption_nonce: new_nonce.to_vec(),
|
|
||||||
data_encryption_nonce: data_encryption_nonce.to_vec(),
|
|
||||||
schema_version: 1,
|
|
||||||
salt: new_salt.to_vec(),
|
|
||||||
})
|
|
||||||
.returning(schema::root_key_history::id)
|
|
||||||
.get_result::<i32>(&mut *conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
update(schema::arbiter_settings::table)
|
|
||||||
.set(schema::arbiter_settings::root_key_id.eq(new_id))
|
|
||||||
.execute(&mut *conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Result::<_, diesel::result::Error>::Ok(new_id)
|
|
||||||
})
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
*root_key_history_id = RootKeyHistoryId::from_raw(new_root_key_history_id);
|
|
||||||
info!("Vault root key rekeyed successfully");
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
#[message]
|
|
||||||
pub async fn seal(&mut self) -> Result<(), Error> {
|
|
||||||
let Unsealed {
|
|
||||||
root_key_history_id,
|
|
||||||
..
|
|
||||||
} = Self::expect_unsealed(&mut self.state)?;
|
|
||||||
|
|
||||||
self.state = State::Sealed {
|
|
||||||
root_key_history_id: *root_key_history_id,
|
|
||||||
};
|
|
||||||
let _ = self.events.tell(Publish(events::VaultResealed)).await;
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Server-side cryptographic operations
|
|
||||||
#[messages]
|
|
||||||
impl Vault {
|
|
||||||
#[message]
|
|
||||||
pub async fn decrypt(&mut self, aead_id: i32) -> Result<SafeCell<Vec<u8>>, Error> {
|
|
||||||
let Unsealed { root_key, .. } = Self::expect_unsealed(&mut self.state)?;
|
let Unsealed { root_key, .. } = Self::expect_unsealed(&mut self.state)?;
|
||||||
|
|
||||||
let row: models::AeadEncrypted = {
|
let row: models::AeadEncrypted = {
|
||||||
@@ -371,13 +328,15 @@ impl Vault {
|
|||||||
Error::BrokenDatabase
|
Error::BrokenDatabase
|
||||||
})?;
|
})?;
|
||||||
let mut output = SafeCell::new(row.ciphertext);
|
let mut output = SafeCell::new(row.ciphertext);
|
||||||
root_key.decrypt_in_place(&nonce, v1::TAG, &mut output)?;
|
root_key.decrypt_in_place(&nonce, &aad, &mut output)?;
|
||||||
Ok(output)
|
Ok(output)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Creates a new `aead_encrypted` entry and returns its ID.
|
||||||
|
/// The `aad` is bound into the ciphertext and must be reproduced exactly at decryption time.
|
||||||
// Creates new `aead_encrypted` entry in the database and returns it's ID
|
// Creates new `aead_encrypted` entry in the database and returns it's ID
|
||||||
#[message]
|
#[message]
|
||||||
pub async fn create_new(&mut self, mut plaintext: SafeCell<Vec<u8>>) -> Result<i32, Error> {
|
pub async fn create_new(&mut self, mut plaintext: SafeCell<Vec<u8>>, aad: Vec<u8>) -> Result<i32, Error> {
|
||||||
let Unsealed {
|
let Unsealed {
|
||||||
root_key,
|
root_key,
|
||||||
root_key_history_id,
|
root_key_history_id,
|
||||||
@@ -389,7 +348,7 @@ impl Vault {
|
|||||||
|
|
||||||
let mut ciphertext_buffer = plaintext.write();
|
let mut ciphertext_buffer = plaintext.write();
|
||||||
let ciphertext_buffer: &mut Vec<u8> = ciphertext_buffer.as_mut();
|
let ciphertext_buffer: &mut Vec<u8> = ciphertext_buffer.as_mut();
|
||||||
root_key.encrypt_in_place(&nonce, v1::TAG, &mut *ciphertext_buffer)?;
|
root_key.encrypt_in_place(&nonce, &aad, &mut *ciphertext_buffer)?;
|
||||||
|
|
||||||
let ciphertext = std::mem::take(ciphertext_buffer);
|
let ciphertext = std::mem::take(ciphertext_buffer);
|
||||||
|
|
||||||
@@ -449,7 +408,10 @@ impl Vault {
|
|||||||
} = Self::expect_unsealed(&mut self.state)?;
|
} = Self::expect_unsealed(&mut self.state)?;
|
||||||
|
|
||||||
if *root_key_history_id != key_version {
|
if *root_key_history_id != key_version {
|
||||||
return Ok(false);
|
return Err(Error::KeyVersionMismatch {
|
||||||
|
envelope: key_version,
|
||||||
|
current: *root_key_history_id,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut hmac = root_key.0.read_inline(|k| {
|
let mut hmac = root_key.0.read_inline(|k| {
|
||||||
@@ -461,60 +423,18 @@ impl Vault {
|
|||||||
|
|
||||||
Ok(hmac.verify_slice(&expected_mac).is_ok())
|
Ok(hmac.verify_slice(&expected_mac).is_ok())
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
impl Message<ProposalApproved> for Vault {
|
#[message]
|
||||||
type Reply = ();
|
pub async fn seal(&mut self) -> Result<(), Error> {
|
||||||
|
let Unsealed {
|
||||||
|
root_key_history_id,
|
||||||
|
..
|
||||||
|
} = Self::expect_unsealed(&mut self.state)?;
|
||||||
|
|
||||||
/// Every subscriber sees every approval and acts only on the kinds it owns.
|
self.state = State::Sealed {
|
||||||
async fn handle(
|
root_key_history_id: *root_key_history_id,
|
||||||
&mut self,
|
|
||||||
msg: ProposalApproved,
|
|
||||||
_ctx: &mut kameo::prelude::Context<Self, Self::Reply>,
|
|
||||||
) -> Self::Reply {
|
|
||||||
let ProposalKind::ApproveSdkClient(settings) = msg.kind else {
|
|
||||||
return;
|
|
||||||
};
|
};
|
||||||
|
let _ = self.events.tell(Publish(events::VaultResealed)).await;
|
||||||
if let Err(error) = self.approve_sdk_client(settings.client_id).await {
|
|
||||||
error!(
|
|
||||||
?error,
|
|
||||||
proposal_id = msg.id.to_raw(),
|
|
||||||
"Failed to execute an approved proposal"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Vault {
|
|
||||||
/// Attests an approved SDK client with the root key.
|
|
||||||
///
|
|
||||||
/// Builds the envelope from its parts rather than calling `integrity::sign_entity`,
|
|
||||||
/// which would have this actor ask itself for a signature and deadlock.
|
|
||||||
async fn approve_sdk_client(&mut self, client_id: i32) -> Result<(), Error> {
|
|
||||||
use crate::peers::client::ClientCredentials;
|
|
||||||
use arbiter_crypto::authn;
|
|
||||||
|
|
||||||
// Cloned so the connection does not hold a borrow of `self` across `sign_integrity`.
|
|
||||||
let db = self.db.clone();
|
|
||||||
let mut conn = db.get().await?;
|
|
||||||
|
|
||||||
let pubkey_bytes: Vec<u8> = schema::program_client::table
|
|
||||||
.find(client_id)
|
|
||||||
.select(schema::program_client::public_key)
|
|
||||||
.first(&mut conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let pubkey =
|
|
||||||
authn::PublicKey::try_from(pubkey_bytes.as_slice()).map_err(|()| Error::InvalidKey)?;
|
|
||||||
let credentials = ClientCredentials { pubkey };
|
|
||||||
|
|
||||||
let (entity_id, mac_input) = integrity::envelope_input(&credentials, client_id);
|
|
||||||
let (key_version, mac) = self.sign_integrity(mac_input)?;
|
|
||||||
|
|
||||||
integrity::store_envelope::<ClientCredentials>(&mut conn, entity_id, key_version, mac)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -522,6 +442,7 @@ impl Vault {
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use crate::actors::GlobalActors;
|
use crate::actors::GlobalActors;
|
||||||
|
use crate::db::models::RootKeyHistory;
|
||||||
use arbiter_crypto::safecell::SafeCellHandle as _;
|
use arbiter_crypto::safecell::SafeCellHandle as _;
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
@@ -530,7 +451,8 @@ mod tests {
|
|||||||
let mut actor = Vault::new(db.clone(), GlobalActors::spawn_message_bus())
|
let mut actor = Vault::new(db.clone(), GlobalActors::spawn_message_bus())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
actor.bootstrap(KeyCell::from([0u8; 32])).await.unwrap();
|
let seal_key = SafeCell::new(b"test-seal-key".to_vec());
|
||||||
|
actor.bootstrap(seal_key).await.unwrap();
|
||||||
actor
|
actor
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -539,12 +461,13 @@ mod tests {
|
|||||||
async fn nonce_monotonic_even_when_nonce_allocation_interleaves() {
|
async fn nonce_monotonic_even_when_nonce_allocation_interleaves() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = bootstrapped_actor(&db).await;
|
let mut actor = bootstrapped_actor(&db).await;
|
||||||
|
|
||||||
let State::Unsealed(Unsealed {
|
let State::Unsealed(Unsealed {
|
||||||
root_key_history_id,
|
root_key_history_id,
|
||||||
..
|
..
|
||||||
}) = actor.state
|
}) = actor.state
|
||||||
else {
|
else {
|
||||||
panic!("expected unsealed state");
|
panic!("expected unsealed state")
|
||||||
};
|
};
|
||||||
|
|
||||||
let n1 = Vault::get_new_nonce(&db, root_key_history_id)
|
let n1 = Vault::get_new_nonce(&db, root_key_history_id)
|
||||||
@@ -564,7 +487,7 @@ mod tests {
|
|||||||
assert_eq!(root_row.data_encryption_nonce, n2.to_vec());
|
assert_eq!(root_row.data_encryption_nonce, n2.to_vec());
|
||||||
|
|
||||||
let id = actor
|
let id = actor
|
||||||
.create_new(SafeCell::new(b"post-interleave".to_vec()))
|
.create_new(SafeCell::new(b"post-interleave".to_vec()), b"test-aad".to_vec())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let row: models::AeadEncrypted = schema::aead_encrypted::table
|
let row: models::AeadEncrypted = schema::aead_encrypted::table
|
||||||
|
|||||||
@@ -1,780 +0,0 @@
|
|||||||
use std::collections::HashMap;
|
|
||||||
|
|
||||||
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
|
||||||
use diesel::{ExpressionMethods as _, QueryDsl};
|
|
||||||
use diesel_async::RunQueryDsl;
|
|
||||||
use kameo::{Actor, actor::ActorRef, messages, prelude::Message};
|
|
||||||
use rand_core::{OsRng, RngCore as _};
|
|
||||||
use tracing::error;
|
|
||||||
|
|
||||||
use crate::{
|
|
||||||
actors::{
|
|
||||||
proposal_manager::events::ProposalApproved,
|
|
||||||
vault::{Bootstrap, RekeyRootKey, TryUnseal, Vault},
|
|
||||||
},
|
|
||||||
crypto::{KeyCell, derive_key, encryption::v1::Nonce, shamir, shamir::shamir_threshold},
|
|
||||||
db::{
|
|
||||||
self, models,
|
|
||||||
proposal::{ProposalKind, replace_operator},
|
|
||||||
schema,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
#[derive(Debug, thiserror::Error)]
|
|
||||||
pub enum Error {
|
|
||||||
#[error("Already coordinating a bootstrap")]
|
|
||||||
AlreadyBootstrapping,
|
|
||||||
#[error("Already coordinating an unseal")]
|
|
||||||
AlreadyUnsealing,
|
|
||||||
#[error("Rekey not in progress")]
|
|
||||||
NotRekeying,
|
|
||||||
#[error("Bootstrap not in progress")]
|
|
||||||
NotBootstrapping,
|
|
||||||
#[error("Unseal not in progress")]
|
|
||||||
NotUnsealing,
|
|
||||||
#[error("Operator already contributed")]
|
|
||||||
DuplicateContribution,
|
|
||||||
#[error("Operator not found in database")]
|
|
||||||
OperatorNotFound,
|
|
||||||
#[error("Invalid passphrase (decryption failed)")]
|
|
||||||
InvalidPassphrase,
|
|
||||||
#[error("Shamir error: {0}")]
|
|
||||||
Shamir(String),
|
|
||||||
#[error("Database connection error: {0}")]
|
|
||||||
DatabaseConnection(#[from] db::PoolError),
|
|
||||||
#[error("Database query error: {0}")]
|
|
||||||
DatabaseQuery(#[from] diesel::result::Error),
|
|
||||||
#[error("Encryption error")]
|
|
||||||
Encryption,
|
|
||||||
#[error("Vault error")]
|
|
||||||
VaultError,
|
|
||||||
#[error("Two-operator vaults require at least one recovery share")]
|
|
||||||
TwoOperatorsRequireRecovery,
|
|
||||||
#[error("Broken database")]
|
|
||||||
BrokenDatabase,
|
|
||||||
}
|
|
||||||
|
|
||||||
// Passphrases stored as plain Vec<u8> (not SafeCell) so CoordinatorState is Sync.
|
|
||||||
// They are ephemeral and dropped immediately after use.
|
|
||||||
enum CoordinatorState {
|
|
||||||
Idle,
|
|
||||||
Bootstrapping {
|
|
||||||
declared_count: usize,
|
|
||||||
recovery_count: usize,
|
|
||||||
passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
recovery_passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
},
|
|
||||||
Unsealing {
|
|
||||||
threshold: usize,
|
|
||||||
ordinary_passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
recovery_passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
},
|
|
||||||
/// Shamir re-key after `replace_operator` or `trigger_rekey` is approved (§3.3).
|
|
||||||
/// Collects new passphrases from all current operators, then generates a fresh seal key,
|
|
||||||
/// re-splits it, and re-encrypts the vault root key.
|
|
||||||
Rekeying {
|
|
||||||
ordinary_count: usize,
|
|
||||||
recovery_count: usize,
|
|
||||||
passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
recovery_passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Actor)]
|
|
||||||
pub struct VaultCoordinator {
|
|
||||||
db: db::DatabasePool,
|
|
||||||
vault: ActorRef<Vault>,
|
|
||||||
state: CoordinatorState,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl VaultCoordinator {
|
|
||||||
pub const fn new(db: db::DatabasePool, vault: ActorRef<Vault>) -> Self {
|
|
||||||
Self {
|
|
||||||
db,
|
|
||||||
vault,
|
|
||||||
state: CoordinatorState::Idle,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const SHARE_AAD: &[u8] = b"arbiter/shamir-share/v1";
|
|
||||||
|
|
||||||
fn encrypt_share(
|
|
||||||
passphrase_bytes: Vec<u8>,
|
|
||||||
share: &[u8],
|
|
||||||
) -> Result<(Vec<u8>, Vec<u8>, Vec<u8>), Error> {
|
|
||||||
let mut share_salt = vec![0u8; 32];
|
|
||||||
OsRng.fill_bytes(&mut share_salt);
|
|
||||||
|
|
||||||
let mut passphrase_cell = SafeCell::new(passphrase_bytes);
|
|
||||||
let mut share_seal_key = derive_key(&mut passphrase_cell, &share_salt);
|
|
||||||
|
|
||||||
let nonce = Nonce::default();
|
|
||||||
let encrypted_share = share_seal_key
|
|
||||||
.encrypt(&nonce, SHARE_AAD, share)
|
|
||||||
.map_err(|_| Error::Encryption)?;
|
|
||||||
|
|
||||||
Ok((encrypted_share, nonce.to_vec(), share_salt))
|
|
||||||
}
|
|
||||||
|
|
||||||
fn decrypt_share(
|
|
||||||
passphrase_bytes: Vec<u8>,
|
|
||||||
encrypted_share: Vec<u8>,
|
|
||||||
share_nonce_bytes: &[u8],
|
|
||||||
share_salt: &[u8],
|
|
||||||
operator_id: i32,
|
|
||||||
) -> Result<Vec<u8>, Error> {
|
|
||||||
let nonce = Nonce::try_from(share_nonce_bytes).map_err(|()| {
|
|
||||||
error!(operator_id, "Invalid nonce in DB");
|
|
||||||
Error::BrokenDatabase
|
|
||||||
})?;
|
|
||||||
|
|
||||||
let mut passphrase_cell = SafeCell::new(passphrase_bytes);
|
|
||||||
let mut share_seal_key = derive_key(&mut passphrase_cell, share_salt);
|
|
||||||
|
|
||||||
let mut share_buffer = SafeCell::new(encrypted_share);
|
|
||||||
share_seal_key
|
|
||||||
.decrypt_in_place(&nonce, SHARE_AAD, &mut share_buffer)
|
|
||||||
.map_err(|_| Error::InvalidPassphrase)?;
|
|
||||||
|
|
||||||
Ok(share_buffer.read().clone())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// §3.4: Split the seal key across ordinary + recovery operators.
|
|
||||||
/// Threshold = `shamir_threshold(ordinary_count)`; total shares = ordinary + recovery.
|
|
||||||
/// When `ordinary_count` == 1 (threshold = 1), vsss-rs does not support a proper split,
|
|
||||||
/// so each share is the seal key itself — any single participant can reconstruct.
|
|
||||||
async fn finalize_bootstrap(
|
|
||||||
db: db::DatabasePool,
|
|
||||||
vault: ActorRef<Vault>,
|
|
||||||
ordinary_passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
recovery_passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
let ordinary_count = ordinary_passphrases.len();
|
|
||||||
let recovery_count = recovery_passphrases.len();
|
|
||||||
let total = ordinary_count + recovery_count;
|
|
||||||
let threshold = shamir_threshold(ordinary_count);
|
|
||||||
|
|
||||||
let mut seal_key_bytes = [0u8; 32];
|
|
||||||
OsRng.fill_bytes(&mut seal_key_bytes);
|
|
||||||
|
|
||||||
// threshold == 1 means any single share reconstructs the key (degenerate split).
|
|
||||||
// vsss-rs requires threshold >= 2, so we store the key directly in this case.
|
|
||||||
let shares: Vec<Vec<u8>> = if threshold >= 2 {
|
|
||||||
shamir::split_key(threshold, total, &seal_key_bytes, OsRng)
|
|
||||||
.map_err(|e| Error::Shamir(e.to_string()))?
|
|
||||||
} else {
|
|
||||||
std::iter::repeat_with(|| seal_key_bytes.to_vec()).take(total).collect()
|
|
||||||
};
|
|
||||||
|
|
||||||
let seal_key = KeyCell::from(seal_key_bytes);
|
|
||||||
|
|
||||||
let mut conn = db.get().await?;
|
|
||||||
let mut shares_iter = shares.into_iter();
|
|
||||||
|
|
||||||
for (operator_id_raw, passphrase_bytes) in ordinary_passphrases {
|
|
||||||
let share = shares_iter
|
|
||||||
.next()
|
|
||||||
.expect("split_key returned enough shares");
|
|
||||||
let (encrypted_share, nonce_bytes, share_salt) = encrypt_share(passphrase_bytes, &share)?;
|
|
||||||
|
|
||||||
diesel::replace_into(schema::operator::table)
|
|
||||||
.values((
|
|
||||||
schema::operator::id.eq(Some(operator_id_raw)),
|
|
||||||
schema::operator::share.eq(&encrypted_share),
|
|
||||||
schema::operator::share_nonce.eq(&nonce_bytes),
|
|
||||||
schema::operator::share_salt.eq(&share_salt),
|
|
||||||
schema::operator::created_at.eq(models::SqliteTimestamp::now()),
|
|
||||||
schema::operator::updated_at.eq(models::SqliteTimestamp::now()),
|
|
||||||
))
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await?;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (recovery_id_raw, passphrase_bytes) in recovery_passphrases {
|
|
||||||
let share = shares_iter
|
|
||||||
.next()
|
|
||||||
.expect("split_key returned enough shares");
|
|
||||||
let (encrypted_share, nonce_bytes, share_salt) = encrypt_share(passphrase_bytes, &share)?;
|
|
||||||
|
|
||||||
diesel::replace_into(schema::recovery_operator::table)
|
|
||||||
.values((
|
|
||||||
schema::recovery_operator::id.eq(recovery_id_raw),
|
|
||||||
schema::recovery_operator::share.eq(&encrypted_share),
|
|
||||||
schema::recovery_operator::share_nonce.eq(&nonce_bytes),
|
|
||||||
schema::recovery_operator::share_salt.eq(&share_salt),
|
|
||||||
schema::recovery_operator::created_at.eq(models::SqliteTimestamp::now()),
|
|
||||||
schema::recovery_operator::updated_at.eq(models::SqliteTimestamp::now()),
|
|
||||||
))
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await?;
|
|
||||||
}
|
|
||||||
|
|
||||||
vault.ask(Bootstrap { seal_key }).await.map_err(|err| {
|
|
||||||
error!(?err, "Vault bootstrap failed");
|
|
||||||
Error::VaultError
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// §3.5: Unseal using any threshold-sized mix of ordinary + recovery shares.
|
|
||||||
async fn finalize_unseal(
|
|
||||||
db: db::DatabasePool,
|
|
||||||
vault: ActorRef<Vault>,
|
|
||||||
ordinary_passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
recovery_passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
let mut conn = db.get().await?;
|
|
||||||
|
|
||||||
// Determine whether shares were stored as raw keys (threshold=1) or vsss-rs splits (threshold>=2).
|
|
||||||
let ordinary_operator_count: i64 = schema::operator::table
|
|
||||||
.count()
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await?;
|
|
||||||
let threshold = shamir_threshold(ordinary_operator_count as usize);
|
|
||||||
|
|
||||||
let mut shares: Vec<Vec<u8>> = Vec::new();
|
|
||||||
|
|
||||||
for (operator_id_raw, passphrase_bytes) in ordinary_passphrases {
|
|
||||||
let (encrypted_share, share_nonce_bytes, share_salt): (Vec<u8>, Vec<u8>, Vec<u8>) =
|
|
||||||
schema::operator::table
|
|
||||||
.filter(schema::operator::id.eq(Some(operator_id_raw)))
|
|
||||||
.select((
|
|
||||||
schema::operator::share,
|
|
||||||
schema::operator::share_nonce,
|
|
||||||
schema::operator::share_salt,
|
|
||||||
))
|
|
||||||
.first(&mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::OperatorNotFound)?;
|
|
||||||
|
|
||||||
shares.push(decrypt_share(
|
|
||||||
passphrase_bytes,
|
|
||||||
encrypted_share,
|
|
||||||
&share_nonce_bytes,
|
|
||||||
&share_salt,
|
|
||||||
operator_id_raw,
|
|
||||||
)?);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (recovery_id_raw, passphrase_bytes) in recovery_passphrases {
|
|
||||||
let (encrypted_share, share_nonce_bytes, share_salt): (Vec<u8>, Vec<u8>, Vec<u8>) =
|
|
||||||
schema::recovery_operator::table
|
|
||||||
.find(recovery_id_raw)
|
|
||||||
.select((
|
|
||||||
schema::recovery_operator::share,
|
|
||||||
schema::recovery_operator::share_nonce,
|
|
||||||
schema::recovery_operator::share_salt,
|
|
||||||
))
|
|
||||||
.first(&mut conn)
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::OperatorNotFound)?;
|
|
||||||
|
|
||||||
shares.push(decrypt_share(
|
|
||||||
passphrase_bytes,
|
|
||||||
encrypted_share,
|
|
||||||
&share_nonce_bytes,
|
|
||||||
&share_salt,
|
|
||||||
recovery_id_raw,
|
|
||||||
)?);
|
|
||||||
}
|
|
||||||
|
|
||||||
// When threshold==1, shares are raw 32-byte seal keys (vsss-rs cannot split 1-of-N).
|
|
||||||
// Any single decrypted share is the key itself.
|
|
||||||
let seal_key_bytes: [u8; 32] = if threshold <= 1 {
|
|
||||||
let raw = shares
|
|
||||||
.into_iter()
|
|
||||||
.next()
|
|
||||||
.ok_or_else(|| Error::Shamir("No shares available".into()))?;
|
|
||||||
raw.try_into()
|
|
||||||
.map_err(|_| Error::Shamir("Invalid share length".into()))?
|
|
||||||
} else {
|
|
||||||
shamir::combine_shares(&shares).map_err(|e| Error::Shamir(e.to_string()))?
|
|
||||||
};
|
|
||||||
|
|
||||||
let seal_key = KeyCell::from(seal_key_bytes);
|
|
||||||
|
|
||||||
vault.ask(TryUnseal { seal_key }).await.map_err(|err| {
|
|
||||||
error!(?err, "Vault unseal failed");
|
|
||||||
Error::VaultError
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// §3.3: Generate a fresh seal key, split across current operators, re-encrypt the vault root key.
|
|
||||||
/// Called after `replace_operator` or `trigger_rekey` is approved and all contributors submit.
|
|
||||||
async fn finalize_rekey(
|
|
||||||
db: db::DatabasePool,
|
|
||||||
vault: ActorRef<Vault>,
|
|
||||||
ordinary_passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
recovery_passphrases: HashMap<i32, Vec<u8>>,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
let ordinary_count = ordinary_passphrases.len();
|
|
||||||
let recovery_count = recovery_passphrases.len();
|
|
||||||
let total = ordinary_count + recovery_count;
|
|
||||||
let threshold = shamir_threshold(ordinary_count);
|
|
||||||
|
|
||||||
let mut new_seal_key_bytes = [0u8; 32];
|
|
||||||
OsRng.fill_bytes(&mut new_seal_key_bytes);
|
|
||||||
|
|
||||||
let shares: Vec<Vec<u8>> = if threshold >= 2 {
|
|
||||||
shamir::split_key(threshold, total, &new_seal_key_bytes, OsRng)
|
|
||||||
.map_err(|e| Error::Shamir(e.to_string()))?
|
|
||||||
} else {
|
|
||||||
std::iter::repeat_with(|| new_seal_key_bytes.to_vec())
|
|
||||||
.take(total)
|
|
||||||
.collect()
|
|
||||||
};
|
|
||||||
|
|
||||||
let mut conn = db.get().await?;
|
|
||||||
let mut shares_iter = shares.into_iter();
|
|
||||||
|
|
||||||
for (operator_id_raw, passphrase_bytes) in ordinary_passphrases {
|
|
||||||
let share = shares_iter
|
|
||||||
.next()
|
|
||||||
.expect("split_key returned enough shares");
|
|
||||||
let (encrypted_share, nonce_bytes, share_salt) = encrypt_share(passphrase_bytes, &share)?;
|
|
||||||
|
|
||||||
diesel::replace_into(schema::operator::table)
|
|
||||||
.values((
|
|
||||||
schema::operator::id.eq(Some(operator_id_raw)),
|
|
||||||
schema::operator::share.eq(&encrypted_share),
|
|
||||||
schema::operator::share_nonce.eq(&nonce_bytes),
|
|
||||||
schema::operator::share_salt.eq(&share_salt),
|
|
||||||
schema::operator::created_at.eq(models::SqliteTimestamp::now()),
|
|
||||||
schema::operator::updated_at.eq(models::SqliteTimestamp::now()),
|
|
||||||
))
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await?;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (recovery_id_raw, passphrase_bytes) in recovery_passphrases {
|
|
||||||
let share = shares_iter
|
|
||||||
.next()
|
|
||||||
.expect("split_key returned enough shares");
|
|
||||||
let (encrypted_share, nonce_bytes, share_salt) = encrypt_share(passphrase_bytes, &share)?;
|
|
||||||
|
|
||||||
diesel::replace_into(schema::recovery_operator::table)
|
|
||||||
.values((
|
|
||||||
schema::recovery_operator::id.eq(recovery_id_raw),
|
|
||||||
schema::recovery_operator::share.eq(&encrypted_share),
|
|
||||||
schema::recovery_operator::share_nonce.eq(&nonce_bytes),
|
|
||||||
schema::recovery_operator::share_salt.eq(&share_salt),
|
|
||||||
schema::recovery_operator::created_at.eq(models::SqliteTimestamp::now()),
|
|
||||||
schema::recovery_operator::updated_at.eq(models::SqliteTimestamp::now()),
|
|
||||||
))
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await?;
|
|
||||||
}
|
|
||||||
|
|
||||||
drop(conn);
|
|
||||||
|
|
||||||
let new_seal_key = KeyCell::from(new_seal_key_bytes);
|
|
||||||
vault
|
|
||||||
.ask(RekeyRootKey { new_seal_key })
|
|
||||||
.await
|
|
||||||
.map_err(|err| {
|
|
||||||
error!(?err, "Vault rekey failed");
|
|
||||||
Error::VaultError
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
#[messages]
|
|
||||||
impl VaultCoordinator {
|
|
||||||
/// Phase 1 of multi-operator bootstrap: declare the committee size.
|
|
||||||
#[message]
|
|
||||||
#[expect(clippy::unused_async, reason = "kameo requires messages to be async")]
|
|
||||||
pub async fn start_bootstrap(
|
|
||||||
&mut self,
|
|
||||||
operator_id: i32,
|
|
||||||
declared_count: usize,
|
|
||||||
recovery_count: usize,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
let _ = operator_id; // fixme!: any authenticated operator may announce the committee size. the first call wins
|
|
||||||
if !matches!(self.state, CoordinatorState::Idle) {
|
|
||||||
return Err(Error::AlreadyBootstrapping);
|
|
||||||
}
|
|
||||||
if declared_count == 2 && recovery_count == 0 {
|
|
||||||
return Err(Error::TwoOperatorsRequireRecovery);
|
|
||||||
}
|
|
||||||
self.state = CoordinatorState::Bootstrapping {
|
|
||||||
declared_count,
|
|
||||||
recovery_count,
|
|
||||||
passphrases: HashMap::new(),
|
|
||||||
recovery_passphrases: HashMap::new(),
|
|
||||||
};
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Phase 2 of multi-operator bootstrap: ordinary operator contributes a passphrase.
|
|
||||||
/// Returns Ok(true) when all ordinary + recovery operators contributed and bootstrap finalized.
|
|
||||||
#[message]
|
|
||||||
pub async fn contribute_bootstrap(
|
|
||||||
&mut self,
|
|
||||||
operator_id: i32,
|
|
||||||
mut passphrase: SafeCell<Vec<u8>>,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
let CoordinatorState::Bootstrapping {
|
|
||||||
declared_count,
|
|
||||||
recovery_count,
|
|
||||||
passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
} = &mut self.state
|
|
||||||
else {
|
|
||||||
return Err(Error::NotBootstrapping);
|
|
||||||
};
|
|
||||||
|
|
||||||
if passphrases.contains_key(&operator_id) {
|
|
||||||
return Err(Error::DuplicateContribution);
|
|
||||||
}
|
|
||||||
|
|
||||||
let passphrase_bytes = passphrase.read().to_vec();
|
|
||||||
passphrases.insert(operator_id, passphrase_bytes);
|
|
||||||
|
|
||||||
if passphrases.len() < *declared_count || recovery_passphrases.len() < *recovery_count {
|
|
||||||
return Ok(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
let CoordinatorState::Bootstrapping {
|
|
||||||
passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
..
|
|
||||||
} = std::mem::replace(&mut self.state, CoordinatorState::Idle)
|
|
||||||
else {
|
|
||||||
unreachable!()
|
|
||||||
};
|
|
||||||
|
|
||||||
finalize_bootstrap(
|
|
||||||
self.db.clone(),
|
|
||||||
self.vault.clone(),
|
|
||||||
passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
)
|
|
||||||
.await?;
|
|
||||||
Ok(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Phase 2 of multi-operator bootstrap: recovery operator contributes a passphrase.
|
|
||||||
/// Returns Ok(true) when all contributors are in and bootstrap finalized.
|
|
||||||
#[message]
|
|
||||||
pub async fn contribute_recovery_bootstrap(
|
|
||||||
&mut self,
|
|
||||||
recovery_operator_id: i32,
|
|
||||||
mut passphrase: SafeCell<Vec<u8>>,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
let CoordinatorState::Bootstrapping {
|
|
||||||
declared_count,
|
|
||||||
recovery_count,
|
|
||||||
passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
} = &mut self.state
|
|
||||||
else {
|
|
||||||
return Err(Error::NotBootstrapping);
|
|
||||||
};
|
|
||||||
|
|
||||||
if recovery_passphrases.contains_key(&recovery_operator_id) {
|
|
||||||
return Err(Error::DuplicateContribution);
|
|
||||||
}
|
|
||||||
|
|
||||||
let passphrase_bytes = passphrase.read().to_vec();
|
|
||||||
recovery_passphrases.insert(recovery_operator_id, passphrase_bytes);
|
|
||||||
|
|
||||||
if passphrases.len() < *declared_count || recovery_passphrases.len() < *recovery_count {
|
|
||||||
return Ok(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
let CoordinatorState::Bootstrapping {
|
|
||||||
passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
..
|
|
||||||
} = std::mem::replace(&mut self.state, CoordinatorState::Idle)
|
|
||||||
else {
|
|
||||||
unreachable!()
|
|
||||||
};
|
|
||||||
|
|
||||||
finalize_bootstrap(
|
|
||||||
self.db.clone(),
|
|
||||||
self.vault.clone(),
|
|
||||||
passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
)
|
|
||||||
.await?;
|
|
||||||
Ok(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Contribute a passphrase for vault unseal (ordinary operator).
|
|
||||||
/// Returns Ok(true) when threshold reached and vault is unsealed.
|
|
||||||
#[message]
|
|
||||||
pub async fn contribute_unseal(
|
|
||||||
&mut self,
|
|
||||||
operator_id: i32,
|
|
||||||
mut passphrase: SafeCell<Vec<u8>>,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
self.ensure_unsealing_state().await?;
|
|
||||||
|
|
||||||
let CoordinatorState::Unsealing {
|
|
||||||
threshold,
|
|
||||||
ordinary_passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
} = &mut self.state
|
|
||||||
else {
|
|
||||||
return Err(Error::NotUnsealing);
|
|
||||||
};
|
|
||||||
|
|
||||||
if ordinary_passphrases.contains_key(&operator_id) {
|
|
||||||
return Err(Error::DuplicateContribution);
|
|
||||||
}
|
|
||||||
|
|
||||||
let passphrase_bytes = passphrase.read().to_vec();
|
|
||||||
ordinary_passphrases.insert(operator_id, passphrase_bytes);
|
|
||||||
|
|
||||||
if ordinary_passphrases.len() + recovery_passphrases.len() < *threshold {
|
|
||||||
return Ok(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
self.do_finalize_unseal().await
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Contribute a passphrase for vault unseal (recovery operator, §3.5).
|
|
||||||
/// Recovery operators may contribute during unseal when recovery is active.
|
|
||||||
/// Returns Ok(true) when threshold reached and vault is unsealed.
|
|
||||||
#[message]
|
|
||||||
pub async fn contribute_recovery_unseal(
|
|
||||||
&mut self,
|
|
||||||
recovery_operator_id: i32,
|
|
||||||
mut passphrase: SafeCell<Vec<u8>>,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
self.ensure_unsealing_state().await?;
|
|
||||||
|
|
||||||
let CoordinatorState::Unsealing {
|
|
||||||
threshold,
|
|
||||||
ordinary_passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
} = &mut self.state
|
|
||||||
else {
|
|
||||||
return Err(Error::NotUnsealing);
|
|
||||||
};
|
|
||||||
|
|
||||||
if recovery_passphrases.contains_key(&recovery_operator_id) {
|
|
||||||
return Err(Error::DuplicateContribution);
|
|
||||||
}
|
|
||||||
|
|
||||||
let passphrase_bytes = passphrase.read().to_vec();
|
|
||||||
recovery_passphrases.insert(recovery_operator_id, passphrase_bytes);
|
|
||||||
|
|
||||||
if ordinary_passphrases.len() + recovery_passphrases.len() < *threshold {
|
|
||||||
return Ok(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
self.do_finalize_unseal().await
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl VaultCoordinator {
|
|
||||||
/// Initializes `CoordinatorState::Unsealing` on first call if still `Idle`.
|
|
||||||
/// Threshold is based on ordinary operator count only (§3.4).
|
|
||||||
async fn ensure_unsealing_state(&mut self) -> Result<(), Error> {
|
|
||||||
if matches!(self.state, CoordinatorState::Idle) {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
let ordinary_count: i64 = schema::operator::table
|
|
||||||
.count()
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await?;
|
|
||||||
let threshold = shamir_threshold(usize::try_from(ordinary_count).unwrap_or_default());
|
|
||||||
self.state = CoordinatorState::Unsealing {
|
|
||||||
threshold,
|
|
||||||
ordinary_passphrases: HashMap::new(),
|
|
||||||
recovery_passphrases: HashMap::new(),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Moves state back to Idle and calls finalize_unseal.
|
|
||||||
async fn do_finalize_unseal(&mut self) -> Result<bool, Error> {
|
|
||||||
let CoordinatorState::Unsealing {
|
|
||||||
ordinary_passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
..
|
|
||||||
} = std::mem::replace(&mut self.state, CoordinatorState::Idle)
|
|
||||||
else {
|
|
||||||
unreachable!()
|
|
||||||
};
|
|
||||||
|
|
||||||
finalize_unseal(
|
|
||||||
self.db.clone(),
|
|
||||||
self.vault.clone(),
|
|
||||||
ordinary_passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
)
|
|
||||||
.await?;
|
|
||||||
Ok(true)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn do_finalize_rekey(&mut self) -> Result<bool, Error> {
|
|
||||||
let CoordinatorState::Rekeying {
|
|
||||||
passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
..
|
|
||||||
} = std::mem::replace(&mut self.state, CoordinatorState::Idle)
|
|
||||||
else {
|
|
||||||
unreachable!()
|
|
||||||
};
|
|
||||||
|
|
||||||
finalize_rekey(
|
|
||||||
self.db.clone(),
|
|
||||||
self.vault.clone(),
|
|
||||||
passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
)
|
|
||||||
.await?;
|
|
||||||
Ok(true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[messages]
|
|
||||||
impl VaultCoordinator {
|
|
||||||
/// Begin Shamir re-key after a key-rotation proposal is approved (§3.3).
|
|
||||||
/// Queries the current operator and recovery operator counts from the DB,
|
|
||||||
/// then transitions to Rekeying state awaiting contributions from all of them.
|
|
||||||
#[message]
|
|
||||||
pub async fn start_rekey(&mut self) -> Result<(), Error> {
|
|
||||||
if !matches!(self.state, CoordinatorState::Idle) {
|
|
||||||
return Err(Error::AlreadyBootstrapping);
|
|
||||||
}
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
let ordinary_count: i64 = schema::operator_identity::table
|
|
||||||
.count()
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await?;
|
|
||||||
let recovery_count: i64 = schema::recovery_operator_identity::table
|
|
||||||
.count()
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await?;
|
|
||||||
self.state = CoordinatorState::Rekeying {
|
|
||||||
ordinary_count: ordinary_count as usize,
|
|
||||||
recovery_count: recovery_count as usize,
|
|
||||||
passphrases: HashMap::new(),
|
|
||||||
recovery_passphrases: HashMap::new(),
|
|
||||||
};
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Contribute an ordinary operator passphrase for the re-key.
|
|
||||||
/// Returns Ok(true) when all contributors have submitted and the re-key is complete.
|
|
||||||
#[message]
|
|
||||||
pub async fn contribute_rekey(
|
|
||||||
&mut self,
|
|
||||||
operator_id: i32,
|
|
||||||
mut passphrase: SafeCell<Vec<u8>>,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
let CoordinatorState::Rekeying {
|
|
||||||
ordinary_count,
|
|
||||||
recovery_count,
|
|
||||||
passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
} = &mut self.state
|
|
||||||
else {
|
|
||||||
return Err(Error::NotRekeying);
|
|
||||||
};
|
|
||||||
|
|
||||||
if passphrases.contains_key(&operator_id) {
|
|
||||||
return Err(Error::DuplicateContribution);
|
|
||||||
}
|
|
||||||
|
|
||||||
passphrases.insert(operator_id, passphrase.read().to_vec());
|
|
||||||
|
|
||||||
if passphrases.len() < *ordinary_count || recovery_passphrases.len() < *recovery_count {
|
|
||||||
return Ok(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
self.do_finalize_rekey().await
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Contribute a recovery operator passphrase for the re-key.
|
|
||||||
/// Returns Ok(true) when all contributors have submitted and the re-key is complete.
|
|
||||||
#[message]
|
|
||||||
pub async fn contribute_recovery_rekey(
|
|
||||||
&mut self,
|
|
||||||
recovery_operator_id: i32,
|
|
||||||
mut passphrase: SafeCell<Vec<u8>>,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
let CoordinatorState::Rekeying {
|
|
||||||
ordinary_count,
|
|
||||||
recovery_count,
|
|
||||||
passphrases,
|
|
||||||
recovery_passphrases,
|
|
||||||
} = &mut self.state
|
|
||||||
else {
|
|
||||||
return Err(Error::NotRekeying);
|
|
||||||
};
|
|
||||||
|
|
||||||
if recovery_passphrases.contains_key(&recovery_operator_id) {
|
|
||||||
return Err(Error::DuplicateContribution);
|
|
||||||
}
|
|
||||||
|
|
||||||
recovery_passphrases.insert(recovery_operator_id, passphrase.read().to_vec());
|
|
||||||
|
|
||||||
if passphrases.len() < *ordinary_count || recovery_passphrases.len() < *recovery_count {
|
|
||||||
return Ok(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
self.do_finalize_rekey().await
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Message<ProposalApproved> for VaultCoordinator {
|
|
||||||
type Reply = ();
|
|
||||||
|
|
||||||
/// Every subscriber sees every approval and acts only on the kinds it owns.
|
|
||||||
async fn handle(
|
|
||||||
&mut self,
|
|
||||||
msg: ProposalApproved,
|
|
||||||
_ctx: &mut kameo::prelude::Context<Self, Self::Reply>,
|
|
||||||
) -> Self::Reply {
|
|
||||||
let result = match msg.kind {
|
|
||||||
ProposalKind::ReplaceOperator(settings) => self.replace_operator(&settings).await,
|
|
||||||
ProposalKind::TriggerRekey => self.start_rekey().await,
|
|
||||||
_ => return,
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Err(error) = result {
|
|
||||||
error!(
|
|
||||||
?error,
|
|
||||||
proposal_id = msg.id.to_raw(),
|
|
||||||
"Failed to execute an approved proposal"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl VaultCoordinator {
|
|
||||||
/// Replaces the operator's public key in place, keeping their id and history, drops the
|
|
||||||
/// share that key no longer matches, then begins a coordinated re-key (§3.3).
|
|
||||||
async fn replace_operator(
|
|
||||||
&mut self,
|
|
||||||
settings: &replace_operator::Settings,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
let mut conn = self.db.get().await?;
|
|
||||||
|
|
||||||
diesel::update(schema::operator_identity::table)
|
|
||||||
.filter(schema::operator_identity::id.eq(settings.old_operator_id))
|
|
||||||
.set(schema::operator_identity::public_key.eq(&settings.new_pubkey))
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
// Drop the stale Shamir share; finalize_rekey stores a fresh one.
|
|
||||||
diesel::delete(schema::operator::table)
|
|
||||||
.filter(schema::operator::id.eq(Some(settings.old_operator_id)))
|
|
||||||
.execute(&mut conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
drop(conn);
|
|
||||||
|
|
||||||
self.start_rekey().await
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -61,12 +61,12 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn derive_seal_key_deterministic() {
|
fn derive_seal_key_deterministic() {
|
||||||
static PASSWORD: &[u8] = b"password";
|
static PASSWORD: &[u8] = b"password";
|
||||||
let mut password = SafeCell::new(PASSWORD.to_vec());
|
let password = SafeCell::new(PASSWORD.to_vec());
|
||||||
let mut password2 = SafeCell::new(PASSWORD.to_vec());
|
let password2 = SafeCell::new(PASSWORD.to_vec());
|
||||||
let salt = generate_salt();
|
let salt = generate_salt();
|
||||||
|
|
||||||
let mut key1 = derive_key(&mut password, &salt);
|
let mut key1 = derive_key(password, &salt);
|
||||||
let mut key2 = derive_key(&mut password2, &salt);
|
let mut key2 = derive_key(password2, &salt);
|
||||||
|
|
||||||
let key1_reader = key1.0.read();
|
let key1_reader = key1.0.read();
|
||||||
let key2_reader = key2.0.read();
|
let key2_reader = key2.0.read();
|
||||||
@@ -77,10 +77,10 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn successful_derive() {
|
fn successful_derive() {
|
||||||
static PASSWORD: &[u8] = b"password";
|
static PASSWORD: &[u8] = b"password";
|
||||||
let mut password = SafeCell::new(PASSWORD.to_vec());
|
let password = SafeCell::new(PASSWORD.to_vec());
|
||||||
let salt = generate_salt();
|
let salt = generate_salt();
|
||||||
|
|
||||||
let mut key = derive_key(&mut password, &salt);
|
let mut key = derive_key(password, &salt);
|
||||||
let key_reader = key.0.read();
|
let key_reader = key.0.read();
|
||||||
|
|
||||||
assert_ne!(key_reader.as_slice(), &[0u8; 32][..]);
|
assert_ne!(key_reader.as_slice(), &[0u8; 32][..]);
|
||||||
|
|||||||
@@ -1,99 +0,0 @@
|
|||||||
//! Canonical encoding and verification of governance vote signatures (§3.3).
|
|
||||||
|
|
||||||
use crate::db::models::ProposalId;
|
|
||||||
use arbiter_crypto::authn::{self, SigningContext};
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, thiserror::Error)]
|
|
||||||
pub enum VerifyError {
|
|
||||||
#[error("Malformed operator public key")]
|
|
||||||
PublicKey,
|
|
||||||
#[error("Malformed vote signature")]
|
|
||||||
Signature,
|
|
||||||
#[error("Signature does not match this vote")]
|
|
||||||
Mismatch,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Canonical bytes an operator signs when voting: `proposal_id` as i64 big-endian,
|
|
||||||
/// followed by the approve flag as one byte.
|
|
||||||
///
|
|
||||||
/// The flag is part of the message on purpose: without it an approval could be
|
|
||||||
/// replayed as a rejection of the same proposal.
|
|
||||||
#[must_use]
|
|
||||||
pub fn vote_message(proposal_id: ProposalId, approve: bool) -> Vec<u8> {
|
|
||||||
let mut message = Vec::with_capacity(9);
|
|
||||||
message.extend_from_slice(&i64::from(proposal_id.to_raw()).to_be_bytes());
|
|
||||||
message.push(u8::from(approve));
|
|
||||||
message
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Verifies a vote signature against an operator's stored public key.
|
|
||||||
pub fn verify_vote(
|
|
||||||
public_key: &[u8],
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
approve: bool,
|
|
||||||
signature: &[u8],
|
|
||||||
) -> Result<(), VerifyError> {
|
|
||||||
let public_key = authn::PublicKey::try_from(public_key).map_err(|()| VerifyError::PublicKey)?;
|
|
||||||
let signature = authn::Signature::try_from(signature).map_err(|()| VerifyError::Signature)?;
|
|
||||||
|
|
||||||
if public_key.verify_message(
|
|
||||||
&vote_message(proposal_id, approve),
|
|
||||||
SigningContext::GovernanceVote,
|
|
||||||
&signature,
|
|
||||||
) {
|
|
||||||
Ok(())
|
|
||||||
} else {
|
|
||||||
Err(VerifyError::Mismatch)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests {
|
|
||||||
use super::{VerifyError, verify_vote, vote_message};
|
|
||||||
use crate::db::models::ProposalId;
|
|
||||||
use arbiter_crypto::authn::{SigningContext, SigningKey};
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn vote_message_is_the_id_then_the_approve_flag() {
|
|
||||||
let message = vote_message(ProposalId::from_raw(0x0102), true);
|
|
||||||
assert_eq!(message, vec![0, 0, 0, 0, 0, 0, 1, 2, 1]);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn verify_vote_accepts_a_matching_signature() {
|
|
||||||
let key = SigningKey::generate();
|
|
||||||
let id = ProposalId::from_raw(42);
|
|
||||||
let signature = key
|
|
||||||
.sign_message(&vote_message(id, true), SigningContext::GovernanceVote)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
verify_vote(
|
|
||||||
&key.public_key().to_bytes(),
|
|
||||||
id,
|
|
||||||
true,
|
|
||||||
&signature.to_bytes(),
|
|
||||||
)
|
|
||||||
.expect("a signature over this exact vote must verify");
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The decisive one: an approval must not verify as a rejection of the same
|
|
||||||
/// proposal, or a captured vote could be replayed with its meaning flipped.
|
|
||||||
#[test]
|
|
||||||
fn verify_vote_rejects_a_flipped_approve_flag() {
|
|
||||||
let key = SigningKey::generate();
|
|
||||||
let id = ProposalId::from_raw(42);
|
|
||||||
let signature = key
|
|
||||||
.sign_message(&vote_message(id, true), SigningContext::GovernanceVote)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
assert!(matches!(
|
|
||||||
verify_vote(
|
|
||||||
&key.public_key().to_bytes(),
|
|
||||||
id,
|
|
||||||
false,
|
|
||||||
&signature.to_bytes()
|
|
||||||
),
|
|
||||||
Err(VerifyError::Mismatch)
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -2,7 +2,7 @@ use crate::{
|
|||||||
actors::vault::{self, GetState, SignIntegrity, Vault, VerifyIntegrity},
|
actors::vault::{self, GetState, SignIntegrity, Vault, VerifyIntegrity},
|
||||||
db::{
|
db::{
|
||||||
self,
|
self,
|
||||||
models::{IntegrityEnvelope, NewIntegrityEnvelope, RootKeyHistoryId},
|
models::{IntegrityEnvelope, NewIntegrityEnvelope},
|
||||||
schema::integrity_envelope,
|
schema::integrity_envelope,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -109,7 +109,11 @@ pub async fn sign_entity<E: Integrable>(
|
|||||||
entity: &E,
|
entity: &E,
|
||||||
entity_id: impl IntoId,
|
entity_id: impl IntoId,
|
||||||
) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
let (entity_id, mac_input) = envelope_input::<E>(entity, entity_id);
|
let payload_hash = payload_hash(&entity);
|
||||||
|
|
||||||
|
let entity_id = entity_id.into_id();
|
||||||
|
|
||||||
|
let mac_input = build_mac_input(E::KIND, &entity_id, E::VERSION, &payload_hash);
|
||||||
|
|
||||||
let (key_version, mac) =
|
let (key_version, mac) =
|
||||||
vault
|
vault
|
||||||
@@ -120,31 +124,6 @@ pub async fn sign_entity<E: Integrable>(
|
|||||||
_ => Error::VaultSend,
|
_ => Error::VaultSend,
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
store_envelope::<E>(conn, entity_id, key_version, mac)
|
|
||||||
.await
|
|
||||||
.map_err(db::DatabaseError::from)?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The entity id and the bytes the root key covers, as a pair.
|
|
||||||
///
|
|
||||||
/// Split out of [`sign_entity`] so the `Vault` actor can build an envelope from inside a
|
|
||||||
/// message handler, where asking itself for a signature would deadlock.
|
|
||||||
pub fn envelope_input<E: Integrable>(entity: &E, entity_id: impl IntoId) -> (Vec<u8>, Vec<u8>) {
|
|
||||||
let payload_hash = payload_hash(entity);
|
|
||||||
let entity_id = entity_id.into_id();
|
|
||||||
let mac_input = build_mac_input(E::KIND, &entity_id, E::VERSION, &payload_hash);
|
|
||||||
(entity_id, mac_input)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Stores the integrity envelope for one entity, replacing any envelope it already has.
|
|
||||||
pub async fn store_envelope<E: Integrable>(
|
|
||||||
conn: &mut impl AsyncConnection<Backend = Sqlite>,
|
|
||||||
entity_id: Vec<u8>,
|
|
||||||
key_version: RootKeyHistoryId,
|
|
||||||
mac: Vec<u8>,
|
|
||||||
) -> Result<(), diesel::result::Error> {
|
|
||||||
insert_into(integrity_envelope::table)
|
insert_into(integrity_envelope::table)
|
||||||
.values(NewIntegrityEnvelope {
|
.values(NewIntegrityEnvelope {
|
||||||
entity_kind: E::KIND.to_owned(),
|
entity_kind: E::KIND.to_owned(),
|
||||||
@@ -164,7 +143,8 @@ pub async fn store_envelope<E: Integrable>(
|
|||||||
integrity_envelope::mac.eq(mac),
|
integrity_envelope::mac.eq(mac),
|
||||||
))
|
))
|
||||||
.execute(conn)
|
.execute(conn)
|
||||||
.await?;
|
.await
|
||||||
|
.map_err(db::DatabaseError::from)?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@@ -212,7 +192,9 @@ pub async fn verify_entity<E: Integrable>(
|
|||||||
Ok(false) => Err(Error::MacMismatch {
|
Ok(false) => Err(Error::MacMismatch {
|
||||||
entity_kind: E::KIND,
|
entity_kind: E::KIND,
|
||||||
}),
|
}),
|
||||||
Err(SendError::HandlerError(vault::Error::Sealed)) => Ok(AttestationStatus::Unavailable),
|
Err(SendError::HandlerError(
|
||||||
|
vault::Error::Sealed | vault::Error::KeyVersionMismatch { .. },
|
||||||
|
)) => Ok(AttestationStatus::Unavailable),
|
||||||
Err(_) => Err(Error::VaultSend),
|
Err(_) => Err(Error::VaultSend),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -235,6 +217,8 @@ mod tests {
|
|||||||
},
|
},
|
||||||
db::{self, schema},
|
db::{self, schema},
|
||||||
};
|
};
|
||||||
|
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
||||||
|
|
||||||
use super::{Error, Integrable, sign_entity, verify_entity};
|
use super::{Error, Integrable, sign_entity, verify_entity};
|
||||||
#[derive(Clone, arbiter_macros::Hashable)]
|
#[derive(Clone, arbiter_macros::Hashable)]
|
||||||
struct DummyEntity {
|
struct DummyEntity {
|
||||||
@@ -253,7 +237,7 @@ mod tests {
|
|||||||
);
|
);
|
||||||
actor
|
actor
|
||||||
.ask(Bootstrap {
|
.ask(Bootstrap {
|
||||||
seal_key: crate::crypto::KeyCell::from([0u8; 32]),
|
seal_key_raw: SafeCell::new(b"integrity-test-seal-key".to_vec()),
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
@@ -349,4 +333,47 @@ mod tests {
|
|||||||
.unwrap_err();
|
.unwrap_err();
|
||||||
assert!(matches!(err, Error::MacMismatch { .. }));
|
assert!(matches!(err, Error::MacMismatch { .. }));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn key_version_mismatch_returns_unavailable_not_mac_mismatch() {
|
||||||
|
use crate::db::schema::integrity_envelope;
|
||||||
|
use super::AttestationStatus;
|
||||||
|
|
||||||
|
const ENTITY_ID: &[u8] = b"entity-id-rotation-test";
|
||||||
|
|
||||||
|
let db = db::create_test_pool().await;
|
||||||
|
let vault = bootstrapped_vault(&db).await;
|
||||||
|
let mut conn = db.get().await.unwrap();
|
||||||
|
|
||||||
|
let entity = DummyEntity {
|
||||||
|
payload_version: 1,
|
||||||
|
payload: b"payload-v1".to_vec(),
|
||||||
|
};
|
||||||
|
|
||||||
|
sign_entity(&mut conn, &vault, &entity, ENTITY_ID)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
// Simulate key rotation: update the stored key_version to a stale value.
|
||||||
|
// After real rotation the vault's root_key_history_id would advance, but
|
||||||
|
// here we achieve the same mismatch by back-dating the envelope's key_version.
|
||||||
|
diesel::update(integrity_envelope::table)
|
||||||
|
.filter(integrity_envelope::entity_kind.eq("dummy_entity"))
|
||||||
|
.filter(integrity_envelope::entity_id.eq(ENTITY_ID))
|
||||||
|
.set(integrity_envelope::key_version.eq(0))
|
||||||
|
.execute(&mut conn)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
// Must NOT error — version mismatch is Unavailable, not tampered.
|
||||||
|
let status = verify_entity(&mut conn, &vault, &entity, ENTITY_ID)
|
||||||
|
.await
|
||||||
|
.expect("key version mismatch must not be treated as an error");
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
status,
|
||||||
|
AttestationStatus::Unavailable,
|
||||||
|
"stale key_version must yield Unavailable, not MacMismatch"
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
||||||
use encryption::v1::Nonce;
|
use encryption::v1::{Nonce, Salt};
|
||||||
|
|
||||||
use argon2::{Algorithm, Argon2};
|
use argon2::{Algorithm, Argon2};
|
||||||
use chacha20poly1305::{
|
use chacha20poly1305::{
|
||||||
@@ -12,9 +12,7 @@ use rand::{
|
|||||||
};
|
};
|
||||||
|
|
||||||
pub mod encryption;
|
pub mod encryption;
|
||||||
pub mod governance;
|
|
||||||
pub mod integrity;
|
pub mod integrity;
|
||||||
pub mod shamir;
|
|
||||||
|
|
||||||
pub struct KeyCell(pub SafeCell<Key>);
|
pub struct KeyCell(pub SafeCell<Key>);
|
||||||
impl From<SafeCell<Key>> for KeyCell {
|
impl From<SafeCell<Key>> for KeyCell {
|
||||||
@@ -22,15 +20,6 @@ impl From<SafeCell<Key>> for KeyCell {
|
|||||||
Self(value)
|
Self(value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl From<[u8; 32]> for KeyCell {
|
|
||||||
fn from(bytes: [u8; 32]) -> Self {
|
|
||||||
let cell = SafeCell::new_inline_default(|key: &mut Key| {
|
|
||||||
key.copy_from_slice(&bytes);
|
|
||||||
});
|
|
||||||
Self(cell)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl TryFrom<SafeCell<Vec<u8>>> for KeyCell {
|
impl TryFrom<SafeCell<Vec<u8>>> for KeyCell {
|
||||||
type Error = ();
|
type Error = ();
|
||||||
|
|
||||||
@@ -39,7 +28,7 @@ impl TryFrom<SafeCell<Vec<u8>>> for KeyCell {
|
|||||||
if value.len() != size_of::<Key>() {
|
if value.len() != size_of::<Key>() {
|
||||||
return Err(());
|
return Err(());
|
||||||
}
|
}
|
||||||
let cell = SafeCell::new_inline_default(|cell_write: &mut Key| {
|
let cell = SafeCell::new_inline(|cell_write: &mut Key| {
|
||||||
cell_write.copy_from_slice(&value);
|
cell_write.copy_from_slice(&value);
|
||||||
});
|
});
|
||||||
Ok(Self(cell))
|
Ok(Self(cell))
|
||||||
@@ -48,7 +37,7 @@ impl TryFrom<SafeCell<Vec<u8>>> for KeyCell {
|
|||||||
|
|
||||||
impl KeyCell {
|
impl KeyCell {
|
||||||
pub fn new_secure_random() -> Self {
|
pub fn new_secure_random() -> Self {
|
||||||
let key = SafeCell::new_inline_default(|key_buffer: &mut Key| {
|
let key = SafeCell::new_inline(|key_buffer: &mut Key| {
|
||||||
let mut rng = StdRng::try_from_rng(&mut SysRng)
|
let mut rng = StdRng::try_from_rng(&mut SysRng)
|
||||||
.expect("Rng failure is unrecoverable and should panic");
|
.expect("Rng failure is unrecoverable and should panic");
|
||||||
rng.fill_bytes(key_buffer);
|
rng.fill_bytes(key_buffer);
|
||||||
@@ -105,7 +94,7 @@ impl KeyCell {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Derive a fixed-length key from the password using Argon2id, which is designed for password hashing and key derivation.
|
/// Derive a fixed-length key from the password using Argon2id, which is designed for password hashing and key derivation.
|
||||||
pub fn derive_key(password: &mut SafeCell<Vec<u8>>, salt: &[u8]) -> KeyCell {
|
pub fn derive_key(mut password: SafeCell<Vec<u8>>, salt: &Salt) -> KeyCell {
|
||||||
let params = {
|
let params = {
|
||||||
#[cfg(debug_assertions)]
|
#[cfg(debug_assertions)]
|
||||||
{
|
{
|
||||||
@@ -143,10 +132,10 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn encrypt_decrypt() {
|
fn encrypt_decrypt() {
|
||||||
static PASSWORD: &[u8] = b"password";
|
static PASSWORD: &[u8] = b"password";
|
||||||
let mut password = SafeCell::new(PASSWORD.to_vec());
|
let password = SafeCell::new(PASSWORD.to_vec());
|
||||||
let salt = generate_salt();
|
let salt = generate_salt();
|
||||||
|
|
||||||
let mut key = derive_key(&mut password, &salt);
|
let mut key = derive_key(password, &salt);
|
||||||
let nonce = Nonce(*b"unique nonce 123 1231233"); // 24 bytes for XChaCha20Poly1305
|
let nonce = Nonce(*b"unique nonce 123 1231233"); // 24 bytes for XChaCha20Poly1305
|
||||||
let associated_data = b"associated data";
|
let associated_data = b"associated data";
|
||||||
let mut buffer = b"secret data".to_vec();
|
let mut buffer = b"secret data".to_vec();
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
use vsss_rs::Gf256;
|
|
||||||
|
|
||||||
#[derive(Debug, thiserror::Error)]
|
|
||||||
pub enum ShamirError {
|
|
||||||
#[error("Failed to split key: {0}")]
|
|
||||||
Split(String),
|
|
||||||
#[error("Failed to combine shares: {0}")]
|
|
||||||
Combine(String),
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Split `key` into `total` shares where any `threshold` shares can reconstruct it.
|
|
||||||
/// Each returned Vec<u8> is a share with format [`identifier_byte`, `value_bytes`...].
|
|
||||||
pub fn split_key(
|
|
||||||
threshold: usize,
|
|
||||||
total: usize,
|
|
||||||
key: &[u8; 32],
|
|
||||||
rng: impl rand_core::RngCore + rand_core::CryptoRng,
|
|
||||||
) -> Result<Vec<Vec<u8>>, ShamirError> {
|
|
||||||
Gf256::split_array(threshold, total, key.as_slice(), rng)
|
|
||||||
.map_err(|e| ShamirError::Split(format!("{e:?}")))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns the minimum number of shares required to reconstruct the secret
|
|
||||||
/// for a committee of `n` operators.
|
|
||||||
#[must_use]
|
|
||||||
pub const fn shamir_threshold(n: usize) -> usize {
|
|
||||||
match n {
|
|
||||||
0 => panic!("No operators"),
|
|
||||||
1 => 1,
|
|
||||||
2 => 2,
|
|
||||||
n => n / 2 + 1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Reconstruct the secret from `threshold` or more shares.
|
|
||||||
pub fn combine_shares(shares: &[Vec<u8>]) -> Result<[u8; 32], ShamirError> {
|
|
||||||
let bytes = Gf256::combine_array(shares)
|
|
||||||
.map_err(|e| ShamirError::Combine(format!("{e:?}")))?;
|
|
||||||
<[u8; 32]>::try_from(bytes.as_slice())
|
|
||||||
.map_err(|_| ShamirError::Combine("unexpected reconstructed key length".to_owned()))
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
//! Typed bindings for the SQLite scalar functions used in Diesel expressions.
|
|
||||||
|
|
||||||
use diesel::sql_types::{Integer, Text};
|
|
||||||
|
|
||||||
diesel::define_sql_function! {
|
|
||||||
/// SQLite `unixepoch(modifier)` -- seconds since the Unix epoch.
|
|
||||||
///
|
|
||||||
/// Declared so timestamp comparisons are built by the query DSL instead of by
|
|
||||||
/// `format!`-ing a SQL fragment: the argument becomes a bind parameter and the
|
|
||||||
/// result type is checked against the column it is compared with.
|
|
||||||
fn unixepoch(modifier: Text) -> Integer;
|
|
||||||
}
|
|
||||||
@@ -8,9 +8,7 @@ use diesel_migrations::{EmbeddedMigrations, MigrationHarness, embed_migrations};
|
|||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
use tracing::info;
|
use tracing::info;
|
||||||
|
|
||||||
pub mod functions;
|
|
||||||
pub mod models;
|
pub mod models;
|
||||||
pub mod proposal;
|
|
||||||
pub mod schema;
|
pub mod schema;
|
||||||
|
|
||||||
pub type DatabaseConnection = SyncConnectionWrapper<SqliteConnection>;
|
pub type DatabaseConnection = SyncConnectionWrapper<SqliteConnection>;
|
||||||
|
|||||||
@@ -9,18 +9,16 @@ use crate::db::schema::{
|
|||||||
integrity_envelope, root_key_history, tls_history,
|
integrity_envelope, root_key_history, tls_history,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::db::proposal::ProposalKindTag;
|
|
||||||
use diesel::{prelude::*, sqlite::Sqlite};
|
use diesel::{prelude::*, sqlite::Sqlite};
|
||||||
use restructed::Models;
|
use restructed::Models;
|
||||||
|
|
||||||
pub mod types {
|
pub mod types {
|
||||||
use chrono::{DateTime, Utc};
|
use chrono::{DateTime, Utc};
|
||||||
use diesel::{
|
use diesel::{
|
||||||
backend::Backend,
|
|
||||||
deserialize::{FromSql, FromSqlRow},
|
deserialize::{FromSql, FromSqlRow},
|
||||||
expression::AsExpression,
|
expression::AsExpression,
|
||||||
serialize::{IsNull, ToSql},
|
serialize::{IsNull, ToSql},
|
||||||
sql_types::{Integer, Text},
|
sql_types::Integer,
|
||||||
sqlite::{Sqlite, SqliteType},
|
sqlite::{Sqlite, SqliteType},
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -63,7 +61,7 @@ pub mod types {
|
|||||||
|
|
||||||
impl FromSql<Integer, Sqlite> for SqliteTimestamp {
|
impl FromSql<Integer, Sqlite> for SqliteTimestamp {
|
||||||
fn from_sql(
|
fn from_sql(
|
||||||
mut bytes: <Sqlite as Backend>::RawValue<'_>,
|
mut bytes: <Sqlite as diesel::backend::Backend>::RawValue<'_>,
|
||||||
) -> diesel::deserialize::Result<Self> {
|
) -> diesel::deserialize::Result<Self> {
|
||||||
let Some(SqliteType::Long) = bytes.value_type() else {
|
let Some(SqliteType::Long) = bytes.value_type() else {
|
||||||
return Err(format!(
|
return Err(format!(
|
||||||
@@ -143,42 +141,6 @@ pub mod types {
|
|||||||
declare_id!(TlsHistoryId);
|
declare_id!(TlsHistoryId);
|
||||||
declare_id!(EvmWalletId);
|
declare_id!(EvmWalletId);
|
||||||
declare_id!(ClientId);
|
declare_id!(ClientId);
|
||||||
declare_id!(ProposalId);
|
|
||||||
declare_id!(RecoveryOperatorIdentityId);
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq, AsExpression, FromSqlRow)]
|
|
||||||
#[diesel(sql_type = Text)]
|
|
||||||
pub enum ProposalStatus {
|
|
||||||
Pending,
|
|
||||||
Approved,
|
|
||||||
Rejected,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ToSql<Text, Sqlite> for ProposalStatus {
|
|
||||||
fn to_sql<'b>(
|
|
||||||
&'b self,
|
|
||||||
out: &mut diesel::serialize::Output<'b, '_, Sqlite>,
|
|
||||||
) -> diesel::serialize::Result {
|
|
||||||
let s: &str = match self {
|
|
||||||
Self::Pending => "pending",
|
|
||||||
Self::Approved => "approved",
|
|
||||||
Self::Rejected => "rejected",
|
|
||||||
};
|
|
||||||
<str as ToSql<Text, Sqlite>>::to_sql(s, out)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl FromSql<Text, Sqlite> for ProposalStatus {
|
|
||||||
fn from_sql(bytes: <Sqlite as Backend>::RawValue<'_>) -> diesel::deserialize::Result<Self> {
|
|
||||||
let s = <String as FromSql<Text, Sqlite>>::from_sql(bytes)?;
|
|
||||||
match s.as_str() {
|
|
||||||
"pending" => Ok(Self::Pending),
|
|
||||||
"approved" => Ok(Self::Approved),
|
|
||||||
"rejected" => Ok(Self::Rejected),
|
|
||||||
other => Err(format!("Unknown proposal status: {other}").into()),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
pub use types::*;
|
pub use types::*;
|
||||||
|
|
||||||
@@ -323,7 +285,6 @@ pub struct Operator {
|
|||||||
pub id: OperatorId,
|
pub id: OperatorId,
|
||||||
pub share: Vec<u8>,
|
pub share: Vec<u8>,
|
||||||
pub share_nonce: Vec<u8>,
|
pub share_nonce: Vec<u8>,
|
||||||
pub share_salt: Vec<u8>,
|
|
||||||
pub created_at: SqliteTimestamp,
|
pub created_at: SqliteTimestamp,
|
||||||
pub updated_at: SqliteTimestamp,
|
pub updated_at: SqliteTimestamp,
|
||||||
}
|
}
|
||||||
@@ -476,58 +437,3 @@ pub struct IntegrityEnvelope {
|
|||||||
pub signed_at: SqliteTimestamp,
|
pub signed_at: SqliteTimestamp,
|
||||||
pub created_at: SqliteTimestamp,
|
pub created_at: SqliteTimestamp,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Queryable, Selectable, Identifiable)]
|
|
||||||
#[diesel(table_name = schema::proposal, check_for_backend(Sqlite))]
|
|
||||||
pub struct Proposal {
|
|
||||||
pub id: ProposalId,
|
|
||||||
pub kind: ProposalKindTag,
|
|
||||||
pub initiator_id: OperatorIdentityId,
|
|
||||||
pub created_at: SqliteTimestamp,
|
|
||||||
pub expires_at: SqliteTimestamp,
|
|
||||||
pub status: ProposalStatus,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Insertable)]
|
|
||||||
#[diesel(table_name = schema::proposal, check_for_backend(Sqlite))]
|
|
||||||
pub struct NewProposal {
|
|
||||||
pub kind: ProposalKindTag,
|
|
||||||
pub initiator_id: OperatorIdentityId,
|
|
||||||
// status defaults to 'pending' at the DB layer
|
|
||||||
pub expires_at: SqliteTimestamp,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Queryable, Selectable, Identifiable)]
|
|
||||||
#[diesel(table_name = schema::proposal_vote, check_for_backend(Sqlite))]
|
|
||||||
pub struct ProposalVote {
|
|
||||||
pub id: i32,
|
|
||||||
pub proposal_id: ProposalId,
|
|
||||||
pub operator_id: OperatorIdentityId,
|
|
||||||
pub approve: bool,
|
|
||||||
pub signature: Vec<u8>,
|
|
||||||
pub voted_at: SqliteTimestamp,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Insertable)]
|
|
||||||
#[diesel(table_name = schema::proposal_vote, check_for_backend(Sqlite))]
|
|
||||||
pub struct NewProposalVote {
|
|
||||||
pub proposal_id: ProposalId,
|
|
||||||
pub operator_id: OperatorIdentityId,
|
|
||||||
pub approve: bool,
|
|
||||||
pub signature: Vec<u8>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Insertable)]
|
|
||||||
#[diesel(table_name = schema::recovery_proposal_vote, check_for_backend(Sqlite))]
|
|
||||||
pub struct NewRecoveryProposalVote {
|
|
||||||
pub proposal_id: ProposalId,
|
|
||||||
pub recovery_operator_id: RecoveryOperatorIdentityId,
|
|
||||||
pub approve: bool,
|
|
||||||
pub signature: Vec<u8>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Insertable)]
|
|
||||||
#[diesel(table_name = schema::recovery_wakeup_request, check_for_backend(Sqlite))]
|
|
||||||
pub struct NewRecoveryWakeupRequest {
|
|
||||||
pub requested_by: OperatorIdentityId,
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,48 +0,0 @@
|
|||||||
//! Approving an SDK client so it may authenticate against the vault.
|
|
||||||
|
|
||||||
use super::{Proposal, ProposalKindTag};
|
|
||||||
use crate::db::{
|
|
||||||
DatabaseConnection, models::ProposalId, schema::proposal_approve_sdk_client as table,
|
|
||||||
};
|
|
||||||
use diesel::{
|
|
||||||
ExpressionMethods as _, Insertable, QueryDsl as _, QueryResult, Queryable, Selectable,
|
|
||||||
SelectableHelper as _, sqlite::Sqlite,
|
|
||||||
};
|
|
||||||
use diesel_async::RunQueryDsl as _;
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Queryable, Selectable, Insertable)]
|
|
||||||
#[diesel(table_name = table, check_for_backend(Sqlite))]
|
|
||||||
pub struct Settings {
|
|
||||||
pub client_id: i32,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct ApproveSdkClient;
|
|
||||||
|
|
||||||
impl Proposal for ApproveSdkClient {
|
|
||||||
const KIND: ProposalKindTag = ProposalKindTag::ApproveSdkClient;
|
|
||||||
|
|
||||||
type Settings = Settings;
|
|
||||||
|
|
||||||
async fn insert(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
settings: &Self::Settings,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<()> {
|
|
||||||
diesel::insert_into(table::table)
|
|
||||||
.values((table::proposal_id.eq(proposal_id), settings))
|
|
||||||
.execute(conn)
|
|
||||||
.await
|
|
||||||
.map(drop)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn load(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<Self::Settings> {
|
|
||||||
table::table
|
|
||||||
.find(proposal_id)
|
|
||||||
.select(Settings::as_select())
|
|
||||||
.first(conn)
|
|
||||||
.await
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
//! Granting an SDK client visibility of a wallet.
|
|
||||||
|
|
||||||
use super::{Proposal, ProposalKindTag};
|
|
||||||
use crate::db::{
|
|
||||||
DatabaseConnection, models::ProposalId, schema::proposal_grant_wallet_access as table,
|
|
||||||
};
|
|
||||||
use diesel::{
|
|
||||||
ExpressionMethods as _, Insertable, QueryDsl as _, QueryResult, Queryable, Selectable,
|
|
||||||
SelectableHelper as _, sqlite::Sqlite,
|
|
||||||
};
|
|
||||||
use diesel_async::RunQueryDsl as _;
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Queryable, Selectable, Insertable)]
|
|
||||||
#[diesel(table_name = table, check_for_backend(Sqlite))]
|
|
||||||
pub struct Settings {
|
|
||||||
pub wallet_id: i32,
|
|
||||||
pub client_id: i32,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct GrantWalletAccess;
|
|
||||||
|
|
||||||
impl Proposal for GrantWalletAccess {
|
|
||||||
const KIND: ProposalKindTag = ProposalKindTag::GrantWalletAccess;
|
|
||||||
|
|
||||||
type Settings = Settings;
|
|
||||||
|
|
||||||
async fn insert(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
settings: &Self::Settings,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<()> {
|
|
||||||
diesel::insert_into(table::table)
|
|
||||||
.values((table::proposal_id.eq(proposal_id), settings))
|
|
||||||
.execute(conn)
|
|
||||||
.await
|
|
||||||
.map(drop)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn load(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<Self::Settings> {
|
|
||||||
table::table
|
|
||||||
.find(proposal_id)
|
|
||||||
.select(Settings::as_select())
|
|
||||||
.first(conn)
|
|
||||||
.await
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,243 +0,0 @@
|
|||||||
//! Governed actions and the parameters they carry.
|
|
||||||
//!
|
|
||||||
//! Laid out the way [`crate::evm::policies::Policy`] is: a unit type per kind, its
|
|
||||||
//! parameters as an associated `Settings`, and the persistence for those parameters
|
|
||||||
//! implemented next to them. Everything downstream is generic over [`Proposal`], so a
|
|
||||||
//! new kind is a new module plus one arm in each dispatcher -- nothing else in the
|
|
||||||
//! codebase has to learn about it.
|
|
||||||
|
|
||||||
use crate::db::{DatabaseConnection, models::ProposalId};
|
|
||||||
use diesel::{
|
|
||||||
QueryResult,
|
|
||||||
backend::Backend,
|
|
||||||
deserialize::{FromSql, FromSqlRow},
|
|
||||||
expression::AsExpression,
|
|
||||||
serialize::ToSql,
|
|
||||||
sql_types::Text,
|
|
||||||
sqlite::Sqlite,
|
|
||||||
};
|
|
||||||
use strum::{Display, EnumDiscriminants, EnumString, IntoStaticStr};
|
|
||||||
|
|
||||||
pub mod approve_sdk_client;
|
|
||||||
pub mod grant_wallet_access;
|
|
||||||
pub mod one_off_transaction;
|
|
||||||
pub mod persistent_grant;
|
|
||||||
pub mod replace_operator;
|
|
||||||
pub mod trigger_rekey;
|
|
||||||
|
|
||||||
pub use approve_sdk_client::ApproveSdkClient;
|
|
||||||
pub use grant_wallet_access::GrantWalletAccess;
|
|
||||||
pub use one_off_transaction::OneOffTransaction;
|
|
||||||
pub use persistent_grant::PersistentGrant;
|
|
||||||
pub use replace_operator::ReplaceOperator;
|
|
||||||
pub use trigger_rekey::TriggerRekey;
|
|
||||||
|
|
||||||
/// A governed action that owns the child table holding its parameters.
|
|
||||||
pub trait Proposal: Sized {
|
|
||||||
/// The value stored in `proposal.kind` for this action.
|
|
||||||
const KIND: ProposalKindTag;
|
|
||||||
|
|
||||||
/// Parameters the action is voted on with.
|
|
||||||
type Settings: Send + Sync + 'static;
|
|
||||||
|
|
||||||
/// Writes the child row carrying `settings`.
|
|
||||||
fn insert(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
settings: &Self::Settings,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> impl Future<Output = QueryResult<()>> + Send;
|
|
||||||
|
|
||||||
/// Reads the child row back. A missing row surfaces as [`diesel::result::Error::NotFound`],
|
|
||||||
/// which is what a proposal without its parameters is.
|
|
||||||
fn load(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> impl Future<Output = QueryResult<Self::Settings>> + Send;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Parameters of a proposal, in the one shape that can cross the actor boundary.
|
|
||||||
///
|
|
||||||
/// Every variant holds the `Settings` of the matching [`Proposal`] implementation, so
|
|
||||||
/// the two cannot drift.
|
|
||||||
#[derive(Debug, Clone, EnumDiscriminants)]
|
|
||||||
#[strum_discriminants(
|
|
||||||
name(ProposalKindTag),
|
|
||||||
vis(pub),
|
|
||||||
derive(Display, EnumString, IntoStaticStr, AsExpression, FromSqlRow),
|
|
||||||
diesel(sql_type = Text),
|
|
||||||
strum(serialize_all = "snake_case")
|
|
||||||
)]
|
|
||||||
pub enum ProposalKind {
|
|
||||||
ApproveSdkClient(approve_sdk_client::Settings),
|
|
||||||
GrantWalletAccess(grant_wallet_access::Settings),
|
|
||||||
ReplaceOperator(replace_operator::Settings),
|
|
||||||
TriggerRekey,
|
|
||||||
ApprovePersistentGrant(Box<persistent_grant::Settings>),
|
|
||||||
ApproveOneOffTransaction(Box<one_off_transaction::Settings>),
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ProposalKindTag {
|
|
||||||
/// Key-rotation proposals require every operator to approve (§3.3).
|
|
||||||
#[must_use]
|
|
||||||
pub const fn requires_full_quorum(self) -> bool {
|
|
||||||
matches!(self, Self::ReplaceOperator | Self::TriggerRekey)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Pins every implementation to the variant it is dispatched from. Without this a
|
|
||||||
/// mistyped `KIND` would compile and only show up as a proposal stored under the
|
|
||||||
/// wrong `proposal.kind`.
|
|
||||||
const _: () = {
|
|
||||||
assert!(
|
|
||||||
matches!(ApproveSdkClient::KIND, ProposalKindTag::ApproveSdkClient),
|
|
||||||
"ApproveSdkClient::KIND must be ProposalKindTag::ApproveSdkClient"
|
|
||||||
);
|
|
||||||
assert!(
|
|
||||||
matches!(GrantWalletAccess::KIND, ProposalKindTag::GrantWalletAccess),
|
|
||||||
"GrantWalletAccess::KIND must be ProposalKindTag::GrantWalletAccess"
|
|
||||||
);
|
|
||||||
assert!(
|
|
||||||
matches!(ReplaceOperator::KIND, ProposalKindTag::ReplaceOperator),
|
|
||||||
"ReplaceOperator::KIND must be ProposalKindTag::ReplaceOperator"
|
|
||||||
);
|
|
||||||
assert!(
|
|
||||||
matches!(TriggerRekey::KIND, ProposalKindTag::TriggerRekey),
|
|
||||||
"TriggerRekey::KIND must be ProposalKindTag::TriggerRekey"
|
|
||||||
);
|
|
||||||
assert!(
|
|
||||||
matches!(
|
|
||||||
PersistentGrant::KIND,
|
|
||||||
ProposalKindTag::ApprovePersistentGrant
|
|
||||||
),
|
|
||||||
"PersistentGrant::KIND must be ProposalKindTag::ApprovePersistentGrant"
|
|
||||||
);
|
|
||||||
assert!(
|
|
||||||
matches!(
|
|
||||||
OneOffTransaction::KIND,
|
|
||||||
ProposalKindTag::ApproveOneOffTransaction
|
|
||||||
),
|
|
||||||
"OneOffTransaction::KIND must be ProposalKindTag::ApproveOneOffTransaction"
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Writes the child row carrying this proposal's parameters.
|
|
||||||
///
|
|
||||||
/// The only place the create path has to know every kind; each arm hands straight off
|
|
||||||
/// to the implementation that owns the table.
|
|
||||||
pub async fn insert_kind(
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
kind: &ProposalKind,
|
|
||||||
) -> QueryResult<()> {
|
|
||||||
match kind {
|
|
||||||
ProposalKind::ApproveSdkClient(s) => ApproveSdkClient::insert(proposal_id, s, conn).await,
|
|
||||||
ProposalKind::GrantWalletAccess(s) => GrantWalletAccess::insert(proposal_id, s, conn).await,
|
|
||||||
ProposalKind::ReplaceOperator(s) => ReplaceOperator::insert(proposal_id, s, conn).await,
|
|
||||||
ProposalKind::TriggerRekey => TriggerRekey::insert(proposal_id, &(), conn).await,
|
|
||||||
ProposalKind::ApprovePersistentGrant(s) => {
|
|
||||||
PersistentGrant::insert(proposal_id, s, conn).await
|
|
||||||
}
|
|
||||||
ProposalKind::ApproveOneOffTransaction(s) => {
|
|
||||||
OneOffTransaction::insert(proposal_id, s, conn).await
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Reads the parameters back for a `proposal.kind` that is only known at runtime.
|
|
||||||
pub async fn load_kind(
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
tag: ProposalKindTag,
|
|
||||||
) -> QueryResult<ProposalKind> {
|
|
||||||
Ok(match tag {
|
|
||||||
ProposalKindTag::ApproveSdkClient => {
|
|
||||||
ProposalKind::ApproveSdkClient(ApproveSdkClient::load(proposal_id, conn).await?)
|
|
||||||
}
|
|
||||||
ProposalKindTag::GrantWalletAccess => {
|
|
||||||
ProposalKind::GrantWalletAccess(GrantWalletAccess::load(proposal_id, conn).await?)
|
|
||||||
}
|
|
||||||
ProposalKindTag::ReplaceOperator => {
|
|
||||||
ProposalKind::ReplaceOperator(ReplaceOperator::load(proposal_id, conn).await?)
|
|
||||||
}
|
|
||||||
ProposalKindTag::TriggerRekey => {
|
|
||||||
TriggerRekey::load(proposal_id, conn).await?;
|
|
||||||
ProposalKind::TriggerRekey
|
|
||||||
}
|
|
||||||
ProposalKindTag::ApprovePersistentGrant => ProposalKind::ApprovePersistentGrant(Box::new(
|
|
||||||
PersistentGrant::load(proposal_id, conn).await?,
|
|
||||||
)),
|
|
||||||
ProposalKindTag::ApproveOneOffTransaction => ProposalKind::ApproveOneOffTransaction(
|
|
||||||
Box::new(OneOffTransaction::load(proposal_id, conn).await?),
|
|
||||||
),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ToSql<Text, Sqlite> for ProposalKindTag {
|
|
||||||
fn to_sql<'b>(
|
|
||||||
&'b self,
|
|
||||||
out: &mut diesel::serialize::Output<'b, '_, Sqlite>,
|
|
||||||
) -> diesel::serialize::Result {
|
|
||||||
<str as ToSql<Text, Sqlite>>::to_sql(<&'static str>::from(*self), out)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl FromSql<Text, Sqlite> for ProposalKindTag {
|
|
||||||
fn from_sql(bytes: <Sqlite as Backend>::RawValue<'_>) -> diesel::deserialize::Result<Self> {
|
|
||||||
let s = <String as FromSql<Text, Sqlite>>::from_sql(bytes)?;
|
|
||||||
s.parse()
|
|
||||||
.map_err(|_| format!("Unknown proposal kind: {s}").into())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// SQLite has no unsigned integers; the column is `BigInt`, so a value that does not
|
|
||||||
/// round-trip is a corrupt row rather than something to silently wrap.
|
|
||||||
pub(crate) fn as_i64(value: u64) -> QueryResult<i64> {
|
|
||||||
i64::try_from(value).map_err(|_| diesel::result::Error::SerializationError(Box::new(Overflow)))
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn as_u64(value: i64) -> QueryResult<u64> {
|
|
||||||
u64::try_from(value)
|
|
||||||
.map_err(|_| diesel::result::Error::DeserializationError(Box::new(Overflow)))
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) fn fixed_bytes<const N: usize>(
|
|
||||||
bytes: &[u8],
|
|
||||||
column: &'static str,
|
|
||||||
) -> QueryResult<[u8; N]> {
|
|
||||||
<[u8; N]>::try_from(bytes)
|
|
||||||
.map_err(|_| diesel::result::Error::DeserializationError(Box::new(WrongLength(column))))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Reads a fixed-width column into an array, labelling failures with the column it came
|
|
||||||
/// from.
|
|
||||||
///
|
|
||||||
/// The label is taken from the field itself, so renaming a column cannot leave a stale
|
|
||||||
/// name behind in the error -- which is the whole reason this is a macro and not a
|
|
||||||
/// second argument.
|
|
||||||
///
|
|
||||||
/// - `fixed!(row.column)` for a `Vec<u8>` field
|
|
||||||
/// - `fixed!(opt row.column)` for a `Option<Vec<u8>>` one
|
|
||||||
/// - `fixed!(binding)` for a local
|
|
||||||
macro_rules! fixed {
|
|
||||||
(opt $src:ident.$field:ident) => {
|
|
||||||
$src.$field
|
|
||||||
.as_deref()
|
|
||||||
.map(|value| $crate::db::proposal::fixed_bytes(value, stringify!($field)))
|
|
||||||
.transpose()
|
|
||||||
};
|
|
||||||
($src:ident.$field:ident) => {
|
|
||||||
$crate::db::proposal::fixed_bytes(&$src.$field, stringify!($field))
|
|
||||||
};
|
|
||||||
($binding:ident) => {
|
|
||||||
$crate::db::proposal::fixed_bytes(&$binding, stringify!($binding))
|
|
||||||
};
|
|
||||||
}
|
|
||||||
pub(crate) use fixed;
|
|
||||||
|
|
||||||
#[derive(Debug, thiserror::Error)]
|
|
||||||
#[error("value does not fit a SQLite integer")]
|
|
||||||
struct Overflow;
|
|
||||||
|
|
||||||
#[derive(Debug, thiserror::Error)]
|
|
||||||
#[error("column {0} has the wrong byte length")]
|
|
||||||
struct WrongLength(&'static str);
|
|
||||||
@@ -1,138 +0,0 @@
|
|||||||
//! Signing a single EIP-1559 transaction.
|
|
||||||
|
|
||||||
use super::{Proposal, ProposalKindTag, as_i64, as_u64, fixed};
|
|
||||||
use crate::db::{
|
|
||||||
DatabaseConnection,
|
|
||||||
models::ProposalId,
|
|
||||||
schema::{proposal_one_off_transaction, proposal_one_off_transaction_result},
|
|
||||||
};
|
|
||||||
use diesel::{
|
|
||||||
Insertable, QueryDsl as _, QueryResult, Queryable, Selectable, SelectableHelper as _,
|
|
||||||
sqlite::Sqlite,
|
|
||||||
};
|
|
||||||
use diesel_async::RunQueryDsl as _;
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
||||||
pub struct Settings {
|
|
||||||
pub client_id: i32,
|
|
||||||
pub wallet_address: [u8; 20],
|
|
||||||
pub chain_id: u64,
|
|
||||||
pub nonce: u64,
|
|
||||||
pub gas_limit: u64,
|
|
||||||
pub max_fee_per_gas: u128,
|
|
||||||
pub max_priority_fee_per_gas: u128,
|
|
||||||
pub to: [u8; 20],
|
|
||||||
pub value: [u8; 32],
|
|
||||||
pub input: Vec<u8>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Queryable, Selectable, Insertable)]
|
|
||||||
#[diesel(table_name = proposal_one_off_transaction, check_for_backend(Sqlite))]
|
|
||||||
struct Row {
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
client_id: i32,
|
|
||||||
wallet_address: Vec<u8>,
|
|
||||||
chain_id: i64,
|
|
||||||
nonce: i64,
|
|
||||||
gas_limit: i64,
|
|
||||||
max_fee_per_gas: Vec<u8>,
|
|
||||||
max_priority_fee_per_gas: Vec<u8>,
|
|
||||||
to_address: Vec<u8>,
|
|
||||||
value: Vec<u8>,
|
|
||||||
input: Vec<u8>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Row {
|
|
||||||
fn new(proposal_id: ProposalId, settings: &Settings) -> QueryResult<Self> {
|
|
||||||
Ok(Self {
|
|
||||||
proposal_id,
|
|
||||||
client_id: settings.client_id,
|
|
||||||
wallet_address: settings.wallet_address.to_vec(),
|
|
||||||
chain_id: as_i64(settings.chain_id)?,
|
|
||||||
nonce: as_i64(settings.nonce)?,
|
|
||||||
gas_limit: as_i64(settings.gas_limit)?,
|
|
||||||
max_fee_per_gas: settings.max_fee_per_gas.to_be_bytes().to_vec(),
|
|
||||||
max_priority_fee_per_gas: settings.max_priority_fee_per_gas.to_be_bytes().to_vec(),
|
|
||||||
to_address: settings.to.to_vec(),
|
|
||||||
value: settings.value.to_vec(),
|
|
||||||
input: settings.input.clone(),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
fn into_settings(self) -> QueryResult<Settings> {
|
|
||||||
Ok(Settings {
|
|
||||||
client_id: self.client_id,
|
|
||||||
wallet_address: fixed!(self.wallet_address)?,
|
|
||||||
chain_id: as_u64(self.chain_id)?,
|
|
||||||
nonce: as_u64(self.nonce)?,
|
|
||||||
gas_limit: as_u64(self.gas_limit)?,
|
|
||||||
max_fee_per_gas: u128::from_be_bytes(fixed!(self.max_fee_per_gas)?),
|
|
||||||
max_priority_fee_per_gas: u128::from_be_bytes(fixed!(self.max_priority_fee_per_gas)?),
|
|
||||||
to: fixed!(self.to_address)?,
|
|
||||||
value: fixed!(self.value)?,
|
|
||||||
input: self.input,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct OneOffTransaction;
|
|
||||||
|
|
||||||
impl Proposal for OneOffTransaction {
|
|
||||||
const KIND: ProposalKindTag = ProposalKindTag::ApproveOneOffTransaction;
|
|
||||||
|
|
||||||
type Settings = Settings;
|
|
||||||
|
|
||||||
async fn insert(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
settings: &Self::Settings,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<()> {
|
|
||||||
diesel::insert_into(proposal_one_off_transaction::table)
|
|
||||||
.values(&Row::new(proposal_id, settings)?)
|
|
||||||
.execute(conn)
|
|
||||||
.await
|
|
||||||
.map(drop)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn load(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<Self::Settings> {
|
|
||||||
let row: Row = proposal_one_off_transaction::table
|
|
||||||
.find(proposal_id)
|
|
||||||
.select(Row::as_select())
|
|
||||||
.first(conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
row.into_settings()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The signature the vault produced for an approved transaction.
|
|
||||||
#[derive(Debug, Insertable)]
|
|
||||||
#[diesel(table_name = proposal_one_off_transaction_result, check_for_backend(Sqlite))]
|
|
||||||
struct SignatureRow {
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
r: Vec<u8>,
|
|
||||||
s: Vec<u8>,
|
|
||||||
y_parity: i32,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Records the signature produced for an approved transaction, by component, so what
|
|
||||||
/// came back is as readable as what was signed.
|
|
||||||
pub async fn store_signature(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
signature: &alloy::signers::Signature,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<()> {
|
|
||||||
diesel::insert_into(proposal_one_off_transaction_result::table)
|
|
||||||
.values(&SignatureRow {
|
|
||||||
proposal_id,
|
|
||||||
r: signature.r().to_be_bytes::<32>().to_vec(),
|
|
||||||
s: signature.s().to_be_bytes::<32>().to_vec(),
|
|
||||||
y_parity: i32::from(signature.v()),
|
|
||||||
})
|
|
||||||
.execute(conn)
|
|
||||||
.await
|
|
||||||
.map(drop)
|
|
||||||
}
|
|
||||||
@@ -1,271 +0,0 @@
|
|||||||
//! Creating a standing EVM grant.
|
|
||||||
use super::{Proposal, ProposalKindTag, as_i64, as_u64, fixed};
|
|
||||||
use crate::db::{
|
|
||||||
DatabaseConnection,
|
|
||||||
models::ProposalId,
|
|
||||||
schema::{
|
|
||||||
proposal_persistent_grant, proposal_persistent_grant_ether,
|
|
||||||
proposal_persistent_grant_ether_target, proposal_persistent_grant_token,
|
|
||||||
proposal_persistent_grant_token_limit,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
use diesel::{
|
|
||||||
ExpressionMethods as _, Insertable, OptionalExtension as _, QueryDsl as _, QueryResult,
|
|
||||||
Queryable, Selectable, SelectableHelper as _, sqlite::Sqlite,
|
|
||||||
};
|
|
||||||
use diesel_async::RunQueryDsl as _;
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
||||||
pub struct Settings {
|
|
||||||
pub wallet_access_id: i32,
|
|
||||||
pub chain_id: u64,
|
|
||||||
pub valid_from_secs: Option<i64>,
|
|
||||||
pub valid_until_secs: Option<i64>,
|
|
||||||
pub max_gas_fee_per_gas: Option<[u8; 32]>,
|
|
||||||
pub max_priority_fee_per_gas: Option<[u8; 32]>,
|
|
||||||
pub rate_limit: Option<RateLimit>,
|
|
||||||
pub specific: Specific,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
||||||
pub struct RateLimit {
|
|
||||||
pub count: u32,
|
|
||||||
pub window_secs: i64,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
||||||
pub struct VolumeLimit {
|
|
||||||
pub max_volume: [u8; 32],
|
|
||||||
pub window_secs: i64,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
||||||
pub enum Specific {
|
|
||||||
EtherTransfer {
|
|
||||||
targets: Vec<[u8; 20]>,
|
|
||||||
limit: VolumeLimit,
|
|
||||||
},
|
|
||||||
TokenTransfer {
|
|
||||||
token_contract: [u8; 20],
|
|
||||||
receiver: Option<[u8; 20]>,
|
|
||||||
volume_limits: Vec<VolumeLimit>,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Shared settings, mirroring `evm_basic_grant`.
|
|
||||||
#[derive(Debug, Queryable, Selectable, Insertable)]
|
|
||||||
#[diesel(table_name = proposal_persistent_grant, check_for_backend(Sqlite))]
|
|
||||||
struct BaseRow {
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
wallet_access_id: i32,
|
|
||||||
chain_id: i64,
|
|
||||||
valid_from: Option<i64>,
|
|
||||||
valid_until: Option<i64>,
|
|
||||||
max_gas_fee_per_gas: Option<Vec<u8>>,
|
|
||||||
max_priority_fee_per_gas: Option<Vec<u8>>,
|
|
||||||
rate_limit_count: Option<i32>,
|
|
||||||
rate_limit_window_secs: Option<i64>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Queryable, Selectable, Insertable)]
|
|
||||||
#[diesel(table_name = proposal_persistent_grant_ether, check_for_backend(Sqlite))]
|
|
||||||
struct EtherRow {
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
window_secs: i64,
|
|
||||||
max_volume: Vec<u8>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Insertable)]
|
|
||||||
#[diesel(table_name = proposal_persistent_grant_ether_target, check_for_backend(Sqlite))]
|
|
||||||
struct NewEtherTarget {
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
address: Vec<u8>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Queryable, Selectable, Insertable)]
|
|
||||||
#[diesel(table_name = proposal_persistent_grant_token, check_for_backend(Sqlite))]
|
|
||||||
struct TokenRow {
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
token_contract: Vec<u8>,
|
|
||||||
receiver: Option<Vec<u8>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Insertable)]
|
|
||||||
#[diesel(table_name = proposal_persistent_grant_token_limit, check_for_backend(Sqlite))]
|
|
||||||
struct NewTokenLimit {
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
window_secs: i64,
|
|
||||||
max_volume: Vec<u8>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl BaseRow {
|
|
||||||
fn new(proposal_id: ProposalId, settings: &Settings) -> QueryResult<Self> {
|
|
||||||
Ok(Self {
|
|
||||||
proposal_id,
|
|
||||||
wallet_access_id: settings.wallet_access_id,
|
|
||||||
chain_id: as_i64(settings.chain_id)?,
|
|
||||||
valid_from: settings.valid_from_secs,
|
|
||||||
valid_until: settings.valid_until_secs,
|
|
||||||
max_gas_fee_per_gas: settings.max_gas_fee_per_gas.map(|v| v.to_vec()),
|
|
||||||
max_priority_fee_per_gas: settings.max_priority_fee_per_gas.map(|v| v.to_vec()),
|
|
||||||
// SQLite stores integers signed; a rate-limit count is a `u32`, so it
|
|
||||||
// round-trips through the bit pattern rather than a fallible range check.
|
|
||||||
rate_limit_count: settings.rate_limit.map(|r| r.count.cast_signed()),
|
|
||||||
rate_limit_window_secs: settings.rate_limit.map(|r| r.window_secs),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
fn into_settings(self, specific: Specific) -> QueryResult<Settings> {
|
|
||||||
Ok(Settings {
|
|
||||||
wallet_access_id: self.wallet_access_id,
|
|
||||||
chain_id: as_u64(self.chain_id)?,
|
|
||||||
valid_from_secs: self.valid_from,
|
|
||||||
valid_until_secs: self.valid_until,
|
|
||||||
max_gas_fee_per_gas: fixed!(opt self.max_gas_fee_per_gas)?,
|
|
||||||
max_priority_fee_per_gas: fixed!(opt self.max_priority_fee_per_gas)?,
|
|
||||||
rate_limit: self.rate_limit_count.zip(self.rate_limit_window_secs).map(
|
|
||||||
|(count, window_secs)| RateLimit {
|
|
||||||
count: count.cast_unsigned(),
|
|
||||||
window_secs,
|
|
||||||
},
|
|
||||||
),
|
|
||||||
specific,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct PersistentGrant;
|
|
||||||
|
|
||||||
impl Proposal for PersistentGrant {
|
|
||||||
const KIND: ProposalKindTag = ProposalKindTag::ApprovePersistentGrant;
|
|
||||||
|
|
||||||
type Settings = Settings;
|
|
||||||
|
|
||||||
async fn insert(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
settings: &Self::Settings,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<()> {
|
|
||||||
diesel::insert_into(proposal_persistent_grant::table)
|
|
||||||
.values(&BaseRow::new(proposal_id, settings)?)
|
|
||||||
.execute(conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
match &settings.specific {
|
|
||||||
Specific::EtherTransfer { targets, limit } => {
|
|
||||||
diesel::insert_into(proposal_persistent_grant_ether::table)
|
|
||||||
.values(&EtherRow {
|
|
||||||
proposal_id,
|
|
||||||
window_secs: limit.window_secs,
|
|
||||||
max_volume: limit.max_volume.to_vec(),
|
|
||||||
})
|
|
||||||
.execute(conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
// Row at a time: SQLite has no multi-row VALUES clause in diesel-async.
|
|
||||||
for address in targets {
|
|
||||||
diesel::insert_into(proposal_persistent_grant_ether_target::table)
|
|
||||||
.values(&NewEtherTarget {
|
|
||||||
proposal_id,
|
|
||||||
address: address.to_vec(),
|
|
||||||
})
|
|
||||||
.execute(conn)
|
|
||||||
.await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Specific::TokenTransfer {
|
|
||||||
token_contract,
|
|
||||||
receiver,
|
|
||||||
volume_limits,
|
|
||||||
} => {
|
|
||||||
diesel::insert_into(proposal_persistent_grant_token::table)
|
|
||||||
.values(&TokenRow {
|
|
||||||
proposal_id,
|
|
||||||
token_contract: token_contract.to_vec(),
|
|
||||||
receiver: receiver.map(|r| r.to_vec()),
|
|
||||||
})
|
|
||||||
.execute(conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
for limit in volume_limits {
|
|
||||||
diesel::insert_into(proposal_persistent_grant_token_limit::table)
|
|
||||||
.values(&NewTokenLimit {
|
|
||||||
proposal_id,
|
|
||||||
window_secs: limit.window_secs,
|
|
||||||
max_volume: limit.max_volume.to_vec(),
|
|
||||||
})
|
|
||||||
.execute(conn)
|
|
||||||
.await?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn load(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<Self::Settings> {
|
|
||||||
let base: BaseRow = proposal_persistent_grant::table
|
|
||||||
.find(proposal_id)
|
|
||||||
.select(BaseRow::as_select())
|
|
||||||
.first(conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let ether: Option<EtherRow> = proposal_persistent_grant_ether::table
|
|
||||||
.find(proposal_id)
|
|
||||||
.select(EtherRow::as_select())
|
|
||||||
.first(conn)
|
|
||||||
.await
|
|
||||||
.optional()?;
|
|
||||||
|
|
||||||
let specific = if let Some(ether) = ether {
|
|
||||||
let addresses: Vec<Vec<u8>> = proposal_persistent_grant_ether_target::table
|
|
||||||
.filter(proposal_persistent_grant_ether_target::proposal_id.eq(proposal_id))
|
|
||||||
.select(proposal_persistent_grant_ether_target::address)
|
|
||||||
.load(conn)
|
|
||||||
.await?;
|
|
||||||
let targets = addresses
|
|
||||||
.iter()
|
|
||||||
.map(|address| fixed!(address))
|
|
||||||
.collect::<QueryResult<Vec<_>>>()?;
|
|
||||||
Specific::EtherTransfer {
|
|
||||||
targets,
|
|
||||||
limit: VolumeLimit {
|
|
||||||
max_volume: fixed!(ether.max_volume)?,
|
|
||||||
window_secs: ether.window_secs,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
let token: TokenRow = proposal_persistent_grant_token::table
|
|
||||||
.find(proposal_id)
|
|
||||||
.select(TokenRow::as_select())
|
|
||||||
.first(conn)
|
|
||||||
.await?;
|
|
||||||
let rows: Vec<(i64, Vec<u8>)> = proposal_persistent_grant_token_limit::table
|
|
||||||
.filter(proposal_persistent_grant_token_limit::proposal_id.eq(proposal_id))
|
|
||||||
.select((
|
|
||||||
proposal_persistent_grant_token_limit::window_secs,
|
|
||||||
proposal_persistent_grant_token_limit::max_volume,
|
|
||||||
))
|
|
||||||
.load(conn)
|
|
||||||
.await?;
|
|
||||||
let volume_limits = rows
|
|
||||||
.into_iter()
|
|
||||||
.map(|(window_secs, max_volume)| {
|
|
||||||
Ok(VolumeLimit {
|
|
||||||
max_volume: fixed!(max_volume)?,
|
|
||||||
window_secs,
|
|
||||||
})
|
|
||||||
})
|
|
||||||
.collect::<QueryResult<Vec<_>>>()?;
|
|
||||||
Specific::TokenTransfer {
|
|
||||||
token_contract: fixed!(token.token_contract)?,
|
|
||||||
receiver: fixed!(opt token.receiver)?,
|
|
||||||
volume_limits,
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
base.into_settings(specific)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
//! Replacing an operator's key, which also triggers a Shamir re-key (§3.3).
|
|
||||||
|
|
||||||
use super::{Proposal, ProposalKindTag};
|
|
||||||
use crate::db::{
|
|
||||||
DatabaseConnection,
|
|
||||||
models::{OperatorIdentityId, ProposalId},
|
|
||||||
schema::proposal_replace_operator as table,
|
|
||||||
};
|
|
||||||
use diesel::{
|
|
||||||
ExpressionMethods as _, Insertable, QueryDsl as _, QueryResult, Queryable, Selectable,
|
|
||||||
SelectableHelper as _, sqlite::Sqlite,
|
|
||||||
};
|
|
||||||
use diesel_async::RunQueryDsl as _;
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq, Queryable, Selectable, Insertable)]
|
|
||||||
#[diesel(table_name = table, check_for_backend(Sqlite))]
|
|
||||||
pub struct Settings {
|
|
||||||
pub old_operator_id: OperatorIdentityId,
|
|
||||||
pub new_pubkey: Vec<u8>,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct ReplaceOperator;
|
|
||||||
|
|
||||||
impl Proposal for ReplaceOperator {
|
|
||||||
const KIND: ProposalKindTag = ProposalKindTag::ReplaceOperator;
|
|
||||||
|
|
||||||
type Settings = Settings;
|
|
||||||
|
|
||||||
async fn insert(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
settings: &Self::Settings,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<()> {
|
|
||||||
diesel::insert_into(table::table)
|
|
||||||
.values((table::proposal_id.eq(proposal_id), settings))
|
|
||||||
.execute(conn)
|
|
||||||
.await
|
|
||||||
.map(drop)
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn load(
|
|
||||||
proposal_id: ProposalId,
|
|
||||||
conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<Self::Settings> {
|
|
||||||
table::table
|
|
||||||
.find(proposal_id)
|
|
||||||
.select(Settings::as_select())
|
|
||||||
.first(conn)
|
|
||||||
.await
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
//! A Shamir re-key over the current operator set (§3.3).
|
|
||||||
|
|
||||||
use super::{Proposal, ProposalKindTag};
|
|
||||||
use crate::db::{DatabaseConnection, models::ProposalId};
|
|
||||||
use diesel::QueryResult;
|
|
||||||
|
|
||||||
pub struct TriggerRekey;
|
|
||||||
|
|
||||||
impl Proposal for TriggerRekey {
|
|
||||||
const KIND: ProposalKindTag = ProposalKindTag::TriggerRekey;
|
|
||||||
|
|
||||||
type Settings = ();
|
|
||||||
|
|
||||||
async fn insert(
|
|
||||||
_proposal_id: ProposalId,
|
|
||||||
_settings: &Self::Settings,
|
|
||||||
_conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<()> {
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn load(
|
|
||||||
_proposal_id: ProposalId,
|
|
||||||
_conn: &mut DatabaseConnection,
|
|
||||||
) -> QueryResult<Self::Settings> {
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -157,7 +157,6 @@ diesel::table! {
|
|||||||
id -> Nullable<Integer>,
|
id -> Nullable<Integer>,
|
||||||
share -> Binary,
|
share -> Binary,
|
||||||
share_nonce -> Binary,
|
share_nonce -> Binary,
|
||||||
share_salt -> Binary,
|
|
||||||
created_at -> Integer,
|
created_at -> Integer,
|
||||||
updated_at -> Integer,
|
updated_at -> Integer,
|
||||||
}
|
}
|
||||||
@@ -172,165 +171,6 @@ diesel::table! {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal (id) {
|
|
||||||
id -> Integer,
|
|
||||||
kind -> Text,
|
|
||||||
initiator_id -> Integer,
|
|
||||||
created_at -> Integer,
|
|
||||||
expires_at -> Integer,
|
|
||||||
status -> Text,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal_approve_sdk_client (proposal_id) {
|
|
||||||
proposal_id -> Integer,
|
|
||||||
client_id -> Integer,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal_grant_wallet_access (proposal_id) {
|
|
||||||
proposal_id -> Integer,
|
|
||||||
wallet_id -> Integer,
|
|
||||||
client_id -> Integer,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal_replace_operator (proposal_id) {
|
|
||||||
proposal_id -> Integer,
|
|
||||||
old_operator_id -> Integer,
|
|
||||||
new_pubkey -> Binary,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal_one_off_transaction (proposal_id) {
|
|
||||||
proposal_id -> Integer,
|
|
||||||
client_id -> Integer,
|
|
||||||
wallet_address -> Binary,
|
|
||||||
chain_id -> BigInt,
|
|
||||||
nonce -> BigInt,
|
|
||||||
gas_limit -> BigInt,
|
|
||||||
max_fee_per_gas -> Binary,
|
|
||||||
max_priority_fee_per_gas -> Binary,
|
|
||||||
to_address -> Binary,
|
|
||||||
value -> Binary,
|
|
||||||
input -> Binary,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal_persistent_grant (proposal_id) {
|
|
||||||
proposal_id -> Integer,
|
|
||||||
wallet_access_id -> Integer,
|
|
||||||
chain_id -> BigInt,
|
|
||||||
valid_from -> Nullable<BigInt>,
|
|
||||||
valid_until -> Nullable<BigInt>,
|
|
||||||
max_gas_fee_per_gas -> Nullable<Binary>,
|
|
||||||
max_priority_fee_per_gas -> Nullable<Binary>,
|
|
||||||
rate_limit_count -> Nullable<Integer>,
|
|
||||||
rate_limit_window_secs -> Nullable<BigInt>,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal_persistent_grant_ether (proposal_id) {
|
|
||||||
proposal_id -> Integer,
|
|
||||||
window_secs -> BigInt,
|
|
||||||
max_volume -> Binary,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal_persistent_grant_ether_target (id) {
|
|
||||||
id -> Integer,
|
|
||||||
proposal_id -> Integer,
|
|
||||||
address -> Binary,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal_persistent_grant_token (proposal_id) {
|
|
||||||
proposal_id -> Integer,
|
|
||||||
token_contract -> Binary,
|
|
||||||
receiver -> Nullable<Binary>,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal_persistent_grant_token_limit (id) {
|
|
||||||
id -> Integer,
|
|
||||||
proposal_id -> Integer,
|
|
||||||
window_secs -> BigInt,
|
|
||||||
max_volume -> Binary,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal_one_off_transaction_result (proposal_id) {
|
|
||||||
proposal_id -> Integer,
|
|
||||||
r -> Binary,
|
|
||||||
s -> Binary,
|
|
||||||
y_parity -> Integer,
|
|
||||||
created_at -> Integer,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
recovery_operator (id) {
|
|
||||||
id -> Integer,
|
|
||||||
share -> Binary,
|
|
||||||
share_nonce -> Binary,
|
|
||||||
share_salt -> Binary,
|
|
||||||
created_at -> Integer,
|
|
||||||
updated_at -> Integer,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
recovery_operator_identity (id) {
|
|
||||||
id -> Integer,
|
|
||||||
public_key -> Binary,
|
|
||||||
created_at -> Integer,
|
|
||||||
updated_at -> Integer,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
recovery_wakeup_request (id) {
|
|
||||||
id -> Integer,
|
|
||||||
requested_by -> Integer,
|
|
||||||
requested_at -> Integer,
|
|
||||||
cancelled_by -> Nullable<Integer>,
|
|
||||||
cancelled_at -> Nullable<Integer>,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
recovery_proposal_vote (id) {
|
|
||||||
id -> Integer,
|
|
||||||
proposal_id -> Integer,
|
|
||||||
recovery_operator_id -> Integer,
|
|
||||||
approve -> Bool,
|
|
||||||
signature -> Binary,
|
|
||||||
voted_at -> Integer,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
|
||||||
proposal_vote (id) {
|
|
||||||
id -> Integer,
|
|
||||||
proposal_id -> Integer,
|
|
||||||
operator_id -> Integer,
|
|
||||||
approve -> Bool,
|
|
||||||
signature -> Binary,
|
|
||||||
voted_at -> Integer,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
diesel::table! {
|
diesel::table! {
|
||||||
program_client (id) {
|
program_client (id) {
|
||||||
id -> Integer,
|
id -> Integer,
|
||||||
@@ -384,38 +224,9 @@ diesel::joinable!(evm_wallet_access -> evm_wallet (wallet_id));
|
|||||||
diesel::joinable!(evm_wallet_access -> program_client (client_id));
|
diesel::joinable!(evm_wallet_access -> program_client (client_id));
|
||||||
diesel::joinable!(operator -> operator_identity (id));
|
diesel::joinable!(operator -> operator_identity (id));
|
||||||
diesel::joinable!(program_client -> client_metadata (metadata_id));
|
diesel::joinable!(program_client -> client_metadata (metadata_id));
|
||||||
diesel::joinable!(proposal -> operator_identity (initiator_id));
|
|
||||||
diesel::joinable!(proposal_one_off_transaction_result -> proposal_one_off_transaction (proposal_id));
|
|
||||||
diesel::joinable!(proposal_approve_sdk_client -> proposal (proposal_id));
|
|
||||||
diesel::joinable!(proposal_grant_wallet_access -> proposal (proposal_id));
|
|
||||||
diesel::joinable!(proposal_replace_operator -> proposal (proposal_id));
|
|
||||||
diesel::joinable!(proposal_one_off_transaction -> proposal (proposal_id));
|
|
||||||
diesel::joinable!(proposal_persistent_grant -> proposal (proposal_id));
|
|
||||||
diesel::joinable!(proposal_persistent_grant_ether -> proposal_persistent_grant (proposal_id));
|
|
||||||
diesel::joinable!(proposal_persistent_grant_token -> proposal_persistent_grant (proposal_id));
|
|
||||||
diesel::joinable!(proposal_vote -> proposal (proposal_id));
|
|
||||||
diesel::joinable!(proposal_vote -> operator_identity (operator_id));
|
|
||||||
diesel::joinable!(recovery_operator -> recovery_operator_identity (id));
|
|
||||||
diesel::joinable!(recovery_proposal_vote -> proposal (proposal_id));
|
|
||||||
diesel::joinable!(recovery_proposal_vote -> recovery_operator_identity (recovery_operator_id));
|
|
||||||
diesel::joinable!(recovery_wakeup_request -> operator_identity (requested_by));
|
|
||||||
|
|
||||||
diesel::allow_tables_to_appear_in_same_query!(
|
diesel::allow_tables_to_appear_in_same_query!(
|
||||||
aead_encrypted,
|
aead_encrypted,
|
||||||
proposal_one_off_transaction_result,
|
|
||||||
proposal_approve_sdk_client,
|
|
||||||
proposal_grant_wallet_access,
|
|
||||||
proposal_replace_operator,
|
|
||||||
proposal_one_off_transaction,
|
|
||||||
proposal_persistent_grant,
|
|
||||||
proposal_persistent_grant_ether,
|
|
||||||
proposal_persistent_grant_ether_target,
|
|
||||||
proposal_persistent_grant_token,
|
|
||||||
proposal_persistent_grant_token_limit,
|
|
||||||
recovery_operator,
|
|
||||||
recovery_operator_identity,
|
|
||||||
recovery_wakeup_request,
|
|
||||||
recovery_proposal_vote,
|
|
||||||
arbiter_settings,
|
arbiter_settings,
|
||||||
client_metadata,
|
client_metadata,
|
||||||
client_metadata_history,
|
client_metadata_history,
|
||||||
@@ -433,8 +244,6 @@ diesel::allow_tables_to_appear_in_same_query!(
|
|||||||
operator,
|
operator,
|
||||||
operator_identity,
|
operator_identity,
|
||||||
program_client,
|
program_client,
|
||||||
proposal,
|
|
||||||
proposal_vote,
|
|
||||||
root_key_history,
|
root_key_history,
|
||||||
tls_history,
|
tls_history,
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,28 +1,34 @@
|
|||||||
|
use diesel_async::{AsyncConnection, RunQueryDsl};
|
||||||
|
use kameo::actor::ActorRef;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
actors::vault::Vault,
|
actors::vault::Vault,
|
||||||
crypto::integrity,
|
crypto::integrity,
|
||||||
db::{
|
db::{
|
||||||
self, DatabaseError,
|
self, DatabaseError,
|
||||||
models::{
|
models::{
|
||||||
EvmBasicGrant, EvmWalletAccess, NewEvmBasicGrant, NewEvmTransactionLog, SqliteTimestamp,
|
EvmBasicGrant, EvmEtherTransferGrant, EvmEtherTransferGrantTarget,
|
||||||
|
EvmEtherTransferLimit, EvmTokenTransferGrant, EvmTokenTransferVolumeLimit,
|
||||||
|
EvmWalletAccess, NewEvmBasicGrant, NewEvmTransactionLog, SqliteTimestamp,
|
||||||
},
|
},
|
||||||
schema::{self, evm_transaction_log},
|
schema::{self, evm_transaction_log},
|
||||||
},
|
},
|
||||||
evm::policies::{
|
evm::policies::{
|
||||||
CombinedSettings, DatabaseID, EvalContext, EvalViolation, Grant, Policy,
|
CombinedSettings, DatabaseID, EvalContext, EvalViolation, Grant, Policy,
|
||||||
SharedGrantSettings, SpecificGrant, SpecificMeaning, ether_transfer::EtherTransfer,
|
SharedGrantSettings, SpecificGrant, SpecificMeaning, VolumeRateLimit,
|
||||||
token_transfers::TokenTransfer,
|
ether_transfer::EtherTransfer, token_transfers::TokenTransfer,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
use alloy::{
|
use alloy::{
|
||||||
consensus::TxEip1559,
|
consensus::TxEip1559,
|
||||||
primitives::{TxKind, U256},
|
primitives::{Address, TxKind, U256},
|
||||||
};
|
};
|
||||||
use chrono::Utc;
|
use chrono::Utc;
|
||||||
use diesel::{ExpressionMethods as _, QueryDsl as _, QueryResult, insert_into, sqlite::Sqlite};
|
use diesel::{
|
||||||
use diesel_async::{AsyncConnection, RunQueryDsl};
|
ExpressionMethods as _, OptionalExtension, QueryDsl as _, QueryResult, SelectableHelper,
|
||||||
use kameo::actor::ActorRef;
|
insert_into, sqlite::Sqlite, update,
|
||||||
|
};
|
||||||
|
|
||||||
pub mod abi;
|
pub mod abi;
|
||||||
pub mod safe_signer;
|
pub mod safe_signer;
|
||||||
@@ -272,6 +278,151 @@ impl Engine {
|
|||||||
Ok(id)
|
Ok(id)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn revoke_grant(
|
||||||
|
&self,
|
||||||
|
basic_grant_id: i32,
|
||||||
|
) -> Result<(), DatabaseError> {
|
||||||
|
let mut conn = self.db.get().await.map_err(DatabaseError::from)?;
|
||||||
|
let vault = self.vault.clone();
|
||||||
|
|
||||||
|
conn.transaction(async move |conn| {
|
||||||
|
use crate::db::schema::{
|
||||||
|
evm_basic_grant, evm_ether_transfer_grant, evm_ether_transfer_grant_target,
|
||||||
|
evm_ether_transfer_limit, evm_token_transfer_grant,
|
||||||
|
evm_token_transfer_volume_limit,
|
||||||
|
};
|
||||||
|
|
||||||
|
update(evm_basic_grant::table)
|
||||||
|
.filter(evm_basic_grant::id.eq(basic_grant_id))
|
||||||
|
.set(evm_basic_grant::revoked_at.eq(SqliteTimestamp(Utc::now())))
|
||||||
|
.execute(&mut *conn)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
let basic_grant: EvmBasicGrant = evm_basic_grant::table
|
||||||
|
.filter(evm_basic_grant::id.eq(basic_grant_id))
|
||||||
|
.select(EvmBasicGrant::as_select())
|
||||||
|
.first(&mut *conn)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
let shared = SharedGrantSettings::try_from_model(basic_grant)?;
|
||||||
|
|
||||||
|
if let Some(ether_grant) = evm_ether_transfer_grant::table
|
||||||
|
.filter(evm_ether_transfer_grant::basic_grant_id.eq(basic_grant_id))
|
||||||
|
.select(EvmEtherTransferGrant::as_select())
|
||||||
|
.first(&mut *conn)
|
||||||
|
.await
|
||||||
|
.optional()?
|
||||||
|
{
|
||||||
|
let target_rows: Vec<EvmEtherTransferGrantTarget> =
|
||||||
|
evm_ether_transfer_grant_target::table
|
||||||
|
.filter(evm_ether_transfer_grant_target::grant_id.eq(ether_grant.id))
|
||||||
|
.select(EvmEtherTransferGrantTarget::as_select())
|
||||||
|
.load(&mut *conn)
|
||||||
|
.await?;
|
||||||
|
let targets: Vec<Address> = target_rows
|
||||||
|
.into_iter()
|
||||||
|
.filter_map(|target| {
|
||||||
|
let arr: [u8; 20] = target.address.try_into().ok()?;
|
||||||
|
Some(Address::from(arr))
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
let limit: EvmEtherTransferLimit = evm_ether_transfer_limit::table
|
||||||
|
.filter(evm_ether_transfer_limit::id.eq(ether_grant.limit_id))
|
||||||
|
.select(EvmEtherTransferLimit::as_select())
|
||||||
|
.first(&mut *conn)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
let settings = CombinedSettings {
|
||||||
|
shared: shared.clone(),
|
||||||
|
specific: policies::ether_transfer::Settings {
|
||||||
|
target: targets,
|
||||||
|
limit: VolumeRateLimit {
|
||||||
|
max_volume: utils::try_bytes_to_u256(&limit.max_volume).map_err(
|
||||||
|
|err| {
|
||||||
|
diesel::result::Error::DeserializationError(Box::new(err))
|
||||||
|
},
|
||||||
|
)?,
|
||||||
|
window: chrono::Duration::seconds(limit.window_secs.into()),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
integrity::sign_entity(&mut *conn, &vault, &settings, basic_grant_id)
|
||||||
|
.await
|
||||||
|
.map_err(|_| diesel::result::Error::RollbackTransaction)?;
|
||||||
|
|
||||||
|
return QueryResult::Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(token_grant) = evm_token_transfer_grant::table
|
||||||
|
.filter(evm_token_transfer_grant::basic_grant_id.eq(basic_grant_id))
|
||||||
|
.select(EvmTokenTransferGrant::as_select())
|
||||||
|
.first(&mut *conn)
|
||||||
|
.await
|
||||||
|
.optional()?
|
||||||
|
{
|
||||||
|
let volume_limit_rows: Vec<EvmTokenTransferVolumeLimit> =
|
||||||
|
evm_token_transfer_volume_limit::table
|
||||||
|
.filter(evm_token_transfer_volume_limit::grant_id.eq(token_grant.id))
|
||||||
|
.select(EvmTokenTransferVolumeLimit::as_select())
|
||||||
|
.load(&mut *conn)
|
||||||
|
.await?;
|
||||||
|
let volume_limits: Vec<VolumeRateLimit> = volume_limit_rows
|
||||||
|
.into_iter()
|
||||||
|
.map(|row| {
|
||||||
|
Ok(VolumeRateLimit {
|
||||||
|
max_volume: utils::try_bytes_to_u256(&row.max_volume).map_err(
|
||||||
|
|err| {
|
||||||
|
diesel::result::Error::DeserializationError(Box::new(err))
|
||||||
|
},
|
||||||
|
)?,
|
||||||
|
window: chrono::Duration::seconds(row.window_secs.into()),
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.collect::<QueryResult<Vec<_>>>()?;
|
||||||
|
|
||||||
|
let target: Option<Address> = match token_grant.receiver {
|
||||||
|
None => None,
|
||||||
|
Some(bytes) => {
|
||||||
|
let arr: [u8; 20] = bytes.try_into().map_err(|_| {
|
||||||
|
diesel::result::Error::DeserializationError(
|
||||||
|
"Invalid receiver address length".into(),
|
||||||
|
)
|
||||||
|
})?;
|
||||||
|
Some(Address::from(arr))
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let token_contract: [u8; 20] =
|
||||||
|
token_grant.token_contract.clone().try_into().map_err(|_| {
|
||||||
|
diesel::result::Error::DeserializationError(
|
||||||
|
"Invalid token contract address length".into(),
|
||||||
|
)
|
||||||
|
})?;
|
||||||
|
|
||||||
|
let settings = CombinedSettings {
|
||||||
|
shared,
|
||||||
|
specific: policies::token_transfers::Settings {
|
||||||
|
token_contract: Address::from(token_contract),
|
||||||
|
target,
|
||||||
|
volume_limits,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
integrity::sign_entity(&mut *conn, &vault, &settings, basic_grant_id)
|
||||||
|
.await
|
||||||
|
.map_err(|_| diesel::result::Error::RollbackTransaction)?;
|
||||||
|
|
||||||
|
return QueryResult::Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
Err(diesel::result::Error::NotFound)
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.map_err(DatabaseError::from)
|
||||||
|
}
|
||||||
|
|
||||||
async fn list_one_kind<Kind: Policy, Y>(
|
async fn list_one_kind<Kind: Policy, Y>(
|
||||||
&self,
|
&self,
|
||||||
conn: &mut impl AsyncConnection<Backend = Sqlite>,
|
conn: &mut impl AsyncConnection<Backend = Sqlite>,
|
||||||
@@ -351,11 +502,15 @@ impl Engine {
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use alloy::primitives::{Address, Bytes, U256, address};
|
use alloy::primitives::{Address, Bytes, U256, address};
|
||||||
|
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
||||||
use chrono::{Duration, Utc};
|
use chrono::{Duration, Utc};
|
||||||
use diesel::{SelectableHelper, insert_into};
|
use diesel::{SelectableHelper, insert_into};
|
||||||
use diesel_async::RunQueryDsl;
|
use diesel_async::RunQueryDsl;
|
||||||
|
use kameo::{actor::ActorRef, prelude::Spawn};
|
||||||
use rstest::rstest;
|
use rstest::rstest;
|
||||||
|
|
||||||
|
use crate::actors::{GlobalActors, vault::{Bootstrap, Vault}};
|
||||||
|
use crate::crypto::integrity;
|
||||||
use crate::db::{
|
use crate::db::{
|
||||||
self, DatabaseConnection,
|
self, DatabaseConnection,
|
||||||
models::{
|
models::{
|
||||||
@@ -364,8 +519,10 @@ mod tests {
|
|||||||
},
|
},
|
||||||
schema::{evm_basic_grant, evm_transaction_log},
|
schema::{evm_basic_grant, evm_transaction_log},
|
||||||
};
|
};
|
||||||
|
use crate::evm::policies::ether_transfer::EtherTransfer;
|
||||||
use crate::evm::policies::{
|
use crate::evm::policies::{
|
||||||
EvalContext, EvalViolation, SharedGrantSettings, TransactionRateLimit,
|
CombinedSettings, EvalContext, EvalViolation, Policy, SharedGrantSettings,
|
||||||
|
TransactionRateLimit, VolumeRateLimit,
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::check_shared_constraints;
|
use super::check_shared_constraints;
|
||||||
@@ -397,6 +554,7 @@ mod tests {
|
|||||||
chain: CHAIN_ID,
|
chain: CHAIN_ID,
|
||||||
valid_from: None,
|
valid_from: None,
|
||||||
valid_until: None,
|
valid_until: None,
|
||||||
|
revoked_at: None,
|
||||||
max_gas_fee_per_gas: None,
|
max_gas_fee_per_gas: None,
|
||||||
max_priority_fee_per_gas: None,
|
max_priority_fee_per_gas: None,
|
||||||
rate_limit: None,
|
rate_limit: None,
|
||||||
@@ -605,4 +763,115 @@ mod tests {
|
|||||||
assert!(violations.is_empty());
|
assert!(violations.is_empty());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn bootstrapped_vault(db: &db::DatabasePool) -> ActorRef<Vault> {
|
||||||
|
let actor = Vault::spawn(
|
||||||
|
Vault::new(db.clone(), GlobalActors::spawn_message_bus())
|
||||||
|
.await
|
||||||
|
.unwrap(),
|
||||||
|
);
|
||||||
|
actor
|
||||||
|
.ask(Bootstrap {
|
||||||
|
seal_key_raw: SafeCell::new(b"integrity-test-seal-key".to_vec()),
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
actor
|
||||||
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn revoke_grant_preserves_revoked_integrity() {
|
||||||
|
use crate::db::schema::evm_basic_grant;
|
||||||
|
use diesel::ExpressionMethods as _;
|
||||||
|
|
||||||
|
let db = db::create_test_pool().await;
|
||||||
|
let vault = bootstrapped_vault(&db).await;
|
||||||
|
let engine = super::Engine::new(db.clone(), vault.clone());
|
||||||
|
|
||||||
|
let full_grant = CombinedSettings {
|
||||||
|
shared: SharedGrantSettings {
|
||||||
|
wallet_access_id: WALLET_ACCESS_ID,
|
||||||
|
chain: CHAIN_ID,
|
||||||
|
valid_from: None,
|
||||||
|
valid_until: None,
|
||||||
|
revoked_at: None,
|
||||||
|
max_gas_fee_per_gas: None,
|
||||||
|
max_priority_fee_per_gas: None,
|
||||||
|
rate_limit: None,
|
||||||
|
},
|
||||||
|
specific: super::policies::ether_transfer::Settings {
|
||||||
|
target: vec![RECIPIENT],
|
||||||
|
limit: VolumeRateLimit {
|
||||||
|
max_volume: U256::from(100u64),
|
||||||
|
window: Duration::hours(1),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
let grant_id = engine
|
||||||
|
.create_grant::<EtherTransfer>(full_grant)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
engine.revoke_grant(grant_id).await.unwrap();
|
||||||
|
|
||||||
|
let mut conn = db.get().await.unwrap();
|
||||||
|
diesel::update(evm_basic_grant::table)
|
||||||
|
.filter(evm_basic_grant::id.eq(grant_id))
|
||||||
|
.set(evm_basic_grant::revoked_at.eq::<Option<SqliteTimestamp>>(None))
|
||||||
|
.execute(&mut conn)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let wallet_access = EvmWalletAccess {
|
||||||
|
id: WALLET_ACCESS_ID,
|
||||||
|
wallet_id: EvmWalletId::from_raw(10),
|
||||||
|
client_id: 20,
|
||||||
|
created_at: SqliteTimestamp(Utc::now()),
|
||||||
|
};
|
||||||
|
let context = EvalContext {
|
||||||
|
target: wallet_access,
|
||||||
|
chain: CHAIN_ID,
|
||||||
|
to: RECIPIENT,
|
||||||
|
value: U256::ONE,
|
||||||
|
calldata: Bytes::new(),
|
||||||
|
max_fee_per_gas: 1,
|
||||||
|
max_priority_fee_per_gas: 1,
|
||||||
|
};
|
||||||
|
|
||||||
|
let grant = EtherTransfer::try_find_grant(
|
||||||
|
&context, &mut conn,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap()
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let result =
|
||||||
|
integrity::verify_entity(&mut conn, &vault, &grant.settings, grant.id).await;
|
||||||
|
|
||||||
|
assert!(matches!(
|
||||||
|
result,
|
||||||
|
Err(integrity::Error::MacMismatch { .. })
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn shared_settings_hash_changes_when_revoked_at_changes() {
|
||||||
|
use arbiter_crypto::hashing::Hashable;
|
||||||
|
use sha2::Digest;
|
||||||
|
|
||||||
|
let active = shared_settings();
|
||||||
|
let revoked = SharedGrantSettings {
|
||||||
|
revoked_at: Some(Utc::now()),
|
||||||
|
..shared_settings()
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut active_hash = sha2::Sha256::new();
|
||||||
|
active.hash(&mut active_hash);
|
||||||
|
|
||||||
|
let mut revoked_hash = sha2::Sha256::new();
|
||||||
|
revoked.hash(&mut revoked_hash);
|
||||||
|
|
||||||
|
assert_ne!(active_hash.finalize(), revoked_hash.finalize());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -144,6 +144,7 @@ pub struct SharedGrantSettings {
|
|||||||
|
|
||||||
pub valid_from: Option<DateTime<Utc>>,
|
pub valid_from: Option<DateTime<Utc>>,
|
||||||
pub valid_until: Option<DateTime<Utc>>,
|
pub valid_until: Option<DateTime<Utc>>,
|
||||||
|
pub revoked_at: Option<DateTime<Utc>>,
|
||||||
|
|
||||||
pub max_gas_fee_per_gas: Option<U256>,
|
pub max_gas_fee_per_gas: Option<U256>,
|
||||||
pub max_priority_fee_per_gas: Option<U256>,
|
pub max_priority_fee_per_gas: Option<U256>,
|
||||||
@@ -158,6 +159,7 @@ impl SharedGrantSettings {
|
|||||||
chain: model.chain_id.into(),
|
chain: model.chain_id.into(),
|
||||||
valid_from: model.valid_from.map(Into::into),
|
valid_from: model.valid_from.map(Into::into),
|
||||||
valid_until: model.valid_until.map(Into::into),
|
valid_until: model.valid_until.map(Into::into),
|
||||||
|
revoked_at: model.revoked_at.map(Into::into),
|
||||||
max_gas_fee_per_gas: model
|
max_gas_fee_per_gas: model
|
||||||
.max_gas_fee_per_gas
|
.max_gas_fee_per_gas
|
||||||
.map(|b| utils::try_bytes_to_u256(&b))
|
.map(|b| utils::try_bytes_to_u256(&b))
|
||||||
|
|||||||
@@ -80,6 +80,7 @@ fn shared() -> SharedGrantSettings {
|
|||||||
chain: CHAIN_ID,
|
chain: CHAIN_ID,
|
||||||
valid_from: None,
|
valid_from: None,
|
||||||
valid_until: None,
|
valid_until: None,
|
||||||
|
revoked_at: None,
|
||||||
max_gas_fee_per_gas: None,
|
max_gas_fee_per_gas: None,
|
||||||
max_priority_fee_per_gas: None,
|
max_priority_fee_per_gas: None,
|
||||||
rate_limit: None,
|
rate_limit: None,
|
||||||
|
|||||||
@@ -98,6 +98,7 @@ fn shared() -> SharedGrantSettings {
|
|||||||
chain: CHAIN_ID,
|
chain: CHAIN_ID,
|
||||||
valid_from: None,
|
valid_from: None,
|
||||||
valid_until: None,
|
valid_until: None,
|
||||||
|
revoked_at: None,
|
||||||
max_gas_fee_per_gas: None,
|
max_gas_fee_per_gas: None,
|
||||||
max_priority_fee_per_gas: None,
|
max_priority_fee_per_gas: None,
|
||||||
rate_limit: None,
|
rate_limit: None,
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ impl std::fmt::Debug for SafeSigner {
|
|||||||
/// Returns the protected key bytes and the derived Ethereum address.
|
/// Returns the protected key bytes and the derived Ethereum address.
|
||||||
pub fn generate(rng: &mut impl rand::Rng) -> (SafeCell<[u8; 32]>, Address) {
|
pub fn generate(rng: &mut impl rand::Rng) -> (SafeCell<[u8; 32]>, Address) {
|
||||||
loop {
|
loop {
|
||||||
let mut cell = SafeCell::new_inline_default(|w: &mut [u8; 32]| {
|
let mut cell = SafeCell::new_inline(|w: &mut [u8; 32]| {
|
||||||
rng.fill_bytes(w);
|
rng.fill_bytes(w);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -200,7 +200,7 @@ impl Convert for auth::Outbound {
|
|||||||
.timestamp
|
.timestamp
|
||||||
.timestamp_nanos_opt()
|
.timestamp_nanos_opt()
|
||||||
.expect("timestamp within range")
|
.expect("timestamp within range")
|
||||||
as u64,
|
.cast_unsigned(),
|
||||||
random: challenge.nonce.to_vec(),
|
random: challenge.nonce.to_vec(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ use tracing::{error, info, warn};
|
|||||||
|
|
||||||
mod auth;
|
mod auth;
|
||||||
mod evm;
|
mod evm;
|
||||||
mod governance;
|
|
||||||
mod inbound;
|
mod inbound;
|
||||||
mod outbound;
|
mod outbound;
|
||||||
mod sdk_client;
|
mod sdk_client;
|
||||||
@@ -116,7 +115,6 @@ async fn dispatch_inner(
|
|||||||
warn!("Unsupported post-auth operator auth request");
|
warn!("Unsupported post-auth operator auth request");
|
||||||
Err(Status::invalid_argument("Unsupported operator request"))
|
Err(Status::invalid_argument("Unsupported operator request"))
|
||||||
}
|
}
|
||||||
OperatorRequestPayload::Governance(req) => governance::dispatch(actor, req).await,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ impl Sender<Result<auth::Outbound, auth::Error>> for AuthTransportAdapter<'_> {
|
|||||||
.timestamp
|
.timestamp
|
||||||
.timestamp_nanos_opt()
|
.timestamp_nanos_opt()
|
||||||
.expect("timestamp within range")
|
.expect("timestamp within range")
|
||||||
as u64,
|
.cast_unsigned(),
|
||||||
random: challenge.nonce.to_vec(),
|
random: challenge.nonce.to_vec(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -171,7 +171,7 @@ impl Receiver<auth::Inbound> for AuthTransportAdapter<'_> {
|
|||||||
|
|
||||||
Some(auth::Inbound::AuthChallengeRequest {
|
Some(auth::Inbound::AuthChallengeRequest {
|
||||||
pubkey,
|
pubkey,
|
||||||
bootstrap_token,
|
bootstrap_token: bootstrap_token.map(String::into_bytes),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
AuthRequestPayload::ChallengeSolution(ProtoAuthChallengeSolution { signature }) => {
|
AuthRequestPayload::ChallengeSolution(ProtoAuthChallengeSolution { signature }) => {
|
||||||
|
|||||||
@@ -217,6 +217,11 @@ async fn handle_sign_transaction(
|
|||||||
result: Some(vet_error.convert()),
|
result: Some(vet_error.convert()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Err(kameo::error::SendError::HandlerError(
|
||||||
|
SessionSignTransactionError::ClientNotConnected,
|
||||||
|
)) => {
|
||||||
|
return Err(Status::permission_denied("client not connected"));
|
||||||
|
}
|
||||||
Err(kameo::error::SendError::HandlerError(SessionSignTransactionError::Internal)) => {
|
Err(kameo::error::SendError::HandlerError(SessionSignTransactionError::Internal)) => {
|
||||||
EvmSignTransactionResponse {
|
EvmSignTransactionResponse {
|
||||||
result: Some(EvmSignTransactionResult::Error(
|
result: Some(EvmSignTransactionResult::Error(
|
||||||
|
|||||||
@@ -1,256 +0,0 @@
|
|||||||
use crate::{
|
|
||||||
actors::proposal_manager::{Error as ProposalError, VoteOutcome},
|
|
||||||
db::models::{OperatorIdentityId, ProposalId},
|
|
||||||
db::proposal::{
|
|
||||||
ProposalKind, approve_sdk_client, grant_wallet_access, one_off_transaction,
|
|
||||||
persistent_grant, replace_operator,
|
|
||||||
},
|
|
||||||
peers::operator::{
|
|
||||||
OperatorSession,
|
|
||||||
session::handlers::{HandleCastVote, HandleCreateProposal, HandleQueryPending},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
use arbiter_proto::proto::operator::{
|
|
||||||
governance::{
|
|
||||||
self as proto_gov, CreateProposalRequest, QueryPendingRequest, QueryPendingResponse,
|
|
||||||
VoteOutcome as ProtoVoteOutcome, create_proposal_request::Kind as ProtoKind,
|
|
||||||
request::Payload as GovRequestPayload, response::Payload as GovResponsePayload,
|
|
||||||
},
|
|
||||||
operator_response::Payload as OperatorResponsePayload,
|
|
||||||
};
|
|
||||||
use kameo::actor::ActorRef;
|
|
||||||
use tonic::Status;
|
|
||||||
use tracing::warn;
|
|
||||||
|
|
||||||
const fn wrap(payload: GovResponsePayload) -> OperatorResponsePayload {
|
|
||||||
OperatorResponsePayload::Governance(proto_gov::Response {
|
|
||||||
payload: Some(payload),
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(super) async fn dispatch(
|
|
||||||
actor: &ActorRef<OperatorSession>,
|
|
||||||
req: proto_gov::Request,
|
|
||||||
) -> Result<Option<OperatorResponsePayload>, Status> {
|
|
||||||
let Some(payload) = req.payload else {
|
|
||||||
return Err(Status::invalid_argument(
|
|
||||||
"Missing governance request payload",
|
|
||||||
));
|
|
||||||
};
|
|
||||||
|
|
||||||
match payload {
|
|
||||||
GovRequestPayload::Create(req) => handle_create(actor, req).await,
|
|
||||||
GovRequestPayload::Vote(req) => handle_vote(actor, req).await,
|
|
||||||
GovRequestPayload::Query(QueryPendingRequest {}) => handle_query(actor).await,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn handle_create(
|
|
||||||
actor: &ActorRef<OperatorSession>,
|
|
||||||
req: CreateProposalRequest,
|
|
||||||
) -> Result<Option<OperatorResponsePayload>, Status> {
|
|
||||||
let kind = match req.kind {
|
|
||||||
Some(ProtoKind::ApproveSdkClient(p)) => {
|
|
||||||
ProposalKind::ApproveSdkClient(approve_sdk_client::Settings {
|
|
||||||
client_id: p.client_id,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
Some(ProtoKind::GrantWalletAccess(p)) => {
|
|
||||||
ProposalKind::GrantWalletAccess(grant_wallet_access::Settings {
|
|
||||||
wallet_id: p.wallet_id,
|
|
||||||
client_id: p.client_id,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
Some(ProtoKind::ReplaceOperator(p)) => {
|
|
||||||
ProposalKind::ReplaceOperator(replace_operator::Settings {
|
|
||||||
old_operator_id: OperatorIdentityId::from_raw(p.old_operator_id),
|
|
||||||
new_pubkey: p.new_pubkey,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
Some(ProtoKind::TriggerRekey(())) => ProposalKind::TriggerRekey,
|
|
||||||
Some(ProtoKind::ApprovePersistentGrant(p)) => {
|
|
||||||
ProposalKind::ApprovePersistentGrant(Box::new(parse_persistent_grant(p)?))
|
|
||||||
}
|
|
||||||
Some(ProtoKind::ApproveOneOffTransaction(p)) => {
|
|
||||||
ProposalKind::ApproveOneOffTransaction(Box::new(parse_one_off_transaction(p)?))
|
|
||||||
}
|
|
||||||
None => return Err(Status::invalid_argument("Missing proposal kind")),
|
|
||||||
};
|
|
||||||
let proposal_id = actor
|
|
||||||
.ask(HandleCreateProposal {
|
|
||||||
kind,
|
|
||||||
ttl_secs: req.ttl_secs,
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.map_err(|e| {
|
|
||||||
warn!(?e, "create_proposal failed");
|
|
||||||
Status::internal("Failed to create proposal")
|
|
||||||
})?;
|
|
||||||
|
|
||||||
Ok(Some(wrap(GovResponsePayload::Created(
|
|
||||||
proto_gov::CreateProposalResponse {
|
|
||||||
proposal_id: proposal_id.to_raw(),
|
|
||||||
},
|
|
||||||
))))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Validates the grant where the request enters, so a malformed one is refused before
|
|
||||||
/// any operator votes on it instead of failing after quorum.
|
|
||||||
fn parse_persistent_grant(
|
|
||||||
p: proto_gov::ApprovePersistentGrantPayload,
|
|
||||||
) -> Result<persistent_grant::Settings, Status> {
|
|
||||||
use proto_gov::approve_persistent_grant_payload::Specific;
|
|
||||||
|
|
||||||
let volume =
|
|
||||||
|l: proto_gov::VolumeLimitProto| -> Result<persistent_grant::VolumeLimit, Status> {
|
|
||||||
Ok(persistent_grant::VolumeLimit {
|
|
||||||
max_volume: fixed(&l.max_volume, "max_volume must be 32 bytes")?,
|
|
||||||
window_secs: l.window_secs,
|
|
||||||
})
|
|
||||||
};
|
|
||||||
|
|
||||||
let specific = match p.specific {
|
|
||||||
Some(Specific::EtherTransfer(spec)) => {
|
|
||||||
let targets = spec
|
|
||||||
.targets
|
|
||||||
.iter()
|
|
||||||
.map(|target| fixed(target, "ether transfer target must be 20 bytes"))
|
|
||||||
.collect::<Result<Vec<_>, _>>()?;
|
|
||||||
let limit = spec
|
|
||||||
.limit
|
|
||||||
.ok_or_else(|| Status::invalid_argument("missing ether transfer limit"))?;
|
|
||||||
persistent_grant::Specific::EtherTransfer {
|
|
||||||
targets,
|
|
||||||
limit: volume(limit)?,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Some(Specific::TokenTransfer(spec)) => {
|
|
||||||
let volume_limits = spec
|
|
||||||
.volume_limits
|
|
||||||
.into_iter()
|
|
||||||
.map(volume)
|
|
||||||
.collect::<Result<Vec<_>, _>>()?;
|
|
||||||
persistent_grant::Specific::TokenTransfer {
|
|
||||||
token_contract: fixed(&spec.token_contract, "token_contract must be 20 bytes")?,
|
|
||||||
receiver: spec
|
|
||||||
.target
|
|
||||||
.map(|t| fixed(&t, "token transfer target must be 20 bytes"))
|
|
||||||
.transpose()?,
|
|
||||||
volume_limits,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
None => return Err(Status::invalid_argument("missing grant specific")),
|
|
||||||
};
|
|
||||||
|
|
||||||
Ok(persistent_grant::Settings {
|
|
||||||
wallet_access_id: p.wallet_access_id,
|
|
||||||
chain_id: p.chain_id,
|
|
||||||
valid_from_secs: p.valid_from_secs,
|
|
||||||
valid_until_secs: p.valid_until_secs,
|
|
||||||
max_gas_fee_per_gas: p
|
|
||||||
.max_gas_fee_per_gas
|
|
||||||
.map(|v| fixed(&v, "max_gas_fee_per_gas must be 32 bytes"))
|
|
||||||
.transpose()?,
|
|
||||||
max_priority_fee_per_gas: p
|
|
||||||
.max_priority_fee_per_gas
|
|
||||||
.map(|v| fixed(&v, "max_priority_fee_per_gas must be 32 bytes"))
|
|
||||||
.transpose()?,
|
|
||||||
rate_limit: p.rate_limit.map(|r| persistent_grant::RateLimit {
|
|
||||||
count: r.count,
|
|
||||||
window_secs: r.window_secs,
|
|
||||||
}),
|
|
||||||
specific,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
fn fixed<const N: usize>(bytes: &[u8], message: &'static str) -> Result<[u8; N], Status> {
|
|
||||||
<[u8; N]>::try_from(bytes).map_err(|_| Status::invalid_argument(message))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Validates the transaction where the request enters, so a malformed one is refused
|
|
||||||
/// before any operator votes on it instead of failing after quorum.
|
|
||||||
fn parse_one_off_transaction(
|
|
||||||
p: proto_gov::ApproveOneOffTransactionPayload,
|
|
||||||
) -> Result<one_off_transaction::Settings, Status> {
|
|
||||||
Ok(one_off_transaction::Settings {
|
|
||||||
client_id: p.client_id,
|
|
||||||
wallet_address: fixed(&p.wallet_address, "wallet_address must be 20 bytes")?,
|
|
||||||
chain_id: p.chain_id,
|
|
||||||
nonce: p.nonce,
|
|
||||||
gas_limit: p.gas_limit,
|
|
||||||
max_fee_per_gas: u128::from_be_bytes(fixed(
|
|
||||||
&p.max_fee_per_gas,
|
|
||||||
"max_fee_per_gas must be 16 bytes",
|
|
||||||
)?),
|
|
||||||
max_priority_fee_per_gas: u128::from_be_bytes(fixed(
|
|
||||||
&p.max_priority_fee_per_gas,
|
|
||||||
"max_priority_fee_per_gas must be 16 bytes",
|
|
||||||
)?),
|
|
||||||
to: fixed(&p.to, "to must be 20 bytes")?,
|
|
||||||
value: fixed(&p.value, "value must be 32 bytes")?,
|
|
||||||
input: p.input,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn handle_vote(
|
|
||||||
actor: &ActorRef<OperatorSession>,
|
|
||||||
req: proto_gov::CastVoteRequest,
|
|
||||||
) -> Result<Option<OperatorResponsePayload>, Status> {
|
|
||||||
let result = actor
|
|
||||||
.ask(HandleCastVote {
|
|
||||||
proposal_id: ProposalId::from_raw(req.proposal_id),
|
|
||||||
approve: req.approve,
|
|
||||||
signature: req.signature,
|
|
||||||
})
|
|
||||||
.await;
|
|
||||||
|
|
||||||
let outcome = match result {
|
|
||||||
Ok(VoteOutcome::Pending) => ProtoVoteOutcome::Pending,
|
|
||||||
Ok(VoteOutcome::Approved) => ProtoVoteOutcome::Approved,
|
|
||||||
Ok(VoteOutcome::Rejected) => ProtoVoteOutcome::Rejected,
|
|
||||||
Err(kameo::error::SendError::HandlerError(ProposalError::AlreadyVoted)) => {
|
|
||||||
return Err(Status::invalid_argument("Already voted on this proposal"));
|
|
||||||
}
|
|
||||||
Err(kameo::error::SendError::HandlerError(ProposalError::InvalidSignature)) => {
|
|
||||||
return Err(Status::invalid_argument("Invalid vote signature"));
|
|
||||||
}
|
|
||||||
Err(kameo::error::SendError::HandlerError(ProposalError::ProposalNotFound)) => {
|
|
||||||
return Err(Status::not_found("Proposal not found"));
|
|
||||||
}
|
|
||||||
Err(kameo::error::SendError::HandlerError(ProposalError::Unavailable)) => {
|
|
||||||
return Err(Status::unavailable("Proposal manager is unavailable"));
|
|
||||||
}
|
|
||||||
Err(e) => {
|
|
||||||
warn!(?e, "cast_vote failed");
|
|
||||||
return Err(Status::internal("Failed to cast vote"));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
Ok(Some(wrap(GovResponsePayload::Voted(
|
|
||||||
proto_gov::VoteResponse {
|
|
||||||
outcome: outcome.into(),
|
|
||||||
},
|
|
||||||
))))
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn handle_query(
|
|
||||||
actor: &ActorRef<OperatorSession>,
|
|
||||||
) -> Result<Option<OperatorResponsePayload>, Status> {
|
|
||||||
let summaries = actor.ask(HandleQueryPending {}).await.unwrap_or_default();
|
|
||||||
|
|
||||||
let proposals = summaries
|
|
||||||
.into_iter()
|
|
||||||
.map(|s| proto_gov::ProposalSummary {
|
|
||||||
id: s.id.to_raw(),
|
|
||||||
kind: <&'static str>::from(s.kind).to_owned(),
|
|
||||||
initiator_id: s.initiator_id.to_raw(),
|
|
||||||
expires_at: s.expires_at.0.timestamp(),
|
|
||||||
approve_count: s.approve_count,
|
|
||||||
reject_count: s.reject_count,
|
|
||||||
})
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
Ok(Some(wrap(GovResponsePayload::Pending(
|
|
||||||
QueryPendingResponse { proposals },
|
|
||||||
))))
|
|
||||||
}
|
|
||||||
@@ -86,6 +86,7 @@ impl TryConvert for ProtoSharedSettings {
|
|||||||
.valid_until
|
.valid_until
|
||||||
.map(ProtoTimestamp::try_convert)
|
.map(ProtoTimestamp::try_convert)
|
||||||
.transpose()?,
|
.transpose()?,
|
||||||
|
revoked_at: None,
|
||||||
max_gas_fee_per_gas: self
|
max_gas_fee_per_gas: self
|
||||||
.max_gas_fee_per_gas
|
.max_gas_fee_per_gas
|
||||||
.as_deref()
|
.as_deref()
|
||||||
|
|||||||
@@ -1,24 +1,16 @@
|
|||||||
use crate::{
|
use crate::{
|
||||||
actors::vault::VaultState,
|
actors::vault::VaultState,
|
||||||
peers::operator::{
|
peers::operator::{OperatorSession, session::handlers::HandleQueryVaultState},
|
||||||
OperatorSession,
|
|
||||||
session::handlers::{
|
|
||||||
HandleContributeRecoveryRekeyPassphrase, HandleContributeRekeyPassphrase,
|
|
||||||
HandleQueryVaultState,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
use arbiter_proto::{
|
use arbiter_proto::{
|
||||||
|
proto::shared::VaultState as ProtoVaultState,
|
||||||
proto::operator::{
|
proto::operator::{
|
||||||
operator_response::Payload as OperatorResponsePayload,
|
operator_response::Payload as OperatorResponsePayload,
|
||||||
vault::{
|
vault::{
|
||||||
self as proto_vault,
|
self as proto_vault, request::Payload as VaultRequestPayload,
|
||||||
rekey::{self as proto_rekey, RekeyResult as ProtoRekeyResult},
|
|
||||||
request::Payload as VaultRequestPayload,
|
|
||||||
response::Payload as VaultResponsePayload,
|
response::Payload as VaultResponsePayload,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
proto::shared::VaultState as ProtoVaultState,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
use kameo::actor::ActorRef;
|
use kameo::actor::ActorRef;
|
||||||
@@ -41,7 +33,6 @@ pub(super) async fn dispatch(
|
|||||||
|
|
||||||
match payload {
|
match payload {
|
||||||
VaultRequestPayload::QueryState(()) => handle_query_vault_state(actor).await,
|
VaultRequestPayload::QueryState(()) => handle_query_vault_state(actor).await,
|
||||||
VaultRequestPayload::Rekey(req) => handle_rekey(actor, req).await,
|
|
||||||
VaultRequestPayload::Unseal(_) | VaultRequestPayload::Bootstrap(_) => {
|
VaultRequestPayload::Unseal(_) | VaultRequestPayload::Bootstrap(_) => {
|
||||||
Err(Status::permission_denied(
|
Err(Status::permission_denied(
|
||||||
"Vault is already unsealed; unseal/bootstrap not permitted in session",
|
"Vault is already unsealed; unseal/bootstrap not permitted in session",
|
||||||
@@ -50,51 +41,6 @@ pub(super) async fn dispatch(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn handle_rekey(
|
|
||||||
actor: &ActorRef<OperatorSession>,
|
|
||||||
req: proto_rekey::Request,
|
|
||||||
) -> Result<Option<OperatorResponsePayload>, Status> {
|
|
||||||
use arbiter_proto::proto::operator::vault::rekey::request::Payload as RekeyPayload;
|
|
||||||
|
|
||||||
let payload = req
|
|
||||||
.payload
|
|
||||||
.ok_or_else(|| Status::invalid_argument("Missing rekey payload"))?;
|
|
||||||
|
|
||||||
let done: bool = match payload {
|
|
||||||
RekeyPayload::ContributePassphrase(cp) => actor
|
|
||||||
.ask(HandleContributeRekeyPassphrase {
|
|
||||||
passphrase: cp.passphrase,
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.map_err(|e| {
|
|
||||||
warn!(?e, "rekey passphrase contribution failed");
|
|
||||||
Status::internal("Rekey contribution failed")
|
|
||||||
})?,
|
|
||||||
RekeyPayload::ContributeRecoveryPassphrase(crp) => actor
|
|
||||||
.ask(HandleContributeRecoveryRekeyPassphrase {
|
|
||||||
recovery_operator_id: crp.recovery_operator_id,
|
|
||||||
passphrase: crp.passphrase,
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.map_err(|e| {
|
|
||||||
warn!(?e, "rekey recovery passphrase contribution failed");
|
|
||||||
Status::internal("Rekey recovery contribution failed")
|
|
||||||
})?,
|
|
||||||
};
|
|
||||||
|
|
||||||
let proto_result = if done {
|
|
||||||
ProtoRekeyResult::Success
|
|
||||||
} else {
|
|
||||||
ProtoRekeyResult::AwaitingContributions
|
|
||||||
};
|
|
||||||
|
|
||||||
Ok(Some(wrap_vault_response(VaultResponsePayload::Rekey(
|
|
||||||
proto_rekey::Response {
|
|
||||||
result: proto_result.into(),
|
|
||||||
},
|
|
||||||
))))
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn handle_query_vault_state(
|
async fn handle_query_vault_state(
|
||||||
actor: &ActorRef<OperatorSession>,
|
actor: &ActorRef<OperatorSession>,
|
||||||
) -> Result<Option<OperatorResponsePayload>, Status> {
|
) -> Result<Option<OperatorResponsePayload>, Status> {
|
||||||
|
|||||||
@@ -1,17 +1,14 @@
|
|||||||
use crate::{
|
use crate::{
|
||||||
grpc::{Convert, TryConvert},
|
grpc::{Convert, TryConvert},
|
||||||
peers::operator::vault_gate::{
|
peers::operator::vault_gate::{
|
||||||
self as vault_gate, HandleBootstrapEncryptedKey, HandleContributeBootstrapPassphrase,
|
self as vault_gate, HandleBootstrapEncryptedKey, HandleHandshake, HandleUnsealEncryptedKey,
|
||||||
HandleContributeRecoveryBootstrapPassphrase, HandleContributeRecoveryUnsealPassphrase,
|
|
||||||
HandleContributeUnsealPassphrase, HandleDeclareCommittee, HandleHandshake,
|
|
||||||
HandleUnsealEncryptedKey,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
use arbiter_proto::proto::operator::{
|
use arbiter_proto::proto::operator::{
|
||||||
operator_request::Payload as OperatorRequestPayload,
|
operator_request::Payload as OperatorRequestPayload,
|
||||||
vault::{
|
vault::{
|
||||||
self as proto_vault,
|
self as proto_vault,
|
||||||
bootstrap::{self as proto_bootstrap, request::Payload as BootstrapRequestPayload},
|
bootstrap::{self as proto_bootstrap},
|
||||||
request::Payload as VaultRequestPayload,
|
request::Payload as VaultRequestPayload,
|
||||||
unseal::{self as proto_unseal, request::Payload as UnsealRequestPayload},
|
unseal::{self as proto_unseal, request::Payload as UnsealRequestPayload},
|
||||||
},
|
},
|
||||||
@@ -53,9 +50,6 @@ impl TryConvert for VaultRequestPayload {
|
|||||||
Self::QueryState(()) => Ok(vault_gate::Inbound::HandleVaultState),
|
Self::QueryState(()) => Ok(vault_gate::Inbound::HandleVaultState),
|
||||||
Self::Unseal(req) => req.try_convert(),
|
Self::Unseal(req) => req.try_convert(),
|
||||||
Self::Bootstrap(req) => req.try_convert(),
|
Self::Bootstrap(req) => req.try_convert(),
|
||||||
Self::Rekey(_) => Err(Status::permission_denied(
|
|
||||||
"Rekey requires an authenticated session",
|
|
||||||
)),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -79,21 +73,6 @@ impl TryConvert for UnsealRequestPayload {
|
|||||||
match self {
|
match self {
|
||||||
Self::Start(start) => start.try_convert(),
|
Self::Start(start) => start.try_convert(),
|
||||||
Self::EncryptedKey(key) => Ok(key.convert()),
|
Self::EncryptedKey(key) => Ok(key.convert()),
|
||||||
Self::ContributePassphrase(cp) => Ok(
|
|
||||||
vault_gate::Inbound::HandleContributeUnsealPassphrase(
|
|
||||||
HandleContributeUnsealPassphrase {
|
|
||||||
passphrase: cp.passphrase,
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Self::ContributeRecoveryPassphrase(crp) => Ok(
|
|
||||||
vault_gate::Inbound::HandleContributeRecoveryUnsealPassphrase(
|
|
||||||
HandleContributeRecoveryUnsealPassphrase {
|
|
||||||
recovery_operator_id: crp.recovery_operator_id,
|
|
||||||
passphrase: crp.passphrase,
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -128,44 +107,12 @@ impl TryConvert for proto_bootstrap::Request {
|
|||||||
type Error = Status;
|
type Error = Status;
|
||||||
|
|
||||||
fn try_convert(self) -> Result<vault_gate::Inbound, Status> {
|
fn try_convert(self) -> Result<vault_gate::Inbound, Status> {
|
||||||
self.payload
|
self.encrypted_key
|
||||||
.ok_or_else(|| Status::invalid_argument("Missing bootstrap payload"))?
|
.ok_or_else(|| Status::invalid_argument("Missing bootstrap encrypted key"))?
|
||||||
.try_convert()
|
.try_convert()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TryConvert for BootstrapRequestPayload {
|
|
||||||
type Output = vault_gate::Inbound;
|
|
||||||
type Error = Status;
|
|
||||||
|
|
||||||
fn try_convert(self) -> Result<vault_gate::Inbound, Status> {
|
|
||||||
match self {
|
|
||||||
Self::EncryptedKey(key) => key.try_convert(),
|
|
||||||
Self::DeclareCommittee(dc) => Ok(
|
|
||||||
vault_gate::Inbound::HandleDeclareCommittee(HandleDeclareCommittee {
|
|
||||||
count: dc.count as usize,
|
|
||||||
recovery_count: dc.recovery_count as usize,
|
|
||||||
}),
|
|
||||||
),
|
|
||||||
Self::ContributePassphrase(cp) => Ok(
|
|
||||||
vault_gate::Inbound::HandleContributeBootstrapPassphrase(
|
|
||||||
HandleContributeBootstrapPassphrase {
|
|
||||||
passphrase: cp.passphrase,
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Self::ContributeRecoveryPassphrase(crp) => Ok(
|
|
||||||
vault_gate::Inbound::HandleContributeRecoveryBootstrapPassphrase(
|
|
||||||
HandleContributeRecoveryBootstrapPassphrase {
|
|
||||||
recovery_operator_id: crp.recovery_operator_id,
|
|
||||||
passphrase: crp.passphrase,
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl TryConvert for proto_bootstrap::BootstrapEncryptedKey {
|
impl TryConvert for proto_bootstrap::BootstrapEncryptedKey {
|
||||||
type Output = vault_gate::Inbound;
|
type Output = vault_gate::Inbound;
|
||||||
type Error = Status;
|
type Error = Status;
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ use crate::{
|
|||||||
peers::operator::vault_gate::{self as vault_gate},
|
peers::operator::vault_gate::{self as vault_gate},
|
||||||
};
|
};
|
||||||
use arbiter_proto::proto::{
|
use arbiter_proto::proto::{
|
||||||
|
shared::VaultState as ProtoVaultState,
|
||||||
operator::{
|
operator::{
|
||||||
operator_response::Payload as OperatorResponsePayload,
|
operator_response::Payload as OperatorResponsePayload,
|
||||||
vault::{
|
vault::{
|
||||||
@@ -16,7 +17,6 @@ use arbiter_proto::proto::{
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
shared::VaultState as ProtoVaultState,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
use tonic::Status;
|
use tonic::Status;
|
||||||
@@ -87,6 +87,7 @@ impl TryConvert for vault_gate::Outbound {
|
|||||||
let proto_result = match result {
|
let proto_result = match result {
|
||||||
Ok(()) => ProtoUnsealResult::Success,
|
Ok(()) => ProtoUnsealResult::Success,
|
||||||
Err(vault_gate::Error::InvalidKey) => ProtoUnsealResult::InvalidKey,
|
Err(vault_gate::Error::InvalidKey) => ProtoUnsealResult::InvalidKey,
|
||||||
|
Err(vault_gate::Error::LockedOut) => ProtoUnsealResult::LockedOut,
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
warn!(?err, "unseal failed");
|
warn!(?err, "unseal failed");
|
||||||
return Err(Status::internal("Failed to unseal vault"));
|
return Err(Status::internal("Failed to unseal vault"));
|
||||||
@@ -110,68 +111,6 @@ impl TryConvert for vault_gate::Outbound {
|
|||||||
};
|
};
|
||||||
Ok(wrap_bootstrap_response(proto_result))
|
Ok(wrap_bootstrap_response(proto_result))
|
||||||
}
|
}
|
||||||
Self::HandleDeclareCommittee(result) => {
|
|
||||||
let proto_result = match result {
|
|
||||||
Ok(()) => ProtoBootstrapResult::Success,
|
|
||||||
Err(err) => {
|
|
||||||
warn!(?err, "declare committee failed");
|
|
||||||
return Err(Status::internal("Failed to declare committee"));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
Ok(wrap_bootstrap_response(proto_result))
|
|
||||||
}
|
|
||||||
Self::HandleContributeBootstrapPassphrase(result) => {
|
|
||||||
let proto_result = match result {
|
|
||||||
Ok(true) => ProtoBootstrapResult::Success,
|
|
||||||
Ok(false) => ProtoBootstrapResult::AwaitingContributions,
|
|
||||||
Err(err) => {
|
|
||||||
warn!(?err, "contribute bootstrap passphrase failed");
|
|
||||||
return Err(Status::internal("Failed to contribute bootstrap passphrase"));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
Ok(wrap_bootstrap_response(proto_result))
|
|
||||||
}
|
|
||||||
Self::HandleContributeRecoveryBootstrapPassphrase(result) => {
|
|
||||||
let proto_result = match result {
|
|
||||||
Ok(true) => ProtoBootstrapResult::Success,
|
|
||||||
Ok(false) => ProtoBootstrapResult::AwaitingContributions,
|
|
||||||
Err(err) => {
|
|
||||||
warn!(?err, "contribute recovery bootstrap passphrase failed");
|
|
||||||
return Err(Status::internal(
|
|
||||||
"Failed to contribute recovery bootstrap passphrase",
|
|
||||||
));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
Ok(wrap_bootstrap_response(proto_result))
|
|
||||||
}
|
|
||||||
Self::HandleContributeUnsealPassphrase(result) => {
|
|
||||||
let proto_result = match result {
|
|
||||||
Ok(true) => ProtoUnsealResult::Success,
|
|
||||||
Ok(false) => ProtoUnsealResult::AwaitingContributions,
|
|
||||||
Err(err) => {
|
|
||||||
warn!(?err, "contribute unseal passphrase failed");
|
|
||||||
return Err(Status::internal("Failed to contribute unseal passphrase"));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
Ok(wrap_unseal_response(UnsealResponsePayload::Result(
|
|
||||||
proto_result.into(),
|
|
||||||
)))
|
|
||||||
}
|
|
||||||
Self::HandleContributeRecoveryUnsealPassphrase(result) => {
|
|
||||||
let proto_result = match result {
|
|
||||||
Ok(true) => ProtoUnsealResult::Success,
|
|
||||||
Ok(false) => ProtoUnsealResult::AwaitingContributions,
|
|
||||||
Err(err) => {
|
|
||||||
warn!(?err, "contribute recovery unseal passphrase failed");
|
|
||||||
return Err(Status::internal(
|
|
||||||
"Failed to contribute recovery unseal passphrase",
|
|
||||||
));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
Ok(wrap_unseal_response(UnsealResponsePayload::Result(
|
|
||||||
proto_result.into(),
|
|
||||||
)))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,24 +8,23 @@ use crate::{
|
|||||||
crypto::integrity::{self, AttestationStatus},
|
crypto::integrity::{self, AttestationStatus},
|
||||||
db::{
|
db::{
|
||||||
self,
|
self,
|
||||||
models::{ProgramClientMetadata, SqliteTimestamp},
|
models::ProgramClientMetadata,
|
||||||
schema::program_client,
|
schema::program_client,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
use arbiter_crypto::authn::{self, AuthChallenge, SigningContext};
|
use arbiter_crypto::authn::{self, AuthChallenge, CLIENT_CONTEXT};
|
||||||
use arbiter_proto::{
|
use arbiter_proto::{
|
||||||
ClientMetadata,
|
ClientMetadata,
|
||||||
transport::{Bi, expect_message},
|
transport::{Bi, expect_message},
|
||||||
};
|
};
|
||||||
|
|
||||||
use chrono::Utc;
|
|
||||||
use diesel::{
|
use diesel::{
|
||||||
ExpressionMethods as _, OptionalExtension as _, QueryDsl as _, SelectableHelper as _,
|
ExpressionMethods as _, OptionalExtension as _, QueryDsl as _, SelectableHelper as _,
|
||||||
dsl::insert_into, update,
|
dsl::insert_into,
|
||||||
};
|
};
|
||||||
use diesel_async::RunQueryDsl as _;
|
use diesel_async::RunQueryDsl as _;
|
||||||
use kameo::{actor::ActorRef, error::SendError};
|
use kameo::{actor::ActorRef, error::SendError};
|
||||||
use tracing::error;
|
use tracing::{error, warn};
|
||||||
|
|
||||||
#[derive(thiserror::Error, Debug, Clone, PartialEq, Eq)]
|
#[derive(thiserror::Error, Debug, Clone, PartialEq, Eq)]
|
||||||
pub enum Error {
|
pub enum Error {
|
||||||
@@ -211,71 +210,47 @@ async fn insert_client(
|
|||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn sync_client_metadata(
|
/// Compares stored metadata against what a reconnecting client presents.
|
||||||
|
/// Metadata is frozen after initial operator approval and must not be silently
|
||||||
|
/// overwritten. Doing so would let an approved client forge its displayed
|
||||||
|
/// identity in later approval prompts. Drift is logged and ignored.
|
||||||
|
async fn check_metadata_drift(
|
||||||
db: &db::DatabasePool,
|
db: &db::DatabasePool,
|
||||||
client_id: i32,
|
client_id: i32,
|
||||||
metadata: &ClientMetadata,
|
presented: &ClientMetadata,
|
||||||
) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
use crate::db::schema::{client_metadata, client_metadata_history};
|
use crate::db::schema::client_metadata;
|
||||||
|
|
||||||
let now = SqliteTimestamp(Utc::now());
|
|
||||||
|
|
||||||
let mut conn = db.get().await.map_err(|e| {
|
let mut conn = db.get().await.map_err(|e| {
|
||||||
error!(error = ?e, "Database pool error");
|
error!(error = ?e, "Database pool error");
|
||||||
Error::DatabasePoolUnavailable
|
Error::DatabasePoolUnavailable
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
conn.exclusive_transaction(async |conn| {
|
let current: ProgramClientMetadata = program_client::table
|
||||||
let (current_metadata_id, current): (i32, ProgramClientMetadata) = program_client::table
|
|
||||||
.find(client_id)
|
.find(client_id)
|
||||||
.inner_join(client_metadata::table)
|
.inner_join(client_metadata::table)
|
||||||
.select((
|
.select(ProgramClientMetadata::as_select())
|
||||||
program_client::metadata_id,
|
.first(&mut conn)
|
||||||
ProgramClientMetadata::as_select(),
|
|
||||||
))
|
|
||||||
.first(&mut *conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let unchanged = current.name == metadata.name
|
|
||||||
&& current.description == metadata.description
|
|
||||||
&& current.version == metadata.version;
|
|
||||||
if unchanged {
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
|
|
||||||
insert_into(client_metadata_history::table)
|
|
||||||
.values((
|
|
||||||
client_metadata_history::metadata_id.eq(current_metadata_id),
|
|
||||||
client_metadata_history::client_id.eq(client_id),
|
|
||||||
))
|
|
||||||
.execute(&mut *conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
let metadata_id = insert_into(client_metadata::table)
|
|
||||||
.values((
|
|
||||||
client_metadata::name.eq(&metadata.name),
|
|
||||||
client_metadata::description.eq(&metadata.description),
|
|
||||||
client_metadata::version.eq(&metadata.version),
|
|
||||||
))
|
|
||||||
.returning(client_metadata::id)
|
|
||||||
.get_result::<i32>(&mut *conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
update(program_client::table.find(client_id))
|
|
||||||
.set((
|
|
||||||
program_client::metadata_id.eq(metadata_id),
|
|
||||||
program_client::updated_at.eq(now),
|
|
||||||
))
|
|
||||||
.execute(&mut *conn)
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok::<(), diesel::result::Error>(())
|
|
||||||
})
|
|
||||||
.await
|
.await
|
||||||
.map_err(|e| {
|
.map_err(|e| {
|
||||||
error!(error = ?e, "Database error");
|
error!(error = ?e, "Database error");
|
||||||
Error::DatabaseOperationFailed
|
Error::DatabaseOperationFailed
|
||||||
})
|
})?;
|
||||||
|
|
||||||
|
let changed = current.name != presented.name
|
||||||
|
|| current.description != presented.description
|
||||||
|
|| current.version != presented.version;
|
||||||
|
|
||||||
|
if changed {
|
||||||
|
warn!(
|
||||||
|
client_id,
|
||||||
|
stored_name = %current.name,
|
||||||
|
presented_name = %presented.name,
|
||||||
|
"reconnecting client presented different metadata; ignoring - metadata is frozen after operator approval"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn challenge_client<T>(
|
async fn challenge_client<T>(
|
||||||
@@ -306,7 +281,7 @@ where
|
|||||||
Error::Transport
|
Error::Transport
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
if !pubkey.verify(&challenge, SigningContext::Client, &signature) {
|
if !pubkey.verify(&challenge, CLIENT_CONTEXT, &signature) {
|
||||||
error!("Challenge solution verification failed");
|
error!("Challenge solution verification failed");
|
||||||
return Err(Error::InvalidChallengeSolution);
|
return Err(Error::InvalidChallengeSolution);
|
||||||
}
|
}
|
||||||
@@ -324,6 +299,7 @@ where
|
|||||||
|
|
||||||
let client_id = if let Some(id) = get_client_id(&props.db, &pubkey).await? {
|
let client_id = if let Some(id) = get_client_id(&props.db, &pubkey).await? {
|
||||||
verify_integrity(&props.db, &props.actors.vault, &pubkey).await?;
|
verify_integrity(&props.db, &props.actors.vault, &pubkey).await?;
|
||||||
|
check_metadata_drift(&props.db, id, &metadata).await?;
|
||||||
id
|
id
|
||||||
} else {
|
} else {
|
||||||
approve_new_client(
|
approve_new_client(
|
||||||
@@ -337,8 +313,6 @@ where
|
|||||||
insert_client(&props.db, &props.actors.vault, &pubkey, &metadata).await?
|
insert_client(&props.db, &props.actors.vault, &pubkey, &metadata).await?
|
||||||
};
|
};
|
||||||
|
|
||||||
sync_client_metadata(&props.db, client_id, &metadata).await?;
|
|
||||||
|
|
||||||
let challenge = AuthChallenge::generate(&mut rand::rng());
|
let challenge = AuthChallenge::generate(&mut rand::rng());
|
||||||
challenge_client(transport, pubkey, challenge).await?;
|
challenge_client(transport, pubkey, challenge).await?;
|
||||||
|
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ impl Actor for ClientSession {
|
|||||||
args.props
|
args.props
|
||||||
.actors
|
.actors
|
||||||
.flow_coordinator
|
.flow_coordinator
|
||||||
.ask(RegisterClient { actor: this })
|
.ask(RegisterClient { client_id: args.client_id, actor: this })
|
||||||
.await
|
.await
|
||||||
.map_err(|_| Error::ConnectionRegistrationFailed)?;
|
.map_err(|_| Error::ConnectionRegistrationFailed)?;
|
||||||
Ok(args)
|
Ok(args)
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ mod state;
|
|||||||
pub enum Inbound {
|
pub enum Inbound {
|
||||||
AuthChallengeRequest {
|
AuthChallengeRequest {
|
||||||
pubkey: authn::PublicKey,
|
pubkey: authn::PublicKey,
|
||||||
bootstrap_token: Option<String>,
|
bootstrap_token: Option<Vec<u8>>,
|
||||||
},
|
},
|
||||||
AuthChallengeSolution {
|
AuthChallengeSolution {
|
||||||
signature: Vec<u8>,
|
signature: Vec<u8>,
|
||||||
|
|||||||
@@ -7,26 +7,25 @@ use crate::{
|
|||||||
db::{DatabasePool, schema::operator_identity},
|
db::{DatabasePool, schema::operator_identity},
|
||||||
peers::operator::auth::Outbound,
|
peers::operator::auth::Outbound,
|
||||||
};
|
};
|
||||||
use arbiter_crypto::authn::{self, AuthChallenge, SigningContext};
|
use arbiter_crypto::authn::{self, AuthChallenge, OPERATOR_CONTEXT};
|
||||||
use arbiter_proto::transport::Bi;
|
use arbiter_proto::transport::Bi;
|
||||||
|
|
||||||
use diesel::{ExpressionMethods as _, OptionalExtension as _, QueryDsl};
|
use diesel::{ExpressionMethods as _, OptionalExtension as _, QueryDsl};
|
||||||
use diesel_async::RunQueryDsl;
|
use diesel_async::RunQueryDsl;
|
||||||
use tracing::error;
|
use tracing::error;
|
||||||
|
|
||||||
pub(crate) struct ChallengeRequest {
|
pub(super) struct ChallengeRequest {
|
||||||
pub(crate) pubkey: authn::PublicKey,
|
pub(super) pubkey: authn::PublicKey,
|
||||||
pub(crate) bootstrap_token: Option<String>,
|
pub(super) bootstrap_token: Option<Vec<u8>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct ChallengeContext {
|
pub struct ChallengeContext {
|
||||||
pub challenge: AuthChallenge,
|
pub(super) challenge: AuthChallenge,
|
||||||
pub pubkey: authn::PublicKey,
|
pub(super) pubkey: authn::PublicKey,
|
||||||
pub bootstrap_token: Option<String>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) struct ChallengeSolution {
|
pub(super) struct ChallengeSolution {
|
||||||
pub(crate) solution: Vec<u8>,
|
pub(super) solution: Vec<u8>,
|
||||||
}
|
}
|
||||||
|
|
||||||
smlang::statemachine!(
|
smlang::statemachine!(
|
||||||
@@ -79,11 +78,16 @@ async fn register_key(db: &DatabasePool, pubkey: &authn::PublicKey) -> Result<i3
|
|||||||
pub(super) struct AuthContext<'a, T: ?Sized> {
|
pub(super) struct AuthContext<'a, T: ?Sized> {
|
||||||
pub(super) conn: &'a mut OperatorConnection,
|
pub(super) conn: &'a mut OperatorConnection,
|
||||||
pub(super) transport: &'a mut T,
|
pub(super) transport: &'a mut T,
|
||||||
|
bootstrap_token: Option<Vec<u8>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, T: ?Sized> AuthContext<'a, T> {
|
impl<'a, T: ?Sized> AuthContext<'a, T> {
|
||||||
pub(super) const fn new(conn: &'a mut OperatorConnection, transport: &'a mut T) -> Self {
|
pub(super) const fn new(conn: &'a mut OperatorConnection, transport: &'a mut T) -> Self {
|
||||||
Self { conn, transport }
|
Self {
|
||||||
|
conn,
|
||||||
|
transport,
|
||||||
|
bootstrap_token: None,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -108,6 +112,8 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.bootstrap_token = bootstrap_token;
|
||||||
|
|
||||||
let challenge = AuthChallenge::generate(&mut rand::rng());
|
let challenge = AuthChallenge::generate(&mut rand::rng());
|
||||||
|
|
||||||
self.transport
|
self.transport
|
||||||
@@ -120,20 +126,12 @@ where
|
|||||||
Error::Transport
|
Error::Transport
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
Ok(ChallengeContext {
|
Ok(ChallengeContext { challenge, pubkey })
|
||||||
challenge,
|
|
||||||
pubkey,
|
|
||||||
bootstrap_token,
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn verify_solution(
|
async fn verify_solution(
|
||||||
&mut self,
|
&mut self,
|
||||||
ChallengeContext {
|
ChallengeContext { challenge, pubkey }: &ChallengeContext,
|
||||||
challenge,
|
|
||||||
pubkey,
|
|
||||||
bootstrap_token,
|
|
||||||
}: &ChallengeContext,
|
|
||||||
ChallengeSolution { solution }: ChallengeSolution,
|
ChallengeSolution { solution }: ChallengeSolution,
|
||||||
) -> Result<Credentials, Self::Error> {
|
) -> Result<Credentials, Self::Error> {
|
||||||
let signature = authn::Signature::try_from(solution.as_slice()).map_err(|()| {
|
let signature = authn::Signature::try_from(solution.as_slice()).map_err(|()| {
|
||||||
@@ -141,7 +139,7 @@ where
|
|||||||
Error::InvalidChallengeSolution
|
Error::InvalidChallengeSolution
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
let valid = pubkey.verify(challenge, SigningContext::Operator, &signature);
|
let valid = pubkey.verify(challenge, OPERATOR_CONTEXT, &signature);
|
||||||
|
|
||||||
if !valid {
|
if !valid {
|
||||||
self.transport
|
self.transport
|
||||||
@@ -152,15 +150,13 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Resolve client id: bootstrap (consume token + register) or lookup
|
// Resolve client id: bootstrap (consume token + register) or lookup
|
||||||
let id = match bootstrap_token {
|
let id = match self.bootstrap_token.take() {
|
||||||
Some(token) => {
|
Some(token) => {
|
||||||
let token_ok: bool = self
|
let token_ok: bool = self
|
||||||
.conn
|
.conn
|
||||||
.actors
|
.actors
|
||||||
.bootstrapper
|
.bootstrapper
|
||||||
.ask(ConsumeToken {
|
.ask(ConsumeToken { token })
|
||||||
token: token.clone(),
|
|
||||||
})
|
|
||||||
.await
|
.await
|
||||||
.map_err(|e| {
|
.map_err(|e| {
|
||||||
error!(?e, "Failed to consume bootstrap token");
|
error!(?e, "Failed to consume bootstrap token");
|
||||||
|
|||||||
@@ -180,7 +180,6 @@ where
|
|||||||
|
|
||||||
Ok(OperatorSession::spawn(OperatorSession::new(
|
Ok(OperatorSession::spawn(OperatorSession::new(
|
||||||
props.clone(),
|
props.clone(),
|
||||||
creds.clone(),
|
|
||||||
oob_sender,
|
oob_sender,
|
||||||
)))
|
)))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +1,19 @@
|
|||||||
use super::{Error, OperatorSession};
|
use super::{Error, OperatorSession};
|
||||||
use crate::db::models::{OperatorIdentityId, ProposalId};
|
|
||||||
use crate::{
|
use crate::{
|
||||||
actors::{
|
actors::{
|
||||||
evm::{
|
evm::{
|
||||||
ClientSignTransaction, Generate, ListWallets, OperatorCreateGrant, OperatorDeleteGrant,
|
ClientSignTransaction, Generate, ListWallets, OperatorCreateGrant, OperatorListGrants,
|
||||||
OperatorListGrants, SignTransactionError as EvmSignError,
|
SignTransactionError as EvmSignError,
|
||||||
},
|
},
|
||||||
flow_coordinator::client_connect_approval::ClientApprovalAnswer,
|
flow_coordinator::{IsClientConnected, client_connect_approval::ClientApprovalAnswer},
|
||||||
vault::VaultState,
|
vault::VaultState,
|
||||||
},
|
},
|
||||||
db::models::{
|
db::{
|
||||||
|
models::{
|
||||||
EvmWalletAccess, EvmWalletId, NewEvmWalletAccess, ProgramClient, ProgramClientMetadata,
|
EvmWalletAccess, EvmWalletId, NewEvmWalletAccess, ProgramClient, ProgramClientMetadata,
|
||||||
},
|
},
|
||||||
|
schema::program_client,
|
||||||
|
},
|
||||||
evm::policies::{Grant, SpecificGrant},
|
evm::policies::{Grant, SpecificGrant},
|
||||||
};
|
};
|
||||||
use arbiter_crypto::authn;
|
use arbiter_crypto::authn;
|
||||||
@@ -20,13 +22,16 @@ use alloy::{consensus::TxEip1559, primitives::Address, signers::Signature};
|
|||||||
use diesel::{ExpressionMethods as _, QueryDsl as _, SelectableHelper};
|
use diesel::{ExpressionMethods as _, QueryDsl as _, SelectableHelper};
|
||||||
use diesel_async::{AsyncConnection, RunQueryDsl};
|
use diesel_async::{AsyncConnection, RunQueryDsl};
|
||||||
use kameo::{error::SendError, messages, prelude::Context};
|
use kameo::{error::SendError, messages, prelude::Context};
|
||||||
use tracing::error;
|
use tracing::{error, info, warn};
|
||||||
|
|
||||||
#[derive(Debug, Error)]
|
#[derive(Debug, Error)]
|
||||||
pub enum SignTransactionError {
|
pub enum SignTransactionError {
|
||||||
#[error("Policy evaluation failed")]
|
#[error("Policy evaluation failed")]
|
||||||
Vet(#[from] crate::evm::VetError),
|
Vet(#[from] crate::evm::VetError),
|
||||||
|
|
||||||
|
#[error("Client not connected")]
|
||||||
|
ClientNotConnected,
|
||||||
|
|
||||||
#[error("Internal signing error")]
|
#[error("Internal signing error")]
|
||||||
Internal,
|
Internal,
|
||||||
}
|
}
|
||||||
@@ -123,23 +128,22 @@ impl OperatorSession {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[message]
|
#[message]
|
||||||
pub(crate) async fn handle_grant_delete(
|
pub(crate) fn handle_grant_delete(&mut self, grant_id: i32) -> Result<(), GrantMutationError> {
|
||||||
&mut self,
|
// match self
|
||||||
grant_id: i32,
|
// .props
|
||||||
) -> Result<(), GrantMutationError> {
|
// .actors
|
||||||
match self
|
// .evm
|
||||||
.props
|
// .ask(OperatorDeleteGrant { grant_id })
|
||||||
.actors
|
// .await
|
||||||
.evm
|
// {
|
||||||
.ask(OperatorDeleteGrant { grant_id })
|
// Ok(()) => Ok(()),
|
||||||
.await
|
// Err(err) => {
|
||||||
{
|
// error!(?err, "EVM grant delete failed");
|
||||||
Ok(()) => Ok(()),
|
// Err(GrantMutationError::Internal)
|
||||||
Err(err) => {
|
// }
|
||||||
error!(?err, "EVM grant delete failed");
|
// }
|
||||||
Err(GrantMutationError::Internal)
|
let _ = grant_id;
|
||||||
}
|
todo!()
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[message]
|
#[message]
|
||||||
@@ -149,6 +153,30 @@ impl OperatorSession {
|
|||||||
wallet_address: Address,
|
wallet_address: Address,
|
||||||
transaction: TxEip1559,
|
transaction: TxEip1559,
|
||||||
) -> Result<Signature, SignTransactionError> {
|
) -> Result<Signature, SignTransactionError> {
|
||||||
|
if !self.approved_client_ids.contains(&client_id) {
|
||||||
|
warn!(
|
||||||
|
client_id,
|
||||||
|
"operator attempted to sign for client not in its approved set"
|
||||||
|
);
|
||||||
|
return Err(SignTransactionError::ClientNotConnected);
|
||||||
|
}
|
||||||
|
|
||||||
|
let connected = self
|
||||||
|
.props
|
||||||
|
.actors
|
||||||
|
.flow_coordinator
|
||||||
|
.ask(IsClientConnected { client_id })
|
||||||
|
.await
|
||||||
|
.unwrap_or(false);
|
||||||
|
|
||||||
|
if !connected {
|
||||||
|
self.approved_client_ids.remove(&client_id);
|
||||||
|
warn!(client_id, "operator attempted to sign for disconnected client");
|
||||||
|
return Err(SignTransactionError::ClientNotConnected);
|
||||||
|
}
|
||||||
|
|
||||||
|
info!(client_id, event = "sign_transaction", "operator.sign_transaction");
|
||||||
|
|
||||||
match self
|
match self
|
||||||
.props
|
.props
|
||||||
.actors
|
.actors
|
||||||
@@ -204,7 +232,7 @@ impl OperatorSession {
|
|||||||
use crate::db::schema::evm_wallet_access;
|
use crate::db::schema::evm_wallet_access;
|
||||||
for entry in entries {
|
for entry in entries {
|
||||||
diesel::delete(evm_wallet_access::table)
|
diesel::delete(evm_wallet_access::table)
|
||||||
.filter(evm_wallet_access::wallet_id.eq(entry))
|
.filter(evm_wallet_access::id.eq(entry))
|
||||||
.execute(&mut *conn)
|
.execute(&mut *conn)
|
||||||
.await?;
|
.await?;
|
||||||
}
|
}
|
||||||
@@ -219,9 +247,8 @@ impl OperatorSession {
|
|||||||
pub(crate) async fn handle_list_wallet_access(
|
pub(crate) async fn handle_list_wallet_access(
|
||||||
&mut self,
|
&mut self,
|
||||||
) -> Result<Vec<EvmWalletAccess>, Error> {
|
) -> Result<Vec<EvmWalletAccess>, Error> {
|
||||||
use crate::db::schema::evm_wallet_access;
|
|
||||||
let mut conn = self.props.db.get().await?;
|
let mut conn = self.props.db.get().await?;
|
||||||
let access_entries = evm_wallet_access::table
|
let access_entries = crate::db::schema::evm_wallet_access::table
|
||||||
.select(EvmWalletAccess::as_select())
|
.select(EvmWalletAccess::as_select())
|
||||||
.load::<_>(&mut conn)
|
.load::<_>(&mut conn)
|
||||||
.await?;
|
.await?;
|
||||||
@@ -258,6 +285,30 @@ impl OperatorSession {
|
|||||||
|
|
||||||
ctx.actor_ref().unlink(&pending_approval.controller).await;
|
ctx.actor_ref().unlink(&pending_approval.controller).await;
|
||||||
|
|
||||||
|
if approved {
|
||||||
|
let pubkey_bytes = pending_approval.pubkey.to_bytes();
|
||||||
|
match self.props.db.get().await {
|
||||||
|
Ok(mut conn) => {
|
||||||
|
match program_client::table
|
||||||
|
.filter(program_client::public_key.eq(pubkey_bytes.as_slice()))
|
||||||
|
.select(program_client::id)
|
||||||
|
.first::<i32>(&mut conn)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
Ok(client_id) => {
|
||||||
|
self.approved_client_ids.insert(client_id);
|
||||||
|
}
|
||||||
|
Err(err) => {
|
||||||
|
error!(?err, "Failed to look up client_id for approved pubkey");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Err(err) => {
|
||||||
|
error!(?err, "DB pool error after client approval");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -281,101 +332,141 @@ impl OperatorSession {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[messages]
|
#[cfg(test)]
|
||||||
impl OperatorSession {
|
mod tests {
|
||||||
#[message]
|
use crate::db::{self, models::{EvmWalletId, NewEvmWalletAccess}, schema::evm_wallet_access};
|
||||||
pub(crate) async fn handle_create_proposal(
|
use diesel::{ExpressionMethods as _, QueryDsl as _, SelectableHelper};
|
||||||
&mut self,
|
use diesel_async::{AsyncConnection, RunQueryDsl};
|
||||||
kind: crate::db::proposal::ProposalKind,
|
|
||||||
ttl_secs: Option<u32>,
|
/// Regression test: revocation must delete by access-entry `id`, not by `wallet_id`.
|
||||||
) -> Result<ProposalId, Error> {
|
///
|
||||||
use crate::actors::proposal_manager::CreateProposal;
|
/// Before the fix, revoking `entry_id=1` would delete all rows where `wallet_id=1`,
|
||||||
let initiator_id = OperatorIdentityId::from_raw(self.credentials.id);
|
/// wiping out every client's access to wallet #1.
|
||||||
self.props
|
#[tokio::test]
|
||||||
.actors
|
async fn revoke_deletes_by_entry_id_not_wallet_id() {
|
||||||
.proposal_manager
|
use crate::db::models::EvmWalletAccess;
|
||||||
.ask(CreateProposal { kind, initiator_id, ttl_secs })
|
|
||||||
.await
|
let pool = db::create_test_pool().await;
|
||||||
.map_err(|e| {
|
let mut conn = pool.get().await.expect("pool connection");
|
||||||
error!(?e, "create_proposal failed");
|
|
||||||
Error::internal("Failed to create proposal")
|
// Insert two access entries for the same wallet but different clients.
|
||||||
|
// entry A: id will be 1, wallet_id=1, client_id=10
|
||||||
|
// entry B: id will be 2, wallet_id=1, client_id=20
|
||||||
|
let entry_a = diesel::insert_into(evm_wallet_access::table)
|
||||||
|
.values(NewEvmWalletAccess {
|
||||||
|
wallet_id: EvmWalletId::from_raw(1),
|
||||||
|
client_id: 10,
|
||||||
})
|
})
|
||||||
|
.returning(EvmWalletAccess::as_select())
|
||||||
|
.get_result(&mut *conn)
|
||||||
|
.await
|
||||||
|
.expect("insert entry A");
|
||||||
|
|
||||||
|
let entry_b = diesel::insert_into(evm_wallet_access::table)
|
||||||
|
.values(NewEvmWalletAccess {
|
||||||
|
wallet_id: EvmWalletId::from_raw(1),
|
||||||
|
client_id: 20,
|
||||||
|
})
|
||||||
|
.returning(EvmWalletAccess::as_select())
|
||||||
|
.get_result(&mut *conn)
|
||||||
|
.await
|
||||||
|
.expect("insert entry B");
|
||||||
|
|
||||||
|
// Revoke only entry A by its primary key id.
|
||||||
|
conn.transaction(async |conn| {
|
||||||
|
diesel::delete(evm_wallet_access::table)
|
||||||
|
.filter(evm_wallet_access::id.eq(entry_a.id))
|
||||||
|
.execute(&mut *conn)
|
||||||
|
.await
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.expect("revoke entry A");
|
||||||
|
|
||||||
|
// Entry A must be gone.
|
||||||
|
let gone = evm_wallet_access::table
|
||||||
|
.filter(evm_wallet_access::id.eq(entry_a.id))
|
||||||
|
.count()
|
||||||
|
.get_result::<i64>(&mut *conn)
|
||||||
|
.await
|
||||||
|
.expect("count entry A");
|
||||||
|
assert_eq!(gone, 0, "revoked entry must be deleted");
|
||||||
|
|
||||||
|
// Entry B (same wallet, different client) must still exist.
|
||||||
|
let still_there = evm_wallet_access::table
|
||||||
|
.filter(evm_wallet_access::id.eq(entry_b.id))
|
||||||
|
.count()
|
||||||
|
.get_result::<i64>(&mut *conn)
|
||||||
|
.await
|
||||||
|
.expect("count entry B");
|
||||||
|
assert_eq!(still_there, 1, "unrelated entry must not be deleted");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[message]
|
/// Regression test: when `entry_id` and `wallet_id` differ, only the correct row is removed.
|
||||||
pub(crate) async fn handle_cast_vote(
|
///
|
||||||
&mut self,
|
/// This specifically catches the case where `entry.id=5` and `wallet_id=1` are different values;
|
||||||
proposal_id: ProposalId,
|
/// the old bug would delete by `wallet_id`, potentially matching a completely different entry.
|
||||||
approve: bool,
|
#[tokio::test]
|
||||||
signature: Vec<u8>,
|
async fn revoke_with_mismatched_wallet_and_entry_ids() {
|
||||||
) -> Result<crate::actors::proposal_manager::VoteOutcome, crate::actors::proposal_manager::Error> {
|
use crate::db::models::EvmWalletAccess;
|
||||||
use crate::actors::proposal_manager::CastVote;
|
|
||||||
let operator_id = OperatorIdentityId::from_raw(self.credentials.id);
|
let pool = db::create_test_pool().await;
|
||||||
self.props
|
let mut conn = pool.get().await.expect("pool connection");
|
||||||
.actors
|
|
||||||
.proposal_manager
|
// Insert entries to force auto-increment IDs to diverge from wallet_ids.
|
||||||
.ask(CastVote { proposal_id, operator_id, approve, signature })
|
// We'll insert 5 placeholder entries first so that the real entry gets id=6.
|
||||||
.await
|
for i in 1_i32..=5 {
|
||||||
.map_err(|err| match err {
|
diesel::insert_into(evm_wallet_access::table)
|
||||||
SendError::HandlerError(e) => e,
|
.values(NewEvmWalletAccess {
|
||||||
_ => crate::actors::proposal_manager::Error::Unavailable,
|
wallet_id: EvmWalletId::from_raw(99),
|
||||||
|
client_id: i,
|
||||||
})
|
})
|
||||||
|
.execute(&mut *conn)
|
||||||
|
.await
|
||||||
|
.expect("insert placeholder");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[message]
|
// Real target: wallet_id=1, will get id=6.
|
||||||
pub(crate) async fn handle_query_pending(
|
let target = diesel::insert_into(evm_wallet_access::table)
|
||||||
&mut self,
|
.values(NewEvmWalletAccess {
|
||||||
) -> Vec<crate::actors::proposal_manager::ProposalSummary> {
|
wallet_id: EvmWalletId::from_raw(1),
|
||||||
use crate::actors::proposal_manager::QueryPending;
|
client_id: 1,
|
||||||
let operator_id = OperatorIdentityId::from_raw(self.credentials.id);
|
})
|
||||||
self.props
|
.returning(EvmWalletAccess::as_select())
|
||||||
.actors
|
.get_result(&mut *conn)
|
||||||
.proposal_manager
|
|
||||||
.ask(QueryPending { operator_id })
|
|
||||||
.await
|
.await
|
||||||
.unwrap_or_default()
|
.expect("insert target");
|
||||||
}
|
|
||||||
}
|
// Sanity: target.id != target.wallet_id
|
||||||
|
assert_ne!(
|
||||||
#[messages]
|
target.id, target.wallet_id.to_raw(),
|
||||||
impl OperatorSession {
|
"test prerequisite: id and wallet_id must differ"
|
||||||
#[message]
|
);
|
||||||
pub(crate) async fn handle_contribute_rekey_passphrase(
|
|
||||||
&mut self,
|
// Revoke by entry id.
|
||||||
passphrase: Vec<u8>,
|
conn.transaction(async |conn| {
|
||||||
) -> Result<bool, Error> {
|
diesel::delete(evm_wallet_access::table)
|
||||||
use crate::actors::vault_coordinator::ContributeRekey;
|
.filter(evm_wallet_access::id.eq(target.id))
|
||||||
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
.execute(&mut *conn)
|
||||||
|
.await
|
||||||
let operator_id = self.credentials.id;
|
})
|
||||||
self.props
|
.await
|
||||||
.actors
|
.expect("revoke target");
|
||||||
.vault_coordinator
|
|
||||||
.ask(ContributeRekey {
|
let remaining = evm_wallet_access::table
|
||||||
operator_id,
|
.filter(evm_wallet_access::id.eq(target.id))
|
||||||
passphrase: SafeCell::new(passphrase),
|
.count()
|
||||||
})
|
.get_result::<i64>(&mut *conn)
|
||||||
.await
|
.await
|
||||||
.map_err(|_| Error::internal("VaultCoordinator unavailable"))
|
.expect("count target");
|
||||||
}
|
assert_eq!(remaining, 0, "target must be deleted by its entry id");
|
||||||
|
|
||||||
#[message]
|
// Placeholders for wallet_id=99 must be untouched.
|
||||||
pub(crate) async fn handle_contribute_recovery_rekey_passphrase(
|
let placeholders = evm_wallet_access::table
|
||||||
&mut self,
|
.filter(evm_wallet_access::wallet_id.eq(99))
|
||||||
recovery_operator_id: i32,
|
.count()
|
||||||
passphrase: Vec<u8>,
|
.get_result::<i64>(&mut *conn)
|
||||||
) -> Result<bool, Error> {
|
.await
|
||||||
use crate::actors::vault_coordinator::ContributeRecoveryRekey;
|
.expect("count placeholders");
|
||||||
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
assert_eq!(placeholders, 5, "unrelated entries must survive");
|
||||||
|
|
||||||
self.props
|
|
||||||
.actors
|
|
||||||
.vault_coordinator
|
|
||||||
.ask(ContributeRecoveryRekey {
|
|
||||||
recovery_operator_id,
|
|
||||||
passphrase: SafeCell::new(passphrase),
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::internal("VaultCoordinator unavailable"))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,16 +1,14 @@
|
|||||||
use super::{Credentials, OutOfBand, OperatorConnection};
|
use super::{OutOfBand, OperatorConnection};
|
||||||
use crate::{
|
use crate::{
|
||||||
actors::{
|
actors::{
|
||||||
flow_coordinator::client_connect_approval::ClientApprovalController,
|
flow_coordinator::{GetConnectedClientIds, client_connect_approval::{ClientApprovalAnswer, ClientApprovalController}}, operator_registry::ConnectOperator,
|
||||||
operator_registry::ConnectOperator,
|
}, peers::client::ClientProfile,
|
||||||
},
|
|
||||||
peers::client::ClientProfile,
|
|
||||||
};
|
};
|
||||||
use arbiter_crypto::authn;
|
use arbiter_crypto::authn;
|
||||||
use arbiter_proto::transport::Sender;
|
use arbiter_proto::transport::Sender;
|
||||||
|
|
||||||
use kameo::{Actor, actor::ActorRef, messages};
|
use kameo::{Actor, actor::ActorRef, messages};
|
||||||
use std::{borrow::Cow, collections::HashMap};
|
use std::{borrow::Cow, collections::{HashMap, HashSet}};
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
use tracing::error;
|
use tracing::error;
|
||||||
|
|
||||||
@@ -51,21 +49,24 @@ pub struct PendingClientApproval {
|
|||||||
|
|
||||||
pub struct OperatorSession {
|
pub struct OperatorSession {
|
||||||
props: OperatorConnection,
|
props: OperatorConnection,
|
||||||
credentials: Credentials,
|
|
||||||
sender: Box<dyn Sender<OutOfBand>>,
|
sender: Box<dyn Sender<OutOfBand>>,
|
||||||
|
|
||||||
pending_client_approvals: HashMap<Vec<u8>, PendingClientApproval>,
|
pending_client_approvals: HashMap<Vec<u8>, PendingClientApproval>,
|
||||||
|
/// DB `client_ids` this operator session is allowed to sign for.
|
||||||
|
/// Seeded from currently-connected clients on start, then updated as
|
||||||
|
/// approvals are granted or denied during the session lifetime.
|
||||||
|
approved_client_ids: HashSet<i32>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub mod handlers;
|
pub mod handlers;
|
||||||
|
|
||||||
impl OperatorSession {
|
impl OperatorSession {
|
||||||
pub(crate) fn new(props: OperatorConnection, credentials: Credentials, sender: Box<dyn Sender<OutOfBand>>) -> Self {
|
pub(crate) fn new(props: OperatorConnection, sender: Box<dyn Sender<OutOfBand>>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
props,
|
props,
|
||||||
credentials,
|
|
||||||
sender,
|
sender,
|
||||||
pending_client_approvals: HashMap::default(),
|
pending_client_approvals: HashMap::default(),
|
||||||
|
approved_client_ids: HashSet::default(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -90,6 +91,7 @@ impl OperatorSession {
|
|||||||
actor = "operator",
|
actor = "operator",
|
||||||
event = "failed to announce new client connection"
|
event = "failed to announce new client connection"
|
||||||
);
|
);
|
||||||
|
let _ = controller.tell(ClientApprovalAnswer { approved: false }).await;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -108,7 +110,7 @@ impl Actor for OperatorSession {
|
|||||||
|
|
||||||
type Error = Error;
|
type Error = Error;
|
||||||
|
|
||||||
async fn on_start(args: Self::Args, this: ActorRef<Self>) -> Result<Self, Self::Error> {
|
async fn on_start(mut args: Self::Args, this: ActorRef<Self>) -> Result<Self, Self::Error> {
|
||||||
args.props
|
args.props
|
||||||
.actors
|
.actors
|
||||||
.operator_registry
|
.operator_registry
|
||||||
@@ -123,6 +125,16 @@ impl Actor for OperatorSession {
|
|||||||
);
|
);
|
||||||
Error::internal("Failed to register operator connection with operator registry")
|
Error::internal("Failed to register operator connection with operator registry")
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
|
// Seed approved set with clients already connected when this session starts.
|
||||||
|
// New clients will be added via handle_new_client_approve as they are approved.
|
||||||
|
match args.props.actors.flow_coordinator.ask(GetConnectedClientIds {}).await {
|
||||||
|
Ok(ids) => args.approved_client_ids.extend(ids),
|
||||||
|
Err(err) => {
|
||||||
|
error!(?err, "Failed to fetch connected client IDs on operator session start");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Ok(args)
|
Ok(args)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,12 +3,8 @@ use crate::{
|
|||||||
actors::{
|
actors::{
|
||||||
GlobalActors,
|
GlobalActors,
|
||||||
vault::{self, Bootstrap, GetState, TryUnseal, VaultState, events},
|
vault::{self, Bootstrap, GetState, TryUnseal, VaultState, events},
|
||||||
vault_coordinator::{
|
|
||||||
ContributeBootstrap, ContributeRecoveryBootstrap, ContributeRecoveryUnseal,
|
|
||||||
ContributeUnseal, StartBootstrap,
|
|
||||||
},
|
},
|
||||||
},
|
crypto::integrity::{self},
|
||||||
crypto::{KeyCell, integrity::{self}},
|
|
||||||
db::DatabasePool,
|
db::DatabasePool,
|
||||||
};
|
};
|
||||||
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
||||||
@@ -21,9 +17,6 @@ use tokio::sync::oneshot;
|
|||||||
use tracing::{error, info};
|
use tracing::{error, info};
|
||||||
use x25519_dalek::{EphemeralSecret, PublicKey, SharedSecret};
|
use x25519_dalek::{EphemeralSecret, PublicKey, SharedSecret};
|
||||||
|
|
||||||
pub use VaultGateMessage as Inbound;
|
|
||||||
pub use VaultGateMessageReply as Outbound;
|
|
||||||
|
|
||||||
pub mod state;
|
pub mod state;
|
||||||
|
|
||||||
#[derive(Debug, thiserror::Error)]
|
#[derive(Debug, thiserror::Error)]
|
||||||
@@ -32,6 +25,8 @@ pub enum Error {
|
|||||||
AlreadyBootstrapped,
|
AlreadyBootstrapped,
|
||||||
#[error("Invalid key provided")]
|
#[error("Invalid key provided")]
|
||||||
InvalidKey,
|
InvalidKey,
|
||||||
|
#[error("Vault locked: too many failed unseal attempts")]
|
||||||
|
LockedOut,
|
||||||
|
|
||||||
#[error("State transition failed")]
|
#[error("State transition failed")]
|
||||||
State,
|
State,
|
||||||
@@ -105,9 +100,11 @@ impl VaultGate {
|
|||||||
nonce: &[u8],
|
nonce: &[u8],
|
||||||
ciphertext: &[u8],
|
ciphertext: &[u8],
|
||||||
associated_data: &[u8],
|
associated_data: &[u8],
|
||||||
) -> Result<KeyCell, ()> {
|
) -> Result<SafeCell<Vec<u8>>, ()> {
|
||||||
let nonce = XNonce::from_slice(nonce);
|
let nonce = XNonce::from_slice(nonce);
|
||||||
|
|
||||||
let cipher = XChaCha20Poly1305::new(secret.as_bytes().into());
|
let cipher = XChaCha20Poly1305::new(secret.as_bytes().into());
|
||||||
|
|
||||||
let mut key_buffer = SafeCell::new(ciphertext.to_vec());
|
let mut key_buffer = SafeCell::new(ciphertext.to_vec());
|
||||||
|
|
||||||
let decryption_result = key_buffer.write_inline(|write_handle| {
|
let decryption_result = key_buffer.write_inline(|write_handle| {
|
||||||
@@ -115,9 +112,7 @@ impl VaultGate {
|
|||||||
});
|
});
|
||||||
|
|
||||||
match decryption_result {
|
match decryption_result {
|
||||||
Ok(()) => KeyCell::try_from(key_buffer).map_err(|()| {
|
Ok(()) => Ok(key_buffer),
|
||||||
error!("Decrypted key material has unexpected length");
|
|
||||||
}),
|
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
error!(?err, "Failed to decrypt encrypted key material");
|
error!(?err, "Failed to decrypt encrypted key material");
|
||||||
Err(())
|
Err(())
|
||||||
@@ -126,7 +121,7 @@ impl VaultGate {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[messages(enum)]
|
#[messages(messages = Inbound, replies = Outbound)]
|
||||||
impl VaultGate {
|
impl VaultGate {
|
||||||
#[message]
|
#[message]
|
||||||
pub fn handle_handshake(
|
pub fn handle_handshake(
|
||||||
@@ -159,14 +154,17 @@ impl VaultGate {
|
|||||||
return Err(Error::State);
|
return Err(Error::State);
|
||||||
};
|
};
|
||||||
|
|
||||||
let Ok(seal_key) = Self::decrypt_key(secret, &nonce, &ciphertext, &associated_data) else {
|
let Ok(seal_key_buffer) = Self::decrypt_key(secret, &nonce, &ciphertext, &associated_data)
|
||||||
|
else {
|
||||||
return Err(Error::InvalidKey);
|
return Err(Error::InvalidKey);
|
||||||
};
|
};
|
||||||
|
|
||||||
match self
|
match self
|
||||||
.actors
|
.actors
|
||||||
.vault
|
.vault
|
||||||
.ask(TryUnseal { seal_key })
|
.ask(TryUnseal {
|
||||||
|
seal_key_raw: seal_key_buffer,
|
||||||
|
})
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
Ok(()) => {
|
Ok(()) => {
|
||||||
@@ -174,6 +172,7 @@ impl VaultGate {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
Err(SendError::HandlerError(vault::Error::InvalidKey)) => Err(Error::InvalidKey),
|
Err(SendError::HandlerError(vault::Error::InvalidKey)) => Err(Error::InvalidKey),
|
||||||
|
Err(SendError::HandlerError(vault::Error::LockedOut)) => Err(Error::LockedOut),
|
||||||
Err(SendError::HandlerError(err)) => {
|
Err(SendError::HandlerError(err)) => {
|
||||||
error!(?err, "Vault failed to unseal key");
|
error!(?err, "Vault failed to unseal key");
|
||||||
Err(Error::InvalidKey)
|
Err(Error::InvalidKey)
|
||||||
@@ -196,14 +195,17 @@ impl VaultGate {
|
|||||||
return Err(Error::State);
|
return Err(Error::State);
|
||||||
};
|
};
|
||||||
|
|
||||||
let Ok(seal_key) = Self::decrypt_key(secret, &nonce, &ciphertext, &associated_data) else {
|
let Ok(seal_key_buffer) = Self::decrypt_key(secret, &nonce, &ciphertext, &associated_data)
|
||||||
|
else {
|
||||||
return Err(Error::InvalidKey);
|
return Err(Error::InvalidKey);
|
||||||
};
|
};
|
||||||
|
|
||||||
match self
|
match self
|
||||||
.actors
|
.actors
|
||||||
.vault
|
.vault
|
||||||
.ask(Bootstrap { seal_key })
|
.ask(Bootstrap {
|
||||||
|
seal_key_raw: seal_key_buffer,
|
||||||
|
})
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
Ok(()) => {
|
Ok(()) => {
|
||||||
@@ -235,89 +237,6 @@ impl VaultGate {
|
|||||||
|
|
||||||
Ok(answer)
|
Ok(answer)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[message]
|
|
||||||
pub async fn handle_declare_committee(
|
|
||||||
&mut self,
|
|
||||||
count: usize,
|
|
||||||
recovery_count: usize,
|
|
||||||
) -> Result<(), Error> {
|
|
||||||
self.actors
|
|
||||||
.vault_coordinator
|
|
||||||
.ask(StartBootstrap {
|
|
||||||
operator_id: self.auth_creds.id,
|
|
||||||
declared_count: count,
|
|
||||||
recovery_count,
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::internal("VaultCoordinator unavailable"))
|
|
||||||
}
|
|
||||||
|
|
||||||
#[message]
|
|
||||||
pub async fn handle_contribute_bootstrap_passphrase(
|
|
||||||
&mut self,
|
|
||||||
passphrase: Vec<u8>,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
let passphrase_cell = SafeCell::new(passphrase);
|
|
||||||
self.actors
|
|
||||||
.vault_coordinator
|
|
||||||
.ask(ContributeBootstrap {
|
|
||||||
operator_id: self.auth_creds.id,
|
|
||||||
passphrase: passphrase_cell,
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::internal("VaultCoordinator unavailable"))
|
|
||||||
}
|
|
||||||
|
|
||||||
#[message]
|
|
||||||
pub async fn handle_contribute_recovery_bootstrap_passphrase(
|
|
||||||
&mut self,
|
|
||||||
recovery_operator_id: i32,
|
|
||||||
passphrase: Vec<u8>,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
let passphrase_cell = SafeCell::new(passphrase);
|
|
||||||
self.actors
|
|
||||||
.vault_coordinator
|
|
||||||
.ask(ContributeRecoveryBootstrap {
|
|
||||||
recovery_operator_id,
|
|
||||||
passphrase: passphrase_cell,
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::internal("VaultCoordinator unavailable"))
|
|
||||||
}
|
|
||||||
|
|
||||||
#[message]
|
|
||||||
pub async fn handle_contribute_unseal_passphrase(
|
|
||||||
&mut self,
|
|
||||||
passphrase: Vec<u8>,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
let passphrase_cell = SafeCell::new(passphrase);
|
|
||||||
self.actors
|
|
||||||
.vault_coordinator
|
|
||||||
.ask(ContributeUnseal {
|
|
||||||
operator_id: self.auth_creds.id,
|
|
||||||
passphrase: passphrase_cell,
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::internal("VaultCoordinator unavailable"))
|
|
||||||
}
|
|
||||||
|
|
||||||
#[message]
|
|
||||||
pub async fn handle_contribute_recovery_unseal_passphrase(
|
|
||||||
&mut self,
|
|
||||||
recovery_operator_id: i32,
|
|
||||||
passphrase: Vec<u8>,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
let passphrase_cell = SafeCell::new(passphrase);
|
|
||||||
self.actors
|
|
||||||
.vault_coordinator
|
|
||||||
.ask(ContributeRecoveryUnseal {
|
|
||||||
recovery_operator_id,
|
|
||||||
passphrase: passphrase_cell,
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.map_err(|_| Error::internal("VaultCoordinator unavailable"))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Message<events::Bootstrapped> for VaultGate {
|
impl Message<events::Bootstrapped> for VaultGate {
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
use super::common::ChannelTransport;
|
use super::common::ChannelTransport;
|
||||||
use arbiter_crypto::authn::{self, AuthChallenge, SigningContext};
|
use arbiter_crypto::{
|
||||||
|
authn::{self, AuthChallenge, CLIENT_CONTEXT},
|
||||||
|
safecell::{SafeCell, SafeCellHandle as _},
|
||||||
|
};
|
||||||
use arbiter_proto::{
|
use arbiter_proto::{
|
||||||
ClientMetadata,
|
ClientMetadata,
|
||||||
transport::{Receiver, Sender},
|
transport::{Receiver, Sender},
|
||||||
@@ -71,7 +74,7 @@ async fn insert_registered_client(
|
|||||||
fn sign_client_challenge(key: &SigningKey<MlDsa87>, challenge: &AuthChallenge) -> authn::Signature {
|
fn sign_client_challenge(key: &SigningKey<MlDsa87>, challenge: &AuthChallenge) -> authn::Signature {
|
||||||
let challenge = challenge.format();
|
let challenge = challenge.format();
|
||||||
key.signing_key()
|
key.signing_key()
|
||||||
.sign_deterministic(&challenge, SigningContext::Client.as_bytes())
|
.sign_deterministic(&challenge, CLIENT_CONTEXT)
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.into()
|
.into()
|
||||||
}
|
}
|
||||||
@@ -97,7 +100,7 @@ async fn spawn_test_actors(db: &db::DatabasePool) -> GlobalActors {
|
|||||||
actors
|
actors
|
||||||
.vault
|
.vault
|
||||||
.ask(Bootstrap {
|
.ask(Bootstrap {
|
||||||
seal_key: arbiter_server::crypto::KeyCell::from([0u8; 32]),
|
seal_key_raw: SafeCell::new(b"test-seal-key".to_vec()),
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
@@ -263,7 +266,7 @@ pub async fn metadata_unchanged_does_not_append_history() {
|
|||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
pub async fn metadata_change_appends_history_and_repoints_binding() {
|
pub async fn metadata_frozen_after_approval_ignores_reconnect_changes() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let actors = spawn_test_actors(&db).await;
|
let actors = spawn_test_actors(&db).await;
|
||||||
let new_key = MlDsa87::key_gen(&mut rand::rng());
|
let new_key = MlDsa87::key_gen(&mut rand::rng());
|
||||||
@@ -284,6 +287,7 @@ pub async fn metadata_change_appends_history_and_repoints_binding() {
|
|||||||
connect_client(props, &mut server_transport).await;
|
connect_client(props, &mut server_transport).await;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Reconnect presenting different metadata — must be silently ignored.
|
||||||
test_transport
|
test_transport
|
||||||
.send(auth::Inbound::AuthChallengeRequest {
|
.send(auth::Inbound::AuthChallengeRequest {
|
||||||
pubkey: verifying_key(&new_key).into(),
|
pubkey: verifying_key(&new_key).into(),
|
||||||
@@ -310,6 +314,7 @@ pub async fn metadata_change_appends_history_and_repoints_binding() {
|
|||||||
client_metadata, client_metadata_history, program_client,
|
client_metadata, client_metadata_history, program_client,
|
||||||
};
|
};
|
||||||
let mut conn = db.get().await.unwrap();
|
let mut conn = db.get().await.unwrap();
|
||||||
|
// Metadata is frozen: no new row, no history entry.
|
||||||
let metadata_count: i64 = client_metadata::table
|
let metadata_count: i64 = client_metadata::table
|
||||||
.count()
|
.count()
|
||||||
.get_result(&mut conn)
|
.get_result(&mut conn)
|
||||||
@@ -335,15 +340,16 @@ pub async fn metadata_change_appends_history_and_repoints_binding() {
|
|||||||
.first::<(String, Option<String>, Option<String>)>(&mut conn)
|
.first::<(String, Option<String>, Option<String>)>(&mut conn)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
assert_eq!(metadata_count, 2);
|
assert_eq!(metadata_count, 1, "frozen: no new metadata row on reconnect");
|
||||||
assert_eq!(history_count, 1);
|
assert_eq!(history_count, 0, "frozen: no history entry on reconnect");
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
current,
|
current,
|
||||||
(
|
(
|
||||||
"client".to_owned(),
|
"client".to_owned(),
|
||||||
Some("new".to_owned()),
|
Some("old".to_owned()),
|
||||||
Some("2.0.0".to_owned())
|
Some("1.0.0".to_owned())
|
||||||
)
|
),
|
||||||
|
"frozen: original metadata must be preserved"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
dead_code,
|
dead_code,
|
||||||
reason = "Common test utilities that may not be used in every test"
|
reason = "Common test utilities that may not be used in every test"
|
||||||
)]
|
)]
|
||||||
|
use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
||||||
use arbiter_proto::transport::{Bi, Error, Receiver, Sender};
|
use arbiter_proto::transport::{Bi, Error, Receiver, Sender};
|
||||||
use arbiter_server::{
|
use arbiter_server::{
|
||||||
actors::{GlobalActors, vault::Vault},
|
actors::{GlobalActors, vault::Vault},
|
||||||
@@ -18,7 +19,7 @@ pub(crate) async fn bootstrapped_vault(db: &db::DatabasePool) -> Vault {
|
|||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
actor
|
actor
|
||||||
.bootstrap(arbiter_server::crypto::KeyCell::from([0u8; 32]))
|
.bootstrap(SafeCell::new(b"test-seal-key".to_vec()))
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
actor
|
actor
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,8 @@
|
|||||||
use super::common::ChannelTransport;
|
use super::common::ChannelTransport;
|
||||||
use arbiter_crypto::authn::{self, AuthChallenge, SigningContext};
|
use arbiter_crypto::{
|
||||||
|
authn::{self, AuthChallenge, OPERATOR_CONTEXT},
|
||||||
|
safecell::{SafeCell, SafeCellHandle as _},
|
||||||
|
};
|
||||||
use arbiter_proto::transport::{Error as TransportError, Receiver, Sender};
|
use arbiter_proto::transport::{Error as TransportError, Receiver, Sender};
|
||||||
use arbiter_server::{
|
use arbiter_server::{
|
||||||
actors::{GlobalActors, bootstrap::GetToken, vault::Bootstrap},
|
actors::{GlobalActors, bootstrap::GetToken, vault::Bootstrap},
|
||||||
@@ -24,7 +27,7 @@ fn sign_operator_challenge(
|
|||||||
) -> authn::Signature {
|
) -> authn::Signature {
|
||||||
let challenge = challenge.format();
|
let challenge = challenge.format();
|
||||||
key.signing_key()
|
key.signing_key()
|
||||||
.sign_deterministic(&challenge, SigningContext::Operator.as_bytes())
|
.sign_deterministic(&challenge, OPERATOR_CONTEXT)
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.into()
|
.into()
|
||||||
}
|
}
|
||||||
@@ -154,7 +157,7 @@ pub async fn bootstrap_token_auth() {
|
|||||||
actors
|
actors
|
||||||
.vault
|
.vault
|
||||||
.ask(Bootstrap {
|
.ask(Bootstrap {
|
||||||
seal_key: arbiter_server::crypto::KeyCell::from([0u8; 32]),
|
seal_key_raw: SafeCell::new(b"test-seal-key".to_vec()),
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
@@ -171,7 +174,7 @@ pub async fn bootstrap_token_auth() {
|
|||||||
test_transport
|
test_transport
|
||||||
.send(auth::Inbound::AuthChallengeRequest {
|
.send(auth::Inbound::AuthChallengeRequest {
|
||||||
pubkey: verifying_key(&new_key).into(),
|
pubkey: verifying_key(&new_key).into(),
|
||||||
bootstrap_token: Some(token),
|
bootstrap_token: Some(token.into_bytes()),
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
@@ -228,7 +231,7 @@ pub async fn bootstrap_invalid_token_auth() {
|
|||||||
test_transport
|
test_transport
|
||||||
.send(auth::Inbound::AuthChallengeRequest {
|
.send(auth::Inbound::AuthChallengeRequest {
|
||||||
pubkey: verifying_key(&new_key).into(),
|
pubkey: verifying_key(&new_key).into(),
|
||||||
bootstrap_token: Some("invalid_token".to_owned()),
|
bootstrap_token: Some(b"invalid_token".to_vec()),
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
@@ -272,7 +275,7 @@ pub async fn challenge_auth() {
|
|||||||
actors
|
actors
|
||||||
.vault
|
.vault
|
||||||
.ask(Bootstrap {
|
.ask(Bootstrap {
|
||||||
seal_key: arbiter_server::crypto::KeyCell::from([0u8; 32]),
|
seal_key_raw: SafeCell::new(b"test-seal-key".to_vec()),
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
@@ -358,7 +361,7 @@ pub async fn challenge_auth_rejects_integrity_tag_mismatch_when_unsealed() {
|
|||||||
actors
|
actors
|
||||||
.vault
|
.vault
|
||||||
.ask(Bootstrap {
|
.ask(Bootstrap {
|
||||||
seal_key: arbiter_server::crypto::KeyCell::from([0u8; 32]),
|
seal_key_raw: SafeCell::new(b"test-seal-key".to_vec()),
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
@@ -397,7 +400,7 @@ pub async fn challenge_auth_rejects_integrity_tag_mismatch_when_unsealed() {
|
|||||||
let challenge = match response {
|
let challenge = match response {
|
||||||
Ok(resp) => match resp {
|
Ok(resp) => match resp {
|
||||||
auth::Outbound::AuthChallenge { challenge } => challenge,
|
auth::Outbound::AuthChallenge { challenge } => challenge,
|
||||||
other => panic!("Expected AuthChallenge, got {other:?}"),
|
other @ auth::Outbound::AuthSuccess => panic!("Expected AuthChallenge, got {other:?}"),
|
||||||
},
|
},
|
||||||
Err(err) => panic!("Expected Ok response, got Err({err:?})"),
|
Err(err) => panic!("Expected Ok response, got Err({err:?})"),
|
||||||
};
|
};
|
||||||
@@ -431,7 +434,7 @@ pub async fn challenge_auth_rejects_invalid_signature() {
|
|||||||
actors
|
actors
|
||||||
.vault
|
.vault
|
||||||
.ask(Bootstrap {
|
.ask(Bootstrap {
|
||||||
seal_key: arbiter_server::crypto::KeyCell::from([0u8; 32]),
|
seal_key_raw: SafeCell::new(b"test-seal-key".to_vec()),
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
use arbiter_crypto::authn;
|
use arbiter_crypto::{
|
||||||
|
authn,
|
||||||
|
safecell::{SafeCell, SafeCellHandle as _},
|
||||||
|
};
|
||||||
use arbiter_server::{
|
use arbiter_server::{
|
||||||
actors::{
|
actors::{
|
||||||
GlobalActors,
|
GlobalActors,
|
||||||
@@ -19,7 +22,7 @@ use tokio::sync::oneshot;
|
|||||||
use x25519_dalek::{EphemeralSecret, PublicKey};
|
use x25519_dalek::{EphemeralSecret, PublicKey};
|
||||||
|
|
||||||
async fn setup_sealed_gate(
|
async fn setup_sealed_gate(
|
||||||
seal_key: &[u8; 32],
|
seal_key: &[u8],
|
||||||
) -> (
|
) -> (
|
||||||
db::DatabasePool,
|
db::DatabasePool,
|
||||||
kameo::actor::ActorRef<VaultGate>,
|
kameo::actor::ActorRef<VaultGate>,
|
||||||
@@ -31,7 +34,7 @@ async fn setup_sealed_gate(
|
|||||||
actors
|
actors
|
||||||
.vault
|
.vault
|
||||||
.ask(Bootstrap {
|
.ask(Bootstrap {
|
||||||
seal_key: arbiter_server::crypto::KeyCell::from(*seal_key),
|
seal_key_raw: SafeCell::new(seal_key.to_vec()),
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
@@ -47,7 +50,7 @@ async fn setup_sealed_gate(
|
|||||||
|
|
||||||
async fn client_dh_encrypt(
|
async fn client_dh_encrypt(
|
||||||
gate: &kameo::actor::ActorRef<VaultGate>,
|
gate: &kameo::actor::ActorRef<VaultGate>,
|
||||||
key_to_send: &[u8; 32],
|
key_to_send: &[u8],
|
||||||
) -> HandleUnsealEncryptedKey {
|
) -> HandleUnsealEncryptedKey {
|
||||||
let client_secret = EphemeralSecret::random();
|
let client_secret = EphemeralSecret::random();
|
||||||
let client_public = PublicKey::from(&client_secret);
|
let client_public = PublicKey::from(&client_secret);
|
||||||
@@ -80,7 +83,7 @@ async fn client_dh_encrypt(
|
|||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
pub async fn unseal_success() {
|
pub async fn unseal_success() {
|
||||||
let seal_key = b"test-seal-key-padded-to-32bytes!";
|
let seal_key = b"test-seal-key";
|
||||||
let (_db, gate, _promotion_rx) = setup_sealed_gate(seal_key).await;
|
let (_db, gate, _promotion_rx) = setup_sealed_gate(seal_key).await;
|
||||||
|
|
||||||
let encrypted_key = client_dh_encrypt(&gate, seal_key).await;
|
let encrypted_key = client_dh_encrypt(&gate, seal_key).await;
|
||||||
@@ -92,10 +95,10 @@ pub async fn unseal_success() {
|
|||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
pub async fn unseal_wrong_seal_key() {
|
pub async fn unseal_wrong_seal_key() {
|
||||||
let seal_key = b"test-seal-key-padded-to-32bytes!";
|
let seal_key = b"test-seal-key";
|
||||||
let (_db, gate, _promotion_rx) = setup_sealed_gate(seal_key).await;
|
let (_db, gate, _promotion_rx) = setup_sealed_gate(seal_key).await;
|
||||||
|
|
||||||
let encrypted_key = client_dh_encrypt(&gate, b"wrong-key-padded-to-32-bytes!!!!").await;
|
let encrypted_key = client_dh_encrypt(&gate, b"wrong-key").await;
|
||||||
|
|
||||||
let response = gate.ask(encrypted_key).await;
|
let response = gate.ask(encrypted_key).await;
|
||||||
assert!(matches!(
|
assert!(matches!(
|
||||||
@@ -109,7 +112,7 @@ pub async fn unseal_wrong_seal_key() {
|
|||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
pub async fn unseal_corrupted_ciphertext() {
|
pub async fn unseal_corrupted_ciphertext() {
|
||||||
let seal_key = b"test-seal-key-padded-to-32bytes!";
|
let seal_key = b"test-seal-key";
|
||||||
let (_db, gate, _promotion_rx) = setup_sealed_gate(seal_key).await;
|
let (_db, gate, _promotion_rx) = setup_sealed_gate(seal_key).await;
|
||||||
|
|
||||||
let client_secret = EphemeralSecret::random();
|
let client_secret = EphemeralSecret::random();
|
||||||
@@ -140,11 +143,11 @@ pub async fn unseal_corrupted_ciphertext() {
|
|||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
pub async fn unseal_retry_after_invalid_key() {
|
pub async fn unseal_retry_after_invalid_key() {
|
||||||
let seal_key = b"real-seal-key-padded-to-32bytes!";
|
let seal_key = b"real-seal-key";
|
||||||
let (_db, gate, _promotion_rx) = setup_sealed_gate(seal_key).await;
|
let (_db, gate, _promotion_rx) = setup_sealed_gate(seal_key).await;
|
||||||
|
|
||||||
{
|
{
|
||||||
let encrypted_key = client_dh_encrypt(&gate, b"wrong-key-padded-to-32-bytes!!!!").await;
|
let encrypted_key = client_dh_encrypt(&gate, b"wrong-key").await;
|
||||||
|
|
||||||
let response = gate.ask(encrypted_key).await;
|
let response = gate.ask(encrypted_key).await;
|
||||||
assert!(matches!(
|
assert!(matches!(
|
||||||
|
|||||||
@@ -14,6 +14,8 @@ use kameo::actor::{ActorRef, Spawn as _};
|
|||||||
use std::collections::{HashMap, HashSet};
|
use std::collections::{HashMap, HashSet};
|
||||||
use tokio::task::JoinSet;
|
use tokio::task::JoinSet;
|
||||||
|
|
||||||
|
const TEST_AAD: &[u8] = b"test-aad";
|
||||||
|
|
||||||
async fn write_concurrently(
|
async fn write_concurrently(
|
||||||
actor: ActorRef<Vault>,
|
actor: ActorRef<Vault>,
|
||||||
prefix: &'static str,
|
prefix: &'static str,
|
||||||
@@ -27,6 +29,7 @@ async fn write_concurrently(
|
|||||||
let id = actor
|
let id = actor
|
||||||
.ask(CreateNew {
|
.ask(CreateNew {
|
||||||
plaintext: SafeCell::new(plaintext.clone()),
|
plaintext: SafeCell::new(plaintext.clone()),
|
||||||
|
aad: TEST_AAD.to_vec(),
|
||||||
})
|
})
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
@@ -120,7 +123,7 @@ async fn insert_failure_does_not_create_partial_row() {
|
|||||||
drop(conn);
|
drop(conn);
|
||||||
|
|
||||||
let err = actor
|
let err = actor
|
||||||
.create_new(SafeCell::new(b"should fail".to_vec()))
|
.create_new(SafeCell::new(b"should fail".to_vec()), TEST_AAD.to_vec())
|
||||||
.await
|
.await
|
||||||
.unwrap_err();
|
.unwrap_err();
|
||||||
assert!(matches!(err, Error::DatabaseTransaction(_)));
|
assert!(matches!(err, Error::DatabaseTransaction(_)));
|
||||||
@@ -166,12 +169,12 @@ async fn decrypt_roundtrip_after_high_concurrency() {
|
|||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
decryptor
|
decryptor
|
||||||
.try_unseal(arbiter_server::crypto::KeyCell::from([0u8; 32]))
|
.try_unseal(SafeCell::new(b"test-seal-key".to_vec()))
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
for (id, plaintext) in expected {
|
for (id, plaintext) in expected {
|
||||||
let mut decrypted = decryptor.decrypt(id).await.unwrap();
|
let mut decrypted = decryptor.decrypt(id, TEST_AAD.to_vec()).await.unwrap();
|
||||||
assert_eq!(*decrypted.read(), plaintext);
|
assert_eq!(*decrypted.read(), plaintext);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,29 +3,26 @@ use arbiter_crypto::safecell::{SafeCell, SafeCellHandle as _};
|
|||||||
use arbiter_server::{
|
use arbiter_server::{
|
||||||
actors::{
|
actors::{
|
||||||
GlobalActors,
|
GlobalActors,
|
||||||
vault::{Error, GetState, Vault, VaultState},
|
vault::{Error, Vault},
|
||||||
vault_coordinator::{
|
|
||||||
ContributeBootstrap, ContributeRecoveryBootstrap, ContributeRecoveryUnseal,
|
|
||||||
Error as CoordinatorError, StartBootstrap, VaultCoordinator,
|
|
||||||
},
|
},
|
||||||
},
|
crypto::encryption::v1::{Nonce, ROOT_KEY_TAG},
|
||||||
crypto::{KeyCell, encryption::v1::{Nonce, ROOT_KEY_TAG}},
|
|
||||||
db::{self, models, schema},
|
db::{self, models, schema},
|
||||||
};
|
};
|
||||||
|
|
||||||
use diesel::{ExpressionMethods, QueryDsl, SelectableHelper, insert_into};
|
use diesel::{QueryDsl, SelectableHelper};
|
||||||
use diesel_async::RunQueryDsl;
|
use diesel_async::RunQueryDsl;
|
||||||
use kameo::actor::Spawn as _;
|
|
||||||
|
const TEST_AAD: &[u8] = b"test-aad";
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
async fn test_bootstrap() {
|
async fn bootstrap() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = Vault::new(db.clone(), GlobalActors::spawn_message_bus())
|
let mut actor = Vault::new(db.clone(), GlobalActors::spawn_message_bus())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
let seal_key = KeyCell::from([0u8; 32]);
|
let seal_key = SafeCell::new(b"test-seal-key".to_vec());
|
||||||
actor.bootstrap(seal_key).await.unwrap();
|
actor.bootstrap(seal_key).await.unwrap();
|
||||||
|
|
||||||
let mut conn = db.get().await.unwrap();
|
let mut conn = db.get().await.unwrap();
|
||||||
@@ -44,25 +41,25 @@ async fn test_bootstrap() {
|
|||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
async fn test_bootstrap_rejects_double() {
|
async fn bootstrap_rejects_double() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = common::bootstrapped_vault(&db).await;
|
let mut actor = common::bootstrapped_vault(&db).await;
|
||||||
|
|
||||||
let seal_key2 = KeyCell::from([0u8; 32]);
|
let seal_key2 = SafeCell::new(b"test-seal-key".to_vec());
|
||||||
let err = actor.bootstrap(seal_key2).await.unwrap_err();
|
let err = actor.bootstrap(seal_key2).await.unwrap_err();
|
||||||
assert!(matches!(err, Error::AlreadyBootstrapped));
|
assert!(matches!(err, Error::AlreadyBootstrapped));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
async fn test_create_new_before_bootstrap_fails() {
|
async fn create_new_before_bootstrap_fails() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = Vault::new(db, GlobalActors::spawn_message_bus())
|
let mut actor = Vault::new(db, GlobalActors::spawn_message_bus())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
let err = actor
|
let err = actor
|
||||||
.create_new(SafeCell::new(b"data".to_vec()))
|
.create_new(SafeCell::new(b"data".to_vec()), TEST_AAD.to_vec())
|
||||||
.await
|
.await
|
||||||
.unwrap_err();
|
.unwrap_err();
|
||||||
assert!(matches!(err, Error::NotBootstrapped));
|
assert!(matches!(err, Error::NotBootstrapped));
|
||||||
@@ -70,19 +67,19 @@ async fn test_create_new_before_bootstrap_fails() {
|
|||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
async fn test_decrypt_before_bootstrap_fails() {
|
async fn decrypt_before_bootstrap_fails() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = Vault::new(db, GlobalActors::spawn_message_bus())
|
let mut actor = Vault::new(db, GlobalActors::spawn_message_bus())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
let err = actor.decrypt(1).await.unwrap_err();
|
let err = actor.decrypt(1, TEST_AAD.to_vec()).await.unwrap_err();
|
||||||
assert!(matches!(err, Error::NotBootstrapped));
|
assert!(matches!(err, Error::NotBootstrapped));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
async fn test_new_restores_sealed_state() {
|
async fn new_restores_sealed_state() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let actor = common::bootstrapped_vault(&db).await;
|
let actor = common::bootstrapped_vault(&db).await;
|
||||||
drop(actor);
|
drop(actor);
|
||||||
@@ -90,19 +87,19 @@ async fn test_new_restores_sealed_state() {
|
|||||||
let mut actor2 = Vault::new(db, GlobalActors::spawn_message_bus())
|
let mut actor2 = Vault::new(db, GlobalActors::spawn_message_bus())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let err = actor2.decrypt(1).await.unwrap_err();
|
let err = actor2.decrypt(1, TEST_AAD.to_vec()).await.unwrap_err();
|
||||||
assert!(matches!(err, Error::Sealed));
|
assert!(matches!(err, Error::Sealed));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
async fn test_unseal_correct_password() {
|
async fn unseal_correct_password() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = common::bootstrapped_vault(&db).await;
|
let mut actor = common::bootstrapped_vault(&db).await;
|
||||||
|
|
||||||
let plaintext = b"survive a restart";
|
let plaintext = b"survive a restart";
|
||||||
let aead_id = actor
|
let aead_id = actor
|
||||||
.create_new(SafeCell::new(plaintext.to_vec()))
|
.create_new(SafeCell::new(plaintext.to_vec()), TEST_AAD.to_vec())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
drop(actor);
|
drop(actor);
|
||||||
@@ -110,22 +107,22 @@ async fn test_unseal_correct_password() {
|
|||||||
let mut actor = Vault::new(db.clone(), GlobalActors::spawn_message_bus())
|
let mut actor = Vault::new(db.clone(), GlobalActors::spawn_message_bus())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let seal_key = KeyCell::from([0u8; 32]);
|
let seal_key = SafeCell::new(b"test-seal-key".to_vec());
|
||||||
actor.try_unseal(seal_key).await.unwrap();
|
actor.try_unseal(seal_key).await.unwrap();
|
||||||
|
|
||||||
let mut decrypted = actor.decrypt(aead_id).await.unwrap();
|
let mut decrypted = actor.decrypt(aead_id, TEST_AAD.to_vec()).await.unwrap();
|
||||||
assert_eq!(*decrypted.read(), plaintext);
|
assert_eq!(*decrypted.read(), plaintext);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
async fn test_unseal_wrong_then_correct_password() {
|
async fn unseal_wrong_then_correct_password() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = common::bootstrapped_vault(&db).await;
|
let mut actor = common::bootstrapped_vault(&db).await;
|
||||||
|
|
||||||
let plaintext = b"important data";
|
let plaintext = b"important data";
|
||||||
let aead_id = actor
|
let aead_id = actor
|
||||||
.create_new(SafeCell::new(plaintext.to_vec()))
|
.create_new(SafeCell::new(plaintext.to_vec()), TEST_AAD.to_vec())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
drop(actor);
|
drop(actor);
|
||||||
@@ -134,137 +131,13 @@ async fn test_unseal_wrong_then_correct_password() {
|
|||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
let bad_key = KeyCell::from([1u8; 32]);
|
let bad_key = SafeCell::new(b"wrong-password".to_vec());
|
||||||
let err = actor.try_unseal(bad_key).await.unwrap_err();
|
let err = actor.try_unseal(bad_key).await.unwrap_err();
|
||||||
assert!(matches!(err, Error::InvalidKey));
|
assert!(matches!(err, Error::InvalidKey));
|
||||||
|
|
||||||
let good_key = KeyCell::from([0u8; 32]);
|
let good_key = SafeCell::new(b"test-seal-key".to_vec());
|
||||||
actor.try_unseal(good_key).await.unwrap();
|
actor.try_unseal(good_key).await.unwrap();
|
||||||
|
|
||||||
let mut decrypted = actor.decrypt(aead_id).await.unwrap();
|
let mut decrypted = actor.decrypt(aead_id, TEST_AAD.to_vec()).await.unwrap();
|
||||||
assert_eq!(*decrypted.read(), plaintext);
|
assert_eq!(*decrypted.read(), plaintext);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
|
||||||
#[test_log::test]
|
|
||||||
async fn two_operator_vault_requires_recovery_share() {
|
|
||||||
let db = db::create_test_pool().await;
|
|
||||||
let bus = GlobalActors::spawn_message_bus();
|
|
||||||
let vault_ref = Vault::spawn(Vault::new(db.clone(), bus).await.unwrap());
|
|
||||||
let coordinator = VaultCoordinator::spawn(VaultCoordinator::new(db, vault_ref));
|
|
||||||
|
|
||||||
let err = coordinator
|
|
||||||
.ask(StartBootstrap {
|
|
||||||
operator_id: 1,
|
|
||||||
declared_count: 2,
|
|
||||||
recovery_count: 0,
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.unwrap_err();
|
|
||||||
|
|
||||||
assert!(
|
|
||||||
matches!(
|
|
||||||
err,
|
|
||||||
kameo::error::SendError::HandlerError(CoordinatorError::TwoOperatorsRequireRecovery)
|
|
||||||
),
|
|
||||||
"expected TwoOperatorsRequireRecovery, got {err:?}"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// §3.4: Bootstrap with 1 ordinary + 1 recovery operator produces a valid 1-of-2 Shamir split.
|
|
||||||
/// Both ordinary and recovery shares are stored; the vault can be unsealed with either one.
|
|
||||||
#[tokio::test]
|
|
||||||
#[test_log::test]
|
|
||||||
async fn recovery_share_stored_and_used_for_unseal() {
|
|
||||||
let db = db::create_test_pool().await;
|
|
||||||
let bus = GlobalActors::spawn_message_bus();
|
|
||||||
let vault_ref = Vault::spawn(Vault::new(db.clone(), bus).await.unwrap());
|
|
||||||
let coordinator = VaultCoordinator::spawn(VaultCoordinator::new(db.clone(), vault_ref.clone()));
|
|
||||||
|
|
||||||
// Register one ordinary operator and one recovery operator in the DB
|
|
||||||
let ordinary_id: i32 = {
|
|
||||||
let mut conn = db.get().await.unwrap();
|
|
||||||
insert_into(schema::operator_identity::table)
|
|
||||||
.values(schema::operator_identity::public_key.eq(vec![1u8; 32]))
|
|
||||||
.returning(schema::operator_identity::id)
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await
|
|
||||||
.unwrap()
|
|
||||||
};
|
|
||||||
let recovery_id: i32 = {
|
|
||||||
let mut conn = db.get().await.unwrap();
|
|
||||||
insert_into(schema::recovery_operator_identity::table)
|
|
||||||
.values(schema::recovery_operator_identity::public_key.eq(vec![2u8; 32]))
|
|
||||||
.returning(schema::recovery_operator_identity::id)
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await
|
|
||||||
.unwrap()
|
|
||||||
};
|
|
||||||
|
|
||||||
// Declare committee: 1 ordinary + 1 recovery
|
|
||||||
coordinator
|
|
||||||
.ask(StartBootstrap {
|
|
||||||
operator_id: ordinary_id,
|
|
||||||
declared_count: 1,
|
|
||||||
recovery_count: 1,
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
// Recovery operator contributes first — bootstrap should not finalize yet
|
|
||||||
let done = coordinator
|
|
||||||
.ask(ContributeRecoveryBootstrap {
|
|
||||||
recovery_operator_id: recovery_id,
|
|
||||||
passphrase: SafeCell::new(b"recovery-pass".to_vec()),
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
assert!(!done, "should not finalize with only recovery passphrase");
|
|
||||||
|
|
||||||
// Ordinary operator contributes — now bootstrap finalizes
|
|
||||||
let done = coordinator
|
|
||||||
.ask(ContributeBootstrap {
|
|
||||||
operator_id: ordinary_id,
|
|
||||||
passphrase: SafeCell::new(b"ordinary-pass".to_vec()),
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
assert!(done, "should finalize once all contributors are in");
|
|
||||||
|
|
||||||
// After bootstrap, vault is Unsealed (seal key still in memory).
|
|
||||||
let state = vault_ref.ask(GetState {}).await.unwrap();
|
|
||||||
assert_eq!(state, VaultState::Unsealed);
|
|
||||||
|
|
||||||
// Verify recovery_operator row was created
|
|
||||||
let recovery_share_count: i64 = {
|
|
||||||
let mut conn = db.get().await.unwrap();
|
|
||||||
schema::recovery_operator::table
|
|
||||||
.count()
|
|
||||||
.get_result(&mut conn)
|
|
||||||
.await
|
|
||||||
.unwrap()
|
|
||||||
};
|
|
||||||
assert_eq!(recovery_share_count, 1);
|
|
||||||
|
|
||||||
// Simulate restart: drop vault and coordinator, create fresh vault (comes up Sealed).
|
|
||||||
drop(coordinator);
|
|
||||||
drop(vault_ref);
|
|
||||||
let bus2 = GlobalActors::spawn_message_bus();
|
|
||||||
let vault_ref2 = Vault::spawn(Vault::new(db.clone(), bus2).await.unwrap());
|
|
||||||
let state = vault_ref2.ask(GetState {}).await.unwrap();
|
|
||||||
assert_eq!(state, VaultState::Sealed);
|
|
||||||
|
|
||||||
// §3.5: Unseal using ONLY the recovery operator share (threshold = shamir_threshold(1) = 1).
|
|
||||||
let coordinator2 = VaultCoordinator::spawn(VaultCoordinator::new(db.clone(), vault_ref2.clone()));
|
|
||||||
let done = coordinator2
|
|
||||||
.ask(ContributeRecoveryUnseal {
|
|
||||||
recovery_operator_id: recovery_id,
|
|
||||||
passphrase: SafeCell::new(b"recovery-pass".to_vec()),
|
|
||||||
})
|
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
assert!(done, "recovery share alone should satisfy threshold");
|
|
||||||
|
|
||||||
let state = vault_ref2.ask(GetState {}).await.unwrap();
|
|
||||||
assert_eq!(state, VaultState::Unsealed);
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -10,45 +10,47 @@ use diesel::{ExpressionMethods as _, QueryDsl, SelectableHelper, dsl::update};
|
|||||||
use diesel_async::RunQueryDsl;
|
use diesel_async::RunQueryDsl;
|
||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
|
|
||||||
|
const TEST_AAD: &[u8] = b"test-aad";
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
async fn test_create_decrypt_roundtrip() {
|
async fn create_decrypt_roundtrip() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = common::bootstrapped_vault(&db).await;
|
let mut actor = common::bootstrapped_vault(&db).await;
|
||||||
|
|
||||||
let plaintext = b"hello arbiter";
|
let plaintext = b"hello arbiter";
|
||||||
let aead_id = actor
|
let aead_id = actor
|
||||||
.create_new(SafeCell::new(plaintext.to_vec()))
|
.create_new(SafeCell::new(plaintext.to_vec()), TEST_AAD.to_vec())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
let mut decrypted = actor.decrypt(aead_id).await.unwrap();
|
let mut decrypted = actor.decrypt(aead_id, TEST_AAD.to_vec()).await.unwrap();
|
||||||
assert_eq!(*decrypted.read(), plaintext);
|
assert_eq!(*decrypted.read(), plaintext);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
async fn test_decrypt_nonexistent_returns_not_found() {
|
async fn decrypt_nonexistent_returns_not_found() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = common::bootstrapped_vault(&db).await;
|
let mut actor = common::bootstrapped_vault(&db).await;
|
||||||
|
|
||||||
let err = actor.decrypt(9999).await.unwrap_err();
|
let err = actor.decrypt(9999, TEST_AAD.to_vec()).await.unwrap_err();
|
||||||
assert!(matches!(err, Error::NotFound));
|
assert!(matches!(err, Error::NotFound));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
async fn test_ciphertext_differs_across_entries() {
|
async fn ciphertext_differs_across_entries() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = common::bootstrapped_vault(&db).await;
|
let mut actor = common::bootstrapped_vault(&db).await;
|
||||||
|
|
||||||
let plaintext = b"same content";
|
let plaintext = b"same content";
|
||||||
let id1 = actor
|
let id1 = actor
|
||||||
.create_new(SafeCell::new(plaintext.to_vec()))
|
.create_new(SafeCell::new(plaintext.to_vec()), TEST_AAD.to_vec())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let id2 = actor
|
let id2 = actor
|
||||||
.create_new(SafeCell::new(plaintext.to_vec()))
|
.create_new(SafeCell::new(plaintext.to_vec()), TEST_AAD.to_vec())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
@@ -68,22 +70,22 @@ async fn test_ciphertext_differs_across_entries() {
|
|||||||
|
|
||||||
assert_ne!(row1.ciphertext, row2.ciphertext);
|
assert_ne!(row1.ciphertext, row2.ciphertext);
|
||||||
|
|
||||||
let mut d1 = actor.decrypt(id1).await.unwrap();
|
let mut d1 = actor.decrypt(id1, TEST_AAD.to_vec()).await.unwrap();
|
||||||
let mut d2 = actor.decrypt(id2).await.unwrap();
|
let mut d2 = actor.decrypt(id2, TEST_AAD.to_vec()).await.unwrap();
|
||||||
assert_eq!(*d1.read(), plaintext);
|
assert_eq!(*d1.read(), plaintext);
|
||||||
assert_eq!(*d2.read(), plaintext);
|
assert_eq!(*d2.read(), plaintext);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
#[test_log::test]
|
#[test_log::test]
|
||||||
async fn test_nonce_never_reused() {
|
async fn nonce_never_reused() {
|
||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = common::bootstrapped_vault(&db).await;
|
let mut actor = common::bootstrapped_vault(&db).await;
|
||||||
|
|
||||||
let n = 5;
|
let n = 5;
|
||||||
for i in 0..n {
|
for i in 0..n {
|
||||||
actor
|
actor
|
||||||
.create_new(SafeCell::new(format!("secret {i}").into_bytes()))
|
.create_new(SafeCell::new(format!("secret {i}").into_bytes()), TEST_AAD.to_vec())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
}
|
}
|
||||||
@@ -137,7 +139,7 @@ async fn broken_db_nonce_format_fails_closed() {
|
|||||||
drop(conn);
|
drop(conn);
|
||||||
|
|
||||||
let err = actor
|
let err = actor
|
||||||
.create_new(SafeCell::new(b"must fail".to_vec()))
|
.create_new(SafeCell::new(b"must fail".to_vec()), TEST_AAD.to_vec())
|
||||||
.await
|
.await
|
||||||
.unwrap_err();
|
.unwrap_err();
|
||||||
assert!(matches!(err, Error::BrokenDatabase));
|
assert!(matches!(err, Error::BrokenDatabase));
|
||||||
@@ -145,7 +147,7 @@ async fn broken_db_nonce_format_fails_closed() {
|
|||||||
let db = db::create_test_pool().await;
|
let db = db::create_test_pool().await;
|
||||||
let mut actor = common::bootstrapped_vault(&db).await;
|
let mut actor = common::bootstrapped_vault(&db).await;
|
||||||
let id = actor
|
let id = actor
|
||||||
.create_new(SafeCell::new(b"decrypt target".to_vec()))
|
.create_new(SafeCell::new(b"decrypt target".to_vec()), TEST_AAD.to_vec())
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let mut conn = db.get().await.unwrap();
|
let mut conn = db.get().await.unwrap();
|
||||||
@@ -156,6 +158,6 @@ async fn broken_db_nonce_format_fails_closed() {
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
drop(conn);
|
drop(conn);
|
||||||
|
|
||||||
let err = actor.decrypt(id).await.unwrap_err();
|
let err = actor.decrypt(id, TEST_AAD.to_vec()).await.unwrap_err();
|
||||||
assert!(matches!(err, Error::BrokenDatabase));
|
assert!(matches!(err, Error::BrokenDatabase));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user