/* * zuse_genesis_marker.h -- on-disk record format for the system-resident * "a root Zuse identity already exists" marker (FABRIC-3.md §F.21), * stored in devblock_from_top=0 of the top-of-device system-metadata * fence (block_subsystem.h's blk_meta_zone_read()/write(), same location * zuse_cert_devblock_t used to occupy). * * Supersedes zuse_cert_devblock_t (zuse_cert_devblock.h, kept in the repo * as historical record, no longer written): that type stored Zuse's own * *seed* system-resident. Under the thumbdrive-resident Zuse design * (§F.20/§F.21), the seed lives only on Zuse's own minted thumbdrive -- * this record deliberately holds only her *public* key, enough to (a) * know genesis has already happened, so a second blank thumbdrive * attached on some later boot never mints a second competing root, and * (b) recognize which attached identity is genuinely hers. Losing this * fence record is not a security problem (it's not a secret); losing the * thumbdrive itself is what actually loses the identity. */ #ifndef STARKERNEL_ZUSE_GENESIS_MARKER_H #define STARKERNEL_ZUSE_GENESIS_MARKER_H #include #define ZUSE_GENESIS_MARKER_MAGIC \ ((uint32_t)'Z' | ((uint32_t)'G' << 8) | ((uint32_t)'E' << 16) | ((uint32_t)'N' << 24)) #define ZUSE_GENESIS_MARKER_VERSION 1u typedef struct { uint32_t magic; /* ZUSE_GENESIS_MARKER_MAGIC; anything else means * "genesis has not happened yet" (blank/foreign * bytes), not a format-corruption error. */ uint32_t version; /* ZUSE_GENESIS_MARKER_VERSION */ uint8_t zuse_pubkey[32]; /* Ed25519 public key of the root Zuse * identity minted at genesis. No seed here -- * that lives only on Zuse's own thumbdrive. */ uint64_t crc; /* CRC-64/ISO (block_subsystem.h's compute_crc64()) * over every byte of this struct up to (not * including) this field. */ uint8_t _pad[4096 - (4 + 4 + 32 + 8)]; } zuse_genesis_marker_t; _Static_assert(sizeof(zuse_genesis_marker_t) == 4096, "zuse_genesis_marker_t must be exactly one 4 KiB devblock"); #endif /* STARKERNEL_ZUSE_GENESIS_MARKER_H */