1use std::collections::BTreeMap;
8use std::convert::Infallible;
9use std::net::SocketAddr;
10use std::path::{Component, PathBuf};
11use std::sync::{Arc, Mutex};
12use std::time::{Duration, Instant, SystemTime, UNIX_EPOCH};
13
14use anyhow::{Context, Result as AnyResult};
15use axum::body::{Body, Bytes, to_bytes};
16use axum::extract::{DefaultBodyLimit, Path, Query, Request, State};
17use axum::http::header::{
18 CACHE_CONTROL, CONTENT_SECURITY_POLICY as CONTENT_SECURITY_POLICY_HEADER, CONTENT_TYPE, COOKIE,
19 HeaderValue, LOCATION, REFERRER_POLICY, SET_COOKIE, X_CONTENT_TYPE_OPTIONS,
20};
21use axum::http::{HeaderMap, Response, StatusCode};
22use axum::middleware::Next;
23use axum::response::IntoResponse;
24use axum::response::sse::{Event, KeepAlive, Sse};
25use axum::routing::{get, post, put};
26use axum::{Json, Router};
27use base64::Engine as _;
28use hmac::{Hmac, KeyInit, Mac};
29use serde::{Deserialize, Serialize};
30use sha2::Sha256;
31use tokio::sync::Semaphore;
32use tokio::sync::{mpsc, watch};
33use tokio_stream::wrappers::ReceiverStream;
34use tokio_util::sync::CancellationToken;
35
36use mj_core::attachment::{AttachmentRef, AttachmentStore, MAX_IMAGE_BYTES, MAX_IMAGES};
37use mj_core::config::{Config, TargetTemplate, project_history_host, validate_id};
38use mj_core::elicitation::{ElicitationRequest, ElicitationResponse, MAX_ELICITATION_BYTES};
39use mj_core::path_completion::{CompletionHost, CompletionKind, PathCompletion};
40use mj_core::refusal::{Refusal, RefusalKind};
41use mj_core::state::{
42 MoveOperation, MovePhase, MovePreparation, MoveSelection, MoveSessionRequest,
43 ProjectSourceIdentity, SessionResourceAllocation, SessionState, SessionTransitionKind,
44 State as AppState,
45};
46
47use crate::targets::AdditionalMount;
48
49use crate::dictation::{
50 DictationError, DictationOperation, DictationRequest, DictationResponse, MAX_AUDIO_BYTES,
51 validate_wav,
52};
53use crate::image::optimize_image;
54
55pub mod api;
56
57pub use api::{
58 ApiFailure, ApiSession, PromptRequest, PromptResponse, SessionListResponse,
59 StartSessionRequest, StartSessionResponse, SubagentBackend, WaitOutcome, WaitRequest,
60 WaitResponse, api_token_path, load_or_create_api_token, map_stop_reason, resolve_wait,
61};
62
63pub use mj_client::web::{
64 BrowserDiffStat, BrowserTranscript, BrowserTranscriptEntry, WebListenerProcess,
65 WebViewerAccess, WebViewerRecovery,
66};
67
68pub use mj_core::state::ResumeQueueDisposition;
72
73pub fn install_rustls_crypto_provider() {
80 let _ = rustls::crypto::ring::default_provider().install_default();
81}
82
83pub const COOKIE_NAME: &str = "hel_viewer_session";
84const DEFAULT_SESSION_TTL: Duration = Duration::from_secs(30 * 24 * 60 * 60);
85const EPHEMERAL_SESSION_TTL: Duration = Duration::from_secs(24 * 60 * 60);
86const MAX_BODY_BYTES: usize = 128 * 1024;
87const MAX_CODE_FAILURES: u32 = 5;
88const CODE_LOCKOUT_BASE: Duration = Duration::from_secs(30);
89const CODE_LOCKOUT_CAP: Duration = Duration::from_secs(60 * 60);
90const MAX_TITLE_CHARS: usize = 120;
91const MAX_PROMPT_CHARS: usize = 64 * 1024;
92const MAX_DIRTY_ACKNOWLEDGEMENTS: usize = 32;
95const MAX_DRAFT_BYTES: usize = 64 * 1024;
99pub const MAX_HISTORY_MATCHES: usize = 40;
103const MAX_PROMPT_BODY_BYTES: usize = 32 * 1024 * 1024;
108const MAX_ATTACHMENT_UPLOAD_BYTES: usize = 64 * 1024 * 1024;
112const MAX_CONCURRENT_DICTATIONS: usize = 2;
116pub const MAX_PROMPT_IMAGES: usize = MAX_IMAGES;
118const COOKIE_KEY_BYTES: usize = 32;
119const COOKIE_KEY_FILE: &str = "phone-cookie-key";
120
121pub const fn default_session_ttl() -> Duration {
126 DEFAULT_SESSION_TTL
127}
128
129pub fn cookie_key_path() -> PathBuf {
130 mj_core::config::data_dir().join(COOKIE_KEY_FILE)
131}
132
133pub fn load_or_create_cookie_key(path: &std::path::Path) -> AnyResult<Vec<u8>> {
143 match std::fs::read(path) {
144 Ok(key) if key.len() >= COOKIE_KEY_BYTES => return Ok(key),
145 Ok(key) => tracing::warn!(
146 path = %path.display(),
147 bytes = key.len(),
148 "phone cookie key is shorter than {COOKIE_KEY_BYTES} bytes; generating a new key signs every phone out"
149 ),
150 Err(error) if error.kind() == std::io::ErrorKind::NotFound => {}
151 Err(error) => tracing::warn!(
152 path = %path.display(),
153 "could not read the phone cookie key ({error}); generating a new key signs every phone out"
154 ),
155 }
156 let key = generate_cookie_key()?;
157 mj_core::config::atomic_write(path, &key)
158 .with_context(|| format!("persist Mjolnir phone cookie key {}", path.display()))?;
159 Ok(key.to_vec())
160}
161
162#[derive(Clone)]
170pub struct ServerOptions {
171 pub bind: SocketAddr,
172 pub snapshot_rx: watch::Receiver<ViewerSnapshot>,
173 pub conversation_rx: watch::Receiver<BTreeMap<String, BrowserTranscript>>,
174 pub action_tx: mpsc::Sender<ControllerRequest>,
175 pub bundle_tx: mpsc::Sender<BundleRequest>,
176 pub receipt_tx: mpsc::Sender<ReadReceiptRequest>,
177 pub preflight_tx: mpsc::Sender<PreflightRequest>,
178 pub move_preparation_tx: mpsc::Sender<MovePreparationRequest>,
179 pub client_state_tx: mpsc::Sender<ClientStateRequest>,
180 pub dictation_tx: mpsc::Sender<DictationRequest>,
181 background_task_stop_tx: mpsc::Sender<BackgroundTaskStopRequest>,
185 pub shutdown: CancellationToken,
186 pub session_ttl: Duration,
187 pub secure_cookie: bool,
190 tls_config: Option<axum_server::tls_rustls::RustlsConfig>,
191 viewer_code: String,
192 login_token: String,
193 cookie_key: Vec<u8>,
194 api_token: String,
195 subagent: Option<Arc<dyn api::SubagentBackend>>,
196}
197
198pub struct ServerRequests {
200 pub action_tx: mpsc::Sender<ControllerRequest>,
201 pub bundle_tx: mpsc::Sender<BundleRequest>,
202 pub receipt_tx: mpsc::Sender<ReadReceiptRequest>,
203 pub preflight_tx: mpsc::Sender<PreflightRequest>,
204 pub move_preparation_tx: mpsc::Sender<MovePreparationRequest>,
205 pub client_state_tx: mpsc::Sender<ClientStateRequest>,
206 pub dictation_tx: mpsc::Sender<DictationRequest>,
207}
208
209impl ServerOptions {
210 pub fn new(
211 bind: SocketAddr,
212 snapshot_rx: watch::Receiver<ViewerSnapshot>,
213 conversation_rx: watch::Receiver<BTreeMap<String, BrowserTranscript>>,
214 requests: ServerRequests,
215 ) -> AnyResult<Self> {
216 Ok(Self {
217 bind,
218 snapshot_rx,
219 conversation_rx,
220 action_tx: requests.action_tx,
221 bundle_tx: requests.bundle_tx,
222 receipt_tx: requests.receipt_tx,
223 preflight_tx: requests.preflight_tx,
224 move_preparation_tx: requests.move_preparation_tx,
225 client_state_tx: requests.client_state_tx,
226 dictation_tx: requests.dictation_tx,
227 background_task_stop_tx: mpsc::channel(1).0,
228 shutdown: CancellationToken::new(),
229 session_ttl: DEFAULT_SESSION_TTL,
230 secure_cookie: true,
231 tls_config: None,
232 viewer_code: generate_viewer_code()?,
233 login_token: generate_login_token()?,
234 cookie_key: generate_cookie_key()?.to_vec(),
235 api_token: String::new(),
238 subagent: None,
239 })
240 }
241
242 pub fn viewer_code(&self) -> &str {
243 &self.viewer_code
244 }
245
246 pub fn login_token(&self) -> &str {
247 &self.login_token
248 }
249
250 pub fn set_tls_config(&mut self, config: axum_server::tls_rustls::RustlsConfig) {
254 self.tls_config = Some(config);
255 self.secure_cookie = true;
256 }
257
258 pub fn set_cookie_key(&mut self, key: Vec<u8>) -> AnyResult<()> {
261 anyhow::ensure!(
262 key.len() >= COOKIE_KEY_BYTES,
263 "cookie signing key must be at least {COOKIE_KEY_BYTES} bytes"
264 );
265 self.cookie_key = key;
266 Ok(())
267 }
268
269 pub fn set_background_task_stop_tx(&mut self, tx: mpsc::Sender<BackgroundTaskStopRequest>) {
271 self.background_task_stop_tx = tx;
272 }
273
274 pub fn set_api_token(&mut self, token: String) {
277 self.api_token = token;
278 }
279
280 pub fn set_subagent_backend(&mut self, backend: Arc<dyn api::SubagentBackend>) {
283 self.subagent = Some(backend);
284 }
285
286 #[cfg(test)]
287 fn with_test_credentials(mut self, code: &str, key: &[u8]) -> Self {
288 self.viewer_code = code.to_string();
289 self.login_token = "test-login-token".into();
290 self.cookie_key = key.to_vec();
291 self.secure_cookie = false;
292 self.api_token = "test-api-token".into();
293 self
294 }
295}
296
297pub async fn run_server(options: ServerOptions) -> AnyResult<()> {
303 let listener = tokio::net::TcpListener::bind(options.bind)
304 .await
305 .with_context(|| format!("bind web viewer to {}", options.bind))?;
306 run_server_on_listener(options, listener).await
307}
308
309pub async fn run_server_on_listener(
311 options: ServerOptions,
312 listener: tokio::net::TcpListener,
313) -> AnyResult<()> {
314 let mut options = options;
315 let bind = listener.local_addr().context("read web viewer address")?;
316 let shutdown = options.shutdown.clone();
317 let viewer_code = options.viewer_code.clone();
318 let tls_config = options.tls_config.take();
319 let app = router(options);
320 println!("Mjolnir viewer code: {viewer_code}");
321 let listener = listener.into_std().context("prepare web viewer listener")?;
322 let handle = axum_server::Handle::new();
323 let shutdown_handle = handle.clone();
324 let serve = async move {
325 if let Some(tls_config) = tls_config {
326 axum_server::from_tcp_rustls(listener, tls_config)
327 .handle(handle)
328 .serve(app.into_make_service())
329 .await
330 } else {
331 axum_server::from_tcp(listener)
332 .handle(handle)
333 .serve(app.into_make_service())
334 .await
335 }
336 };
337 tokio::pin!(serve);
338 tokio::select! {
339 result = &mut serve => result,
340 _ = shutdown.cancelled() => {
341 shutdown_handle.graceful_shutdown(Some(Duration::from_secs(2)));
342 serve.await
343 }
344 }
345 .with_context(|| format!("serve web viewer on {bind}"))
346}
347
348mod viewer_types;
349pub use viewer_types::*;
350mod actions;
351pub use actions::*;
352mod routes;
353use routes::*;
354mod handlers;
355use handlers::*;
356mod validation;
357use validation::*;
358mod errors;
359use errors::*;
360mod auth;
361pub use auth::*;
362mod assets;
363use assets::*;
364mod config_view;
365pub use config_view::*;
366
367#[cfg(test)]
368mod tests;