lib-block is the canonical fixed-size IPC/types crate for block storage
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Erik Inkinen 60a54c54d0
All checks were successful
CI / markdown (push) Successful in 7s
CI / test (push) Successful in 39s
chore: Merge native CLI development into main
Merge the selected feature/native-cli history with an explicit two-parent commit so main retains the development lineage and the validated source snapshot. The resulting tree is identical to the selected feature commit; no dependency pins or runtime behavior are changed by this merge.

Previous main: 160ee0c5a0
Selected feature: 23e89b88ca

Publish this integration point following the requested cross-repository merge. Preserve the feature branch and immutable dependency objects for reproducibility; do not squash, rebase or rewrite existing commits.
2026-09-12 08:28:44 +03:00
.github build: Pin dependency and CI helper source commits 2026-09-12 07:32:08 +03:00
src perf: Bound block read reply capacity to each fragment 2026-09-08 00:34:11 +03:00
.editorconfig Initial commit 2026-04-22 04:02:22 +02:00
.gitignore Initial commit 2026-04-22 04:02:22 +02:00
.markdownlint-cli2.yaml Tighten CI markdown policy 2026-05-22 15:10:09 +03:00
ARCHITECTURE.md perf: Bound block read reply capacity to each fragment 2026-09-08 00:34:11 +03:00
Cargo.toml build: Pin dependency and CI helper source commits 2026-09-12 07:32:08 +03:00
CODE_OF_CONDUCT.md docs: Synchronize shared contribution and review policies 2026-09-12 06:38:13 +03:00
CONTRIBUTING.md build: Pin dependency and CI helper source commits 2026-09-12 07:32:08 +03:00
LICENSE Initial commit 2026-04-22 04:02:22 +02:00
README.md perf: Bound block read reply capacity to each fragment 2026-09-08 00:34:11 +03:00
ROADMAP.md perf: Bound block read reply capacity to each fragment 2026-09-08 00:34:11 +03:00
rustfmt.toml Initial commit 2026-04-22 04:02:22 +02:00
SECURITY.md docs: Synchronize shared contribution and review policies 2026-09-12 06:38:13 +03:00

lib-block

lib-block is the canonical no-std block IPC and client crate for the storage stack. Block services, drivers, filesystem providers, and root orchestration share its exact wire views and explicit-authority transport helpers.

EriX is a clean-room, capability-based microkernel operating system written entirely in Rust.

Technical requirements are tracked in the EriX requirements, conventions, and project documentation.

See:

  • docs for design documents, specifications, and development plans.
  • Related architecture repositories for kernel, services, libraries, drivers, and integration tooling.

Purpose of This Repository

This repository implements the EriX block library. Its purpose in EriX is to provide reusable block primitives and contracts to EriX components.

Functionally, it exposes the block APIs, validation tests, and documentation used by dependent repositories. The repository keeps the implementation, interface contracts, tests, and documentation for that behavior in one reviewable ownership boundary.

The maintained responsibilities are:

  • expose the lib-block crate API for block behavior used by dependent components
  • keep data formats, constants, and validation helpers documented and tested
  • preserve clean-room, no-external-crate implementation boundaries
  • maintain compatibility expectations for downstream repositories

Clean-Room Policy

EriX follows a strict clean-room philosophy:

  • No external source code may be copied.
  • No external Rust crates are allowed.
  • No code generation tools that embed third-party code.
  • All code must be authored within the project.

Violations will result in rejection of the contribution.

License

All EriX repositories are licensed under the ISC License.

Development Model

EriX development is modular, deterministic, reproducible, authority-explicit, security-first, and self-hosting oriented.

This repository follows the project roadmap and the validation rules documented in its own roadmap.

Validation

  • cargo test
  • cargo fmt
  • strict clippy with warnings denied

Governance Principles

lib-block governance is scoped to reusable block-device contracts shared by dependent repositories.

The scoped governance rules are:

  • It must expose narrow, documented APIs rather than component-specific policy.
  • It keeps wire formats, constants, parsers, and validation helpers deterministic and testable.
  • It preserves clean-room implementation boundaries and does not introduce external crate dependencies.
  • Breaking API or format changes require coordinated updates in every dependent repository.

Library Boundaries

  • lib-block carries no runtime authority by itself; authority is held by callers that use the library.
  • The crate must not hide ambient I/O, allocation policy, or service discovery behind helper APIs.
  • Filesystem providers share one BlockDevice abstraction and BlockClient; retained transport remains explicit through caller-supplied IPC/yield callbacks, call-message storage, transfer storage, and endpoint slot. It retries transient pre-acceptance backpressure without an arbitrary local ceiling and retains delegated message storage after acceptance until the authoritative reply arrives.
  • Read and write payloads use exact borrowed slices instead of padded, library-sized arrays. BlockClient divides a logical operation only where its caller-owned transfer slice or the canonical kernel transport envelope requires another message. No full-envelope request or response buffer is hidden on the caller's stack. Each read borrows only its exact response header plus checked fragment bytes: a 512-byte metadata read needs a 592-byte IPC call capacity, while full data fragments retain the existing transport bound.
  • Enumeration carries independent full-width provider and provider-private namespace cursors. The library does not pack either cursor into a smaller integer domain or impose a provider-count or namespace-size policy.
  • BlockDevice::read_partition_info resolves an explicitly selected partition under an already identified parent. BlockClient streams the block namespace until that selector is found, so callers do not persist opaque runtime device IDs or inherit a local enumeration ceiling.

Contact

Development occurs in EriX organization and discussions happen in issues and design documents.

No decisions are considered valid without documented rationale.

Maintainers can be reached via email: admin@erikinkinen.fi.