1use std::{env::current_dir, os::unix::fs::symlink, path::PathBuf, time::Duration};23use anyhow::{anyhow, Result};4use clap::{Parser, ValueEnum};5use fleet_base::{6 host::{Config, ConfigHost},7 opts::FleetOpts,8};9use itertools::Itertools as _;10use nix_eval::{nix_go, NixBuildBatch};11use tokio::{task::LocalSet, time::sleep};12use tracing::{error, field, info, info_span, warn, Instrument};1314#[derive(Parser)]15pub struct Deploy {16 17 #[clap(long)]18 disable_rollback: bool,19 20 action: DeployAction,21}2223#[derive(ValueEnum, Clone, Copy)]24enum DeployAction {25 26 Upload,27 28 Test,29 30 Boot,31 32 Switch,33}3435impl DeployAction {36 pub(crate) fn name(&self) -> Option<&'static str> {37 match self {38 Self::Upload => None,39 Self::Test => Some("test"),40 Self::Boot => Some("boot"),41 Self::Switch => Some("switch"),42 }43 }44 pub(crate) fn should_switch_profile(&self) -> bool {45 matches!(self, Self::Switch | Self::Boot)46 }47 pub(crate) fn should_activate(&self) -> bool {48 matches!(self, Self::Switch | Self::Test | Self::Boot)49 }50 pub(crate) fn should_create_rollback_marker(&self) -> bool {51 52 53 !matches!(self, Self::Upload)54 }55 pub(crate) fn should_schedule_rollback_run(&self) -> bool {56 matches!(self, Self::Switch | Self::Test)57 }58}5960#[derive(Parser, Clone)]61pub struct BuildSystems {62 63 64 #[clap(long, default_value = "toplevel")]65 build_attr: String,66}6768struct Generation {69 id: u32,70 current: bool,71 datetime: String,72}73async fn get_current_generation(host: &ConfigHost) -> Result<Generation> {74 let mut cmd = host.cmd("nix-env").await?;75 cmd.comparg("--profile", "/nix/var/nix/profiles/system")76 .arg("--list-generations");77 78 let data = cmd.sudo().run_string().await?;79 let generations = data80 .split('\n')81 .map(|e| e.trim())82 .filter(|&l| !l.is_empty())83 .filter_map(|g| {84 let gen: Option<Generation> = try {85 let mut parts = g.split_whitespace();86 let id = parts.next()?;87 let id: u32 = id.parse().ok()?;88 let date = parts.next()?;89 let time = parts.next()?;90 let current = if let Some(current) = parts.next() {91 if current == "(current)" {92 Some(true)93 } else {94 None95 }96 } else {97 Some(false)98 };99 let current = current?;100 if parts.next().is_some() {101 warn!("unexpected text after generation: {g}");102 }103 Generation {104 id,105 current,106 datetime: format!("{date} {time}"),107 }108 };109 if gen.is_none() {110 warn!("bad generation: {g}")111 }112 gen113 })114 .collect::<Vec<_>>();115 let current = generations116 .into_iter()117 .filter(|g| g.current)118 .at_most_one()119 .map_err(|_e| anyhow!("bad list-generations output"))?120 .ok_or_else(|| anyhow!("failed to find generation"))?;121 Ok(current)122}123124async fn deploy_task(125 action: DeployAction,126 host: &ConfigHost,127 built: PathBuf,128 specialisation: Option<String>,129 disable_rollback: bool,130) -> Result<()> {131 let mut failed = false;132 133 134 135 136 137 if !disable_rollback && action.should_create_rollback_marker() {138 let _span = info_span!("preparing").entered();139 info!("preparing for rollback");140 let generation = get_current_generation(host).await?;141 info!(142 "rollback target would be {} {}",143 generation.id, generation.datetime144 );145 {146 let mut cmd = host.cmd("sh").await?;147 cmd.arg("-c").arg(format!("mark=$(mktemp -p /etc -t fleet_rollback_marker.XXXXX) && echo -n {} > $mark && mv --no-clobber $mark /etc/fleet_rollback_marker", generation.id));148 if let Err(e) = cmd.sudo().run().await {149 error!("failed to set rollback marker: {e}");150 failed = true;151 }152 }153 154 155 156 157 158159 160 161 162 163 if action.should_schedule_rollback_run() {164 let mut cmd = host.cmd("systemd-run").await?;165 cmd.comparg("--on-active", "3min")166 .comparg("--unit", "rollback-watchdog-run")167 .arg("systemctl")168 .arg("start")169 .arg("rollback-watchdog.service");170 if let Err(e) = cmd.sudo().run().await {171 error!("failed to schedule rollback run: {e}");172 failed = true;173 }174 }175 }176177 if action.should_switch_profile() && !failed {178 info!("switching system profile generation");179 180 181 let mut cmd = host.cmd("nix").await?;182 cmd.arg("build");183 cmd.comparg("--profile", "/nix/var/nix/profiles/system");184 cmd.arg(&built);185 if let Err(e) = cmd.sudo().run_nix().await {186 error!("failed to switch system profile generation: {e}");187 failed = true;188 }189 }190191 192193 if action.should_activate() && !failed {194 let _span = info_span!("activating").entered();195 info!("executing activation script");196 let specialised = if let Some(specialisation) = specialisation {197 let mut specialised = built.join("specialisation");198 specialised.push(specialisation);199 specialised200 } else {201 built.clone()202 };203 let switch_script = specialised.join("bin/switch-to-configuration");204 let mut cmd = host.cmd(switch_script).in_current_span().await?;205 cmd.arg(action.name().expect("upload.should_activate == false"));206 if let Err(e) = cmd.sudo().run().in_current_span().await {207 error!("failed to activate: {e}");208 failed = true;209 }210 }211 if action.should_create_rollback_marker() {212 if !disable_rollback {213 if failed {214 if action.should_schedule_rollback_run() {215 info!("executing rollback");216 if let Err(e) = host217 .systemctl_start("rollback-watchdog.service")218 .instrument(info_span!("rollback"))219 .await220 {221 error!("failed to trigger rollback: {e}")222 }223 }224 } else {225 info!("trying to mark upgrade as successful");226 if let Err(e) = host227 .rm_file("/etc/fleet_rollback_marker", true)228 .in_current_span()229 .await230 {231 error!("failed to remove rollback marker. This is bad, as the system will be rolled back by watchdog: {e}")232 }233 }234 info!("disarming watchdog, just in case");235 if let Err(_e) = host.systemctl_stop("rollback-watchdog.timer").await {236 237 }238 if action.should_schedule_rollback_run() {239 if let Err(e) = host.systemctl_stop("rollback-watchdog-run.timer").await {240 error!("failed to disarm rollback run: {e}");241 }242 }243 } else if let Err(_e) = host244 .rm_file("/etc/fleet_rollback_marker", true)245 .in_current_span()246 .await247 {248 249 }250 }251 Ok(())252}253254async fn build_task(255 config: Config,256 hostname: String,257 build_attr: &str,258 batch: Option<NixBuildBatch>,259) -> Result<PathBuf> {260 info!("building");261 let host = config.host(&hostname).await?;262 263 let nixos = host.nixos_config().await?;264 let drv = nix_go!(nixos.system.build[{ build_attr }]);265 let outputs = drv.build_maybe_batch(batch).await?;266 let out_output = outputs267 .get("out")268 .ok_or_else(|| anyhow!("system build should produce \"out\" output"))?;269270 {271 info!("adding gc root");272 let mut cmd = config.local_host().cmd("nix").await?;273 cmd.arg("build")274 .comparg(275 "--profile",276 format!(277 "/nix/var/nix/profiles/{}-{hostname}",278 config.data().gc_root_prefix279 ),280 )281 .arg(out_output);282 cmd.sudo().run_nix().await?;283 }284285 Ok(out_output.clone())286}287288impl BuildSystems {289 pub async fn run(self, config: &Config, opts: &FleetOpts) -> Result<()> {290 let hosts = opts.filter_skipped(config.list_hosts().await?).await?;291 let set = LocalSet::new();292 let build_attr = self.build_attr.clone();293 let batch = (hosts.len() > 1).then(|| {294 config295 .nix_session296 .new_build_batch("build-hosts".to_string())297 });298 for host in hosts {299 let config = config.clone();300 let span = info_span!("build", host = field::display(&host.name));301 let hostname = host.name;302 let build_attr = build_attr.clone();303 let batch = batch.clone();304 set.spawn_local(305 (async move {306 let built = match build_task(config, hostname.clone(), &build_attr, batch).await307 {308 Ok(path) => path,309 Err(e) => {310 error!("failed to deploy host: {}", e);311 return;312 }313 };314 315 let mut out = current_dir().expect("cwd exists");316 out.push(format!("built-{}", hostname));317318 info!("linking iso image to {:?}", out);319 if let Err(e) = symlink(built, out) {320 error!("failed to symlink: {e}")321 }322 })323 .instrument(span),324 );325 }326 drop(batch);327 set.await;328 Ok(())329 }330}331332impl Deploy {333 pub async fn run(self, config: &Config, opts: &FleetOpts) -> Result<()> {334 let hosts = opts.filter_skipped(config.list_hosts().await?).await?;335 let set = LocalSet::new();336 let batch = (hosts.len() > 1).then(|| {337 config338 .nix_session339 .new_build_batch("deploy-hosts".to_string())340 });341 for host in hosts.into_iter() {342 let config = config.clone();343 let span = info_span!("deploy", host = field::display(&host.name));344 let hostname = host.name.clone();345 let local_host = config.local_host();346 let opts = opts.clone();347 let batch = batch.clone();348349 set.spawn_local(350 (async move {351 let built =352 match build_task(config.clone(), hostname.clone(), "toplevel", batch).await353 {354 Ok(path) => path,355 Err(e) => {356 error!("failed to deploy host: {}", e);357 return;358 }359 };360 if !opts.is_local(&hostname) {361 info!("uploading system closure");362 {363 364 365 366 367 368 let Ok(mut sign) = local_host.cmd("nix").await else {369 error!("failed to setup local");370 return;371 };372 373 sign.arg("store")374 .arg("sign")375 .comparg("--key-file", "/etc/nix/private-key")376 .arg("-r")377 .arg(&built);378 if let Err(e) = sign.sudo().run_nix().await {379 warn!("failed to sign store paths: {e}");380 };381 }382 let mut tries = 0;383 loop {384 match host.remote_derivation(&built).await {385 Ok(remote) => {386 assert!(remote == built, "CA derivations aren't implemented");387 break;388 }389 Err(e) if tries < 3 => {390 tries += 1;391 warn!("copy failure ({}/3): {}", tries, e);392 sleep(Duration::from_millis(5000)).await;393 }394 Err(e) => {395 error!("upload failed: {e}");396 return;397 }398 }399 }400 }401 if let Err(e) = deploy_task(402 self.action,403 &host,404 built,405 if let Ok(v) = opts.action_attr(&host, "specialisation").await {406 v407 } else {408 error!("unreachable? failed to get specialization");409 return;410 },411 self.disable_rollback,412 )413 .await414 {415 error!("activation failed: {e}");416 }417 })418 .instrument(span),419 );420 }421 drop(batch);422 set.await;423 Ok(())424 }425}