feat: add isolated Linux shadow backend

This commit is contained in:
冰朔 2026-08-15 17:34:30 +08:00
commit f5217fef0f
6 changed files with 283 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{
"schema": "guanghu.os-control-architecture/v1",
"record_id": "HLP-GUANGHU-OS-CONTROL-001",
"version": "2026-08-15.1",
"version": "2026-08-15.2",
"state": "CURRENT_CANONICAL",
"final_topology": "GUANGHU_MASTER_WITH_ON_DEMAND_LINUX_SUBCONTROL_AND_RESCUE",
"control_ownership": {
@ -46,7 +46,9 @@
"typed_policy_authorization_and_rollback_binding": 100,
"target_readback_and_mandatory_reclaim_state_machine": 100,
"declared_supervisor_core_line_and_function_coverage": 100,
"docker_shadow_backend_source_and_isolation_contract": 100,
"real_isolated_linux_backend": 0,
"jd_shadow_backend_physical_cycle": 0,
"independent_guanghu_first_boot_supervisor": 0,
"jd_physical_deployment": 0
},

View file

@ -32,11 +32,13 @@ test("current JD state stays transitional and cannot impersonate final master co
});
test("source lifecycle progress does not impersonate backend, boot, or JD deployment", () => {
assert.equal(contract.version, "2026-08-15.1");
assert.equal(contract.version, "2026-08-15.2");
assert.equal(contract.implementation.guanghu_supervisor_lifecycle_contract_source, 100);
assert.equal(contract.implementation.target_readback_and_mandatory_reclaim_state_machine, 100);
assert.equal(contract.implementation.declared_supervisor_core_line_and_function_coverage, 100);
assert.equal(contract.implementation.docker_shadow_backend_source_and_isolation_contract, 100);
assert.equal(contract.implementation.real_isolated_linux_backend, 0);
assert.equal(contract.implementation.jd_shadow_backend_physical_cycle, 0);
assert.equal(contract.implementation.independent_guanghu_first_boot_supervisor, 0);
assert.equal(contract.implementation.jd_physical_deployment, 0);
});