1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ //! Logins Schema v4 //! ================ //! //! The schema we use is a evolution of the firefox-ios logins database format. //! There are three tables: //! //! - `loginsL`: The local table. //! - `loginsM`: The mirror table. //! - `loginsSyncMeta`: The table used to to store various sync metadata. //! //! ## `loginsL` //! //! This stores local login information, also known as the "overlay". //! //! `loginsL` is essentially unchanged from firefox-ios, however note the //! semantic change v4 makes to timestamp fields (which is explained in more //! detail in the [COMMON_COLS] documentation). //! //! It is important to note that `loginsL` is not guaranteed to be present for //! all records. Synced records may only exist in `loginsM` (although this is //! not guaranteed). In either case, queries should read from both `loginsL` and //! `loginsM`. //! //! ### `loginsL` Columns //! //! Contains all fields in [COMMON_COLS], as well as the following additional //! columns: //! //! - `local_modified`: A millisecond local timestamp indicating when the record //! was changed locally, or NULL if the record has never been changed locally. //! //! - `is_deleted`: A boolean indicating whether or not this record is a //! tombstone. //! //! - `sync_status`: A `SyncStatus` enum value, one of //! //! - `0` (`SyncStatus::Synced`): Indicating that the record has been synced //! //! - `1` (`SyncStatus::Changed`): Indicating that the record should be //! has changed locally and is known to exist on the server. //! //! - `2` (`SyncStatus::New`): Indicating that the record has never been //! synced, or we have been reset since the last time it synced. //! //! ## `loginsM` //! //! This stores server-side login information, also known as the "mirror". //! //! Like `loginsL`, `loginM` has not changed from firefox-ios, beyond the //! change to store timestamps as milliseconds explained in [COMMON_COLS]. //! //! Also like `loginsL`, `loginsM` is not guaranteed to have rows for all //! records. It should not have rows for records which were not synced! //! //! It is important to note that `loginsL` is not guaranteed to be present for //! all records. Synced records may only exist in `loginsM`! Queries should //! test against both! //! //! ### `loginsM` Columns //! //! Contains all fields in [COMMON_COLS], as well as the following additional //! columns: //! //! - `server_modified`: the most recent server-modification timestamp //! ([sync15::ServerTimestamp]) we've seen for this record. Stored as //! a millisecond value. //! //! - `is_overridden`: A boolean indicating whether or not the mirror contents //! are invalid, and that we should defer to the data stored in `loginsL`. //! //! ## `loginsSyncMeta` //! //! This is a simple key-value table based on the `moz_meta` table in places. //! This table was added (by this rust crate) in version 4, and so is not //! present in firefox-ios. //! //! Currently it is used to store two items: //! //! 1. The last sync timestamp is stored under [LAST_SYNC_META_KEY], a //! `sync15::ServerTimestamp` stored in integer milliseconds. //! //! 2. The persisted sync state machine information is stored under //! [GLOBAL_STATE_META_KEY]. This is a `sync15::GlobalState` stored as //! JSON. //! use crate::error::*; use lazy_static::lazy_static; use rusqlite::Connection; use sql_support::ConnExt; /// Note that firefox-ios is currently on version 3. Version 4 is this version, /// which adds a metadata table and changes timestamps to be in milliseconds pub const VERSION: i64 = 4; /// Every column shared by both tables except for `id` /// /// Note: `timeCreated`, `timeLastUsed`, and `timePasswordChanged` are in /// milliseconds. This is in line with how the server and Desktop handle it, but /// counter to how firefox-ios handles it (hence needing to fix them up /// firefox-ios on schema upgrade from 3, the last firefox-ios password schema /// version). /// /// The reason for breaking from how firefox-ios does things is just because it /// complicates the code to have multiple kinds of timestamps, for very little /// benefit. It also makes it unclear what's stored on the server, leading to /// further confusion. /// /// However, note that the `local_modified` (of `loginsL`) and `server_modified` /// (of `loginsM`) are stored as milliseconds as well both on firefox-ios and /// here (and so they do not need to be updated with the `timeLastUsed`/ /// `timePasswordChanged`/`timeCreated` timestamps. pub const COMMON_COLS: &str = " guid, username, password, hostname, httpRealm, formSubmitURL, usernameField, passwordField, timeCreated, timeLastUsed, timePasswordChanged, timesUsed "; const COMMON_SQL: &str = " id INTEGER PRIMARY KEY AUTOINCREMENT, hostname TEXT NOT NULL, -- Exactly one of httpRealm or formSubmitURL should be set httpRealm TEXT, formSubmitURL TEXT, usernameField TEXT, passwordField TEXT, timesUsed INTEGER NOT NULL DEFAULT 0, timeCreated INTEGER NOT NULL, timeLastUsed INTEGER, timePasswordChanged INTEGER NOT NULL, username TEXT, password TEXT NOT NULL, guid TEXT NOT NULL UNIQUE "; lazy_static! { static ref CREATE_LOCAL_TABLE_SQL: String = format!( "CREATE TABLE IF NOT EXISTS loginsL ( {common_sql}, -- Milliseconds, or NULL if never modified locally. local_modified INTEGER, is_deleted TINYINT NOT NULL DEFAULT 0, sync_status TINYINT NOT NULL DEFAULT 0 )", common_sql = COMMON_SQL ); static ref CREATE_MIRROR_TABLE_SQL: String = format!( "CREATE TABLE IF NOT EXISTS loginsM ( {common_sql}, -- Milliseconds (a sync15::ServerTimestamp multiplied by -- 1000 and truncated) server_modified INTEGER NOT NULL, is_overridden TINYINT NOT NULL DEFAULT 0 )", common_sql = COMMON_SQL ); static ref SET_VERSION_SQL: String = format!("PRAGMA user_version = {version}", version = VERSION); } const CREATE_META_TABLE_SQL: &str = " CREATE TABLE IF NOT EXISTS loginsSyncMeta ( key TEXT PRIMARY KEY, value NOT NULL ) "; const CREATE_OVERRIDE_HOSTNAME_INDEX_SQL: &str = " CREATE INDEX IF NOT EXISTS idx_loginsM_is_overridden_hostname ON loginsM (is_overridden, hostname) "; const CREATE_DELETED_HOSTNAME_INDEX_SQL: &str = " CREATE INDEX IF NOT EXISTS idx_loginsL_is_deleted_hostname ON loginsL (is_deleted, hostname) "; // As noted above, we use these when updating from schema v3 (firefox-ios's // last schema) to convert from microsecond timestamps to milliseconds. const UPDATE_LOCAL_TIMESTAMPS_TO_MILLIS_SQL: &str = " UPDATE loginsL SET timeCreated = timeCreated / 1000, timeLastUsed = timeLastUsed / 1000, timePasswordChanged = timePasswordChanged / 1000 "; const UPDATE_MIRROR_TIMESTAMPS_TO_MILLIS_SQL: &str = " UPDATE loginsM SET timeCreated = timeCreated / 1000, timeLastUsed = timeLastUsed / 1000, timePasswordChanged = timePasswordChanged / 1000 "; pub(crate) static LAST_SYNC_META_KEY: &str = "last_sync_time"; pub(crate) static GLOBAL_STATE_META_KEY: &str = "global_state_v2"; pub(crate) static GLOBAL_SYNCID_META_KEY: &str = "global_sync_id"; pub(crate) static COLLECTION_SYNCID_META_KEY: &str = "passwords_sync_id"; pub(crate) fn init(db: &Connection) -> Result<()> { let user_version = db.query_one::<i64>("PRAGMA user_version")?; if user_version == 0 { // This logic is largely taken from firefox-ios. AFAICT at some point // they went from having schema versions tracked using a table named // `tableList` to using `PRAGMA user_version`. This leads to the // following logic: // // - If `tableList` exists, we're hopelessly far in the past, drop any // tables we have (to ensure we avoid name collisions/stale data) and // recreate. (This is captured by the `upgrade` case where from == 0) // // - If `tableList` doesn't exist and `PRAGMA user_version` is 0, it's // the first time through, just create the new tables. // // - Otherwise, it's a normal schema upgrade from an earlier // `PRAGMA user_version`. let table_list_exists = db.query_one::<i64>( "SELECT count(*) FROM sqlite_master WHERE type = 'table' AND name = 'tableList'", )? != 0; if table_list_exists { drop(db)?; } return create(db); } if user_version != VERSION { if user_version < VERSION { upgrade(db, user_version)?; } else { log::warn!( "Loaded future schema version {} (we only understand version {}). \ Optimistically ", user_version, VERSION ) } } Ok(()) } // https://github.com/mozilla-mobile/firefox-ios/blob/master/Storage/SQL/LoginsSchema.swift#L100 fn upgrade(db: &Connection, from: i64) -> Result<()> { log::debug!("Upgrading schema from {} to {}", from, VERSION); if from == VERSION { return Ok(()); } assert_ne!( from, 0, "Upgrading from user_version = 0 should already be handled (in `init`)" ); if from < 3 { // These indices were added in v3 (apparently) db.execute_all(&[ CREATE_OVERRIDE_HOSTNAME_INDEX_SQL, CREATE_DELETED_HOSTNAME_INDEX_SQL, ])?; } if from < 4 { // This is the update from the firefox-ios schema to our schema. // The `loginsSyncMeta` table was added in v4, and we moved // from using microseconds to milliseconds for `timeCreated`, // `timeLastUsed`, and `timePasswordChanged`. db.execute_all(&[ CREATE_META_TABLE_SQL, UPDATE_LOCAL_TIMESTAMPS_TO_MILLIS_SQL, UPDATE_MIRROR_TIMESTAMPS_TO_MILLIS_SQL, &*SET_VERSION_SQL, ])?; } Ok(()) } pub(crate) fn create(db: &Connection) -> Result<()> { log::debug!("Creating schema"); db.execute_all(&[ &*CREATE_LOCAL_TABLE_SQL, &*CREATE_MIRROR_TABLE_SQL, CREATE_OVERRIDE_HOSTNAME_INDEX_SQL, CREATE_DELETED_HOSTNAME_INDEX_SQL, CREATE_META_TABLE_SQL, &*SET_VERSION_SQL, ])?; Ok(()) } pub(crate) fn drop(db: &Connection) -> Result<()> { log::debug!("Dropping schema"); db.execute_all(&[ "DROP TABLE IF EXISTS loginsM", "DROP TABLE IF EXISTS loginsL", "DROP TABLE IF EXISTS loginsSyncMeta", "PRAGMA user_version = 0", ])?; Ok(()) }