S193 · SOURCE-BOUND GATE EVIDENCE
G8l: scheduler-owner → production scheduler mutation boundary
Operations --test hedefi → test hedefiyle aynı adlı uygulama/model modülü → kaynak kesiti Bu sayfa yalnız S193 kapısına aittir; komşu kapıların kaynakları bu kabulün içine katılmaz.
S193Focused kod testiOperations id exactsource SHA exacttest target exact
operation: g8l-s193-scheduler-owner-scheduler-mutation-partial
uygulama/model · focused test · Operations · 3 exact excerpt
sequence-bound=true · implementation-bound=false
01 · Testin bağlı olduğu uygulama/model kodu
Kapının yürüttüğü gerçek kaynak
tam Rust öğesiL10–L149
kernel/src/g8l_target_dispatch_scheduler_owner_scheduler_mutation.rs::G8lSchedulerOwnerSchedulerMutationError
use crate::g8l_target_dispatch_scheduler_owner_mutation_callsite::{
G8lSchedulerOwnerMutationCallsite, G8lSchedulerOwnerMutationCallsiteError,
};
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum G8lSchedulerOwnerSchedulerMutationError {
Callsite(G8lSchedulerOwnerMutationCallsiteError),
InvalidCallerCpu,
RuntimePhaseMismatch,
RuntimeInputMismatch,
}
impl From<G8lSchedulerOwnerMutationCallsiteError> for G8lSchedulerOwnerSchedulerMutationError {
fn from(error: G8lSchedulerOwnerMutationCallsiteError) -> Self {
Self::Callsite(error)
}
}
/// Non-Copy source-model proof that the S192 callsite reached the future
/// production scheduler mutation boundary on CPU1.
#[derive(Debug, PartialEq, Eq)]
pub struct G8lSchedulerOwnerSchedulerMutationBoundary {
runtime_instance_id: u64,
task_id: u64,
caller_cpu: usize,
owner_cpu: usize,
owner_epoch: u64,
exact_s192_callsite_consumed: bool,
}
impl G8lSchedulerOwnerSchedulerMutationBoundary {
/// Consume the exact S192 mutation callsite by value.
pub fn from_mutation_callsite(
runtime: &G8lRuntimeAuthority,
authority: &G8lSchedulerOwnerAuthority,
callsite: G8lSchedulerOwnerMutationCallsite,
caller_cpu: usize,
) -> Result<Self, G8lSchedulerOwnerSchedulerMutationError> {
if caller_cpu != CPU1 {
return Err(G8lSchedulerOwnerSchedulerMutationError::InvalidCallerCpu);
}
callsite.revalidate(authority, runtime)?;
if runtime.phase() != RuntimePhase::Running1 {
return Err(G8lSchedulerOwnerSchedulerMutationError::RuntimePhaseMismatch);
}
if runtime.migration_input().owner_cpu != CPU1
|| runtime.migration_input().task_id != callsite.task_id()
|| callsite.caller_cpu() != CPU1
|| callsite.owner_cpu() != CPU1
|| callsite.owner_epoch() != authority.epoch()
{
return Err(G8lSchedulerOwnerSchedulerMutationError::RuntimeInputMismatch);
}
Ok(Self {
runtime_instance_id: callsite.runtime_instance_id(),
task_id: callsite.task_id(),
caller_cpu,
owner_cpu: callsite.owner_cpu(),
owner_epoch: callsite.owner_epoch(),
exact_s192_callsite_consumed: true,
})
}
pub fn revalidate(
&self,
authority: &G8lSchedulerOwnerAuthority,
runtime: &G8lRuntimeAuthority,
) -> Result<(), G8lSchedulerOwnerSchedulerMutationError> {
if self.caller_cpu != CPU1
|| self.owner_cpu != CPU1
|| self.owner_epoch == 0
|| self.task_id != authority.task_id()
|| authority.owner_cpu() != CPU1
|| authority.epoch() != self.owner_epoch
|| runtime.instance_id() != self.runtime_instance_id
|| runtime.phase() != RuntimePhase::Running1
|| runtime.migration_input().owner_cpu != CPU1
|| runtime.migration_input().task_id != self.task_id
{
return Err(G8lSchedulerOwnerSchedulerMutationError::RuntimeInputMismatch);
}
Ok(())
}
pub const fn runtime_instance_id(&self) -> u64 {
self.runtime_instance_id
}
pub const fn task_id(&self) -> u64 {
self.task_id
}
pub const fn caller_cpu(&self) -> usize {
self.caller_cpu
}
pub const fn owner_cpu(&self) -> usize {
self.owner_cpu
}
pub const fn owner_epoch(&self) -> u64 {
self.owner_epoch
}
pub const fn exact_s192_callsite_consumed(&self) -> bool {
self.exact_s192_callsite_consumed
}
pub const fn production_constructor_wired(&self) -> bool {
true
}
pub const fn production_constructor_invoked(&self) -> bool {
false
}
pub const fn production_scheduler_mutation_boundary_published(&self) -> bool {
true
}
pub const fn production_scheduler_mutated(&self) -> bool {
false
}
pub const fn global_scheduler_exclusion_proven(&self) -> bool {
false
}
pub const fn gic_delivery_wired(&self) -> bool {
false
}
pub const fn hardware_execution_proven(&self) -> bool {
false
}
pub const fn global_source_linearity_proven(&self) -> bool {
false
}
}snippet sha256: 00fc9f8dc150…file sha256: 325326b2d8ee…
02 · Doğrulayan test kodu
Operations komutuna bağlı focused test
tam Rust öğesiL93–L109
simulation/tests/g8l_target_dispatch_scheduler_owner_scheduler_mutation.rs::publishes_exact_s192_callsite_as_cpu1_scheduler_mutation_boundary
#[test]
fn publishes_exact_s192_callsite_as_cpu1_scheduler_mutation_boundary() {
let (runtime, authority, callsite) = mutation_callsite();
let boundary = G8lSchedulerOwnerSchedulerMutationBoundary::from_mutation_callsite(
&runtime, &authority, callsite, CPU1,
)
.unwrap();
assert_eq!(boundary.runtime_instance_id(), runtime.instance_id());
assert_eq!(boundary.task_id(), TASK);
assert_eq!(boundary.caller_cpu(), CPU1);
assert_eq!(boundary.owner_cpu(), CPU1);
assert_eq!(boundary.owner_epoch(), OWNER_EPOCH + 1);
assert!(boundary.exact_s192_callsite_consumed());
boundary.revalidate(&authority, &runtime).unwrap();
}snippet sha256: afee187206d4…file sha256: cca684c595e9…
03 · Kapı kimlik kaydı
Operations sıra, kimlik ve başlık bağı
tam Operations kaydıL22046–L22097
website/src/lib/operations.ts::g8l-s193-scheduler-owner-scheduler-mutation-partial
{
id: "g8l-s193-scheduler-owner-scheduler-mutation-partial",
date: "2026-08-24",
sequence: 193,
status: "passed",
umbrella_status: "partial",
title: "G8l: scheduler-owner → production scheduler mutation boundary",
summary:
"S193, non-Copy S192 scheduler-owner mutation-callsite'ını by-value tüketen 10/10 allocation-free production-scheduler mutation boundary'sini kapattı. Aynı canlı Running1 runtime, task, CPU1 owner ve epoch 23→24 yeniden doğrulanıp source-model mutation boundary yayınlandı; production scheduler özellikle çalıştırılmadı ve değiştirilmedi. Foreign authority/runtime ile CPU0 caller fail-closed kaldı.",
evidence: [
"g8l_target_dispatch_scheduler_owner_scheduler_mutation: 10/10 PASS; exact S192 mutation-callsite by-value consumption, Running1/CPU1 owner revalidation and closed production claims.",
"Odaklı test iki bağımsız koşuda 10/10 PASS ve byte-eşit kaldı: 125 B / SHA-256 7742173cc9d98f4cbe90debabdf83ee6b5d3e9e965e25428a46d090582275222.",
"S155–S193 birleşik matris iki bağımsız koşuda 39 grup / 344/344 PASS ve 4777 B / SHA-256 1badf0fbfc7664d6ba5fae99bf7b8d3cd47317a39ce65efa2346d947864879cb verdi.",
"RPi5 AArch64 source compile PASS: 471 warning envanterlendi, hata yok; 208332 B log / SHA-256 7a2dff50a93e212f852d9aa1ad98e0609dcd8abe4f9c52ceb6760e5a1328b3b5. Zero-warning iddiası yoktur.",
"Scheduler mutation boundary yalnız source-model typed handoff'tur; production task::scheduler::SCHEDULER mutation/global exclusion, GIC/SGI, CPU1 ERET assembly ve hardware authority iddiası üretmez.",
"Kalıcı kapsam: `docs/M8.1-RPi5-G8l-S193-Scheduler-Owner-Scheduler-Mutation-Boundary-Proof.md`.",
"S193 fiziksel/device operasyonu yapmadı: physical/device operations=0 ve RUNBOOK_EXECUTED_IN_S193=NO.",
"Web yayın doğrulaması: 286/286 test, lint ve TypeScript PASS; 23/23 statik rota ve 191 dosya üretildi.",
"Production deployment: https://4d6ee5f2.aselsan-microkernel.pages.dev · full id 4d6ee5f2-103c-45e7-8789-0a473a6f7ae6.",
"Custom domain byte-exact: /operations/ 6254347 B SHA-256 2cb822ef45426fcb9a1ee5ea01254bbc978b7fa3de33795d5f3e17e01dd978ff; /timeline/ 911784 B SHA-256 8acc5df9e5823c3e22fc31942b4434a19dd3e16bbdc15d55bd80144ce6919f30; /yol-haritasi/ 911532 B SHA-256 fda230d762db5d1f2f06128342d22ca6dd3df657fc48fc3a54a1b8dd93c71b2c.",
"Canlı marker: S193_10_OF_10_G8L_SCHEDULER_OWNER_SCHEDULER_MUTATION_BOUNDARY_SOURCE_EXACT_S192_SCHEDULER_OWNER_MUTATION_CALLSITE_CONSUMED_BY_VALUE_NONCOPY_LIVE_RUNNING1_CPU1_OWNER_TASK_EPOCH23_TO24_REVALIDATED_PRODUCTION_SCHEDULER_MUTATION_BOUNDARY_PUBLISHED_WRONG_CALLER_FOREIGN_AUTHORITY_FOREIGN_RUNTIME_FAIL_CLOSED_PRODUCTION_CONSTRUCTOR_WIRED_NOT_INVOKED_PRODUCTION_SCHEDULER_MUTATION_GLOBAL_EXCLUSION_GIC_HARDWARE_GLOBAL_SOURCE_LINEARITY_QEMU_PHYSICAL_CPU2_CPU3_HOTPLUG_SOAK_GENERIC_SMP_OPEN_FULL_PHYSICAL_RUNBOOK_VISIBLE_S353_TO_S403_S378_NO_RUNBOOK_EXECUTED_IN_S193_VERIFIED; immutable pages.dev direct fetch from current host timed out after 10 seconds.",
"Görünür fiziksel sıra: Gücü kapat → SD kartı Pi'den çıkar → SD kartı Mac'e tak → Yetkili write/verify/read-back işlemini tamamla → SD kartı Mac'ten güvenli çıkar → SD kartı güçsüz Pi'ye tak → UART capture pre-arm ve exact identity kapısını doğrula → Güç ver. Bu sıra yalnız tarihsel S124'te tamamlandı.",
],
commands: [
"cargo test --quiet --test g8l_target_dispatch_scheduler_owner_scheduler_mutation -- --test-threads=1",
"cargo check --quiet --manifest-path kernel/Cargo.toml --target aarch64-unknown-none --no-default-features --features board-rpi5",
"npm run deploy",
],
terminalSessions: [
{
id: "s193-g8l-scheduler-owner-scheduler-mutation",
title: "G8l S193 scheduler-owner scheduler mutation boundary",
commandLines: [
"cargo test --quiet --test g8l_target_dispatch_scheduler_owner_scheduler_mutation -- --test-threads=1",
],
outputLines: [
"running 10 tests",
"test result: ok; 10 passed; 0 failed",
"S192 mutation callsite consumed by value; scheduler mutation boundary published",
"production scheduler mutation/global exclusion/GIC/hardware: not invoked / not claimed",
],
exitCode: 0,
outputMode: "selected",
},
],
terminalSessionsNote:
"Terminal özeti dar S193 source sınırını gösterir; QEMU veya fiziksel cihaz çalıştırması değildir.",
limitations: [
"S193 dar typed scheduler-mutation boundary source-model kabulü PASS'tir; gerçek production scheduler mutation, global lock, GIC/hardware runtime ve fiziksel çalışma açık kalır.",
"S193 fiziksel/device operasyonu yapmadı; RUNBOOK_EXECUTED_IN_S193=NO.",
],
},snippet sha256: 3ce01d7dfd21…file sha256: 9726dbf00f84…
Focused test komutu
cargo test --quiet --test g8l_target_dispatch_scheduler_owner_scheduler_mutation -- --test-threads=1proof: docs/M8.1-RPi5-G8l-S193-Scheduler-Owner-Scheduler-Mutation-Boundary-Proof.md
Registry schema v5 · generator
website/scripts/generate-code-gates.mjs · Tam SHA-256: 91d38c7b6222f0b4c117be786454853543da55a160e543d9b951057cc20dcc06