Skip to main content

candor_classify/
gate.rs

1//! ⟨0.24⟩ THE GATE — SPEC §6.2 matching over an ALREADY-ACCUMULATED signature, and the ONLY copy of
2//! that matching in the stable toolchain.
3//!
4//! **THE SEAM.** [`GateInput`] is the boundary between *what produced the signature* and *what §6.2
5//! does with it*. Every field is already accumulated: this module runs no fixpoint, opens no file and
6//! consults no scan state, so the same matching code serves both routes in —
7//!
8//!   - `candor-scan … --policy <f>` builds a `GateInput` from the classifier's transitive accumulators
9//!     (`crate::gate::policy_violations`, which is now a thin wrapper);
10//!   - `candor-query gate --report <loc> --policy <f>` (SPEC §3.1 ⟨0.24⟩) builds one from a WRITTEN
11//!     report and nothing else.
12//!
13//! That split is the whole point of §3.1 ⟨0.24⟩: until it existed the gate was reachable only THROUGH
14//! the classifier, so a defect in the gate and a defect in the classifier were indistinguishable from
15//! any test that could be written. Do NOT re-implement the matching on the report side — the §6.2
16//! clause that mandates the verb was written about exactly that mistake.
17
18use crate::policy::{literal_allowed, reason_class_matches, scope_matches, ParsedPolicy, PolicyRule};
19use candor_report::GateViolation;
20use std::collections::{BTreeSet, HashMap};
21
22/// ⟨0.20⟩ The `Net` destination classes an fn reaches (transitive) — the SINGLE derivation shared by the
23/// report's `netClass` field (candor-scan's writer) and the gate: an exact host-literal match
24/// ([`crate::net_dest_class`]) for the visible hosts, plus the fail-closed `unknown-host` when the Net
25/// surface is masked (`incomplete` has Net) OR carries no visible host (a runtime endpoint). Call only
26/// for an fn known to have Net; returns sorted.
27///
28/// It lives beside the gate rather than in the scanner because the report field and the gate filter MUST
29/// be the same set: `gate --report` reads `netClass` off the wire and the scan derives it here, and the
30/// §3.1 ⟨0.24⟩ byte-equivalence obligation is exactly the claim that those two agree.
31pub fn net_classes_of<E: AsRef<str> + Ord>(
32    q: &str,
33    hostsacc: &HashMap<String, BTreeSet<String>>,
34    incompleteacc: &HashMap<String, BTreeSet<E>>,
35    partners: &BTreeSet<String>,
36) -> Vec<String> {
37    let mut classes: BTreeSet<String> = hostsacc
38        .get(q)
39        .into_iter()
40        .flatten()
41        .map(|h| crate::net_dest_class(h, partners).to_string())
42        .collect();
43    let masked = incompleteacc.get(q).is_some_and(|s| s.iter().any(|e| e.as_ref() == "Net"));
44    let no_hosts = hostsacc.get(q).map(|s| s.is_empty()).unwrap_or(true);
45    if masked || no_hosts {
46        classes.insert("unknown-host".to_string());
47    }
48    classes.into_iter().collect()
49}
50
51/// ⟨0.24⟩ THE GATE'S INPUT — one signature per function, every field already TRANSITIVE.
52///
53/// `E` is the effect-name representation: `&'static str` on the scan route (the classifier's interned
54/// vocabulary) and `String` on the report route (the wire's names, taken VERBATIM — a report naming an
55/// effect this build's vocabulary does not list must still trip a `pure` rule, so the names are never
56/// filtered through a known-effect allowlist on the way in).
57pub struct GateInput<'a, E: AsRef<str> + Ord> {
58    /// Every function the gate ranges over, in the caller's order.
59    pub all: &'a [String],
60    /// Per fn, the TRANSITIVE effect set — the model's `S`, with candor's `Unknown` marker carried as a
61    /// member (this engine's encoding of `D ≠ ∅`).
62    pub inferred: &'a HashMap<String, BTreeSet<E>>,
63    /// The call graph AS-EFF-009 walks.
64    pub calls: &'a HashMap<String, BTreeSet<String>>,
65    /// Per fn, the TRANSITIVE literal surface AS-EFF-008 certifies against.
66    pub hosts: &'a HashMap<String, BTreeSet<String>>,
67    pub cmds: &'a HashMap<String, BTreeSet<String>>,
68    pub paths: &'a HashMap<String, BTreeSet<String>>,
69    pub tables: &'a HashMap<String, BTreeSet<String>>,
70    /// Per fn, the effects whose literal surface is structurally INCOMPLETE — the AS-EFF-008 fail-closed
71    /// marker, without which a benign visible literal masks an invisible forbidden endpoint.
72    pub surface_incomplete: &'a HashMap<String, BTreeSet<E>>,
73    /// Per fn, the TRANSITIVE reason-class tokens — the model's `D` (§6.2 ⟨0.19⟩). The Unknown EFFECT
74    /// propagates along the call graph, so its REASON must too: else `deny E Unknown[reflect]` at a
75    /// caller inheriting Unknown from a reflect-caused callee sees no class and does NOT fire.
76    pub reason_classes: &'a HashMap<String, BTreeSet<String>>,
77    /// Per `Net`-bearing fn, its ⟨0.20⟩ destination classes, ALREADY derived — by [`net_classes_of`] on
78    /// the scan route, read verbatim from the report's `netClass` on the report route. Absent ⇒ empty.
79    pub net_classes: &'a HashMap<String, Vec<String>>,
80}
81
82/// ⟨0.24⟩ ONE `(rule, function)` THE GATE COULD NOT EVALUATE — SPEC §3.1: *"a rule FIRES on a function
83/// only where the match is evidenced by that function's own entry, and is WITHHELD exactly where it is
84/// not. Withholding is per `(rule, function)`, never whole-policy."*
85///
86/// A withheld pair is NOT a tolerated one. Tolerating means the evidence was read and did not match;
87/// withholding means there was no evidence to read, and the two must not arrive at a consumer wearing the
88/// same face. The caller decides the disposition — a violation elsewhere dominates (exit 1, disclose), a
89/// sole withholding is a refusal (exit 2) — but it can only do that if the fact reaches it, which is why
90/// this rides out of [`gate`] beside the violations instead of being logged here.
91#[derive(Debug, Clone, PartialEq, Eq)]
92pub struct Withheld {
93    /// The rule's source line, verbatim (`PolicyRule::raw`).
94    pub rule: String,
95    /// The function the rule could not be evaluated ON. The same rule may fire on another.
96    pub func: String,
97    /// Which narrowing filter had nothing to read — `"Unknown"` or `"Net"`.
98    pub filter: &'static str,
99}
100
101/// ⟨0.24⟩ What [`gate`] returns: the violations it is SURE of, and the `(rule, function)` pairs it
102/// WITHHELD. Both halves travel, because the verdict is both (SPEC §3.1).
103#[derive(Debug, Default)]
104pub struct GateOutcome {
105    /// Sorted by (rule, detail).
106    pub violations: Vec<GateViolation>,
107    /// Sorted by (rule, func). Empty on every policy whose filters the signature can answer.
108    pub withheld: Vec<Withheld>,
109    /// ⟨0.27⟩ SPEC §4 — the RAW TEXT of every rule whose SCOPE bound no function, sorted. A rule that
110    /// bound nothing was evaluated and matched nothing, so it cannot have caught anything; scoring it as
111    /// satisfied makes a one-character typo in a layer name a permanently green gate. This is a
112    /// DISCLOSURE beside the verdict, never a new verdict: the caller prints it and MUST NOT let it
113    /// change the exit code (a zero-match rule is legitimate when one policy is shared across repos).
114    pub zero_match: Vec<String>,
115}
116
117/// ⟨0.24⟩ What one §6.2 `deny`/`pure` rule DOES to one function's signature — see [`rule_hits`].
118pub struct RuleHits<'a> {
119    /// The effects this rule CHARGES on this function, after both narrowing filters. Empty ⇒ the rule
120    /// does not fire here, which is what the disclosure calls PASSING.
121    pub hits: Vec<&'a str>,
122    /// The filters — `"Unknown"` / `"Net"` — that had no evidence to read, in that order. The hit was
123    /// dropped from `hits` AND the fact rides out, because dropping it silently is the mirror defect.
124    pub withheld: Vec<&'static str>,
125}
126
127/// ⟨0.24⟩ WHAT ONE §6.2 `deny`/`pure` RULE DOES TO ONE FUNCTION'S SIGNATURE — the firing decision,
128/// extracted so it has exactly one implementation.
129///
130/// **WHY IT IS A FUNCTION NOW.** It was inline in [`gate`], and the provable-purity disclosure
131/// ([`crate::policy::unverified_hole_rule`]) carried its own second copy that asked a coarser question:
132/// "does the rule NAME an effect this function has?", computed from `r.effects` alone. That copy could
133/// not see a narrowing filter, so it disagreed with the gate on exactly the rules the ⟨0.24⟩ rung added
134/// — and the disagreement ran the LOSING way. A hole is a function that PASSES its rule while `Unknown`,
135/// so a rule the gate TOLERATES (`deny Unknown[reflect]` over an `indirect` hole) was read by the
136/// disclosure as a violation-that-isn't and dropped from the output: `unverified` printed **"every
137/// function in a pure/deny layer is PROVABLY clean ✓"** over a function the gate had just declined to
138/// clear. MEASURED 2026-07-28 on a one-function crate; reachable with NO alias in play, one layer below
139/// the alias-widening defect `ea0df4f` closed.
140///
141/// The caller does the SCOPE test and owns the disposition of `withheld`; this answers only "given that
142/// this rule governs this function, what does it charge, and what could it not evaluate?".
143///
144/// `reason_classes` is the ACCUMULATED (post-fixpoint) class set — `None`/empty means the signature
145/// carries none, which is NOT determinable and is withheld, never floored. `net_classes` is the fn's
146/// ⟨0.20⟩ destination classes, likewise already derived.
147pub fn rule_hits<'a>(
148    r: &PolicyRule,
149    effects: &[&'a str],
150    reason_classes: Option<&BTreeSet<String>>,
151    net_classes: &[String],
152) -> RuleHits<'a> {
153    let mut withheld: Vec<&'static str> = Vec::new();
154    let mut hits: Vec<&str> = if r.effects.is_empty() {
155        // `pure` — every EFFECT, but NOT `Unknown`: the §4 trust marker is not an effect
156        // (AS-EFF-003's concern; `deny Unknown <scope>` is the explicit knob). The reference
157        // engine and the deep backend exclude it identically — this engine wrongly counted an
158        // Unknown-only fn as a `pure` violation until 2026-07-09 (a cross-engine verdict split
159        // on the same policy file).
160        effects.iter().copied().filter(|e| *e != "Unknown").collect()
161    } else {
162        effects.iter().copied().filter(|e| r.effects.contains(e)).collect()
163    };
164    // Reason-scoped Unknown: a `deny E Unknown[classes]` (non-empty filter) keeps its Unknown hit
165    // ONLY for a fn whose TRANSITIVE reason classes include one of those classes; else tolerate it
166    // (wrong reason-class). Concrete effects in `hits` are untouched — only Unknown is scoped.
167    if hits.contains(&"Unknown") && !r.unknown_classes.is_empty() {
168        let want: BTreeSet<&str> = r.unknown_classes.iter().map(|c| c.token()).collect();
169        // An Unknown with NO recorded reason is `unresolved` (conservative — stays in
170        // `[*]`/`[unresolved]`). THIS IS A NET, NOT A ROUTE. It is per FUNCTION and keys on the
171        // ABSENCE of a class set, so any other reason on the same function hides whatever it was
172        // covering — which is how a reasonless chained-dep `Unknown` went ungated on every consumer
173        // that also had a reason of its own. That case now CONTRIBUTES `unresolved` where the
174        // signature is BUILT (candor-scan's `reason_class_direct`; `gate_input_from_report` on the
175        // report route) instead of arriving here by absence. What is left for the absence arm is
176        // the RELEASE-mode gap: the writer's §4 invariant is a `debug_assert`, so a future path
177        // that puts `Unknown` into `direct` with no reason fails closed here rather than escaping
178        // the gate. Not dead — it is pinned by
179        // `reason_scoped_unknown_gate_fires_on_match_tolerates_mismatch`.
180        //
181        // ⟨0.24⟩ The rule itself lives in `crate::policy::reason_class_matches` because
182        // `unverified --class` must select over exactly the set this gate scopes over: a gate and
183        // the disclosure naming the holes that gate did not prove, disagreeing, is the defect.
184        //
185        // ⟨0.24⟩ **BUT THE FLOOR IS ASKED FIRST, AND SEPARATELY — SPEC §3.1.** `reason_class_matches`
186        // answers "could this rule apply?", and its absence/empty arm floors at `unresolved` so a
187        // hole nobody classified never slips out of a filter that names its own class. That is the
188        // right fail-closed default for a MATCHER and the WRONG basis for a FIRING: read as grounds
189        // to emit a violation it asserts a reason NOBODY RECORDED. The two questions shared this one
190        // helper safely only while the report route's refusal short-circuited before `gate()` ran;
191        // `8b97e5c` removed that short-circuit (correctly — a certain violation must reach the
192        // document) and the identical constant, on identical data, became a FABRICATION.
193        //
194        // MEASURED 2026-07-28, `deny Unknown[unresolved] app.opaque` over an entry with `inferred:
195        // ["Unknown"]` and no `direct`, no `unknownWhy`, no `calls`: exit 1 with a violation record
196        // in `--gate-json`, for a function whose determinable class set is EMPTY. The record was
197        // self-refuting — it carried no `reasonClass` key at all, because the floor exists only
198        // inside the predicate and never in the data.
199        //
200        // So the three-way split. NOT determinable ⇒ **WITHHELD**: the hit is dropped AND the pair
201        // rides out to the caller, because dropping it silently is the mirror defect (a narrowed
202        // filter tolerating for lack of evidence is the fail-open this whole rung exists to close).
203        // Determinable ⇒ the shared matcher decides, unchanged, and the `Some(cs)` arm it lands on
204        // is the only one a firing may rest on.
205        //
206        // THE MIRROR IS PINNED, because this is where an under-report gets introduced: an entry
207        // whose `unresolved` is INHERITED — a `calls` edge to a reasonless direct `Unknown` — has a
208        // determinable set of `{unresolved}` (contributed at the ENTRY, before the fixpoint) and
209        // MUST still fire. That is `R1_EXPECT["unresolved"]`'s `app.a_reasonless_only`, and
210        // `a_withheld_unknown_filter_does_not_take_the_inherited_one_with_it` beside it.
211        let classes = reason_classes;
212        let determinable = classes.is_some_and(|cs| !cs.is_empty());
213        if !determinable {
214            hits.retain(|e| *e != "Unknown");
215            withheld.push("Unknown");
216        } else if !reason_class_matches(classes, &want) {
217            hits.retain(|e| *e != "Unknown");
218        }
219    }
220    // Net destination-class: a `deny Net[dest…]` (non-empty filter) keeps its Net hit ONLY for a fn
221    // reaching one of those destination classes; else tolerate (only asserted-safe destinations).
222    // Fail-closed: a masked surface / a Net with no visible host is unknown-host (net_classes_of).
223    //
224    // ⟨0.24⟩ SAME THREE-WAY SPLIT AS THE REASON FILTER, and this side is where the shape is easiest
225    // to see because it never fabricated: with no destination classes to read, `any()` over the
226    // empty set is false and the Net hit was DROPPED — the *other* half of the same defect, an
227    // absence-keyed relaxation of a fail-closed gate. Silently tolerating and silently charging are
228    // the two ways to answer a question the evidence cannot settle; WITHHOLDING is the third, and
229    // the only one that stays true. Costs nothing on a signature this engine produced:
230    // `net_classes_of` floors every Net-bearing fn at `unknown-host`, so an empty set here means
231    // "this producer did not carry the field", never "this function reaches nothing".
232    if hits.contains(&"Net") && !r.net_classes.is_empty() {
233        let fn_net = net_classes;
234        if fn_net.is_empty() {
235            hits.retain(|e| *e != "Net");
236            withheld.push("Net");
237        } else if !fn_net.iter().any(|c| r.net_classes.contains(c)) {
238            hits.retain(|e| *e != "Net");
239        }
240    }
241    RuleHits { hits, withheld }
242}
243
244
245/// Apply a parsed §6.2 policy to an already-accumulated signature. THE ONLY matching code in the stable
246/// toolchain — `candor-scan --policy` and `candor-query gate --report` both land here, which is what
247/// makes "the same verdict from the same signature" a property of the code rather than of two
248/// consistent authors. Returns the violations, sorted by (rule, detail), AND the withheld pairs.
249pub fn gate<E: AsRef<str> + Ord>(p: &ParsedPolicy, gi: &GateInput<E>) -> GateOutcome {
250    let empty: BTreeSet<E> = BTreeSet::new();
251    let no_classes: Vec<String> = Vec::new();
252    let mut out = Vec::new();
253    let mut withheld: Vec<Withheld> = Vec::new();
254    // ONE VERDICT PER (rule, function), whatever the caller's enumeration. `all` is a list of UNITS on
255    // the scan route, and two units can share one qualified name — `#[cfg(unix)] fn f` beside
256    // `#[cfg(not(unix))] fn f` is the everyday case. Their signatures were already merged into one
257    // `inferred` entry keyed by that name, so the gate saw ONE signature and reported it TWICE: two
258    // byte-identical `GateViolation` records, an inflated `N policy violation(s)` count, and a
259    // `--gate-json` document that could not be equal to the one the ⟨0.24⟩ report route produces (a
260    // report is keyed by name, so the duplicate is not reachable there). FOUND BY the §3.1 byte-equality
261    // obligation, on 15 of 90 rows over ebman/pgman/the candor workspace — which is the whole argument
262    // for the verb: no end-to-end test could have separated this from a classifier defect.
263    let mut seen_fn: std::collections::HashSet<&str> = std::collections::HashSet::new();
264    for q in gi.all {
265        if !seen_fn.insert(q.as_str()) {
266            continue;
267        }
268        let inf = gi.inferred.get(q).unwrap_or(&empty);
269        // Materialized ONCE per function rather than per (function, rule): `rule_hits` is generic over
270        // nothing, so the two routes' effect representations (`&'static str` interned / `String` off the
271        // wire) converge here instead of inside the matcher.
272        let effs: Vec<&str> = inf.iter().map(AsRef::as_ref).collect();
273        // AS-EFF-006 — deny/pure: forbidden effects in the transitive set.
274        for r in &p.rules {
275            if let Some(s) = &r.scope {
276                if !scope_matches(q, s) {
277                    continue;
278                }
279            }
280            // ONE implementation of the firing decision, shared with the provable-purity disclosure
281            // ([`crate::policy::unverified_hole_rule`]) — see [`rule_hits`] for what the second copy cost.
282            let RuleHits { hits, withheld: wh } = rule_hits(
283                r,
284                &effs,
285                gi.reason_classes.get(q),
286                gi.net_classes.get(q).map(Vec::as_slice).unwrap_or(&no_classes),
287            );
288            for filter in wh {
289                withheld.push(Withheld { rule: r.raw.clone(), func: q.clone(), filter });
290            }
291            if !hits.is_empty() {
292                // §6.2: when Unknown is denied, report ALL reason classes on the fn (transitive), so the
293                // consumer sees every reason the strict gate bit — not just the class the rule matched.
294                let reason_class = if hits.contains(&"Unknown") {
295                    gi.reason_classes.get(q).map(|cs| cs.iter().cloned().collect()).unwrap_or_default()
296                } else {
297                    Vec::new()
298                };
299                // ⟨0.20⟩ when Net is denied, report ALL of the fn's destination classes (transitive).
300                let net_class = if hits.contains(&"Net") {
301                    gi.net_classes.get(q).cloned().unwrap_or_default()
302                } else {
303                    Vec::new()
304                };
305                out.push(GateViolation {
306                    rule: "AS-EFF-006".into(),
307                    func: q.clone(),
308                    effects: hits.iter().map(|s| s.to_string()).collect(),
309                    detail: format!("`{q}` performs {{ {} }}, forbidden by policy: `{}`", hits.join(", "), r.raw),
310                    reason_class,
311                    net_class,
312                });
313            }
314        }
315        // AS-EFF-008 — literal allowlists over the transitive literal surfaces.
316        for r in &p.allow_rules {
317            if let Some(s) = &r.scope {
318                if !scope_matches(q, s) {
319                    continue;
320                }
321            }
322            if !inf.iter().any(|e| e.as_ref() == r.effect) {
323                continue;
324            }
325            let lits = match r.effect {
326                // `Llm` ⟨0.13⟩ rides the Net host surface (SPEC §1) — `allow Llm <host>` certifies the same
327                // captured hosts as `allow Net`, restricted to the MODEL hosts (a model call's host WAS
328                // captured as a Net literal). Matches candor-java's checkAllowlist("Llm", hostFixpoint, …).
329                "Net" | "Llm" => gi.hosts.get(q),
330                "Exec" => gi.cmds.get(q),
331                "Db" => gi.tables.get(q),
332                _ => gi.paths.get(q),
333            };
334            // An INCOMPLETE surface (a structurally-invisible reach) can't be certified even with visible
335            // hosts — else a benign literal masks the invisible forbidden endpoint (the masking evasion).
336            // `Llm` keys off the NET incompleteness (it rides the Net host literal): a runtime/masked model
337            // host that fails-closes Net must fail-close `allow Llm` too (incompleteAsLlm in candor-java).
338            let inc_key = if r.effect == "Llm" { "Net" } else { r.effect };
339            let surface_incomplete =
340                gi.surface_incomplete.get(q).is_some_and(|s| s.iter().any(|e| e.as_ref() == inc_key));
341            match lits {
342                Some(ls) if !ls.is_empty() && !surface_incomplete => {
343                    let bad: Vec<&str> =
344                        ls.iter().filter(|l| !literal_allowed(r.effect, l, &r.literals)).map(String::as_str).collect();
345                    if !bad.is_empty() {
346                        out.push(GateViolation {
347                            rule: "AS-EFF-008".into(),
348                            func: q.clone(),
349                            effects: vec![r.effect.to_string()],
350                            detail: format!("`{q}` reaches {{ {} }} outside the allowlist: `{}`", bad.join(", "), r.raw),
351                            ..Default::default()
352                        });
353                    }
354                }
355                _ => out.push(GateViolation {
356                    rule: "AS-EFF-008".into(),
357                    func: q.clone(),
358                    effects: vec![r.effect.to_string()],
359                    detail: format!("`{q}` performs {} with no visible literal — the surface cannot be certified: `{}`", r.effect, r.raw),
360                    ..Default::default()
361                }),
362            }
363        }
364        // AS-EFF-009 — layering: no fn in scope A may transitively reach scope B.
365        for r in &p.layer_rules {
366            if !scope_matches(q, &r.from) {
367                continue;
368            }
369            let mut seen: BTreeSet<&str> = BTreeSet::new();
370            let mut stack: Vec<&str> =
371                gi.calls.get(q).map(|cs| cs.iter().map(String::as_str).collect()).unwrap_or_default();
372            let mut hit: Option<&str> = None;
373            while let Some(n) = stack.pop() {
374                if !seen.insert(n) {
375                    continue;
376                }
377                if scope_matches(n, &r.to) {
378                    hit = Some(n);
379                    break;
380                }
381                if let Some(cs) = gi.calls.get(n) {
382                    stack.extend(cs.iter().map(String::as_str));
383                }
384            }
385            if let Some(h) = hit {
386                out.push(GateViolation {
387                    rule: "AS-EFF-009".into(),
388                    func: q.clone(),
389                    effects: Vec::new(), // a layer-flow has no single effect
390                    detail: format!("`{q}` reaches into a forbidden layer (via `{h}`): `{}`", r.raw),
391                    ..Default::default()
392                });
393            }
394        }
395    }
396    // Sort by (rule, detail) — identical order to the old rendered-line sort (the "[rule] detail" render
397    // puts the constant '[' first and all AS-EFF codes are same-length), without allocating two Strings
398    // per comparison.
399    out.sort_by(|a, b| (a.rule.as_str(), a.detail.as_str()).cmp(&(b.rule.as_str(), b.detail.as_str())));
400    // Deterministic for the same reason the violations are: a disclosure a consumer diffs between runs
401    // must not reorder because a HashMap iterated differently.
402    withheld.sort_by(|a, b| (&a.rule, &a.func).cmp(&(&b.rule, &b.func)));
403    withheld.dedup();
404    // ⟨0.27⟩ ZERO-MATCH DISCLOSURE. Counted over the SAME key set the gate iterated, so "bound nothing"
405    // means here exactly what it means to the gate. A `deny`/`pure` with NO scope applies to every
406    // function and so can never be this kind of typo — excluded. A layer rule counts a match on either
407    // endpoint, over the call-graph keys it binds across.
408    let mut zero: std::collections::BTreeMap<&str, usize> = std::collections::BTreeMap::new();
409    for r in &p.rules {
410        if r.scope.is_some() {
411            zero.entry(r.raw.as_str()).or_insert(0);
412        }
413    }
414    for r in &p.layer_rules {
415        zero.entry(r.raw.as_str()).or_insert(0);
416    }
417    if !zero.is_empty() {
418        let mut names: std::collections::BTreeSet<&str> =
419            gi.all.iter().map(|q| q.as_str()).collect();
420        names.extend(gi.calls.keys().map(String::as_str));
421        for n in names {
422            for r in &p.rules {
423                if let Some(s) = &r.scope {
424                    if scope_matches(n, s) {
425                        *zero.entry(r.raw.as_str()).or_insert(0) += 1;
426                    }
427                }
428            }
429            for r in &p.layer_rules {
430                if scope_matches(n, &r.from) || scope_matches(n, &r.to) {
431                    *zero.entry(r.raw.as_str()).or_insert(0) += 1;
432                }
433            }
434        }
435    }
436    let zero_match: Vec<String> = zero
437        .into_iter()
438        .filter(|(_, c)| *c == 0)
439        .map(|(raw, _)| raw.to_string())
440        .collect();
441    GateOutcome { violations: out, withheld, zero_match }
442}