mirror of
https://github.com/openai/codex.git
synced 2026-04-28 18:32:04 +03:00
50 lines
1.7 KiB
Rust
50 lines
1.7 KiB
Rust
use std::collections::HashMap;
|
|
use std::os::fd::RawFd;
|
|
use std::path::PathBuf;
|
|
|
|
use serde::Deserialize;
|
|
use serde::Serialize;
|
|
|
|
/// 'exec-server escalate' reads this to find the inherited FD for the escalate socket.
|
|
pub(super) const ESCALATE_SOCKET_ENV_VAR: &str = "CODEX_ESCALATE_SOCKET";
|
|
|
|
/// The patched bash uses this to wrap exec() calls.
|
|
pub(super) const BASH_EXEC_WRAPPER_ENV_VAR: &str = "BASH_EXEC_WRAPPER";
|
|
|
|
/// The client sends this to the server to request an exec() call.
|
|
#[derive(Clone, Serialize, Deserialize, Debug, PartialEq, Eq)]
|
|
pub(super) struct EscalateRequest {
|
|
/// The absolute path to the executable to run, i.e. the first arg to exec.
|
|
pub(super) file: PathBuf,
|
|
/// The argv, including the program name (argv[0]).
|
|
pub(super) argv: Vec<String>,
|
|
pub(super) workdir: PathBuf,
|
|
pub(super) env: HashMap<String, String>,
|
|
}
|
|
|
|
/// The server sends this to the client to respond to an exec() request.
|
|
#[derive(Clone, Serialize, Deserialize, Debug, PartialEq, Eq)]
|
|
pub(super) struct EscalateResponse {
|
|
pub(super) action: EscalateAction,
|
|
}
|
|
|
|
#[derive(Clone, Serialize, Deserialize, Debug, PartialEq, Eq)]
|
|
pub(super) enum EscalateAction {
|
|
/// The command should be run directly by the client.
|
|
Run,
|
|
/// The command should be escalated to the server for execution.
|
|
Escalate,
|
|
}
|
|
|
|
/// The client sends this to the server to forward its open FDs.
|
|
#[derive(Clone, Serialize, Deserialize, Debug)]
|
|
pub(super) struct SuperExecMessage {
|
|
pub(super) fds: Vec<RawFd>,
|
|
}
|
|
|
|
/// The server responds when the exec()'d command has exited.
|
|
#[derive(Clone, Serialize, Deserialize, Debug)]
|
|
pub(super) struct SuperExecResult {
|
|
pub(super) exit_code: i32,
|
|
}
|