Offer to save a password when a login is submitted

Submitting a form containing a password now offers to remember it.

It goes into the macOS Keychain, through the Security framework rather
than the `security` binary - a password passed as a command-line argument
is visible in `ps` to anyone on the machine, however briefly. Never
apps.json, never a log.

The value travels as little as it can: the injected script hands it
straight to Rust, which holds it in memory and tells the shell only which
host and which username, since that is all the shell needs to ask the
question. It is written on Save and dropped on anything else.

Autofill is deliberately not built. Reading a password back out and
injecting it into a page is a materially larger surface than offering to
store one, and deserves its own decision.
This commit is contained in:
2026-09-01 15:26:53 +02:00
parent 3aa9d9c3f7
commit 0567a4b7c7
10 changed files with 212 additions and 2 deletions
+41
View File
@@ -20,6 +20,9 @@ pub struct AppState {
/// Title bar height: how far a child webview's origin sits above the
/// content the shell measures from.
pub chrome: Mutex<f64>,
/// A login waiting on an answer: host, account, password. Held only until
/// it is saved or declined, and never written anywhere but the Keychain.
pub pending_password: Mutex<Option<(String, String, String)>>,
pub config: Mutex<Config>,
pub active: Mutex<Option<String>>,
pub stage: Mutex<Stage>,
@@ -77,6 +80,7 @@ pub fn build_state(handle: &AppHandle) -> Result<AppState, String> {
dir,
radius: Mutex::new(0.0),
chrome: Mutex::new(0.0),
pending_password: Mutex::new(None),
config: Mutex::new(config),
active: Mutex::new(None),
stage: Mutex::new((240.0, 38.0, 800.0, 600.0)),
@@ -763,6 +767,43 @@ pub fn app_reports(state: State<'_, AppState>) -> Vec<(String, String)> {
.collect()
}
// ------------------------------------------------------------ passwords
/// Writes the offered login to the macOS Keychain.
///
/// The Keychain, not `apps.json`: it is encrypted at rest, unlocked with the
/// login session, and the one place on this machine that is actually built to
/// hold a password. The value never touches the config file, the logs, or the
/// shell.
#[tauri::command]
pub fn save_password(state: State<'_, AppState>) -> Result<String, String> {
let offer = state.pending_password.lock().unwrap().take();
let Some((host, account, password)) = offer else {
return Err("nothing waiting to be saved".into());
};
#[cfg(target_os = "macos")]
{
let service = format!("Work — {host}");
security_framework::passwords::set_generic_password(
&service,
&account,
password.as_bytes(),
)
.map_err(|e| format!("the Keychain refused it: {e}"))?;
}
#[cfg(not(target_os = "macos"))]
let _ = password;
Ok(host)
}
/// Drops the offered login without saving it.
#[tauri::command]
pub fn discard_password(state: State<'_, AppState>) {
*state.pending_password.lock().unwrap() = None;
}
// -------------------------------------------------- notification clicks
/// Runs the page's own click handler for a notification it raised.
+36
View File
@@ -481,6 +481,42 @@
};
} catch (e) {}
/* -------------------------------------------------------- passwords */
/* Offers to remember a login you just typed, the way a browser does.
The value goes straight to Rust and into the macOS Keychain; it is never
written to this app's config, never logged, and never handed to the shell
— the shell is only told which host and which username, which is all it
needs to ask you the question. */
function credentialsIn(form) {
var pw = form.querySelector('input[type="password"]');
if (!pw || !pw.value) return null;
/* The username is whatever text-like field comes before the password —
which is how every login form on the web is built, whatever it calls
its fields. */
var fields = form.querySelectorAll('input');
var user = '';
for (var i = 0; i < fields.length; i++) {
if (fields[i] === pw) break;
var t = (fields[i].type || '').toLowerCase();
if (t === 'text' || t === 'email' || t === 'tel') user = fields[i].value || user;
}
return { user: user, pass: pw.value };
}
document.addEventListener('submit', function (e) {
var form = e.target;
if (!form || form.tagName !== 'FORM') return;
try {
var found = credentialsIn(form);
if (found) {
send('savepw', { u: found.user, p: found.pass, h: location.hostname });
}
} catch (err) {}
}, true);
/* ---------------------------------------------------------- the icon */
/* The site's own icon, read off the page it is on.
+2
View File
@@ -116,6 +116,8 @@ pub fn run() {
commands::set_theme,
commands::unread_counts,
commands::focus_window,
commands::save_password,
commands::discard_password,
commands::notification_click,
commands::set_zoom,
commands::set_hidden,
+31
View File
@@ -52,6 +52,16 @@ pub struct NotificationClick {
pub notification_id: String,
}
/// A login worth offering to remember. Carries no password: the value stays in
/// Rust until it is either written to the Keychain or dropped.
#[derive(Clone, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct PasswordOffer {
pub app_id: String,
pub host: String,
pub account: String,
}
#[derive(Clone, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct IconEvent {
@@ -247,6 +257,27 @@ fn handle_sentinel(
}
}
// A login was just submitted. The password is held here and offered;
// the shell is told only the host and the username, because that is
// all it needs to ask the question and the less that value travels
// the better.
"savepw" => {
let (Some(host), Some(pass)) = (params.get("h"), params.get("p")) else {
return;
};
if pass.is_empty() {
return;
}
let account = params.get("u").cloned().unwrap_or_default();
let state = handle.state::<crate::commands::AppState>();
*state.pending_password.lock().unwrap() =
Some((host.clone(), account.clone(), pass.clone()));
let _ = handle.emit(
"password-offer",
PasswordOffer { app_id: from.clone(), host: host.clone(), account },
);
}
"emptycache" => {
empty_cache(&handle, &from);
}