clawdstrike 0.2.5

Security guards and policy engine for AI agent execution
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
//! Remote desktop side channel guard - controls clipboard, file transfer, audio, drive mapping,
//! printing, and session sharing.

use async_trait::async_trait;
use serde::{Deserialize, Serialize};

use super::{Guard, GuardAction, GuardContext, GuardResult, Severity};

/// Configuration for RemoteDesktopSideChannelGuard
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct RemoteDesktopSideChannelConfig {
    /// Enable/disable this guard.
    #[serde(default = "default_enabled")]
    pub enabled: bool,
    /// Whether clipboard operations are allowed.
    #[serde(default = "default_enabled")]
    pub clipboard_enabled: bool,
    /// Whether file transfer operations are allowed.
    #[serde(default = "default_enabled")]
    pub file_transfer_enabled: bool,
    /// Whether session sharing is allowed.
    #[serde(default = "default_enabled")]
    pub session_share_enabled: bool,
    /// Whether remote audio channel is allowed.
    #[serde(default = "default_enabled")]
    pub audio_enabled: bool,
    /// Whether remote drive mapping channel is allowed.
    #[serde(default = "default_enabled")]
    pub drive_mapping_enabled: bool,
    /// Whether remote printing channel is allowed.
    #[serde(default = "default_enabled")]
    pub printing_enabled: bool,
    /// Maximum transfer size in bytes (for file_transfer). None means unlimited.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub max_transfer_size_bytes: Option<u64>,
}

fn default_enabled() -> bool {
    true
}

impl Default for RemoteDesktopSideChannelConfig {
    fn default() -> Self {
        Self {
            enabled: true,
            clipboard_enabled: true,
            file_transfer_enabled: true,
            session_share_enabled: true,
            audio_enabled: true,
            drive_mapping_enabled: true,
            printing_enabled: true,
            max_transfer_size_bytes: None,
        }
    }
}

/// Guard that controls remote desktop side channels (clipboard, file transfer, session sharing).
///
/// Handles `GuardAction::Custom` where the custom type is one of:
/// - `"remote.clipboard"`
/// - `"remote.file_transfer"`
/// - `"remote.audio"`
/// - `"remote.drive_mapping"`
/// - `"remote.printing"`
/// - `"remote.session_share"`
pub struct RemoteDesktopSideChannelGuard {
    name: String,
    enabled: bool,
    config: RemoteDesktopSideChannelConfig,
}

impl RemoteDesktopSideChannelGuard {
    /// Create with default configuration.
    pub fn new() -> Self {
        Self::with_config(RemoteDesktopSideChannelConfig::default())
    }

    /// Create with custom configuration.
    pub fn with_config(config: RemoteDesktopSideChannelConfig) -> Self {
        let enabled = config.enabled;
        Self {
            name: "remote_desktop_side_channel".to_string(),
            enabled,
            config,
        }
    }
}

impl Default for RemoteDesktopSideChannelGuard {
    fn default() -> Self {
        Self::new()
    }
}

#[async_trait]
impl Guard for RemoteDesktopSideChannelGuard {
    fn name(&self) -> &str {
        &self.name
    }

    fn handles(&self, action: &GuardAction<'_>) -> bool {
        if !self.enabled {
            return false;
        }

        matches!(action, GuardAction::Custom(ct, _) if is_remote_side_channel_candidate(ct))
    }

    async fn check(&self, action: &GuardAction<'_>, _context: &GuardContext) -> GuardResult {
        if !self.enabled {
            return GuardResult::allow(&self.name);
        }

        let (custom_type, data) = match action {
            GuardAction::Custom(ct, data) => (*ct, *data),
            _ => return GuardResult::allow(&self.name),
        };

        match custom_type {
            "remote.clipboard" => {
                if !self.config.clipboard_enabled {
                    GuardResult::block(
                        &self.name,
                        Severity::Error,
                        "Clipboard operations are disabled by policy",
                    )
                    .with_details(serde_json::json!({
                        "channel": "clipboard",
                        "reason": "channel_disabled",
                    }))
                } else {
                    GuardResult::allow(&self.name)
                }
            }
            "remote.file_transfer" => {
                if !self.config.file_transfer_enabled {
                    return GuardResult::block(
                        &self.name,
                        Severity::Error,
                        "File transfer operations are disabled by policy",
                    )
                    .with_details(serde_json::json!({
                        "channel": "file_transfer",
                        "reason": "channel_disabled",
                    }));
                }

                // Check transfer size if configured
                if let Some(max_size) = self.config.max_transfer_size_bytes {
                    let transfer_size_value = data
                        .get("transfer_size")
                        .or_else(|| data.get("transferSize"));
                    let transfer_size = match transfer_size_value {
                        Some(value) => match value.as_u64() {
                            Some(size) => size,
                            None => {
                                return GuardResult::block(
                                    &self.name,
                                    Severity::Error,
                                    "File transfer size must be an unsigned integer in bytes",
                                )
                                .with_details(serde_json::json!({
                                    "channel": "file_transfer",
                                    "reason": "invalid_transfer_size_type",
                                }));
                            }
                        },
                        None => {
                            return GuardResult::block(
                                &self.name,
                                Severity::Error,
                                "File transfer size is required when max_transfer_size_bytes is configured",
                            )
                            .with_details(serde_json::json!({
                                "channel": "file_transfer",
                                "reason": "missing_transfer_size",
                            }));
                        }
                    };

                    if transfer_size > max_size {
                        return GuardResult::block(
                            &self.name,
                            Severity::Error,
                            format!(
                                "File transfer size {} bytes exceeds maximum {} bytes",
                                transfer_size, max_size
                            ),
                        )
                        .with_details(serde_json::json!({
                            "channel": "file_transfer",
                            "reason": "transfer_size_exceeded",
                            "transfer_size": transfer_size,
                            "max_size": max_size,
                        }));
                    }
                }

                GuardResult::allow(&self.name)
            }
            "remote.session_share" => {
                if !self.config.session_share_enabled {
                    GuardResult::block(
                        &self.name,
                        Severity::Error,
                        "Session sharing is disabled by policy",
                    )
                    .with_details(serde_json::json!({
                        "channel": "session_share",
                        "reason": "channel_disabled",
                    }))
                } else {
                    GuardResult::allow(&self.name)
                }
            }
            "remote.audio" => {
                if !self.config.audio_enabled {
                    GuardResult::block(
                        &self.name,
                        Severity::Error,
                        "Remote audio channel is disabled by policy",
                    )
                    .with_details(serde_json::json!({
                        "channel": "audio",
                        "reason": "channel_disabled",
                    }))
                } else {
                    GuardResult::allow(&self.name)
                }
            }
            "remote.drive_mapping" => {
                if !self.config.drive_mapping_enabled {
                    GuardResult::block(
                        &self.name,
                        Severity::Error,
                        "Drive mapping is disabled by policy",
                    )
                    .with_details(serde_json::json!({
                        "channel": "drive_mapping",
                        "reason": "channel_disabled",
                    }))
                } else {
                    GuardResult::allow(&self.name)
                }
            }
            "remote.printing" => {
                if !self.config.printing_enabled {
                    GuardResult::block(
                        &self.name,
                        Severity::Error,
                        "Remote printing is disabled by policy",
                    )
                    .with_details(serde_json::json!({
                        "channel": "printing",
                        "reason": "channel_disabled",
                    }))
                } else {
                    GuardResult::allow(&self.name)
                }
            }
            _ => GuardResult::block(
                &self.name,
                Severity::Error,
                format!(
                    "Unknown side channel type '{}' denied by fail-closed policy",
                    custom_type
                ),
            )
            .with_details(serde_json::json!({
                "channel": custom_type,
                "reason": "unknown_channel_type",
            })),
        }
    }
}

fn is_remote_side_channel_candidate(custom_type: &str) -> bool {
    if !custom_type.starts_with("remote.") {
        return false;
    }

    !matches!(
        custom_type,
        "remote.session.connect" | "remote.session.disconnect" | "remote.session.reconnect"
    )
}

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

    #[test]
    fn test_handles_side_channel_actions() {
        let guard = RemoteDesktopSideChannelGuard::new();
        let data = serde_json::json!({});

        assert!(guard.handles(&GuardAction::Custom("remote.clipboard", &data)));
        assert!(guard.handles(&GuardAction::Custom("remote.file_transfer", &data)));
        assert!(guard.handles(&GuardAction::Custom("remote.audio", &data)));
        assert!(guard.handles(&GuardAction::Custom("remote.drive_mapping", &data)));
        assert!(guard.handles(&GuardAction::Custom("remote.printing", &data)));
        assert!(guard.handles(&GuardAction::Custom("remote.session_share", &data)));
        assert!(guard.handles(&GuardAction::Custom("remote.webrtc", &data)));
    }

    #[test]
    fn test_does_not_handle_other_actions() {
        let guard = RemoteDesktopSideChannelGuard::new();
        let data = serde_json::json!({});

        assert!(!guard.handles(&GuardAction::Custom("remote.session.connect", &data)));
        assert!(!guard.handles(&GuardAction::Custom("input.inject", &data)));
        assert!(!guard.handles(&GuardAction::FileAccess("/tmp/file")));
    }

    #[tokio::test]
    async fn test_allows_when_all_channels_enabled() {
        let guard = RemoteDesktopSideChannelGuard::new();
        let context = GuardContext::new();
        let data = serde_json::json!({});

        let result = guard
            .check(&GuardAction::Custom("remote.clipboard", &data), &context)
            .await;
        assert!(result.allowed);

        let result = guard
            .check(
                &GuardAction::Custom("remote.file_transfer", &data),
                &context,
            )
            .await;
        assert!(result.allowed);

        let result = guard
            .check(
                &GuardAction::Custom("remote.session_share", &data),
                &context,
            )
            .await;
        assert!(result.allowed);

        let result = guard
            .check(&GuardAction::Custom("remote.audio", &data), &context)
            .await;
        assert!(result.allowed);

        let result = guard
            .check(
                &GuardAction::Custom("remote.drive_mapping", &data),
                &context,
            )
            .await;
        assert!(result.allowed);

        let result = guard
            .check(&GuardAction::Custom("remote.printing", &data), &context)
            .await;
        assert!(result.allowed);
    }

    #[tokio::test]
    async fn test_denies_clipboard_when_disabled() {
        let config = RemoteDesktopSideChannelConfig {
            clipboard_enabled: false,
            ..Default::default()
        };
        let guard = RemoteDesktopSideChannelGuard::with_config(config);
        let context = GuardContext::new();
        let data = serde_json::json!({});

        let result = guard
            .check(&GuardAction::Custom("remote.clipboard", &data), &context)
            .await;
        assert!(!result.allowed);
    }

    #[tokio::test]
    async fn test_denies_file_transfer_exceeding_size() {
        let config = RemoteDesktopSideChannelConfig {
            max_transfer_size_bytes: Some(1024),
            ..Default::default()
        };
        let guard = RemoteDesktopSideChannelGuard::with_config(config);
        let context = GuardContext::new();
        let data = serde_json::json!({"transfer_size": 2048});

        let result = guard
            .check(
                &GuardAction::Custom("remote.file_transfer", &data),
                &context,
            )
            .await;
        assert!(!result.allowed);
    }

    #[tokio::test]
    async fn test_allows_file_transfer_within_size() {
        let config = RemoteDesktopSideChannelConfig {
            max_transfer_size_bytes: Some(4096),
            ..Default::default()
        };
        let guard = RemoteDesktopSideChannelGuard::with_config(config);
        let context = GuardContext::new();
        let data = serde_json::json!({"transfer_size": 1024});

        let result = guard
            .check(
                &GuardAction::Custom("remote.file_transfer", &data),
                &context,
            )
            .await;
        assert!(result.allowed);
    }

    #[tokio::test]
    async fn test_denies_audio_when_disabled() {
        let config = RemoteDesktopSideChannelConfig {
            audio_enabled: false,
            ..Default::default()
        };
        let guard = RemoteDesktopSideChannelGuard::with_config(config);
        let context = GuardContext::new();
        let data = serde_json::json!({});

        let result = guard
            .check(&GuardAction::Custom("remote.audio", &data), &context)
            .await;
        assert!(!result.allowed);
    }

    #[tokio::test]
    async fn test_denies_unknown_remote_side_channel_fail_closed() {
        let guard = RemoteDesktopSideChannelGuard::new();
        let context = GuardContext::new();
        let data = serde_json::json!({});

        assert!(guard.handles(&GuardAction::Custom("remote.webrtc", &data)));
        let result = guard
            .check(&GuardAction::Custom("remote.webrtc", &data), &context)
            .await;
        assert!(!result.allowed);
    }

    #[tokio::test]
    async fn test_allows_camel_case_transfer_size_within_limit() {
        let config = RemoteDesktopSideChannelConfig {
            max_transfer_size_bytes: Some(4096),
            ..Default::default()
        };
        let guard = RemoteDesktopSideChannelGuard::with_config(config);
        let context = GuardContext::new();
        let data = serde_json::json!({"transferSize": 1024});

        let result = guard
            .check(
                &GuardAction::Custom("remote.file_transfer", &data),
                &context,
            )
            .await;
        assert!(result.allowed);
    }

    #[tokio::test]
    async fn test_denies_file_transfer_with_invalid_transfer_size_type() {
        let config = RemoteDesktopSideChannelConfig {
            max_transfer_size_bytes: Some(4096),
            ..Default::default()
        };
        let guard = RemoteDesktopSideChannelGuard::with_config(config);
        let context = GuardContext::new();
        let data = serde_json::json!({"transfer_size": "1024"});

        let result = guard
            .check(
                &GuardAction::Custom("remote.file_transfer", &data),
                &context,
            )
            .await;
        assert!(!result.allowed);
    }

    #[tokio::test]
    async fn test_denies_file_transfer_when_size_missing_and_limit_set() {
        let config = RemoteDesktopSideChannelConfig {
            max_transfer_size_bytes: Some(4096),
            ..Default::default()
        };
        let guard = RemoteDesktopSideChannelGuard::with_config(config);
        let context = GuardContext::new();
        let data = serde_json::json!({});

        let result = guard
            .check(
                &GuardAction::Custom("remote.file_transfer", &data),
                &context,
            )
            .await;
        assert!(!result.allowed);
    }
}