76b21c00eb
Deletes `ParamMode::Implicit`. `ParamMode` is now `{Own, Borrow}`:
every fn-type slot on every signature carries an explicit `own` or
`borrow`, no defaulted position survives anywhere (model 0008 §2,
spec 0062). The parser rejects a bare fn-type slot; `borrow-return`
and `borrow-over-value` reject at the signature; the corpus is
migrated to minimal-ownership modes (consumed ⇒ own, read-only-heap
⇒ borrow, value ⇒ trivial-own). The documented `Implicit`-ret-mode
leak is fixed: an owned heap return now drops exactly once (live=0,
acceptance criterion 5).
This was the easy half. Removing the default ACTIVATED a family of
drop paths that `Implicit` had silently skipped — the pre-cutover
language was leaking (and in places mis-dropping) here rather than
crashing, because an Implicit scrutinee turned the drop off. Making
the modes explicit (Own) turned those paths on and exposed two
latent-bug clusters, all fixed RED-first as part of this cutover:
Drop-soundness family (four legs):
A. lit-sub-pattern double-free — the desugar re-matched the same
owned scrutinee in the lit fall-through; fixed by grouping
consecutive same-ctor arms into one match (bind fields once),
in ailang-core desugar.
B. Cons-husk leak on non-tail arm bodies — the lit-sub-pattern
desugar rebound the owned scrutinee via `Let $mp = xs`, which
bumped consume_count and suppressed the existing fn-return
partial_drop. Fixed by not rebinding a bare-Var scrutinee
(one husk-freeing mechanism, not two).
C. polymorphic `drop_<T>` rc_dec'd monomorphised value fields —
the per-ADT drop fn was emitted once from the polymorphic
TypeDef, defaulting type-var fields to ptr and rc_dec'ing
inline Ints (segfault). Fixed with per-monomorph drop
functions (new ailang-codegen::dropmono): the drop set is
collected from the lowered MIR, value-type fields are skipped,
heap fields still freed once; monomorphic-concrete ADTs keep
their byte-identical un-suffixed drop symbol.
D. static Str literal passed to an `(own Str)` param — the
literal lowers to a header-less rodata constant; the callee's
now-active rc_dec read its length field as a refcount and
freed a static address (segfault). Fixed with the missing
fourth StrRep::Static→Heap promotion in lower_to_mir's App arm,
gated on Own mode (borrow args stay static, no regression).
over-strict-mode lint over-fired: it suggested `(borrow V)` for
value-typed params (which `borrow-over-value` rejects — own is the
only legal mode there) and fired on `(intrinsic)` bodies (whose
consumption the linearity walk cannot observe). Tightened to skip
both; contract 0008 updated to the narrowed firing scope.
Irreversible step — canonical-form hash reset (model 0008 §6,
acceptance criterion 6). Every signature now carries explicit modes,
so the hashable canonical JSON changed for every module. RATIFY:
the corpus-wide hash-pin reset (hash_pin, prelude_module_hash_pin,
mono_hash_stability, eq_ord_e2e, embed_export_hash_stable, the
ct4/iter*/loop_recur schema-extension pins) and the list ir_snapshot
golden were regenerated once, deliberately, as the intended one-time
consequence of removing the mode elision from the canonical form —
not a regression. Each regenerated hash verified deterministic across
two runs.
Also fixes a pre-existing latent failure surfaced by the verification
gate, unrelated to this cutover: the `every_contract_names_a_resolvable_
ratifying_test` resolver (design_index_pin) could not resolve the
" + " dual-link ratifying-test form (`uniqueness.rs + linearity.rs`)
that the #57 audit-close (dfdc65f) introduced — it shipped red on that
commit. Resolver taught the dual-link form, mirroring its sibling.
Verification: cargo test --workspace = 731 passed, 0 failed (twice,
stable); e2e 102 passed, no binary exits non-zero (corpus crash-free);
grep-clean for Implicit/fn_implicit/mode_eq across crates; every drop
fix confirmed via emitted IR + AILANG_RC_STATS balance on the head==K,
head!=K, and Nil paths. Three BLOCKEDs en route (the unsound first
husk-dec attempt, the over-strict derivation premise, the leg-B fix
direction) were each treated as a real design/spec gap and rediagnosed,
not patched over.
Supersedes #54 (return-position-only leak patch). Precondition #57
(linearity hardening) was already met. Spec docs/specs/0062, plan
docs/plans/0121.
closes #55
399 lines
16 KiB
Rust
399 lines
16 KiB
Rust
//! Structural pin for the design/ ledger. Sibling of
|
|
//! docs_honesty_pin.rs. Fails RED the instant the design/ split
|
|
//! re-conflates contract + rationale + narrative, an INDEX row
|
|
//! dangles, a contract loses its ratifying test, docs/DESIGN.md is
|
|
//! resurrected, or a design/ body cross-link fails to resolve into
|
|
//! the durable tier (clause-5; spec
|
|
//! docs/specs/0046-design-ledger-formal-links.md). Spec for
|
|
//! the split: docs/specs/0045-design-md-rolesplit.md.
|
|
|
|
use std::fs;
|
|
use std::path::PathBuf;
|
|
|
|
fn root() -> PathBuf {
|
|
PathBuf::from(concat!(env!("CARGO_MANIFEST_DIR"), "/../../"))
|
|
}
|
|
|
|
fn read(rel: &str) -> String {
|
|
fs::read_to_string(root().join(rel))
|
|
.unwrap_or_else(|e| panic!("read {rel}: {e}"))
|
|
}
|
|
|
|
fn norm(s: &str) -> String {
|
|
s.split_whitespace().collect::<Vec<_>>().join(" ")
|
|
}
|
|
|
|
/// Parse the two pipe-tables out of design/INDEX.md.
|
|
/// Returns (contracts, models) as rows of trimmed cells.
|
|
fn index_tables() -> (Vec<Vec<String>>, Vec<Vec<String>>) {
|
|
let idx = read("design/INDEX.md");
|
|
let mut contracts = Vec::new();
|
|
let mut models = Vec::new();
|
|
let mut section = "";
|
|
for line in idx.lines() {
|
|
let t = line.trim();
|
|
if t.starts_with("## Contracts") {
|
|
section = "c";
|
|
continue;
|
|
}
|
|
if t.starts_with("## Models") {
|
|
section = "m";
|
|
continue;
|
|
}
|
|
if !t.starts_with('|') {
|
|
continue;
|
|
}
|
|
let cells: Vec<String> = t
|
|
.trim_matches('|')
|
|
.split('|')
|
|
.map(|c| c.trim().to_string())
|
|
.collect();
|
|
// skip header + separator rows
|
|
if cells.iter().any(|c| c.starts_with("---")) {
|
|
continue;
|
|
}
|
|
if cells.first().map(|c| c.as_str()) == Some("id") {
|
|
continue;
|
|
}
|
|
match section {
|
|
"c" => contracts.push(cells),
|
|
"m" => models.push(cells),
|
|
_ => {}
|
|
}
|
|
}
|
|
(contracts, models)
|
|
}
|
|
|
|
/// A link cell may be a design/ path, a source path, a dual-link
|
|
/// "A + B", or carry a trailing "(in-source ...)" / "§..." note.
|
|
/// Resolve to the first concrete path token and check it exists.
|
|
fn link_target_exists(cell: &str) -> bool {
|
|
let first = cell.split(" + ").next().unwrap_or(cell).trim();
|
|
// strip a trailing parenthetical or §-note
|
|
let path = first
|
|
.split(" (")
|
|
.next()
|
|
.unwrap_or(first)
|
|
.split(" §")
|
|
.next()
|
|
.unwrap_or(first)
|
|
.trim()
|
|
.trim_end_matches("//!")
|
|
.trim();
|
|
!path.is_empty() && root().join(path).exists()
|
|
}
|
|
|
|
#[test]
|
|
fn design_md_is_gone() {
|
|
// clause 4 — clean-cut pin
|
|
assert!(
|
|
!root().join("docs/DESIGN.md").exists(),
|
|
"docs/DESIGN.md was resurrected; the split is clean-cut"
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn every_index_link_resolves() {
|
|
// clause 1
|
|
let (contracts, models) = index_tables();
|
|
assert!(contracts.len() >= 15, "expected >=15 contract rows, got {}", contracts.len());
|
|
assert!(models.len() >= 5, "expected >=5 model rows, got {}", models.len());
|
|
for row in contracts.iter().chain(models.iter()) {
|
|
let link = row.last().expect("row has a link cell");
|
|
assert!(
|
|
link_target_exists(link),
|
|
"INDEX link does not resolve: {:?} (row {:?})",
|
|
link,
|
|
row
|
|
);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn every_contract_names_a_resolvable_ratifying_test() {
|
|
// clause 2 — ratifying-test token resolves to a real file under
|
|
// crates/**/tests, crates/**/src (in-source #[cfg(test)] mod
|
|
// tests are first-class ratifiers — spec OQ1/OQ2), bench/, or
|
|
// any in-tree project-discipline document (e.g. CLAUDE.md).
|
|
let (contracts, _) = index_tables();
|
|
for row in &contracts {
|
|
// columns: id | consumer/lifetime | ratifying-test | link
|
|
let rt = &row[2];
|
|
// strip a trailing " (...)" note, then resolve every
|
|
// " + "-separated path segment. A dual ratifier such as
|
|
// "uniqueness.rs + linearity.rs (in-source mod tests)" names
|
|
// two real files — both must resolve, mirroring the
|
|
// dual-link handling in `link_target_exists` (clause-1).
|
|
// The second segment is a bare leafname relative to the
|
|
// first segment's directory.
|
|
let body = rt.split(" (").next().unwrap_or(rt).trim();
|
|
let segments: Vec<&str> = body.split(" + ").map(str::trim).collect();
|
|
let first = segments[0];
|
|
assert!(
|
|
root().join(first).exists(),
|
|
"ratifying-test does not resolve to a real file: {:?} (contract {:?})",
|
|
first,
|
|
row[0]
|
|
);
|
|
let base_dir = std::path::Path::new(first)
|
|
.parent()
|
|
.map(|p| p.to_path_buf())
|
|
.unwrap_or_default();
|
|
for seg in &segments[1..] {
|
|
// a later segment may be a full repo-relative path or a
|
|
// bare leafname rooted at the first segment's directory.
|
|
let resolved = if root().join(seg).exists() {
|
|
root().join(seg)
|
|
} else {
|
|
root().join(base_dir.join(seg))
|
|
};
|
|
assert!(
|
|
resolved.exists(),
|
|
"ratifying-test dual segment does not resolve to a real \
|
|
file: {:?} (contract {:?})",
|
|
seg,
|
|
row[0]
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn contracts_carry_no_decision_record_prose() {
|
|
// clause 3 — the conflation tripwire, widened (design-md-rolesplit.tidy,
|
|
// audit Resolution-4) to a FAITHFUL SUPERSET of
|
|
// bench/architect_sweeps.sh Sweep-1's history-anchor regex over the
|
|
// design/contracts/ scope, PLUS the audit-named decision-record
|
|
// phrases (the deliberate widening that closes the case-variance
|
|
// dodge the 6 literal markers left open).
|
|
//
|
|
// Invariant: clause-3 GREEN ⟹ Sweep-1 finds nothing in design/contracts/.
|
|
//
|
|
// Sweep-1 = 'Iter [0-9]+[a-z]?(\.[0-9]+)?|Family [0-9]+
|
|
// |^[^/]*2026-[0-9]{2}-[0-9]{2}|\*\*Status: |pre-[0-9]+[a-z]?
|
|
// |[0-9]+[a-z]? sketch|21\.g'
|
|
// Faithfulness, per Sweep-1 alternative:
|
|
// - Iter / Family / pre- / <n> sketch / 21.g / **Status:
|
|
// → sweep1_line_anchor() reproduces each verbatim,
|
|
// case-SENSITIVE (grep -E, no -i) — exactly Sweep-1 here,
|
|
// never narrower.
|
|
// - ^[^/]*2026-NN-NN → date_anchor() reproduces Sweep-1's
|
|
// ^[^/]* PATH-EXCLUSION (only the line prefix before the
|
|
// first '/' is scanned) and generalises 2026→20NN
|
|
// (⊇ Sweep-1, never narrower). A `docs/specs/2026-..`
|
|
// citation has '/' before the date ⇒ NOT flagged — faithful
|
|
// to Sweep-1, no over-fire on legit present-tense spec
|
|
// cross-refs (the iter-.1 plan defect this repairs).
|
|
// - PHRASES: literal decision-record idioms (case-insensitive) —
|
|
// the deliberate widening that closes the capital-variance
|
|
// dodge ("An earlier draft" vs "an earlier draft").
|
|
//
|
|
// A blanket case-insensitive iter/milestone detector was evaluated
|
|
// and REJECTED (audit Resolution-4 corrected): it conflates the
|
|
// memory-model rule-names "Iter A"/"Iter B", and ordinary words
|
|
// "pre-existing"/"pre-set"/"pre-tail-call", with
|
|
// provenance stamps — unworkable. faithful-Sweep-1 (the capital-I,
|
|
// digit-anchored form) already excludes those by construction and
|
|
// is confirmed ZERO across every contract file; lowercase
|
|
// `(iter <code>)` provenance is removed by the strip tasks, not by
|
|
// a fragile hard-gate regex. The load-bearing invariant
|
|
// (clause-3 GREEN ⟹ Sweep-1 clean in contracts/) holds with
|
|
// sweep1_line_anchor + date_anchor + PHRASES alone.
|
|
let dir = root().join("design/contracts");
|
|
|
|
const PHRASES: &[&str] = &[
|
|
"we rejected", "an earlier draft", "earlier draft committed",
|
|
"why not other", "was retired", "were retired", "rollback plan",
|
|
"previously all", "deliberately deferred", "new-baseline decision",
|
|
"amends the above", "out of scope per",
|
|
"the journal records when", "unchanged from the original draft",
|
|
];
|
|
|
|
// Sweep-1's non-date alternatives, hand-rolled verbatim, case-SENSITIVE
|
|
// (grep -E without -i), on the raw physical line.
|
|
fn sweep1_line_anchor(line: &str) -> Option<&'static str> {
|
|
let kw_digit = |kw: &str| -> bool {
|
|
let mut from = 0;
|
|
while let Some(i) = line[from..].find(kw) {
|
|
let p = from + i + kw.len();
|
|
if line[p..].chars().next().map_or(false, |c| c.is_ascii_digit()) {
|
|
return true;
|
|
}
|
|
from = p;
|
|
}
|
|
false
|
|
};
|
|
if kw_digit("Iter ") { return Some("Iter <n>"); }
|
|
if kw_digit("Family ") { return Some("Family <n>"); }
|
|
if kw_digit("pre-") { return Some("pre-<n>"); }
|
|
if line.contains("**Status: ") { return Some("**Status:"); }
|
|
if line.contains("21.g") { return Some("21.g"); }
|
|
if let Some(s) = line.find(" sketch") {
|
|
let pre = line[..s].as_bytes();
|
|
if pre.last().map_or(false, u8::is_ascii_alphanumeric)
|
|
&& pre.iter().rev()
|
|
.take_while(|c| c.is_ascii_alphanumeric())
|
|
.any(u8::is_ascii_digit)
|
|
{
|
|
return Some("<n> sketch");
|
|
}
|
|
}
|
|
None
|
|
}
|
|
|
|
// Sweep-1's `^[^/]*2026-NN-NN`, generalised to 20NN-NN-NN,
|
|
// PATH-EXCLUDED: scan only the line prefix BEFORE the first '/'.
|
|
fn date_anchor(line: &str) -> Option<String> {
|
|
let prefix = line.split('/').next().unwrap_or(line).as_bytes();
|
|
for w in prefix.windows(10) {
|
|
if w[0] == b'2' && w[1] == b'0'
|
|
&& w[2].is_ascii_digit() && w[3].is_ascii_digit()
|
|
&& w[4] == b'-' && w[5].is_ascii_digit() && w[6].is_ascii_digit()
|
|
&& w[7] == b'-' && w[8].is_ascii_digit() && w[9].is_ascii_digit()
|
|
{
|
|
return Some(String::from_utf8_lossy(w).into_owned());
|
|
}
|
|
}
|
|
None
|
|
}
|
|
|
|
for entry in fs::read_dir(&dir).expect("design/contracts/ exists") {
|
|
let p = entry.unwrap().path();
|
|
if p.extension().and_then(|e| e.to_str()) != Some("md") {
|
|
continue;
|
|
}
|
|
let raw = fs::read_to_string(&p).unwrap();
|
|
let fname = p.file_name().unwrap().to_string_lossy().into_owned();
|
|
let low = norm(&raw).to_lowercase();
|
|
for ph in PHRASES {
|
|
assert!(
|
|
!low.contains(ph),
|
|
"clause-3: history phrase {ph:?} in contract {fname:?}"
|
|
);
|
|
}
|
|
for line in raw.lines() {
|
|
if let Some(a) = sweep1_line_anchor(line) {
|
|
panic!("clause-3: Sweep-1 anchor {a:?} in contract {fname:?}: {line:?}");
|
|
}
|
|
if let Some(d) = date_anchor(line) {
|
|
panic!("clause-3: history date {d:?} in contract {fname:?}: {line:?}");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
#[test]
|
|
fn design_body_links_are_durable_and_resolve() {
|
|
// clause 5 — every inline Markdown link in design/ body prose
|
|
// (contracts/ + models/, NOT INDEX.md — the spine is the
|
|
// structured registry tier resolved by clause-1, commitment 4)
|
|
// resolves, relative to its CONTAINING file, to an existing
|
|
// file under design/ or source (crates/** | runtime/**); never
|
|
// under docs/; never an in-file #anchor. Fenced code blocks are
|
|
// not scanned (a `](` inside ``` is literal text, not a link).
|
|
// Composes with clause-3: a surviving cross-reference is a
|
|
// resolving durable file-link or it is clause-3-forbidden
|
|
// decision-record prose.
|
|
|
|
// Fenced code (``` … ``` / ~~~ … ~~~) is literal text, not
|
|
// Markdown — a `](` inside a fence is NOT a navigable link on
|
|
// any renderer. Strip fenced regions before scanning (gate
|
|
// correctness: prevents false extraction of code-example byte
|
|
// sequences and of non-rendering in-fence links).
|
|
fn strip_fences(md: &str) -> String {
|
|
let mut out = String::new();
|
|
let mut in_fence = false;
|
|
for line in md.lines() {
|
|
let t = line.trim_start();
|
|
if t.starts_with("```") || t.starts_with("~~~") {
|
|
in_fence = !in_fence;
|
|
continue; // drop the fence marker line itself
|
|
}
|
|
if !in_fence {
|
|
out.push_str(line);
|
|
out.push('\n');
|
|
}
|
|
}
|
|
out
|
|
}
|
|
|
|
// link target := first capture of \]\(([^)]+)\)
|
|
fn targets(md: &str) -> Vec<String> {
|
|
let mut out = Vec::new();
|
|
let b = md.as_bytes();
|
|
let mut i = 0;
|
|
while i + 1 < b.len() {
|
|
if b[i] == b']' && b[i + 1] == b'(' {
|
|
if let Some(end) = md[i + 2..].find(')') {
|
|
out.push(md[i + 2..i + 2 + end].trim().to_string());
|
|
}
|
|
}
|
|
i += 1;
|
|
}
|
|
out
|
|
}
|
|
|
|
fn is_durable(repo_rel: &str) -> bool {
|
|
repo_rel.starts_with("design/")
|
|
|| repo_rel.starts_with("crates/")
|
|
|| repo_rel.starts_with("runtime/")
|
|
}
|
|
|
|
// RED-first synthetic vectors (proves the gate bites before it
|
|
// is pointed at the live tree).
|
|
{
|
|
let t = targets("see [x](../docs/specs/foo.md) and [y](#sec) and [z](./gone.md)");
|
|
assert_eq!(t, vec!["../docs/specs/foo.md", "#sec", "./gone.md"]);
|
|
assert!(!is_durable("docs/specs/foo.md")); // durable-tier reject
|
|
assert!("#sec".starts_with('#')); // in-file anchor reject
|
|
// fenced code is not a link surface (gate correctness)
|
|
assert!(targets(&strip_fences("```\nsee [E](e.md)\n```\n")).is_empty());
|
|
assert_eq!(targets(&strip_fences("[k](k.md)\n```\n[n](n.md)\n```")), vec!["k.md"]);
|
|
}
|
|
|
|
let bases = ["design/contracts", "design/models"];
|
|
for base in bases {
|
|
let dir = root().join(base);
|
|
for entry in fs::read_dir(&dir).expect("design/ subdir exists") {
|
|
let p = entry.unwrap().path();
|
|
if p.extension().and_then(|e| e.to_str()) != Some("md") {
|
|
continue;
|
|
}
|
|
let raw = fs::read_to_string(&p).unwrap();
|
|
let fname = format!("{base}/{}", p.file_name().unwrap().to_string_lossy());
|
|
for tgt in targets(&strip_fences(&raw)) {
|
|
if tgt.starts_with("http://")
|
|
|| tgt.starts_with("https://")
|
|
|| tgt.starts_with("mailto:")
|
|
{
|
|
continue;
|
|
}
|
|
let file_part = tgt.split('#').next().unwrap_or(&tgt);
|
|
assert!(
|
|
!file_part.is_empty(),
|
|
"clause-5: in-file #anchor link {tgt:?} in {fname:?} — \
|
|
commitment 1 forbids fragments; split the file"
|
|
);
|
|
let resolved = p.parent().unwrap().join(file_part);
|
|
let canon = resolved
|
|
.canonicalize()
|
|
.unwrap_or_else(|e| panic!(
|
|
"clause-5: link {tgt:?} in {fname:?} does not resolve: {e}"
|
|
));
|
|
let repo_rel = canon
|
|
.strip_prefix(root().canonicalize().unwrap())
|
|
.unwrap_or(&canon)
|
|
.to_string_lossy()
|
|
.replace('\\', "/");
|
|
assert!(
|
|
is_durable(&repo_rel),
|
|
"clause-5: link {tgt:?} in {fname:?} targets the \
|
|
non-durable tier ({repo_rel:?}); commitment 2 \
|
|
permits design/ + crates/ + runtime/ only"
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|