Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 1 | // Copyright 2020, The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 15 | //! This is the Keystore 2.0 database module. |
| 16 | //! The database module provides a connection to the backing SQLite store. |
| 17 | //! We have two databases one for persistent key blob storage and one for |
| 18 | //! items that have a per boot life cycle. |
| 19 | //! |
| 20 | //! ## Persistent database |
| 21 | //! The persistent database has tables for key blobs. They are organized |
| 22 | //! as follows: |
| 23 | //! The `keyentry` table is the primary table for key entries. It is |
| 24 | //! accompanied by two tables for blobs and parameters. |
| 25 | //! Each key entry occupies exactly one row in the `keyentry` table and |
| 26 | //! zero or more rows in the tables `blobentry` and `keyparameter`. |
| 27 | //! |
| 28 | //! ## Per boot database |
| 29 | //! The per boot database stores items with a per boot lifecycle. |
| 30 | //! Currently, there is only the `grant` table in this database. |
| 31 | //! Grants are references to a key that can be used to access a key by |
| 32 | //! clients that don't own that key. Grants can only be created by the |
| 33 | //! owner of a key. And only certain components can create grants. |
| 34 | //! This is governed by SEPolicy. |
| 35 | //! |
| 36 | //! ## Access control |
| 37 | //! Some database functions that load keys or create grants perform |
| 38 | //! access control. This is because in some cases access control |
| 39 | //! can only be performed after some information about the designated |
| 40 | //! key was loaded from the database. To decouple the permission checks |
| 41 | //! from the database module these functions take permission check |
| 42 | //! callbacks. |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 43 | |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 44 | use crate::db_utils::{self, SqlField}; |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 45 | use crate::error::{Error as KsError, ResponseCode}; |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 46 | use crate::impl_metadata; // This is in db_utils.rs |
Janis Danisevskis | 4522c2b | 2020-11-27 18:04:58 -0800 | [diff] [blame] | 47 | use crate::key_parameter::{KeyParameter, Tag}; |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 48 | use crate::permission::KeyPermSet; |
Hasini Gunasinghe | 557b103 | 2020-11-10 01:35:30 +0000 | [diff] [blame] | 49 | use crate::utils::get_current_time_in_seconds; |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 50 | use anyhow::{anyhow, Context, Result}; |
| 51 | use std::{convert::TryFrom, convert::TryInto, time::SystemTimeError}; |
Janis Danisevskis | 60400fe | 2020-08-26 15:24:42 -0700 | [diff] [blame] | 52 | |
Hasini Gunasinghe | 52333ba | 2020-11-06 01:24:16 +0000 | [diff] [blame] | 53 | use android_hardware_security_keymint::aidl::android::hardware::security::keymint::{ |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 54 | HardwareAuthToken::HardwareAuthToken, |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 55 | HardwareAuthenticatorType::HardwareAuthenticatorType, SecurityLevel::SecurityLevel, |
Janis Danisevskis | c3a496b | 2021-01-05 10:37:22 -0800 | [diff] [blame] | 56 | }; |
| 57 | use android_hardware_security_secureclock::aidl::android::hardware::security::secureclock::{ |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 58 | Timestamp::Timestamp, |
Hasini Gunasinghe | 52333ba | 2020-11-06 01:24:16 +0000 | [diff] [blame] | 59 | }; |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 60 | use android_system_keystore2::aidl::android::system::keystore2::{ |
Janis Danisevskis | 04b0283 | 2020-10-26 09:21:40 -0700 | [diff] [blame] | 61 | Domain::Domain, KeyDescriptor::KeyDescriptor, |
Janis Danisevskis | 60400fe | 2020-08-26 15:24:42 -0700 | [diff] [blame] | 62 | }; |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 63 | use lazy_static::lazy_static; |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 64 | use log::error; |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 65 | #[cfg(not(test))] |
| 66 | use rand::prelude::random; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 67 | use rusqlite::{ |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 68 | params, |
| 69 | types::FromSql, |
| 70 | types::FromSqlResult, |
| 71 | types::ToSqlOutput, |
| 72 | types::{FromSqlError, Value, ValueRef}, |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 73 | Connection, OptionalExtension, ToSql, Transaction, TransactionBehavior, NO_PARAMS, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 74 | }; |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 75 | use std::{ |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 76 | collections::{HashMap, HashSet}, |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 77 | path::Path, |
| 78 | sync::{Condvar, Mutex}, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 79 | time::{Duration, SystemTime}, |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 80 | }; |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 81 | #[cfg(test)] |
| 82 | use tests::random; |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 83 | |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 84 | impl_metadata!( |
| 85 | /// A set of metadata for key entries. |
| 86 | #[derive(Debug, Default, Eq, PartialEq)] |
| 87 | pub struct KeyMetaData; |
| 88 | /// A metadata entry for key entries. |
| 89 | #[derive(Debug, Eq, PartialEq, Ord, PartialOrd)] |
| 90 | pub enum KeyMetaEntry { |
| 91 | /// If present, indicates that the sensitive part of key |
| 92 | /// is encrypted with another key or a key derived from a password. |
| 93 | EncryptedBy(EncryptedBy) with accessor encrypted_by, |
| 94 | /// If the blob is password encrypted this field is set to the |
| 95 | /// salt used for the key derivation. |
| 96 | Salt(Vec<u8>) with accessor salt, |
| 97 | /// If the blob is encrypted, this field is set to the initialization vector. |
| 98 | Iv(Vec<u8>) with accessor iv, |
| 99 | /// If the blob is encrypted, this field holds the AEAD TAG. |
| 100 | AeadTag(Vec<u8>) with accessor aead_tag, |
| 101 | /// Creation date of a the key entry. |
| 102 | CreationDate(DateTime) with accessor creation_date, |
| 103 | /// Expiration date for attestation keys. |
| 104 | AttestationExpirationDate(DateTime) with accessor attestation_expiration_date, |
| 105 | // --- ADD NEW META DATA FIELDS HERE --- |
| 106 | // For backwards compatibility add new entries only to |
| 107 | // end of this list and above this comment. |
| 108 | }; |
| 109 | ); |
| 110 | |
| 111 | impl KeyMetaData { |
| 112 | fn load_from_db(key_id: i64, tx: &Transaction) -> Result<Self> { |
| 113 | let mut stmt = tx |
| 114 | .prepare( |
| 115 | "SELECT tag, data from persistent.keymetadata |
| 116 | WHERE keyentryid = ?;", |
| 117 | ) |
| 118 | .context("In KeyMetaData::load_from_db: prepare statement failed.")?; |
| 119 | |
| 120 | let mut metadata: HashMap<i64, KeyMetaEntry> = Default::default(); |
| 121 | |
| 122 | let mut rows = |
| 123 | stmt.query(params![key_id]).context("In KeyMetaData::load_from_db: query failed.")?; |
| 124 | db_utils::with_rows_extract_all(&mut rows, |row| { |
| 125 | let db_tag: i64 = row.get(0).context("Failed to read tag.")?; |
| 126 | metadata.insert( |
| 127 | db_tag, |
| 128 | KeyMetaEntry::new_from_sql(db_tag, &SqlField::new(1, &row)) |
| 129 | .context("Failed to read KeyMetaEntry.")?, |
| 130 | ); |
| 131 | Ok(()) |
| 132 | }) |
| 133 | .context("In KeyMetaData::load_from_db.")?; |
| 134 | |
| 135 | Ok(Self { data: metadata }) |
| 136 | } |
| 137 | |
| 138 | fn store_in_db(&self, key_id: i64, tx: &Transaction) -> Result<()> { |
| 139 | let mut stmt = tx |
| 140 | .prepare( |
| 141 | "INSERT into persistent.keymetadata (keyentryid, tag, data) |
| 142 | VALUES (?, ?, ?);", |
| 143 | ) |
| 144 | .context("In KeyMetaData::store_in_db: Failed to prepare statement.")?; |
| 145 | |
| 146 | let iter = self.data.iter(); |
| 147 | for (tag, entry) in iter { |
| 148 | stmt.insert(params![key_id, tag, entry,]).with_context(|| { |
| 149 | format!("In KeyMetaData::store_in_db: Failed to insert {:?}", entry) |
| 150 | })?; |
| 151 | } |
| 152 | Ok(()) |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | /// Indicates the type of the keyentry. |
| 157 | #[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd)] |
| 158 | pub enum KeyType { |
| 159 | /// This is a client key type. These keys are created or imported through the Keystore 2.0 |
| 160 | /// AIDL interface android.system.keystore2. |
| 161 | Client, |
| 162 | /// This is a super key type. These keys are created by keystore itself and used to encrypt |
| 163 | /// other key blobs to provide LSKF binding. |
| 164 | Super, |
| 165 | /// This is an attestation key. These keys are created by the remote provisioning mechanism. |
| 166 | Attestation, |
| 167 | } |
| 168 | |
| 169 | impl ToSql for KeyType { |
| 170 | fn to_sql(&self) -> rusqlite::Result<ToSqlOutput> { |
| 171 | Ok(ToSqlOutput::Owned(Value::Integer(match self { |
| 172 | KeyType::Client => 0, |
| 173 | KeyType::Super => 1, |
| 174 | KeyType::Attestation => 2, |
| 175 | }))) |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | impl FromSql for KeyType { |
| 180 | fn column_result(value: ValueRef) -> FromSqlResult<Self> { |
| 181 | match i64::column_result(value)? { |
| 182 | 0 => Ok(KeyType::Client), |
| 183 | 1 => Ok(KeyType::Super), |
| 184 | 2 => Ok(KeyType::Attestation), |
| 185 | v => Err(FromSqlError::OutOfRange(v)), |
| 186 | } |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | /// Indicates how the sensitive part of this key blob is encrypted. |
| 191 | #[derive(Debug, Eq, PartialEq, Ord, PartialOrd)] |
| 192 | pub enum EncryptedBy { |
| 193 | /// The keyblob is encrypted by a user password. |
| 194 | /// In the database this variant is represented as NULL. |
| 195 | Password, |
| 196 | /// The keyblob is encrypted by another key with wrapped key id. |
| 197 | /// In the database this variant is represented as non NULL value |
| 198 | /// that is convertible to i64, typically NUMERIC. |
| 199 | KeyId(i64), |
| 200 | } |
| 201 | |
| 202 | impl ToSql for EncryptedBy { |
| 203 | fn to_sql(&self) -> rusqlite::Result<ToSqlOutput> { |
| 204 | match self { |
| 205 | Self::Password => Ok(ToSqlOutput::Owned(Value::Null)), |
| 206 | Self::KeyId(id) => id.to_sql(), |
| 207 | } |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | impl FromSql for EncryptedBy { |
| 212 | fn column_result(value: ValueRef) -> FromSqlResult<Self> { |
| 213 | match value { |
| 214 | ValueRef::Null => Ok(Self::Password), |
| 215 | _ => Ok(Self::KeyId(i64::column_result(value)?)), |
| 216 | } |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | /// A database representation of wall clock time. DateTime stores unix epoch time as |
| 221 | /// i64 in milliseconds. |
| 222 | #[derive(Debug, Copy, Clone, Default, Eq, PartialEq, Ord, PartialOrd)] |
| 223 | pub struct DateTime(i64); |
| 224 | |
| 225 | /// Error type returned when creating DateTime or converting it from and to |
| 226 | /// SystemTime. |
| 227 | #[derive(thiserror::Error, Debug)] |
| 228 | pub enum DateTimeError { |
| 229 | /// This is returned when SystemTime and Duration computations fail. |
| 230 | #[error(transparent)] |
| 231 | SystemTimeError(#[from] SystemTimeError), |
| 232 | |
| 233 | /// This is returned when type conversions fail. |
| 234 | #[error(transparent)] |
| 235 | TypeConversion(#[from] std::num::TryFromIntError), |
| 236 | |
| 237 | /// This is returned when checked time arithmetic failed. |
| 238 | #[error("Time arithmetic failed.")] |
| 239 | TimeArithmetic, |
| 240 | } |
| 241 | |
| 242 | impl DateTime { |
| 243 | /// Constructs a new DateTime object denoting the current time. This may fail during |
| 244 | /// conversion to unix epoch time and during conversion to the internal i64 representation. |
| 245 | pub fn now() -> Result<Self, DateTimeError> { |
| 246 | Ok(Self(SystemTime::now().duration_since(SystemTime::UNIX_EPOCH)?.as_millis().try_into()?)) |
| 247 | } |
| 248 | |
| 249 | /// Constructs a new DateTime object from milliseconds. |
| 250 | pub fn from_millis_epoch(millis: i64) -> Self { |
| 251 | Self(millis) |
| 252 | } |
| 253 | |
| 254 | /// Returns unix epoch time in milliseconds. |
| 255 | pub fn to_millis_epoch(&self) -> i64 { |
| 256 | self.0 |
| 257 | } |
| 258 | |
| 259 | /// Returns unix epoch time in seconds. |
| 260 | pub fn to_secs_epoch(&self) -> i64 { |
| 261 | self.0 / 1000 |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | impl ToSql for DateTime { |
| 266 | fn to_sql(&self) -> rusqlite::Result<ToSqlOutput> { |
| 267 | Ok(ToSqlOutput::Owned(Value::Integer(self.0))) |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | impl FromSql for DateTime { |
| 272 | fn column_result(value: ValueRef) -> FromSqlResult<Self> { |
| 273 | Ok(Self(i64::column_result(value)?)) |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | impl TryInto<SystemTime> for DateTime { |
| 278 | type Error = DateTimeError; |
| 279 | |
| 280 | fn try_into(self) -> Result<SystemTime, Self::Error> { |
| 281 | // We want to construct a SystemTime representation equivalent to self, denoting |
| 282 | // a point in time THEN, but we cannot set the time directly. We can only construct |
| 283 | // a SystemTime denoting NOW, and we can get the duration between EPOCH and NOW, |
| 284 | // and between EPOCH and THEN. With this common reference we can construct the |
| 285 | // duration between NOW and THEN which we can add to our SystemTime representation |
| 286 | // of NOW to get a SystemTime representation of THEN. |
| 287 | // Durations can only be positive, thus the if statement below. |
| 288 | let now = SystemTime::now(); |
| 289 | let now_epoch = now.duration_since(SystemTime::UNIX_EPOCH)?; |
| 290 | let then_epoch = Duration::from_millis(self.0.try_into()?); |
| 291 | Ok(if now_epoch > then_epoch { |
| 292 | // then = now - (now_epoch - then_epoch) |
| 293 | now_epoch |
| 294 | .checked_sub(then_epoch) |
| 295 | .and_then(|d| now.checked_sub(d)) |
| 296 | .ok_or(DateTimeError::TimeArithmetic)? |
| 297 | } else { |
| 298 | // then = now + (then_epoch - now_epoch) |
| 299 | then_epoch |
| 300 | .checked_sub(now_epoch) |
| 301 | .and_then(|d| now.checked_add(d)) |
| 302 | .ok_or(DateTimeError::TimeArithmetic)? |
| 303 | }) |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | impl TryFrom<SystemTime> for DateTime { |
| 308 | type Error = DateTimeError; |
| 309 | |
| 310 | fn try_from(t: SystemTime) -> Result<Self, Self::Error> { |
| 311 | Ok(Self(t.duration_since(SystemTime::UNIX_EPOCH)?.as_millis().try_into()?)) |
| 312 | } |
| 313 | } |
| 314 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 315 | #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Copy, Clone)] |
| 316 | enum KeyLifeCycle { |
| 317 | /// Existing keys have a key ID but are not fully populated yet. |
| 318 | /// This is a transient state. If Keystore finds any such keys when it starts up, it must move |
| 319 | /// them to Unreferenced for garbage collection. |
| 320 | Existing, |
| 321 | /// A live key is fully populated and usable by clients. |
| 322 | Live, |
| 323 | /// An unreferenced key is scheduled for garbage collection. |
| 324 | Unreferenced, |
| 325 | } |
| 326 | |
| 327 | impl ToSql for KeyLifeCycle { |
| 328 | fn to_sql(&self) -> rusqlite::Result<ToSqlOutput> { |
| 329 | match self { |
| 330 | Self::Existing => Ok(ToSqlOutput::Owned(Value::Integer(0))), |
| 331 | Self::Live => Ok(ToSqlOutput::Owned(Value::Integer(1))), |
| 332 | Self::Unreferenced => Ok(ToSqlOutput::Owned(Value::Integer(2))), |
| 333 | } |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | impl FromSql for KeyLifeCycle { |
| 338 | fn column_result(value: ValueRef) -> FromSqlResult<Self> { |
| 339 | match i64::column_result(value)? { |
| 340 | 0 => Ok(KeyLifeCycle::Existing), |
| 341 | 1 => Ok(KeyLifeCycle::Live), |
| 342 | 2 => Ok(KeyLifeCycle::Unreferenced), |
| 343 | v => Err(FromSqlError::OutOfRange(v)), |
| 344 | } |
| 345 | } |
| 346 | } |
| 347 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 348 | /// Keys have a KeyMint blob component and optional public certificate and |
| 349 | /// certificate chain components. |
| 350 | /// KeyEntryLoadBits is a bitmap that indicates to `KeystoreDB::load_key_entry` |
| 351 | /// which components shall be loaded from the database if present. |
| 352 | #[derive(Debug, Eq, PartialEq, Ord, PartialOrd)] |
| 353 | pub struct KeyEntryLoadBits(u32); |
| 354 | |
| 355 | impl KeyEntryLoadBits { |
| 356 | /// Indicate to `KeystoreDB::load_key_entry` that no component shall be loaded. |
| 357 | pub const NONE: KeyEntryLoadBits = Self(0); |
| 358 | /// Indicate to `KeystoreDB::load_key_entry` that the KeyMint component shall be loaded. |
| 359 | pub const KM: KeyEntryLoadBits = Self(1); |
| 360 | /// Indicate to `KeystoreDB::load_key_entry` that the Public components shall be loaded. |
| 361 | pub const PUBLIC: KeyEntryLoadBits = Self(2); |
| 362 | /// Indicate to `KeystoreDB::load_key_entry` that both components shall be loaded. |
| 363 | pub const BOTH: KeyEntryLoadBits = Self(3); |
| 364 | |
| 365 | /// Returns true if this object indicates that the public components shall be loaded. |
| 366 | pub const fn load_public(&self) -> bool { |
| 367 | self.0 & Self::PUBLIC.0 != 0 |
| 368 | } |
| 369 | |
| 370 | /// Returns true if the object indicates that the KeyMint component shall be loaded. |
| 371 | pub const fn load_km(&self) -> bool { |
| 372 | self.0 & Self::KM.0 != 0 |
| 373 | } |
| 374 | } |
| 375 | |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 376 | lazy_static! { |
| 377 | static ref KEY_ID_LOCK: KeyIdLockDb = KeyIdLockDb::new(); |
| 378 | } |
| 379 | |
| 380 | struct KeyIdLockDb { |
| 381 | locked_keys: Mutex<HashSet<i64>>, |
| 382 | cond_var: Condvar, |
| 383 | } |
| 384 | |
| 385 | /// A locked key. While a guard exists for a given key id, the same key cannot be loaded |
| 386 | /// from the database a second time. Most functions manipulating the key blob database |
| 387 | /// require a KeyIdGuard. |
| 388 | #[derive(Debug)] |
| 389 | pub struct KeyIdGuard(i64); |
| 390 | |
| 391 | impl KeyIdLockDb { |
| 392 | fn new() -> Self { |
| 393 | Self { locked_keys: Mutex::new(HashSet::new()), cond_var: Condvar::new() } |
| 394 | } |
| 395 | |
| 396 | /// This function blocks until an exclusive lock for the given key entry id can |
| 397 | /// be acquired. It returns a guard object, that represents the lifecycle of the |
| 398 | /// acquired lock. |
| 399 | pub fn get(&self, key_id: i64) -> KeyIdGuard { |
| 400 | let mut locked_keys = self.locked_keys.lock().unwrap(); |
| 401 | while locked_keys.contains(&key_id) { |
| 402 | locked_keys = self.cond_var.wait(locked_keys).unwrap(); |
| 403 | } |
| 404 | locked_keys.insert(key_id); |
| 405 | KeyIdGuard(key_id) |
| 406 | } |
| 407 | |
| 408 | /// This function attempts to acquire an exclusive lock on a given key id. If the |
| 409 | /// given key id is already taken the function returns None immediately. If a lock |
| 410 | /// can be acquired this function returns a guard object, that represents the |
| 411 | /// lifecycle of the acquired lock. |
| 412 | pub fn try_get(&self, key_id: i64) -> Option<KeyIdGuard> { |
| 413 | let mut locked_keys = self.locked_keys.lock().unwrap(); |
| 414 | if locked_keys.insert(key_id) { |
| 415 | Some(KeyIdGuard(key_id)) |
| 416 | } else { |
| 417 | None |
| 418 | } |
| 419 | } |
| 420 | } |
| 421 | |
| 422 | impl KeyIdGuard { |
| 423 | /// Get the numeric key id of the locked key. |
| 424 | pub fn id(&self) -> i64 { |
| 425 | self.0 |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | impl Drop for KeyIdGuard { |
| 430 | fn drop(&mut self) { |
| 431 | let mut locked_keys = KEY_ID_LOCK.locked_keys.lock().unwrap(); |
| 432 | locked_keys.remove(&self.0); |
Janis Danisevskis | 7fd5358 | 2020-11-23 13:40:34 -0800 | [diff] [blame] | 433 | drop(locked_keys); |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 434 | KEY_ID_LOCK.cond_var.notify_all(); |
| 435 | } |
| 436 | } |
| 437 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 438 | /// This type represents a Keystore 2.0 key entry. |
| 439 | /// An entry has a unique `id` by which it can be found in the database. |
| 440 | /// It has a security level field, key parameters, and three optional fields |
| 441 | /// for the KeyMint blob, public certificate and a public certificate chain. |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 442 | #[derive(Debug, Default, Eq, PartialEq)] |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 443 | pub struct KeyEntry { |
| 444 | id: i64, |
| 445 | km_blob: Option<Vec<u8>>, |
| 446 | cert: Option<Vec<u8>>, |
| 447 | cert_chain: Option<Vec<u8>>, |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 448 | sec_level: SecurityLevel, |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 449 | parameters: Vec<KeyParameter>, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 450 | metadata: KeyMetaData, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 451 | } |
| 452 | |
| 453 | impl KeyEntry { |
| 454 | /// Returns the unique id of the Key entry. |
| 455 | pub fn id(&self) -> i64 { |
| 456 | self.id |
| 457 | } |
| 458 | /// Exposes the optional KeyMint blob. |
| 459 | pub fn km_blob(&self) -> &Option<Vec<u8>> { |
| 460 | &self.km_blob |
| 461 | } |
| 462 | /// Extracts the Optional KeyMint blob. |
| 463 | pub fn take_km_blob(&mut self) -> Option<Vec<u8>> { |
| 464 | self.km_blob.take() |
| 465 | } |
| 466 | /// Exposes the optional public certificate. |
| 467 | pub fn cert(&self) -> &Option<Vec<u8>> { |
| 468 | &self.cert |
| 469 | } |
| 470 | /// Extracts the optional public certificate. |
| 471 | pub fn take_cert(&mut self) -> Option<Vec<u8>> { |
| 472 | self.cert.take() |
| 473 | } |
| 474 | /// Exposes the optional public certificate chain. |
| 475 | pub fn cert_chain(&self) -> &Option<Vec<u8>> { |
| 476 | &self.cert_chain |
| 477 | } |
| 478 | /// Extracts the optional public certificate_chain. |
| 479 | pub fn take_cert_chain(&mut self) -> Option<Vec<u8>> { |
| 480 | self.cert_chain.take() |
| 481 | } |
| 482 | /// Returns the security level of the key entry. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 483 | pub fn sec_level(&self) -> SecurityLevel { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 484 | self.sec_level |
| 485 | } |
Janis Danisevskis | 04b0283 | 2020-10-26 09:21:40 -0700 | [diff] [blame] | 486 | /// Exposes the key parameters of this key entry. |
| 487 | pub fn key_parameters(&self) -> &Vec<KeyParameter> { |
| 488 | &self.parameters |
| 489 | } |
| 490 | /// Consumes this key entry and extracts the keyparameters from it. |
| 491 | pub fn into_key_parameters(self) -> Vec<KeyParameter> { |
| 492 | self.parameters |
| 493 | } |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 494 | /// Exposes the key metadata of this key entry. |
| 495 | pub fn metadata(&self) -> &KeyMetaData { |
| 496 | &self.metadata |
| 497 | } |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | /// Indicates the sub component of a key entry for persistent storage. |
| 501 | #[derive(Debug, Eq, PartialEq, Ord, PartialOrd)] |
| 502 | pub struct SubComponentType(u32); |
| 503 | impl SubComponentType { |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 504 | /// Persistent identifier for a key blob. |
| 505 | pub const KEY_BLOB: SubComponentType = Self(0); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 506 | /// Persistent identifier for a certificate blob. |
| 507 | pub const CERT: SubComponentType = Self(1); |
| 508 | /// Persistent identifier for a certificate chain blob. |
| 509 | pub const CERT_CHAIN: SubComponentType = Self(2); |
| 510 | } |
| 511 | |
| 512 | impl ToSql for SubComponentType { |
| 513 | fn to_sql(&self) -> rusqlite::Result<ToSqlOutput> { |
| 514 | self.0.to_sql() |
| 515 | } |
| 516 | } |
| 517 | |
| 518 | impl FromSql for SubComponentType { |
| 519 | fn column_result(value: ValueRef) -> FromSqlResult<Self> { |
| 520 | Ok(Self(u32::column_result(value)?)) |
| 521 | } |
| 522 | } |
| 523 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 524 | /// KeystoreDB wraps a connection to an SQLite database and tracks its |
| 525 | /// ownership. It also implements all of Keystore 2.0's database functionality. |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 526 | pub struct KeystoreDB { |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 527 | conn: Connection, |
| 528 | } |
| 529 | |
Hasini Gunasinghe | 557b103 | 2020-11-10 01:35:30 +0000 | [diff] [blame] | 530 | /// Database representation of the monotonic time retrieved from the system call clock_gettime with |
| 531 | /// CLOCK_MONOTONIC_RAW. Stores monotonic time as i64 in seconds. |
| 532 | #[derive(Debug, Copy, Clone, Default, Eq, PartialEq, Ord, PartialOrd)] |
| 533 | pub struct MonotonicRawTime(i64); |
| 534 | |
| 535 | impl MonotonicRawTime { |
| 536 | /// Constructs a new MonotonicRawTime |
| 537 | pub fn now() -> Self { |
| 538 | Self(get_current_time_in_seconds()) |
| 539 | } |
| 540 | |
| 541 | /// Returns the integer value of MonotonicRawTime as i64 |
| 542 | pub fn seconds(&self) -> i64 { |
| 543 | self.0 |
| 544 | } |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 545 | |
| 546 | /// Like i64::checked_sub. |
| 547 | pub fn checked_sub(&self, other: &Self) -> Option<Self> { |
| 548 | self.0.checked_sub(other.0).map(Self) |
| 549 | } |
Hasini Gunasinghe | 557b103 | 2020-11-10 01:35:30 +0000 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | impl ToSql for MonotonicRawTime { |
| 553 | fn to_sql(&self) -> rusqlite::Result<ToSqlOutput> { |
| 554 | Ok(ToSqlOutput::Owned(Value::Integer(self.0))) |
| 555 | } |
| 556 | } |
| 557 | |
| 558 | impl FromSql for MonotonicRawTime { |
| 559 | fn column_result(value: ValueRef) -> FromSqlResult<Self> { |
| 560 | Ok(Self(i64::column_result(value)?)) |
| 561 | } |
| 562 | } |
| 563 | |
Hasini Gunasinghe | 52333ba | 2020-11-06 01:24:16 +0000 | [diff] [blame] | 564 | /// This struct encapsulates the information to be stored in the database about the auth tokens |
| 565 | /// received by keystore. |
| 566 | pub struct AuthTokenEntry { |
| 567 | auth_token: HardwareAuthToken, |
Hasini Gunasinghe | 557b103 | 2020-11-10 01:35:30 +0000 | [diff] [blame] | 568 | time_received: MonotonicRawTime, |
Hasini Gunasinghe | 52333ba | 2020-11-06 01:24:16 +0000 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | impl AuthTokenEntry { |
Hasini Gunasinghe | 557b103 | 2020-11-10 01:35:30 +0000 | [diff] [blame] | 572 | fn new(auth_token: HardwareAuthToken, time_received: MonotonicRawTime) -> Self { |
Hasini Gunasinghe | 52333ba | 2020-11-06 01:24:16 +0000 | [diff] [blame] | 573 | AuthTokenEntry { auth_token, time_received } |
| 574 | } |
| 575 | |
| 576 | /// Checks if this auth token satisfies the given authentication information. |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 577 | pub fn satisfies(&self, user_secure_ids: &[i64], auth_type: HardwareAuthenticatorType) -> bool { |
Hasini Gunasinghe | 52333ba | 2020-11-06 01:24:16 +0000 | [diff] [blame] | 578 | user_secure_ids.iter().any(|&sid| { |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 579 | (sid == self.auth_token.userId || sid == self.auth_token.authenticatorId) |
| 580 | && (((auth_type.0 as i32) & (self.auth_token.authenticatorType.0 as i32)) != 0) |
Hasini Gunasinghe | 52333ba | 2020-11-06 01:24:16 +0000 | [diff] [blame] | 581 | }) |
| 582 | } |
| 583 | |
Hasini Gunasinghe | 52333ba | 2020-11-06 01:24:16 +0000 | [diff] [blame] | 584 | /// Returns the auth token wrapped by the AuthTokenEntry |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 585 | pub fn auth_token(&self) -> &HardwareAuthToken { |
| 586 | &self.auth_token |
| 587 | } |
| 588 | |
| 589 | /// Returns the auth token wrapped by the AuthTokenEntry |
| 590 | pub fn take_auth_token(self) -> HardwareAuthToken { |
Hasini Gunasinghe | 52333ba | 2020-11-06 01:24:16 +0000 | [diff] [blame] | 591 | self.auth_token |
| 592 | } |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 593 | |
| 594 | /// Returns the time that this auth token was received. |
| 595 | pub fn time_received(&self) -> MonotonicRawTime { |
| 596 | self.time_received |
| 597 | } |
Hasini Gunasinghe | 52333ba | 2020-11-06 01:24:16 +0000 | [diff] [blame] | 598 | } |
| 599 | |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 600 | impl KeystoreDB { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 601 | /// This will create a new database connection connecting the two |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 602 | /// files persistent.sqlite and perboot.sqlite in the given directory. |
| 603 | /// It also attempts to initialize all of the tables. |
| 604 | /// KeystoreDB cannot be used by multiple threads. |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 605 | /// Each thread should open their own connection using `thread_local!`. |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 606 | pub fn new(db_root: &Path) -> Result<Self> { |
| 607 | // Build the path to the sqlite files. |
| 608 | let mut persistent_path = db_root.to_path_buf(); |
| 609 | persistent_path.push("persistent.sqlite"); |
| 610 | let mut perboot_path = db_root.to_path_buf(); |
| 611 | perboot_path.push("perboot.sqlite"); |
Janis Danisevskis | 4df44f4 | 2020-08-26 14:40:03 -0700 | [diff] [blame] | 612 | |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 613 | // Now convert them to strings prefixed with "file:" |
| 614 | let mut persistent_path_str = "file:".to_owned(); |
| 615 | persistent_path_str.push_str(&persistent_path.to_string_lossy()); |
| 616 | let mut perboot_path_str = "file:".to_owned(); |
| 617 | perboot_path_str.push_str(&perboot_path.to_string_lossy()); |
| 618 | |
| 619 | let conn = Self::make_connection(&persistent_path_str, &perboot_path_str)?; |
| 620 | |
| 621 | Self::init_tables(&conn)?; |
Janis Danisevskis | 4df44f4 | 2020-08-26 14:40:03 -0700 | [diff] [blame] | 622 | Ok(Self { conn }) |
Joel Galenson | 2aab443 | 2020-07-22 15:27:57 -0700 | [diff] [blame] | 623 | } |
| 624 | |
Janis Danisevskis | 4df44f4 | 2020-08-26 14:40:03 -0700 | [diff] [blame] | 625 | fn init_tables(conn: &Connection) -> Result<()> { |
| 626 | conn.execute( |
| 627 | "CREATE TABLE IF NOT EXISTS persistent.keyentry ( |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 628 | id INTEGER UNIQUE, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 629 | key_type INTEGER, |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 630 | domain INTEGER, |
| 631 | namespace INTEGER, |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 632 | alias BLOB, |
| 633 | state INTEGER);", |
Janis Danisevskis | 4df44f4 | 2020-08-26 14:40:03 -0700 | [diff] [blame] | 634 | NO_PARAMS, |
| 635 | ) |
| 636 | .context("Failed to initialize \"keyentry\" table.")?; |
| 637 | |
| 638 | conn.execute( |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 639 | "CREATE TABLE IF NOT EXISTS persistent.blobentry ( |
| 640 | id INTEGER PRIMARY KEY, |
| 641 | subcomponent_type INTEGER, |
| 642 | keyentryid INTEGER, |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 643 | blob BLOB);", |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 644 | NO_PARAMS, |
| 645 | ) |
| 646 | .context("Failed to initialize \"blobentry\" table.")?; |
| 647 | |
| 648 | conn.execute( |
Janis Danisevskis | 4df44f4 | 2020-08-26 14:40:03 -0700 | [diff] [blame] | 649 | "CREATE TABLE IF NOT EXISTS persistent.keyparameter ( |
Hasini Gunasinghe | af99366 | 2020-07-24 18:40:20 +0000 | [diff] [blame] | 650 | keyentryid INTEGER, |
| 651 | tag INTEGER, |
| 652 | data ANY, |
| 653 | security_level INTEGER);", |
Janis Danisevskis | 4df44f4 | 2020-08-26 14:40:03 -0700 | [diff] [blame] | 654 | NO_PARAMS, |
| 655 | ) |
| 656 | .context("Failed to initialize \"keyparameter\" table.")?; |
| 657 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 658 | conn.execute( |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 659 | "CREATE TABLE IF NOT EXISTS persistent.keymetadata ( |
| 660 | keyentryid INTEGER, |
| 661 | tag INTEGER, |
| 662 | data ANY);", |
| 663 | NO_PARAMS, |
| 664 | ) |
| 665 | .context("Failed to initialize \"keymetadata\" table.")?; |
| 666 | |
| 667 | conn.execute( |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 668 | "CREATE TABLE IF NOT EXISTS persistent.grant ( |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 669 | id INTEGER UNIQUE, |
| 670 | grantee INTEGER, |
| 671 | keyentryid INTEGER, |
| 672 | access_vector INTEGER);", |
| 673 | NO_PARAMS, |
| 674 | ) |
| 675 | .context("Failed to initialize \"grant\" table.")?; |
| 676 | |
Hasini Gunasinghe | 557b103 | 2020-11-10 01:35:30 +0000 | [diff] [blame] | 677 | //TODO: only drop the following two perboot tables if this is the first start up |
| 678 | //during the boot (b/175716626). |
| 679 | // conn.execute("DROP TABLE IF EXISTS perboot.authtoken;", NO_PARAMS) |
| 680 | // .context("Failed to drop perboot.authtoken table")?; |
| 681 | conn.execute( |
| 682 | "CREATE TABLE IF NOT EXISTS perboot.authtoken ( |
| 683 | id INTEGER PRIMARY KEY, |
| 684 | challenge INTEGER, |
| 685 | user_id INTEGER, |
| 686 | auth_id INTEGER, |
| 687 | authenticator_type INTEGER, |
| 688 | timestamp INTEGER, |
| 689 | mac BLOB, |
| 690 | time_received INTEGER, |
| 691 | UNIQUE(user_id, auth_id, authenticator_type));", |
| 692 | NO_PARAMS, |
| 693 | ) |
| 694 | .context("Failed to initialize \"authtoken\" table.")?; |
| 695 | |
| 696 | // conn.execute("DROP TABLE IF EXISTS perboot.metadata;", NO_PARAMS) |
| 697 | // .context("Failed to drop perboot.metadata table")?; |
| 698 | // metadata table stores certain miscellaneous information required for keystore functioning |
| 699 | // during a boot cycle, as key-value pairs. |
| 700 | conn.execute( |
| 701 | "CREATE TABLE IF NOT EXISTS perboot.metadata ( |
| 702 | key TEXT, |
| 703 | value BLOB, |
| 704 | UNIQUE(key));", |
| 705 | NO_PARAMS, |
| 706 | ) |
| 707 | .context("Failed to initialize \"metadata\" table.")?; |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 708 | Ok(()) |
| 709 | } |
| 710 | |
Janis Danisevskis | 4df44f4 | 2020-08-26 14:40:03 -0700 | [diff] [blame] | 711 | fn make_connection(persistent_file: &str, perboot_file: &str) -> Result<Connection> { |
| 712 | let conn = |
| 713 | Connection::open_in_memory().context("Failed to initialize SQLite connection.")?; |
| 714 | |
| 715 | conn.execute("ATTACH DATABASE ? as persistent;", params![persistent_file]) |
| 716 | .context("Failed to attach database persistent.")?; |
| 717 | conn.execute("ATTACH DATABASE ? as perboot;", params![perboot_file]) |
| 718 | .context("Failed to attach database perboot.")?; |
| 719 | |
| 720 | Ok(conn) |
| 721 | } |
| 722 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 723 | /// Get one unreferenced key. There is no particular order in which the keys are returned. |
| 724 | fn get_unreferenced_key_id(tx: &Transaction) -> Result<Option<i64>> { |
| 725 | tx.query_row( |
| 726 | "SELECT id FROM persistent.keyentry WHERE state = ?", |
| 727 | params![KeyLifeCycle::Unreferenced], |
| 728 | |row| row.get(0), |
| 729 | ) |
| 730 | .optional() |
| 731 | .context("In get_unreferenced_key_id: Trying to get unreferenced key id.") |
| 732 | } |
| 733 | |
| 734 | /// Returns a key id guard and key entry for one unreferenced key entry. Of the optional |
| 735 | /// fields of the key entry only the km_blob field will be populated. This is required |
| 736 | /// to subject the blob to its KeyMint instance for deletion. |
| 737 | pub fn get_unreferenced_key(&mut self) -> Result<Option<(KeyIdGuard, KeyEntry)>> { |
| 738 | self.with_transaction(TransactionBehavior::Deferred, |tx| { |
| 739 | let key_id = match Self::get_unreferenced_key_id(tx) |
| 740 | .context("Trying to get unreferenced key id")? |
| 741 | { |
| 742 | None => return Ok(None), |
| 743 | Some(id) => KEY_ID_LOCK.try_get(id).ok_or_else(KsError::sys).context(concat!( |
| 744 | "A key id lock was held for an unreferenced key. ", |
| 745 | "This should never happen." |
| 746 | ))?, |
| 747 | }; |
| 748 | let key_entry = Self::load_key_components(tx, KeyEntryLoadBits::KM, key_id.id()) |
| 749 | .context("Trying to get key components.")?; |
| 750 | Ok(Some((key_id, key_entry))) |
| 751 | }) |
| 752 | .context("In get_unreferenced_key.") |
| 753 | } |
| 754 | |
| 755 | /// This function purges all remnants of a key entry from the database. |
| 756 | /// Important: This does not check if the key was unreferenced, nor does it |
| 757 | /// subject the key to its KeyMint instance for permanent invalidation. |
| 758 | /// This function should only be called by the garbage collector. |
| 759 | /// To delete a key call `mark_unreferenced`, which transitions the key to the unreferenced |
| 760 | /// state, deletes all grants to the key, and notifies the garbage collector. |
| 761 | /// The garbage collector will: |
| 762 | /// 1. Call get_unreferenced_key. |
| 763 | /// 2. Determine the proper way to dispose of sensitive key material, e.g., call |
| 764 | /// `KeyMintDevice::delete()`. |
| 765 | /// 3. Call `purge_key_entry`. |
| 766 | pub fn purge_key_entry(&mut self, key_id: KeyIdGuard) -> Result<()> { |
| 767 | self.with_transaction(TransactionBehavior::Immediate, |tx| { |
| 768 | tx.execute("DELETE FROM persistent.keyentry WHERE id = ?;", params![key_id.id()]) |
| 769 | .context("Trying to delete keyentry.")?; |
| 770 | tx.execute( |
| 771 | "DELETE FROM persistent.blobentry WHERE keyentryid = ?;", |
| 772 | params![key_id.id()], |
| 773 | ) |
| 774 | .context("Trying to delete blobentries.")?; |
| 775 | tx.execute( |
| 776 | "DELETE FROM persistent.keymetadata WHERE keyentryid = ?;", |
| 777 | params![key_id.id()], |
| 778 | ) |
| 779 | .context("Trying to delete keymetadata.")?; |
| 780 | tx.execute( |
| 781 | "DELETE FROM persistent.keyparameter WHERE keyentryid = ?;", |
| 782 | params![key_id.id()], |
| 783 | ) |
| 784 | .context("Trying to delete keyparameters.")?; |
| 785 | let grants_deleted = tx |
| 786 | .execute("DELETE FROM persistent.grant WHERE keyentryid = ?;", params![key_id.id()]) |
| 787 | .context("Trying to delete grants.")?; |
| 788 | if grants_deleted != 0 { |
| 789 | log::error!("Purged key that still had grants. This should not happen."); |
| 790 | } |
| 791 | Ok(()) |
| 792 | }) |
| 793 | .context("In purge_key_entry.") |
| 794 | } |
| 795 | |
| 796 | /// This maintenance function should be called only once before the database is used for the |
| 797 | /// first time. It restores the invariant that `KeyLifeCycle::Existing` is a transient state. |
| 798 | /// The function transitions all key entries from Existing to Unreferenced unconditionally and |
| 799 | /// returns the number of rows affected. If this returns a value greater than 0, it means that |
| 800 | /// Keystore crashed at some point during key generation. Callers may want to log such |
| 801 | /// occurrences. |
| 802 | /// Unlike with `mark_unreferenced`, we don't need to purge grants, because only keys that made |
| 803 | /// it to `KeyLifeCycle::Live` may have grants. |
| 804 | pub fn cleanup_leftovers(&mut self) -> Result<usize> { |
| 805 | self.conn |
| 806 | .execute( |
| 807 | "UPDATE persistent.keyentry SET state = ? WHERE state = ?;", |
| 808 | params![KeyLifeCycle::Unreferenced, KeyLifeCycle::Existing], |
| 809 | ) |
| 810 | .context("In cleanup_leftovers.") |
| 811 | } |
| 812 | |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 813 | /// Atomically loads a key entry and associated metadata or creates it using the |
| 814 | /// callback create_new_key callback. The callback is called during a database |
| 815 | /// transaction. This means that implementers should be mindful about using |
| 816 | /// blocking operations such as IPC or grabbing mutexes. |
| 817 | pub fn get_or_create_key_with<F>( |
| 818 | &mut self, |
| 819 | domain: Domain, |
| 820 | namespace: i64, |
| 821 | alias: &str, |
| 822 | create_new_key: F, |
| 823 | ) -> Result<(KeyIdGuard, KeyEntry)> |
| 824 | where |
| 825 | F: FnOnce() -> Result<(Vec<u8>, KeyMetaData)>, |
| 826 | { |
| 827 | let tx = self |
| 828 | .conn |
| 829 | .transaction_with_behavior(TransactionBehavior::Immediate) |
| 830 | .context("In get_or_create_key_with: Failed to initialize transaction.")?; |
| 831 | |
| 832 | let id = { |
| 833 | let mut stmt = tx |
| 834 | .prepare( |
| 835 | "SELECT id FROM persistent.keyentry |
| 836 | WHERE |
| 837 | key_type = ? |
| 838 | AND domain = ? |
| 839 | AND namespace = ? |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 840 | AND alias = ? |
| 841 | AND state = ?;", |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 842 | ) |
| 843 | .context("In get_or_create_key_with: Failed to select from keyentry table.")?; |
| 844 | let mut rows = stmt |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 845 | .query(params![KeyType::Super, domain.0, namespace, alias, KeyLifeCycle::Live]) |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 846 | .context("In get_or_create_key_with: Failed to query from keyentry table.")?; |
| 847 | |
| 848 | db_utils::with_rows_extract_one(&mut rows, |row| { |
| 849 | Ok(match row { |
| 850 | Some(r) => r.get(0).context("Failed to unpack id.")?, |
| 851 | None => None, |
| 852 | }) |
| 853 | }) |
| 854 | .context("In get_or_create_key_with.")? |
| 855 | }; |
| 856 | |
| 857 | let (id, entry) = match id { |
| 858 | Some(id) => ( |
| 859 | id, |
| 860 | Self::load_key_components(&tx, KeyEntryLoadBits::KM, id) |
| 861 | .context("In get_or_create_key_with.")?, |
| 862 | ), |
| 863 | |
| 864 | None => { |
| 865 | let id = Self::insert_with_retry(|id| { |
| 866 | tx.execute( |
| 867 | "INSERT into persistent.keyentry |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 868 | (id, key_type, domain, namespace, alias, state) |
| 869 | VALUES(?, ?, ?, ?, ?, ?);", |
| 870 | params![id, KeyType::Super, domain.0, namespace, alias, KeyLifeCycle::Live], |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 871 | ) |
| 872 | }) |
| 873 | .context("In get_or_create_key_with.")?; |
| 874 | |
| 875 | let (blob, metadata) = create_new_key().context("In get_or_create_key_with.")?; |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 876 | Self::insert_blob_internal(&tx, id, SubComponentType::KEY_BLOB, &blob) |
| 877 | .context("In get_of_create_key_with.")?; |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 878 | metadata.store_in_db(id, &tx).context("In get_or_create_key_with.")?; |
| 879 | (id, KeyEntry { id, km_blob: Some(blob), metadata, ..Default::default() }) |
| 880 | } |
| 881 | }; |
| 882 | tx.commit().context("In get_or_create_key_with: Failed to commit transaction.")?; |
| 883 | Ok((KEY_ID_LOCK.get(id), entry)) |
| 884 | } |
| 885 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 886 | /// Creates a transaction with the given behavior and executes f with the new transaction. |
| 887 | /// The transaction is committed only if f returns Ok. |
| 888 | fn with_transaction<T, F>(&mut self, behavior: TransactionBehavior, f: F) -> Result<T> |
| 889 | where |
| 890 | F: FnOnce(&Transaction) -> Result<T>, |
| 891 | { |
| 892 | let tx = self |
| 893 | .conn |
| 894 | .transaction_with_behavior(behavior) |
| 895 | .context("In with_transaction: Failed to initialize transaction.")?; |
| 896 | f(&tx).and_then(|result| { |
| 897 | tx.commit().context("In with_transaction: Failed to commit transaction.")?; |
| 898 | Ok(result) |
| 899 | }) |
| 900 | } |
| 901 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 902 | /// Creates a new key entry and allocates a new randomized id for the new key. |
| 903 | /// The key id gets associated with a domain and namespace but not with an alias. |
| 904 | /// To complete key generation `rebind_alias` should be called after all of the |
| 905 | /// key artifacts, i.e., blobs and parameters have been associated with the new |
| 906 | /// key id. Finalizing with `rebind_alias` makes the creation of a new key entry |
| 907 | /// atomic even if key generation is not. |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 908 | pub fn create_key_entry(&mut self, domain: Domain, namespace: i64) -> Result<KeyIdGuard> { |
| 909 | self.with_transaction(TransactionBehavior::Immediate, |tx| { |
| 910 | Self::create_key_entry_internal(tx, domain, namespace) |
| 911 | }) |
| 912 | .context("In create_key_entry.") |
| 913 | } |
| 914 | |
| 915 | fn create_key_entry_internal( |
| 916 | tx: &Transaction, |
| 917 | domain: Domain, |
| 918 | namespace: i64, |
| 919 | ) -> Result<KeyIdGuard> { |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 920 | match domain { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 921 | Domain::APP | Domain::SELINUX => {} |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 922 | _ => { |
| 923 | return Err(KsError::sys()) |
| 924 | .context(format!("Domain {:?} must be either App or SELinux.", domain)); |
| 925 | } |
| 926 | } |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 927 | Ok(KEY_ID_LOCK.get( |
| 928 | Self::insert_with_retry(|id| { |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 929 | tx.execute( |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 930 | "INSERT into persistent.keyentry |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 931 | (id, key_type, domain, namespace, alias, state) |
| 932 | VALUES(?, ?, ?, ?, NULL, ?);", |
| 933 | params![ |
| 934 | id, |
| 935 | KeyType::Client, |
| 936 | domain.0 as u32, |
| 937 | namespace, |
| 938 | KeyLifeCycle::Existing |
| 939 | ], |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 940 | ) |
| 941 | }) |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 942 | .context("In create_key_entry_internal")?, |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 943 | )) |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 944 | } |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 945 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 946 | /// Inserts a new blob and associates it with the given key id. Each blob |
| 947 | /// has a sub component type and a security level. |
| 948 | /// Each key can have one of each sub component type associated. If more |
| 949 | /// are added only the most recent can be retrieved, and superseded blobs |
| 950 | /// will get garbage collected. The security level field of components |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 951 | /// other than `SubComponentType::KEY_BLOB` are ignored. |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 952 | pub fn insert_blob( |
| 953 | &mut self, |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 954 | key_id: &KeyIdGuard, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 955 | sc_type: SubComponentType, |
| 956 | blob: &[u8], |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 957 | ) -> Result<()> { |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 958 | self.with_transaction(TransactionBehavior::Immediate, |tx| { |
| 959 | Self::insert_blob_internal(&tx, key_id.0, sc_type, blob) |
| 960 | }) |
| 961 | .context("In insert_blob.") |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 962 | } |
| 963 | |
| 964 | fn insert_blob_internal( |
| 965 | tx: &Transaction, |
| 966 | key_id: i64, |
| 967 | sc_type: SubComponentType, |
| 968 | blob: &[u8], |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 969 | ) -> Result<()> { |
| 970 | tx.execute( |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 971 | "INSERT into persistent.blobentry (subcomponent_type, keyentryid, blob) |
| 972 | VALUES (?, ?, ?);", |
| 973 | params![sc_type, key_id, blob], |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 974 | ) |
| 975 | .context("In insert_blob_internal: Failed to insert blob.")?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 976 | Ok(()) |
| 977 | } |
| 978 | |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 979 | /// Inserts a collection of key parameters into the `persistent.keyparameter` table |
| 980 | /// and associates them with the given `key_id`. |
| 981 | pub fn insert_keyparameter<'a>( |
| 982 | &mut self, |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 983 | key_id: &KeyIdGuard, |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 984 | params: impl IntoIterator<Item = &'a KeyParameter>, |
| 985 | ) -> Result<()> { |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 986 | self.with_transaction(TransactionBehavior::Immediate, |tx| { |
| 987 | Self::insert_keyparameter_internal(tx, key_id, params) |
| 988 | }) |
| 989 | .context("In insert_keyparameter.") |
| 990 | } |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 991 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 992 | fn insert_keyparameter_internal<'a>( |
| 993 | tx: &Transaction, |
| 994 | key_id: &KeyIdGuard, |
| 995 | params: impl IntoIterator<Item = &'a KeyParameter>, |
| 996 | ) -> Result<()> { |
| 997 | let mut stmt = tx |
| 998 | .prepare( |
| 999 | "INSERT into persistent.keyparameter (keyentryid, tag, data, security_level) |
| 1000 | VALUES (?, ?, ?, ?);", |
| 1001 | ) |
| 1002 | .context("In insert_keyparameter_internal: Failed to prepare statement.")?; |
| 1003 | |
| 1004 | let iter = params.into_iter(); |
| 1005 | for p in iter { |
| 1006 | stmt.insert(params![ |
| 1007 | key_id.0, |
| 1008 | p.get_tag().0, |
| 1009 | p.key_parameter_value(), |
| 1010 | p.security_level().0 |
| 1011 | ]) |
| 1012 | .with_context(|| { |
| 1013 | format!("In insert_keyparameter_internal: Failed to insert {:?}", p) |
| 1014 | })?; |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1015 | } |
| 1016 | Ok(()) |
| 1017 | } |
| 1018 | |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1019 | /// Insert a set of key entry specific metadata into the database. |
| 1020 | pub fn insert_key_metadata( |
| 1021 | &mut self, |
| 1022 | key_id: &KeyIdGuard, |
| 1023 | metadata: &KeyMetaData, |
| 1024 | ) -> Result<()> { |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1025 | self.with_transaction(TransactionBehavior::Immediate, |tx| { |
| 1026 | metadata.store_in_db(key_id.0, &tx) |
| 1027 | }) |
| 1028 | .context("In insert_key_metadata.") |
| 1029 | } |
| 1030 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1031 | /// Updates the alias column of the given key id `newid` with the given alias, |
| 1032 | /// and atomically, removes the alias, domain, and namespace from another row |
| 1033 | /// with the same alias-domain-namespace tuple if such row exits. |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1034 | /// Returns Ok(true) if an old key was marked unreferenced as a hint to the garbage |
| 1035 | /// collector. |
| 1036 | fn rebind_alias( |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1037 | tx: &Transaction, |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 1038 | newid: &KeyIdGuard, |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1039 | alias: &str, |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1040 | domain: Domain, |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1041 | namespace: i64, |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1042 | ) -> Result<bool> { |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1043 | match domain { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1044 | Domain::APP | Domain::SELINUX => {} |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1045 | _ => { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1046 | return Err(KsError::sys()).context(format!( |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1047 | "In rebind_alias: Domain {:?} must be either App or SELinux.", |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1048 | domain |
| 1049 | )); |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1050 | } |
| 1051 | } |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1052 | let updated = tx |
| 1053 | .execute( |
| 1054 | "UPDATE persistent.keyentry |
| 1055 | SET alias = NULL, domain = NULL, namespace = NULL, state = ? |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1056 | WHERE alias = ? AND domain = ? AND namespace = ?;", |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1057 | params![KeyLifeCycle::Unreferenced, alias, domain.0 as u32, namespace], |
| 1058 | ) |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1059 | .context("In rebind_alias: Failed to rebind existing entry.")?; |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1060 | let result = tx |
| 1061 | .execute( |
| 1062 | "UPDATE persistent.keyentry |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1063 | SET alias = ?, state = ? |
| 1064 | WHERE id = ? AND domain = ? AND namespace = ? AND state = ?;", |
| 1065 | params![ |
| 1066 | alias, |
| 1067 | KeyLifeCycle::Live, |
| 1068 | newid.0, |
| 1069 | domain.0 as u32, |
| 1070 | namespace, |
| 1071 | KeyLifeCycle::Existing |
| 1072 | ], |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1073 | ) |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1074 | .context("In rebind_alias: Failed to set alias.")?; |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1075 | if result != 1 { |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1076 | return Err(KsError::sys()).context(format!( |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1077 | "In rebind_alias: Expected to update a single entry but instead updated {}.", |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1078 | result |
| 1079 | )); |
| 1080 | } |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1081 | Ok(updated != 0) |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1082 | } |
| 1083 | |
| 1084 | /// Store a new key in a single transaction. |
| 1085 | /// The function creates a new key entry, populates the blob, key parameter, and metadata |
| 1086 | /// fields, and rebinds the given alias to the new key. |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1087 | /// The boolean returned is a hint for the garbage collector. If true, a key was replaced, |
| 1088 | /// is now unreferenced and needs to be collected. |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1089 | pub fn store_new_key<'a>( |
| 1090 | &mut self, |
| 1091 | key: KeyDescriptor, |
| 1092 | params: impl IntoIterator<Item = &'a KeyParameter>, |
| 1093 | blob: &[u8], |
| 1094 | cert: Option<&[u8]>, |
| 1095 | cert_chain: Option<&[u8]>, |
| 1096 | metadata: &KeyMetaData, |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1097 | ) -> Result<(bool, KeyIdGuard)> { |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1098 | let (alias, domain, namespace) = match key { |
| 1099 | KeyDescriptor { alias: Some(alias), domain: Domain::APP, nspace, blob: None } |
| 1100 | | KeyDescriptor { alias: Some(alias), domain: Domain::SELINUX, nspace, blob: None } => { |
| 1101 | (alias, key.domain, nspace) |
| 1102 | } |
| 1103 | _ => { |
| 1104 | return Err(KsError::Rc(ResponseCode::INVALID_ARGUMENT)) |
| 1105 | .context("In store_new_key: Need alias and domain must be APP or SELINUX.") |
| 1106 | } |
| 1107 | }; |
| 1108 | self.with_transaction(TransactionBehavior::Immediate, |tx| { |
| 1109 | let key_id = Self::create_key_entry_internal(tx, domain, namespace) |
| 1110 | .context("Trying to create new key entry.")?; |
| 1111 | Self::insert_blob_internal(tx, key_id.id(), SubComponentType::KEY_BLOB, blob) |
| 1112 | .context("Trying to insert the key blob.")?; |
| 1113 | if let Some(cert) = cert { |
| 1114 | Self::insert_blob_internal(tx, key_id.id(), SubComponentType::CERT, cert) |
| 1115 | .context("Trying to insert the certificate.")?; |
| 1116 | } |
| 1117 | if let Some(cert_chain) = cert_chain { |
| 1118 | Self::insert_blob_internal( |
| 1119 | tx, |
| 1120 | key_id.id(), |
| 1121 | SubComponentType::CERT_CHAIN, |
| 1122 | cert_chain, |
| 1123 | ) |
| 1124 | .context("Trying to insert the certificate chain.")?; |
| 1125 | } |
| 1126 | Self::insert_keyparameter_internal(tx, &key_id, params) |
| 1127 | .context("Trying to insert key parameters.")?; |
| 1128 | metadata.store_in_db(key_id.id(), tx).context("Tryin to insert key metadata.")?; |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1129 | let need_gc = Self::rebind_alias(tx, &key_id, &alias, domain, namespace) |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1130 | .context("Trying to rebind alias.")?; |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1131 | Ok((need_gc, key_id)) |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1132 | }) |
| 1133 | .context("In store_new_key.") |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1134 | } |
| 1135 | |
| 1136 | // Helper function loading the key_id given the key descriptor |
| 1137 | // tuple comprising domain, namespace, and alias. |
| 1138 | // Requires a valid transaction. |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1139 | fn load_key_entry_id(tx: &Transaction, key: &KeyDescriptor, key_type: KeyType) -> Result<i64> { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1140 | let alias = key |
| 1141 | .alias |
| 1142 | .as_ref() |
| 1143 | .map_or_else(|| Err(KsError::sys()), Ok) |
| 1144 | .context("In load_key_entry_id: Alias must be specified.")?; |
| 1145 | let mut stmt = tx |
| 1146 | .prepare( |
| 1147 | "SELECT id FROM persistent.keyentry |
| 1148 | WHERE |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1149 | key_type = ? |
| 1150 | AND domain = ? |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1151 | AND namespace = ? |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1152 | AND alias = ? |
| 1153 | AND state = ?;", |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1154 | ) |
| 1155 | .context("In load_key_entry_id: Failed to select from keyentry table.")?; |
| 1156 | let mut rows = stmt |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1157 | .query(params![key_type, key.domain.0 as u32, key.nspace, alias, KeyLifeCycle::Live]) |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1158 | .context("In load_key_entry_id: Failed to read from keyentry table.")?; |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1159 | db_utils::with_rows_extract_one(&mut rows, |row| { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1160 | row.map_or_else(|| Err(KsError::Rc(ResponseCode::KEY_NOT_FOUND)), Ok)? |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1161 | .get(0) |
| 1162 | .context("Failed to unpack id.") |
| 1163 | }) |
| 1164 | .context("In load_key_entry_id.") |
| 1165 | } |
| 1166 | |
| 1167 | /// This helper function completes the access tuple of a key, which is required |
| 1168 | /// to perform access control. The strategy depends on the `domain` field in the |
| 1169 | /// key descriptor. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1170 | /// * Domain::SELINUX: The access tuple is complete and this function only loads |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1171 | /// the key_id for further processing. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1172 | /// * Domain::APP: Like Domain::SELINUX, but the tuple is completed by `caller_uid` |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1173 | /// which serves as the namespace. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1174 | /// * Domain::GRANT: The grant table is queried for the `key_id` and the |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1175 | /// `access_vector`. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1176 | /// * Domain::KEY_ID: The keyentry table is queried for the owning `domain` and |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1177 | /// `namespace`. |
| 1178 | /// In each case the information returned is sufficient to perform the access |
| 1179 | /// check and the key id can be used to load further key artifacts. |
| 1180 | fn load_access_tuple( |
| 1181 | tx: &Transaction, |
| 1182 | key: KeyDescriptor, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1183 | key_type: KeyType, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1184 | caller_uid: u32, |
| 1185 | ) -> Result<(i64, KeyDescriptor, Option<KeyPermSet>)> { |
| 1186 | match key.domain { |
| 1187 | // Domain App or SELinux. In this case we load the key_id from |
| 1188 | // the keyentry database for further loading of key components. |
| 1189 | // We already have the full access tuple to perform access control. |
| 1190 | // The only distinction is that we use the caller_uid instead |
| 1191 | // of the caller supplied namespace if the domain field is |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1192 | // Domain::APP. |
| 1193 | Domain::APP | Domain::SELINUX => { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1194 | let mut access_key = key; |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1195 | if access_key.domain == Domain::APP { |
| 1196 | access_key.nspace = caller_uid as i64; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1197 | } |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1198 | let key_id = Self::load_key_entry_id(&tx, &access_key, key_type) |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1199 | .with_context(|| format!("With key.domain = {:?}.", access_key.domain))?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1200 | |
| 1201 | Ok((key_id, access_key, None)) |
| 1202 | } |
| 1203 | |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1204 | // Domain::GRANT. In this case we load the key_id and the access_vector |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1205 | // from the grant table. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1206 | Domain::GRANT => { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1207 | let mut stmt = tx |
| 1208 | .prepare( |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1209 | "SELECT keyentryid, access_vector FROM persistent.grant |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1210 | WHERE grantee = ? AND id = ?;", |
| 1211 | ) |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1212 | .context("Domain::GRANT prepare statement failed")?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1213 | let mut rows = stmt |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1214 | .query(params![caller_uid as i64, key.nspace]) |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1215 | .context("Domain:Grant: query failed.")?; |
| 1216 | let (key_id, access_vector): (i64, i32) = |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1217 | db_utils::with_rows_extract_one(&mut rows, |row| { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1218 | let r = |
| 1219 | row.map_or_else(|| Err(KsError::Rc(ResponseCode::KEY_NOT_FOUND)), Ok)?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1220 | Ok(( |
| 1221 | r.get(0).context("Failed to unpack key_id.")?, |
| 1222 | r.get(1).context("Failed to unpack access_vector.")?, |
| 1223 | )) |
| 1224 | }) |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1225 | .context("Domain::GRANT.")?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1226 | Ok((key_id, key, Some(access_vector.into()))) |
| 1227 | } |
| 1228 | |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1229 | // Domain::KEY_ID. In this case we load the domain and namespace from the |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1230 | // keyentry database because we need them for access control. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1231 | Domain::KEY_ID => { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1232 | let mut stmt = tx |
| 1233 | .prepare( |
| 1234 | "SELECT domain, namespace FROM persistent.keyentry |
| 1235 | WHERE |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1236 | id = ? |
| 1237 | AND state = ?;", |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1238 | ) |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1239 | .context("Domain::KEY_ID: prepare statement failed")?; |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1240 | let mut rows = stmt |
| 1241 | .query(params![key.nspace, KeyLifeCycle::Live]) |
| 1242 | .context("Domain::KEY_ID: query failed.")?; |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1243 | let (domain, namespace): (Domain, i64) = |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1244 | db_utils::with_rows_extract_one(&mut rows, |row| { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1245 | let r = |
| 1246 | row.map_or_else(|| Err(KsError::Rc(ResponseCode::KEY_NOT_FOUND)), Ok)?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1247 | Ok(( |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1248 | Domain(r.get(0).context("Failed to unpack domain.")?), |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1249 | r.get(1).context("Failed to unpack namespace.")?, |
| 1250 | )) |
| 1251 | }) |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1252 | .context("Domain::KEY_ID.")?; |
| 1253 | let key_id = key.nspace; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1254 | let mut access_key = key; |
| 1255 | access_key.domain = domain; |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1256 | access_key.nspace = namespace; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1257 | |
| 1258 | Ok((key_id, access_key, None)) |
| 1259 | } |
| 1260 | _ => Err(anyhow!(KsError::sys())), |
| 1261 | } |
| 1262 | } |
| 1263 | |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1264 | fn load_blob_components( |
| 1265 | key_id: i64, |
| 1266 | load_bits: KeyEntryLoadBits, |
| 1267 | tx: &Transaction, |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1268 | ) -> Result<(Option<Vec<u8>>, Option<Vec<u8>>, Option<Vec<u8>>)> { |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1269 | let mut stmt = tx |
| 1270 | .prepare( |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1271 | "SELECT MAX(id), subcomponent_type, blob FROM persistent.blobentry |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1272 | WHERE keyentryid = ? GROUP BY subcomponent_type;", |
| 1273 | ) |
| 1274 | .context("In load_blob_components: prepare statement failed.")?; |
| 1275 | |
| 1276 | let mut rows = |
| 1277 | stmt.query(params![key_id]).context("In load_blob_components: query failed.")?; |
| 1278 | |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1279 | let mut km_blob: Option<Vec<u8>> = None; |
| 1280 | let mut cert_blob: Option<Vec<u8>> = None; |
| 1281 | let mut cert_chain_blob: Option<Vec<u8>> = None; |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1282 | db_utils::with_rows_extract_all(&mut rows, |row| { |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1283 | let sub_type: SubComponentType = |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1284 | row.get(1).context("Failed to extract subcomponent_type.")?; |
| 1285 | match (sub_type, load_bits.load_public(), load_bits.load_km()) { |
| 1286 | (SubComponentType::KEY_BLOB, _, true) => { |
| 1287 | km_blob = Some(row.get(2).context("Failed to extract KM blob.")?); |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1288 | } |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1289 | (SubComponentType::CERT, true, _) => { |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1290 | cert_blob = |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1291 | Some(row.get(2).context("Failed to extract public certificate blob.")?); |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1292 | } |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1293 | (SubComponentType::CERT_CHAIN, true, _) => { |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1294 | cert_chain_blob = |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1295 | Some(row.get(2).context("Failed to extract certificate chain blob.")?); |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1296 | } |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1297 | (SubComponentType::CERT, _, _) |
| 1298 | | (SubComponentType::CERT_CHAIN, _, _) |
| 1299 | | (SubComponentType::KEY_BLOB, _, _) => {} |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1300 | _ => Err(KsError::sys()).context("Unknown subcomponent type.")?, |
| 1301 | } |
| 1302 | Ok(()) |
| 1303 | }) |
| 1304 | .context("In load_blob_components.")?; |
| 1305 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1306 | Ok((km_blob, cert_blob, cert_chain_blob)) |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1307 | } |
| 1308 | |
| 1309 | fn load_key_parameters(key_id: i64, tx: &Transaction) -> Result<Vec<KeyParameter>> { |
| 1310 | let mut stmt = tx |
| 1311 | .prepare( |
| 1312 | "SELECT tag, data, security_level from persistent.keyparameter |
| 1313 | WHERE keyentryid = ?;", |
| 1314 | ) |
| 1315 | .context("In load_key_parameters: prepare statement failed.")?; |
| 1316 | |
| 1317 | let mut parameters: Vec<KeyParameter> = Vec::new(); |
| 1318 | |
| 1319 | let mut rows = |
| 1320 | stmt.query(params![key_id]).context("In load_key_parameters: query failed.")?; |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1321 | db_utils::with_rows_extract_all(&mut rows, |row| { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1322 | let tag = Tag(row.get(0).context("Failed to read tag.")?); |
| 1323 | let sec_level = SecurityLevel(row.get(2).context("Failed to read sec_level.")?); |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1324 | parameters.push( |
| 1325 | KeyParameter::new_from_sql(tag, &SqlField::new(1, &row), sec_level) |
| 1326 | .context("Failed to read KeyParameter.")?, |
| 1327 | ); |
| 1328 | Ok(()) |
| 1329 | }) |
| 1330 | .context("In load_key_parameters.")?; |
| 1331 | |
| 1332 | Ok(parameters) |
| 1333 | } |
| 1334 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1335 | /// Load a key entry by the given key descriptor. |
| 1336 | /// It uses the `check_permission` callback to verify if the access is allowed |
| 1337 | /// given the key access tuple read from the database using `load_access_tuple`. |
| 1338 | /// With `load_bits` the caller may specify which blobs shall be loaded from |
| 1339 | /// the blob database. |
| 1340 | pub fn load_key_entry( |
| 1341 | &mut self, |
| 1342 | key: KeyDescriptor, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1343 | key_type: KeyType, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1344 | load_bits: KeyEntryLoadBits, |
| 1345 | caller_uid: u32, |
| 1346 | check_permission: impl FnOnce(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>, |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 1347 | ) -> Result<(KeyIdGuard, KeyEntry)> { |
| 1348 | // KEY ID LOCK 1/2 |
| 1349 | // If we got a key descriptor with a key id we can get the lock right away. |
| 1350 | // Otherwise we have to defer it until we know the key id. |
| 1351 | let key_id_guard = match key.domain { |
| 1352 | Domain::KEY_ID => Some(KEY_ID_LOCK.get(key.nspace)), |
| 1353 | _ => None, |
| 1354 | }; |
| 1355 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1356 | let tx = self |
| 1357 | .conn |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 1358 | .unchecked_transaction() |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1359 | .context("In load_key_entry: Failed to initialize transaction.")?; |
| 1360 | |
| 1361 | // Load the key_id and complete the access control tuple. |
| 1362 | let (key_id, access_key_descriptor, access_vector) = |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1363 | Self::load_access_tuple(&tx, key, key_type, caller_uid) |
| 1364 | .context("In load_key_entry.")?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1365 | |
| 1366 | // Perform access control. It is vital that we return here if the permission is denied. |
| 1367 | // So do not touch that '?' at the end. |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1368 | check_permission(&access_key_descriptor, access_vector).context("In load_key_entry.")?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1369 | |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 1370 | // KEY ID LOCK 2/2 |
| 1371 | // If we did not get a key id lock by now, it was because we got a key descriptor |
| 1372 | // without a key id. At this point we got the key id, so we can try and get a lock. |
| 1373 | // However, we cannot block here, because we are in the middle of the transaction. |
| 1374 | // So first we try to get the lock non blocking. If that fails, we roll back the |
| 1375 | // transaction and block until we get the lock. After we successfully got the lock, |
| 1376 | // we start a new transaction and load the access tuple again. |
| 1377 | // |
| 1378 | // We don't need to perform access control again, because we already established |
| 1379 | // that the caller had access to the given key. But we need to make sure that the |
| 1380 | // key id still exists. So we have to load the key entry by key id this time. |
| 1381 | let (key_id_guard, tx) = match key_id_guard { |
| 1382 | None => match KEY_ID_LOCK.try_get(key_id) { |
| 1383 | None => { |
| 1384 | // Roll back the transaction. |
| 1385 | tx.rollback().context("In load_key_entry: Failed to roll back transaction.")?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1386 | |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 1387 | // Block until we have a key id lock. |
| 1388 | let key_id_guard = KEY_ID_LOCK.get(key_id); |
| 1389 | |
| 1390 | // Create a new transaction. |
| 1391 | let tx = self.conn.unchecked_transaction().context( |
| 1392 | "In load_key_entry: Failed to initialize transaction. (deferred key lock)", |
| 1393 | )?; |
| 1394 | |
| 1395 | Self::load_access_tuple( |
| 1396 | &tx, |
| 1397 | // This time we have to load the key by the retrieved key id, because the |
| 1398 | // alias may have been rebound after we rolled back the transaction. |
| 1399 | KeyDescriptor { |
| 1400 | domain: Domain::KEY_ID, |
| 1401 | nspace: key_id, |
| 1402 | ..Default::default() |
| 1403 | }, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1404 | key_type, |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 1405 | caller_uid, |
| 1406 | ) |
| 1407 | .context("In load_key_entry. (deferred key lock)")?; |
| 1408 | (key_id_guard, tx) |
| 1409 | } |
| 1410 | Some(l) => (l, tx), |
| 1411 | }, |
| 1412 | Some(key_id_guard) => (key_id_guard, tx), |
| 1413 | }; |
| 1414 | |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1415 | let key_entry = Self::load_key_components(&tx, load_bits, key_id_guard.id()) |
| 1416 | .context("In load_key_entry.")?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1417 | |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1418 | tx.commit().context("In load_key_entry: Failed to commit transaction.")?; |
| 1419 | |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1420 | Ok((key_id_guard, key_entry)) |
| 1421 | } |
| 1422 | |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1423 | fn mark_unreferenced(tx: &Transaction, key_id: i64) -> Result<bool> { |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1424 | let updated = tx |
| 1425 | .execute( |
| 1426 | "UPDATE persistent.keyentry SET state = ? WHERE id = ?;", |
| 1427 | params![KeyLifeCycle::Unreferenced, key_id], |
| 1428 | ) |
| 1429 | .context("In mark_unreferenced: Failed to update state of key entry.")?; |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1430 | tx.execute("DELETE from persistent.grant WHERE keyentryid = ?;", params![key_id]) |
| 1431 | .context("In mark_unreferenced: Failed to drop grants.")?; |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1432 | Ok(updated != 0) |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1433 | } |
| 1434 | |
| 1435 | /// Marks the given key as unreferenced and removes all of the grants to this key. |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1436 | /// Returns Ok(true) if a key was marked unreferenced as a hint for the garbage collector. |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1437 | pub fn unbind_key( |
| 1438 | &mut self, |
| 1439 | key: KeyDescriptor, |
| 1440 | key_type: KeyType, |
| 1441 | caller_uid: u32, |
| 1442 | check_permission: impl FnOnce(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>, |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1443 | ) -> Result<bool> { |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1444 | self.with_transaction(TransactionBehavior::Immediate, |tx| { |
| 1445 | let (key_id, access_key_descriptor, access_vector) = |
| 1446 | Self::load_access_tuple(tx, key, key_type, caller_uid) |
| 1447 | .context("Trying to get access tuple.")?; |
| 1448 | |
| 1449 | // Perform access control. It is vital that we return here if the permission is denied. |
| 1450 | // So do not touch that '?' at the end. |
| 1451 | check_permission(&access_key_descriptor, access_vector) |
| 1452 | .context("While checking permission.")?; |
| 1453 | |
| 1454 | Self::mark_unreferenced(tx, key_id).context("Trying to mark the key unreferenced.") |
| 1455 | }) |
| 1456 | .context("In unbind_key.") |
| 1457 | } |
| 1458 | |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1459 | fn load_key_components( |
| 1460 | tx: &Transaction, |
| 1461 | load_bits: KeyEntryLoadBits, |
| 1462 | key_id: i64, |
| 1463 | ) -> Result<KeyEntry> { |
| 1464 | let metadata = KeyMetaData::load_from_db(key_id, &tx).context("In load_key_components.")?; |
| 1465 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1466 | let (km_blob, cert_blob, cert_chain_blob) = |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1467 | Self::load_blob_components(key_id, load_bits, &tx) |
| 1468 | .context("In load_key_components.")?; |
| 1469 | |
| 1470 | let parameters = |
| 1471 | Self::load_key_parameters(key_id, &tx).context("In load_key_components.")?; |
| 1472 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1473 | // Extract the security level by checking the security level of the origin tag. |
| 1474 | // Super keys don't have key parameters so we use security_level software by default. |
| 1475 | let sec_level = parameters |
| 1476 | .iter() |
| 1477 | .find_map(|k| match k.get_tag() { |
| 1478 | Tag::ORIGIN => Some(*k.security_level()), |
| 1479 | _ => None, |
| 1480 | }) |
| 1481 | .unwrap_or(SecurityLevel::SOFTWARE); |
| 1482 | |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1483 | Ok(KeyEntry { |
| 1484 | id: key_id, |
| 1485 | km_blob, |
| 1486 | cert: cert_blob, |
| 1487 | cert_chain: cert_chain_blob, |
| 1488 | sec_level, |
| 1489 | parameters, |
| 1490 | metadata, |
| 1491 | }) |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1492 | } |
| 1493 | |
Janis Danisevskis | e92a5e6 | 2020-12-02 12:57:41 -0800 | [diff] [blame] | 1494 | /// Returns a list of KeyDescriptors in the selected domain/namespace. |
| 1495 | /// The key descriptors will have the domain, nspace, and alias field set. |
| 1496 | /// Domain must be APP or SELINUX, the caller must make sure of that. |
| 1497 | pub fn list(&mut self, domain: Domain, namespace: i64) -> Result<Vec<KeyDescriptor>> { |
| 1498 | let mut stmt = self |
| 1499 | .conn |
| 1500 | .prepare( |
| 1501 | "SELECT alias FROM persistent.keyentry |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1502 | WHERE domain = ? AND namespace = ? AND alias IS NOT NULL AND state = ?;", |
Janis Danisevskis | e92a5e6 | 2020-12-02 12:57:41 -0800 | [diff] [blame] | 1503 | ) |
| 1504 | .context("In list: Failed to prepare.")?; |
| 1505 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1506 | let mut rows = stmt |
| 1507 | .query(params![domain.0 as u32, namespace, KeyLifeCycle::Live]) |
| 1508 | .context("In list: Failed to query.")?; |
Janis Danisevskis | e92a5e6 | 2020-12-02 12:57:41 -0800 | [diff] [blame] | 1509 | |
| 1510 | let mut descriptors: Vec<KeyDescriptor> = Vec::new(); |
| 1511 | db_utils::with_rows_extract_all(&mut rows, |row| { |
| 1512 | descriptors.push(KeyDescriptor { |
| 1513 | domain, |
| 1514 | nspace: namespace, |
| 1515 | alias: Some(row.get(0).context("Trying to extract alias.")?), |
| 1516 | blob: None, |
| 1517 | }); |
| 1518 | Ok(()) |
| 1519 | }) |
| 1520 | .context("In list.")?; |
| 1521 | Ok(descriptors) |
| 1522 | } |
| 1523 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1524 | /// Adds a grant to the grant table. |
| 1525 | /// Like `load_key_entry` this function loads the access tuple before |
| 1526 | /// it uses the callback for a permission check. Upon success, |
| 1527 | /// it inserts the `grantee_uid`, `key_id`, and `access_vector` into the |
| 1528 | /// grant table. The new row will have a randomized id, which is used as |
| 1529 | /// grant id in the namespace field of the resulting KeyDescriptor. |
| 1530 | pub fn grant( |
| 1531 | &mut self, |
| 1532 | key: KeyDescriptor, |
| 1533 | caller_uid: u32, |
| 1534 | grantee_uid: u32, |
| 1535 | access_vector: KeyPermSet, |
| 1536 | check_permission: impl FnOnce(&KeyDescriptor, &KeyPermSet) -> Result<()>, |
| 1537 | ) -> Result<KeyDescriptor> { |
| 1538 | let tx = self |
| 1539 | .conn |
| 1540 | .transaction_with_behavior(TransactionBehavior::Immediate) |
| 1541 | .context("In grant: Failed to initialize transaction.")?; |
| 1542 | |
| 1543 | // Load the key_id and complete the access control tuple. |
| 1544 | // We ignore the access vector here because grants cannot be granted. |
| 1545 | // The access vector returned here expresses the permissions the |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1546 | // grantee has if key.domain == Domain::GRANT. But this vector |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1547 | // cannot include the grant permission by design, so there is no way the |
| 1548 | // subsequent permission check can pass. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1549 | // We could check key.domain == Domain::GRANT and fail early. |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1550 | // But even if we load the access tuple by grant here, the permission |
| 1551 | // check denies the attempt to create a grant by grant descriptor. |
| 1552 | let (key_id, access_key_descriptor, _) = |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1553 | Self::load_access_tuple(&tx, key, KeyType::Client, caller_uid).context("In grant")?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1554 | |
| 1555 | // Perform access control. It is vital that we return here if the permission |
| 1556 | // was denied. So do not touch that '?' at the end of the line. |
| 1557 | // This permission check checks if the caller has the grant permission |
| 1558 | // for the given key and in addition to all of the permissions |
| 1559 | // expressed in `access_vector`. |
| 1560 | check_permission(&access_key_descriptor, &access_vector) |
| 1561 | .context("In grant: check_permission failed.")?; |
| 1562 | |
| 1563 | let grant_id = if let Some(grant_id) = tx |
| 1564 | .query_row( |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1565 | "SELECT id FROM persistent.grant |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1566 | WHERE keyentryid = ? AND grantee = ?;", |
| 1567 | params![key_id, grantee_uid], |
| 1568 | |row| row.get(0), |
| 1569 | ) |
| 1570 | .optional() |
| 1571 | .context("In grant: Failed get optional existing grant id.")? |
| 1572 | { |
| 1573 | tx.execute( |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1574 | "UPDATE persistent.grant |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1575 | SET access_vector = ? |
| 1576 | WHERE id = ?;", |
| 1577 | params![i32::from(access_vector), grant_id], |
| 1578 | ) |
| 1579 | .context("In grant: Failed to update existing grant.")?; |
| 1580 | grant_id |
| 1581 | } else { |
Joel Galenson | 845f74b | 2020-09-09 14:11:55 -0700 | [diff] [blame] | 1582 | Self::insert_with_retry(|id| { |
| 1583 | tx.execute( |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1584 | "INSERT INTO persistent.grant (id, grantee, keyentryid, access_vector) |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1585 | VALUES (?, ?, ?, ?);", |
Joel Galenson | 845f74b | 2020-09-09 14:11:55 -0700 | [diff] [blame] | 1586 | params![id, grantee_uid, key_id, i32::from(access_vector)], |
| 1587 | ) |
| 1588 | }) |
| 1589 | .context("In grant")? |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1590 | }; |
| 1591 | tx.commit().context("In grant: failed to commit transaction.")?; |
| 1592 | |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1593 | Ok(KeyDescriptor { domain: Domain::GRANT, nspace: grant_id, alias: None, blob: None }) |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1594 | } |
| 1595 | |
| 1596 | /// This function checks permissions like `grant` and `load_key_entry` |
| 1597 | /// before removing a grant from the grant table. |
| 1598 | pub fn ungrant( |
| 1599 | &mut self, |
| 1600 | key: KeyDescriptor, |
| 1601 | caller_uid: u32, |
| 1602 | grantee_uid: u32, |
| 1603 | check_permission: impl FnOnce(&KeyDescriptor) -> Result<()>, |
| 1604 | ) -> Result<()> { |
| 1605 | let tx = self |
| 1606 | .conn |
| 1607 | .transaction_with_behavior(TransactionBehavior::Immediate) |
| 1608 | .context("In ungrant: Failed to initialize transaction.")?; |
| 1609 | |
| 1610 | // Load the key_id and complete the access control tuple. |
| 1611 | // We ignore the access vector here because grants cannot be granted. |
| 1612 | let (key_id, access_key_descriptor, _) = |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1613 | Self::load_access_tuple(&tx, key, KeyType::Client, caller_uid) |
| 1614 | .context("In ungrant.")?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1615 | |
| 1616 | // Perform access control. We must return here if the permission |
| 1617 | // was denied. So do not touch the '?' at the end of this line. |
| 1618 | check_permission(&access_key_descriptor).context("In grant: check_permission failed.")?; |
| 1619 | |
| 1620 | tx.execute( |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1621 | "DELETE FROM persistent.grant |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1622 | WHERE keyentryid = ? AND grantee = ?;", |
| 1623 | params![key_id, grantee_uid], |
| 1624 | ) |
| 1625 | .context("Failed to delete grant.")?; |
| 1626 | |
| 1627 | tx.commit().context("In ungrant: failed to commit transaction.")?; |
| 1628 | |
| 1629 | Ok(()) |
| 1630 | } |
| 1631 | |
Joel Galenson | 845f74b | 2020-09-09 14:11:55 -0700 | [diff] [blame] | 1632 | // Generates a random id and passes it to the given function, which will |
| 1633 | // try to insert it into a database. If that insertion fails, retry; |
| 1634 | // otherwise return the id. |
| 1635 | fn insert_with_retry(inserter: impl Fn(i64) -> rusqlite::Result<usize>) -> Result<i64> { |
| 1636 | loop { |
| 1637 | let newid: i64 = random(); |
| 1638 | match inserter(newid) { |
| 1639 | // If the id already existed, try again. |
| 1640 | Err(rusqlite::Error::SqliteFailure( |
| 1641 | libsqlite3_sys::Error { |
| 1642 | code: libsqlite3_sys::ErrorCode::ConstraintViolation, |
| 1643 | extended_code: libsqlite3_sys::SQLITE_CONSTRAINT_UNIQUE, |
| 1644 | }, |
| 1645 | _, |
| 1646 | )) => (), |
| 1647 | Err(e) => { |
| 1648 | return Err(e).context("In insert_with_retry: failed to insert into database.") |
| 1649 | } |
| 1650 | _ => return Ok(newid), |
| 1651 | } |
| 1652 | } |
| 1653 | } |
Hasini Gunasinghe | 557b103 | 2020-11-10 01:35:30 +0000 | [diff] [blame] | 1654 | |
| 1655 | /// Insert or replace the auth token based on the UNIQUE constraint of the auth token table |
| 1656 | pub fn insert_auth_token(&mut self, auth_token: &HardwareAuthToken) -> Result<()> { |
| 1657 | self.conn |
| 1658 | .execute( |
| 1659 | "INSERT OR REPLACE INTO perboot.authtoken (challenge, user_id, auth_id, |
| 1660 | authenticator_type, timestamp, mac, time_received) VALUES(?, ?, ?, ?, ?, ?, ?);", |
| 1661 | params![ |
| 1662 | auth_token.challenge, |
| 1663 | auth_token.userId, |
| 1664 | auth_token.authenticatorId, |
| 1665 | auth_token.authenticatorType.0 as i32, |
| 1666 | auth_token.timestamp.milliSeconds as i64, |
| 1667 | auth_token.mac, |
| 1668 | MonotonicRawTime::now(), |
| 1669 | ], |
| 1670 | ) |
| 1671 | .context("In insert_auth_token: failed to insert auth token into the database")?; |
| 1672 | Ok(()) |
| 1673 | } |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1674 | |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 1675 | /// Find the newest auth token matching the given predicate. |
| 1676 | pub fn find_auth_token_entry<F>( |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1677 | &mut self, |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 1678 | p: F, |
| 1679 | ) -> Result<Option<(AuthTokenEntry, MonotonicRawTime)>> |
| 1680 | where |
| 1681 | F: Fn(&AuthTokenEntry) -> bool, |
| 1682 | { |
| 1683 | self.with_transaction(TransactionBehavior::Deferred, |tx| { |
| 1684 | let mut stmt = tx |
| 1685 | .prepare("SELECT * from perboot.authtoken ORDER BY time_received DESC;") |
| 1686 | .context("Prepare statement failed.")?; |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1687 | |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 1688 | let mut rows = stmt.query(NO_PARAMS).context("Failed to query.")?; |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1689 | |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 1690 | while let Some(row) = rows.next().context("Failed to get next row.")? { |
| 1691 | let entry = AuthTokenEntry::new( |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1692 | HardwareAuthToken { |
| 1693 | challenge: row.get(1)?, |
| 1694 | userId: row.get(2)?, |
| 1695 | authenticatorId: row.get(3)?, |
| 1696 | authenticatorType: HardwareAuthenticatorType(row.get(4)?), |
| 1697 | timestamp: Timestamp { milliSeconds: row.get(5)? }, |
| 1698 | mac: row.get(6)?, |
| 1699 | }, |
| 1700 | row.get(7)?, |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 1701 | ); |
| 1702 | if p(&entry) { |
| 1703 | return Ok(Some(( |
| 1704 | entry, |
| 1705 | Self::get_last_off_body(tx) |
| 1706 | .context("In find_auth_token_entry: Trying to get last off body")?, |
| 1707 | ))); |
| 1708 | } |
| 1709 | } |
| 1710 | Ok(None) |
| 1711 | }) |
| 1712 | .context("In find_auth_token_entry.") |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1713 | } |
| 1714 | |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 1715 | /// Insert last_off_body into the metadata table at the initialization of auth token table |
| 1716 | pub fn insert_last_off_body(&self, last_off_body: MonotonicRawTime) -> Result<()> { |
| 1717 | self.conn |
| 1718 | .execute( |
| 1719 | "INSERT OR REPLACE INTO perboot.metadata (key, value) VALUES (?, ?);", |
| 1720 | params!["last_off_body", last_off_body], |
| 1721 | ) |
| 1722 | .context("In insert_last_off_body: failed to insert.")?; |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1723 | Ok(()) |
| 1724 | } |
| 1725 | |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 1726 | /// Update last_off_body when on_device_off_body is called |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1727 | pub fn update_last_off_body(&self, last_off_body: MonotonicRawTime) -> Result<()> { |
| 1728 | self.conn |
| 1729 | .execute( |
| 1730 | "UPDATE perboot.metadata SET value = ? WHERE key = ?;", |
| 1731 | params![last_off_body, "last_off_body"], |
| 1732 | ) |
| 1733 | .context("In update_last_off_body: failed to update.")?; |
| 1734 | Ok(()) |
| 1735 | } |
| 1736 | |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 1737 | /// Get last_off_body time when finding auth tokens |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1738 | fn get_last_off_body(tx: &Transaction) -> Result<MonotonicRawTime> { |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 1739 | tx.query_row( |
| 1740 | "SELECT value from perboot.metadata WHERE key = ?;", |
| 1741 | params!["last_off_body"], |
| 1742 | |row| Ok(row.get(0)?), |
| 1743 | ) |
| 1744 | .context("In get_last_off_body: query_row failed.") |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1745 | } |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 1746 | } |
| 1747 | |
| 1748 | #[cfg(test)] |
| 1749 | mod tests { |
| 1750 | |
| 1751 | use super::*; |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 1752 | use crate::key_parameter::{ |
| 1753 | Algorithm, BlockMode, Digest, EcCurve, HardwareAuthenticatorType, KeyOrigin, KeyParameter, |
| 1754 | KeyParameterValue, KeyPurpose, PaddingMode, SecurityLevel, |
| 1755 | }; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1756 | use crate::key_perm_set; |
| 1757 | use crate::permission::{KeyPerm, KeyPermSet}; |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1758 | use crate::test::utils::TempDir; |
Hasini Gunasinghe | 557b103 | 2020-11-10 01:35:30 +0000 | [diff] [blame] | 1759 | use android_hardware_security_keymint::aidl::android::hardware::security::keymint::{ |
| 1760 | HardwareAuthToken::HardwareAuthToken, |
| 1761 | HardwareAuthenticatorType::HardwareAuthenticatorType as kmhw_authenticator_type, |
Janis Danisevskis | c3a496b | 2021-01-05 10:37:22 -0800 | [diff] [blame] | 1762 | }; |
| 1763 | use android_hardware_security_secureclock::aidl::android::hardware::security::secureclock::{ |
Hasini Gunasinghe | 557b103 | 2020-11-10 01:35:30 +0000 | [diff] [blame] | 1764 | Timestamp::Timestamp, |
| 1765 | }; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1766 | use rusqlite::NO_PARAMS; |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1767 | use rusqlite::{Error, TransactionBehavior}; |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 1768 | use std::cell::RefCell; |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 1769 | use std::sync::atomic::{AtomicU8, Ordering}; |
| 1770 | use std::sync::Arc; |
| 1771 | use std::thread; |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 1772 | use std::time::{Duration, SystemTime}; |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 1773 | |
Janis Danisevskis | 4df44f4 | 2020-08-26 14:40:03 -0700 | [diff] [blame] | 1774 | fn new_test_db() -> Result<KeystoreDB> { |
| 1775 | let conn = KeystoreDB::make_connection("file::memory:", "file::memory:")?; |
| 1776 | |
| 1777 | KeystoreDB::init_tables(&conn).context("Failed to initialize tables.")?; |
| 1778 | Ok(KeystoreDB { conn }) |
| 1779 | } |
| 1780 | |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1781 | fn rebind_alias( |
| 1782 | db: &mut KeystoreDB, |
| 1783 | newid: &KeyIdGuard, |
| 1784 | alias: &str, |
| 1785 | domain: Domain, |
| 1786 | namespace: i64, |
| 1787 | ) -> Result<bool> { |
| 1788 | db.with_transaction(TransactionBehavior::Immediate, |tx| { |
| 1789 | KeystoreDB::rebind_alias(tx, newid, alias, domain, namespace) |
| 1790 | }) |
| 1791 | .context("In rebind_alias.") |
| 1792 | } |
| 1793 | |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1794 | #[test] |
| 1795 | fn datetime() -> Result<()> { |
| 1796 | let conn = Connection::open_in_memory()?; |
| 1797 | conn.execute("CREATE TABLE test (ts DATETIME);", NO_PARAMS)?; |
| 1798 | let now = SystemTime::now(); |
| 1799 | let duration = Duration::from_secs(1000); |
| 1800 | let then = now.checked_sub(duration).unwrap(); |
| 1801 | let soon = now.checked_add(duration).unwrap(); |
| 1802 | conn.execute( |
| 1803 | "INSERT INTO test (ts) VALUES (?), (?), (?);", |
| 1804 | params![DateTime::try_from(now)?, DateTime::try_from(then)?, DateTime::try_from(soon)?], |
| 1805 | )?; |
| 1806 | let mut stmt = conn.prepare("SELECT ts FROM test ORDER BY ts ASC;")?; |
| 1807 | let mut rows = stmt.query(NO_PARAMS)?; |
| 1808 | assert_eq!(DateTime::try_from(then)?, rows.next()?.unwrap().get(0)?); |
| 1809 | assert_eq!(DateTime::try_from(now)?, rows.next()?.unwrap().get(0)?); |
| 1810 | assert_eq!(DateTime::try_from(soon)?, rows.next()?.unwrap().get(0)?); |
| 1811 | assert!(rows.next()?.is_none()); |
| 1812 | assert!(DateTime::try_from(then)? < DateTime::try_from(now)?); |
| 1813 | assert!(DateTime::try_from(then)? < DateTime::try_from(soon)?); |
| 1814 | assert!(DateTime::try_from(now)? < DateTime::try_from(soon)?); |
| 1815 | Ok(()) |
| 1816 | } |
| 1817 | |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 1818 | // Ensure that we're using the "injected" random function, not the real one. |
| 1819 | #[test] |
| 1820 | fn test_mocked_random() { |
| 1821 | let rand1 = random(); |
| 1822 | let rand2 = random(); |
| 1823 | let rand3 = random(); |
| 1824 | if rand1 == rand2 { |
| 1825 | assert_eq!(rand2 + 1, rand3); |
| 1826 | } else { |
| 1827 | assert_eq!(rand1 + 1, rand2); |
| 1828 | assert_eq!(rand2, rand3); |
| 1829 | } |
| 1830 | } |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 1831 | |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 1832 | // Test that we have the correct tables. |
| 1833 | #[test] |
| 1834 | fn test_tables() -> Result<()> { |
Janis Danisevskis | 4df44f4 | 2020-08-26 14:40:03 -0700 | [diff] [blame] | 1835 | let db = new_test_db()?; |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 1836 | let tables = db |
| 1837 | .conn |
Joel Galenson | 2aab443 | 2020-07-22 15:27:57 -0700 | [diff] [blame] | 1838 | .prepare("SELECT name from persistent.sqlite_master WHERE type='table' ORDER BY name;")? |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 1839 | .query_map(params![], |row| row.get(0))? |
| 1840 | .collect::<rusqlite::Result<Vec<String>>>()?; |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1841 | assert_eq!(tables.len(), 5); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1842 | assert_eq!(tables[0], "blobentry"); |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1843 | assert_eq!(tables[1], "grant"); |
| 1844 | assert_eq!(tables[2], "keyentry"); |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 1845 | assert_eq!(tables[3], "keymetadata"); |
| 1846 | assert_eq!(tables[4], "keyparameter"); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 1847 | let tables = db |
| 1848 | .conn |
| 1849 | .prepare("SELECT name from perboot.sqlite_master WHERE type='table' ORDER BY name;")? |
| 1850 | .query_map(params![], |row| row.get(0))? |
| 1851 | .collect::<rusqlite::Result<Vec<String>>>()?; |
Hasini Gunasinghe | 557b103 | 2020-11-10 01:35:30 +0000 | [diff] [blame] | 1852 | |
| 1853 | assert_eq!(tables.len(), 2); |
| 1854 | assert_eq!(tables[0], "authtoken"); |
| 1855 | assert_eq!(tables[1], "metadata"); |
Joel Galenson | 2aab443 | 2020-07-22 15:27:57 -0700 | [diff] [blame] | 1856 | Ok(()) |
| 1857 | } |
| 1858 | |
| 1859 | #[test] |
Hasini Gunasinghe | 557b103 | 2020-11-10 01:35:30 +0000 | [diff] [blame] | 1860 | fn test_auth_token_table_invariant() -> Result<()> { |
| 1861 | let mut db = new_test_db()?; |
| 1862 | let auth_token1 = HardwareAuthToken { |
| 1863 | challenge: i64::MAX, |
| 1864 | userId: 200, |
| 1865 | authenticatorId: 200, |
| 1866 | authenticatorType: kmhw_authenticator_type(kmhw_authenticator_type::PASSWORD.0), |
| 1867 | timestamp: Timestamp { milliSeconds: 500 }, |
| 1868 | mac: String::from("mac").into_bytes(), |
| 1869 | }; |
| 1870 | db.insert_auth_token(&auth_token1)?; |
| 1871 | let auth_tokens_returned = get_auth_tokens(&mut db)?; |
| 1872 | assert_eq!(auth_tokens_returned.len(), 1); |
| 1873 | |
| 1874 | // insert another auth token with the same values for the columns in the UNIQUE constraint |
| 1875 | // of the auth token table and different value for timestamp |
| 1876 | let auth_token2 = HardwareAuthToken { |
| 1877 | challenge: i64::MAX, |
| 1878 | userId: 200, |
| 1879 | authenticatorId: 200, |
| 1880 | authenticatorType: kmhw_authenticator_type(kmhw_authenticator_type::PASSWORD.0), |
| 1881 | timestamp: Timestamp { milliSeconds: 600 }, |
| 1882 | mac: String::from("mac").into_bytes(), |
| 1883 | }; |
| 1884 | |
| 1885 | db.insert_auth_token(&auth_token2)?; |
| 1886 | let mut auth_tokens_returned = get_auth_tokens(&mut db)?; |
| 1887 | assert_eq!(auth_tokens_returned.len(), 1); |
| 1888 | |
| 1889 | if let Some(auth_token) = auth_tokens_returned.pop() { |
| 1890 | assert_eq!(auth_token.auth_token.timestamp.milliSeconds, 600); |
| 1891 | } |
| 1892 | |
| 1893 | // insert another auth token with the different values for the columns in the UNIQUE |
| 1894 | // constraint of the auth token table |
| 1895 | let auth_token3 = HardwareAuthToken { |
| 1896 | challenge: i64::MAX, |
| 1897 | userId: 201, |
| 1898 | authenticatorId: 200, |
| 1899 | authenticatorType: kmhw_authenticator_type(kmhw_authenticator_type::PASSWORD.0), |
| 1900 | timestamp: Timestamp { milliSeconds: 600 }, |
| 1901 | mac: String::from("mac").into_bytes(), |
| 1902 | }; |
| 1903 | |
| 1904 | db.insert_auth_token(&auth_token3)?; |
| 1905 | let auth_tokens_returned = get_auth_tokens(&mut db)?; |
| 1906 | assert_eq!(auth_tokens_returned.len(), 2); |
| 1907 | |
| 1908 | Ok(()) |
| 1909 | } |
| 1910 | |
| 1911 | // utility function for test_auth_token_table_invariant() |
| 1912 | fn get_auth_tokens(db: &mut KeystoreDB) -> Result<Vec<AuthTokenEntry>> { |
| 1913 | let mut stmt = db.conn.prepare("SELECT * from perboot.authtoken;")?; |
| 1914 | |
| 1915 | let auth_token_entries: Vec<AuthTokenEntry> = stmt |
| 1916 | .query_map(NO_PARAMS, |row| { |
| 1917 | Ok(AuthTokenEntry::new( |
| 1918 | HardwareAuthToken { |
| 1919 | challenge: row.get(1)?, |
| 1920 | userId: row.get(2)?, |
| 1921 | authenticatorId: row.get(3)?, |
| 1922 | authenticatorType: HardwareAuthenticatorType(row.get(4)?), |
| 1923 | timestamp: Timestamp { milliSeconds: row.get(5)? }, |
| 1924 | mac: row.get(6)?, |
| 1925 | }, |
| 1926 | row.get(7)?, |
| 1927 | )) |
| 1928 | })? |
| 1929 | .collect::<Result<Vec<AuthTokenEntry>, Error>>()?; |
| 1930 | Ok(auth_token_entries) |
| 1931 | } |
| 1932 | |
| 1933 | #[test] |
Joel Galenson | 2aab443 | 2020-07-22 15:27:57 -0700 | [diff] [blame] | 1934 | fn test_persistence_for_files() -> Result<()> { |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1935 | let temp_dir = TempDir::new("persistent_db_test")?; |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1936 | let mut db = KeystoreDB::new(temp_dir.path())?; |
Joel Galenson | 2aab443 | 2020-07-22 15:27:57 -0700 | [diff] [blame] | 1937 | |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1938 | db.create_key_entry(Domain::APP, 100)?; |
Joel Galenson | 2aab443 | 2020-07-22 15:27:57 -0700 | [diff] [blame] | 1939 | let entries = get_keyentry(&db)?; |
| 1940 | assert_eq!(entries.len(), 1); |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 1941 | |
| 1942 | let db = KeystoreDB::new(temp_dir.path())?; |
Joel Galenson | 2aab443 | 2020-07-22 15:27:57 -0700 | [diff] [blame] | 1943 | |
| 1944 | let entries_new = get_keyentry(&db)?; |
| 1945 | assert_eq!(entries, entries_new); |
| 1946 | Ok(()) |
| 1947 | } |
| 1948 | |
| 1949 | #[test] |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 1950 | fn test_create_key_entry() -> Result<()> { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1951 | fn extractor(ke: &KeyEntryRow) -> (Domain, i64, Option<&str>) { |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 1952 | (ke.domain.unwrap(), ke.namespace.unwrap(), ke.alias.as_deref()) |
| 1953 | } |
| 1954 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 1955 | let mut db = new_test_db()?; |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 1956 | |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1957 | db.create_key_entry(Domain::APP, 100)?; |
| 1958 | db.create_key_entry(Domain::SELINUX, 101)?; |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 1959 | |
| 1960 | let entries = get_keyentry(&db)?; |
| 1961 | assert_eq!(entries.len(), 2); |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1962 | assert_eq!(extractor(&entries[0]), (Domain::APP, 100, None)); |
| 1963 | assert_eq!(extractor(&entries[1]), (Domain::SELINUX, 101, None)); |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 1964 | |
| 1965 | // Test that we must pass in a valid Domain. |
| 1966 | check_result_is_error_containing_string( |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1967 | db.create_key_entry(Domain::GRANT, 102), |
| 1968 | "Domain Domain(1) must be either App or SELinux.", |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 1969 | ); |
| 1970 | check_result_is_error_containing_string( |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1971 | db.create_key_entry(Domain::BLOB, 103), |
| 1972 | "Domain Domain(3) must be either App or SELinux.", |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 1973 | ); |
| 1974 | check_result_is_error_containing_string( |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1975 | db.create_key_entry(Domain::KEY_ID, 104), |
| 1976 | "Domain Domain(4) must be either App or SELinux.", |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 1977 | ); |
| 1978 | |
| 1979 | Ok(()) |
| 1980 | } |
| 1981 | |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1982 | #[test] |
| 1983 | fn test_rebind_alias() -> Result<()> { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1984 | fn extractor(ke: &KeyEntryRow) -> (Option<Domain>, Option<i64>, Option<&str>) { |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1985 | (ke.domain, ke.namespace, ke.alias.as_deref()) |
| 1986 | } |
| 1987 | |
Janis Danisevskis | 4df44f4 | 2020-08-26 14:40:03 -0700 | [diff] [blame] | 1988 | let mut db = new_test_db()?; |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1989 | db.create_key_entry(Domain::APP, 42)?; |
| 1990 | db.create_key_entry(Domain::APP, 42)?; |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1991 | let entries = get_keyentry(&db)?; |
| 1992 | assert_eq!(entries.len(), 2); |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 1993 | assert_eq!(extractor(&entries[0]), (Some(Domain::APP), Some(42), None)); |
| 1994 | assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), None)); |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1995 | |
| 1996 | // Test that the first call to rebind_alias sets the alias. |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 1997 | rebind_alias(&mut db, &KEY_ID_LOCK.get(entries[0].id), "foo", Domain::APP, 42)?; |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 1998 | let entries = get_keyentry(&db)?; |
| 1999 | assert_eq!(entries.len(), 2); |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2000 | assert_eq!(extractor(&entries[0]), (Some(Domain::APP), Some(42), Some("foo"))); |
| 2001 | assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), None)); |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 2002 | |
| 2003 | // Test that the second call to rebind_alias also empties the old one. |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 2004 | rebind_alias(&mut db, &KEY_ID_LOCK.get(entries[1].id), "foo", Domain::APP, 42)?; |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 2005 | let entries = get_keyentry(&db)?; |
| 2006 | assert_eq!(entries.len(), 2); |
Joel Galenson | 7fa5c41 | 2020-11-19 10:56:54 -0800 | [diff] [blame] | 2007 | assert_eq!(extractor(&entries[0]), (None, None, None)); |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2008 | assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), Some("foo"))); |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 2009 | |
| 2010 | // Test that we must pass in a valid Domain. |
| 2011 | check_result_is_error_containing_string( |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 2012 | rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::GRANT, 42), |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2013 | "Domain Domain(1) must be either App or SELinux.", |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 2014 | ); |
| 2015 | check_result_is_error_containing_string( |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 2016 | rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::BLOB, 42), |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2017 | "Domain Domain(3) must be either App or SELinux.", |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 2018 | ); |
| 2019 | check_result_is_error_containing_string( |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 2020 | rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::KEY_ID, 42), |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2021 | "Domain Domain(4) must be either App or SELinux.", |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 2022 | ); |
| 2023 | |
| 2024 | // Test that we correctly handle setting an alias for something that does not exist. |
| 2025 | check_result_is_error_containing_string( |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 2026 | rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::SELINUX, 42), |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 2027 | "Expected to update a single entry but instead updated 0", |
| 2028 | ); |
| 2029 | // Test that we correctly abort the transaction in this case. |
| 2030 | let entries = get_keyentry(&db)?; |
| 2031 | assert_eq!(entries.len(), 2); |
Joel Galenson | 7fa5c41 | 2020-11-19 10:56:54 -0800 | [diff] [blame] | 2032 | assert_eq!(extractor(&entries[0]), (None, None, None)); |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2033 | assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), Some("foo"))); |
Joel Galenson | 33c04ad | 2020-08-03 11:04:38 -0700 | [diff] [blame] | 2034 | |
| 2035 | Ok(()) |
| 2036 | } |
| 2037 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2038 | #[test] |
| 2039 | fn test_grant_ungrant() -> Result<()> { |
| 2040 | const CALLER_UID: u32 = 15; |
| 2041 | const GRANTEE_UID: u32 = 12; |
| 2042 | const SELINUX_NAMESPACE: i64 = 7; |
| 2043 | |
| 2044 | let mut db = new_test_db()?; |
| 2045 | db.conn.execute( |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2046 | "INSERT INTO persistent.keyentry (id, key_type, domain, namespace, alias, state) |
| 2047 | VALUES (1, 0, 0, 15, 'key', 1), (2, 0, 2, 7, 'yek', 1);", |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2048 | NO_PARAMS, |
| 2049 | )?; |
| 2050 | let app_key = KeyDescriptor { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2051 | domain: super::Domain::APP, |
| 2052 | nspace: 0, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2053 | alias: Some("key".to_string()), |
| 2054 | blob: None, |
| 2055 | }; |
| 2056 | const PVEC1: KeyPermSet = key_perm_set![KeyPerm::use_(), KeyPerm::get_info()]; |
| 2057 | const PVEC2: KeyPermSet = key_perm_set![KeyPerm::use_()]; |
| 2058 | |
| 2059 | // Reset totally predictable random number generator in case we |
| 2060 | // are not the first test running on this thread. |
| 2061 | reset_random(); |
| 2062 | let next_random = 0i64; |
| 2063 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2064 | let app_granted_key = db |
| 2065 | .grant(app_key.clone(), CALLER_UID, GRANTEE_UID, PVEC1, |k, a| { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2066 | assert_eq!(*a, PVEC1); |
| 2067 | assert_eq!( |
| 2068 | *k, |
| 2069 | KeyDescriptor { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2070 | domain: super::Domain::APP, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2071 | // namespace must be set to the caller_uid. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2072 | nspace: CALLER_UID as i64, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2073 | alias: Some("key".to_string()), |
| 2074 | blob: None, |
| 2075 | } |
| 2076 | ); |
| 2077 | Ok(()) |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2078 | }) |
| 2079 | .unwrap(); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2080 | |
| 2081 | assert_eq!( |
| 2082 | app_granted_key, |
| 2083 | KeyDescriptor { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2084 | domain: super::Domain::GRANT, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2085 | // The grantid is next_random due to the mock random number generator. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2086 | nspace: next_random, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2087 | alias: None, |
| 2088 | blob: None, |
| 2089 | } |
| 2090 | ); |
| 2091 | |
| 2092 | let selinux_key = KeyDescriptor { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2093 | domain: super::Domain::SELINUX, |
| 2094 | nspace: SELINUX_NAMESPACE, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2095 | alias: Some("yek".to_string()), |
| 2096 | blob: None, |
| 2097 | }; |
| 2098 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2099 | let selinux_granted_key = db |
| 2100 | .grant(selinux_key.clone(), CALLER_UID, 12, PVEC1, |k, a| { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2101 | assert_eq!(*a, PVEC1); |
| 2102 | assert_eq!( |
| 2103 | *k, |
| 2104 | KeyDescriptor { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2105 | domain: super::Domain::SELINUX, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2106 | // namespace must be the supplied SELinux |
| 2107 | // namespace. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2108 | nspace: SELINUX_NAMESPACE, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2109 | alias: Some("yek".to_string()), |
| 2110 | blob: None, |
| 2111 | } |
| 2112 | ); |
| 2113 | Ok(()) |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2114 | }) |
| 2115 | .unwrap(); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2116 | |
| 2117 | assert_eq!( |
| 2118 | selinux_granted_key, |
| 2119 | KeyDescriptor { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2120 | domain: super::Domain::GRANT, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2121 | // The grantid is next_random + 1 due to the mock random number generator. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2122 | nspace: next_random + 1, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2123 | alias: None, |
| 2124 | blob: None, |
| 2125 | } |
| 2126 | ); |
| 2127 | |
| 2128 | // This should update the existing grant with PVEC2. |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2129 | let selinux_granted_key = db |
| 2130 | .grant(selinux_key.clone(), CALLER_UID, 12, PVEC2, |k, a| { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2131 | assert_eq!(*a, PVEC2); |
| 2132 | assert_eq!( |
| 2133 | *k, |
| 2134 | KeyDescriptor { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2135 | domain: super::Domain::SELINUX, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2136 | // namespace must be the supplied SELinux |
| 2137 | // namespace. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2138 | nspace: SELINUX_NAMESPACE, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2139 | alias: Some("yek".to_string()), |
| 2140 | blob: None, |
| 2141 | } |
| 2142 | ); |
| 2143 | Ok(()) |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2144 | }) |
| 2145 | .unwrap(); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2146 | |
| 2147 | assert_eq!( |
| 2148 | selinux_granted_key, |
| 2149 | KeyDescriptor { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2150 | domain: super::Domain::GRANT, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2151 | // Same grant id as before. The entry was only updated. |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2152 | nspace: next_random + 1, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2153 | alias: None, |
| 2154 | blob: None, |
| 2155 | } |
| 2156 | ); |
| 2157 | |
| 2158 | { |
| 2159 | // Limiting scope of stmt, because it borrows db. |
| 2160 | let mut stmt = db |
| 2161 | .conn |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 2162 | .prepare("SELECT id, grantee, keyentryid, access_vector FROM persistent.grant;")?; |
Janis Danisevskis | ee10b5f | 2020-09-22 16:42:35 -0700 | [diff] [blame] | 2163 | let mut rows = |
| 2164 | stmt.query_map::<(i64, u32, i64, KeyPermSet), _, _>(NO_PARAMS, |row| { |
| 2165 | Ok(( |
| 2166 | row.get(0)?, |
| 2167 | row.get(1)?, |
| 2168 | row.get(2)?, |
| 2169 | KeyPermSet::from(row.get::<_, i32>(3)?), |
| 2170 | )) |
| 2171 | })?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2172 | |
| 2173 | let r = rows.next().unwrap().unwrap(); |
Janis Danisevskis | ee10b5f | 2020-09-22 16:42:35 -0700 | [diff] [blame] | 2174 | assert_eq!(r, (next_random, GRANTEE_UID, 1, PVEC1)); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2175 | let r = rows.next().unwrap().unwrap(); |
Janis Danisevskis | ee10b5f | 2020-09-22 16:42:35 -0700 | [diff] [blame] | 2176 | assert_eq!(r, (next_random + 1, GRANTEE_UID, 2, PVEC2)); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2177 | assert!(rows.next().is_none()); |
| 2178 | } |
| 2179 | |
| 2180 | debug_dump_keyentry_table(&mut db)?; |
| 2181 | println!("app_key {:?}", app_key); |
| 2182 | println!("selinux_key {:?}", selinux_key); |
| 2183 | |
| 2184 | db.ungrant(app_key, CALLER_UID, GRANTEE_UID, |_| Ok(()))?; |
| 2185 | db.ungrant(selinux_key, CALLER_UID, GRANTEE_UID, |_| Ok(()))?; |
| 2186 | |
| 2187 | Ok(()) |
| 2188 | } |
| 2189 | |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2190 | static TEST_KEY_BLOB: &[u8] = b"my test blob"; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2191 | static TEST_CERT_BLOB: &[u8] = b"my test cert"; |
| 2192 | static TEST_CERT_CHAIN_BLOB: &[u8] = b"my test cert_chain"; |
| 2193 | |
| 2194 | #[test] |
| 2195 | fn test_insert_blob() -> Result<()> { |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2196 | let key_id = KEY_ID_LOCK.get(3000); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2197 | let mut db = new_test_db()?; |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2198 | db.insert_blob(&key_id, SubComponentType::KEY_BLOB, TEST_KEY_BLOB)?; |
| 2199 | db.insert_blob(&key_id, SubComponentType::CERT, TEST_CERT_BLOB)?; |
| 2200 | db.insert_blob(&key_id, SubComponentType::CERT_CHAIN, TEST_CERT_CHAIN_BLOB)?; |
| 2201 | drop(key_id); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2202 | |
| 2203 | let mut stmt = db.conn.prepare( |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2204 | "SELECT subcomponent_type, keyentryid, blob FROM persistent.blobentry |
| 2205 | ORDER BY subcomponent_type ASC;", |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2206 | )?; |
| 2207 | let mut rows = stmt |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2208 | .query_map::<(SubComponentType, i64, Vec<u8>), _, _>(NO_PARAMS, |row| { |
| 2209 | Ok((row.get(0)?, row.get(1)?, row.get(2)?)) |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2210 | })?; |
| 2211 | let r = rows.next().unwrap().unwrap(); |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2212 | assert_eq!(r, (SubComponentType::KEY_BLOB, 3000, TEST_KEY_BLOB.to_vec())); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2213 | let r = rows.next().unwrap().unwrap(); |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2214 | assert_eq!(r, (SubComponentType::CERT, 3000, TEST_CERT_BLOB.to_vec())); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2215 | let r = rows.next().unwrap().unwrap(); |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2216 | assert_eq!(r, (SubComponentType::CERT_CHAIN, 3000, TEST_CERT_CHAIN_BLOB.to_vec())); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2217 | |
| 2218 | Ok(()) |
| 2219 | } |
| 2220 | |
| 2221 | static TEST_ALIAS: &str = "my super duper key"; |
| 2222 | |
| 2223 | #[test] |
| 2224 | fn test_insert_and_load_full_keyentry_domain_app() -> Result<()> { |
| 2225 | let mut db = new_test_db()?; |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2226 | let key_id = make_test_key_entry(&mut db, Domain::APP, 1, TEST_ALIAS) |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2227 | .context("test_insert_and_load_full_keyentry_domain_app")? |
| 2228 | .0; |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2229 | let (_key_guard, key_entry) = db |
| 2230 | .load_key_entry( |
| 2231 | KeyDescriptor { |
| 2232 | domain: Domain::APP, |
| 2233 | nspace: 0, |
| 2234 | alias: Some(TEST_ALIAS.to_string()), |
| 2235 | blob: None, |
| 2236 | }, |
| 2237 | KeyType::Client, |
| 2238 | KeyEntryLoadBits::BOTH, |
| 2239 | 1, |
| 2240 | |_k, _av| Ok(()), |
| 2241 | ) |
| 2242 | .unwrap(); |
| 2243 | assert_eq!(key_entry, make_test_key_entry_test_vector(key_id)); |
| 2244 | |
| 2245 | db.unbind_key( |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2246 | KeyDescriptor { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2247 | domain: Domain::APP, |
| 2248 | nspace: 0, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2249 | alias: Some(TEST_ALIAS.to_string()), |
| 2250 | blob: None, |
| 2251 | }, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2252 | KeyType::Client, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2253 | 1, |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2254 | |_, _| Ok(()), |
| 2255 | ) |
| 2256 | .unwrap(); |
| 2257 | |
| 2258 | assert_eq!( |
| 2259 | Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)), |
| 2260 | db.load_key_entry( |
| 2261 | KeyDescriptor { |
| 2262 | domain: Domain::APP, |
| 2263 | nspace: 0, |
| 2264 | alias: Some(TEST_ALIAS.to_string()), |
| 2265 | blob: None, |
| 2266 | }, |
| 2267 | KeyType::Client, |
| 2268 | KeyEntryLoadBits::NONE, |
| 2269 | 1, |
| 2270 | |_k, _av| Ok(()), |
| 2271 | ) |
| 2272 | .unwrap_err() |
| 2273 | .root_cause() |
| 2274 | .downcast_ref::<KsError>() |
| 2275 | ); |
| 2276 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2277 | Ok(()) |
| 2278 | } |
| 2279 | |
| 2280 | #[test] |
| 2281 | fn test_insert_and_load_full_keyentry_domain_selinux() -> Result<()> { |
| 2282 | let mut db = new_test_db()?; |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2283 | let key_id = make_test_key_entry(&mut db, Domain::SELINUX, 1, TEST_ALIAS) |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2284 | .context("test_insert_and_load_full_keyentry_domain_selinux")? |
| 2285 | .0; |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2286 | let (_key_guard, key_entry) = db |
| 2287 | .load_key_entry( |
| 2288 | KeyDescriptor { |
| 2289 | domain: Domain::SELINUX, |
| 2290 | nspace: 1, |
| 2291 | alias: Some(TEST_ALIAS.to_string()), |
| 2292 | blob: None, |
| 2293 | }, |
| 2294 | KeyType::Client, |
| 2295 | KeyEntryLoadBits::BOTH, |
| 2296 | 1, |
| 2297 | |_k, _av| Ok(()), |
| 2298 | ) |
| 2299 | .unwrap(); |
| 2300 | assert_eq!(key_entry, make_test_key_entry_test_vector(key_id)); |
| 2301 | |
| 2302 | db.unbind_key( |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2303 | KeyDescriptor { |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2304 | domain: Domain::SELINUX, |
| 2305 | nspace: 1, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2306 | alias: Some(TEST_ALIAS.to_string()), |
| 2307 | blob: None, |
| 2308 | }, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2309 | KeyType::Client, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2310 | 1, |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2311 | |_, _| Ok(()), |
| 2312 | ) |
| 2313 | .unwrap(); |
| 2314 | |
| 2315 | assert_eq!( |
| 2316 | Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)), |
| 2317 | db.load_key_entry( |
| 2318 | KeyDescriptor { |
| 2319 | domain: Domain::SELINUX, |
| 2320 | nspace: 1, |
| 2321 | alias: Some(TEST_ALIAS.to_string()), |
| 2322 | blob: None, |
| 2323 | }, |
| 2324 | KeyType::Client, |
| 2325 | KeyEntryLoadBits::NONE, |
| 2326 | 1, |
| 2327 | |_k, _av| Ok(()), |
| 2328 | ) |
| 2329 | .unwrap_err() |
| 2330 | .root_cause() |
| 2331 | .downcast_ref::<KsError>() |
| 2332 | ); |
| 2333 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2334 | Ok(()) |
| 2335 | } |
| 2336 | |
| 2337 | #[test] |
| 2338 | fn test_insert_and_load_full_keyentry_domain_key_id() -> Result<()> { |
| 2339 | let mut db = new_test_db()?; |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2340 | let key_id = make_test_key_entry(&mut db, Domain::SELINUX, 1, TEST_ALIAS) |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2341 | .context("test_insert_and_load_full_keyentry_domain_key_id")? |
| 2342 | .0; |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2343 | let (_, key_entry) = db |
| 2344 | .load_key_entry( |
| 2345 | KeyDescriptor { domain: Domain::KEY_ID, nspace: key_id, alias: None, blob: None }, |
| 2346 | KeyType::Client, |
| 2347 | KeyEntryLoadBits::BOTH, |
| 2348 | 1, |
| 2349 | |_k, _av| Ok(()), |
| 2350 | ) |
| 2351 | .unwrap(); |
| 2352 | |
| 2353 | assert_eq!(key_entry, make_test_key_entry_test_vector(key_id)); |
| 2354 | |
| 2355 | db.unbind_key( |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2356 | KeyDescriptor { domain: Domain::KEY_ID, nspace: key_id, alias: None, blob: None }, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2357 | KeyType::Client, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2358 | 1, |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2359 | |_, _| Ok(()), |
| 2360 | ) |
| 2361 | .unwrap(); |
| 2362 | |
| 2363 | assert_eq!( |
| 2364 | Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)), |
| 2365 | db.load_key_entry( |
| 2366 | KeyDescriptor { domain: Domain::KEY_ID, nspace: key_id, alias: None, blob: None }, |
| 2367 | KeyType::Client, |
| 2368 | KeyEntryLoadBits::NONE, |
| 2369 | 1, |
| 2370 | |_k, _av| Ok(()), |
| 2371 | ) |
| 2372 | .unwrap_err() |
| 2373 | .root_cause() |
| 2374 | .downcast_ref::<KsError>() |
| 2375 | ); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2376 | |
| 2377 | Ok(()) |
| 2378 | } |
| 2379 | |
| 2380 | #[test] |
| 2381 | fn test_insert_and_load_full_keyentry_from_grant() -> Result<()> { |
| 2382 | let mut db = new_test_db()?; |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2383 | let key_id = make_test_key_entry(&mut db, Domain::APP, 1, TEST_ALIAS) |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2384 | .context("test_insert_and_load_full_keyentry_from_grant")? |
| 2385 | .0; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2386 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2387 | let granted_key = db |
| 2388 | .grant( |
| 2389 | KeyDescriptor { |
| 2390 | domain: Domain::APP, |
| 2391 | nspace: 0, |
| 2392 | alias: Some(TEST_ALIAS.to_string()), |
| 2393 | blob: None, |
| 2394 | }, |
| 2395 | 1, |
| 2396 | 2, |
| 2397 | key_perm_set![KeyPerm::use_()], |
| 2398 | |_k, _av| Ok(()), |
| 2399 | ) |
| 2400 | .unwrap(); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2401 | |
| 2402 | debug_dump_grant_table(&mut db)?; |
| 2403 | |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2404 | let (_key_guard, key_entry) = db |
| 2405 | .load_key_entry( |
| 2406 | granted_key.clone(), |
| 2407 | KeyType::Client, |
| 2408 | KeyEntryLoadBits::BOTH, |
| 2409 | 2, |
| 2410 | |k, av| { |
| 2411 | assert_eq!(Domain::GRANT, k.domain); |
| 2412 | assert!(av.unwrap().includes(KeyPerm::use_())); |
| 2413 | Ok(()) |
| 2414 | }, |
| 2415 | ) |
| 2416 | .unwrap(); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2417 | |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2418 | assert_eq!(key_entry, make_test_key_entry_test_vector(key_id)); |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2419 | |
| 2420 | db.unbind_key(granted_key.clone(), KeyType::Client, 2, |_, _| Ok(())).unwrap(); |
| 2421 | |
| 2422 | assert_eq!( |
| 2423 | Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)), |
| 2424 | db.load_key_entry( |
| 2425 | granted_key, |
| 2426 | KeyType::Client, |
| 2427 | KeyEntryLoadBits::NONE, |
| 2428 | 2, |
| 2429 | |_k, _av| Ok(()), |
| 2430 | ) |
| 2431 | .unwrap_err() |
| 2432 | .root_cause() |
| 2433 | .downcast_ref::<KsError>() |
| 2434 | ); |
| 2435 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2436 | Ok(()) |
| 2437 | } |
| 2438 | |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2439 | static KEY_LOCK_TEST_ALIAS: &str = "my super duper locked key"; |
| 2440 | |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2441 | #[test] |
| 2442 | fn test_insert_and_load_full_keyentry_domain_app_concurrently() -> Result<()> { |
| 2443 | let handle = { |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 2444 | let temp_dir = Arc::new(TempDir::new("id_lock_test")?); |
| 2445 | let temp_dir_clone = temp_dir.clone(); |
| 2446 | let mut db = KeystoreDB::new(temp_dir.path())?; |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2447 | let key_id = make_test_key_entry(&mut db, Domain::APP, 33, KEY_LOCK_TEST_ALIAS) |
| 2448 | .context("test_insert_and_load_full_keyentry_domain_app")? |
| 2449 | .0; |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2450 | let (_key_guard, key_entry) = db |
| 2451 | .load_key_entry( |
| 2452 | KeyDescriptor { |
| 2453 | domain: Domain::APP, |
| 2454 | nspace: 0, |
| 2455 | alias: Some(KEY_LOCK_TEST_ALIAS.to_string()), |
| 2456 | blob: None, |
| 2457 | }, |
| 2458 | KeyType::Client, |
| 2459 | KeyEntryLoadBits::BOTH, |
| 2460 | 33, |
| 2461 | |_k, _av| Ok(()), |
| 2462 | ) |
| 2463 | .unwrap(); |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2464 | assert_eq!(key_entry, make_test_key_entry_test_vector(key_id)); |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2465 | let state = Arc::new(AtomicU8::new(1)); |
| 2466 | let state2 = state.clone(); |
| 2467 | |
| 2468 | // Spawning a second thread that attempts to acquire the key id lock |
| 2469 | // for the same key as the primary thread. The primary thread then |
| 2470 | // waits, thereby forcing the secondary thread into the second stage |
| 2471 | // of acquiring the lock (see KEY ID LOCK 2/2 above). |
| 2472 | // The test succeeds if the secondary thread observes the transition |
| 2473 | // of `state` from 1 to 2, despite having a whole second to overtake |
| 2474 | // the primary thread. |
| 2475 | let handle = thread::spawn(move || { |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 2476 | let temp_dir = temp_dir_clone; |
| 2477 | let mut db = KeystoreDB::new(temp_dir.path()).unwrap(); |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2478 | assert!(db |
| 2479 | .load_key_entry( |
| 2480 | KeyDescriptor { |
| 2481 | domain: Domain::APP, |
| 2482 | nspace: 0, |
| 2483 | alias: Some(KEY_LOCK_TEST_ALIAS.to_string()), |
| 2484 | blob: None, |
| 2485 | }, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2486 | KeyType::Client, |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2487 | KeyEntryLoadBits::BOTH, |
| 2488 | 33, |
| 2489 | |_k, _av| Ok(()), |
| 2490 | ) |
| 2491 | .is_ok()); |
| 2492 | // We should only see a 2 here because we can only return |
| 2493 | // from load_key_entry when the `_key_guard` expires, |
| 2494 | // which happens at the end of the scope. |
| 2495 | assert_eq!(2, state2.load(Ordering::Relaxed)); |
| 2496 | }); |
| 2497 | |
| 2498 | thread::sleep(std::time::Duration::from_millis(1000)); |
| 2499 | |
| 2500 | assert_eq!(Ok(1), state.compare_exchange(1, 2, Ordering::Relaxed, Ordering::Relaxed)); |
| 2501 | |
| 2502 | // Return the handle from this scope so we can join with the |
| 2503 | // secondary thread after the key id lock has expired. |
| 2504 | handle |
| 2505 | // This is where the `_key_guard` goes out of scope, |
| 2506 | // which is the reason for concurrent load_key_entry on the same key |
| 2507 | // to unblock. |
| 2508 | }; |
| 2509 | // Join with the secondary thread and unwrap, to propagate failing asserts to the |
| 2510 | // main test thread. We will not see failing asserts in secondary threads otherwise. |
| 2511 | handle.join().unwrap(); |
| 2512 | Ok(()) |
| 2513 | } |
| 2514 | |
Janis Danisevskis | e92a5e6 | 2020-12-02 12:57:41 -0800 | [diff] [blame] | 2515 | #[test] |
| 2516 | fn list() -> Result<()> { |
| 2517 | let temp_dir = TempDir::new("list_test")?; |
| 2518 | let mut db = KeystoreDB::new(temp_dir.path())?; |
| 2519 | static LIST_O_ENTRIES: &[(Domain, i64, &str)] = &[ |
| 2520 | (Domain::APP, 1, "test1"), |
| 2521 | (Domain::APP, 1, "test2"), |
| 2522 | (Domain::APP, 1, "test3"), |
| 2523 | (Domain::APP, 1, "test4"), |
| 2524 | (Domain::APP, 1, "test5"), |
| 2525 | (Domain::APP, 1, "test6"), |
| 2526 | (Domain::APP, 1, "test7"), |
| 2527 | (Domain::APP, 2, "test1"), |
| 2528 | (Domain::APP, 2, "test2"), |
| 2529 | (Domain::APP, 2, "test3"), |
| 2530 | (Domain::APP, 2, "test4"), |
| 2531 | (Domain::APP, 2, "test5"), |
| 2532 | (Domain::APP, 2, "test6"), |
| 2533 | (Domain::APP, 2, "test8"), |
| 2534 | (Domain::SELINUX, 100, "test1"), |
| 2535 | (Domain::SELINUX, 100, "test2"), |
| 2536 | (Domain::SELINUX, 100, "test3"), |
| 2537 | (Domain::SELINUX, 100, "test4"), |
| 2538 | (Domain::SELINUX, 100, "test5"), |
| 2539 | (Domain::SELINUX, 100, "test6"), |
| 2540 | (Domain::SELINUX, 100, "test9"), |
| 2541 | ]; |
| 2542 | |
| 2543 | let list_o_keys: Vec<(i64, i64)> = LIST_O_ENTRIES |
| 2544 | .iter() |
| 2545 | .map(|(domain, ns, alias)| { |
| 2546 | let entry = |
| 2547 | make_test_key_entry(&mut db, *domain, *ns, *alias).unwrap_or_else(|e| { |
| 2548 | panic!("Failed to insert {:?} {} {}. Error {:?}", domain, ns, alias, e) |
| 2549 | }); |
| 2550 | (entry.id(), *ns) |
| 2551 | }) |
| 2552 | .collect(); |
| 2553 | |
| 2554 | for (domain, namespace) in |
| 2555 | &[(Domain::APP, 1i64), (Domain::APP, 2i64), (Domain::SELINUX, 100i64)] |
| 2556 | { |
| 2557 | let mut list_o_descriptors: Vec<KeyDescriptor> = LIST_O_ENTRIES |
| 2558 | .iter() |
| 2559 | .filter_map(|(domain, ns, alias)| match ns { |
| 2560 | ns if *ns == *namespace => Some(KeyDescriptor { |
| 2561 | domain: *domain, |
| 2562 | nspace: *ns, |
| 2563 | alias: Some(alias.to_string()), |
| 2564 | blob: None, |
| 2565 | }), |
| 2566 | _ => None, |
| 2567 | }) |
| 2568 | .collect(); |
| 2569 | list_o_descriptors.sort(); |
| 2570 | let mut list_result = db.list(*domain, *namespace)?; |
| 2571 | list_result.sort(); |
| 2572 | assert_eq!(list_o_descriptors, list_result); |
| 2573 | |
| 2574 | let mut list_o_ids: Vec<i64> = list_o_descriptors |
| 2575 | .into_iter() |
| 2576 | .map(|d| { |
| 2577 | let (_, entry) = db |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2578 | .load_key_entry( |
| 2579 | d, |
| 2580 | KeyType::Client, |
| 2581 | KeyEntryLoadBits::NONE, |
| 2582 | *namespace as u32, |
| 2583 | |_, _| Ok(()), |
| 2584 | ) |
Janis Danisevskis | e92a5e6 | 2020-12-02 12:57:41 -0800 | [diff] [blame] | 2585 | .unwrap(); |
| 2586 | entry.id() |
| 2587 | }) |
| 2588 | .collect(); |
| 2589 | list_o_ids.sort_unstable(); |
| 2590 | let mut loaded_entries: Vec<i64> = list_o_keys |
| 2591 | .iter() |
| 2592 | .filter_map(|(id, ns)| match ns { |
| 2593 | ns if *ns == *namespace => Some(*id), |
| 2594 | _ => None, |
| 2595 | }) |
| 2596 | .collect(); |
| 2597 | loaded_entries.sort_unstable(); |
| 2598 | assert_eq!(list_o_ids, loaded_entries); |
| 2599 | } |
| 2600 | assert_eq!(Vec::<KeyDescriptor>::new(), db.list(Domain::SELINUX, 101)?); |
| 2601 | |
| 2602 | Ok(()) |
| 2603 | } |
| 2604 | |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 2605 | // Helpers |
| 2606 | |
| 2607 | // Checks that the given result is an error containing the given string. |
| 2608 | fn check_result_is_error_containing_string<T>(result: Result<T>, target: &str) { |
| 2609 | let error_str = format!( |
| 2610 | "{:#?}", |
| 2611 | result.err().unwrap_or_else(|| panic!("Expected the error: {}", target)) |
| 2612 | ); |
| 2613 | assert!( |
| 2614 | error_str.contains(target), |
| 2615 | "The string \"{}\" should contain \"{}\"", |
| 2616 | error_str, |
| 2617 | target |
| 2618 | ); |
| 2619 | } |
| 2620 | |
Joel Galenson | 2aab443 | 2020-07-22 15:27:57 -0700 | [diff] [blame] | 2621 | #[derive(Debug, PartialEq)] |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 2622 | #[allow(dead_code)] |
| 2623 | struct KeyEntryRow { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2624 | id: i64, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2625 | key_type: KeyType, |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2626 | domain: Option<Domain>, |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 2627 | namespace: Option<i64>, |
| 2628 | alias: Option<String>, |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2629 | state: KeyLifeCycle, |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 2630 | } |
| 2631 | |
| 2632 | fn get_keyentry(db: &KeystoreDB) -> Result<Vec<KeyEntryRow>> { |
| 2633 | db.conn |
Joel Galenson | 2aab443 | 2020-07-22 15:27:57 -0700 | [diff] [blame] | 2634 | .prepare("SELECT * FROM persistent.keyentry;")? |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 2635 | .query_map(NO_PARAMS, |row| { |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 2636 | Ok(KeyEntryRow { |
| 2637 | id: row.get(0)?, |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2638 | key_type: row.get(1)?, |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2639 | domain: match row.get(2)? { |
| 2640 | Some(i) => Some(Domain(i)), |
| 2641 | None => None, |
| 2642 | }, |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 2643 | namespace: row.get(3)?, |
| 2644 | alias: row.get(4)?, |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2645 | state: row.get(5)?, |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 2646 | }) |
| 2647 | })? |
| 2648 | .map(|r| r.context("Could not read keyentry row.")) |
| 2649 | .collect::<Result<Vec<_>>>() |
| 2650 | } |
| 2651 | |
Janis Danisevskis | 3f322cb | 2020-09-03 14:46:22 -0700 | [diff] [blame] | 2652 | // Note: The parameters and SecurityLevel associations are nonsensical. This |
| 2653 | // collection is only used to check if the parameters are preserved as expected by the |
| 2654 | // database. |
| 2655 | fn make_test_params() -> Vec<KeyParameter> { |
| 2656 | vec![ |
| 2657 | KeyParameter::new(KeyParameterValue::Invalid, SecurityLevel::TRUSTED_ENVIRONMENT), |
| 2658 | KeyParameter::new( |
| 2659 | KeyParameterValue::KeyPurpose(KeyPurpose::SIGN), |
| 2660 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2661 | ), |
| 2662 | KeyParameter::new( |
| 2663 | KeyParameterValue::KeyPurpose(KeyPurpose::DECRYPT), |
| 2664 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2665 | ), |
| 2666 | KeyParameter::new( |
| 2667 | KeyParameterValue::Algorithm(Algorithm::RSA), |
| 2668 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2669 | ), |
| 2670 | KeyParameter::new(KeyParameterValue::KeySize(1024), SecurityLevel::TRUSTED_ENVIRONMENT), |
| 2671 | KeyParameter::new( |
| 2672 | KeyParameterValue::BlockMode(BlockMode::ECB), |
| 2673 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2674 | ), |
| 2675 | KeyParameter::new( |
| 2676 | KeyParameterValue::BlockMode(BlockMode::GCM), |
| 2677 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2678 | ), |
| 2679 | KeyParameter::new(KeyParameterValue::Digest(Digest::NONE), SecurityLevel::STRONGBOX), |
| 2680 | KeyParameter::new( |
| 2681 | KeyParameterValue::Digest(Digest::MD5), |
| 2682 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2683 | ), |
| 2684 | KeyParameter::new( |
| 2685 | KeyParameterValue::Digest(Digest::SHA_2_224), |
| 2686 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2687 | ), |
| 2688 | KeyParameter::new( |
| 2689 | KeyParameterValue::Digest(Digest::SHA_2_256), |
| 2690 | SecurityLevel::STRONGBOX, |
| 2691 | ), |
| 2692 | KeyParameter::new( |
| 2693 | KeyParameterValue::PaddingMode(PaddingMode::NONE), |
| 2694 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2695 | ), |
| 2696 | KeyParameter::new( |
| 2697 | KeyParameterValue::PaddingMode(PaddingMode::RSA_OAEP), |
| 2698 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2699 | ), |
| 2700 | KeyParameter::new( |
| 2701 | KeyParameterValue::PaddingMode(PaddingMode::RSA_PSS), |
| 2702 | SecurityLevel::STRONGBOX, |
| 2703 | ), |
| 2704 | KeyParameter::new( |
| 2705 | KeyParameterValue::PaddingMode(PaddingMode::RSA_PKCS1_1_5_SIGN), |
| 2706 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2707 | ), |
| 2708 | KeyParameter::new(KeyParameterValue::CallerNonce, SecurityLevel::TRUSTED_ENVIRONMENT), |
| 2709 | KeyParameter::new(KeyParameterValue::MinMacLength(256), SecurityLevel::STRONGBOX), |
| 2710 | KeyParameter::new( |
| 2711 | KeyParameterValue::EcCurve(EcCurve::P_224), |
| 2712 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2713 | ), |
| 2714 | KeyParameter::new(KeyParameterValue::EcCurve(EcCurve::P_256), SecurityLevel::STRONGBOX), |
| 2715 | KeyParameter::new( |
| 2716 | KeyParameterValue::EcCurve(EcCurve::P_384), |
| 2717 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2718 | ), |
| 2719 | KeyParameter::new( |
| 2720 | KeyParameterValue::EcCurve(EcCurve::P_521), |
| 2721 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2722 | ), |
| 2723 | KeyParameter::new( |
| 2724 | KeyParameterValue::RSAPublicExponent(3), |
| 2725 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2726 | ), |
| 2727 | KeyParameter::new( |
| 2728 | KeyParameterValue::IncludeUniqueID, |
| 2729 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2730 | ), |
| 2731 | KeyParameter::new(KeyParameterValue::BootLoaderOnly, SecurityLevel::STRONGBOX), |
| 2732 | KeyParameter::new(KeyParameterValue::RollbackResistance, SecurityLevel::STRONGBOX), |
| 2733 | KeyParameter::new( |
| 2734 | KeyParameterValue::ActiveDateTime(1234567890), |
| 2735 | SecurityLevel::STRONGBOX, |
| 2736 | ), |
| 2737 | KeyParameter::new( |
| 2738 | KeyParameterValue::OriginationExpireDateTime(1234567890), |
| 2739 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2740 | ), |
| 2741 | KeyParameter::new( |
| 2742 | KeyParameterValue::UsageExpireDateTime(1234567890), |
| 2743 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2744 | ), |
| 2745 | KeyParameter::new( |
| 2746 | KeyParameterValue::MinSecondsBetweenOps(1234567890), |
| 2747 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2748 | ), |
| 2749 | KeyParameter::new( |
| 2750 | KeyParameterValue::MaxUsesPerBoot(1234567890), |
| 2751 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2752 | ), |
| 2753 | KeyParameter::new(KeyParameterValue::UserID(1), SecurityLevel::STRONGBOX), |
| 2754 | KeyParameter::new(KeyParameterValue::UserSecureID(42), SecurityLevel::STRONGBOX), |
| 2755 | KeyParameter::new( |
| 2756 | KeyParameterValue::NoAuthRequired, |
| 2757 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2758 | ), |
| 2759 | KeyParameter::new( |
| 2760 | KeyParameterValue::HardwareAuthenticatorType(HardwareAuthenticatorType::PASSWORD), |
| 2761 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2762 | ), |
| 2763 | KeyParameter::new(KeyParameterValue::AuthTimeout(1234567890), SecurityLevel::SOFTWARE), |
| 2764 | KeyParameter::new(KeyParameterValue::AllowWhileOnBody, SecurityLevel::SOFTWARE), |
| 2765 | KeyParameter::new( |
| 2766 | KeyParameterValue::TrustedUserPresenceRequired, |
| 2767 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2768 | ), |
| 2769 | KeyParameter::new( |
| 2770 | KeyParameterValue::TrustedConfirmationRequired, |
| 2771 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2772 | ), |
| 2773 | KeyParameter::new( |
| 2774 | KeyParameterValue::UnlockedDeviceRequired, |
| 2775 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2776 | ), |
| 2777 | KeyParameter::new( |
| 2778 | KeyParameterValue::ApplicationID(vec![1u8, 2u8, 3u8, 4u8]), |
| 2779 | SecurityLevel::SOFTWARE, |
| 2780 | ), |
| 2781 | KeyParameter::new( |
| 2782 | KeyParameterValue::ApplicationData(vec![4u8, 3u8, 2u8, 1u8]), |
| 2783 | SecurityLevel::SOFTWARE, |
| 2784 | ), |
| 2785 | KeyParameter::new( |
| 2786 | KeyParameterValue::CreationDateTime(12345677890), |
| 2787 | SecurityLevel::SOFTWARE, |
| 2788 | ), |
| 2789 | KeyParameter::new( |
| 2790 | KeyParameterValue::KeyOrigin(KeyOrigin::GENERATED), |
| 2791 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2792 | ), |
| 2793 | KeyParameter::new( |
| 2794 | KeyParameterValue::RootOfTrust(vec![3u8, 2u8, 1u8, 4u8]), |
| 2795 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2796 | ), |
| 2797 | KeyParameter::new(KeyParameterValue::OSVersion(1), SecurityLevel::TRUSTED_ENVIRONMENT), |
| 2798 | KeyParameter::new(KeyParameterValue::OSPatchLevel(2), SecurityLevel::SOFTWARE), |
| 2799 | KeyParameter::new( |
| 2800 | KeyParameterValue::UniqueID(vec![4u8, 3u8, 1u8, 2u8]), |
| 2801 | SecurityLevel::SOFTWARE, |
| 2802 | ), |
| 2803 | KeyParameter::new( |
| 2804 | KeyParameterValue::AttestationChallenge(vec![4u8, 3u8, 1u8, 2u8]), |
| 2805 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2806 | ), |
| 2807 | KeyParameter::new( |
| 2808 | KeyParameterValue::AttestationApplicationID(vec![4u8, 3u8, 1u8, 2u8]), |
| 2809 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2810 | ), |
| 2811 | KeyParameter::new( |
| 2812 | KeyParameterValue::AttestationIdBrand(vec![4u8, 3u8, 1u8, 2u8]), |
| 2813 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2814 | ), |
| 2815 | KeyParameter::new( |
| 2816 | KeyParameterValue::AttestationIdDevice(vec![4u8, 3u8, 1u8, 2u8]), |
| 2817 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2818 | ), |
| 2819 | KeyParameter::new( |
| 2820 | KeyParameterValue::AttestationIdProduct(vec![4u8, 3u8, 1u8, 2u8]), |
| 2821 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2822 | ), |
| 2823 | KeyParameter::new( |
| 2824 | KeyParameterValue::AttestationIdSerial(vec![4u8, 3u8, 1u8, 2u8]), |
| 2825 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2826 | ), |
| 2827 | KeyParameter::new( |
| 2828 | KeyParameterValue::AttestationIdIMEI(vec![4u8, 3u8, 1u8, 2u8]), |
| 2829 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2830 | ), |
| 2831 | KeyParameter::new( |
| 2832 | KeyParameterValue::AttestationIdMEID(vec![4u8, 3u8, 1u8, 2u8]), |
| 2833 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2834 | ), |
| 2835 | KeyParameter::new( |
| 2836 | KeyParameterValue::AttestationIdManufacturer(vec![4u8, 3u8, 1u8, 2u8]), |
| 2837 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2838 | ), |
| 2839 | KeyParameter::new( |
| 2840 | KeyParameterValue::AttestationIdModel(vec![4u8, 3u8, 1u8, 2u8]), |
| 2841 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2842 | ), |
| 2843 | KeyParameter::new( |
| 2844 | KeyParameterValue::VendorPatchLevel(3), |
| 2845 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2846 | ), |
| 2847 | KeyParameter::new( |
| 2848 | KeyParameterValue::BootPatchLevel(4), |
| 2849 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2850 | ), |
| 2851 | KeyParameter::new( |
| 2852 | KeyParameterValue::AssociatedData(vec![4u8, 3u8, 1u8, 2u8]), |
| 2853 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2854 | ), |
| 2855 | KeyParameter::new( |
| 2856 | KeyParameterValue::Nonce(vec![4u8, 3u8, 1u8, 2u8]), |
| 2857 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2858 | ), |
| 2859 | KeyParameter::new( |
| 2860 | KeyParameterValue::MacLength(256), |
| 2861 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2862 | ), |
| 2863 | KeyParameter::new( |
| 2864 | KeyParameterValue::ResetSinceIdRotation, |
| 2865 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2866 | ), |
| 2867 | KeyParameter::new( |
| 2868 | KeyParameterValue::ConfirmationToken(vec![5u8, 5u8, 5u8, 5u8]), |
| 2869 | SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2870 | ), |
| 2871 | ] |
| 2872 | } |
| 2873 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2874 | fn make_test_key_entry( |
| 2875 | db: &mut KeystoreDB, |
Janis Danisevskis | c5b210b | 2020-09-11 13:27:37 -0700 | [diff] [blame] | 2876 | domain: Domain, |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2877 | namespace: i64, |
| 2878 | alias: &str, |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2879 | ) -> Result<KeyIdGuard> { |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2880 | let key_id = db.create_key_entry(domain, namespace)?; |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2881 | db.insert_blob(&key_id, SubComponentType::KEY_BLOB, TEST_KEY_BLOB)?; |
| 2882 | db.insert_blob(&key_id, SubComponentType::CERT, TEST_CERT_BLOB)?; |
| 2883 | db.insert_blob(&key_id, SubComponentType::CERT_CHAIN, TEST_CERT_CHAIN_BLOB)?; |
Janis Danisevskis | aec1459 | 2020-11-12 09:41:49 -0800 | [diff] [blame] | 2884 | db.insert_keyparameter(&key_id, &make_test_params())?; |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2885 | let mut metadata = KeyMetaData::new(); |
| 2886 | metadata.add(KeyMetaEntry::EncryptedBy(EncryptedBy::Password)); |
| 2887 | metadata.add(KeyMetaEntry::Salt(vec![1, 2, 3])); |
| 2888 | metadata.add(KeyMetaEntry::Iv(vec![2, 3, 1])); |
| 2889 | metadata.add(KeyMetaEntry::AeadTag(vec![3, 1, 2])); |
| 2890 | db.insert_key_metadata(&key_id, &metadata)?; |
Janis Danisevskis | 4507f3b | 2021-01-13 16:34:39 -0800 | [diff] [blame^] | 2891 | rebind_alias(db, &key_id, alias, domain, namespace)?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2892 | Ok(key_id) |
| 2893 | } |
| 2894 | |
Janis Danisevskis | b42fc18 | 2020-12-15 08:41:27 -0800 | [diff] [blame] | 2895 | fn make_test_key_entry_test_vector(key_id: i64) -> KeyEntry { |
| 2896 | let mut metadata = KeyMetaData::new(); |
| 2897 | metadata.add(KeyMetaEntry::EncryptedBy(EncryptedBy::Password)); |
| 2898 | metadata.add(KeyMetaEntry::Salt(vec![1, 2, 3])); |
| 2899 | metadata.add(KeyMetaEntry::Iv(vec![2, 3, 1])); |
| 2900 | metadata.add(KeyMetaEntry::AeadTag(vec![3, 1, 2])); |
| 2901 | |
| 2902 | KeyEntry { |
| 2903 | id: key_id, |
| 2904 | km_blob: Some(TEST_KEY_BLOB.to_vec()), |
| 2905 | cert: Some(TEST_CERT_BLOB.to_vec()), |
| 2906 | cert_chain: Some(TEST_CERT_CHAIN_BLOB.to_vec()), |
| 2907 | sec_level: SecurityLevel::TRUSTED_ENVIRONMENT, |
| 2908 | parameters: make_test_params(), |
| 2909 | metadata, |
| 2910 | } |
| 2911 | } |
| 2912 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2913 | fn debug_dump_keyentry_table(db: &mut KeystoreDB) -> Result<()> { |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2914 | let mut stmt = db.conn.prepare( |
| 2915 | "SELECT id, key_type, domain, namespace, alias, state FROM persistent.keyentry;", |
| 2916 | )?; |
| 2917 | let rows = stmt.query_map::<(i64, KeyType, i32, i64, String, KeyLifeCycle), _, _>( |
| 2918 | NO_PARAMS, |
| 2919 | |row| { |
| 2920 | Ok((row.get(0)?, row.get(1)?, row.get(2)?, row.get(3)?, row.get(4)?, row.get(5)?)) |
| 2921 | }, |
| 2922 | )?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2923 | |
| 2924 | println!("Key entry table rows:"); |
| 2925 | for r in rows { |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2926 | let (id, key_type, domain, namespace, alias, state) = r.unwrap(); |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2927 | println!( |
Janis Danisevskis | 93927dd | 2020-12-23 12:23:08 -0800 | [diff] [blame] | 2928 | " id: {} KeyType: {:?} Domain: {} Namespace: {} Alias: {} State: {:?}", |
| 2929 | id, key_type, domain, namespace, alias, state |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2930 | ); |
| 2931 | } |
| 2932 | Ok(()) |
| 2933 | } |
| 2934 | |
| 2935 | fn debug_dump_grant_table(db: &mut KeystoreDB) -> Result<()> { |
Janis Danisevskis | bf15d73 | 2020-12-08 10:35:26 -0800 | [diff] [blame] | 2936 | let mut stmt = db |
| 2937 | .conn |
| 2938 | .prepare("SELECT id, grantee, keyentryid, access_vector FROM persistent.grant;")?; |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2939 | let rows = stmt.query_map::<(i64, i64, i64, i64), _, _>(NO_PARAMS, |row| { |
| 2940 | Ok((row.get(0)?, row.get(1)?, row.get(2)?, row.get(3)?)) |
| 2941 | })?; |
| 2942 | |
| 2943 | println!("Grant table rows:"); |
| 2944 | for r in rows { |
| 2945 | let (id, gt, ki, av) = r.unwrap(); |
| 2946 | println!(" id: {} grantee: {} key_id: {} access_vector: {}", id, gt, ki, av); |
| 2947 | } |
| 2948 | Ok(()) |
| 2949 | } |
| 2950 | |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 2951 | // Use a custom random number generator that repeats each number once. |
| 2952 | // This allows us to test repeated elements. |
| 2953 | |
| 2954 | thread_local! { |
| 2955 | static RANDOM_COUNTER: RefCell<i64> = RefCell::new(0); |
| 2956 | } |
| 2957 | |
Janis Danisevskis | 63f7bc8 | 2020-09-03 10:12:56 -0700 | [diff] [blame] | 2958 | fn reset_random() { |
| 2959 | RANDOM_COUNTER.with(|counter| { |
| 2960 | *counter.borrow_mut() = 0; |
| 2961 | }) |
| 2962 | } |
| 2963 | |
Joel Galenson | 0891bc1 | 2020-07-20 10:37:03 -0700 | [diff] [blame] | 2964 | pub fn random() -> i64 { |
| 2965 | RANDOM_COUNTER.with(|counter| { |
| 2966 | let result = *counter.borrow() / 2; |
| 2967 | *counter.borrow_mut() += 1; |
| 2968 | result |
| 2969 | }) |
| 2970 | } |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 2971 | |
| 2972 | #[test] |
| 2973 | fn test_last_off_body() -> Result<()> { |
| 2974 | let mut db = new_test_db()?; |
Janis Danisevskis | 5ed8c53 | 2021-01-11 14:19:42 -0800 | [diff] [blame] | 2975 | db.insert_last_off_body(MonotonicRawTime::now())?; |
Hasini Gunasinghe | f70cf8e | 2020-11-11 01:02:41 +0000 | [diff] [blame] | 2976 | let tx = db.conn.transaction_with_behavior(TransactionBehavior::Immediate)?; |
| 2977 | let last_off_body_1 = KeystoreDB::get_last_off_body(&tx)?; |
| 2978 | tx.commit()?; |
| 2979 | let one_second = Duration::from_secs(1); |
| 2980 | thread::sleep(one_second); |
| 2981 | db.update_last_off_body(MonotonicRawTime::now())?; |
| 2982 | let tx2 = db.conn.transaction_with_behavior(TransactionBehavior::Immediate)?; |
| 2983 | let last_off_body_2 = KeystoreDB::get_last_off_body(&tx2)?; |
| 2984 | tx2.commit()?; |
| 2985 | assert!(last_off_body_1.seconds() < last_off_body_2.seconds()); |
| 2986 | Ok(()) |
| 2987 | } |
Joel Galenson | 26f4d01 | 2020-07-17 14:57:21 -0700 | [diff] [blame] | 2988 | } |