378 lines
14 KiB
Rust
378 lines
14 KiB
Rust
//! Open-or-recreate: the sole entry point into the on-disk database.
|
|
//!
|
|
//! **Policy**: any schema mismatch — wrong `schema_info.version`, wrong
|
|
//! stored `tokenize` string, absent `schema_info` table — wipes the database
|
|
//! file and recreates it from scratch. There are **no** in-place migrations.
|
|
|
|
use std::path::Path;
|
|
|
|
use rusqlite::{params, Connection, OpenFlags, OptionalExtension};
|
|
|
|
use super::schema::{
|
|
effective_tokenizer, fts_create_sql, PRAGMAS_FAST, PRAGMAS_INCREMENTAL, PRAGMAS_MAINTENANCE,
|
|
PRAGMAS_READONLY, PRAGMAS_SEARCH, PRAGMAS_WALK_READER, SCHEMA_CURRENT,
|
|
};
|
|
use crate::security::IndexKey;
|
|
|
|
/// Prefix tagging every "the key doesn't fit this file" error. Callers use
|
|
/// it to tell a wrong password apart from real corruption or schema drift:
|
|
/// the GUI re-prompts, the CLI retries, and — critically — nothing treats
|
|
/// it as a reason to wipe or "recover" the database.
|
|
pub const KEY_MISMATCH_PREFIX: &str = "KEY_MISMATCH: ";
|
|
|
|
/// Bump this whenever [`SCHEMA_CURRENT`] or [`fts_create_sql`] changes in a
|
|
/// way that makes an old DB unreadable — or when stored, classifier-derived
|
|
/// values go stale: `files.mime`, `files.type` and `content_state` are
|
|
/// computed at walk time and never re-derived for unchanged files, so a
|
|
/// classification change needs the wipe to apply everywhere.
|
|
pub const CURRENT_SCHEMA_VERSION: u32 = 6;
|
|
|
|
/// Open `db_path` and ensure the on-disk schema matches this build; if it
|
|
/// doesn't (including a changed `tokenizer`), delete the file and recreate it
|
|
/// empty — callers will need to re-index.
|
|
pub fn open_or_recreate(db_path: &str, tokenizer: &str) -> Result<Connection, String> {
|
|
open_or_recreate_keyed(db_path, tokenizer, super::key::process_key().as_ref())
|
|
}
|
|
|
|
pub(crate) fn open_or_recreate_keyed(
|
|
db_path: &str,
|
|
tokenizer: &str,
|
|
key: Option<&IndexKey>,
|
|
) -> Result<Connection, String> {
|
|
let path = Path::new(db_path).to_path_buf();
|
|
if let Some(dir) = path.parent() {
|
|
if !dir.as_os_str().is_empty() {
|
|
std::fs::create_dir_all(dir)
|
|
.map_err(|e| format!("Failed to create database dir {}: {}", dir.display(), e))?;
|
|
}
|
|
}
|
|
let conn = Connection::open(db_path)
|
|
.map_err(|e| format!("Failed to open database at {}: {}", db_path, e))?;
|
|
key_and_probe(&conn, db_path, key)?;
|
|
conn.execute_batch(PRAGMAS_FAST)
|
|
.map_err(|e| format!("Failed to apply pragmas: {}", e))?;
|
|
|
|
if db_matches_current(&conn, tokenizer)? {
|
|
return Ok(conn);
|
|
}
|
|
|
|
crate::log_warn!(
|
|
"database at {} does not match current schema; rebuilding. \
|
|
Existing rows will be re-scanned on next indexing run.",
|
|
db_path
|
|
);
|
|
let conn = wipe_and_reopen(conn, &path, key)?;
|
|
apply_current_schema(&conn, tokenizer)?;
|
|
Ok(conn)
|
|
}
|
|
|
|
/// Open an *existing* index without ever recreating it: no
|
|
/// `SQLITE_OPEN_CREATE`, and any schema mismatch is an error instead of a
|
|
/// wipe. The on-disk FTS tokenizer is used as-is. Every *consumer* (search,
|
|
/// status, size, `clear`) uses this; only the indexer's own write path uses
|
|
/// [`open_or_recreate`].
|
|
pub fn open_existing(db_path: &str, write: bool) -> Result<Connection, String> {
|
|
open_existing_keyed(db_path, write, super::key::process_key().as_ref())
|
|
}
|
|
|
|
/// [`open_existing`] with an explicit pragma profile, on the process key.
|
|
fn open_profiled(db_path: &str, write: bool, pragmas: &str) -> Result<Connection, String> {
|
|
open_keyed_with_pragmas(db_path, write, super::key::process_key().as_ref(), pragmas)
|
|
}
|
|
|
|
/// A read-only connection for one walk's row prefetcher; pragma profile
|
|
/// [`PRAGMAS_WALK_READER`].
|
|
pub fn open_walk_reader(db_path: &str) -> Result<Connection, String> {
|
|
open_profiled(db_path, false, PRAGMAS_WALK_READER)
|
|
}
|
|
|
|
/// The search worker's connection, held across requests; pragma profile
|
|
/// [`PRAGMAS_SEARCH`].
|
|
pub fn open_search_reader(db_path: &str) -> Result<Connection, String> {
|
|
open_profiled(db_path, false, PRAGMAS_SEARCH)
|
|
}
|
|
|
|
/// The coordinator's write connection for watcher events and reconciles;
|
|
/// pragma profile [`PRAGMAS_INCREMENTAL`].
|
|
pub fn open_incremental_writer(db_path: &str) -> Result<Connection, String> {
|
|
open_profiled(db_path, true, PRAGMAS_INCREMENTAL)
|
|
}
|
|
|
|
/// A writable connection for post-run compaction, and the only one that may
|
|
/// VACUUM; pragma profile [`PRAGMAS_MAINTENANCE`].
|
|
pub fn open_maintenance(db_path: &str) -> Result<Connection, String> {
|
|
open_profiled(db_path, true, PRAGMAS_MAINTENANCE)
|
|
}
|
|
|
|
pub(crate) fn open_existing_keyed(
|
|
db_path: &str,
|
|
write: bool,
|
|
key: Option<&IndexKey>,
|
|
) -> Result<Connection, String> {
|
|
let pragmas = if write {
|
|
PRAGMAS_FAST
|
|
} else {
|
|
PRAGMAS_READONLY
|
|
};
|
|
open_keyed_with_pragmas(db_path, write, key, pragmas)
|
|
}
|
|
|
|
fn open_keyed_with_pragmas(
|
|
db_path: &str,
|
|
write: bool,
|
|
key: Option<&IndexKey>,
|
|
pragmas: &str,
|
|
) -> Result<Connection, String> {
|
|
let flags = OpenFlags::SQLITE_OPEN_NO_MUTEX
|
|
| if write {
|
|
OpenFlags::SQLITE_OPEN_READ_WRITE
|
|
} else {
|
|
OpenFlags::SQLITE_OPEN_READ_ONLY
|
|
};
|
|
let conn = Connection::open_with_flags(db_path, flags)
|
|
.map_err(|e| format!("Failed to open database at {}: {}", db_path, e))?;
|
|
key_and_probe(&conn, db_path, key)?;
|
|
conn.execute_batch(pragmas)
|
|
.map_err(|e| format!("Failed to apply pragmas: {}", e))?;
|
|
|
|
if !schema_version_current(&conn)? {
|
|
return Err(format!(
|
|
"index at {} is not a compatible QuickSearch index (schema v{} expected); \
|
|
refusing to modify it. Re-index to rebuild.",
|
|
db_path, CURRENT_SCHEMA_VERSION
|
|
));
|
|
}
|
|
Ok(conn)
|
|
}
|
|
|
|
/// Cheaply check that the process key (or its absence) actually opens the
|
|
/// index; a wrong password errors with [`KEY_MISMATCH_PREFIX`].
|
|
///
|
|
/// Answers **only** the key question — not [`open_existing`]'s schema check.
|
|
/// Conflating the two made every schema bump present itself to password users
|
|
/// as an unlock failure with no way past the gate.
|
|
pub fn verify_process_key(db_path: &str) -> Result<(), String> {
|
|
verify_key(db_path, super::key::process_key().as_ref())
|
|
}
|
|
|
|
/// Whether the next indexing run will discard and rebuild an existing index
|
|
/// written under a different schema version.
|
|
///
|
|
/// `false` for anything this cannot positively establish (no file, a key that
|
|
/// does not open it, an unqueryable database): announcing a reset that is not
|
|
/// happening would be worse than saying nothing.
|
|
pub fn index_needs_rebuild(db_path: &str) -> bool {
|
|
let Ok(conn) = Connection::open_with_flags(
|
|
db_path,
|
|
OpenFlags::SQLITE_OPEN_NO_MUTEX | OpenFlags::SQLITE_OPEN_READ_ONLY,
|
|
) else {
|
|
return false;
|
|
};
|
|
if key_and_probe(&conn, db_path, super::key::process_key().as_ref()).is_err() {
|
|
return false;
|
|
}
|
|
// Only `Ok(false)`: an `Err` means we could not tell.
|
|
matches!(schema_version_current(&conn), Ok(false))
|
|
}
|
|
|
|
pub(crate) fn verify_key(db_path: &str, key: Option<&IndexKey>) -> Result<(), String> {
|
|
// Read-only and no CREATE: verifying a key must never bring a database
|
|
// into existence, and must never modify one.
|
|
let conn = Connection::open_with_flags(
|
|
db_path,
|
|
OpenFlags::SQLITE_OPEN_NO_MUTEX | OpenFlags::SQLITE_OPEN_READ_ONLY,
|
|
)
|
|
.map_err(|e| format!("Failed to open database at {}: {}", db_path, e))?;
|
|
key_and_probe(&conn, db_path, key)
|
|
}
|
|
|
|
/// Apply the SQLCipher key (if any) and force the first page off disk.
|
|
///
|
|
/// Ordering is load-bearing twice over: SQLCipher requires `PRAGMA key`
|
|
/// before anything else touches the file (our fast-path pragmas include
|
|
/// `journal_mode = WAL`, which reads the header), and the probe must run
|
|
/// before any schema comparison so that a wrong or missing key surfaces as
|
|
/// a tagged [`KEY_MISMATCH_PREFIX`] error — never as a "schema mismatch"
|
|
/// that [`open_or_recreate`] would answer by wiping the file.
|
|
///
|
|
/// The raw-key `x'…'` form bypasses SQLCipher's per-connection PBKDF2
|
|
/// (hundreds of ms), so the expensive KDF happens once at unlock, not per
|
|
/// open.
|
|
fn key_and_probe(conn: &Connection, db_path: &str, key: Option<&IndexKey>) -> Result<(), String> {
|
|
if let Some(key) = key {
|
|
// `cipher_log_level = NONE` mutes SQLCipher's stderr HMAC-failure
|
|
// trace on every wrong-password attempt; the condition still surfaces
|
|
// as SQLITE_NOTADB. It must follow `PRAGMA key`, which has to be the
|
|
// first statement on the connection.
|
|
conn.execute_batch(&format!(
|
|
"PRAGMA key = \"x'{}'\"; PRAGMA cipher_log_level = NONE;",
|
|
key.to_hex()
|
|
))
|
|
.map_err(|e| format!("Failed to apply encryption key: {}", e))?;
|
|
}
|
|
match conn.query_row("SELECT count(*) FROM sqlite_master", [], |r| {
|
|
r.get::<_, i64>(0)
|
|
}) {
|
|
Ok(_) => Ok(()),
|
|
Err(e) if is_notadb(&e) => Err(key_mismatch_message(db_path, key.is_some())),
|
|
Err(e) => Err(format!("Failed to read database at {}: {}", db_path, e)),
|
|
}
|
|
}
|
|
|
|
/// SQLITE_NOTADB is what an undecryptable first page looks like: with the
|
|
/// wrong key (or none) the decrypted header bytes are noise, and SQLite
|
|
/// reports "file is not a database".
|
|
fn is_notadb(e: &rusqlite::Error) -> bool {
|
|
matches!(
|
|
e,
|
|
rusqlite::Error::SqliteFailure(
|
|
rusqlite::ffi::Error {
|
|
code: rusqlite::ErrorCode::NotADatabase,
|
|
..
|
|
},
|
|
_,
|
|
)
|
|
)
|
|
}
|
|
|
|
fn key_mismatch_message(db_path: &str, had_key: bool) -> String {
|
|
// An unencrypted SQLite file still has its plaintext magic; sniffing it
|
|
// distinguishes "wrong password" from "protection is enabled but the
|
|
// index was never encrypted" (e.g. a crash between saving the config
|
|
// and rebuilding the index).
|
|
let plaintext = std::fs::File::open(db_path)
|
|
.ok()
|
|
.and_then(|mut f| {
|
|
use std::io::Read;
|
|
let mut magic = [0u8; 16];
|
|
f.read_exact(&mut magic).ok()?;
|
|
Some(&magic == b"SQLite format 3\0")
|
|
})
|
|
.unwrap_or(false);
|
|
let detail = match (had_key, plaintext) {
|
|
(true, true) => {
|
|
"password protection is enabled but the index is not encrypted; \
|
|
rebuild the index to encrypt it"
|
|
}
|
|
(true, false) => "wrong password (or the file is not a QuickSearch index)",
|
|
(false, _) => "the index is password-protected; a password is required",
|
|
};
|
|
format!("{}index at {}: {}", KEY_MISMATCH_PREFIX, db_path, detail)
|
|
}
|
|
|
|
/// True iff the DB has a `schema_info` table whose `version` equals
|
|
/// [`CURRENT_SCHEMA_VERSION`]. Ignores the tokenizer — that's only the
|
|
/// owner's concern.
|
|
fn schema_version_current(conn: &Connection) -> Result<bool, String> {
|
|
let has_info: bool = conn
|
|
.query_row(
|
|
"SELECT 1 FROM sqlite_master WHERE type='table' AND name='schema_info'",
|
|
[],
|
|
|_| Ok(true),
|
|
)
|
|
.optional()
|
|
.map_err(|e| format!("sqlite_master schema_info: {}", e))?
|
|
.unwrap_or(false);
|
|
if !has_info {
|
|
return Ok(false);
|
|
}
|
|
|
|
let version: Option<String> = conn
|
|
.query_row(
|
|
"SELECT value FROM schema_info WHERE key = 'version'",
|
|
[],
|
|
|r| r.get(0),
|
|
)
|
|
.optional()
|
|
.map_err(|e| format!("read schema_info.version: {}", e))?;
|
|
Ok(version.as_deref() == Some(&CURRENT_SCHEMA_VERSION.to_string()))
|
|
}
|
|
|
|
/// True iff the DB has the current schema version *and* the
|
|
/// effective-tokenizer string this caller asked for.
|
|
fn db_matches_current(conn: &Connection, tokenizer: &str) -> Result<bool, String> {
|
|
if !schema_version_current(conn)? {
|
|
return Ok(false);
|
|
}
|
|
|
|
let stored_tokenize: Option<String> = conn
|
|
.query_row(
|
|
"SELECT value FROM schema_info WHERE key = 'tokenize'",
|
|
[],
|
|
|r| r.get(0),
|
|
)
|
|
.optional()
|
|
.map_err(|e| format!("read schema_info.tokenize: {}", e))?;
|
|
let want_tokenize = effective_tokenizer(tokenizer);
|
|
Ok(stored_tokenize.as_deref() == Some(&*want_tokenize))
|
|
}
|
|
|
|
/// Drop the current connection, delete the DB file + its WAL/SHM/journal
|
|
/// sidecars, reopen a fresh file, re-apply key and pragmas. Re-keying here
|
|
/// is essential: a rebuild of a protected index must come back encrypted,
|
|
/// never silently plaintext.
|
|
fn wipe_and_reopen(
|
|
conn: Connection,
|
|
path: &Path,
|
|
key: Option<&IndexKey>,
|
|
) -> Result<Connection, String> {
|
|
drop(conn);
|
|
// Before the delete, and even if the removal below fails partway: see
|
|
// [`super::bump_index_epoch`].
|
|
super::bump_index_epoch();
|
|
// `remove_file_retrying` matters on Windows, where a delete fails while
|
|
// *any* handle is open — most often an antivirus scanner reading the file
|
|
// in the moment after we closed it.
|
|
match crate::platform::remove_file_retrying(path) {
|
|
Ok(()) => {}
|
|
Err(e) if e.kind() == std::io::ErrorKind::NotFound => {}
|
|
Err(e) => {
|
|
return Err(format!(
|
|
"Failed to remove old database at {}: {}. \
|
|
Another QuickSearch instance may have the index open.",
|
|
path.display(),
|
|
e
|
|
))
|
|
}
|
|
}
|
|
for suffix in ["-wal", "-shm", "-journal"] {
|
|
let sidecar = path.with_file_name(format!(
|
|
"{}{}",
|
|
path.file_name().and_then(|s| s.to_str()).unwrap_or(""),
|
|
suffix
|
|
));
|
|
let _ = crate::platform::remove_file_retrying(&sidecar);
|
|
}
|
|
let conn = Connection::open(path)
|
|
.map_err(|e| format!("Failed to reopen database after rebuild: {}", e))?;
|
|
key_and_probe(&conn, &path.to_string_lossy(), key)?;
|
|
conn.execute_batch(PRAGMAS_FAST)
|
|
.map_err(|e| format!("Failed to apply pragmas after rebuild: {}", e))?;
|
|
Ok(conn)
|
|
}
|
|
|
|
fn apply_current_schema(conn: &Connection, tokenizer: &str) -> Result<(), String> {
|
|
conn.execute_batch(SCHEMA_CURRENT)
|
|
.map_err(|e| format!("Failed to create current schema tables: {}", e))?;
|
|
let fts = fts_create_sql(tokenizer);
|
|
conn.execute_batch(&fts)
|
|
.map_err(|e| format!("Failed to create searchabletext: {}", e))?;
|
|
|
|
let now = crate::log::now_unix();
|
|
let effective = effective_tokenizer(tokenizer);
|
|
conn.execute(
|
|
"INSERT INTO schema_info(key, value) VALUES ('version', ?1), ('created_at', ?2), ('tokenize', ?3)",
|
|
params![
|
|
CURRENT_SCHEMA_VERSION.to_string(),
|
|
now.to_string(),
|
|
effective
|
|
],
|
|
)
|
|
.map_err(|e| format!("Failed to seed schema_info: {}", e))?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
#[path = "open_tests.rs"]
|
|
mod tests;
|