File size: 20,342 Bytes
ea39c0e | 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 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 | use std::sync::Arc;
use std::sync::Mutex;
use std::time::Duration;
use codex_exec_server_protocol::JSONRPCMessage;
use codex_exec_server_protocol::JSONRPCNotification;
use codex_exec_server_protocol::JSONRPCRequest;
use codex_exec_server_protocol::JSONRPCResponse;
use codex_exec_server_protocol::RequestId;
use codex_http_client::HttpClientFactory;
use codex_http_client::OutboundProxyPolicy;
use codex_network_proxy::NetworkDecision;
use codex_network_proxy::NetworkPolicyDecider;
use codex_network_proxy::NetworkPolicyRequest;
use codex_network_proxy::NetworkProxyAuditMetadata;
use codex_utils_path_uri::PathUri;
use http::HeaderMap;
use opentelemetry::trace::TracerProvider as _;
use opentelemetry_sdk::trace::InMemorySpanExporter;
use opentelemetry_sdk::trace::SdkTracerProvider;
use pretty_assertions::assert_eq;
use tokio::net::TcpListener;
use tokio::sync::mpsc;
use tokio::sync::oneshot;
use tokio::time::timeout;
use tracing::instrument::WithSubscriber;
use tracing_subscriber::filter::filter_fn;
use tracing_subscriber::prelude::*;
use super::super::LazyRemoteExecServerClient;
use super::super::NetworkPolicyAuditContext;
use super::super::NetworkPolicyDecisionController;
use super::super::SessionState;
use super::super::handle_server_notification;
use super::accept_websocket;
use super::complete_websocket_initialize;
use super::read_jsonrpc_websocket;
use super::write_jsonrpc_websocket;
use crate::ProcessId;
use crate::client_api::ExecServerTransportParams;
use crate::protocol::EXEC_METHOD;
use crate::protocol::EXEC_TERMINATE_METHOD;
use crate::protocol::ExecParams;
use crate::protocol::ExecServerNetworkPolicyDecision;
use crate::protocol::ExecServerNetworkPolicyRequest;
use crate::protocol::ExecServerNetworkProtocol;
use crate::protocol::NETWORK_POLICY_DECISION_METHOD;
use crate::protocol::NETWORK_POLICY_REQUEST_METHOD;
use crate::protocol::NetworkPolicyDecisionNotification;
use crate::protocol::NetworkPolicyRequestParams;
use crate::protocol::NetworkPolicyRequestResponse;
use crate::rpc_server_requests::MAX_IN_FLIGHT_SERVER_CALLS;
struct PendingDecisionGuard(mpsc::UnboundedSender<()>);
impl Drop for PendingDecisionGuard {
fn drop(&mut self) {
let _ = self.0.send(());
}
}
fn policy_request(request_id: i64, process_id: ProcessId, host: &str) -> JSONRPCMessage {
JSONRPCMessage::Request(JSONRPCRequest {
id: RequestId::Integer(request_id),
method: NETWORK_POLICY_REQUEST_METHOD.to_string(),
params: Some(
serde_json::to_value(NetworkPolicyRequestParams {
process_id,
request: ExecServerNetworkPolicyRequest {
protocol: ExecServerNetworkProtocol::HttpsConnect,
host: host.to_string(),
port: 443,
},
})
.expect("policy request should serialize"),
),
trace: None,
})
}
async fn read_decision(
websocket: &mut tokio_tungstenite::WebSocketStream<tokio::net::TcpStream>,
request_id: i64,
) -> ExecServerNetworkPolicyDecision {
let JSONRPCMessage::Response(response) = read_jsonrpc_websocket(websocket).await else {
panic!("expected network policy response");
};
assert_eq!(response.id, RequestId::Integer(request_id));
serde_json::from_value::<NetworkPolicyRequestResponse>(response.result)
.expect("policy response should deserialize")
.decision
}
#[tokio::test(flavor = "current_thread")]
async fn policy_decisions_reject_forged_process_and_use_trusted_controller_metadata() {
let listener = TcpListener::bind("127.0.0.1:0")
.await
.expect("listener should bind");
let websocket_url = format!("ws://{}", listener.local_addr().expect("listener address"));
let (release_tx, release_rx) = oneshot::channel();
let (initialized_tx, initialized_rx) = oneshot::channel();
let server = tokio::spawn(async move {
let mut websocket = accept_websocket(&listener).await;
complete_websocket_initialize(
&mut websocket,
"audit-session",
/*expected_resume_session_id*/ None,
)
.await;
initialized_tx
.send(())
.expect("client should await completed WebSocket initialization");
release_rx.await.expect("server should be released");
});
let logs = Arc::new(Mutex::new(Vec::new()));
let writer_logs = Arc::clone(&logs);
let subscriber = tracing_subscriber::registry().with(
tracing_subscriber::fmt::layer()
.with_ansi(false)
.with_writer(move || AuditLogWriter(Arc::clone(&writer_logs))),
);
async move {
let client = LazyRemoteExecServerClient::new(
ExecServerTransportParams::websocket_url(websocket_url, Duration::from_secs(1)),
HttpClientFactory::new(OutboundProxyPolicy::ReqwestDefault),
)
.get()
.await
.expect("client should connect");
initialized_rx
.await
.expect("server should complete WebSocket initialization");
let mut state = SessionState::new(/*recoverable*/ true);
state.network_policy.audit = Some(NetworkPolicyAuditContext {
metadata: NetworkProxyAuditMetadata {
conversation_id: Some("trusted-conversation".to_string()),
user_account_id: Some("trusted-account".to_string()),
..NetworkProxyAuditMetadata::default()
},
execution_id: Some("trusted-execution".to_string()),
});
client
.inner
.insert_session(&ProcessId::from("trusted-process"), Arc::new(state))
.expect("trusted process should register");
for (process_id, host) in [
("forged-process", "forged.example"),
("trusted-process", "trusted.example"),
] {
handle_server_notification(
&client.inner,
JSONRPCNotification {
method: NETWORK_POLICY_DECISION_METHOD.to_string(),
params: Some(
serde_json::to_value(NetworkPolicyDecisionNotification {
process_id: ProcessId::from(process_id),
timestamp: "2026-08-11T12:00:00.000Z".to_string(),
scope: "domain".to_string(),
decision: "deny".to_string(),
source: "baseline_policy".to_string(),
reason: "not_allowed".to_string(),
protocol: ExecServerNetworkProtocol::HttpsConnect,
host: host.to_string(),
port: 443,
method: None,
client: None,
policy_override: false,
})
.expect("network policy decision should serialize"),
),
},
)
.await
.expect("controller should handle network policy notification");
}
let output = String::from_utf8(
logs.lock()
.unwrap_or_else(std::sync::PoisonError::into_inner)
.clone(),
)
.expect("audit log should be UTF-8");
assert!(!output.contains("forged.example"));
for expected in [
"codex_otel.log_only",
"trusted-conversation",
"trusted-account",
"trusted-execution",
] {
assert!(
output.contains(expected),
"missing `{expected}` in {output}"
);
}
release_tx.send(()).expect("server should be released");
}
.with_subscriber(subscriber)
.await;
server.await.expect("server should finish");
}
struct AuditLogWriter(Arc<Mutex<Vec<u8>>>);
impl std::io::Write for AuditLogWriter {
fn write(&mut self, bytes: &[u8]) -> std::io::Result<usize> {
self.0
.lock()
.unwrap_or_else(std::sync::PoisonError::into_inner)
.extend_from_slice(bytes);
Ok(bytes.len())
}
fn flush(&mut self) -> std::io::Result<()> {
Ok(())
}
}
#[tokio::test]
async fn abandoned_process_start_unregisters_and_cleans_up() {
let listener = TcpListener::bind("127.0.0.1:0")
.await
.expect("listener should bind");
let websocket_url = format!("ws://{}", listener.local_addr().expect("listener address"));
let (start_seen_tx, start_seen_rx) = oneshot::channel();
let (finish_start_tx, finish_start_rx) = oneshot::channel();
let server = tokio::spawn(async move {
let mut websocket = accept_websocket(&listener).await;
complete_websocket_initialize(&mut websocket, "p", Default::default()).await;
let JSONRPCMessage::Request(start) = read_jsonrpc_websocket(&mut websocket).await else {
panic!("expected process start request");
};
assert_eq!(start.method, EXEC_METHOD);
start_seen_tx.send(()).expect("start should be observed");
finish_start_rx.await.expect("start should be released");
write_jsonrpc_websocket(
&mut websocket,
JSONRPCMessage::Response(JSONRPCResponse {
id: start.id,
result: serde_json::json!({"processId": "pending-start"}),
}),
)
.await;
let JSONRPCMessage::Request(terminate) = read_jsonrpc_websocket(&mut websocket).await
else {
panic!("expected process terminate request");
};
assert_eq!(terminate.method, EXEC_TERMINATE_METHOD);
write_jsonrpc_websocket(
&mut websocket,
JSONRPCMessage::Response(JSONRPCResponse {
id: terminate.id,
result: serde_json::json!({"running": true}),
}),
)
.await;
});
let client = LazyRemoteExecServerClient::new(
ExecServerTransportParams::websocket_url(websocket_url, Duration::from_secs(1)),
HttpClientFactory::new(OutboundProxyPolicy::ReqwestDefault),
)
.get()
.await
.expect("client should connect");
let process_id = ProcessId::from("pending-start");
let start_client = client.clone();
let start_process_id = process_id.clone();
let start = tokio::spawn(async move {
let params = ExecParams {
metadata: Default::default(),
process_id: start_process_id,
argv: vec!["true".to_string()],
cwd: PathUri::from_host_native_path(std::env::current_dir().expect("cwd"))
.expect("cwd URI"),
shell_snapshot: None,
env_policy: None,
env: Default::default(),
tty: false,
pipe_stdin: false,
arg0: None,
sandbox: None,
enforce_managed_network: false,
managed_network: None,
network_proxy: None,
};
start_client
.start_process(params, /*network_policy_decider*/ None)
.await
});
start_seen_rx.await.expect("start should be observed");
let state = client
.inner
.get_session(&process_id)
.expect("pending process should be registered");
let decider: Arc<dyn NetworkPolicyDecider> =
Arc::new(|_request: NetworkPolicyRequest| async { NetworkDecision::Allow });
let decider_weak = Arc::downgrade(&decider);
state
.network_policy
.controller
.store(Some(Arc::new(NetworkPolicyDecisionController {
decider,
timeout: Duration::from_secs(30),
})));
start.abort();
assert!(start.await.is_err_and(|error| error.is_cancelled()));
assert!(state.network_policy.cancelled.is_cancelled());
assert!(client.inner.get_session(&process_id).is_none());
assert!(decider_weak.upgrade().is_none());
finish_start_tx.send(()).expect("start should be released");
server.await.expect("server task should finish");
}
#[tokio::test]
async fn policy_requests_use_process_decider_and_cancel_on_unregister() {
let span_exporter = InMemorySpanExporter::default();
let tracer_provider = SdkTracerProvider::builder()
.with_simple_exporter(span_exporter.clone())
.build();
let subscriber = tracing_subscriber::registry().with(
tracing_opentelemetry::layer()
.with_tracer(tracer_provider.tracer("exec-server-test"))
.with_filter(filter_fn(codex_otel::OtelProvider::trace_export_filter)),
);
let _subscriber = tracing::subscriber::set_default(subscriber);
tracing::callsite::rebuild_interest_cache();
let listener = TcpListener::bind("127.0.0.1:0")
.await
.expect("listener should bind");
let websocket_url = format!(
"ws://{}",
listener.local_addr().expect("listener should have address")
);
let process_id = ProcessId::from("policy-process");
let server_process_id = process_id.clone();
let (ready_tx, ready_rx) = oneshot::channel();
let (overflow_checked_tx, overflow_checked_rx) = oneshot::channel();
let (unregistered_tx, unregistered_rx) = oneshot::channel();
let server = tokio::spawn(async move {
let mut websocket = accept_websocket(&listener).await;
complete_websocket_initialize(
&mut websocket,
"policy-session",
/*expected_resume_session_id*/ None,
)
.await;
ready_rx.await.expect("process should be registered");
for (request_id, host, expected) in [
(0, "allowed.example", ExecServerNetworkPolicyDecision::Allow),
(
2,
"denied.example",
ExecServerNetworkPolicyDecision::Deny {
reason: "blocked".to_string(),
},
),
(
3,
"invalid host",
ExecServerNetworkPolicyDecision::Deny {
reason: "not_allowed".to_string(),
},
),
] {
write_jsonrpc_websocket(
&mut websocket,
policy_request(request_id, server_process_id.clone(), host),
)
.await;
assert_eq!(read_decision(&mut websocket, request_id).await, expected);
}
let first_pending_request_id = 100;
for offset in 0..MAX_IN_FLIGHT_SERVER_CALLS {
write_jsonrpc_websocket(
&mut websocket,
policy_request(
first_pending_request_id + offset as i64,
server_process_id.clone(),
"pending.example",
),
)
.await;
}
let overflow_request_id = first_pending_request_id + MAX_IN_FLIGHT_SERVER_CALLS as i64;
write_jsonrpc_websocket(
&mut websocket,
policy_request(
overflow_request_id,
server_process_id.clone(),
"pending.example",
),
)
.await;
assert_eq!(
read_decision(&mut websocket, overflow_request_id).await,
ExecServerNetworkPolicyDecision::Deny {
reason: "not_allowed".to_string(),
}
);
overflow_checked_tx.send(()).expect("overflow observed");
unregistered_rx
.await
.expect("process should be unregistered");
let post_unregister_request_id = 900;
write_jsonrpc_websocket(
&mut websocket,
policy_request(
post_unregister_request_id,
server_process_id,
"allowed.example",
),
)
.await;
assert_eq!(
read_decision(&mut websocket, post_unregister_request_id).await,
ExecServerNetworkPolicyDecision::Deny {
reason: "not_allowed".to_string(),
}
);
});
let client = LazyRemoteExecServerClient::new(
ExecServerTransportParams::WebSocketUrl {
websocket_url,
connect_timeout: Duration::from_secs(1),
initialize_timeout: Duration::from_secs(1),
http_headers: HeaderMap::new(),
},
HttpClientFactory::new(OutboundProxyPolicy::ReqwestDefault),
)
.get()
.await
.expect("client should connect");
let session = client
.register_session(&process_id)
.await
.expect("session should register");
let (started_tx, mut started_rx) = mpsc::unbounded_channel();
let (dropped_tx, mut dropped_rx) = mpsc::unbounded_channel();
let decider: Arc<dyn NetworkPolicyDecider> = Arc::new(move |request: NetworkPolicyRequest| {
let started_tx = started_tx.clone();
let dropped_tx = dropped_tx.clone();
async move {
assert_eq!(
tracing::Span::current()
.metadata()
.map(tracing::Metadata::name),
Some("codex.exec_server.request"),
"network policy decisions must run inside the inbound request span"
);
match request.host.as_str() {
"allowed.example" => NetworkDecision::Allow,
"denied.example" => NetworkDecision::deny("blocked"),
"pending.example" => {
started_tx.send(()).expect("decision should start");
let _drop_guard = PendingDecisionGuard(dropped_tx);
std::future::pending().await
}
host => panic!("unexpected policy host: {host}"),
}
}
});
session.state.network_policy.controller.store(Some(Arc::new(
NetworkPolicyDecisionController {
decider,
timeout: Duration::from_secs(30),
},
)));
ready_tx.send(()).expect("server should be waiting");
timeout(Duration::from_secs(5), async {
for _ in 0..MAX_IN_FLIGHT_SERVER_CALLS {
started_rx
.recv()
.await
.expect("pending decision should start");
}
})
.await
.expect("pending decisions should start");
overflow_checked_rx
.await
.expect("overflow should be observed");
session.unregister().await;
timeout(Duration::from_secs(5), async {
for _ in 0..MAX_IN_FLIGHT_SERVER_CALLS {
dropped_rx
.recv()
.await
.expect("unregistered decision should be dropped");
}
})
.await
.expect("unregistered decisions should be cancelled");
unregistered_tx
.send(())
.expect("server should verify late responses");
timeout(Duration::from_secs(2), server)
.await
.expect("policy routing should finish")
.expect("server task should finish");
tracer_provider.force_flush().expect("flush traces");
let spans = span_exporter.get_finished_spans().expect("span export");
let policy_spans = spans
.iter()
.filter(|span| span.name.as_ref() == NETWORK_POLICY_REQUEST_METHOD)
.collect::<Vec<_>>();
assert!(
!policy_spans.is_empty(),
"network policy requests should export server spans"
);
let outcomes = policy_spans
.iter()
.map(|span| {
span.attributes
.iter()
.find(|attribute| attribute.key.as_str() == "result")
.map(|attribute| attribute.value.as_str().into_owned())
})
.collect::<Vec<_>>();
assert!(
outcomes.iter().all(Option::is_some),
"completed, rejected, and cancelled policy requests must all record an outcome"
);
assert!(
outcomes
.iter()
.any(|outcome| outcome.as_deref() == Some("success")),
"completed and capacity-rejected requests should record successful responses"
);
assert!(
outcomes
.iter()
.any(|outcome| outcome.as_deref() == Some("disconnected")),
"cancelled requests should record disconnection"
);
}
|