blob: db30e072d2390b6a416d6d480bc89945fe2acced [file] [log] [blame]
Joel Galenson26f4d012020-07-17 14:57:21 -07001// 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 Danisevskis63f7bc82020-09-03 10:12:56 -070015//! 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 Galenson26f4d012020-07-17 14:57:21 -070043
Janis Danisevskis4507f3b2021-01-13 16:34:39 -080044use crate::db_utils::{self, SqlField};
Janis Danisevskisc5b210b2020-09-11 13:27:37 -070045use crate::error::{Error as KsError, ResponseCode};
Janis Danisevskisb42fc182020-12-15 08:41:27 -080046use crate::impl_metadata; // This is in db_utils.rs
Janis Danisevskis4522c2b2020-11-27 18:04:58 -080047use crate::key_parameter::{KeyParameter, Tag};
Janis Danisevskisc5b210b2020-09-11 13:27:37 -070048use crate::permission::KeyPermSet;
Hasini Gunasinghe557b1032020-11-10 01:35:30 +000049use crate::utils::get_current_time_in_seconds;
Janis Danisevskisb42fc182020-12-15 08:41:27 -080050use anyhow::{anyhow, Context, Result};
51use std::{convert::TryFrom, convert::TryInto, time::SystemTimeError};
Janis Danisevskis60400fe2020-08-26 15:24:42 -070052
Hasini Gunasinghe52333ba2020-11-06 01:24:16 +000053use android_hardware_security_keymint::aidl::android::hardware::security::keymint::{
Janis Danisevskis5ed8c532021-01-11 14:19:42 -080054 HardwareAuthToken::HardwareAuthToken,
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +000055 HardwareAuthenticatorType::HardwareAuthenticatorType, SecurityLevel::SecurityLevel,
Janis Danisevskisc3a496b2021-01-05 10:37:22 -080056};
57use android_hardware_security_secureclock::aidl::android::hardware::security::secureclock::{
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +000058 Timestamp::Timestamp,
Hasini Gunasinghe52333ba2020-11-06 01:24:16 +000059};
Janis Danisevskisc5b210b2020-09-11 13:27:37 -070060use android_system_keystore2::aidl::android::system::keystore2::{
Janis Danisevskis04b02832020-10-26 09:21:40 -070061 Domain::Domain, KeyDescriptor::KeyDescriptor,
Janis Danisevskis60400fe2020-08-26 15:24:42 -070062};
Janis Danisevskisaec14592020-11-12 09:41:49 -080063use lazy_static::lazy_static;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +000064use log::error;
Joel Galenson0891bc12020-07-20 10:37:03 -070065#[cfg(not(test))]
66use rand::prelude::random;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -070067use rusqlite::{
Janis Danisevskisb42fc182020-12-15 08:41:27 -080068 params,
69 types::FromSql,
70 types::FromSqlResult,
71 types::ToSqlOutput,
72 types::{FromSqlError, Value, ValueRef},
Janis Danisevskis5ed8c532021-01-11 14:19:42 -080073 Connection, OptionalExtension, ToSql, Transaction, TransactionBehavior, NO_PARAMS,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -070074};
Janis Danisevskisaec14592020-11-12 09:41:49 -080075use std::{
Janis Danisevskisb42fc182020-12-15 08:41:27 -080076 collections::{HashMap, HashSet},
Janis Danisevskisbf15d732020-12-08 10:35:26 -080077 path::Path,
78 sync::{Condvar, Mutex},
Janis Danisevskisb42fc182020-12-15 08:41:27 -080079 time::{Duration, SystemTime},
Janis Danisevskisaec14592020-11-12 09:41:49 -080080};
Joel Galenson0891bc12020-07-20 10:37:03 -070081#[cfg(test)]
82use tests::random;
Joel Galenson26f4d012020-07-17 14:57:21 -070083
Janis Danisevskisb42fc182020-12-15 08:41:27 -080084impl_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
111impl 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)]
158pub 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
169impl 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
179impl 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)]
192pub 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
202impl 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
211impl 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)]
223pub struct DateTime(i64);
224
225/// Error type returned when creating DateTime or converting it from and to
226/// SystemTime.
227#[derive(thiserror::Error, Debug)]
228pub 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
242impl 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
265impl ToSql for DateTime {
266 fn to_sql(&self) -> rusqlite::Result<ToSqlOutput> {
267 Ok(ToSqlOutput::Owned(Value::Integer(self.0)))
268 }
269}
270
271impl FromSql for DateTime {
272 fn column_result(value: ValueRef) -> FromSqlResult<Self> {
273 Ok(Self(i64::column_result(value)?))
274 }
275}
276
277impl 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
307impl 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 Danisevskis93927dd2020-12-23 12:23:08 -0800315#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Copy, Clone)]
316enum 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
327impl 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
337impl 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 Danisevskis63f7bc82020-09-03 10:12:56 -0700348/// 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)]
353pub struct KeyEntryLoadBits(u32);
354
355impl 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 Danisevskisaec14592020-11-12 09:41:49 -0800376lazy_static! {
377 static ref KEY_ID_LOCK: KeyIdLockDb = KeyIdLockDb::new();
378}
379
380struct 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)]
389pub struct KeyIdGuard(i64);
390
391impl 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
422impl KeyIdGuard {
423 /// Get the numeric key id of the locked key.
424 pub fn id(&self) -> i64 {
425 self.0
426 }
427}
428
429impl 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 Danisevskis7fd53582020-11-23 13:40:34 -0800433 drop(locked_keys);
Janis Danisevskisaec14592020-11-12 09:41:49 -0800434 KEY_ID_LOCK.cond_var.notify_all();
435 }
436}
437
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700438/// 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 Danisevskisb42fc182020-12-15 08:41:27 -0800442#[derive(Debug, Default, Eq, PartialEq)]
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700443pub struct KeyEntry {
444 id: i64,
445 km_blob: Option<Vec<u8>>,
446 cert: Option<Vec<u8>>,
447 cert_chain: Option<Vec<u8>>,
Janis Danisevskisc5b210b2020-09-11 13:27:37 -0700448 sec_level: SecurityLevel,
Janis Danisevskis3f322cb2020-09-03 14:46:22 -0700449 parameters: Vec<KeyParameter>,
Janis Danisevskisb42fc182020-12-15 08:41:27 -0800450 metadata: KeyMetaData,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700451}
452
453impl 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 Danisevskisc5b210b2020-09-11 13:27:37 -0700483 pub fn sec_level(&self) -> SecurityLevel {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700484 self.sec_level
485 }
Janis Danisevskis04b02832020-10-26 09:21:40 -0700486 /// 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 Danisevskisb42fc182020-12-15 08:41:27 -0800494 /// Exposes the key metadata of this key entry.
495 pub fn metadata(&self) -> &KeyMetaData {
496 &self.metadata
497 }
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700498}
499
500/// Indicates the sub component of a key entry for persistent storage.
501#[derive(Debug, Eq, PartialEq, Ord, PartialOrd)]
502pub struct SubComponentType(u32);
503impl SubComponentType {
Janis Danisevskisb42fc182020-12-15 08:41:27 -0800504 /// Persistent identifier for a key blob.
505 pub const KEY_BLOB: SubComponentType = Self(0);
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700506 /// 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
512impl ToSql for SubComponentType {
513 fn to_sql(&self) -> rusqlite::Result<ToSqlOutput> {
514 self.0.to_sql()
515 }
516}
517
518impl FromSql for SubComponentType {
519 fn column_result(value: ValueRef) -> FromSqlResult<Self> {
520 Ok(Self(u32::column_result(value)?))
521 }
522}
523
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700524/// 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 Galenson26f4d012020-07-17 14:57:21 -0700526pub struct KeystoreDB {
Joel Galenson26f4d012020-07-17 14:57:21 -0700527 conn: Connection,
528}
529
Hasini Gunasinghe557b1032020-11-10 01:35:30 +0000530/// 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)]
533pub struct MonotonicRawTime(i64);
534
535impl 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 Danisevskis5ed8c532021-01-11 14:19:42 -0800545
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 Gunasinghe557b1032020-11-10 01:35:30 +0000550}
551
552impl ToSql for MonotonicRawTime {
553 fn to_sql(&self) -> rusqlite::Result<ToSqlOutput> {
554 Ok(ToSqlOutput::Owned(Value::Integer(self.0)))
555 }
556}
557
558impl FromSql for MonotonicRawTime {
559 fn column_result(value: ValueRef) -> FromSqlResult<Self> {
560 Ok(Self(i64::column_result(value)?))
561 }
562}
563
Hasini Gunasinghe52333ba2020-11-06 01:24:16 +0000564/// This struct encapsulates the information to be stored in the database about the auth tokens
565/// received by keystore.
566pub struct AuthTokenEntry {
567 auth_token: HardwareAuthToken,
Hasini Gunasinghe557b1032020-11-10 01:35:30 +0000568 time_received: MonotonicRawTime,
Hasini Gunasinghe52333ba2020-11-06 01:24:16 +0000569}
570
571impl AuthTokenEntry {
Hasini Gunasinghe557b1032020-11-10 01:35:30 +0000572 fn new(auth_token: HardwareAuthToken, time_received: MonotonicRawTime) -> Self {
Hasini Gunasinghe52333ba2020-11-06 01:24:16 +0000573 AuthTokenEntry { auth_token, time_received }
574 }
575
576 /// Checks if this auth token satisfies the given authentication information.
Janis Danisevskis5ed8c532021-01-11 14:19:42 -0800577 pub fn satisfies(&self, user_secure_ids: &[i64], auth_type: HardwareAuthenticatorType) -> bool {
Hasini Gunasinghe52333ba2020-11-06 01:24:16 +0000578 user_secure_ids.iter().any(|&sid| {
Janis Danisevskis5ed8c532021-01-11 14:19:42 -0800579 (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 Gunasinghe52333ba2020-11-06 01:24:16 +0000581 })
582 }
583
Hasini Gunasinghe52333ba2020-11-06 01:24:16 +0000584 /// Returns the auth token wrapped by the AuthTokenEntry
Janis Danisevskis5ed8c532021-01-11 14:19:42 -0800585 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 Gunasinghe52333ba2020-11-06 01:24:16 +0000591 self.auth_token
592 }
Janis Danisevskis5ed8c532021-01-11 14:19:42 -0800593
594 /// Returns the time that this auth token was received.
595 pub fn time_received(&self) -> MonotonicRawTime {
596 self.time_received
597 }
Hasini Gunasinghe52333ba2020-11-06 01:24:16 +0000598}
599
Joel Galenson26f4d012020-07-17 14:57:21 -0700600impl KeystoreDB {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700601 /// This will create a new database connection connecting the two
Janis Danisevskisbf15d732020-12-08 10:35:26 -0800602 /// 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 Danisevskis63f7bc82020-09-03 10:12:56 -0700605 /// Each thread should open their own connection using `thread_local!`.
Janis Danisevskisbf15d732020-12-08 10:35:26 -0800606 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 Danisevskis4df44f42020-08-26 14:40:03 -0700612
Janis Danisevskisbf15d732020-12-08 10:35:26 -0800613 // 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 Danisevskis4df44f42020-08-26 14:40:03 -0700622 Ok(Self { conn })
Joel Galenson2aab4432020-07-22 15:27:57 -0700623 }
624
Janis Danisevskis4df44f42020-08-26 14:40:03 -0700625 fn init_tables(conn: &Connection) -> Result<()> {
626 conn.execute(
627 "CREATE TABLE IF NOT EXISTS persistent.keyentry (
Joel Galenson0891bc12020-07-20 10:37:03 -0700628 id INTEGER UNIQUE,
Janis Danisevskisb42fc182020-12-15 08:41:27 -0800629 key_type INTEGER,
Joel Galenson0891bc12020-07-20 10:37:03 -0700630 domain INTEGER,
631 namespace INTEGER,
Janis Danisevskis93927dd2020-12-23 12:23:08 -0800632 alias BLOB,
633 state INTEGER);",
Janis Danisevskis4df44f42020-08-26 14:40:03 -0700634 NO_PARAMS,
635 )
636 .context("Failed to initialize \"keyentry\" table.")?;
637
638 conn.execute(
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700639 "CREATE TABLE IF NOT EXISTS persistent.blobentry (
640 id INTEGER PRIMARY KEY,
641 subcomponent_type INTEGER,
642 keyentryid INTEGER,
Janis Danisevskis93927dd2020-12-23 12:23:08 -0800643 blob BLOB);",
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700644 NO_PARAMS,
645 )
646 .context("Failed to initialize \"blobentry\" table.")?;
647
648 conn.execute(
Janis Danisevskis4df44f42020-08-26 14:40:03 -0700649 "CREATE TABLE IF NOT EXISTS persistent.keyparameter (
Hasini Gunasingheaf993662020-07-24 18:40:20 +0000650 keyentryid INTEGER,
651 tag INTEGER,
652 data ANY,
653 security_level INTEGER);",
Janis Danisevskis4df44f42020-08-26 14:40:03 -0700654 NO_PARAMS,
655 )
656 .context("Failed to initialize \"keyparameter\" table.")?;
657
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700658 conn.execute(
Janis Danisevskisb42fc182020-12-15 08:41:27 -0800659 "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 Danisevskisbf15d732020-12-08 10:35:26 -0800668 "CREATE TABLE IF NOT EXISTS persistent.grant (
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700669 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 Gunasinghe557b1032020-11-10 01:35:30 +0000677 //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 Galenson0891bc12020-07-20 10:37:03 -0700708 Ok(())
709 }
710
Janis Danisevskis4df44f42020-08-26 14:40:03 -0700711 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 Danisevskis93927dd2020-12-23 12:23:08 -0800723 /// 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 Danisevskisb42fc182020-12-15 08:41:27 -0800813 /// 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 Danisevskis93927dd2020-12-23 12:23:08 -0800840 AND alias = ?
841 AND state = ?;",
Janis Danisevskisb42fc182020-12-15 08:41:27 -0800842 )
843 .context("In get_or_create_key_with: Failed to select from keyentry table.")?;
844 let mut rows = stmt
Janis Danisevskis93927dd2020-12-23 12:23:08 -0800845 .query(params![KeyType::Super, domain.0, namespace, alias, KeyLifeCycle::Live])
Janis Danisevskisb42fc182020-12-15 08:41:27 -0800846 .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 Danisevskis93927dd2020-12-23 12:23:08 -0800868 (id, key_type, domain, namespace, alias, state)
869 VALUES(?, ?, ?, ?, ?, ?);",
870 params![id, KeyType::Super, domain.0, namespace, alias, KeyLifeCycle::Live],
Janis Danisevskisb42fc182020-12-15 08:41:27 -0800871 )
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 Danisevskis93927dd2020-12-23 12:23:08 -0800876 Self::insert_blob_internal(&tx, id, SubComponentType::KEY_BLOB, &blob)
877 .context("In get_of_create_key_with.")?;
Janis Danisevskisb42fc182020-12-15 08:41:27 -0800878 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 Danisevskis93927dd2020-12-23 12:23:08 -0800886 /// 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 Danisevskis63f7bc82020-09-03 10:12:56 -0700902 /// 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 Danisevskis93927dd2020-12-23 12:23:08 -0800908 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 Galenson0891bc12020-07-20 10:37:03 -0700920 match domain {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -0700921 Domain::APP | Domain::SELINUX => {}
Joel Galenson0891bc12020-07-20 10:37:03 -0700922 _ => {
923 return Err(KsError::sys())
924 .context(format!("Domain {:?} must be either App or SELinux.", domain));
925 }
926 }
Janis Danisevskisaec14592020-11-12 09:41:49 -0800927 Ok(KEY_ID_LOCK.get(
928 Self::insert_with_retry(|id| {
Janis Danisevskis93927dd2020-12-23 12:23:08 -0800929 tx.execute(
Janis Danisevskisb42fc182020-12-15 08:41:27 -0800930 "INSERT into persistent.keyentry
Janis Danisevskis93927dd2020-12-23 12:23:08 -0800931 (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 Danisevskisaec14592020-11-12 09:41:49 -0800940 )
941 })
Janis Danisevskis93927dd2020-12-23 12:23:08 -0800942 .context("In create_key_entry_internal")?,
Janis Danisevskisaec14592020-11-12 09:41:49 -0800943 ))
Joel Galenson26f4d012020-07-17 14:57:21 -0700944 }
Joel Galenson33c04ad2020-08-03 11:04:38 -0700945
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700946 /// 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 Danisevskisb42fc182020-12-15 08:41:27 -0800951 /// other than `SubComponentType::KEY_BLOB` are ignored.
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700952 pub fn insert_blob(
953 &mut self,
Janis Danisevskisaec14592020-11-12 09:41:49 -0800954 key_id: &KeyIdGuard,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700955 sc_type: SubComponentType,
956 blob: &[u8],
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700957 ) -> Result<()> {
Janis Danisevskis93927dd2020-12-23 12:23:08 -0800958 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 Danisevskisb42fc182020-12-15 08:41:27 -0800962 }
963
964 fn insert_blob_internal(
965 tx: &Transaction,
966 key_id: i64,
967 sc_type: SubComponentType,
968 blob: &[u8],
Janis Danisevskisb42fc182020-12-15 08:41:27 -0800969 ) -> Result<()> {
970 tx.execute(
Janis Danisevskis93927dd2020-12-23 12:23:08 -0800971 "INSERT into persistent.blobentry (subcomponent_type, keyentryid, blob)
972 VALUES (?, ?, ?);",
973 params![sc_type, key_id, blob],
Janis Danisevskisb42fc182020-12-15 08:41:27 -0800974 )
975 .context("In insert_blob_internal: Failed to insert blob.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -0700976 Ok(())
977 }
978
Janis Danisevskis3f322cb2020-09-03 14:46:22 -0700979 /// 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 Danisevskisaec14592020-11-12 09:41:49 -0800983 key_id: &KeyIdGuard,
Janis Danisevskis3f322cb2020-09-03 14:46:22 -0700984 params: impl IntoIterator<Item = &'a KeyParameter>,
985 ) -> Result<()> {
Janis Danisevskis93927dd2020-12-23 12:23:08 -0800986 self.with_transaction(TransactionBehavior::Immediate, |tx| {
987 Self::insert_keyparameter_internal(tx, key_id, params)
988 })
989 .context("In insert_keyparameter.")
990 }
Janis Danisevskis3f322cb2020-09-03 14:46:22 -0700991
Janis Danisevskis93927dd2020-12-23 12:23:08 -0800992 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 Danisevskis3f322cb2020-09-03 14:46:22 -07001015 }
1016 Ok(())
1017 }
1018
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001019 /// 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 Danisevskis93927dd2020-12-23 12:23:08 -08001025 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 Danisevskis63f7bc82020-09-03 10:12:56 -07001031 /// 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 Danisevskis4507f3b2021-01-13 16:34:39 -08001034 /// Returns Ok(true) if an old key was marked unreferenced as a hint to the garbage
1035 /// collector.
1036 fn rebind_alias(
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001037 tx: &Transaction,
Janis Danisevskisaec14592020-11-12 09:41:49 -08001038 newid: &KeyIdGuard,
Joel Galenson33c04ad2020-08-03 11:04:38 -07001039 alias: &str,
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001040 domain: Domain,
Joel Galenson33c04ad2020-08-03 11:04:38 -07001041 namespace: i64,
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001042 ) -> Result<bool> {
Joel Galenson33c04ad2020-08-03 11:04:38 -07001043 match domain {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001044 Domain::APP | Domain::SELINUX => {}
Joel Galenson33c04ad2020-08-03 11:04:38 -07001045 _ => {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001046 return Err(KsError::sys()).context(format!(
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001047 "In rebind_alias: Domain {:?} must be either App or SELinux.",
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001048 domain
1049 ));
Joel Galenson33c04ad2020-08-03 11:04:38 -07001050 }
1051 }
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001052 let updated = tx
1053 .execute(
1054 "UPDATE persistent.keyentry
1055 SET alias = NULL, domain = NULL, namespace = NULL, state = ?
Joel Galenson33c04ad2020-08-03 11:04:38 -07001056 WHERE alias = ? AND domain = ? AND namespace = ?;",
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001057 params![KeyLifeCycle::Unreferenced, alias, domain.0 as u32, namespace],
1058 )
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001059 .context("In rebind_alias: Failed to rebind existing entry.")?;
Joel Galenson33c04ad2020-08-03 11:04:38 -07001060 let result = tx
1061 .execute(
1062 "UPDATE persistent.keyentry
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001063 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 Galenson33c04ad2020-08-03 11:04:38 -07001073 )
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001074 .context("In rebind_alias: Failed to set alias.")?;
Joel Galenson33c04ad2020-08-03 11:04:38 -07001075 if result != 1 {
Joel Galenson33c04ad2020-08-03 11:04:38 -07001076 return Err(KsError::sys()).context(format!(
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001077 "In rebind_alias: Expected to update a single entry but instead updated {}.",
Joel Galenson33c04ad2020-08-03 11:04:38 -07001078 result
1079 ));
1080 }
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001081 Ok(updated != 0)
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001082 }
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 Danisevskis4507f3b2021-01-13 16:34:39 -08001087 /// 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 Danisevskis93927dd2020-12-23 12:23:08 -08001089 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 Danisevskis4507f3b2021-01-13 16:34:39 -08001097 ) -> Result<(bool, KeyIdGuard)> {
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001098 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 Danisevskis4507f3b2021-01-13 16:34:39 -08001129 let need_gc = Self::rebind_alias(tx, &key_id, &alias, domain, namespace)
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001130 .context("Trying to rebind alias.")?;
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001131 Ok((need_gc, key_id))
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001132 })
1133 .context("In store_new_key.")
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001134 }
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 Danisevskisb42fc182020-12-15 08:41:27 -08001139 fn load_key_entry_id(tx: &Transaction, key: &KeyDescriptor, key_type: KeyType) -> Result<i64> {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001140 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 Danisevskisb42fc182020-12-15 08:41:27 -08001149 key_type = ?
1150 AND domain = ?
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001151 AND namespace = ?
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001152 AND alias = ?
1153 AND state = ?;",
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001154 )
1155 .context("In load_key_entry_id: Failed to select from keyentry table.")?;
1156 let mut rows = stmt
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001157 .query(params![key_type, key.domain.0 as u32, key.nspace, alias, KeyLifeCycle::Live])
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001158 .context("In load_key_entry_id: Failed to read from keyentry table.")?;
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001159 db_utils::with_rows_extract_one(&mut rows, |row| {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001160 row.map_or_else(|| Err(KsError::Rc(ResponseCode::KEY_NOT_FOUND)), Ok)?
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001161 .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 Danisevskisc5b210b2020-09-11 13:27:37 -07001170 /// * Domain::SELINUX: The access tuple is complete and this function only loads
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001171 /// the key_id for further processing.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001172 /// * Domain::APP: Like Domain::SELINUX, but the tuple is completed by `caller_uid`
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001173 /// which serves as the namespace.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001174 /// * Domain::GRANT: The grant table is queried for the `key_id` and the
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001175 /// `access_vector`.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001176 /// * Domain::KEY_ID: The keyentry table is queried for the owning `domain` and
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001177 /// `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 Danisevskisb42fc182020-12-15 08:41:27 -08001183 key_type: KeyType,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001184 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 Danisevskisc5b210b2020-09-11 13:27:37 -07001192 // Domain::APP.
1193 Domain::APP | Domain::SELINUX => {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001194 let mut access_key = key;
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001195 if access_key.domain == Domain::APP {
1196 access_key.nspace = caller_uid as i64;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001197 }
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001198 let key_id = Self::load_key_entry_id(&tx, &access_key, key_type)
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001199 .with_context(|| format!("With key.domain = {:?}.", access_key.domain))?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001200
1201 Ok((key_id, access_key, None))
1202 }
1203
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001204 // Domain::GRANT. In this case we load the key_id and the access_vector
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001205 // from the grant table.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001206 Domain::GRANT => {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001207 let mut stmt = tx
1208 .prepare(
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001209 "SELECT keyentryid, access_vector FROM persistent.grant
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001210 WHERE grantee = ? AND id = ?;",
1211 )
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001212 .context("Domain::GRANT prepare statement failed")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001213 let mut rows = stmt
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001214 .query(params![caller_uid as i64, key.nspace])
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001215 .context("Domain:Grant: query failed.")?;
1216 let (key_id, access_vector): (i64, i32) =
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001217 db_utils::with_rows_extract_one(&mut rows, |row| {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001218 let r =
1219 row.map_or_else(|| Err(KsError::Rc(ResponseCode::KEY_NOT_FOUND)), Ok)?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001220 Ok((
1221 r.get(0).context("Failed to unpack key_id.")?,
1222 r.get(1).context("Failed to unpack access_vector.")?,
1223 ))
1224 })
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001225 .context("Domain::GRANT.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001226 Ok((key_id, key, Some(access_vector.into())))
1227 }
1228
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001229 // Domain::KEY_ID. In this case we load the domain and namespace from the
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001230 // keyentry database because we need them for access control.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001231 Domain::KEY_ID => {
Janis Danisevskis45760022021-01-19 16:34:10 -08001232 let (domain, namespace): (Domain, i64) = {
1233 let mut stmt = tx
1234 .prepare(
1235 "SELECT domain, namespace FROM persistent.keyentry
1236 WHERE
1237 id = ?
1238 AND state = ?;",
1239 )
1240 .context("Domain::KEY_ID: prepare statement failed")?;
1241 let mut rows = stmt
1242 .query(params![key.nspace, KeyLifeCycle::Live])
1243 .context("Domain::KEY_ID: query failed.")?;
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001244 db_utils::with_rows_extract_one(&mut rows, |row| {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001245 let r =
1246 row.map_or_else(|| Err(KsError::Rc(ResponseCode::KEY_NOT_FOUND)), Ok)?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001247 Ok((
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001248 Domain(r.get(0).context("Failed to unpack domain.")?),
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001249 r.get(1).context("Failed to unpack namespace.")?,
1250 ))
1251 })
Janis Danisevskis45760022021-01-19 16:34:10 -08001252 .context("Domain::KEY_ID.")?
1253 };
1254
1255 // We may use a key by id after loading it by grant.
1256 // In this case we have to check if the caller has a grant for this particular
1257 // key. We can skip this if we already know that the caller is the owner.
1258 // But we cannot know this if domain is anything but App. E.g. in the case
1259 // of Domain::SELINUX we have to speculatively check for grants because we have to
1260 // consult the SEPolicy before we know if the caller is the owner.
1261 let access_vector: Option<KeyPermSet> =
1262 if domain != Domain::APP || namespace != caller_uid as i64 {
1263 let access_vector: Option<i32> = tx
1264 .query_row(
1265 "SELECT access_vector FROM persistent.grant
1266 WHERE grantee = ? AND keyentryid = ?;",
1267 params![caller_uid as i64, key.nspace],
1268 |row| row.get(0),
1269 )
1270 .optional()
1271 .context("Domain::KEY_ID: query grant failed.")?;
1272 access_vector.map(|p| p.into())
1273 } else {
1274 None
1275 };
1276
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001277 let key_id = key.nspace;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001278 let mut access_key = key;
1279 access_key.domain = domain;
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001280 access_key.nspace = namespace;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001281
Janis Danisevskis45760022021-01-19 16:34:10 -08001282 Ok((key_id, access_key, access_vector))
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001283 }
1284 _ => Err(anyhow!(KsError::sys())),
1285 }
1286 }
1287
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001288 fn load_blob_components(
1289 key_id: i64,
1290 load_bits: KeyEntryLoadBits,
1291 tx: &Transaction,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001292 ) -> Result<(Option<Vec<u8>>, Option<Vec<u8>>, Option<Vec<u8>>)> {
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001293 let mut stmt = tx
1294 .prepare(
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001295 "SELECT MAX(id), subcomponent_type, blob FROM persistent.blobentry
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001296 WHERE keyentryid = ? GROUP BY subcomponent_type;",
1297 )
1298 .context("In load_blob_components: prepare statement failed.")?;
1299
1300 let mut rows =
1301 stmt.query(params![key_id]).context("In load_blob_components: query failed.")?;
1302
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001303 let mut km_blob: Option<Vec<u8>> = None;
1304 let mut cert_blob: Option<Vec<u8>> = None;
1305 let mut cert_chain_blob: Option<Vec<u8>> = None;
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001306 db_utils::with_rows_extract_all(&mut rows, |row| {
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001307 let sub_type: SubComponentType =
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001308 row.get(1).context("Failed to extract subcomponent_type.")?;
1309 match (sub_type, load_bits.load_public(), load_bits.load_km()) {
1310 (SubComponentType::KEY_BLOB, _, true) => {
1311 km_blob = Some(row.get(2).context("Failed to extract KM blob.")?);
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001312 }
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001313 (SubComponentType::CERT, true, _) => {
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001314 cert_blob =
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001315 Some(row.get(2).context("Failed to extract public certificate blob.")?);
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001316 }
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001317 (SubComponentType::CERT_CHAIN, true, _) => {
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001318 cert_chain_blob =
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001319 Some(row.get(2).context("Failed to extract certificate chain blob.")?);
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001320 }
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001321 (SubComponentType::CERT, _, _)
1322 | (SubComponentType::CERT_CHAIN, _, _)
1323 | (SubComponentType::KEY_BLOB, _, _) => {}
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001324 _ => Err(KsError::sys()).context("Unknown subcomponent type.")?,
1325 }
1326 Ok(())
1327 })
1328 .context("In load_blob_components.")?;
1329
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001330 Ok((km_blob, cert_blob, cert_chain_blob))
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001331 }
1332
1333 fn load_key_parameters(key_id: i64, tx: &Transaction) -> Result<Vec<KeyParameter>> {
1334 let mut stmt = tx
1335 .prepare(
1336 "SELECT tag, data, security_level from persistent.keyparameter
1337 WHERE keyentryid = ?;",
1338 )
1339 .context("In load_key_parameters: prepare statement failed.")?;
1340
1341 let mut parameters: Vec<KeyParameter> = Vec::new();
1342
1343 let mut rows =
1344 stmt.query(params![key_id]).context("In load_key_parameters: query failed.")?;
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001345 db_utils::with_rows_extract_all(&mut rows, |row| {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001346 let tag = Tag(row.get(0).context("Failed to read tag.")?);
1347 let sec_level = SecurityLevel(row.get(2).context("Failed to read sec_level.")?);
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001348 parameters.push(
1349 KeyParameter::new_from_sql(tag, &SqlField::new(1, &row), sec_level)
1350 .context("Failed to read KeyParameter.")?,
1351 );
1352 Ok(())
1353 })
1354 .context("In load_key_parameters.")?;
1355
1356 Ok(parameters)
1357 }
1358
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001359 /// Load a key entry by the given key descriptor.
1360 /// It uses the `check_permission` callback to verify if the access is allowed
1361 /// given the key access tuple read from the database using `load_access_tuple`.
1362 /// With `load_bits` the caller may specify which blobs shall be loaded from
1363 /// the blob database.
1364 pub fn load_key_entry(
1365 &mut self,
1366 key: KeyDescriptor,
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001367 key_type: KeyType,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001368 load_bits: KeyEntryLoadBits,
1369 caller_uid: u32,
1370 check_permission: impl FnOnce(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>,
Janis Danisevskisaec14592020-11-12 09:41:49 -08001371 ) -> Result<(KeyIdGuard, KeyEntry)> {
1372 // KEY ID LOCK 1/2
1373 // If we got a key descriptor with a key id we can get the lock right away.
1374 // Otherwise we have to defer it until we know the key id.
1375 let key_id_guard = match key.domain {
1376 Domain::KEY_ID => Some(KEY_ID_LOCK.get(key.nspace)),
1377 _ => None,
1378 };
1379
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001380 let tx = self
1381 .conn
Janis Danisevskisaec14592020-11-12 09:41:49 -08001382 .unchecked_transaction()
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001383 .context("In load_key_entry: Failed to initialize transaction.")?;
1384
1385 // Load the key_id and complete the access control tuple.
1386 let (key_id, access_key_descriptor, access_vector) =
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001387 Self::load_access_tuple(&tx, key, key_type, caller_uid)
1388 .context("In load_key_entry.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001389
1390 // Perform access control. It is vital that we return here if the permission is denied.
1391 // So do not touch that '?' at the end.
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001392 check_permission(&access_key_descriptor, access_vector).context("In load_key_entry.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001393
Janis Danisevskisaec14592020-11-12 09:41:49 -08001394 // KEY ID LOCK 2/2
1395 // If we did not get a key id lock by now, it was because we got a key descriptor
1396 // without a key id. At this point we got the key id, so we can try and get a lock.
1397 // However, we cannot block here, because we are in the middle of the transaction.
1398 // So first we try to get the lock non blocking. If that fails, we roll back the
1399 // transaction and block until we get the lock. After we successfully got the lock,
1400 // we start a new transaction and load the access tuple again.
1401 //
1402 // We don't need to perform access control again, because we already established
1403 // that the caller had access to the given key. But we need to make sure that the
1404 // key id still exists. So we have to load the key entry by key id this time.
1405 let (key_id_guard, tx) = match key_id_guard {
1406 None => match KEY_ID_LOCK.try_get(key_id) {
1407 None => {
1408 // Roll back the transaction.
1409 tx.rollback().context("In load_key_entry: Failed to roll back transaction.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001410
Janis Danisevskisaec14592020-11-12 09:41:49 -08001411 // Block until we have a key id lock.
1412 let key_id_guard = KEY_ID_LOCK.get(key_id);
1413
1414 // Create a new transaction.
1415 let tx = self.conn.unchecked_transaction().context(
1416 "In load_key_entry: Failed to initialize transaction. (deferred key lock)",
1417 )?;
1418
1419 Self::load_access_tuple(
1420 &tx,
1421 // This time we have to load the key by the retrieved key id, because the
1422 // alias may have been rebound after we rolled back the transaction.
1423 KeyDescriptor {
1424 domain: Domain::KEY_ID,
1425 nspace: key_id,
1426 ..Default::default()
1427 },
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001428 key_type,
Janis Danisevskisaec14592020-11-12 09:41:49 -08001429 caller_uid,
1430 )
1431 .context("In load_key_entry. (deferred key lock)")?;
1432 (key_id_guard, tx)
1433 }
1434 Some(l) => (l, tx),
1435 },
1436 Some(key_id_guard) => (key_id_guard, tx),
1437 };
1438
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001439 let key_entry = Self::load_key_components(&tx, load_bits, key_id_guard.id())
1440 .context("In load_key_entry.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001441
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001442 tx.commit().context("In load_key_entry: Failed to commit transaction.")?;
1443
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001444 Ok((key_id_guard, key_entry))
1445 }
1446
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001447 fn mark_unreferenced(tx: &Transaction, key_id: i64) -> Result<bool> {
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001448 let updated = tx
1449 .execute(
1450 "UPDATE persistent.keyentry SET state = ? WHERE id = ?;",
1451 params![KeyLifeCycle::Unreferenced, key_id],
1452 )
1453 .context("In mark_unreferenced: Failed to update state of key entry.")?;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001454 tx.execute("DELETE from persistent.grant WHERE keyentryid = ?;", params![key_id])
1455 .context("In mark_unreferenced: Failed to drop grants.")?;
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001456 Ok(updated != 0)
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001457 }
1458
1459 /// Marks the given key as unreferenced and removes all of the grants to this key.
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001460 /// Returns Ok(true) if a key was marked unreferenced as a hint for the garbage collector.
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001461 pub fn unbind_key(
1462 &mut self,
1463 key: KeyDescriptor,
1464 key_type: KeyType,
1465 caller_uid: u32,
1466 check_permission: impl FnOnce(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>,
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001467 ) -> Result<bool> {
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001468 self.with_transaction(TransactionBehavior::Immediate, |tx| {
1469 let (key_id, access_key_descriptor, access_vector) =
1470 Self::load_access_tuple(tx, key, key_type, caller_uid)
1471 .context("Trying to get access tuple.")?;
1472
1473 // Perform access control. It is vital that we return here if the permission is denied.
1474 // So do not touch that '?' at the end.
1475 check_permission(&access_key_descriptor, access_vector)
1476 .context("While checking permission.")?;
1477
1478 Self::mark_unreferenced(tx, key_id).context("Trying to mark the key unreferenced.")
1479 })
1480 .context("In unbind_key.")
1481 }
1482
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001483 fn load_key_components(
1484 tx: &Transaction,
1485 load_bits: KeyEntryLoadBits,
1486 key_id: i64,
1487 ) -> Result<KeyEntry> {
1488 let metadata = KeyMetaData::load_from_db(key_id, &tx).context("In load_key_components.")?;
1489
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001490 let (km_blob, cert_blob, cert_chain_blob) =
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001491 Self::load_blob_components(key_id, load_bits, &tx)
1492 .context("In load_key_components.")?;
1493
1494 let parameters =
1495 Self::load_key_parameters(key_id, &tx).context("In load_key_components.")?;
1496
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001497 // Extract the security level by checking the security level of the origin tag.
1498 // Super keys don't have key parameters so we use security_level software by default.
1499 let sec_level = parameters
1500 .iter()
1501 .find_map(|k| match k.get_tag() {
1502 Tag::ORIGIN => Some(*k.security_level()),
1503 _ => None,
1504 })
1505 .unwrap_or(SecurityLevel::SOFTWARE);
1506
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001507 Ok(KeyEntry {
1508 id: key_id,
1509 km_blob,
1510 cert: cert_blob,
1511 cert_chain: cert_chain_blob,
1512 sec_level,
1513 parameters,
1514 metadata,
1515 })
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001516 }
1517
Janis Danisevskise92a5e62020-12-02 12:57:41 -08001518 /// Returns a list of KeyDescriptors in the selected domain/namespace.
1519 /// The key descriptors will have the domain, nspace, and alias field set.
1520 /// Domain must be APP or SELINUX, the caller must make sure of that.
1521 pub fn list(&mut self, domain: Domain, namespace: i64) -> Result<Vec<KeyDescriptor>> {
1522 let mut stmt = self
1523 .conn
1524 .prepare(
1525 "SELECT alias FROM persistent.keyentry
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001526 WHERE domain = ? AND namespace = ? AND alias IS NOT NULL AND state = ?;",
Janis Danisevskise92a5e62020-12-02 12:57:41 -08001527 )
1528 .context("In list: Failed to prepare.")?;
1529
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001530 let mut rows = stmt
1531 .query(params![domain.0 as u32, namespace, KeyLifeCycle::Live])
1532 .context("In list: Failed to query.")?;
Janis Danisevskise92a5e62020-12-02 12:57:41 -08001533
1534 let mut descriptors: Vec<KeyDescriptor> = Vec::new();
1535 db_utils::with_rows_extract_all(&mut rows, |row| {
1536 descriptors.push(KeyDescriptor {
1537 domain,
1538 nspace: namespace,
1539 alias: Some(row.get(0).context("Trying to extract alias.")?),
1540 blob: None,
1541 });
1542 Ok(())
1543 })
1544 .context("In list.")?;
1545 Ok(descriptors)
1546 }
1547
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001548 /// Adds a grant to the grant table.
1549 /// Like `load_key_entry` this function loads the access tuple before
1550 /// it uses the callback for a permission check. Upon success,
1551 /// it inserts the `grantee_uid`, `key_id`, and `access_vector` into the
1552 /// grant table. The new row will have a randomized id, which is used as
1553 /// grant id in the namespace field of the resulting KeyDescriptor.
1554 pub fn grant(
1555 &mut self,
1556 key: KeyDescriptor,
1557 caller_uid: u32,
1558 grantee_uid: u32,
1559 access_vector: KeyPermSet,
1560 check_permission: impl FnOnce(&KeyDescriptor, &KeyPermSet) -> Result<()>,
1561 ) -> Result<KeyDescriptor> {
1562 let tx = self
1563 .conn
1564 .transaction_with_behavior(TransactionBehavior::Immediate)
1565 .context("In grant: Failed to initialize transaction.")?;
1566
1567 // Load the key_id and complete the access control tuple.
1568 // We ignore the access vector here because grants cannot be granted.
1569 // The access vector returned here expresses the permissions the
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001570 // grantee has if key.domain == Domain::GRANT. But this vector
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001571 // cannot include the grant permission by design, so there is no way the
1572 // subsequent permission check can pass.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001573 // We could check key.domain == Domain::GRANT and fail early.
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001574 // But even if we load the access tuple by grant here, the permission
1575 // check denies the attempt to create a grant by grant descriptor.
1576 let (key_id, access_key_descriptor, _) =
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001577 Self::load_access_tuple(&tx, key, KeyType::Client, caller_uid).context("In grant")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001578
1579 // Perform access control. It is vital that we return here if the permission
1580 // was denied. So do not touch that '?' at the end of the line.
1581 // This permission check checks if the caller has the grant permission
1582 // for the given key and in addition to all of the permissions
1583 // expressed in `access_vector`.
1584 check_permission(&access_key_descriptor, &access_vector)
1585 .context("In grant: check_permission failed.")?;
1586
1587 let grant_id = if let Some(grant_id) = tx
1588 .query_row(
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001589 "SELECT id FROM persistent.grant
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001590 WHERE keyentryid = ? AND grantee = ?;",
1591 params![key_id, grantee_uid],
1592 |row| row.get(0),
1593 )
1594 .optional()
1595 .context("In grant: Failed get optional existing grant id.")?
1596 {
1597 tx.execute(
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001598 "UPDATE persistent.grant
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001599 SET access_vector = ?
1600 WHERE id = ?;",
1601 params![i32::from(access_vector), grant_id],
1602 )
1603 .context("In grant: Failed to update existing grant.")?;
1604 grant_id
1605 } else {
Joel Galenson845f74b2020-09-09 14:11:55 -07001606 Self::insert_with_retry(|id| {
1607 tx.execute(
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001608 "INSERT INTO persistent.grant (id, grantee, keyentryid, access_vector)
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001609 VALUES (?, ?, ?, ?);",
Joel Galenson845f74b2020-09-09 14:11:55 -07001610 params![id, grantee_uid, key_id, i32::from(access_vector)],
1611 )
1612 })
1613 .context("In grant")?
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001614 };
1615 tx.commit().context("In grant: failed to commit transaction.")?;
1616
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001617 Ok(KeyDescriptor { domain: Domain::GRANT, nspace: grant_id, alias: None, blob: None })
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001618 }
1619
1620 /// This function checks permissions like `grant` and `load_key_entry`
1621 /// before removing a grant from the grant table.
1622 pub fn ungrant(
1623 &mut self,
1624 key: KeyDescriptor,
1625 caller_uid: u32,
1626 grantee_uid: u32,
1627 check_permission: impl FnOnce(&KeyDescriptor) -> Result<()>,
1628 ) -> Result<()> {
1629 let tx = self
1630 .conn
1631 .transaction_with_behavior(TransactionBehavior::Immediate)
1632 .context("In ungrant: Failed to initialize transaction.")?;
1633
1634 // Load the key_id and complete the access control tuple.
1635 // We ignore the access vector here because grants cannot be granted.
1636 let (key_id, access_key_descriptor, _) =
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001637 Self::load_access_tuple(&tx, key, KeyType::Client, caller_uid)
1638 .context("In ungrant.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001639
1640 // Perform access control. We must return here if the permission
1641 // was denied. So do not touch the '?' at the end of this line.
1642 check_permission(&access_key_descriptor).context("In grant: check_permission failed.")?;
1643
1644 tx.execute(
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001645 "DELETE FROM persistent.grant
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001646 WHERE keyentryid = ? AND grantee = ?;",
1647 params![key_id, grantee_uid],
1648 )
1649 .context("Failed to delete grant.")?;
1650
1651 tx.commit().context("In ungrant: failed to commit transaction.")?;
1652
1653 Ok(())
1654 }
1655
Joel Galenson845f74b2020-09-09 14:11:55 -07001656 // Generates a random id and passes it to the given function, which will
1657 // try to insert it into a database. If that insertion fails, retry;
1658 // otherwise return the id.
1659 fn insert_with_retry(inserter: impl Fn(i64) -> rusqlite::Result<usize>) -> Result<i64> {
1660 loop {
1661 let newid: i64 = random();
1662 match inserter(newid) {
1663 // If the id already existed, try again.
1664 Err(rusqlite::Error::SqliteFailure(
1665 libsqlite3_sys::Error {
1666 code: libsqlite3_sys::ErrorCode::ConstraintViolation,
1667 extended_code: libsqlite3_sys::SQLITE_CONSTRAINT_UNIQUE,
1668 },
1669 _,
1670 )) => (),
1671 Err(e) => {
1672 return Err(e).context("In insert_with_retry: failed to insert into database.")
1673 }
1674 _ => return Ok(newid),
1675 }
1676 }
1677 }
Hasini Gunasinghe557b1032020-11-10 01:35:30 +00001678
1679 /// Insert or replace the auth token based on the UNIQUE constraint of the auth token table
1680 pub fn insert_auth_token(&mut self, auth_token: &HardwareAuthToken) -> Result<()> {
1681 self.conn
1682 .execute(
1683 "INSERT OR REPLACE INTO perboot.authtoken (challenge, user_id, auth_id,
1684 authenticator_type, timestamp, mac, time_received) VALUES(?, ?, ?, ?, ?, ?, ?);",
1685 params![
1686 auth_token.challenge,
1687 auth_token.userId,
1688 auth_token.authenticatorId,
1689 auth_token.authenticatorType.0 as i32,
1690 auth_token.timestamp.milliSeconds as i64,
1691 auth_token.mac,
1692 MonotonicRawTime::now(),
1693 ],
1694 )
1695 .context("In insert_auth_token: failed to insert auth token into the database")?;
1696 Ok(())
1697 }
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001698
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001699 /// Find the newest auth token matching the given predicate.
1700 pub fn find_auth_token_entry<F>(
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001701 &mut self,
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001702 p: F,
1703 ) -> Result<Option<(AuthTokenEntry, MonotonicRawTime)>>
1704 where
1705 F: Fn(&AuthTokenEntry) -> bool,
1706 {
1707 self.with_transaction(TransactionBehavior::Deferred, |tx| {
1708 let mut stmt = tx
1709 .prepare("SELECT * from perboot.authtoken ORDER BY time_received DESC;")
1710 .context("Prepare statement failed.")?;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001711
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001712 let mut rows = stmt.query(NO_PARAMS).context("Failed to query.")?;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001713
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001714 while let Some(row) = rows.next().context("Failed to get next row.")? {
1715 let entry = AuthTokenEntry::new(
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001716 HardwareAuthToken {
1717 challenge: row.get(1)?,
1718 userId: row.get(2)?,
1719 authenticatorId: row.get(3)?,
1720 authenticatorType: HardwareAuthenticatorType(row.get(4)?),
1721 timestamp: Timestamp { milliSeconds: row.get(5)? },
1722 mac: row.get(6)?,
1723 },
1724 row.get(7)?,
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001725 );
1726 if p(&entry) {
1727 return Ok(Some((
1728 entry,
1729 Self::get_last_off_body(tx)
1730 .context("In find_auth_token_entry: Trying to get last off body")?,
1731 )));
1732 }
1733 }
1734 Ok(None)
1735 })
1736 .context("In find_auth_token_entry.")
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001737 }
1738
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001739 /// Insert last_off_body into the metadata table at the initialization of auth token table
1740 pub fn insert_last_off_body(&self, last_off_body: MonotonicRawTime) -> Result<()> {
1741 self.conn
1742 .execute(
1743 "INSERT OR REPLACE INTO perboot.metadata (key, value) VALUES (?, ?);",
1744 params!["last_off_body", last_off_body],
1745 )
1746 .context("In insert_last_off_body: failed to insert.")?;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001747 Ok(())
1748 }
1749
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001750 /// Update last_off_body when on_device_off_body is called
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001751 pub fn update_last_off_body(&self, last_off_body: MonotonicRawTime) -> Result<()> {
1752 self.conn
1753 .execute(
1754 "UPDATE perboot.metadata SET value = ? WHERE key = ?;",
1755 params![last_off_body, "last_off_body"],
1756 )
1757 .context("In update_last_off_body: failed to update.")?;
1758 Ok(())
1759 }
1760
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001761 /// Get last_off_body time when finding auth tokens
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001762 fn get_last_off_body(tx: &Transaction) -> Result<MonotonicRawTime> {
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001763 tx.query_row(
1764 "SELECT value from perboot.metadata WHERE key = ?;",
1765 params!["last_off_body"],
1766 |row| Ok(row.get(0)?),
1767 )
1768 .context("In get_last_off_body: query_row failed.")
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001769 }
Joel Galenson26f4d012020-07-17 14:57:21 -07001770}
1771
1772#[cfg(test)]
1773mod tests {
1774
1775 use super::*;
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001776 use crate::key_parameter::{
1777 Algorithm, BlockMode, Digest, EcCurve, HardwareAuthenticatorType, KeyOrigin, KeyParameter,
1778 KeyParameterValue, KeyPurpose, PaddingMode, SecurityLevel,
1779 };
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001780 use crate::key_perm_set;
1781 use crate::permission::{KeyPerm, KeyPermSet};
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001782 use crate::test::utils::TempDir;
Hasini Gunasinghe557b1032020-11-10 01:35:30 +00001783 use android_hardware_security_keymint::aidl::android::hardware::security::keymint::{
1784 HardwareAuthToken::HardwareAuthToken,
1785 HardwareAuthenticatorType::HardwareAuthenticatorType as kmhw_authenticator_type,
Janis Danisevskisc3a496b2021-01-05 10:37:22 -08001786 };
1787 use android_hardware_security_secureclock::aidl::android::hardware::security::secureclock::{
Hasini Gunasinghe557b1032020-11-10 01:35:30 +00001788 Timestamp::Timestamp,
1789 };
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001790 use rusqlite::NO_PARAMS;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001791 use rusqlite::{Error, TransactionBehavior};
Joel Galenson0891bc12020-07-20 10:37:03 -07001792 use std::cell::RefCell;
Janis Danisevskisaec14592020-11-12 09:41:49 -08001793 use std::sync::atomic::{AtomicU8, Ordering};
1794 use std::sync::Arc;
1795 use std::thread;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001796 use std::time::{Duration, SystemTime};
Joel Galenson0891bc12020-07-20 10:37:03 -07001797
Janis Danisevskis4df44f42020-08-26 14:40:03 -07001798 fn new_test_db() -> Result<KeystoreDB> {
1799 let conn = KeystoreDB::make_connection("file::memory:", "file::memory:")?;
1800
1801 KeystoreDB::init_tables(&conn).context("Failed to initialize tables.")?;
1802 Ok(KeystoreDB { conn })
1803 }
1804
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001805 fn rebind_alias(
1806 db: &mut KeystoreDB,
1807 newid: &KeyIdGuard,
1808 alias: &str,
1809 domain: Domain,
1810 namespace: i64,
1811 ) -> Result<bool> {
1812 db.with_transaction(TransactionBehavior::Immediate, |tx| {
1813 KeystoreDB::rebind_alias(tx, newid, alias, domain, namespace)
1814 })
1815 .context("In rebind_alias.")
1816 }
1817
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001818 #[test]
1819 fn datetime() -> Result<()> {
1820 let conn = Connection::open_in_memory()?;
1821 conn.execute("CREATE TABLE test (ts DATETIME);", NO_PARAMS)?;
1822 let now = SystemTime::now();
1823 let duration = Duration::from_secs(1000);
1824 let then = now.checked_sub(duration).unwrap();
1825 let soon = now.checked_add(duration).unwrap();
1826 conn.execute(
1827 "INSERT INTO test (ts) VALUES (?), (?), (?);",
1828 params![DateTime::try_from(now)?, DateTime::try_from(then)?, DateTime::try_from(soon)?],
1829 )?;
1830 let mut stmt = conn.prepare("SELECT ts FROM test ORDER BY ts ASC;")?;
1831 let mut rows = stmt.query(NO_PARAMS)?;
1832 assert_eq!(DateTime::try_from(then)?, rows.next()?.unwrap().get(0)?);
1833 assert_eq!(DateTime::try_from(now)?, rows.next()?.unwrap().get(0)?);
1834 assert_eq!(DateTime::try_from(soon)?, rows.next()?.unwrap().get(0)?);
1835 assert!(rows.next()?.is_none());
1836 assert!(DateTime::try_from(then)? < DateTime::try_from(now)?);
1837 assert!(DateTime::try_from(then)? < DateTime::try_from(soon)?);
1838 assert!(DateTime::try_from(now)? < DateTime::try_from(soon)?);
1839 Ok(())
1840 }
1841
Joel Galenson0891bc12020-07-20 10:37:03 -07001842 // Ensure that we're using the "injected" random function, not the real one.
1843 #[test]
1844 fn test_mocked_random() {
1845 let rand1 = random();
1846 let rand2 = random();
1847 let rand3 = random();
1848 if rand1 == rand2 {
1849 assert_eq!(rand2 + 1, rand3);
1850 } else {
1851 assert_eq!(rand1 + 1, rand2);
1852 assert_eq!(rand2, rand3);
1853 }
1854 }
Joel Galenson26f4d012020-07-17 14:57:21 -07001855
Joel Galenson26f4d012020-07-17 14:57:21 -07001856 // Test that we have the correct tables.
1857 #[test]
1858 fn test_tables() -> Result<()> {
Janis Danisevskis4df44f42020-08-26 14:40:03 -07001859 let db = new_test_db()?;
Joel Galenson26f4d012020-07-17 14:57:21 -07001860 let tables = db
1861 .conn
Joel Galenson2aab4432020-07-22 15:27:57 -07001862 .prepare("SELECT name from persistent.sqlite_master WHERE type='table' ORDER BY name;")?
Joel Galenson26f4d012020-07-17 14:57:21 -07001863 .query_map(params![], |row| row.get(0))?
1864 .collect::<rusqlite::Result<Vec<String>>>()?;
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001865 assert_eq!(tables.len(), 5);
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001866 assert_eq!(tables[0], "blobentry");
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001867 assert_eq!(tables[1], "grant");
1868 assert_eq!(tables[2], "keyentry");
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001869 assert_eq!(tables[3], "keymetadata");
1870 assert_eq!(tables[4], "keyparameter");
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001871 let tables = db
1872 .conn
1873 .prepare("SELECT name from perboot.sqlite_master WHERE type='table' ORDER BY name;")?
1874 .query_map(params![], |row| row.get(0))?
1875 .collect::<rusqlite::Result<Vec<String>>>()?;
Hasini Gunasinghe557b1032020-11-10 01:35:30 +00001876
1877 assert_eq!(tables.len(), 2);
1878 assert_eq!(tables[0], "authtoken");
1879 assert_eq!(tables[1], "metadata");
Joel Galenson2aab4432020-07-22 15:27:57 -07001880 Ok(())
1881 }
1882
1883 #[test]
Hasini Gunasinghe557b1032020-11-10 01:35:30 +00001884 fn test_auth_token_table_invariant() -> Result<()> {
1885 let mut db = new_test_db()?;
1886 let auth_token1 = HardwareAuthToken {
1887 challenge: i64::MAX,
1888 userId: 200,
1889 authenticatorId: 200,
1890 authenticatorType: kmhw_authenticator_type(kmhw_authenticator_type::PASSWORD.0),
1891 timestamp: Timestamp { milliSeconds: 500 },
1892 mac: String::from("mac").into_bytes(),
1893 };
1894 db.insert_auth_token(&auth_token1)?;
1895 let auth_tokens_returned = get_auth_tokens(&mut db)?;
1896 assert_eq!(auth_tokens_returned.len(), 1);
1897
1898 // insert another auth token with the same values for the columns in the UNIQUE constraint
1899 // of the auth token table and different value for timestamp
1900 let auth_token2 = HardwareAuthToken {
1901 challenge: i64::MAX,
1902 userId: 200,
1903 authenticatorId: 200,
1904 authenticatorType: kmhw_authenticator_type(kmhw_authenticator_type::PASSWORD.0),
1905 timestamp: Timestamp { milliSeconds: 600 },
1906 mac: String::from("mac").into_bytes(),
1907 };
1908
1909 db.insert_auth_token(&auth_token2)?;
1910 let mut auth_tokens_returned = get_auth_tokens(&mut db)?;
1911 assert_eq!(auth_tokens_returned.len(), 1);
1912
1913 if let Some(auth_token) = auth_tokens_returned.pop() {
1914 assert_eq!(auth_token.auth_token.timestamp.milliSeconds, 600);
1915 }
1916
1917 // insert another auth token with the different values for the columns in the UNIQUE
1918 // constraint of the auth token table
1919 let auth_token3 = HardwareAuthToken {
1920 challenge: i64::MAX,
1921 userId: 201,
1922 authenticatorId: 200,
1923 authenticatorType: kmhw_authenticator_type(kmhw_authenticator_type::PASSWORD.0),
1924 timestamp: Timestamp { milliSeconds: 600 },
1925 mac: String::from("mac").into_bytes(),
1926 };
1927
1928 db.insert_auth_token(&auth_token3)?;
1929 let auth_tokens_returned = get_auth_tokens(&mut db)?;
1930 assert_eq!(auth_tokens_returned.len(), 2);
1931
1932 Ok(())
1933 }
1934
1935 // utility function for test_auth_token_table_invariant()
1936 fn get_auth_tokens(db: &mut KeystoreDB) -> Result<Vec<AuthTokenEntry>> {
1937 let mut stmt = db.conn.prepare("SELECT * from perboot.authtoken;")?;
1938
1939 let auth_token_entries: Vec<AuthTokenEntry> = stmt
1940 .query_map(NO_PARAMS, |row| {
1941 Ok(AuthTokenEntry::new(
1942 HardwareAuthToken {
1943 challenge: row.get(1)?,
1944 userId: row.get(2)?,
1945 authenticatorId: row.get(3)?,
1946 authenticatorType: HardwareAuthenticatorType(row.get(4)?),
1947 timestamp: Timestamp { milliSeconds: row.get(5)? },
1948 mac: row.get(6)?,
1949 },
1950 row.get(7)?,
1951 ))
1952 })?
1953 .collect::<Result<Vec<AuthTokenEntry>, Error>>()?;
1954 Ok(auth_token_entries)
1955 }
1956
1957 #[test]
Joel Galenson2aab4432020-07-22 15:27:57 -07001958 fn test_persistence_for_files() -> Result<()> {
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001959 let temp_dir = TempDir::new("persistent_db_test")?;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001960 let mut db = KeystoreDB::new(temp_dir.path())?;
Joel Galenson2aab4432020-07-22 15:27:57 -07001961
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001962 db.create_key_entry(Domain::APP, 100)?;
Joel Galenson2aab4432020-07-22 15:27:57 -07001963 let entries = get_keyentry(&db)?;
1964 assert_eq!(entries.len(), 1);
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001965
1966 let db = KeystoreDB::new(temp_dir.path())?;
Joel Galenson2aab4432020-07-22 15:27:57 -07001967
1968 let entries_new = get_keyentry(&db)?;
1969 assert_eq!(entries, entries_new);
1970 Ok(())
1971 }
1972
1973 #[test]
Joel Galenson0891bc12020-07-20 10:37:03 -07001974 fn test_create_key_entry() -> Result<()> {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001975 fn extractor(ke: &KeyEntryRow) -> (Domain, i64, Option<&str>) {
Joel Galenson0891bc12020-07-20 10:37:03 -07001976 (ke.domain.unwrap(), ke.namespace.unwrap(), ke.alias.as_deref())
1977 }
1978
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001979 let mut db = new_test_db()?;
Joel Galenson0891bc12020-07-20 10:37:03 -07001980
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001981 db.create_key_entry(Domain::APP, 100)?;
1982 db.create_key_entry(Domain::SELINUX, 101)?;
Joel Galenson0891bc12020-07-20 10:37:03 -07001983
1984 let entries = get_keyentry(&db)?;
1985 assert_eq!(entries.len(), 2);
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001986 assert_eq!(extractor(&entries[0]), (Domain::APP, 100, None));
1987 assert_eq!(extractor(&entries[1]), (Domain::SELINUX, 101, None));
Joel Galenson0891bc12020-07-20 10:37:03 -07001988
1989 // Test that we must pass in a valid Domain.
1990 check_result_is_error_containing_string(
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001991 db.create_key_entry(Domain::GRANT, 102),
1992 "Domain Domain(1) must be either App or SELinux.",
Joel Galenson0891bc12020-07-20 10:37:03 -07001993 );
1994 check_result_is_error_containing_string(
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001995 db.create_key_entry(Domain::BLOB, 103),
1996 "Domain Domain(3) must be either App or SELinux.",
Joel Galenson0891bc12020-07-20 10:37:03 -07001997 );
1998 check_result_is_error_containing_string(
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001999 db.create_key_entry(Domain::KEY_ID, 104),
2000 "Domain Domain(4) must be either App or SELinux.",
Joel Galenson0891bc12020-07-20 10:37:03 -07002001 );
2002
2003 Ok(())
2004 }
2005
Joel Galenson33c04ad2020-08-03 11:04:38 -07002006 #[test]
2007 fn test_rebind_alias() -> Result<()> {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002008 fn extractor(ke: &KeyEntryRow) -> (Option<Domain>, Option<i64>, Option<&str>) {
Joel Galenson33c04ad2020-08-03 11:04:38 -07002009 (ke.domain, ke.namespace, ke.alias.as_deref())
2010 }
2011
Janis Danisevskis4df44f42020-08-26 14:40:03 -07002012 let mut db = new_test_db()?;
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002013 db.create_key_entry(Domain::APP, 42)?;
2014 db.create_key_entry(Domain::APP, 42)?;
Joel Galenson33c04ad2020-08-03 11:04:38 -07002015 let entries = get_keyentry(&db)?;
2016 assert_eq!(entries.len(), 2);
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002017 assert_eq!(extractor(&entries[0]), (Some(Domain::APP), Some(42), None));
2018 assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), None));
Joel Galenson33c04ad2020-08-03 11:04:38 -07002019
2020 // Test that the first call to rebind_alias sets the alias.
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002021 rebind_alias(&mut db, &KEY_ID_LOCK.get(entries[0].id), "foo", Domain::APP, 42)?;
Joel Galenson33c04ad2020-08-03 11:04:38 -07002022 let entries = get_keyentry(&db)?;
2023 assert_eq!(entries.len(), 2);
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002024 assert_eq!(extractor(&entries[0]), (Some(Domain::APP), Some(42), Some("foo")));
2025 assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), None));
Joel Galenson33c04ad2020-08-03 11:04:38 -07002026
2027 // Test that the second call to rebind_alias also empties the old one.
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002028 rebind_alias(&mut db, &KEY_ID_LOCK.get(entries[1].id), "foo", Domain::APP, 42)?;
Joel Galenson33c04ad2020-08-03 11:04:38 -07002029 let entries = get_keyentry(&db)?;
2030 assert_eq!(entries.len(), 2);
Joel Galenson7fa5c412020-11-19 10:56:54 -08002031 assert_eq!(extractor(&entries[0]), (None, None, None));
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002032 assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), Some("foo")));
Joel Galenson33c04ad2020-08-03 11:04:38 -07002033
2034 // Test that we must pass in a valid Domain.
2035 check_result_is_error_containing_string(
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002036 rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::GRANT, 42),
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002037 "Domain Domain(1) must be either App or SELinux.",
Joel Galenson33c04ad2020-08-03 11:04:38 -07002038 );
2039 check_result_is_error_containing_string(
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002040 rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::BLOB, 42),
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002041 "Domain Domain(3) must be either App or SELinux.",
Joel Galenson33c04ad2020-08-03 11:04:38 -07002042 );
2043 check_result_is_error_containing_string(
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002044 rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::KEY_ID, 42),
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002045 "Domain Domain(4) must be either App or SELinux.",
Joel Galenson33c04ad2020-08-03 11:04:38 -07002046 );
2047
2048 // Test that we correctly handle setting an alias for something that does not exist.
2049 check_result_is_error_containing_string(
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002050 rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::SELINUX, 42),
Joel Galenson33c04ad2020-08-03 11:04:38 -07002051 "Expected to update a single entry but instead updated 0",
2052 );
2053 // Test that we correctly abort the transaction in this case.
2054 let entries = get_keyentry(&db)?;
2055 assert_eq!(entries.len(), 2);
Joel Galenson7fa5c412020-11-19 10:56:54 -08002056 assert_eq!(extractor(&entries[0]), (None, None, None));
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002057 assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), Some("foo")));
Joel Galenson33c04ad2020-08-03 11:04:38 -07002058
2059 Ok(())
2060 }
2061
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002062 #[test]
2063 fn test_grant_ungrant() -> Result<()> {
2064 const CALLER_UID: u32 = 15;
2065 const GRANTEE_UID: u32 = 12;
2066 const SELINUX_NAMESPACE: i64 = 7;
2067
2068 let mut db = new_test_db()?;
2069 db.conn.execute(
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002070 "INSERT INTO persistent.keyentry (id, key_type, domain, namespace, alias, state)
2071 VALUES (1, 0, 0, 15, 'key', 1), (2, 0, 2, 7, 'yek', 1);",
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002072 NO_PARAMS,
2073 )?;
2074 let app_key = KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002075 domain: super::Domain::APP,
2076 nspace: 0,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002077 alias: Some("key".to_string()),
2078 blob: None,
2079 };
2080 const PVEC1: KeyPermSet = key_perm_set![KeyPerm::use_(), KeyPerm::get_info()];
2081 const PVEC2: KeyPermSet = key_perm_set![KeyPerm::use_()];
2082
2083 // Reset totally predictable random number generator in case we
2084 // are not the first test running on this thread.
2085 reset_random();
2086 let next_random = 0i64;
2087
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002088 let app_granted_key = db
2089 .grant(app_key.clone(), CALLER_UID, GRANTEE_UID, PVEC1, |k, a| {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002090 assert_eq!(*a, PVEC1);
2091 assert_eq!(
2092 *k,
2093 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002094 domain: super::Domain::APP,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002095 // namespace must be set to the caller_uid.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002096 nspace: CALLER_UID as i64,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002097 alias: Some("key".to_string()),
2098 blob: None,
2099 }
2100 );
2101 Ok(())
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002102 })
2103 .unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002104
2105 assert_eq!(
2106 app_granted_key,
2107 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002108 domain: super::Domain::GRANT,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002109 // The grantid is next_random due to the mock random number generator.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002110 nspace: next_random,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002111 alias: None,
2112 blob: None,
2113 }
2114 );
2115
2116 let selinux_key = KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002117 domain: super::Domain::SELINUX,
2118 nspace: SELINUX_NAMESPACE,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002119 alias: Some("yek".to_string()),
2120 blob: None,
2121 };
2122
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002123 let selinux_granted_key = db
2124 .grant(selinux_key.clone(), CALLER_UID, 12, PVEC1, |k, a| {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002125 assert_eq!(*a, PVEC1);
2126 assert_eq!(
2127 *k,
2128 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002129 domain: super::Domain::SELINUX,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002130 // namespace must be the supplied SELinux
2131 // namespace.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002132 nspace: SELINUX_NAMESPACE,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002133 alias: Some("yek".to_string()),
2134 blob: None,
2135 }
2136 );
2137 Ok(())
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002138 })
2139 .unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002140
2141 assert_eq!(
2142 selinux_granted_key,
2143 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002144 domain: super::Domain::GRANT,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002145 // The grantid is next_random + 1 due to the mock random number generator.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002146 nspace: next_random + 1,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002147 alias: None,
2148 blob: None,
2149 }
2150 );
2151
2152 // This should update the existing grant with PVEC2.
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002153 let selinux_granted_key = db
2154 .grant(selinux_key.clone(), CALLER_UID, 12, PVEC2, |k, a| {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002155 assert_eq!(*a, PVEC2);
2156 assert_eq!(
2157 *k,
2158 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002159 domain: super::Domain::SELINUX,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002160 // namespace must be the supplied SELinux
2161 // namespace.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002162 nspace: SELINUX_NAMESPACE,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002163 alias: Some("yek".to_string()),
2164 blob: None,
2165 }
2166 );
2167 Ok(())
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002168 })
2169 .unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002170
2171 assert_eq!(
2172 selinux_granted_key,
2173 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002174 domain: super::Domain::GRANT,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002175 // Same grant id as before. The entry was only updated.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002176 nspace: next_random + 1,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002177 alias: None,
2178 blob: None,
2179 }
2180 );
2181
2182 {
2183 // Limiting scope of stmt, because it borrows db.
2184 let mut stmt = db
2185 .conn
Janis Danisevskisbf15d732020-12-08 10:35:26 -08002186 .prepare("SELECT id, grantee, keyentryid, access_vector FROM persistent.grant;")?;
Janis Danisevskisee10b5f2020-09-22 16:42:35 -07002187 let mut rows =
2188 stmt.query_map::<(i64, u32, i64, KeyPermSet), _, _>(NO_PARAMS, |row| {
2189 Ok((
2190 row.get(0)?,
2191 row.get(1)?,
2192 row.get(2)?,
2193 KeyPermSet::from(row.get::<_, i32>(3)?),
2194 ))
2195 })?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002196
2197 let r = rows.next().unwrap().unwrap();
Janis Danisevskisee10b5f2020-09-22 16:42:35 -07002198 assert_eq!(r, (next_random, GRANTEE_UID, 1, PVEC1));
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002199 let r = rows.next().unwrap().unwrap();
Janis Danisevskisee10b5f2020-09-22 16:42:35 -07002200 assert_eq!(r, (next_random + 1, GRANTEE_UID, 2, PVEC2));
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002201 assert!(rows.next().is_none());
2202 }
2203
2204 debug_dump_keyentry_table(&mut db)?;
2205 println!("app_key {:?}", app_key);
2206 println!("selinux_key {:?}", selinux_key);
2207
2208 db.ungrant(app_key, CALLER_UID, GRANTEE_UID, |_| Ok(()))?;
2209 db.ungrant(selinux_key, CALLER_UID, GRANTEE_UID, |_| Ok(()))?;
2210
2211 Ok(())
2212 }
2213
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002214 static TEST_KEY_BLOB: &[u8] = b"my test blob";
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002215 static TEST_CERT_BLOB: &[u8] = b"my test cert";
2216 static TEST_CERT_CHAIN_BLOB: &[u8] = b"my test cert_chain";
2217
2218 #[test]
2219 fn test_insert_blob() -> Result<()> {
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002220 let key_id = KEY_ID_LOCK.get(3000);
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002221 let mut db = new_test_db()?;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002222 db.insert_blob(&key_id, SubComponentType::KEY_BLOB, TEST_KEY_BLOB)?;
2223 db.insert_blob(&key_id, SubComponentType::CERT, TEST_CERT_BLOB)?;
2224 db.insert_blob(&key_id, SubComponentType::CERT_CHAIN, TEST_CERT_CHAIN_BLOB)?;
2225 drop(key_id);
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002226
2227 let mut stmt = db.conn.prepare(
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002228 "SELECT subcomponent_type, keyentryid, blob FROM persistent.blobentry
2229 ORDER BY subcomponent_type ASC;",
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002230 )?;
2231 let mut rows = stmt
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002232 .query_map::<(SubComponentType, i64, Vec<u8>), _, _>(NO_PARAMS, |row| {
2233 Ok((row.get(0)?, row.get(1)?, row.get(2)?))
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002234 })?;
2235 let r = rows.next().unwrap().unwrap();
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002236 assert_eq!(r, (SubComponentType::KEY_BLOB, 3000, TEST_KEY_BLOB.to_vec()));
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002237 let r = rows.next().unwrap().unwrap();
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002238 assert_eq!(r, (SubComponentType::CERT, 3000, TEST_CERT_BLOB.to_vec()));
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002239 let r = rows.next().unwrap().unwrap();
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002240 assert_eq!(r, (SubComponentType::CERT_CHAIN, 3000, TEST_CERT_CHAIN_BLOB.to_vec()));
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002241
2242 Ok(())
2243 }
2244
2245 static TEST_ALIAS: &str = "my super duper key";
2246
2247 #[test]
2248 fn test_insert_and_load_full_keyentry_domain_app() -> Result<()> {
2249 let mut db = new_test_db()?;
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002250 let key_id = make_test_key_entry(&mut db, Domain::APP, 1, TEST_ALIAS)
Janis Danisevskisaec14592020-11-12 09:41:49 -08002251 .context("test_insert_and_load_full_keyentry_domain_app")?
2252 .0;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002253 let (_key_guard, key_entry) = db
2254 .load_key_entry(
2255 KeyDescriptor {
2256 domain: Domain::APP,
2257 nspace: 0,
2258 alias: Some(TEST_ALIAS.to_string()),
2259 blob: None,
2260 },
2261 KeyType::Client,
2262 KeyEntryLoadBits::BOTH,
2263 1,
2264 |_k, _av| Ok(()),
2265 )
2266 .unwrap();
2267 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id));
2268
2269 db.unbind_key(
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002270 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002271 domain: Domain::APP,
2272 nspace: 0,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002273 alias: Some(TEST_ALIAS.to_string()),
2274 blob: None,
2275 },
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002276 KeyType::Client,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002277 1,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002278 |_, _| Ok(()),
2279 )
2280 .unwrap();
2281
2282 assert_eq!(
2283 Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)),
2284 db.load_key_entry(
2285 KeyDescriptor {
2286 domain: Domain::APP,
2287 nspace: 0,
2288 alias: Some(TEST_ALIAS.to_string()),
2289 blob: None,
2290 },
2291 KeyType::Client,
2292 KeyEntryLoadBits::NONE,
2293 1,
2294 |_k, _av| Ok(()),
2295 )
2296 .unwrap_err()
2297 .root_cause()
2298 .downcast_ref::<KsError>()
2299 );
2300
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002301 Ok(())
2302 }
2303
2304 #[test]
2305 fn test_insert_and_load_full_keyentry_domain_selinux() -> Result<()> {
2306 let mut db = new_test_db()?;
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002307 let key_id = make_test_key_entry(&mut db, Domain::SELINUX, 1, TEST_ALIAS)
Janis Danisevskisaec14592020-11-12 09:41:49 -08002308 .context("test_insert_and_load_full_keyentry_domain_selinux")?
2309 .0;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002310 let (_key_guard, key_entry) = db
2311 .load_key_entry(
2312 KeyDescriptor {
2313 domain: Domain::SELINUX,
2314 nspace: 1,
2315 alias: Some(TEST_ALIAS.to_string()),
2316 blob: None,
2317 },
2318 KeyType::Client,
2319 KeyEntryLoadBits::BOTH,
2320 1,
2321 |_k, _av| Ok(()),
2322 )
2323 .unwrap();
2324 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id));
2325
2326 db.unbind_key(
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002327 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002328 domain: Domain::SELINUX,
2329 nspace: 1,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002330 alias: Some(TEST_ALIAS.to_string()),
2331 blob: None,
2332 },
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002333 KeyType::Client,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002334 1,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002335 |_, _| Ok(()),
2336 )
2337 .unwrap();
2338
2339 assert_eq!(
2340 Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)),
2341 db.load_key_entry(
2342 KeyDescriptor {
2343 domain: Domain::SELINUX,
2344 nspace: 1,
2345 alias: Some(TEST_ALIAS.to_string()),
2346 blob: None,
2347 },
2348 KeyType::Client,
2349 KeyEntryLoadBits::NONE,
2350 1,
2351 |_k, _av| Ok(()),
2352 )
2353 .unwrap_err()
2354 .root_cause()
2355 .downcast_ref::<KsError>()
2356 );
2357
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002358 Ok(())
2359 }
2360
2361 #[test]
2362 fn test_insert_and_load_full_keyentry_domain_key_id() -> Result<()> {
2363 let mut db = new_test_db()?;
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002364 let key_id = make_test_key_entry(&mut db, Domain::SELINUX, 1, TEST_ALIAS)
Janis Danisevskisaec14592020-11-12 09:41:49 -08002365 .context("test_insert_and_load_full_keyentry_domain_key_id")?
2366 .0;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002367 let (_, key_entry) = db
2368 .load_key_entry(
2369 KeyDescriptor { domain: Domain::KEY_ID, nspace: key_id, alias: None, blob: None },
2370 KeyType::Client,
2371 KeyEntryLoadBits::BOTH,
2372 1,
2373 |_k, _av| Ok(()),
2374 )
2375 .unwrap();
2376
2377 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id));
2378
2379 db.unbind_key(
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002380 KeyDescriptor { domain: Domain::KEY_ID, nspace: key_id, alias: None, blob: None },
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002381 KeyType::Client,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002382 1,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002383 |_, _| Ok(()),
2384 )
2385 .unwrap();
2386
2387 assert_eq!(
2388 Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)),
2389 db.load_key_entry(
2390 KeyDescriptor { domain: Domain::KEY_ID, nspace: key_id, alias: None, blob: None },
2391 KeyType::Client,
2392 KeyEntryLoadBits::NONE,
2393 1,
2394 |_k, _av| Ok(()),
2395 )
2396 .unwrap_err()
2397 .root_cause()
2398 .downcast_ref::<KsError>()
2399 );
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002400
2401 Ok(())
2402 }
2403
2404 #[test]
2405 fn test_insert_and_load_full_keyentry_from_grant() -> Result<()> {
2406 let mut db = new_test_db()?;
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002407 let key_id = make_test_key_entry(&mut db, Domain::APP, 1, TEST_ALIAS)
Janis Danisevskisaec14592020-11-12 09:41:49 -08002408 .context("test_insert_and_load_full_keyentry_from_grant")?
2409 .0;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002410
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002411 let granted_key = db
2412 .grant(
2413 KeyDescriptor {
2414 domain: Domain::APP,
2415 nspace: 0,
2416 alias: Some(TEST_ALIAS.to_string()),
2417 blob: None,
2418 },
2419 1,
2420 2,
2421 key_perm_set![KeyPerm::use_()],
2422 |_k, _av| Ok(()),
2423 )
2424 .unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002425
2426 debug_dump_grant_table(&mut db)?;
2427
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002428 let (_key_guard, key_entry) = db
2429 .load_key_entry(
2430 granted_key.clone(),
2431 KeyType::Client,
2432 KeyEntryLoadBits::BOTH,
2433 2,
2434 |k, av| {
2435 assert_eq!(Domain::GRANT, k.domain);
2436 assert!(av.unwrap().includes(KeyPerm::use_()));
2437 Ok(())
2438 },
2439 )
2440 .unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002441
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002442 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id));
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002443
2444 db.unbind_key(granted_key.clone(), KeyType::Client, 2, |_, _| Ok(())).unwrap();
2445
2446 assert_eq!(
2447 Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)),
2448 db.load_key_entry(
2449 granted_key,
2450 KeyType::Client,
2451 KeyEntryLoadBits::NONE,
2452 2,
2453 |_k, _av| Ok(()),
2454 )
2455 .unwrap_err()
2456 .root_cause()
2457 .downcast_ref::<KsError>()
2458 );
2459
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002460 Ok(())
2461 }
2462
Janis Danisevskis45760022021-01-19 16:34:10 -08002463 // This test attempts to load a key by key id while the caller is not the owner
2464 // but a grant exists for the given key and the caller.
2465 #[test]
2466 fn test_insert_and_load_full_keyentry_from_grant_by_key_id() -> Result<()> {
2467 let mut db = new_test_db()?;
2468 const OWNER_UID: u32 = 1u32;
2469 const GRANTEE_UID: u32 = 2u32;
2470 const SOMEONE_ELSE_UID: u32 = 3u32;
2471 let key_id = make_test_key_entry(&mut db, Domain::APP, OWNER_UID as i64, TEST_ALIAS, None)
2472 .context("test_insert_and_load_full_keyentry_from_grant_by_key_id")?
2473 .0;
2474
2475 db.grant(
2476 KeyDescriptor {
2477 domain: Domain::APP,
2478 nspace: 0,
2479 alias: Some(TEST_ALIAS.to_string()),
2480 blob: None,
2481 },
2482 OWNER_UID,
2483 GRANTEE_UID,
2484 key_perm_set![KeyPerm::use_()],
2485 |_k, _av| Ok(()),
2486 )
2487 .unwrap();
2488
2489 debug_dump_grant_table(&mut db)?;
2490
2491 let id_descriptor =
2492 KeyDescriptor { domain: Domain::KEY_ID, nspace: key_id, ..Default::default() };
2493
2494 let (_, key_entry) = db
2495 .load_key_entry(
2496 id_descriptor.clone(),
2497 KeyType::Client,
2498 KeyEntryLoadBits::BOTH,
2499 GRANTEE_UID,
2500 |k, av| {
2501 assert_eq!(Domain::APP, k.domain);
2502 assert_eq!(OWNER_UID as i64, k.nspace);
2503 assert!(av.unwrap().includes(KeyPerm::use_()));
2504 Ok(())
2505 },
2506 )
2507 .unwrap();
2508
2509 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id, None));
2510
2511 let (_, key_entry) = db
2512 .load_key_entry(
2513 id_descriptor.clone(),
2514 KeyType::Client,
2515 KeyEntryLoadBits::BOTH,
2516 SOMEONE_ELSE_UID,
2517 |k, av| {
2518 assert_eq!(Domain::APP, k.domain);
2519 assert_eq!(OWNER_UID as i64, k.nspace);
2520 assert!(av.is_none());
2521 Ok(())
2522 },
2523 )
2524 .unwrap();
2525
2526 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id, None));
2527
2528 db.unbind_key(id_descriptor.clone(), KeyType::Client, OWNER_UID, |_, _| Ok(())).unwrap();
2529
2530 assert_eq!(
2531 Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)),
2532 db.load_key_entry(
2533 id_descriptor,
2534 KeyType::Client,
2535 KeyEntryLoadBits::NONE,
2536 GRANTEE_UID,
2537 |_k, _av| Ok(()),
2538 )
2539 .unwrap_err()
2540 .root_cause()
2541 .downcast_ref::<KsError>()
2542 );
2543
2544 Ok(())
2545 }
2546
Janis Danisevskisaec14592020-11-12 09:41:49 -08002547 static KEY_LOCK_TEST_ALIAS: &str = "my super duper locked key";
2548
Janis Danisevskisaec14592020-11-12 09:41:49 -08002549 #[test]
2550 fn test_insert_and_load_full_keyentry_domain_app_concurrently() -> Result<()> {
2551 let handle = {
Janis Danisevskisbf15d732020-12-08 10:35:26 -08002552 let temp_dir = Arc::new(TempDir::new("id_lock_test")?);
2553 let temp_dir_clone = temp_dir.clone();
2554 let mut db = KeystoreDB::new(temp_dir.path())?;
Janis Danisevskisaec14592020-11-12 09:41:49 -08002555 let key_id = make_test_key_entry(&mut db, Domain::APP, 33, KEY_LOCK_TEST_ALIAS)
2556 .context("test_insert_and_load_full_keyentry_domain_app")?
2557 .0;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002558 let (_key_guard, key_entry) = db
2559 .load_key_entry(
2560 KeyDescriptor {
2561 domain: Domain::APP,
2562 nspace: 0,
2563 alias: Some(KEY_LOCK_TEST_ALIAS.to_string()),
2564 blob: None,
2565 },
2566 KeyType::Client,
2567 KeyEntryLoadBits::BOTH,
2568 33,
2569 |_k, _av| Ok(()),
2570 )
2571 .unwrap();
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002572 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id));
Janis Danisevskisaec14592020-11-12 09:41:49 -08002573 let state = Arc::new(AtomicU8::new(1));
2574 let state2 = state.clone();
2575
2576 // Spawning a second thread that attempts to acquire the key id lock
2577 // for the same key as the primary thread. The primary thread then
2578 // waits, thereby forcing the secondary thread into the second stage
2579 // of acquiring the lock (see KEY ID LOCK 2/2 above).
2580 // The test succeeds if the secondary thread observes the transition
2581 // of `state` from 1 to 2, despite having a whole second to overtake
2582 // the primary thread.
2583 let handle = thread::spawn(move || {
Janis Danisevskisbf15d732020-12-08 10:35:26 -08002584 let temp_dir = temp_dir_clone;
2585 let mut db = KeystoreDB::new(temp_dir.path()).unwrap();
Janis Danisevskisaec14592020-11-12 09:41:49 -08002586 assert!(db
2587 .load_key_entry(
2588 KeyDescriptor {
2589 domain: Domain::APP,
2590 nspace: 0,
2591 alias: Some(KEY_LOCK_TEST_ALIAS.to_string()),
2592 blob: None,
2593 },
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002594 KeyType::Client,
Janis Danisevskisaec14592020-11-12 09:41:49 -08002595 KeyEntryLoadBits::BOTH,
2596 33,
2597 |_k, _av| Ok(()),
2598 )
2599 .is_ok());
2600 // We should only see a 2 here because we can only return
2601 // from load_key_entry when the `_key_guard` expires,
2602 // which happens at the end of the scope.
2603 assert_eq!(2, state2.load(Ordering::Relaxed));
2604 });
2605
2606 thread::sleep(std::time::Duration::from_millis(1000));
2607
2608 assert_eq!(Ok(1), state.compare_exchange(1, 2, Ordering::Relaxed, Ordering::Relaxed));
2609
2610 // Return the handle from this scope so we can join with the
2611 // secondary thread after the key id lock has expired.
2612 handle
2613 // This is where the `_key_guard` goes out of scope,
2614 // which is the reason for concurrent load_key_entry on the same key
2615 // to unblock.
2616 };
2617 // Join with the secondary thread and unwrap, to propagate failing asserts to the
2618 // main test thread. We will not see failing asserts in secondary threads otherwise.
2619 handle.join().unwrap();
2620 Ok(())
2621 }
2622
Janis Danisevskise92a5e62020-12-02 12:57:41 -08002623 #[test]
2624 fn list() -> Result<()> {
2625 let temp_dir = TempDir::new("list_test")?;
2626 let mut db = KeystoreDB::new(temp_dir.path())?;
2627 static LIST_O_ENTRIES: &[(Domain, i64, &str)] = &[
2628 (Domain::APP, 1, "test1"),
2629 (Domain::APP, 1, "test2"),
2630 (Domain::APP, 1, "test3"),
2631 (Domain::APP, 1, "test4"),
2632 (Domain::APP, 1, "test5"),
2633 (Domain::APP, 1, "test6"),
2634 (Domain::APP, 1, "test7"),
2635 (Domain::APP, 2, "test1"),
2636 (Domain::APP, 2, "test2"),
2637 (Domain::APP, 2, "test3"),
2638 (Domain::APP, 2, "test4"),
2639 (Domain::APP, 2, "test5"),
2640 (Domain::APP, 2, "test6"),
2641 (Domain::APP, 2, "test8"),
2642 (Domain::SELINUX, 100, "test1"),
2643 (Domain::SELINUX, 100, "test2"),
2644 (Domain::SELINUX, 100, "test3"),
2645 (Domain::SELINUX, 100, "test4"),
2646 (Domain::SELINUX, 100, "test5"),
2647 (Domain::SELINUX, 100, "test6"),
2648 (Domain::SELINUX, 100, "test9"),
2649 ];
2650
2651 let list_o_keys: Vec<(i64, i64)> = LIST_O_ENTRIES
2652 .iter()
2653 .map(|(domain, ns, alias)| {
2654 let entry =
2655 make_test_key_entry(&mut db, *domain, *ns, *alias).unwrap_or_else(|e| {
2656 panic!("Failed to insert {:?} {} {}. Error {:?}", domain, ns, alias, e)
2657 });
2658 (entry.id(), *ns)
2659 })
2660 .collect();
2661
2662 for (domain, namespace) in
2663 &[(Domain::APP, 1i64), (Domain::APP, 2i64), (Domain::SELINUX, 100i64)]
2664 {
2665 let mut list_o_descriptors: Vec<KeyDescriptor> = LIST_O_ENTRIES
2666 .iter()
2667 .filter_map(|(domain, ns, alias)| match ns {
2668 ns if *ns == *namespace => Some(KeyDescriptor {
2669 domain: *domain,
2670 nspace: *ns,
2671 alias: Some(alias.to_string()),
2672 blob: None,
2673 }),
2674 _ => None,
2675 })
2676 .collect();
2677 list_o_descriptors.sort();
2678 let mut list_result = db.list(*domain, *namespace)?;
2679 list_result.sort();
2680 assert_eq!(list_o_descriptors, list_result);
2681
2682 let mut list_o_ids: Vec<i64> = list_o_descriptors
2683 .into_iter()
2684 .map(|d| {
2685 let (_, entry) = db
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002686 .load_key_entry(
2687 d,
2688 KeyType::Client,
2689 KeyEntryLoadBits::NONE,
2690 *namespace as u32,
2691 |_, _| Ok(()),
2692 )
Janis Danisevskise92a5e62020-12-02 12:57:41 -08002693 .unwrap();
2694 entry.id()
2695 })
2696 .collect();
2697 list_o_ids.sort_unstable();
2698 let mut loaded_entries: Vec<i64> = list_o_keys
2699 .iter()
2700 .filter_map(|(id, ns)| match ns {
2701 ns if *ns == *namespace => Some(*id),
2702 _ => None,
2703 })
2704 .collect();
2705 loaded_entries.sort_unstable();
2706 assert_eq!(list_o_ids, loaded_entries);
2707 }
2708 assert_eq!(Vec::<KeyDescriptor>::new(), db.list(Domain::SELINUX, 101)?);
2709
2710 Ok(())
2711 }
2712
Joel Galenson0891bc12020-07-20 10:37:03 -07002713 // Helpers
2714
2715 // Checks that the given result is an error containing the given string.
2716 fn check_result_is_error_containing_string<T>(result: Result<T>, target: &str) {
2717 let error_str = format!(
2718 "{:#?}",
2719 result.err().unwrap_or_else(|| panic!("Expected the error: {}", target))
2720 );
2721 assert!(
2722 error_str.contains(target),
2723 "The string \"{}\" should contain \"{}\"",
2724 error_str,
2725 target
2726 );
2727 }
2728
Joel Galenson2aab4432020-07-22 15:27:57 -07002729 #[derive(Debug, PartialEq)]
Joel Galenson0891bc12020-07-20 10:37:03 -07002730 #[allow(dead_code)]
2731 struct KeyEntryRow {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002732 id: i64,
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002733 key_type: KeyType,
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002734 domain: Option<Domain>,
Joel Galenson0891bc12020-07-20 10:37:03 -07002735 namespace: Option<i64>,
2736 alias: Option<String>,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002737 state: KeyLifeCycle,
Joel Galenson0891bc12020-07-20 10:37:03 -07002738 }
2739
2740 fn get_keyentry(db: &KeystoreDB) -> Result<Vec<KeyEntryRow>> {
2741 db.conn
Joel Galenson2aab4432020-07-22 15:27:57 -07002742 .prepare("SELECT * FROM persistent.keyentry;")?
Joel Galenson0891bc12020-07-20 10:37:03 -07002743 .query_map(NO_PARAMS, |row| {
Joel Galenson0891bc12020-07-20 10:37:03 -07002744 Ok(KeyEntryRow {
2745 id: row.get(0)?,
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002746 key_type: row.get(1)?,
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002747 domain: match row.get(2)? {
2748 Some(i) => Some(Domain(i)),
2749 None => None,
2750 },
Joel Galenson0891bc12020-07-20 10:37:03 -07002751 namespace: row.get(3)?,
2752 alias: row.get(4)?,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002753 state: row.get(5)?,
Joel Galenson0891bc12020-07-20 10:37:03 -07002754 })
2755 })?
2756 .map(|r| r.context("Could not read keyentry row."))
2757 .collect::<Result<Vec<_>>>()
2758 }
2759
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07002760 // Note: The parameters and SecurityLevel associations are nonsensical. This
2761 // collection is only used to check if the parameters are preserved as expected by the
2762 // database.
2763 fn make_test_params() -> Vec<KeyParameter> {
2764 vec![
2765 KeyParameter::new(KeyParameterValue::Invalid, SecurityLevel::TRUSTED_ENVIRONMENT),
2766 KeyParameter::new(
2767 KeyParameterValue::KeyPurpose(KeyPurpose::SIGN),
2768 SecurityLevel::TRUSTED_ENVIRONMENT,
2769 ),
2770 KeyParameter::new(
2771 KeyParameterValue::KeyPurpose(KeyPurpose::DECRYPT),
2772 SecurityLevel::TRUSTED_ENVIRONMENT,
2773 ),
2774 KeyParameter::new(
2775 KeyParameterValue::Algorithm(Algorithm::RSA),
2776 SecurityLevel::TRUSTED_ENVIRONMENT,
2777 ),
2778 KeyParameter::new(KeyParameterValue::KeySize(1024), SecurityLevel::TRUSTED_ENVIRONMENT),
2779 KeyParameter::new(
2780 KeyParameterValue::BlockMode(BlockMode::ECB),
2781 SecurityLevel::TRUSTED_ENVIRONMENT,
2782 ),
2783 KeyParameter::new(
2784 KeyParameterValue::BlockMode(BlockMode::GCM),
2785 SecurityLevel::TRUSTED_ENVIRONMENT,
2786 ),
2787 KeyParameter::new(KeyParameterValue::Digest(Digest::NONE), SecurityLevel::STRONGBOX),
2788 KeyParameter::new(
2789 KeyParameterValue::Digest(Digest::MD5),
2790 SecurityLevel::TRUSTED_ENVIRONMENT,
2791 ),
2792 KeyParameter::new(
2793 KeyParameterValue::Digest(Digest::SHA_2_224),
2794 SecurityLevel::TRUSTED_ENVIRONMENT,
2795 ),
2796 KeyParameter::new(
2797 KeyParameterValue::Digest(Digest::SHA_2_256),
2798 SecurityLevel::STRONGBOX,
2799 ),
2800 KeyParameter::new(
2801 KeyParameterValue::PaddingMode(PaddingMode::NONE),
2802 SecurityLevel::TRUSTED_ENVIRONMENT,
2803 ),
2804 KeyParameter::new(
2805 KeyParameterValue::PaddingMode(PaddingMode::RSA_OAEP),
2806 SecurityLevel::TRUSTED_ENVIRONMENT,
2807 ),
2808 KeyParameter::new(
2809 KeyParameterValue::PaddingMode(PaddingMode::RSA_PSS),
2810 SecurityLevel::STRONGBOX,
2811 ),
2812 KeyParameter::new(
2813 KeyParameterValue::PaddingMode(PaddingMode::RSA_PKCS1_1_5_SIGN),
2814 SecurityLevel::TRUSTED_ENVIRONMENT,
2815 ),
2816 KeyParameter::new(KeyParameterValue::CallerNonce, SecurityLevel::TRUSTED_ENVIRONMENT),
2817 KeyParameter::new(KeyParameterValue::MinMacLength(256), SecurityLevel::STRONGBOX),
2818 KeyParameter::new(
2819 KeyParameterValue::EcCurve(EcCurve::P_224),
2820 SecurityLevel::TRUSTED_ENVIRONMENT,
2821 ),
2822 KeyParameter::new(KeyParameterValue::EcCurve(EcCurve::P_256), SecurityLevel::STRONGBOX),
2823 KeyParameter::new(
2824 KeyParameterValue::EcCurve(EcCurve::P_384),
2825 SecurityLevel::TRUSTED_ENVIRONMENT,
2826 ),
2827 KeyParameter::new(
2828 KeyParameterValue::EcCurve(EcCurve::P_521),
2829 SecurityLevel::TRUSTED_ENVIRONMENT,
2830 ),
2831 KeyParameter::new(
2832 KeyParameterValue::RSAPublicExponent(3),
2833 SecurityLevel::TRUSTED_ENVIRONMENT,
2834 ),
2835 KeyParameter::new(
2836 KeyParameterValue::IncludeUniqueID,
2837 SecurityLevel::TRUSTED_ENVIRONMENT,
2838 ),
2839 KeyParameter::new(KeyParameterValue::BootLoaderOnly, SecurityLevel::STRONGBOX),
2840 KeyParameter::new(KeyParameterValue::RollbackResistance, SecurityLevel::STRONGBOX),
2841 KeyParameter::new(
2842 KeyParameterValue::ActiveDateTime(1234567890),
2843 SecurityLevel::STRONGBOX,
2844 ),
2845 KeyParameter::new(
2846 KeyParameterValue::OriginationExpireDateTime(1234567890),
2847 SecurityLevel::TRUSTED_ENVIRONMENT,
2848 ),
2849 KeyParameter::new(
2850 KeyParameterValue::UsageExpireDateTime(1234567890),
2851 SecurityLevel::TRUSTED_ENVIRONMENT,
2852 ),
2853 KeyParameter::new(
2854 KeyParameterValue::MinSecondsBetweenOps(1234567890),
2855 SecurityLevel::TRUSTED_ENVIRONMENT,
2856 ),
2857 KeyParameter::new(
2858 KeyParameterValue::MaxUsesPerBoot(1234567890),
2859 SecurityLevel::TRUSTED_ENVIRONMENT,
2860 ),
2861 KeyParameter::new(KeyParameterValue::UserID(1), SecurityLevel::STRONGBOX),
2862 KeyParameter::new(KeyParameterValue::UserSecureID(42), SecurityLevel::STRONGBOX),
2863 KeyParameter::new(
2864 KeyParameterValue::NoAuthRequired,
2865 SecurityLevel::TRUSTED_ENVIRONMENT,
2866 ),
2867 KeyParameter::new(
2868 KeyParameterValue::HardwareAuthenticatorType(HardwareAuthenticatorType::PASSWORD),
2869 SecurityLevel::TRUSTED_ENVIRONMENT,
2870 ),
2871 KeyParameter::new(KeyParameterValue::AuthTimeout(1234567890), SecurityLevel::SOFTWARE),
2872 KeyParameter::new(KeyParameterValue::AllowWhileOnBody, SecurityLevel::SOFTWARE),
2873 KeyParameter::new(
2874 KeyParameterValue::TrustedUserPresenceRequired,
2875 SecurityLevel::TRUSTED_ENVIRONMENT,
2876 ),
2877 KeyParameter::new(
2878 KeyParameterValue::TrustedConfirmationRequired,
2879 SecurityLevel::TRUSTED_ENVIRONMENT,
2880 ),
2881 KeyParameter::new(
2882 KeyParameterValue::UnlockedDeviceRequired,
2883 SecurityLevel::TRUSTED_ENVIRONMENT,
2884 ),
2885 KeyParameter::new(
2886 KeyParameterValue::ApplicationID(vec![1u8, 2u8, 3u8, 4u8]),
2887 SecurityLevel::SOFTWARE,
2888 ),
2889 KeyParameter::new(
2890 KeyParameterValue::ApplicationData(vec![4u8, 3u8, 2u8, 1u8]),
2891 SecurityLevel::SOFTWARE,
2892 ),
2893 KeyParameter::new(
2894 KeyParameterValue::CreationDateTime(12345677890),
2895 SecurityLevel::SOFTWARE,
2896 ),
2897 KeyParameter::new(
2898 KeyParameterValue::KeyOrigin(KeyOrigin::GENERATED),
2899 SecurityLevel::TRUSTED_ENVIRONMENT,
2900 ),
2901 KeyParameter::new(
2902 KeyParameterValue::RootOfTrust(vec![3u8, 2u8, 1u8, 4u8]),
2903 SecurityLevel::TRUSTED_ENVIRONMENT,
2904 ),
2905 KeyParameter::new(KeyParameterValue::OSVersion(1), SecurityLevel::TRUSTED_ENVIRONMENT),
2906 KeyParameter::new(KeyParameterValue::OSPatchLevel(2), SecurityLevel::SOFTWARE),
2907 KeyParameter::new(
2908 KeyParameterValue::UniqueID(vec![4u8, 3u8, 1u8, 2u8]),
2909 SecurityLevel::SOFTWARE,
2910 ),
2911 KeyParameter::new(
2912 KeyParameterValue::AttestationChallenge(vec![4u8, 3u8, 1u8, 2u8]),
2913 SecurityLevel::TRUSTED_ENVIRONMENT,
2914 ),
2915 KeyParameter::new(
2916 KeyParameterValue::AttestationApplicationID(vec![4u8, 3u8, 1u8, 2u8]),
2917 SecurityLevel::TRUSTED_ENVIRONMENT,
2918 ),
2919 KeyParameter::new(
2920 KeyParameterValue::AttestationIdBrand(vec![4u8, 3u8, 1u8, 2u8]),
2921 SecurityLevel::TRUSTED_ENVIRONMENT,
2922 ),
2923 KeyParameter::new(
2924 KeyParameterValue::AttestationIdDevice(vec![4u8, 3u8, 1u8, 2u8]),
2925 SecurityLevel::TRUSTED_ENVIRONMENT,
2926 ),
2927 KeyParameter::new(
2928 KeyParameterValue::AttestationIdProduct(vec![4u8, 3u8, 1u8, 2u8]),
2929 SecurityLevel::TRUSTED_ENVIRONMENT,
2930 ),
2931 KeyParameter::new(
2932 KeyParameterValue::AttestationIdSerial(vec![4u8, 3u8, 1u8, 2u8]),
2933 SecurityLevel::TRUSTED_ENVIRONMENT,
2934 ),
2935 KeyParameter::new(
2936 KeyParameterValue::AttestationIdIMEI(vec![4u8, 3u8, 1u8, 2u8]),
2937 SecurityLevel::TRUSTED_ENVIRONMENT,
2938 ),
2939 KeyParameter::new(
2940 KeyParameterValue::AttestationIdMEID(vec![4u8, 3u8, 1u8, 2u8]),
2941 SecurityLevel::TRUSTED_ENVIRONMENT,
2942 ),
2943 KeyParameter::new(
2944 KeyParameterValue::AttestationIdManufacturer(vec![4u8, 3u8, 1u8, 2u8]),
2945 SecurityLevel::TRUSTED_ENVIRONMENT,
2946 ),
2947 KeyParameter::new(
2948 KeyParameterValue::AttestationIdModel(vec![4u8, 3u8, 1u8, 2u8]),
2949 SecurityLevel::TRUSTED_ENVIRONMENT,
2950 ),
2951 KeyParameter::new(
2952 KeyParameterValue::VendorPatchLevel(3),
2953 SecurityLevel::TRUSTED_ENVIRONMENT,
2954 ),
2955 KeyParameter::new(
2956 KeyParameterValue::BootPatchLevel(4),
2957 SecurityLevel::TRUSTED_ENVIRONMENT,
2958 ),
2959 KeyParameter::new(
2960 KeyParameterValue::AssociatedData(vec![4u8, 3u8, 1u8, 2u8]),
2961 SecurityLevel::TRUSTED_ENVIRONMENT,
2962 ),
2963 KeyParameter::new(
2964 KeyParameterValue::Nonce(vec![4u8, 3u8, 1u8, 2u8]),
2965 SecurityLevel::TRUSTED_ENVIRONMENT,
2966 ),
2967 KeyParameter::new(
2968 KeyParameterValue::MacLength(256),
2969 SecurityLevel::TRUSTED_ENVIRONMENT,
2970 ),
2971 KeyParameter::new(
2972 KeyParameterValue::ResetSinceIdRotation,
2973 SecurityLevel::TRUSTED_ENVIRONMENT,
2974 ),
2975 KeyParameter::new(
2976 KeyParameterValue::ConfirmationToken(vec![5u8, 5u8, 5u8, 5u8]),
2977 SecurityLevel::TRUSTED_ENVIRONMENT,
2978 ),
2979 ]
2980 }
2981
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002982 fn make_test_key_entry(
2983 db: &mut KeystoreDB,
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002984 domain: Domain,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002985 namespace: i64,
2986 alias: &str,
Janis Danisevskisaec14592020-11-12 09:41:49 -08002987 ) -> Result<KeyIdGuard> {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002988 let key_id = db.create_key_entry(domain, namespace)?;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002989 db.insert_blob(&key_id, SubComponentType::KEY_BLOB, TEST_KEY_BLOB)?;
2990 db.insert_blob(&key_id, SubComponentType::CERT, TEST_CERT_BLOB)?;
2991 db.insert_blob(&key_id, SubComponentType::CERT_CHAIN, TEST_CERT_CHAIN_BLOB)?;
Janis Danisevskisaec14592020-11-12 09:41:49 -08002992 db.insert_keyparameter(&key_id, &make_test_params())?;
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002993 let mut metadata = KeyMetaData::new();
2994 metadata.add(KeyMetaEntry::EncryptedBy(EncryptedBy::Password));
2995 metadata.add(KeyMetaEntry::Salt(vec![1, 2, 3]));
2996 metadata.add(KeyMetaEntry::Iv(vec![2, 3, 1]));
2997 metadata.add(KeyMetaEntry::AeadTag(vec![3, 1, 2]));
2998 db.insert_key_metadata(&key_id, &metadata)?;
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002999 rebind_alias(db, &key_id, alias, domain, namespace)?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003000 Ok(key_id)
3001 }
3002
Janis Danisevskisb42fc182020-12-15 08:41:27 -08003003 fn make_test_key_entry_test_vector(key_id: i64) -> KeyEntry {
3004 let mut metadata = KeyMetaData::new();
3005 metadata.add(KeyMetaEntry::EncryptedBy(EncryptedBy::Password));
3006 metadata.add(KeyMetaEntry::Salt(vec![1, 2, 3]));
3007 metadata.add(KeyMetaEntry::Iv(vec![2, 3, 1]));
3008 metadata.add(KeyMetaEntry::AeadTag(vec![3, 1, 2]));
3009
3010 KeyEntry {
3011 id: key_id,
3012 km_blob: Some(TEST_KEY_BLOB.to_vec()),
3013 cert: Some(TEST_CERT_BLOB.to_vec()),
3014 cert_chain: Some(TEST_CERT_CHAIN_BLOB.to_vec()),
3015 sec_level: SecurityLevel::TRUSTED_ENVIRONMENT,
3016 parameters: make_test_params(),
3017 metadata,
3018 }
3019 }
3020
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003021 fn debug_dump_keyentry_table(db: &mut KeystoreDB) -> Result<()> {
Janis Danisevskis93927dd2020-12-23 12:23:08 -08003022 let mut stmt = db.conn.prepare(
3023 "SELECT id, key_type, domain, namespace, alias, state FROM persistent.keyentry;",
3024 )?;
3025 let rows = stmt.query_map::<(i64, KeyType, i32, i64, String, KeyLifeCycle), _, _>(
3026 NO_PARAMS,
3027 |row| {
3028 Ok((row.get(0)?, row.get(1)?, row.get(2)?, row.get(3)?, row.get(4)?, row.get(5)?))
3029 },
3030 )?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003031
3032 println!("Key entry table rows:");
3033 for r in rows {
Janis Danisevskis93927dd2020-12-23 12:23:08 -08003034 let (id, key_type, domain, namespace, alias, state) = r.unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003035 println!(
Janis Danisevskis93927dd2020-12-23 12:23:08 -08003036 " id: {} KeyType: {:?} Domain: {} Namespace: {} Alias: {} State: {:?}",
3037 id, key_type, domain, namespace, alias, state
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003038 );
3039 }
3040 Ok(())
3041 }
3042
3043 fn debug_dump_grant_table(db: &mut KeystoreDB) -> Result<()> {
Janis Danisevskisbf15d732020-12-08 10:35:26 -08003044 let mut stmt = db
3045 .conn
3046 .prepare("SELECT id, grantee, keyentryid, access_vector FROM persistent.grant;")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003047 let rows = stmt.query_map::<(i64, i64, i64, i64), _, _>(NO_PARAMS, |row| {
3048 Ok((row.get(0)?, row.get(1)?, row.get(2)?, row.get(3)?))
3049 })?;
3050
3051 println!("Grant table rows:");
3052 for r in rows {
3053 let (id, gt, ki, av) = r.unwrap();
3054 println!(" id: {} grantee: {} key_id: {} access_vector: {}", id, gt, ki, av);
3055 }
3056 Ok(())
3057 }
3058
Joel Galenson0891bc12020-07-20 10:37:03 -07003059 // Use a custom random number generator that repeats each number once.
3060 // This allows us to test repeated elements.
3061
3062 thread_local! {
3063 static RANDOM_COUNTER: RefCell<i64> = RefCell::new(0);
3064 }
3065
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003066 fn reset_random() {
3067 RANDOM_COUNTER.with(|counter| {
3068 *counter.borrow_mut() = 0;
3069 })
3070 }
3071
Joel Galenson0891bc12020-07-20 10:37:03 -07003072 pub fn random() -> i64 {
3073 RANDOM_COUNTER.with(|counter| {
3074 let result = *counter.borrow() / 2;
3075 *counter.borrow_mut() += 1;
3076 result
3077 })
3078 }
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00003079
3080 #[test]
3081 fn test_last_off_body() -> Result<()> {
3082 let mut db = new_test_db()?;
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08003083 db.insert_last_off_body(MonotonicRawTime::now())?;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00003084 let tx = db.conn.transaction_with_behavior(TransactionBehavior::Immediate)?;
3085 let last_off_body_1 = KeystoreDB::get_last_off_body(&tx)?;
3086 tx.commit()?;
3087 let one_second = Duration::from_secs(1);
3088 thread::sleep(one_second);
3089 db.update_last_off_body(MonotonicRawTime::now())?;
3090 let tx2 = db.conn.transaction_with_behavior(TransactionBehavior::Immediate)?;
3091 let last_off_body_2 = KeystoreDB::get_last_off_body(&tx2)?;
3092 tx2.commit()?;
3093 assert!(last_off_body_1.seconds() < last_off_body_2.seconds());
3094 Ok(())
3095 }
Joel Galenson26f4d012020-07-17 14:57:21 -07003096}