Compare commits

...

1 Commits

Author SHA1 Message Date
David Wiesen
402a53ed33 Fix Windows automation DangerFullAccess dispatch 2026-05-04 09:38:33 -07:00
2 changed files with 23 additions and 2 deletions

View File

@@ -435,7 +435,7 @@ pub(crate) async fn execute_exec_request(
windows_sandbox_level,
windows_sandbox_private_desktop,
permission_profile: _,
file_system_sandbox_policy: _,
file_system_sandbox_policy,
network_sandbox_policy,
windows_sandbox_filesystem_overrides,
arg0,
@@ -463,6 +463,7 @@ pub(crate) async fn execute_exec_request(
after_spawn,
sandbox,
&sandbox_policy,
&file_system_sandbox_policy,
windows_sandbox_filesystem_overrides.as_ref(),
)
.await;
@@ -477,12 +478,17 @@ async fn get_raw_output_result(
after_spawn: Option<Box<dyn FnOnce() + Send>>,
#[cfg_attr(not(windows), allow(unused_variables))] sandbox: SandboxType,
#[cfg_attr(not(windows), allow(unused_variables))] sandbox_policy: &SandboxPolicy,
#[cfg_attr(not(windows), allow(unused_variables))] file_system_sandbox_policy: &FileSystemSandboxPolicy,
#[cfg_attr(not(windows), allow(unused_variables))] windows_sandbox_filesystem_overrides: Option<
&WindowsSandboxFilesystemOverrides,
>,
) -> Result<RawExecToolCallOutput> {
#[cfg(target_os = "windows")]
if sandbox == SandboxType::WindowsRestrictedToken {
if should_use_windows_restricted_token_sandbox(
sandbox,
sandbox_policy,
file_system_sandbox_policy,
) {
return exec_windows_sandbox(params, sandbox_policy, windows_sandbox_filesystem_overrides)
.await;
}

View File

@@ -394,6 +394,21 @@ fn windows_restricted_token_skips_external_sandbox_policies() {
);
}
#[test]
fn windows_restricted_token_skips_danger_full_access_policies() {
let policy = SandboxPolicy::DangerFullAccess;
let file_system_policy = FileSystemSandboxPolicy::from(&policy);
assert_eq!(
should_use_windows_restricted_token_sandbox(
SandboxType::WindowsRestrictedToken,
&policy,
&file_system_policy,
),
false
);
}
#[test]
fn windows_restricted_token_runs_for_legacy_restricted_policies() {
let policy = SandboxPolicy::new_read_only_policy();