Skip to main content

mj_controller/
worker_upgrade.rs

1//! Background worker-binary upgrade policy and coordination.
2//!
3//! A running session keeps the worker it started with, so a session that is
4//! never stopped never gains anything a newer daemon's worker learned. This
5//! coordinator watches the same session views the recovery coordinator does
6//! and, when a session is quiet and its worker is a different build from the
7//! one this controller would install, replaces it in place.
8//!
9//! Quiet is the whole safety argument: stopping a worker tears down the ACP
10//! bridge with it, so an upgrade may only run when nothing would be lost.
11
12use std::collections::BTreeMap;
13use std::sync::Arc;
14use std::sync::atomic::{AtomicBool, Ordering};
15use std::time::Duration;
16
17use chrono::{DateTime, Utc};
18use tokio::sync::mpsc;
19
20use crate::controller::{Controller, WorkerUpgradeOutcome};
21use crate::recovery::{backoff_delay, elapsed_at_least};
22use crate::recovery_gate::{RecoveryGate, RecoveryObserver};
23use crate::session_manager::SessionManagerControl;
24use crate::targets::CancellableProcessExecutor;
25use mj_core::config::Config;
26use mj_core::state::{SessionRecord, SessionState, State};
27
28/// How long a failed upgrade waits before it is tried again, doubling per
29/// consecutive failure. A session that is quiet produces an observation every
30/// sync tick, so without this one broken target would be retried forever.
31const WORKER_UPGRADE_RETRY_INTERVAL: Duration = Duration::from_secs(10 * 60);
32
33/// Ceiling on the widening retry delay, so a target that is broken rather than
34/// blipping is still probed, just rarely.
35const MAX_WORKER_UPGRADE_RETRY_INTERVAL: Duration = Duration::from_secs(2 * 60 * 60);
36
37/// Upper bound on one upgrade. Stopping, installing, starting and waiting for
38/// a recovered journal all happen inside it; past this the attempt is a
39/// reported failure rather than a session whose upgrade never ends.
40const WORKER_UPGRADE_TIMEOUT: Duration = Duration::from_secs(15 * 60);
41
42/// One session view, reduced to what the upgrade decision reads.
43#[derive(Debug, Clone)]
44pub struct WorkerUpgradeObservation {
45    pub session: SessionRecord,
46    pub config: Config,
47    /// Content address the connected worker reported in hello, or `None` when
48    /// it is too old to report one. `None` counts as outdated.
49    pub worker_build: Option<String>,
50    /// Whether replacing the worker now would destroy nothing. See
51    /// [`mj_core::relay::RelayOperationalState::is_quiet`].
52    ///
53    /// An observer may skip reporting a session that is working - the daemon
54    /// does, to keep the config clone off the streaming path - but the rule
55    /// lives here, so a busy observation that does arrive is still refused.
56    pub quiet: bool,
57}
58
59/// Reports session activity to the upgrade coordinator.
60///
61/// Like the recovery observer, this is a queued hand-off: the caller is an
62/// event loop and must never wait on an upgrade decision.
63#[derive(Clone)]
64pub struct WorkerUpgradeObserver {
65    observations: mpsc::UnboundedSender<WorkerUpgradeObservation>,
66}
67
68impl WorkerUpgradeObserver {
69    pub fn observe(&self, observation: WorkerUpgradeObservation) {
70        let session_id = observation.session.id.clone();
71        if let Err(error) = self.observations.send(observation) {
72            tracing::debug!(
73                %session_id,
74                %error,
75                "worker upgrade observation dropped because the coordinator stopped"
76            );
77        }
78    }
79}
80
81#[derive(Debug, Clone)]
82pub struct WorkerUpgradeResult {
83    pub session_id: String,
84    pub outcome: Result<WorkerUpgradeOutcome, String>,
85    /// The attempt was preempted by a lifecycle operation or by coordinator
86    /// shutdown. It judged nothing, so it is neither a success nor a failure.
87    pub cancelled: bool,
88}
89
90pub struct WorkerUpgradeCoordinator {
91    observer: WorkerUpgradeObserver,
92    results: mpsc::UnboundedReceiver<WorkerUpgradeResult>,
93    cancelled: Arc<AtomicBool>,
94    gate: Arc<RecoveryGate>,
95}
96
97impl Drop for WorkerUpgradeCoordinator {
98    fn drop(&mut self) {
99        // Stop the coordinator loop, then cancel every attempt already
100        // running. The gate is shared, so this also stops recovery copies -
101        // which is what dropping either coordinator means: the process that
102        // owns both is going away.
103        self.cancelled.store(true, Ordering::Release);
104        self.gate.cancel_all();
105    }
106}
107
108impl WorkerUpgradeCoordinator {
109    /// Start the coordinator, sharing the recovery observer's gate so a
110    /// recovery copy and an upgrade never touch one session at the same time.
111    pub fn spawn(session_manager: SessionManagerControl, recovery: &RecoveryObserver) -> Self {
112        let (observations_tx, mut observations_rx) =
113            mpsc::unbounded_channel::<WorkerUpgradeObservation>();
114        let (completed_tx, mut completed_rx) = mpsc::unbounded_channel::<WorkerUpgradeResult>();
115        let (results_tx, results_rx) = mpsc::unbounded_channel();
116        let gate = recovery.gate.clone();
117        let coordinator_gate = gate.clone();
118        let cancelled = Arc::new(AtomicBool::new(false));
119        let coordinator_cancelled = cancelled.clone();
120        tokio::spawn(async move {
121            let mut policies = BTreeMap::<String, PolicyState>::new();
122            loop {
123                tokio::select! {
124                    observed = observations_rx.recv() => {
125                        let Some(observation) = observed else { break };
126                        if coordinator_cancelled.load(Ordering::Acquire) {
127                            break;
128                        }
129                        let session_id = observation.session.id.clone();
130                        let policy = policies.entry(session_id.clone()).or_default();
131                        policy.observe(&observation);
132                        if !policy.due(&observation, Utc::now()) {
133                            continue;
134                        }
135                        let Some(upgrade_cancelled) = coordinator_gate.try_start(&session_id)
136                        else {
137                            continue;
138                        };
139                        policy.attempt_started();
140                        let completed_tx = completed_tx.clone();
141                        let session_manager = session_manager.clone();
142                        let task_cancelled = upgrade_cancelled.clone();
143                        let handle = tokio::runtime::Handle::current();
144                        let task_session_id = session_id.clone();
145                        tokio::spawn(async move {
146                            let joined = tokio::task::spawn_blocking(move || {
147                                let mut state = State::default();
148                                state
149                                    .sessions
150                                    .insert(task_session_id.clone(), observation.session);
151                                let controller = Controller {
152                                    config: observation.config,
153                                    state,
154                                };
155                                let executor = CancellableProcessExecutor::new(task_cancelled)
156                                    .with_deadline(WORKER_UPGRADE_TIMEOUT);
157                                handle
158                                    .block_on(controller.upgrade_session_worker(
159                                        &task_session_id,
160                                        &executor,
161                                        &session_manager,
162                                        observation.worker_build.as_deref(),
163                                    ))
164                                    .map_err(|error| format!("{error:#}"))
165                            })
166                            .await;
167                            let outcome = match joined {
168                                Ok(outcome) => outcome,
169                                Err(error) => Err(format!("worker upgrade task failed: {error}")),
170                            };
171                            let result = WorkerUpgradeResult {
172                                session_id,
173                                outcome,
174                                cancelled: upgrade_cancelled.load(Ordering::Acquire),
175                            };
176                            let result_session_id = result.session_id.clone();
177                            if let Err(error) = completed_tx.send(result) {
178                                tracing::debug!(
179                                    session_id = %result_session_id,
180                                    %error,
181                                    "worker upgrade result dropped because the coordinator stopped"
182                                );
183                            }
184                        });
185                    }
186                    completed = completed_rx.recv() => {
187                        let Some(result) = completed else { break };
188                        coordinator_gate.finish(&result.session_id);
189                        let policy = policies.entry(result.session_id.clone()).or_default();
190                        policy.record(&result, Utc::now());
191                        let result_session_id = result.session_id.clone();
192                        if let Err(error) = results_tx.send(result) {
193                            tracing::debug!(
194                                session_id = %result_session_id,
195                                %error,
196                                "worker upgrade result dropped because its consumer stopped"
197                            );
198                        }
199                    }
200                }
201            }
202        });
203        Self {
204            observer: WorkerUpgradeObserver {
205                observations: observations_tx,
206            },
207            results: results_rx,
208            cancelled,
209            gate,
210        }
211    }
212
213    pub fn observer(&self) -> WorkerUpgradeObserver {
214        self.observer.clone()
215    }
216
217    pub fn try_result(&mut self) -> Option<WorkerUpgradeResult> {
218        self.results.try_recv().ok()
219    }
220}
221
222/// What the coordinator remembers about one session between observations.
223#[derive(Debug, Default, PartialEq, Eq)]
224struct PolicyState {
225    /// The build proved current for this coordinator. While the observed
226    /// build still matches it, no attempt is needed and nothing is hashed.
227    current_build: Option<String>,
228    /// An attempt is running. The gate enforces this too, but it is shared, so
229    /// the policy keeps its own record of what it started.
230    attempt_in_flight: bool,
231    failed_at: Option<DateTime<Utc>>,
232    consecutive_failures: u32,
233}
234
235impl PolicyState {
236    /// Whether an upgrade attempt should start for this observation.
237    fn due(&self, observation: &WorkerUpgradeObservation, now: DateTime<Utc>) -> bool {
238        // Killing a worker mid-turn destroys the turn, and a session that is
239        // shutting down or already stopped has no worker worth replacing.
240        if !observation.quiet
241            || observation.session.state != SessionState::Running
242            || self.attempt_in_flight
243        {
244            return false;
245        }
246        if self.worker_is_known_current(observation.worker_build.as_deref()) {
247            return false;
248        }
249        self.failed_at.is_none_or(|failed_at| {
250            elapsed_at_least(
251                failed_at,
252                now,
253                backoff_delay(
254                    WORKER_UPGRADE_RETRY_INTERVAL,
255                    MAX_WORKER_UPGRADE_RETRY_INTERVAL,
256                    self.consecutive_failures,
257                ),
258            )
259        })
260    }
261
262    /// Whether a previous attempt proved this exact build current. A worker
263    /// reporting no build is never current: it predates the field, so it
264    /// predates this controller.
265    fn worker_is_known_current(&self, worker_build: Option<&str>) -> bool {
266        let (Some(observed), Some(current)) = (worker_build, self.current_build.as_deref()) else {
267            return false;
268        };
269        observed == current
270    }
271
272    /// Fold in what one observation proves, before deciding whether to act.
273    ///
274    /// The one thing it can prove is that the last upgrade took: the worker
275    /// now reports the build that upgrade installed. That releases the
276    /// cooldown an upgrade leaves behind.
277    fn observe(&mut self, observation: &WorkerUpgradeObservation) {
278        if self.current_build.is_some()
279            && observation.worker_build.as_deref() == self.current_build.as_deref()
280        {
281            self.failed_at = None;
282            self.consecutive_failures = 0;
283        }
284    }
285
286    fn attempt_started(&mut self) {
287        self.attempt_in_flight = true;
288    }
289
290    fn record(&mut self, result: &WorkerUpgradeResult, now: DateTime<Utc>) {
291        self.attempt_in_flight = false;
292        if result.cancelled {
293            // A preempted attempt judged nothing: it must neither be counted
294            // as a failure nor suppress the next observation.
295            return;
296        }
297        match &result.outcome {
298            Ok(WorkerUpgradeOutcome::Deferred) => {
299                // The session started working between the observation and the
300                // attempt. That is ordinary, and the next quiet observation
301                // tries again.
302                self.failed_at = None;
303                self.consecutive_failures = 0;
304            }
305            Ok(outcome @ WorkerUpgradeOutcome::AlreadyCurrent { .. }) => {
306                self.failed_at = None;
307                self.consecutive_failures = 0;
308                self.current_build = outcome.build().map(str::to_owned);
309            }
310            Ok(outcome @ WorkerUpgradeOutcome::Upgraded { .. }) => {
311                // The worker this session runs now, so the next observation
312                // reporting it needs no attempt - and, through `observe`,
313                // clears the cooldown below.
314                self.current_build = outcome.build().map(str::to_owned);
315                // An upgrade that did not take would otherwise restart this
316                // worker on every sync tick, forever. The same widening
317                // cooldown a failure gets bounds that; a worker that comes
318                // back reporting the installed build releases it immediately,
319                // so a healthy upgrade pays nothing.
320                self.consecutive_failures = self.consecutive_failures.saturating_add(1);
321                self.failed_at = Some(now);
322            }
323            Err(_) => {
324                self.consecutive_failures = self.consecutive_failures.saturating_add(1);
325                self.failed_at = Some(now);
326            }
327        }
328    }
329}
330
331#[cfg(test)]
332mod tests {
333    use super::*;
334
335    fn session_record(state: SessionState) -> SessionRecord {
336        SessionRecord {
337            create_managed_worktree: None,
338            workspace_id: mj_core::workspace::DEFAULT_WORKSPACE_ID.to_owned(),
339            archived: false,
340            container_cpus: None,
341            container_memory: None,
342            id: "session-1".to_owned(),
343            title: "work".into(),
344            harness_kind: mj_core::config::HarnessKind::Codex,
345            last_profile: "codex-1".into(),
346            bundle_id: "hel".into(),
347            project_directory: None,
348            managed_worktree: None,
349            target_template_id: "podman".into(),
350            resource_allocation: None,
351            additional_mounts: Vec::new(),
352            state,
353            target: None,
354            native_session_id: None,
355            acp_session_title: None,
356            session_title_override: None,
357            created_at: "2026-08-09T12:00:00Z".into(),
358            updated_at: "2026-08-09T12:01:00Z".into(),
359            viewed_through_event_ordinal: 0,
360            draft_input: String::new(),
361            last_error: None,
362            last_checkpoint_error: None,
363            checkpoint: None,
364        }
365    }
366
367    fn observation(worker_build: Option<&str>, quiet: bool) -> WorkerUpgradeObservation {
368        WorkerUpgradeObservation {
369            session: session_record(SessionState::Running),
370            config: Config::default(),
371            worker_build: worker_build.map(str::to_owned),
372            quiet,
373        }
374    }
375
376    fn failure(detail: &str) -> WorkerUpgradeResult {
377        WorkerUpgradeResult {
378            session_id: "session-1".into(),
379            outcome: Err(detail.into()),
380            cancelled: false,
381        }
382    }
383
384    fn current(build: &str) -> WorkerUpgradeOutcome {
385        WorkerUpgradeOutcome::AlreadyCurrent {
386            build: build.to_owned(),
387        }
388    }
389
390    fn upgraded(build: &str) -> WorkerUpgradeOutcome {
391        WorkerUpgradeOutcome::Upgraded {
392            build: build.to_owned(),
393        }
394    }
395
396    fn success(outcome: WorkerUpgradeOutcome) -> WorkerUpgradeResult {
397        WorkerUpgradeResult {
398            session_id: "session-1".into(),
399            outcome: Ok(outcome),
400            cancelled: false,
401        }
402    }
403
404    /// The two facts that make an upgrade due, each on its own.
405    #[test]
406    fn only_a_quiet_session_with_an_unknown_build_is_due() {
407        let now = Utc::now();
408        let policy = PolicyState::default();
409
410        assert!(policy.due(&observation(Some("build-a"), true), now));
411        assert!(
412            !policy.due(&observation(Some("build-a"), false), now),
413            "a working session must not have its worker killed"
414        );
415        assert!(
416            policy.due(&observation(None, true), now),
417            "a worker too old to report a build is outdated"
418        );
419    }
420
421    #[test]
422    fn a_busy_turn_is_never_upgraded_no_matter_how_long_it_runs() {
423        let started = Utc::now();
424        let policy = PolicyState::default();
425        let two_days_later = started + chrono::Duration::days(2);
426
427        assert!(!policy.due(&observation(Some("old-build"), false), two_days_later));
428        assert!(
429            policy.due(&observation(Some("old-build"), true), two_days_later),
430            "the next quiet observation may upgrade without an age-based busy timeout"
431        );
432    }
433
434    /// A session that is closing, checkpointing or already stopped is not a
435    /// session whose worker may be replaced underneath it.
436    #[test]
437    fn only_a_running_session_is_due() {
438        let now = Utc::now();
439        let policy = PolicyState::default();
440        for state in [
441            SessionState::Provisioning,
442            SessionState::Disconnected,
443            SessionState::Checkpointing,
444            SessionState::Closing,
445            SessionState::Destroying,
446            SessionState::Stopped,
447            SessionState::Lost,
448            SessionState::Error,
449            SessionState::DestroyedWithDataLoss,
450        ] {
451            let mut observation = observation(Some("build-a"), true);
452            observation.session.state = state;
453            assert!(!policy.due(&observation, now), "{state:?}");
454        }
455    }
456
457    /// One attempt per session at a time: further observations of the same
458    /// quiet session must not pile up restarts on the same worker.
459    #[test]
460    fn an_attempt_in_flight_suppresses_further_observations() {
461        let now = Utc::now();
462        let mut policy = PolicyState::default();
463        policy.attempt_started();
464
465        assert!(!policy.due(&observation(Some("build-a"), true), now));
466    }
467
468    /// A worker an attempt proved current stays trusted for the coordinator's
469    /// lifetime, while a different observed build is checked immediately.
470    #[test]
471    fn a_worker_proved_current_stays_trusted_for_coordinator_lifetime() {
472        let now = Utc::now();
473        let mut policy = PolicyState::default();
474        policy.record(&success(current("build-a")), now);
475
476        assert!(!policy.due(&observation(Some("build-a"), true), now));
477        assert!(
478            !policy.due(
479                &observation(Some("build-a"), true),
480                now + chrono::Duration::days(2)
481            ),
482            "the launched build remains trusted for the coordinator lifetime"
483        );
484        assert!(
485            policy.due(&observation(Some("build-b"), true), now),
486            "a different build is outdated however recently the last one was checked"
487        );
488    }
489
490    /// A failed upgrade waits, and waits longer each time, so a broken target
491    /// is not restarted on every sync tick.
492    #[test]
493    fn a_failed_upgrade_backs_off_and_widens() {
494        let now = Utc::now();
495        let mut policy = PolicyState::default();
496        policy.attempt_started();
497        policy.record(&failure("install the current Mjolnir worker binary"), now);
498
499        let interval = chrono::Duration::from_std(WORKER_UPGRADE_RETRY_INTERVAL).unwrap();
500        assert!(!policy.due(&observation(Some("build-a"), true), now));
501        assert!(!policy.due(
502            &observation(Some("build-a"), true),
503            now + interval - chrono::Duration::seconds(1)
504        ));
505        assert!(policy.due(&observation(Some("build-a"), true), now + interval));
506
507        policy.attempt_started();
508        policy.record(&failure("install the current Mjolnir worker binary"), now);
509        assert!(!policy.due(
510            &observation(Some("build-a"), true),
511            now + interval * 2 - chrono::Duration::seconds(1)
512        ));
513        assert!(policy.due(&observation(Some("build-a"), true), now + interval * 2));
514    }
515
516    /// A successful upgrade stops the session being probed again: the worker
517    /// that answers next is the new one, and confirming it clears the failure
518    /// run the upgrade itself was guarded by.
519    #[test]
520    fn a_successful_upgrade_stops_the_probing_and_confirming_it_clears_the_backoff() {
521        let now = Utc::now();
522        let mut policy = PolicyState::default();
523        policy.attempt_started();
524        policy.record(&failure("install the current Mjolnir worker binary"), now);
525        policy.attempt_started();
526        policy.record(&success(upgraded("build-b")), now);
527
528        let confirmed = observation(Some("build-b"), true);
529        policy.observe(&confirmed);
530        assert_eq!(policy.consecutive_failures, 0);
531        assert_eq!(policy.failed_at, None);
532        assert!(
533            !policy.due(&confirmed, now),
534            "the worker now runs the installed build, so nothing is due"
535        );
536    }
537
538    /// An upgrade that does not take - the worker comes back reporting a build
539    /// that is still not the installed one - must not restart that worker on
540    /// every freshness window forever.
541    #[test]
542    fn an_upgrade_that_does_not_take_backs_off_instead_of_looping() {
543        let now = Utc::now();
544        let mut policy = PolicyState::default();
545        policy.attempt_started();
546        policy.record(&success(upgraded("build-b")), now);
547
548        // The worker came back as something else, so nothing confirms the
549        // upgrade and the cooldown stands.
550        let unchanged = observation(Some("build-a"), true);
551        policy.observe(&unchanged);
552        let interval = chrono::Duration::from_std(WORKER_UPGRADE_RETRY_INTERVAL).unwrap();
553        assert!(!policy.due(&unchanged, now));
554        assert!(policy.due(&unchanged, now + interval));
555
556        policy.attempt_started();
557        policy.record(&success(upgraded("build-b")), now + interval);
558        policy.observe(&unchanged);
559        assert!(!policy.due(&unchanged, now + interval * 2));
560        assert!(policy.due(&unchanged, now + interval * 3));
561    }
562
563    /// A session that started working again judged nothing about the target,
564    /// so the next quiet observation tries straight away.
565    #[test]
566    fn a_deferred_upgrade_is_retried_at_the_next_quiet_observation() {
567        let now = Utc::now();
568        let mut policy = PolicyState::default();
569        policy.attempt_started();
570        policy.record(&success(WorkerUpgradeOutcome::Deferred), now);
571
572        assert!(policy.due(&observation(Some("build-a"), true), now));
573    }
574
575    /// A preempted attempt says nothing either way: it must not count as a
576    /// failure and must not delay the next attempt.
577    #[test]
578    fn a_preempted_attempt_is_neither_a_success_nor_a_failure() {
579        let now = Utc::now();
580        let mut policy = PolicyState::default();
581        policy.attempt_started();
582        policy.record(
583            &WorkerUpgradeResult {
584                session_id: "session-1".into(),
585                outcome: Err("operation cancelled".into()),
586                cancelled: true,
587            },
588            now,
589        );
590
591        assert_eq!(policy.consecutive_failures, 0);
592        assert!(policy.due(&observation(Some("build-a"), true), now));
593    }
594
595    /// Recovery holds the same per-session slot, so an upgrade cannot start
596    /// while a recovery copy is running for that session.
597    #[test]
598    fn the_shared_gate_keeps_an_upgrade_and_a_recovery_copy_apart() {
599        let gate = Arc::new(RecoveryGate::default());
600        let recovery_copy = gate.try_start("session-1").expect("the slot starts free");
601
602        assert!(gate.try_start("session-1").is_none());
603
604        gate.finish("session-1");
605        assert!(gate.try_start("session-1").is_some());
606        drop(recovery_copy);
607    }
608
609    /// Observing must hand off and return: the daemon reports from its event
610    /// loop, and no upgrade decision may hold that loop up.
611    #[test]
612    fn observing_hands_off_without_waiting() {
613        let (observations, mut queued) = mpsc::unbounded_channel();
614        let observer = WorkerUpgradeObserver { observations };
615
616        for _ in 0..64 {
617            observer.observe(observation(Some("build-a"), true));
618        }
619
620        let received = std::iter::from_fn(|| queued.try_recv().ok()).count();
621        assert_eq!(received, 64);
622    }
623
624    /// A stopped coordinator leaves observing harmless.
625    #[test]
626    fn observing_a_stopped_coordinator_is_a_no_op() {
627        let (observations, queued) = mpsc::unbounded_channel();
628        let observer = WorkerUpgradeObserver { observations };
629        drop(queued);
630
631        observer.observe(observation(Some("build-a"), true));
632    }
633}