2.6 KiB
ASL/AUTH-HOST-IMAGE/1 - Bootable Image and Overlay Layout
Status: Draft Owner: Architecture Version: 0.1.0 SoT: No Last Updated: 2026-01-17 Tags: [ops, authority, image]
Document ID: ASL/AUTH-HOST-IMAGE/1
Layer: O2I - Authority host image profile
Depends on (normative):
ASL/AUTH-HOST/1ENC-ASL-AUTH-HOST/1
Informative references:
ASL/AUTH-HOST-CONFIG/1
0. Conventions
The key words MUST, MUST NOT, REQUIRED, SHOULD, and MAY are to be interpreted as in RFC 2119.
1. Purpose and Scope
This document defines a bootable, offline authority host image. It specifies base system requirements, overlay layout, and the boot workflow used to initialize authority operations.
2. Base Image Requirements
The base OS MUST:
- Boot in offline mode by default
- Include minimal POSIX tooling
- Disable network services unless explicitly enabled
3. Overlay Layout
/overlay/
├── bin/
│ ├── asl-auth-host
│ ├── asl-rescue
│ └── init-asl-host.sh
├── etc/
│ └── asl-auth-host/
│ ├── config.yaml
│ └── policy.hash
├── var/
│ ├── lib/
│ │ └── asl/
│ │ ├── common/
│ │ ├── personal/
│ │ └── pools/
│ └── log/
│ └── asl-auth-host.log
└── usr/
└── local/
└── bin/
└── asl-admin
The overlay MUST be merged into the ISO root at build time.
4. ISO Root Layout (Runtime)
/iso_root/
├── bin/
├── etc/
│ └── asl-auth-host/
├── var/
│ ├── lib/
│ │ └── asl/
│ └── log/
└── usr/local/bin/
5. Boot Workflow
- Boot offline image.
- Run
init-asl-host.shto mount storage pools and apply config. - Initialize or open domain stores per config.
- Start the authority host service.
- Enforce witness authority (DAM) before general userspace services start.
6. Persistence Strategy
Writable storage MUST be mounted separately from the read-only system image. Examples:
- ZFS datasets mounted under
/var/lib/asl - External disk mounted at
/mntand bound to/var/lib/asl
7. Build Pipeline (Informative)
A typical pipeline:
- Create minimal root via debootstrap or equivalent.
- Merge overlay into ISO root.
- Optionally wrap build steps with
asl-captureto record build provenance. - Add bootloader config.
- Build ISO with
xorrisoor equivalent tool.
8. Versioning
Backward-incompatible image changes MUST bump the major version.