vil_validate 0.2.0

VIL validation passes (stub — masa depan: layout/ownership/boundary legality)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
// =============================================================================
// vil_validate::semantic_lane — Lane-Aware Payload Classifier
// =============================================================================
// Validates that semantic types are only sent to their permitted lanes:
//   - State    -> Data Lane only
//   - Event    -> Data Lane or Control Lane
//   - Fault    -> Control Lane only
//   - Decision -> Trigger Lane only
//   - Message  -> any lane (backward-compatible)
//
// Also validates transfer mode compatibility per semantic kind.
//
// Produces compile-time errors if a type is sent to an incorrect lane.
// =============================================================================

use vil_ir::core::WorkflowIR;
use vil_types::LaneKind;

use crate::traits::{Diagnostic, ValidationPass, ValidationReport};

/// Lane-Aware Payload Classifier — validates that semantic types
/// only flow through their permitted lanes.
///
/// Rules:
/// 1. Each route sending a message to a port with a specific lane
///    must be compatible with `SemanticKind::allowed_lanes()`.
/// 2. The route's transfer mode must be compatible with
///    `SemanticKind::allowed_transfer_modes()`.
/// 3. Types with `MemoryClass::ControlHeap` must not be sent via LoanWrite.
pub struct SemanticLanePass;

impl ValidationPass for SemanticLanePass {
    fn name(&self) -> &'static str {
        "SemanticLanePass"
    }

    fn run(&self, ir: &WorkflowIR) -> ValidationReport {
        let mut report = ValidationReport::new();

        // For each route, check whether the sent message type
        // is compatible with the destination port's lane.
        for route in &ir.routes {
            // Find the destination port in the interface
            let dest_port = ir
                .interfaces
                .values()
                .flat_map(|iface| iface.ports.values())
                .find(|p| p.name == route.to_port);

            let dest_port = match dest_port {
                Some(p) => p,
                None => continue, // Port not found — skip (handled by other passes)
            };

            // Also find the source port to determine message name
            let src_port = ir
                .interfaces
                .values()
                .flat_map(|iface| iface.ports.values())
                .find(|p| p.name == route.from_port);

            let src_port = match src_port {
                Some(p) => p,
                None => continue,
            };

            // Skip if the port uses Default lane (backward-compatible)
            if dest_port.lane_kind == LaneKind::Default {
                continue;
            }

            // Look up MessageIR by name from the source port
            let message = ir.messages.get(&src_port.message_name);
            let message = match message {
                Some(m) => m,
                None => continue, // Message type not yet defined — skip
            };

            let context = format!(
                "route {}.{} -> {}.{} (message '{}', kind={})",
                route.from_process,
                route.from_port,
                route.to_process,
                route.to_port,
                message.name,
                message.semantic_kind
            );

            // --- Rule 1: Lane compatibility ---
            let allowed_lanes = message.semantic_kind.allowed_lanes();
            if !allowed_lanes.contains(&dest_port.lane_kind) {
                report.push(Diagnostic::error(
                    "E-SEMANTIC-LANE-01",
                    format!(
                        "Semantic type '{}' (kind={}) is not allowed on {} lane. Allowed lanes: {:?}",
                        message.name,
                        message.semantic_kind,
                        dest_port.lane_kind,
                        allowed_lanes
                    ),
                    &context,
                ));
            }

            // --- Rule 2: Transfer mode compatibility ---
            let allowed_modes = message.semantic_kind.allowed_transfer_modes();
            if !allowed_modes.contains(&route.transfer_mode) {
                report.push(Diagnostic::error(
                    "E-SEMANTIC-LANE-02",
                    format!(
                        "Transfer mode '{}' is not allowed for semantic kind '{}'. Allowed: {:?}",
                        route.transfer_mode, message.semantic_kind, allowed_modes
                    ),
                    &context,
                ));
            }

            // --- Rule 3: ControlHeap messages must not use LoanWrite ---
            if message.memory_class == vil_types::MemoryClass::ControlHeap
                && route.transfer_mode == vil_types::TransferMode::LoanWrite
            {
                report.push(Diagnostic::error(
                    "E-SEMANTIC-LANE-03",
                    format!(
                        "ControlHeap message '{}' cannot be sent via LoanWrite. Use Copy instead.",
                        message.name
                    ),
                    &context,
                ));
            }

            // --- Rule 4: Large payload warning on Trigger Lane ---
            if dest_port.lane_kind == LaneKind::Trigger {
                let estimated_size = estimate_message_size(message);
                if estimated_size > 64 {
                    report.push(Diagnostic::warning(
                        "W-SEMANTIC-LANE-01",
                        format!(
                            "Message '{}' (~{} bytes) sent to Trigger Lane exceeds 64-byte soft limit. Consider using Data Lane for large payloads.",
                            message.name,
                            estimated_size
                        ),
                        &context,
                    ));
                }
            }
        }

        report
    }
}

/// Estimates message size based on field types.
/// Simple heuristic — not an actual sizeof().
fn estimate_message_size(msg: &vil_ir::core::MessageIR) -> usize {
    use vil_ir::core::TypeRefIR;
    let mut total = 0;
    for field in &msg.fields {
        total += match &field.ty {
            TypeRefIR::Primitive(name) => match name.as_str() {
                "u8" | "i8" | "bool" => 1,
                "u16" | "i16" => 2,
                "u32" | "i32" | "f32" => 4,
                "u64" | "i64" | "f64" => 8,
                "u128" | "i128" => 16,
                _ => 8, // default
            },
            TypeRefIR::VSlice(_) => 16, // offset + len
            TypeRefIR::VRef(_) => 8,    // relative offset
            TypeRefIR::Named(_) => 8,   // assume small struct ref
            TypeRefIR::Unknown(_) => 8, // conservative default
        };
    }
    if total == 0 {
        8
    } else {
        total
    } // minimum 8 bytes
}

#[cfg(test)]
mod tests {
    use super::*;
    use vil_ir::builder::*;
    use vil_types::*;

    #[test]
    fn test_fault_on_data_lane_rejected() {
        // Fault should only be on Control Lane, not Data Lane
        let ir = WorkflowBuilder::new("FaultOnDataLane")
            .add_message(
                MessageBuilder::new("MyFault")
                    .semantic_kind(SemanticKind::Fault)
                    .memory_class(MemoryClass::ControlHeap)
                    .build(),
            )
            .add_interface(
                InterfaceBuilder::new("Iface")
                    .out_port("tx", "MyFault")
                    .lane(LaneKind::Data)
                    .queue(QueueKind::Spsc, 10)
                    .done()
                    .in_port("rx", "MyFault")
                    .lane(LaneKind::Data)
                    .queue(QueueKind::Spsc, 10)
                    .done()
                    .build(),
            )
            .add_process(ProcessBuilder::new("A", "Iface").build())
            .add_process(ProcessBuilder::new("B", "Iface").build())
            .route("A", "tx", "B", "rx", TransferMode::Copy)
            .build();

        let pass = SemanticLanePass;
        let report = pass.run(&ir);

        assert!(report.has_errors());
        assert!(report
            .diagnostics
            .iter()
            .any(|d| d.code == "E-SEMANTIC-LANE-01"));
    }

    #[test]
    fn test_fault_on_control_lane_accepted() {
        // Fault on Control Lane is fine
        let ir = WorkflowBuilder::new("FaultOnControlLane")
            .add_message(
                MessageBuilder::new("MyFault")
                    .semantic_kind(SemanticKind::Fault)
                    .memory_class(MemoryClass::ControlHeap)
                    .build(),
            )
            .add_interface(
                InterfaceBuilder::new("Iface")
                    .out_port("tx", "MyFault")
                    .lane(LaneKind::Control)
                    .queue(QueueKind::Spsc, 10)
                    .done()
                    .in_port("rx", "MyFault")
                    .lane(LaneKind::Control)
                    .queue(QueueKind::Spsc, 10)
                    .done()
                    .build(),
            )
            .add_process(ProcessBuilder::new("A", "Iface").build())
            .add_process(ProcessBuilder::new("B", "Iface").build())
            .route("A", "tx", "B", "rx", TransferMode::Copy)
            .build();

        let pass = SemanticLanePass;
        let report = pass.run(&ir);

        assert!(!report.has_errors());
    }

    #[test]
    fn test_decision_on_trigger_lane_accepted() {
        let ir = WorkflowBuilder::new("DecisionOnTrigger")
            .add_message(
                MessageBuilder::new("MyDecision")
                    .semantic_kind(SemanticKind::Decision)
                    .memory_class(MemoryClass::ControlHeap)
                    .build(),
            )
            .add_interface(
                InterfaceBuilder::new("Iface")
                    .out_port("tx", "MyDecision")
                    .lane(LaneKind::Trigger)
                    .queue(QueueKind::Mpmc, 10)
                    .done()
                    .in_port("rx", "MyDecision")
                    .lane(LaneKind::Trigger)
                    .queue(QueueKind::Mpmc, 10)
                    .done()
                    .build(),
            )
            .add_process(ProcessBuilder::new("A", "Iface").build())
            .add_process(ProcessBuilder::new("B", "Iface").build())
            .route("A", "tx", "B", "rx", TransferMode::Copy)
            .build();

        let pass = SemanticLanePass;
        let report = pass.run(&ir);

        assert!(!report.has_errors());
    }

    #[test]
    fn test_decision_on_data_lane_rejected() {
        let ir = WorkflowBuilder::new("DecisionOnDataLane")
            .add_message(
                MessageBuilder::new("MyDecision")
                    .semantic_kind(SemanticKind::Decision)
                    .memory_class(MemoryClass::ControlHeap)
                    .build(),
            )
            .add_interface(
                InterfaceBuilder::new("Iface")
                    .out_port("tx", "MyDecision")
                    .lane(LaneKind::Data)
                    .queue(QueueKind::Spsc, 10)
                    .done()
                    .in_port("rx", "MyDecision")
                    .lane(LaneKind::Data)
                    .queue(QueueKind::Spsc, 10)
                    .done()
                    .build(),
            )
            .add_process(ProcessBuilder::new("A", "Iface").build())
            .add_process(ProcessBuilder::new("B", "Iface").build())
            .route("A", "tx", "B", "rx", TransferMode::LoanWrite)
            .build();

        let pass = SemanticLanePass;
        let report = pass.run(&ir);

        assert!(report.has_errors());
        assert!(report
            .diagnostics
            .iter()
            .any(|d| d.code == "E-SEMANTIC-LANE-01"));
    }

    #[test]
    fn test_state_on_data_lane_accepted() {
        let ir = WorkflowBuilder::new("StateOnDataLane")
            .add_message(
                MessageBuilder::new("MyState")
                    .semantic_kind(SemanticKind::State)
                    .build(),
            )
            .add_interface(
                InterfaceBuilder::new("Iface")
                    .out_port("tx", "MyState")
                    .lane(LaneKind::Data)
                    .queue(QueueKind::Spsc, 10)
                    .done()
                    .in_port("rx", "MyState")
                    .lane(LaneKind::Data)
                    .queue(QueueKind::Spsc, 10)
                    .done()
                    .build(),
            )
            .add_process(ProcessBuilder::new("A", "Iface").build())
            .add_process(ProcessBuilder::new("B", "Iface").build())
            .route("A", "tx", "B", "rx", TransferMode::LoanWrite)
            .build();

        let pass = SemanticLanePass;
        let report = pass.run(&ir);

        assert!(!report.has_errors());
    }

    #[test]
    fn test_control_heap_via_loan_write_rejected() {
        // ControlHeap messages must use Copy, not LoanWrite
        let ir = WorkflowBuilder::new("ControlHeapLoanWrite")
            .add_message(
                MessageBuilder::new("MyFault")
                    .semantic_kind(SemanticKind::Fault)
                    .memory_class(MemoryClass::ControlHeap)
                    .build(),
            )
            .add_interface(
                InterfaceBuilder::new("Iface")
                    .out_port("tx", "MyFault")
                    .lane(LaneKind::Control)
                    .queue(QueueKind::Spsc, 10)
                    .done()
                    .in_port("rx", "MyFault")
                    .lane(LaneKind::Control)
                    .queue(QueueKind::Spsc, 10)
                    .done()
                    .build(),
            )
            .add_process(ProcessBuilder::new("A", "Iface").build())
            .add_process(ProcessBuilder::new("B", "Iface").build())
            .route("A", "tx", "B", "rx", TransferMode::LoanWrite)
            .build();

        let pass = SemanticLanePass;
        let report = pass.run(&ir);

        assert!(report.has_errors());
        // Should have both E-SEMANTIC-LANE-02 (wrong transfer mode for Fault)
        // and E-SEMANTIC-LANE-03 (ControlHeap via LoanWrite)
        assert!(report
            .diagnostics
            .iter()
            .any(|d| d.code == "E-SEMANTIC-LANE-02"));
        assert!(report
            .diagnostics
            .iter()
            .any(|d| d.code == "E-SEMANTIC-LANE-03"));
    }

    #[test]
    fn test_message_on_any_lane_accepted() {
        // Generic Message (backward-compatible) should work on any lane
        for lane in &[LaneKind::Trigger, LaneKind::Data, LaneKind::Control] {
            let ir = WorkflowBuilder::new("MessageAnyLane")
                .add_message(
                    MessageBuilder::new("GenericMsg")
                        .semantic_kind(SemanticKind::Message)
                        .build(),
                )
                .add_interface(
                    InterfaceBuilder::new("Iface")
                        .out_port("tx", "GenericMsg")
                        .lane(*lane)
                        .queue(QueueKind::Spsc, 10)
                        .done()
                        .in_port("rx", "GenericMsg")
                        .lane(*lane)
                        .queue(QueueKind::Spsc, 10)
                        .done()
                        .build(),
                )
                .add_process(ProcessBuilder::new("A", "Iface").build())
                .add_process(ProcessBuilder::new("B", "Iface").build())
                .route("A", "tx", "B", "rx", TransferMode::LoanWrite)
                .build();

            let pass = SemanticLanePass;
            let report = pass.run(&ir);

            assert!(
                !report.has_errors(),
                "Message should be allowed on {:?} lane",
                lane
            );
        }
    }
}