zuka
zuka/src/ci/runner.rs

worklyn / zukapublic

Agent-first git hosting. One Rust binary: git over HTTP and SSH, a REST API, MCP, CI, and multi-tenant isolation.

Get a copy: git clone https://zuka.worklyn.com/worklyn/zuka.git
zuka/src/ci/runner.rs
RSrunner.rs15.8 KBDownload
1// Executing a run.
2//
3// What this actually provides, stated plainly because the gap between claimed and
4// real isolation is where people get hurt:
5//
6// * a scrubbed environment — the child inherits nothing but an allowlist, so the
7// service's credentials are not readable from `/proc/self/environ`;
8// * rlimits on CPU, address space, file size and open files (process count is
9// opt-in: `RLIMIT_NPROC` is per-UID and means nothing without a runner uid);
10// * a wall-clock timeout that kills the whole process GROUP, because a step's
11// children are grandchildren of ours and killing the shell orphans them;
12// * a bounded log, so output cannot fill the disk;
13// * a workspace that is deleted afterwards.
14//
15// What it does NOT provide, in standalone mode: a container, a network namespace, or
16// a separate uid unless the operator configured one. **Standalone CI is not a
17// security boundary** — anyone who can push can run code as the service user. It is
18// off by default and the README says this in the same words.
19//
20// A step allowlist was considered and rejected: `sh -c` defeats it in one character.
21// Enforcement is at the OS or it is not enforcement.
22
23use crate::brand;
24use crate::ci::run::{Run, RunStore, Status};
25use crate::ci::spec::Spec;
26use crate::config::Config;
27use crate::git::validate::Name;
28use std::path::Path;
29use std::process::Stdio;
30use std::time::Duration;
31use tokio::io::AsyncReadExt;
32use tokio::process::Command;
33
34/// Environment variables the child is allowed to see, beyond the ones we set.
35const INHERITED: &[&str] = &["PATH", "HOME", "LANG", "TZ"];
36
37/// Everything a step needs that does not change between steps.
38struct Context<'a> {
39 config: &'a Config,
40 runs: &'a RunStore,
41 account: &'a Name,
42 repo: &'a Name,
43 run: &'a Run,
44 workspace: &'a Path,
45}
46
47impl Context<'_> {
48 fn log(&self, text: &str) {
49 let _ = self.runs.append_log(
50 self.account,
51 self.repo,
52 &self.run.id,
53 text.as_bytes(),
54 self.config.ci_log_bytes,
55 );
56 }
57}
58
59pub struct Outcome {
60 pub status: Status,
61 pub exit_code: Option<i32>,
62 pub detail: Option<String>,
63}
64
65/// Check out a revision and run its steps.
66pub async fn execute(
67 config: &Config,
68 runs: &RunStore,
69 account: &Name,
70 repo: &Name,
71 run: &Run,
72 git_dir: &Path,
73) -> Outcome {
74 let workspace = config
75 .data_dir
76 .join("tmp")
77 .join("work")
78 .join(format!("{}-{}", run.id, run.created_at));
79
80 let outcome = execute_in(config, runs, account, repo, run, git_dir, &workspace).await;
81
82 // The workspace is scratch and may contain anything the run wrote.
83 if let Err(e) = std::fs::remove_dir_all(&workspace) {
84 if e.kind() != std::io::ErrorKind::NotFound {
85 eprintln!("[ci] could not clean {}: {e}", workspace.display());
86 }
87 }
88 outcome
89}
90
91async fn execute_in(
92 config: &Config,
93 runs: &RunStore,
94 account: &Name,
95 repo: &Name,
96 run: &Run,
97 git_dir: &Path,
98 workspace: &Path,
99) -> Outcome {
100 let ctx = Context {
101 config,
102 runs,
103 account,
104 repo,
105 run,
106 workspace,
107 };
108
109 if let Err(e) = std::fs::create_dir_all(workspace) {
110 return internal(format!("could not create a workspace: {e}"));
111 }
112
113 // Check out into the workspace without a clone: the object database is right
114 // there, and `--no-checkout` plus `checkout-index` avoids a second copy of it.
115 ctx.log(&format!("$ checkout {}\n", run.sha));
116 if let Err(e) = checkout(git_dir, &run.sha, workspace).await {
117 ctx.log(&format!("{e}\n"));
118 return Outcome {
119 status: Status::Failed,
120 exit_code: None,
121 detail: Some("checkout failed".into()),
122 };
123 }
124
125 let spec_path = workspace.join(brand::ci_filename());
126 let source = match std::fs::read_to_string(&spec_path) {
127 Ok(source) => source,
128 Err(_) => {
129 ctx.log(&format!(
130 "no {} in this revision; nothing to run\n",
131 brand::ci_filename()
132 ));
133 return Outcome {
134 status: Status::Succeeded,
135 exit_code: Some(0),
136 detail: Some("no spec".into()),
137 };
138 }
139 };
140
141 let spec = match Spec::parse(&source) {
142 Ok(spec) => spec,
143 Err(e) => {
144 ctx.log(&format!("{}\n", e.detail_for_user()));
145 return Outcome {
146 status: Status::Failed,
147 exit_code: None,
148 detail: Some("invalid spec".into()),
149 };
150 }
151 };
152
153 if !spec.runs_for(&run.git_ref) {
154 ctx.log(&format!(
155 "{} is not in run.branches; skipped\n",
156 run.git_ref
157 ));
158 return Outcome {
159 status: Status::Succeeded,
160 exit_code: Some(0),
161 detail: Some("skipped".into()),
162 };
163 }
164
165 let deadline = spec.timeout(config.ci_timeout);
166
167 // Say so when the host ceiling overrides what the repository asked for. Silently
168 // clamping is how a repository ends up reporting "timed out after 600s" when its
169 // spec plainly says 2400, and the only way to find out is to read the source.
170 let requested = Duration::from_secs(spec.run.timeout_secs);
171 if requested > deadline {
172 ctx.log(&format!(
173 "note: {} asks for a {}s timeout; this host allows at most {}s\n",
174 brand::ci_filename(),
175 requested.as_secs(),
176 deadline.as_secs(),
177 ));
178 }
179
180 let started = std::time::Instant::now();
181
182 for step in &spec.run.steps {
183 let remaining = deadline.saturating_sub(started.elapsed());
184 if remaining.is_zero() {
185 return timed_out(&ctx, deadline);
186 }
187
188 ctx.log(&format!("$ {step}\n"));
189 match run_step(&ctx, step, remaining).await {
190 StepResult::Ok => {}
191 StepResult::Failed(code) => {
192 ctx.log(&format!("step failed with exit code {code}\n"));
193 return Outcome {
194 status: Status::Failed,
195 exit_code: Some(code),
196 detail: Some(format!("step failed: {step}")),
197 };
198 }
199 StepResult::TimedOut => return timed_out(&ctx, deadline),
200 StepResult::Internal(detail) => {
201 ctx.log(&format!("{detail}\n"));
202 return internal(detail);
203 }
204 }
205 }
206
207 ctx.log("all steps succeeded\n");
208 Outcome {
209 status: Status::Succeeded,
210 exit_code: Some(0),
211 detail: None,
212 }
213}
214
215enum StepResult {
216 Ok,
217 Failed(i32),
218 TimedOut,
219 Internal(String),
220}
221
222async fn run_step(ctx: &Context<'_>, step: &str, remaining: Duration) -> StepResult {
223 let (config, runs, run) = (ctx.config, ctx.runs, ctx.run);
224 let (account, repo) = (ctx.account, ctx.repo);
225
226 let mut command = Command::new("/bin/sh");
227 command
228 .arg("-c")
229 .arg(step)
230 .current_dir(ctx.workspace)
231 .env_clear()
232 .env("CI", "1")
233 .env(brand::env_name("CI"), "1")
234 .env(brand::env_name("RUN_ID"), &run.id)
235 .env(brand::env_name("RUN_NUMBER"), run.number.to_string())
236 .env(brand::env_name("SHA"), &run.sha)
237 .env(brand::env_name("REF"), &run.git_ref)
238 .stdin(Stdio::null())
239 .stdout(Stdio::piped())
240 .stderr(Stdio::piped())
241 .kill_on_drop(true);
242
243 for key in INHERITED {
244 if let Ok(value) = std::env::var(key) {
245 command.env(key, value);
246 }
247 }
248
249 #[cfg(unix)]
250 {
251 command.process_group(0);
252 apply_limits(&mut command, config);
253 }
254
255 let mut child = match command.spawn() {
256 Ok(child) => child,
257 Err(e) => return StepResult::Internal(format!("could not start the step: {e}")),
258 };
259 let pid = child.id();
260
261 let mut stdout = child.stdout.take().expect("stdout is piped");
262 let mut stderr = child.stderr.take().expect("stderr is piped");
263 let cap = config.ci_log_bytes;
264
265 // Both pipes drain concurrently. A step that fills stderr while we read only
266 // stdout blocks forever on a 64 KiB pipe.
267 let pump = async {
268 let mut out = [0u8; 8192];
269 let mut err = [0u8; 8192];
270 loop {
271 tokio::select! {
272 read = stdout.read(&mut out) => match read {
273 Ok(0) | Err(_) => break,
274 Ok(n) => { let _ = runs.append_log(account, repo, &run.id, &out[..n], cap); }
275 },
276 read = stderr.read(&mut err) => match read {
277 Ok(0) | Err(_) => break,
278 Ok(n) => { let _ = runs.append_log(account, repo, &run.id, &err[..n], cap); }
279 },
280 }
281 }
282 // Whichever pipe closed first, drain the other.
283 let mut rest = Vec::new();
284 let _ = stdout.read_to_end(&mut rest).await;
285 let _ = runs.append_log(account, repo, &run.id, &rest, cap);
286 rest.clear();
287 let _ = stderr.read_to_end(&mut rest).await;
288 let _ = runs.append_log(account, repo, &run.id, &rest, cap);
289 };
290
291 let waited = tokio::time::timeout(remaining, async {
292 pump.await;
293 child.wait().await
294 })
295 .await;
296
297 match waited {
298 Err(_) => {
299 kill_group(pid);
300 StepResult::TimedOut
301 }
302 Ok(Err(e)) => StepResult::Internal(format!("could not wait for the step: {e}")),
303 Ok(Ok(status)) if status.success() => StepResult::Ok,
304 Ok(Ok(status)) => StepResult::Failed(status.code().unwrap_or(-1)),
305 }
306}
307
308/// Apply resource limits in the child, between fork and exec.
309#[cfg(unix)]
310fn apply_limits(command: &mut Command, config: &Config) {
311 let cpu = config.ci_timeout.as_secs().max(1);
312 let memory = config.ci_memory_bytes;
313 let file_size = config.ci_file_bytes;
314 let processes = config.ci_max_processes;
315
316 // SAFETY: only async-signal-safe calls between fork and exec. `setrlimit` is.
317 unsafe {
318 command.pre_exec(move || {
319 set_limit(libc::RLIMIT_CPU, cpu);
320 // Independent of the memory limit. This was once derived from it, and
321 // turning the memory limit off therefore shrank the file limit to a few
322 // megabytes — which surfaced as the linker being killed by SIGXFSZ while
323 // writing a test binary, an error that names neither limit.
324 if file_size > 0 {
325 set_limit(libc::RLIMIT_FSIZE, file_size);
326 }
327 set_limit(libc::RLIMIT_NOFILE, 1024);
328 // RLIMIT_AS caps the address space a process may map, which is not the
329 // same thing as the memory it uses. V8, the JVM and the Go runtime all
330 // reserve multi-gigabyte regions up front and touch almost none of it,
331 // so a limit set to a sensible working-set size kills them on startup
332 // with an out-of-memory message that has nothing to do with memory.
333 // Anything running a JavaScript or Java toolchain in CI needs this set
334 // far above the real requirement, or set to 0 and bounded by a cgroup
335 // instead — which is the control that actually measures usage.
336 if memory > 0 {
337 set_limit(libc::RLIMIT_AS, memory);
338 }
339 // Off unless the operator asked for it. RLIMIT_NPROC is per-UID: with
340 // the runner sharing a uid with the service it counts processes we do
341 // not control, so a useful-looking value makes `fork` fail on the first
342 // step. It becomes meaningful — and the fork-bomb protection it looks
343 // like — only alongside a dedicated runner uid.
344 if processes > 0 {
345 set_limit(libc::RLIMIT_NPROC, processes);
346 }
347 Ok(())
348 });
349 }
350}
351
352/// Type of the `resource` argument to `setrlimit`.
353///
354/// glibc declares it `__rlimit_resource_t` (u32); musl and the BSDs use `c_int`.
355/// The discriminator is the C library, not the OS — keying on `target_os` compiles
356/// on linux-gnu and fails on linux-musl, which is the target that produces the
357/// static binary this service ships as.
358#[cfg(all(unix, target_os = "linux", target_env = "gnu"))]
359type RlimitResource = u32;
360#[cfg(all(unix, not(all(target_os = "linux", target_env = "gnu"))))]
361type RlimitResource = libc::c_int;
362
363#[cfg(unix)]
364fn set_limit(resource: RlimitResource, value: u64) {
365 let limit = libc::rlimit {
366 rlim_cur: value as libc::rlim_t,
367 rlim_max: value as libc::rlim_t,
368 };
369 // SAFETY: `limit` is a valid, fully initialised rlimit for `resource`.
370 unsafe {
371 libc::setrlimit(resource, &limit);
372 }
373}
374
375fn kill_group(pid: Option<u32>) {
376 #[cfg(unix)]
377 if let Some(pid) = pid {
378 // SAFETY: spawned with `process_group(0)`, so the pgid is the child's own
379 // pid and no unrelated process shares it.
380 unsafe {
381 libc::killpg(pid as libc::pid_t, libc::SIGKILL);
382 }
383 }
384 let _ = pid;
385}
386
387/// Materialise a revision into a workspace.
388///
389/// A temporary index plus `checkout-index`, not a clone and not `archive | tar`:
390/// the object database is already on this disk, so cloning would copy all of it to
391/// read one tree, and piping through `tar` would add an external dependency and a
392/// second process to supervise. This is pure git and writes only under
393/// `GIT_WORK_TREE`.
394async fn checkout(git_dir: &Path, sha: &str, workspace: &Path) -> std::result::Result<(), String> {
395 let index = workspace.with_extension("index");
396
397 let run = |args: Vec<String>| {
398 let index = index.clone();
399 async move {
400 let output = Command::new("git")
401 .env_clear()
402 .env(
403 "PATH",
404 std::env::var("PATH").unwrap_or_else(|_| "/usr/bin:/bin".into()),
405 )
406 .env("GIT_CONFIG_NOSYSTEM", "1")
407 .env("GIT_DIR", git_dir)
408 .env("GIT_WORK_TREE", workspace)
409 .env("GIT_INDEX_FILE", &index)
410 .args(&args)
411 .output()
412 .await
413 .map_err(|e| format!("spawn git: {e}"))?;
414
415 if output.status.success() {
416 Ok(())
417 } else {
418 Err(format!(
419 "git {} failed: {}",
420 args.first().cloned().unwrap_or_default(),
421 String::from_utf8_lossy(&output.stderr).trim()
422 ))
423 }
424 }
425 };
426
427 let outcome = async {
428 run(vec!["read-tree".into(), sha.to_string()]).await?;
429 run(vec![
430 "checkout-index".into(),
431 "--all".into(),
432 "--force".into(),
433 ])
434 .await
435 }
436 .await;
437
438 // The index is scratch and must not outlive the checkout.
439 let _ = std::fs::remove_file(&index);
440 outcome
441}
442
443fn timed_out(ctx: &Context<'_>, deadline: Duration) -> Outcome {
444 ctx.log(&format!("run exceeded its {deadline:?} timeout\n"));
445 Outcome {
446 status: Status::TimedOut,
447 exit_code: None,
448 detail: Some(format!("timed out after {deadline:?}")),
449 }
450}
451
452fn internal(detail: String) -> Outcome {
453 Outcome {
454 status: Status::Failed,
455 exit_code: None,
456 detail: Some(detail),
457 }
458}
459
460#[cfg(test)]
461mod tests {
462 use super::*;
463
464 #[test]
465 fn the_inherited_environment_is_an_allowlist_not_a_passthrough() {
466 // The service's own secrets must not be readable from a step.
467 for dangerous in [
468 "KV_URL",
469 "DENO_KV_ACCESS_TOKEN",
470 "AWS_SECRET_ACCESS_KEY",
471 "LD_PRELOAD",
472 "GIT_CONFIG_GLOBAL",
473 ] {
474 assert!(
475 !INHERITED.contains(&dangerous),
476 "{dangerous} must not be inherited by a CI step"
477 );
478 }
479 assert!(
480 INHERITED.contains(&"PATH"),
481 "a step needs to find its tools"
482 );
483 }
484}