mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
739908a12c
## Summary Add `requirements.toml` schema support for admin-defined network constraints in the requirements layer example config: ``` [experimental_network] enabled = true allowed_domains = ["api.openai.com"] denied_domains = ["example.com"] ```
523 lines
17 KiB
Rust
523 lines
17 KiB
Rust
//! Cloud-hosted config requirements for Codex.
|
|
//!
|
|
//! This crate fetches `requirements.toml` data from the backend as an alternative to loading it
|
|
//! from the local filesystem. It only applies to Business (aka Enterprise CBP) or Enterprise ChatGPT
|
|
//! customers.
|
|
//!
|
|
//! Today, fetching is best-effort: on error or timeout, Codex continues without cloud requirements.
|
|
//! We expect to tighten this so that Enterprise ChatGPT customers must successfully fetch these
|
|
//! requirements before Codex will run.
|
|
|
|
use async_trait::async_trait;
|
|
use codex_backend_client::Client as BackendClient;
|
|
use codex_core::AuthManager;
|
|
use codex_core::auth::CodexAuth;
|
|
use codex_core::config_loader::CloudRequirementsLoader;
|
|
use codex_core::config_loader::ConfigRequirementsToml;
|
|
use codex_core::util::backoff;
|
|
use codex_protocol::account::PlanType;
|
|
use std::sync::Arc;
|
|
use std::time::Duration;
|
|
use std::time::Instant;
|
|
use tokio::time::sleep;
|
|
use tokio::time::timeout;
|
|
|
|
const CLOUD_REQUIREMENTS_TIMEOUT: Duration = Duration::from_secs(15);
|
|
const CLOUD_REQUIREMENTS_MAX_ATTEMPTS: usize = 5;
|
|
|
|
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
|
|
enum FetchCloudRequirementsStatus {
|
|
BackendClientInit,
|
|
Request,
|
|
Parse,
|
|
}
|
|
|
|
#[async_trait]
|
|
trait RequirementsFetcher: Send + Sync {
|
|
/// Returns `Ok(None)` when there are no cloud requirements for the account.
|
|
///
|
|
/// Returning `Err` indicates cloud requirements could not be fetched.
|
|
async fn fetch_requirements(
|
|
&self,
|
|
auth: &CodexAuth,
|
|
) -> Result<Option<String>, FetchCloudRequirementsStatus>;
|
|
}
|
|
|
|
struct BackendRequirementsFetcher {
|
|
base_url: String,
|
|
}
|
|
|
|
impl BackendRequirementsFetcher {
|
|
fn new(base_url: String) -> Self {
|
|
Self { base_url }
|
|
}
|
|
}
|
|
|
|
#[async_trait]
|
|
impl RequirementsFetcher for BackendRequirementsFetcher {
|
|
async fn fetch_requirements(
|
|
&self,
|
|
auth: &CodexAuth,
|
|
) -> Result<Option<String>, FetchCloudRequirementsStatus> {
|
|
let client = BackendClient::from_auth(self.base_url.clone(), auth)
|
|
.inspect_err(|err| {
|
|
tracing::warn!(
|
|
error = %err,
|
|
"Failed to construct backend client for cloud requirements"
|
|
);
|
|
})
|
|
.map_err(|_| FetchCloudRequirementsStatus::BackendClientInit)?;
|
|
|
|
let response = client
|
|
.get_config_requirements_file()
|
|
.await
|
|
.inspect_err(|err| tracing::warn!(error = %err, "Failed to fetch cloud requirements"))
|
|
.map_err(|_| FetchCloudRequirementsStatus::Request)?;
|
|
|
|
let Some(contents) = response.contents else {
|
|
tracing::info!(
|
|
"Cloud requirements response missing contents; treating as no requirements"
|
|
);
|
|
return Ok(None);
|
|
};
|
|
|
|
Ok(Some(contents))
|
|
}
|
|
}
|
|
|
|
struct CloudRequirementsService {
|
|
auth_manager: Arc<AuthManager>,
|
|
fetcher: Arc<dyn RequirementsFetcher>,
|
|
timeout: Duration,
|
|
}
|
|
|
|
impl CloudRequirementsService {
|
|
fn new(
|
|
auth_manager: Arc<AuthManager>,
|
|
fetcher: Arc<dyn RequirementsFetcher>,
|
|
timeout: Duration,
|
|
) -> Self {
|
|
Self {
|
|
auth_manager,
|
|
fetcher,
|
|
timeout,
|
|
}
|
|
}
|
|
|
|
async fn fetch_with_timeout(&self) -> Option<ConfigRequirementsToml> {
|
|
let _timer =
|
|
codex_otel::start_global_timer("codex.cloud_requirements.fetch.duration_ms", &[]);
|
|
let started_at = Instant::now();
|
|
let result = timeout(self.timeout, self.fetch())
|
|
.await
|
|
.inspect_err(|_| {
|
|
tracing::warn!("Timed out waiting for cloud requirements; continuing without them");
|
|
})
|
|
.ok()?;
|
|
|
|
match result.as_ref() {
|
|
Some(requirements) => {
|
|
tracing::info!(
|
|
elapsed_ms = started_at.elapsed().as_millis(),
|
|
requirements = ?requirements,
|
|
"Cloud requirements load completed"
|
|
);
|
|
}
|
|
None => {
|
|
tracing::info!(
|
|
elapsed_ms = started_at.elapsed().as_millis(),
|
|
"Cloud requirements load completed (none)"
|
|
);
|
|
}
|
|
}
|
|
|
|
result
|
|
}
|
|
|
|
async fn fetch(&self) -> Option<ConfigRequirementsToml> {
|
|
let auth = self.auth_manager.auth().await?;
|
|
if !auth.is_chatgpt_auth()
|
|
|| !matches!(
|
|
auth.account_plan_type(),
|
|
Some(PlanType::Business | PlanType::Enterprise)
|
|
)
|
|
{
|
|
return None;
|
|
}
|
|
|
|
self.fetch_with_retries(&auth).await
|
|
}
|
|
|
|
async fn fetch_with_retries(&self, auth: &CodexAuth) -> Option<ConfigRequirementsToml> {
|
|
for attempt in 1..=CLOUD_REQUIREMENTS_MAX_ATTEMPTS {
|
|
let fetch_result = self
|
|
.fetcher
|
|
.fetch_requirements(auth)
|
|
.await
|
|
.and_then(|contents| {
|
|
contents.map_or(Ok(None), |contents| {
|
|
parse_cloud_requirements(&contents).map_err(|err| {
|
|
tracing::warn!(error = %err, "Failed to parse cloud requirements");
|
|
FetchCloudRequirementsStatus::Parse
|
|
})
|
|
})
|
|
});
|
|
|
|
match fetch_result {
|
|
Ok(requirements) => return requirements,
|
|
Err(status) => {
|
|
if attempt < CLOUD_REQUIREMENTS_MAX_ATTEMPTS {
|
|
tracing::warn!(
|
|
status = ?status,
|
|
attempt,
|
|
max_attempts = CLOUD_REQUIREMENTS_MAX_ATTEMPTS,
|
|
"Failed to fetch cloud requirements; retrying"
|
|
);
|
|
sleep(backoff(attempt as u64)).await;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
None
|
|
}
|
|
}
|
|
|
|
pub fn cloud_requirements_loader(
|
|
auth_manager: Arc<AuthManager>,
|
|
chatgpt_base_url: String,
|
|
) -> CloudRequirementsLoader {
|
|
let service = CloudRequirementsService::new(
|
|
auth_manager,
|
|
Arc::new(BackendRequirementsFetcher::new(chatgpt_base_url)),
|
|
CLOUD_REQUIREMENTS_TIMEOUT,
|
|
);
|
|
let task = tokio::spawn(async move { service.fetch_with_timeout().await });
|
|
CloudRequirementsLoader::new(async move {
|
|
task.await
|
|
.inspect_err(|err| tracing::warn!(error = %err, "Cloud requirements task failed"))
|
|
.ok()
|
|
.flatten()
|
|
})
|
|
}
|
|
|
|
fn parse_cloud_requirements(
|
|
contents: &str,
|
|
) -> Result<Option<ConfigRequirementsToml>, toml::de::Error> {
|
|
if contents.trim().is_empty() {
|
|
return Ok(None);
|
|
}
|
|
|
|
let requirements: ConfigRequirementsToml = toml::from_str(contents)?;
|
|
if requirements.is_empty() {
|
|
Ok(None)
|
|
} else {
|
|
Ok(Some(requirements))
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use base64::Engine;
|
|
use base64::engine::general_purpose::URL_SAFE_NO_PAD;
|
|
use codex_core::auth::AuthCredentialsStoreMode;
|
|
use codex_protocol::protocol::AskForApproval;
|
|
use pretty_assertions::assert_eq;
|
|
use serde_json::json;
|
|
use std::collections::VecDeque;
|
|
use std::future::pending;
|
|
use std::path::Path;
|
|
use std::sync::atomic::AtomicUsize;
|
|
use std::sync::atomic::Ordering;
|
|
use tempfile::tempdir;
|
|
|
|
fn write_auth_json(codex_home: &Path, value: serde_json::Value) -> std::io::Result<()> {
|
|
std::fs::write(codex_home.join("auth.json"), serde_json::to_string(&value)?)?;
|
|
Ok(())
|
|
}
|
|
|
|
fn auth_manager_with_api_key() -> Arc<AuthManager> {
|
|
let tmp = tempdir().expect("tempdir");
|
|
let auth_json = json!({
|
|
"OPENAI_API_KEY": "sk-test-key",
|
|
"tokens": null,
|
|
"last_refresh": null,
|
|
});
|
|
write_auth_json(tmp.path(), auth_json).expect("write auth");
|
|
Arc::new(AuthManager::new(
|
|
tmp.path().to_path_buf(),
|
|
false,
|
|
AuthCredentialsStoreMode::File,
|
|
))
|
|
}
|
|
|
|
fn auth_manager_with_plan(plan_type: &str) -> Arc<AuthManager> {
|
|
let tmp = tempdir().expect("tempdir");
|
|
let header = json!({ "alg": "none", "typ": "JWT" });
|
|
let auth_payload = json!({
|
|
"chatgpt_plan_type": plan_type,
|
|
"chatgpt_user_id": "user-12345",
|
|
"user_id": "user-12345",
|
|
});
|
|
let payload = json!({
|
|
"email": "user@example.com",
|
|
"https://api.openai.com/auth": auth_payload,
|
|
});
|
|
let header_b64 = URL_SAFE_NO_PAD.encode(serde_json::to_vec(&header).expect("header"));
|
|
let payload_b64 = URL_SAFE_NO_PAD.encode(serde_json::to_vec(&payload).expect("payload"));
|
|
let signature_b64 = URL_SAFE_NO_PAD.encode(b"sig");
|
|
let fake_jwt = format!("{header_b64}.{payload_b64}.{signature_b64}");
|
|
|
|
let auth_json = json!({
|
|
"OPENAI_API_KEY": null,
|
|
"tokens": {
|
|
"id_token": fake_jwt,
|
|
"access_token": "test-access-token",
|
|
"refresh_token": "test-refresh-token",
|
|
},
|
|
"last_refresh": null,
|
|
});
|
|
write_auth_json(tmp.path(), auth_json).expect("write auth");
|
|
Arc::new(AuthManager::new(
|
|
tmp.path().to_path_buf(),
|
|
false,
|
|
AuthCredentialsStoreMode::File,
|
|
))
|
|
}
|
|
|
|
fn parse_for_fetch(contents: Option<&str>) -> Option<ConfigRequirementsToml> {
|
|
contents.and_then(|contents| parse_cloud_requirements(contents).ok().flatten())
|
|
}
|
|
|
|
struct StaticFetcher {
|
|
contents: Option<String>,
|
|
}
|
|
|
|
#[async_trait::async_trait]
|
|
impl RequirementsFetcher for StaticFetcher {
|
|
async fn fetch_requirements(
|
|
&self,
|
|
_auth: &CodexAuth,
|
|
) -> Result<Option<String>, FetchCloudRequirementsStatus> {
|
|
Ok(self.contents.clone())
|
|
}
|
|
}
|
|
|
|
struct PendingFetcher;
|
|
|
|
#[async_trait::async_trait]
|
|
impl RequirementsFetcher for PendingFetcher {
|
|
async fn fetch_requirements(
|
|
&self,
|
|
_auth: &CodexAuth,
|
|
) -> Result<Option<String>, FetchCloudRequirementsStatus> {
|
|
pending::<()>().await;
|
|
Ok(None)
|
|
}
|
|
}
|
|
|
|
struct SequenceFetcher {
|
|
responses:
|
|
tokio::sync::Mutex<VecDeque<Result<Option<String>, FetchCloudRequirementsStatus>>>,
|
|
request_count: AtomicUsize,
|
|
}
|
|
|
|
impl SequenceFetcher {
|
|
fn new(responses: Vec<Result<Option<String>, FetchCloudRequirementsStatus>>) -> Self {
|
|
Self {
|
|
responses: tokio::sync::Mutex::new(VecDeque::from(responses)),
|
|
request_count: AtomicUsize::new(0),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[async_trait::async_trait]
|
|
impl RequirementsFetcher for SequenceFetcher {
|
|
async fn fetch_requirements(
|
|
&self,
|
|
_auth: &CodexAuth,
|
|
) -> Result<Option<String>, FetchCloudRequirementsStatus> {
|
|
self.request_count.fetch_add(1, Ordering::SeqCst);
|
|
let mut responses = self.responses.lock().await;
|
|
responses.pop_front().unwrap_or(Ok(None))
|
|
}
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn fetch_cloud_requirements_skips_non_chatgpt_auth() {
|
|
let auth_manager = auth_manager_with_api_key();
|
|
let service = CloudRequirementsService::new(
|
|
auth_manager,
|
|
Arc::new(StaticFetcher { contents: None }),
|
|
CLOUD_REQUIREMENTS_TIMEOUT,
|
|
);
|
|
let result = service.fetch().await;
|
|
assert!(result.is_none());
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn fetch_cloud_requirements_skips_non_business_or_enterprise_plan() {
|
|
let service = CloudRequirementsService::new(
|
|
auth_manager_with_plan("pro"),
|
|
Arc::new(StaticFetcher { contents: None }),
|
|
CLOUD_REQUIREMENTS_TIMEOUT,
|
|
);
|
|
let result = service.fetch().await;
|
|
assert!(result.is_none());
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn fetch_cloud_requirements_allows_business_plan() {
|
|
let service = CloudRequirementsService::new(
|
|
auth_manager_with_plan("business"),
|
|
Arc::new(StaticFetcher {
|
|
contents: Some("allowed_approval_policies = [\"never\"]".to_string()),
|
|
}),
|
|
CLOUD_REQUIREMENTS_TIMEOUT,
|
|
);
|
|
assert_eq!(
|
|
service.fetch().await,
|
|
Some(ConfigRequirementsToml {
|
|
allowed_approval_policies: Some(vec![AskForApproval::Never]),
|
|
allowed_sandbox_modes: None,
|
|
allowed_web_search_modes: None,
|
|
mcp_servers: None,
|
|
rules: None,
|
|
enforce_residency: None,
|
|
network: None,
|
|
})
|
|
);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn fetch_cloud_requirements_handles_missing_contents() {
|
|
let result = parse_for_fetch(None);
|
|
assert!(result.is_none());
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn fetch_cloud_requirements_handles_empty_contents() {
|
|
let result = parse_for_fetch(Some(" "));
|
|
assert!(result.is_none());
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn fetch_cloud_requirements_handles_invalid_toml() {
|
|
let result = parse_for_fetch(Some("not = ["));
|
|
assert!(result.is_none());
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn fetch_cloud_requirements_ignores_empty_requirements() {
|
|
let result = parse_for_fetch(Some("# comment"));
|
|
assert!(result.is_none());
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn fetch_cloud_requirements_parses_valid_toml() {
|
|
let result = parse_for_fetch(Some("allowed_approval_policies = [\"never\"]"));
|
|
|
|
assert_eq!(
|
|
result,
|
|
Some(ConfigRequirementsToml {
|
|
allowed_approval_policies: Some(vec![AskForApproval::Never]),
|
|
allowed_sandbox_modes: None,
|
|
allowed_web_search_modes: None,
|
|
mcp_servers: None,
|
|
rules: None,
|
|
enforce_residency: None,
|
|
network: None,
|
|
})
|
|
);
|
|
}
|
|
|
|
#[tokio::test(start_paused = true)]
|
|
async fn fetch_cloud_requirements_times_out() {
|
|
let auth_manager = auth_manager_with_plan("enterprise");
|
|
let service = CloudRequirementsService::new(
|
|
auth_manager,
|
|
Arc::new(PendingFetcher),
|
|
CLOUD_REQUIREMENTS_TIMEOUT,
|
|
);
|
|
let handle = tokio::spawn(async move { service.fetch_with_timeout().await });
|
|
tokio::time::advance(CLOUD_REQUIREMENTS_TIMEOUT + Duration::from_millis(1)).await;
|
|
|
|
let result = handle.await.expect("cloud requirements task");
|
|
assert!(result.is_none());
|
|
}
|
|
|
|
#[tokio::test(start_paused = true)]
|
|
async fn fetch_cloud_requirements_retries_until_success() {
|
|
let fetcher = Arc::new(SequenceFetcher::new(vec![
|
|
Err(FetchCloudRequirementsStatus::Request),
|
|
Ok(Some("allowed_approval_policies = [\"never\"]".to_string())),
|
|
]));
|
|
let service = CloudRequirementsService::new(
|
|
auth_manager_with_plan("business"),
|
|
fetcher.clone(),
|
|
CLOUD_REQUIREMENTS_TIMEOUT,
|
|
);
|
|
|
|
let handle = tokio::spawn(async move { service.fetch().await });
|
|
tokio::task::yield_now().await;
|
|
tokio::time::advance(Duration::from_secs(1)).await;
|
|
|
|
assert_eq!(
|
|
handle.await.expect("cloud requirements task"),
|
|
Some(ConfigRequirementsToml {
|
|
allowed_approval_policies: Some(vec![AskForApproval::Never]),
|
|
allowed_sandbox_modes: None,
|
|
allowed_web_search_modes: None,
|
|
mcp_servers: None,
|
|
rules: None,
|
|
enforce_residency: None,
|
|
network: None,
|
|
})
|
|
);
|
|
assert_eq!(fetcher.request_count.load(Ordering::SeqCst), 2);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn fetch_cloud_requirements_none_is_success_without_retry() {
|
|
let fetcher = Arc::new(SequenceFetcher::new(vec![
|
|
Ok(None),
|
|
Err(FetchCloudRequirementsStatus::Request),
|
|
]));
|
|
let service = CloudRequirementsService::new(
|
|
auth_manager_with_plan("enterprise"),
|
|
fetcher.clone(),
|
|
CLOUD_REQUIREMENTS_TIMEOUT,
|
|
);
|
|
|
|
assert!(service.fetch().await.is_none());
|
|
assert_eq!(fetcher.request_count.load(Ordering::SeqCst), 1);
|
|
}
|
|
|
|
#[tokio::test(start_paused = true)]
|
|
async fn fetch_cloud_requirements_stops_after_max_retries() {
|
|
let fetcher = Arc::new(SequenceFetcher::new(vec![
|
|
Err(
|
|
FetchCloudRequirementsStatus::Request
|
|
);
|
|
CLOUD_REQUIREMENTS_MAX_ATTEMPTS
|
|
]));
|
|
let service = CloudRequirementsService::new(
|
|
auth_manager_with_plan("enterprise"),
|
|
fetcher.clone(),
|
|
CLOUD_REQUIREMENTS_TIMEOUT,
|
|
);
|
|
|
|
let handle = tokio::spawn(async move { service.fetch().await });
|
|
tokio::task::yield_now().await;
|
|
tokio::time::advance(Duration::from_secs(5)).await;
|
|
tokio::task::yield_now().await;
|
|
|
|
assert!(handle.await.expect("cloud requirements task").is_none());
|
|
assert_eq!(
|
|
fetcher.request_count.load(Ordering::SeqCst),
|
|
CLOUD_REQUIREMENTS_MAX_ATTEMPTS
|
|
);
|
|
}
|
|
}
|