Skip to main content

rma_plugins/
lib.rs

1//! WASM Plugin System for RMA
2//!
3//! This crate provides a WebAssembly-based plugin system that allows users
4//! to write custom analysis rules in any language that compiles to WASM.
5//!
6//! # Plugin Interface
7//!
8//! Plugins implement a simple interface:
9//! - `analyze(source: &str, language: &str) -> Vec<Finding>`
10//!
11//! # Example Plugin (Rust compiled to WASM)
12//!
13//! ```ignore
14//! #[no_mangle]
15//! pub extern "C" fn analyze(source_ptr: *const u8, source_len: usize) -> *mut Finding {
16//!     // ... analysis logic
17//! }
18//! ```
19
20pub mod host;
21pub mod loader;
22pub mod registry;
23
24use anyhow::Result;
25use rma_common::{Finding, Language};
26use serde::{Deserialize, Serialize};
27use std::path::Path;
28use thiserror::Error;
29use tracing::{debug, info, warn};
30
31/// Errors that can occur in the plugin system
32#[derive(Error, Debug)]
33pub enum PluginError {
34    #[error("Failed to load plugin: {0}")]
35    LoadError(String),
36
37    #[error("Plugin execution failed: {0}")]
38    ExecutionError(String),
39
40    #[error("Invalid plugin interface: {0}")]
41    InterfaceError(String),
42
43    #[error("Plugin not found: {0}")]
44    NotFound(String),
45
46    #[error("WASM error: {0}")]
47    WasmError(#[from] anyhow::Error),
48}
49
50/// Metadata about a loaded plugin
51#[derive(Debug, Clone, Serialize, Deserialize)]
52pub struct PluginMetadata {
53    pub name: String,
54    pub version: String,
55    pub description: String,
56    pub author: Option<String>,
57    pub languages: Vec<Language>,
58    pub rules: Vec<String>,
59}
60
61/// A loaded WASM plugin
62pub struct Plugin {
63    pub metadata: PluginMetadata,
64    instance: wasmtime::Instance,
65    store: wasmtime::Store<host::HostState>,
66}
67
68impl Plugin {
69    /// Run the plugin's analysis on the given source code
70    pub fn analyze(&mut self, source: &str, language: Language) -> Result<Vec<Finding>> {
71        host::call_analyze(&mut self.store, &self.instance, source, language)
72    }
73}
74
75/// Input data passed to plugin analysis functions
76#[derive(Debug, Clone, Serialize, Deserialize)]
77pub struct PluginInput {
78    pub source: String,
79    pub file_path: String,
80    pub language: String,
81}
82
83/// Output from plugin analysis
84#[derive(Debug, Clone, Serialize, Deserialize)]
85pub struct PluginOutput {
86    pub findings: Vec<PluginFinding>,
87}
88
89/// A finding reported by a plugin
90#[derive(Debug, Clone, Serialize, Deserialize)]
91pub struct PluginFinding {
92    pub rule_id: String,
93    pub message: String,
94    pub severity: String,
95    pub start_line: usize,
96    pub start_column: usize,
97    pub end_line: usize,
98    pub end_column: usize,
99    pub snippet: Option<String>,
100    pub suggestion: Option<String>,
101}
102
103impl From<PluginFinding> for Finding {
104    fn from(pf: PluginFinding) -> Self {
105        let mut finding = Finding {
106            id: format!(
107                "plugin-{}-{}-{}",
108                pf.rule_id, pf.start_line, pf.start_column
109            ),
110            rule_id: pf.rule_id,
111            message: pf.message,
112            severity: match pf.severity.to_lowercase().as_str() {
113                "critical" => rma_common::Severity::Critical,
114                "error" => rma_common::Severity::Error,
115                "warning" => rma_common::Severity::Warning,
116                _ => rma_common::Severity::Info,
117            },
118            location: rma_common::SourceLocation::new(
119                std::path::PathBuf::new(),
120                pf.start_line,
121                pf.start_column,
122                pf.end_line,
123                pf.end_column,
124            ),
125            language: Language::Unknown,
126            snippet: pf.snippet,
127            suggestion: pf.suggestion,
128            confidence: rma_common::Confidence::Medium,
129            category: rma_common::FindingCategory::Quality,
130            fingerprint: None,
131        };
132        finding.compute_fingerprint();
133        finding
134    }
135}
136
137/// The main plugin manager
138pub struct PluginManager {
139    registry: registry::PluginRegistry,
140    engine: wasmtime::Engine,
141}
142
143impl PluginManager {
144    /// Create a new plugin manager
145    pub fn new() -> Result<Self> {
146        let mut config = wasmtime::Config::new();
147        config.wasm_component_model(true);
148        config.async_support(false);
149
150        let engine = wasmtime::Engine::new(&config)?;
151
152        Ok(Self {
153            registry: registry::PluginRegistry::new(),
154            engine,
155        })
156    }
157
158    /// Load a plugin from a WASM file
159    pub fn load_plugin(&mut self, path: &Path) -> Result<String, PluginError> {
160        info!("Loading plugin from {:?}", path);
161
162        let wasm_bytes = std::fs::read(path)
163            .map_err(|e| PluginError::LoadError(format!("Failed to read file: {}", e)))?;
164
165        let module = wasmtime::Module::new(&self.engine, &wasm_bytes)
166            .map_err(|e| PluginError::LoadError(format!("Failed to compile WASM: {}", e)))?;
167
168        let mut store = wasmtime::Store::new(&self.engine, host::HostState::new());
169
170        // Create linker with host functions
171        let linker = host::create_linker(&self.engine)?;
172
173        let instance = linker
174            .instantiate(&mut store, &module)
175            .map_err(|e| PluginError::LoadError(format!("Failed to instantiate: {}", e)))?;
176
177        // Get plugin metadata
178        let metadata = host::get_plugin_metadata(&mut store, &instance)?;
179        let plugin_name = metadata.name.clone();
180
181        let plugin = Plugin {
182            metadata,
183            instance,
184            store,
185        };
186
187        self.registry.register(plugin)?;
188
189        Ok(plugin_name)
190    }
191
192    /// Load all plugins from a directory
193    pub fn load_plugins_from_dir(&mut self, dir: &Path) -> Result<Vec<String>> {
194        let mut loaded = Vec::new();
195
196        if !dir.exists() {
197            debug!("Plugin directory {:?} does not exist", dir);
198            return Ok(loaded);
199        }
200
201        for entry in std::fs::read_dir(dir)? {
202            let entry = entry?;
203            let path = entry.path();
204
205            if path.extension().map(|e| e == "wasm").unwrap_or(false) {
206                match self.load_plugin(&path) {
207                    Ok(name) => {
208                        info!("Loaded plugin: {}", name);
209                        loaded.push(name);
210                    }
211                    Err(e) => {
212                        warn!("Failed to load plugin {:?}: {}", path, e);
213                    }
214                }
215            }
216        }
217
218        Ok(loaded)
219    }
220
221    /// Run all applicable plugins on the given source
222    pub fn analyze(&mut self, source: &str, language: Language) -> Result<Vec<Finding>> {
223        self.registry.analyze_all(source, language)
224    }
225
226    /// List all loaded plugins
227    pub fn list_plugins(&self) -> Vec<&PluginMetadata> {
228        self.registry.list()
229    }
230
231    /// Unload a plugin by name
232    pub fn unload_plugin(&mut self, name: &str) -> Result<(), PluginError> {
233        self.registry.unregister(name)
234    }
235}
236
237impl Default for PluginManager {
238    fn default() -> Self {
239        Self::new().expect("Failed to create plugin manager")
240    }
241}
242
243#[cfg(test)]
244mod tests {
245    use super::*;
246
247    #[test]
248    fn test_plugin_manager_creation() {
249        let manager = PluginManager::new();
250        assert!(manager.is_ok());
251    }
252
253    #[test]
254    fn test_plugin_finding_conversion() {
255        let pf = PluginFinding {
256            rule_id: "test-rule".to_string(),
257            message: "Test message".to_string(),
258            severity: "warning".to_string(),
259            start_line: 10,
260            start_column: 5,
261            end_line: 10,
262            end_column: 15,
263            snippet: Some("test code".to_string()),
264            suggestion: None,
265        };
266
267        let finding: Finding = pf.into();
268        assert_eq!(finding.rule_id, "test-rule");
269        assert_eq!(finding.severity, rma_common::Severity::Warning);
270    }
271}