blob: 344fe2fc8603966427fe241d375c0812d6346cee [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};
Qi Wub9433b52020-12-01 14:52:46 +080045use crate::error::{Error as KsError, ErrorCode, 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 Danisevskis63f7bc82020-09-03 10:12:56 -07001232 let mut stmt = tx
1233 .prepare(
1234 "SELECT domain, namespace FROM persistent.keyentry
1235 WHERE
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001236 id = ?
1237 AND state = ?;",
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001238 )
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001239 .context("Domain::KEY_ID: prepare statement failed")?;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001240 let mut rows = stmt
1241 .query(params![key.nspace, KeyLifeCycle::Live])
1242 .context("Domain::KEY_ID: query failed.")?;
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001243 let (domain, namespace): (Domain, i64) =
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 Danisevskisc5b210b2020-09-11 13:27:37 -07001252 .context("Domain::KEY_ID.")?;
1253 let key_id = key.nspace;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001254 let mut access_key = key;
1255 access_key.domain = domain;
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001256 access_key.nspace = namespace;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001257
1258 Ok((key_id, access_key, None))
1259 }
1260 _ => Err(anyhow!(KsError::sys())),
1261 }
1262 }
1263
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001264 fn load_blob_components(
1265 key_id: i64,
1266 load_bits: KeyEntryLoadBits,
1267 tx: &Transaction,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001268 ) -> Result<(Option<Vec<u8>>, Option<Vec<u8>>, Option<Vec<u8>>)> {
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001269 let mut stmt = tx
1270 .prepare(
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001271 "SELECT MAX(id), subcomponent_type, blob FROM persistent.blobentry
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001272 WHERE keyentryid = ? GROUP BY subcomponent_type;",
1273 )
1274 .context("In load_blob_components: prepare statement failed.")?;
1275
1276 let mut rows =
1277 stmt.query(params![key_id]).context("In load_blob_components: query failed.")?;
1278
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001279 let mut km_blob: Option<Vec<u8>> = None;
1280 let mut cert_blob: Option<Vec<u8>> = None;
1281 let mut cert_chain_blob: Option<Vec<u8>> = None;
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001282 db_utils::with_rows_extract_all(&mut rows, |row| {
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001283 let sub_type: SubComponentType =
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001284 row.get(1).context("Failed to extract subcomponent_type.")?;
1285 match (sub_type, load_bits.load_public(), load_bits.load_km()) {
1286 (SubComponentType::KEY_BLOB, _, true) => {
1287 km_blob = Some(row.get(2).context("Failed to extract KM blob.")?);
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001288 }
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001289 (SubComponentType::CERT, true, _) => {
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001290 cert_blob =
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001291 Some(row.get(2).context("Failed to extract public certificate blob.")?);
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001292 }
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001293 (SubComponentType::CERT_CHAIN, true, _) => {
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001294 cert_chain_blob =
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001295 Some(row.get(2).context("Failed to extract certificate chain blob.")?);
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001296 }
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001297 (SubComponentType::CERT, _, _)
1298 | (SubComponentType::CERT_CHAIN, _, _)
1299 | (SubComponentType::KEY_BLOB, _, _) => {}
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001300 _ => Err(KsError::sys()).context("Unknown subcomponent type.")?,
1301 }
1302 Ok(())
1303 })
1304 .context("In load_blob_components.")?;
1305
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001306 Ok((km_blob, cert_blob, cert_chain_blob))
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001307 }
1308
1309 fn load_key_parameters(key_id: i64, tx: &Transaction) -> Result<Vec<KeyParameter>> {
1310 let mut stmt = tx
1311 .prepare(
1312 "SELECT tag, data, security_level from persistent.keyparameter
1313 WHERE keyentryid = ?;",
1314 )
1315 .context("In load_key_parameters: prepare statement failed.")?;
1316
1317 let mut parameters: Vec<KeyParameter> = Vec::new();
1318
1319 let mut rows =
1320 stmt.query(params![key_id]).context("In load_key_parameters: query failed.")?;
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001321 db_utils::with_rows_extract_all(&mut rows, |row| {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001322 let tag = Tag(row.get(0).context("Failed to read tag.")?);
1323 let sec_level = SecurityLevel(row.get(2).context("Failed to read sec_level.")?);
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001324 parameters.push(
1325 KeyParameter::new_from_sql(tag, &SqlField::new(1, &row), sec_level)
1326 .context("Failed to read KeyParameter.")?,
1327 );
1328 Ok(())
1329 })
1330 .context("In load_key_parameters.")?;
1331
1332 Ok(parameters)
1333 }
1334
Qi Wub9433b52020-12-01 14:52:46 +08001335 /// Decrements the usage count of a limited use key. This function first checks whether the
1336 /// usage has been exhausted, if not, decreases the usage count. If the usage count reaches
1337 /// zero, the key also gets marked unreferenced and scheduled for deletion.
1338 /// Returns Ok(true) if the key was marked unreferenced as a hint to the garbage collector.
1339 pub fn check_and_update_key_usage_count(&mut self, key_id: i64) -> Result<bool> {
1340 self.with_transaction(TransactionBehavior::Immediate, |tx| {
1341 let limit: Option<i32> = tx
1342 .query_row(
1343 "SELECT data FROM persistent.keyparameter WHERE keyentryid = ? AND tag = ?;",
1344 params![key_id, Tag::USAGE_COUNT_LIMIT.0],
1345 |row| row.get(0),
1346 )
1347 .optional()
1348 .context("Trying to load usage count")?;
1349
1350 let limit = limit
1351 .ok_or(KsError::Km(ErrorCode::INVALID_KEY_BLOB))
1352 .context("The Key no longer exists. Key is exhausted.")?;
1353
1354 tx.execute(
1355 "UPDATE persistent.keyparameter
1356 SET data = data - 1
1357 WHERE keyentryid = ? AND tag = ? AND data > 0;",
1358 params![key_id, Tag::USAGE_COUNT_LIMIT.0],
1359 )
1360 .context("Failed to update key usage count.")?;
1361
1362 match limit {
1363 1 => Self::mark_unreferenced(tx, key_id)
1364 .context("Trying to mark limited use key for deletion."),
1365 0 => Err(KsError::Km(ErrorCode::INVALID_KEY_BLOB)).context("Key is exhausted."),
1366 _ => Ok(false),
1367 }
1368 })
1369 .context("In check_and_update_key_usage_count.")
1370 }
1371
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001372 /// Load a key entry by the given key descriptor.
1373 /// It uses the `check_permission` callback to verify if the access is allowed
1374 /// given the key access tuple read from the database using `load_access_tuple`.
1375 /// With `load_bits` the caller may specify which blobs shall be loaded from
1376 /// the blob database.
1377 pub fn load_key_entry(
1378 &mut self,
1379 key: KeyDescriptor,
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001380 key_type: KeyType,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001381 load_bits: KeyEntryLoadBits,
1382 caller_uid: u32,
1383 check_permission: impl FnOnce(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>,
Janis Danisevskisaec14592020-11-12 09:41:49 -08001384 ) -> Result<(KeyIdGuard, KeyEntry)> {
1385 // KEY ID LOCK 1/2
1386 // If we got a key descriptor with a key id we can get the lock right away.
1387 // Otherwise we have to defer it until we know the key id.
1388 let key_id_guard = match key.domain {
1389 Domain::KEY_ID => Some(KEY_ID_LOCK.get(key.nspace)),
1390 _ => None,
1391 };
1392
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001393 let tx = self
1394 .conn
Janis Danisevskisaec14592020-11-12 09:41:49 -08001395 .unchecked_transaction()
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001396 .context("In load_key_entry: Failed to initialize transaction.")?;
1397
1398 // Load the key_id and complete the access control tuple.
1399 let (key_id, access_key_descriptor, access_vector) =
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001400 Self::load_access_tuple(&tx, key, key_type, caller_uid)
1401 .context("In load_key_entry.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001402
1403 // Perform access control. It is vital that we return here if the permission is denied.
1404 // So do not touch that '?' at the end.
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001405 check_permission(&access_key_descriptor, access_vector).context("In load_key_entry.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001406
Janis Danisevskisaec14592020-11-12 09:41:49 -08001407 // KEY ID LOCK 2/2
1408 // If we did not get a key id lock by now, it was because we got a key descriptor
1409 // without a key id. At this point we got the key id, so we can try and get a lock.
1410 // However, we cannot block here, because we are in the middle of the transaction.
1411 // So first we try to get the lock non blocking. If that fails, we roll back the
1412 // transaction and block until we get the lock. After we successfully got the lock,
1413 // we start a new transaction and load the access tuple again.
1414 //
1415 // We don't need to perform access control again, because we already established
1416 // that the caller had access to the given key. But we need to make sure that the
1417 // key id still exists. So we have to load the key entry by key id this time.
1418 let (key_id_guard, tx) = match key_id_guard {
1419 None => match KEY_ID_LOCK.try_get(key_id) {
1420 None => {
1421 // Roll back the transaction.
1422 tx.rollback().context("In load_key_entry: Failed to roll back transaction.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001423
Janis Danisevskisaec14592020-11-12 09:41:49 -08001424 // Block until we have a key id lock.
1425 let key_id_guard = KEY_ID_LOCK.get(key_id);
1426
1427 // Create a new transaction.
1428 let tx = self.conn.unchecked_transaction().context(
1429 "In load_key_entry: Failed to initialize transaction. (deferred key lock)",
1430 )?;
1431
1432 Self::load_access_tuple(
1433 &tx,
1434 // This time we have to load the key by the retrieved key id, because the
1435 // alias may have been rebound after we rolled back the transaction.
1436 KeyDescriptor {
1437 domain: Domain::KEY_ID,
1438 nspace: key_id,
1439 ..Default::default()
1440 },
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001441 key_type,
Janis Danisevskisaec14592020-11-12 09:41:49 -08001442 caller_uid,
1443 )
1444 .context("In load_key_entry. (deferred key lock)")?;
1445 (key_id_guard, tx)
1446 }
1447 Some(l) => (l, tx),
1448 },
1449 Some(key_id_guard) => (key_id_guard, tx),
1450 };
1451
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001452 let key_entry = Self::load_key_components(&tx, load_bits, key_id_guard.id())
1453 .context("In load_key_entry.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001454
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001455 tx.commit().context("In load_key_entry: Failed to commit transaction.")?;
1456
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001457 Ok((key_id_guard, key_entry))
1458 }
1459
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001460 fn mark_unreferenced(tx: &Transaction, key_id: i64) -> Result<bool> {
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001461 let updated = tx
1462 .execute(
1463 "UPDATE persistent.keyentry SET state = ? WHERE id = ?;",
1464 params![KeyLifeCycle::Unreferenced, key_id],
1465 )
1466 .context("In mark_unreferenced: Failed to update state of key entry.")?;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001467 tx.execute("DELETE from persistent.grant WHERE keyentryid = ?;", params![key_id])
1468 .context("In mark_unreferenced: Failed to drop grants.")?;
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001469 Ok(updated != 0)
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001470 }
1471
1472 /// Marks the given key as unreferenced and removes all of the grants to this key.
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001473 /// Returns Ok(true) if a key was marked unreferenced as a hint for the garbage collector.
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001474 pub fn unbind_key(
1475 &mut self,
1476 key: KeyDescriptor,
1477 key_type: KeyType,
1478 caller_uid: u32,
1479 check_permission: impl FnOnce(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>,
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001480 ) -> Result<bool> {
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001481 self.with_transaction(TransactionBehavior::Immediate, |tx| {
1482 let (key_id, access_key_descriptor, access_vector) =
1483 Self::load_access_tuple(tx, key, key_type, caller_uid)
1484 .context("Trying to get access tuple.")?;
1485
1486 // Perform access control. It is vital that we return here if the permission is denied.
1487 // So do not touch that '?' at the end.
1488 check_permission(&access_key_descriptor, access_vector)
1489 .context("While checking permission.")?;
1490
1491 Self::mark_unreferenced(tx, key_id).context("Trying to mark the key unreferenced.")
1492 })
1493 .context("In unbind_key.")
1494 }
1495
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001496 fn load_key_components(
1497 tx: &Transaction,
1498 load_bits: KeyEntryLoadBits,
1499 key_id: i64,
1500 ) -> Result<KeyEntry> {
1501 let metadata = KeyMetaData::load_from_db(key_id, &tx).context("In load_key_components.")?;
1502
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001503 let (km_blob, cert_blob, cert_chain_blob) =
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001504 Self::load_blob_components(key_id, load_bits, &tx)
1505 .context("In load_key_components.")?;
1506
1507 let parameters =
1508 Self::load_key_parameters(key_id, &tx).context("In load_key_components.")?;
1509
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001510 // Extract the security level by checking the security level of the origin tag.
1511 // Super keys don't have key parameters so we use security_level software by default.
1512 let sec_level = parameters
1513 .iter()
1514 .find_map(|k| match k.get_tag() {
1515 Tag::ORIGIN => Some(*k.security_level()),
1516 _ => None,
1517 })
1518 .unwrap_or(SecurityLevel::SOFTWARE);
1519
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001520 Ok(KeyEntry {
1521 id: key_id,
1522 km_blob,
1523 cert: cert_blob,
1524 cert_chain: cert_chain_blob,
1525 sec_level,
1526 parameters,
1527 metadata,
1528 })
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001529 }
1530
Janis Danisevskise92a5e62020-12-02 12:57:41 -08001531 /// Returns a list of KeyDescriptors in the selected domain/namespace.
1532 /// The key descriptors will have the domain, nspace, and alias field set.
1533 /// Domain must be APP or SELINUX, the caller must make sure of that.
1534 pub fn list(&mut self, domain: Domain, namespace: i64) -> Result<Vec<KeyDescriptor>> {
1535 let mut stmt = self
1536 .conn
1537 .prepare(
1538 "SELECT alias FROM persistent.keyentry
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001539 WHERE domain = ? AND namespace = ? AND alias IS NOT NULL AND state = ?;",
Janis Danisevskise92a5e62020-12-02 12:57:41 -08001540 )
1541 .context("In list: Failed to prepare.")?;
1542
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001543 let mut rows = stmt
1544 .query(params![domain.0 as u32, namespace, KeyLifeCycle::Live])
1545 .context("In list: Failed to query.")?;
Janis Danisevskise92a5e62020-12-02 12:57:41 -08001546
1547 let mut descriptors: Vec<KeyDescriptor> = Vec::new();
1548 db_utils::with_rows_extract_all(&mut rows, |row| {
1549 descriptors.push(KeyDescriptor {
1550 domain,
1551 nspace: namespace,
1552 alias: Some(row.get(0).context("Trying to extract alias.")?),
1553 blob: None,
1554 });
1555 Ok(())
1556 })
1557 .context("In list.")?;
1558 Ok(descriptors)
1559 }
1560
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001561 /// Adds a grant to the grant table.
1562 /// Like `load_key_entry` this function loads the access tuple before
1563 /// it uses the callback for a permission check. Upon success,
1564 /// it inserts the `grantee_uid`, `key_id`, and `access_vector` into the
1565 /// grant table. The new row will have a randomized id, which is used as
1566 /// grant id in the namespace field of the resulting KeyDescriptor.
1567 pub fn grant(
1568 &mut self,
1569 key: KeyDescriptor,
1570 caller_uid: u32,
1571 grantee_uid: u32,
1572 access_vector: KeyPermSet,
1573 check_permission: impl FnOnce(&KeyDescriptor, &KeyPermSet) -> Result<()>,
1574 ) -> Result<KeyDescriptor> {
1575 let tx = self
1576 .conn
1577 .transaction_with_behavior(TransactionBehavior::Immediate)
1578 .context("In grant: Failed to initialize transaction.")?;
1579
1580 // Load the key_id and complete the access control tuple.
1581 // We ignore the access vector here because grants cannot be granted.
1582 // The access vector returned here expresses the permissions the
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001583 // grantee has if key.domain == Domain::GRANT. But this vector
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001584 // cannot include the grant permission by design, so there is no way the
1585 // subsequent permission check can pass.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001586 // We could check key.domain == Domain::GRANT and fail early.
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001587 // But even if we load the access tuple by grant here, the permission
1588 // check denies the attempt to create a grant by grant descriptor.
1589 let (key_id, access_key_descriptor, _) =
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001590 Self::load_access_tuple(&tx, key, KeyType::Client, caller_uid).context("In grant")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001591
1592 // Perform access control. It is vital that we return here if the permission
1593 // was denied. So do not touch that '?' at the end of the line.
1594 // This permission check checks if the caller has the grant permission
1595 // for the given key and in addition to all of the permissions
1596 // expressed in `access_vector`.
1597 check_permission(&access_key_descriptor, &access_vector)
1598 .context("In grant: check_permission failed.")?;
1599
1600 let grant_id = if let Some(grant_id) = tx
1601 .query_row(
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001602 "SELECT id FROM persistent.grant
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001603 WHERE keyentryid = ? AND grantee = ?;",
1604 params![key_id, grantee_uid],
1605 |row| row.get(0),
1606 )
1607 .optional()
1608 .context("In grant: Failed get optional existing grant id.")?
1609 {
1610 tx.execute(
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001611 "UPDATE persistent.grant
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001612 SET access_vector = ?
1613 WHERE id = ?;",
1614 params![i32::from(access_vector), grant_id],
1615 )
1616 .context("In grant: Failed to update existing grant.")?;
1617 grant_id
1618 } else {
Joel Galenson845f74b2020-09-09 14:11:55 -07001619 Self::insert_with_retry(|id| {
1620 tx.execute(
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001621 "INSERT INTO persistent.grant (id, grantee, keyentryid, access_vector)
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001622 VALUES (?, ?, ?, ?);",
Joel Galenson845f74b2020-09-09 14:11:55 -07001623 params![id, grantee_uid, key_id, i32::from(access_vector)],
1624 )
1625 })
1626 .context("In grant")?
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001627 };
1628 tx.commit().context("In grant: failed to commit transaction.")?;
1629
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001630 Ok(KeyDescriptor { domain: Domain::GRANT, nspace: grant_id, alias: None, blob: None })
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001631 }
1632
1633 /// This function checks permissions like `grant` and `load_key_entry`
1634 /// before removing a grant from the grant table.
1635 pub fn ungrant(
1636 &mut self,
1637 key: KeyDescriptor,
1638 caller_uid: u32,
1639 grantee_uid: u32,
1640 check_permission: impl FnOnce(&KeyDescriptor) -> Result<()>,
1641 ) -> Result<()> {
1642 let tx = self
1643 .conn
1644 .transaction_with_behavior(TransactionBehavior::Immediate)
1645 .context("In ungrant: Failed to initialize transaction.")?;
1646
1647 // Load the key_id and complete the access control tuple.
1648 // We ignore the access vector here because grants cannot be granted.
1649 let (key_id, access_key_descriptor, _) =
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001650 Self::load_access_tuple(&tx, key, KeyType::Client, caller_uid)
1651 .context("In ungrant.")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001652
1653 // Perform access control. We must return here if the permission
1654 // was denied. So do not touch the '?' at the end of this line.
1655 check_permission(&access_key_descriptor).context("In grant: check_permission failed.")?;
1656
1657 tx.execute(
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001658 "DELETE FROM persistent.grant
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001659 WHERE keyentryid = ? AND grantee = ?;",
1660 params![key_id, grantee_uid],
1661 )
1662 .context("Failed to delete grant.")?;
1663
1664 tx.commit().context("In ungrant: failed to commit transaction.")?;
1665
1666 Ok(())
1667 }
1668
Joel Galenson845f74b2020-09-09 14:11:55 -07001669 // Generates a random id and passes it to the given function, which will
1670 // try to insert it into a database. If that insertion fails, retry;
1671 // otherwise return the id.
1672 fn insert_with_retry(inserter: impl Fn(i64) -> rusqlite::Result<usize>) -> Result<i64> {
1673 loop {
1674 let newid: i64 = random();
1675 match inserter(newid) {
1676 // If the id already existed, try again.
1677 Err(rusqlite::Error::SqliteFailure(
1678 libsqlite3_sys::Error {
1679 code: libsqlite3_sys::ErrorCode::ConstraintViolation,
1680 extended_code: libsqlite3_sys::SQLITE_CONSTRAINT_UNIQUE,
1681 },
1682 _,
1683 )) => (),
1684 Err(e) => {
1685 return Err(e).context("In insert_with_retry: failed to insert into database.")
1686 }
1687 _ => return Ok(newid),
1688 }
1689 }
1690 }
Hasini Gunasinghe557b1032020-11-10 01:35:30 +00001691
1692 /// Insert or replace the auth token based on the UNIQUE constraint of the auth token table
1693 pub fn insert_auth_token(&mut self, auth_token: &HardwareAuthToken) -> Result<()> {
1694 self.conn
1695 .execute(
1696 "INSERT OR REPLACE INTO perboot.authtoken (challenge, user_id, auth_id,
1697 authenticator_type, timestamp, mac, time_received) VALUES(?, ?, ?, ?, ?, ?, ?);",
1698 params![
1699 auth_token.challenge,
1700 auth_token.userId,
1701 auth_token.authenticatorId,
1702 auth_token.authenticatorType.0 as i32,
1703 auth_token.timestamp.milliSeconds as i64,
1704 auth_token.mac,
1705 MonotonicRawTime::now(),
1706 ],
1707 )
1708 .context("In insert_auth_token: failed to insert auth token into the database")?;
1709 Ok(())
1710 }
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001711
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001712 /// Find the newest auth token matching the given predicate.
1713 pub fn find_auth_token_entry<F>(
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001714 &mut self,
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001715 p: F,
1716 ) -> Result<Option<(AuthTokenEntry, MonotonicRawTime)>>
1717 where
1718 F: Fn(&AuthTokenEntry) -> bool,
1719 {
1720 self.with_transaction(TransactionBehavior::Deferred, |tx| {
1721 let mut stmt = tx
1722 .prepare("SELECT * from perboot.authtoken ORDER BY time_received DESC;")
1723 .context("Prepare statement failed.")?;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001724
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001725 let mut rows = stmt.query(NO_PARAMS).context("Failed to query.")?;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001726
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001727 while let Some(row) = rows.next().context("Failed to get next row.")? {
1728 let entry = AuthTokenEntry::new(
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001729 HardwareAuthToken {
1730 challenge: row.get(1)?,
1731 userId: row.get(2)?,
1732 authenticatorId: row.get(3)?,
1733 authenticatorType: HardwareAuthenticatorType(row.get(4)?),
1734 timestamp: Timestamp { milliSeconds: row.get(5)? },
1735 mac: row.get(6)?,
1736 },
1737 row.get(7)?,
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001738 );
1739 if p(&entry) {
1740 return Ok(Some((
1741 entry,
1742 Self::get_last_off_body(tx)
1743 .context("In find_auth_token_entry: Trying to get last off body")?,
1744 )));
1745 }
1746 }
1747 Ok(None)
1748 })
1749 .context("In find_auth_token_entry.")
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001750 }
1751
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001752 /// Insert last_off_body into the metadata table at the initialization of auth token table
1753 pub fn insert_last_off_body(&self, last_off_body: MonotonicRawTime) -> Result<()> {
1754 self.conn
1755 .execute(
1756 "INSERT OR REPLACE INTO perboot.metadata (key, value) VALUES (?, ?);",
1757 params!["last_off_body", last_off_body],
1758 )
1759 .context("In insert_last_off_body: failed to insert.")?;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001760 Ok(())
1761 }
1762
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001763 /// Update last_off_body when on_device_off_body is called
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001764 pub fn update_last_off_body(&self, last_off_body: MonotonicRawTime) -> Result<()> {
1765 self.conn
1766 .execute(
1767 "UPDATE perboot.metadata SET value = ? WHERE key = ?;",
1768 params![last_off_body, "last_off_body"],
1769 )
1770 .context("In update_last_off_body: failed to update.")?;
1771 Ok(())
1772 }
1773
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001774 /// Get last_off_body time when finding auth tokens
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001775 fn get_last_off_body(tx: &Transaction) -> Result<MonotonicRawTime> {
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08001776 tx.query_row(
1777 "SELECT value from perboot.metadata WHERE key = ?;",
1778 params!["last_off_body"],
1779 |row| Ok(row.get(0)?),
1780 )
1781 .context("In get_last_off_body: query_row failed.")
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001782 }
Joel Galenson26f4d012020-07-17 14:57:21 -07001783}
1784
1785#[cfg(test)]
1786mod tests {
1787
1788 use super::*;
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07001789 use crate::key_parameter::{
1790 Algorithm, BlockMode, Digest, EcCurve, HardwareAuthenticatorType, KeyOrigin, KeyParameter,
1791 KeyParameterValue, KeyPurpose, PaddingMode, SecurityLevel,
1792 };
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001793 use crate::key_perm_set;
1794 use crate::permission::{KeyPerm, KeyPermSet};
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001795 use crate::test::utils::TempDir;
Hasini Gunasinghe557b1032020-11-10 01:35:30 +00001796 use android_hardware_security_keymint::aidl::android::hardware::security::keymint::{
1797 HardwareAuthToken::HardwareAuthToken,
1798 HardwareAuthenticatorType::HardwareAuthenticatorType as kmhw_authenticator_type,
Janis Danisevskisc3a496b2021-01-05 10:37:22 -08001799 };
1800 use android_hardware_security_secureclock::aidl::android::hardware::security::secureclock::{
Hasini Gunasinghe557b1032020-11-10 01:35:30 +00001801 Timestamp::Timestamp,
1802 };
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001803 use rusqlite::NO_PARAMS;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001804 use rusqlite::{Error, TransactionBehavior};
Joel Galenson0891bc12020-07-20 10:37:03 -07001805 use std::cell::RefCell;
Janis Danisevskisaec14592020-11-12 09:41:49 -08001806 use std::sync::atomic::{AtomicU8, Ordering};
1807 use std::sync::Arc;
1808 use std::thread;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00001809 use std::time::{Duration, SystemTime};
Joel Galenson0891bc12020-07-20 10:37:03 -07001810
Janis Danisevskis4df44f42020-08-26 14:40:03 -07001811 fn new_test_db() -> Result<KeystoreDB> {
1812 let conn = KeystoreDB::make_connection("file::memory:", "file::memory:")?;
1813
1814 KeystoreDB::init_tables(&conn).context("Failed to initialize tables.")?;
1815 Ok(KeystoreDB { conn })
1816 }
1817
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08001818 fn rebind_alias(
1819 db: &mut KeystoreDB,
1820 newid: &KeyIdGuard,
1821 alias: &str,
1822 domain: Domain,
1823 namespace: i64,
1824 ) -> Result<bool> {
1825 db.with_transaction(TransactionBehavior::Immediate, |tx| {
1826 KeystoreDB::rebind_alias(tx, newid, alias, domain, namespace)
1827 })
1828 .context("In rebind_alias.")
1829 }
1830
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001831 #[test]
1832 fn datetime() -> Result<()> {
1833 let conn = Connection::open_in_memory()?;
1834 conn.execute("CREATE TABLE test (ts DATETIME);", NO_PARAMS)?;
1835 let now = SystemTime::now();
1836 let duration = Duration::from_secs(1000);
1837 let then = now.checked_sub(duration).unwrap();
1838 let soon = now.checked_add(duration).unwrap();
1839 conn.execute(
1840 "INSERT INTO test (ts) VALUES (?), (?), (?);",
1841 params![DateTime::try_from(now)?, DateTime::try_from(then)?, DateTime::try_from(soon)?],
1842 )?;
1843 let mut stmt = conn.prepare("SELECT ts FROM test ORDER BY ts ASC;")?;
1844 let mut rows = stmt.query(NO_PARAMS)?;
1845 assert_eq!(DateTime::try_from(then)?, rows.next()?.unwrap().get(0)?);
1846 assert_eq!(DateTime::try_from(now)?, rows.next()?.unwrap().get(0)?);
1847 assert_eq!(DateTime::try_from(soon)?, rows.next()?.unwrap().get(0)?);
1848 assert!(rows.next()?.is_none());
1849 assert!(DateTime::try_from(then)? < DateTime::try_from(now)?);
1850 assert!(DateTime::try_from(then)? < DateTime::try_from(soon)?);
1851 assert!(DateTime::try_from(now)? < DateTime::try_from(soon)?);
1852 Ok(())
1853 }
1854
Joel Galenson0891bc12020-07-20 10:37:03 -07001855 // Ensure that we're using the "injected" random function, not the real one.
1856 #[test]
1857 fn test_mocked_random() {
1858 let rand1 = random();
1859 let rand2 = random();
1860 let rand3 = random();
1861 if rand1 == rand2 {
1862 assert_eq!(rand2 + 1, rand3);
1863 } else {
1864 assert_eq!(rand1 + 1, rand2);
1865 assert_eq!(rand2, rand3);
1866 }
1867 }
Joel Galenson26f4d012020-07-17 14:57:21 -07001868
Joel Galenson26f4d012020-07-17 14:57:21 -07001869 // Test that we have the correct tables.
1870 #[test]
1871 fn test_tables() -> Result<()> {
Janis Danisevskis4df44f42020-08-26 14:40:03 -07001872 let db = new_test_db()?;
Joel Galenson26f4d012020-07-17 14:57:21 -07001873 let tables = db
1874 .conn
Joel Galenson2aab4432020-07-22 15:27:57 -07001875 .prepare("SELECT name from persistent.sqlite_master WHERE type='table' ORDER BY name;")?
Joel Galenson26f4d012020-07-17 14:57:21 -07001876 .query_map(params![], |row| row.get(0))?
1877 .collect::<rusqlite::Result<Vec<String>>>()?;
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001878 assert_eq!(tables.len(), 5);
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001879 assert_eq!(tables[0], "blobentry");
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001880 assert_eq!(tables[1], "grant");
1881 assert_eq!(tables[2], "keyentry");
Janis Danisevskisb42fc182020-12-15 08:41:27 -08001882 assert_eq!(tables[3], "keymetadata");
1883 assert_eq!(tables[4], "keyparameter");
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07001884 let tables = db
1885 .conn
1886 .prepare("SELECT name from perboot.sqlite_master WHERE type='table' ORDER BY name;")?
1887 .query_map(params![], |row| row.get(0))?
1888 .collect::<rusqlite::Result<Vec<String>>>()?;
Hasini Gunasinghe557b1032020-11-10 01:35:30 +00001889
1890 assert_eq!(tables.len(), 2);
1891 assert_eq!(tables[0], "authtoken");
1892 assert_eq!(tables[1], "metadata");
Joel Galenson2aab4432020-07-22 15:27:57 -07001893 Ok(())
1894 }
1895
1896 #[test]
Hasini Gunasinghe557b1032020-11-10 01:35:30 +00001897 fn test_auth_token_table_invariant() -> Result<()> {
1898 let mut db = new_test_db()?;
1899 let auth_token1 = HardwareAuthToken {
1900 challenge: i64::MAX,
1901 userId: 200,
1902 authenticatorId: 200,
1903 authenticatorType: kmhw_authenticator_type(kmhw_authenticator_type::PASSWORD.0),
1904 timestamp: Timestamp { milliSeconds: 500 },
1905 mac: String::from("mac").into_bytes(),
1906 };
1907 db.insert_auth_token(&auth_token1)?;
1908 let auth_tokens_returned = get_auth_tokens(&mut db)?;
1909 assert_eq!(auth_tokens_returned.len(), 1);
1910
1911 // insert another auth token with the same values for the columns in the UNIQUE constraint
1912 // of the auth token table and different value for timestamp
1913 let auth_token2 = HardwareAuthToken {
1914 challenge: i64::MAX,
1915 userId: 200,
1916 authenticatorId: 200,
1917 authenticatorType: kmhw_authenticator_type(kmhw_authenticator_type::PASSWORD.0),
1918 timestamp: Timestamp { milliSeconds: 600 },
1919 mac: String::from("mac").into_bytes(),
1920 };
1921
1922 db.insert_auth_token(&auth_token2)?;
1923 let mut auth_tokens_returned = get_auth_tokens(&mut db)?;
1924 assert_eq!(auth_tokens_returned.len(), 1);
1925
1926 if let Some(auth_token) = auth_tokens_returned.pop() {
1927 assert_eq!(auth_token.auth_token.timestamp.milliSeconds, 600);
1928 }
1929
1930 // insert another auth token with the different values for the columns in the UNIQUE
1931 // constraint of the auth token table
1932 let auth_token3 = HardwareAuthToken {
1933 challenge: i64::MAX,
1934 userId: 201,
1935 authenticatorId: 200,
1936 authenticatorType: kmhw_authenticator_type(kmhw_authenticator_type::PASSWORD.0),
1937 timestamp: Timestamp { milliSeconds: 600 },
1938 mac: String::from("mac").into_bytes(),
1939 };
1940
1941 db.insert_auth_token(&auth_token3)?;
1942 let auth_tokens_returned = get_auth_tokens(&mut db)?;
1943 assert_eq!(auth_tokens_returned.len(), 2);
1944
1945 Ok(())
1946 }
1947
1948 // utility function for test_auth_token_table_invariant()
1949 fn get_auth_tokens(db: &mut KeystoreDB) -> Result<Vec<AuthTokenEntry>> {
1950 let mut stmt = db.conn.prepare("SELECT * from perboot.authtoken;")?;
1951
1952 let auth_token_entries: Vec<AuthTokenEntry> = stmt
1953 .query_map(NO_PARAMS, |row| {
1954 Ok(AuthTokenEntry::new(
1955 HardwareAuthToken {
1956 challenge: row.get(1)?,
1957 userId: row.get(2)?,
1958 authenticatorId: row.get(3)?,
1959 authenticatorType: HardwareAuthenticatorType(row.get(4)?),
1960 timestamp: Timestamp { milliSeconds: row.get(5)? },
1961 mac: row.get(6)?,
1962 },
1963 row.get(7)?,
1964 ))
1965 })?
1966 .collect::<Result<Vec<AuthTokenEntry>, Error>>()?;
1967 Ok(auth_token_entries)
1968 }
1969
1970 #[test]
Joel Galenson2aab4432020-07-22 15:27:57 -07001971 fn test_persistence_for_files() -> Result<()> {
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001972 let temp_dir = TempDir::new("persistent_db_test")?;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001973 let mut db = KeystoreDB::new(temp_dir.path())?;
Joel Galenson2aab4432020-07-22 15:27:57 -07001974
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001975 db.create_key_entry(Domain::APP, 100)?;
Joel Galenson2aab4432020-07-22 15:27:57 -07001976 let entries = get_keyentry(&db)?;
1977 assert_eq!(entries.len(), 1);
Janis Danisevskisbf15d732020-12-08 10:35:26 -08001978
1979 let db = KeystoreDB::new(temp_dir.path())?;
Joel Galenson2aab4432020-07-22 15:27:57 -07001980
1981 let entries_new = get_keyentry(&db)?;
1982 assert_eq!(entries, entries_new);
1983 Ok(())
1984 }
1985
1986 #[test]
Joel Galenson0891bc12020-07-20 10:37:03 -07001987 fn test_create_key_entry() -> Result<()> {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001988 fn extractor(ke: &KeyEntryRow) -> (Domain, i64, Option<&str>) {
Joel Galenson0891bc12020-07-20 10:37:03 -07001989 (ke.domain.unwrap(), ke.namespace.unwrap(), ke.alias.as_deref())
1990 }
1991
Janis Danisevskis93927dd2020-12-23 12:23:08 -08001992 let mut db = new_test_db()?;
Joel Galenson0891bc12020-07-20 10:37:03 -07001993
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001994 db.create_key_entry(Domain::APP, 100)?;
1995 db.create_key_entry(Domain::SELINUX, 101)?;
Joel Galenson0891bc12020-07-20 10:37:03 -07001996
1997 let entries = get_keyentry(&db)?;
1998 assert_eq!(entries.len(), 2);
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07001999 assert_eq!(extractor(&entries[0]), (Domain::APP, 100, None));
2000 assert_eq!(extractor(&entries[1]), (Domain::SELINUX, 101, None));
Joel Galenson0891bc12020-07-20 10:37:03 -07002001
2002 // Test that we must pass in a valid Domain.
2003 check_result_is_error_containing_string(
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002004 db.create_key_entry(Domain::GRANT, 102),
2005 "Domain Domain(1) must be either App or SELinux.",
Joel Galenson0891bc12020-07-20 10:37:03 -07002006 );
2007 check_result_is_error_containing_string(
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002008 db.create_key_entry(Domain::BLOB, 103),
2009 "Domain Domain(3) must be either App or SELinux.",
Joel Galenson0891bc12020-07-20 10:37:03 -07002010 );
2011 check_result_is_error_containing_string(
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002012 db.create_key_entry(Domain::KEY_ID, 104),
2013 "Domain Domain(4) must be either App or SELinux.",
Joel Galenson0891bc12020-07-20 10:37:03 -07002014 );
2015
2016 Ok(())
2017 }
2018
Joel Galenson33c04ad2020-08-03 11:04:38 -07002019 #[test]
2020 fn test_rebind_alias() -> Result<()> {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002021 fn extractor(ke: &KeyEntryRow) -> (Option<Domain>, Option<i64>, Option<&str>) {
Joel Galenson33c04ad2020-08-03 11:04:38 -07002022 (ke.domain, ke.namespace, ke.alias.as_deref())
2023 }
2024
Janis Danisevskis4df44f42020-08-26 14:40:03 -07002025 let mut db = new_test_db()?;
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002026 db.create_key_entry(Domain::APP, 42)?;
2027 db.create_key_entry(Domain::APP, 42)?;
Joel Galenson33c04ad2020-08-03 11:04:38 -07002028 let entries = get_keyentry(&db)?;
2029 assert_eq!(entries.len(), 2);
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002030 assert_eq!(extractor(&entries[0]), (Some(Domain::APP), Some(42), None));
2031 assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), None));
Joel Galenson33c04ad2020-08-03 11:04:38 -07002032
2033 // Test that the first call to rebind_alias sets the alias.
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002034 rebind_alias(&mut db, &KEY_ID_LOCK.get(entries[0].id), "foo", Domain::APP, 42)?;
Joel Galenson33c04ad2020-08-03 11:04:38 -07002035 let entries = get_keyentry(&db)?;
2036 assert_eq!(entries.len(), 2);
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002037 assert_eq!(extractor(&entries[0]), (Some(Domain::APP), Some(42), Some("foo")));
2038 assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), None));
Joel Galenson33c04ad2020-08-03 11:04:38 -07002039
2040 // Test that the second call to rebind_alias also empties the old one.
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002041 rebind_alias(&mut db, &KEY_ID_LOCK.get(entries[1].id), "foo", Domain::APP, 42)?;
Joel Galenson33c04ad2020-08-03 11:04:38 -07002042 let entries = get_keyentry(&db)?;
2043 assert_eq!(entries.len(), 2);
Joel Galenson7fa5c412020-11-19 10:56:54 -08002044 assert_eq!(extractor(&entries[0]), (None, None, None));
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002045 assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), Some("foo")));
Joel Galenson33c04ad2020-08-03 11:04:38 -07002046
2047 // Test that we must pass in a valid Domain.
2048 check_result_is_error_containing_string(
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002049 rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::GRANT, 42),
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002050 "Domain Domain(1) must be either App or SELinux.",
Joel Galenson33c04ad2020-08-03 11:04:38 -07002051 );
2052 check_result_is_error_containing_string(
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002053 rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::BLOB, 42),
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002054 "Domain Domain(3) must be either App or SELinux.",
Joel Galenson33c04ad2020-08-03 11:04:38 -07002055 );
2056 check_result_is_error_containing_string(
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002057 rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::KEY_ID, 42),
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002058 "Domain Domain(4) must be either App or SELinux.",
Joel Galenson33c04ad2020-08-03 11:04:38 -07002059 );
2060
2061 // Test that we correctly handle setting an alias for something that does not exist.
2062 check_result_is_error_containing_string(
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002063 rebind_alias(&mut db, &KEY_ID_LOCK.get(0), "foo", Domain::SELINUX, 42),
Joel Galenson33c04ad2020-08-03 11:04:38 -07002064 "Expected to update a single entry but instead updated 0",
2065 );
2066 // Test that we correctly abort the transaction in this case.
2067 let entries = get_keyentry(&db)?;
2068 assert_eq!(entries.len(), 2);
Joel Galenson7fa5c412020-11-19 10:56:54 -08002069 assert_eq!(extractor(&entries[0]), (None, None, None));
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002070 assert_eq!(extractor(&entries[1]), (Some(Domain::APP), Some(42), Some("foo")));
Joel Galenson33c04ad2020-08-03 11:04:38 -07002071
2072 Ok(())
2073 }
2074
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002075 #[test]
2076 fn test_grant_ungrant() -> Result<()> {
2077 const CALLER_UID: u32 = 15;
2078 const GRANTEE_UID: u32 = 12;
2079 const SELINUX_NAMESPACE: i64 = 7;
2080
2081 let mut db = new_test_db()?;
2082 db.conn.execute(
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002083 "INSERT INTO persistent.keyentry (id, key_type, domain, namespace, alias, state)
2084 VALUES (1, 0, 0, 15, 'key', 1), (2, 0, 2, 7, 'yek', 1);",
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002085 NO_PARAMS,
2086 )?;
2087 let app_key = KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002088 domain: super::Domain::APP,
2089 nspace: 0,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002090 alias: Some("key".to_string()),
2091 blob: None,
2092 };
2093 const PVEC1: KeyPermSet = key_perm_set![KeyPerm::use_(), KeyPerm::get_info()];
2094 const PVEC2: KeyPermSet = key_perm_set![KeyPerm::use_()];
2095
2096 // Reset totally predictable random number generator in case we
2097 // are not the first test running on this thread.
2098 reset_random();
2099 let next_random = 0i64;
2100
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002101 let app_granted_key = db
2102 .grant(app_key.clone(), CALLER_UID, GRANTEE_UID, PVEC1, |k, a| {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002103 assert_eq!(*a, PVEC1);
2104 assert_eq!(
2105 *k,
2106 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002107 domain: super::Domain::APP,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002108 // namespace must be set to the caller_uid.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002109 nspace: CALLER_UID as i64,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002110 alias: Some("key".to_string()),
2111 blob: None,
2112 }
2113 );
2114 Ok(())
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002115 })
2116 .unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002117
2118 assert_eq!(
2119 app_granted_key,
2120 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002121 domain: super::Domain::GRANT,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002122 // The grantid is next_random due to the mock random number generator.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002123 nspace: next_random,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002124 alias: None,
2125 blob: None,
2126 }
2127 );
2128
2129 let selinux_key = KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002130 domain: super::Domain::SELINUX,
2131 nspace: SELINUX_NAMESPACE,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002132 alias: Some("yek".to_string()),
2133 blob: None,
2134 };
2135
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002136 let selinux_granted_key = db
2137 .grant(selinux_key.clone(), CALLER_UID, 12, PVEC1, |k, a| {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002138 assert_eq!(*a, PVEC1);
2139 assert_eq!(
2140 *k,
2141 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002142 domain: super::Domain::SELINUX,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002143 // namespace must be the supplied SELinux
2144 // namespace.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002145 nspace: SELINUX_NAMESPACE,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002146 alias: Some("yek".to_string()),
2147 blob: None,
2148 }
2149 );
2150 Ok(())
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002151 })
2152 .unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002153
2154 assert_eq!(
2155 selinux_granted_key,
2156 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002157 domain: super::Domain::GRANT,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002158 // The grantid is next_random + 1 due to the mock random number generator.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002159 nspace: next_random + 1,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002160 alias: None,
2161 blob: None,
2162 }
2163 );
2164
2165 // This should update the existing grant with PVEC2.
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002166 let selinux_granted_key = db
2167 .grant(selinux_key.clone(), CALLER_UID, 12, PVEC2, |k, a| {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002168 assert_eq!(*a, PVEC2);
2169 assert_eq!(
2170 *k,
2171 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002172 domain: super::Domain::SELINUX,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002173 // namespace must be the supplied SELinux
2174 // namespace.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002175 nspace: SELINUX_NAMESPACE,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002176 alias: Some("yek".to_string()),
2177 blob: None,
2178 }
2179 );
2180 Ok(())
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002181 })
2182 .unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002183
2184 assert_eq!(
2185 selinux_granted_key,
2186 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002187 domain: super::Domain::GRANT,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002188 // Same grant id as before. The entry was only updated.
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002189 nspace: next_random + 1,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002190 alias: None,
2191 blob: None,
2192 }
2193 );
2194
2195 {
2196 // Limiting scope of stmt, because it borrows db.
2197 let mut stmt = db
2198 .conn
Janis Danisevskisbf15d732020-12-08 10:35:26 -08002199 .prepare("SELECT id, grantee, keyentryid, access_vector FROM persistent.grant;")?;
Janis Danisevskisee10b5f2020-09-22 16:42:35 -07002200 let mut rows =
2201 stmt.query_map::<(i64, u32, i64, KeyPermSet), _, _>(NO_PARAMS, |row| {
2202 Ok((
2203 row.get(0)?,
2204 row.get(1)?,
2205 row.get(2)?,
2206 KeyPermSet::from(row.get::<_, i32>(3)?),
2207 ))
2208 })?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002209
2210 let r = rows.next().unwrap().unwrap();
Janis Danisevskisee10b5f2020-09-22 16:42:35 -07002211 assert_eq!(r, (next_random, GRANTEE_UID, 1, PVEC1));
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002212 let r = rows.next().unwrap().unwrap();
Janis Danisevskisee10b5f2020-09-22 16:42:35 -07002213 assert_eq!(r, (next_random + 1, GRANTEE_UID, 2, PVEC2));
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002214 assert!(rows.next().is_none());
2215 }
2216
2217 debug_dump_keyentry_table(&mut db)?;
2218 println!("app_key {:?}", app_key);
2219 println!("selinux_key {:?}", selinux_key);
2220
2221 db.ungrant(app_key, CALLER_UID, GRANTEE_UID, |_| Ok(()))?;
2222 db.ungrant(selinux_key, CALLER_UID, GRANTEE_UID, |_| Ok(()))?;
2223
2224 Ok(())
2225 }
2226
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002227 static TEST_KEY_BLOB: &[u8] = b"my test blob";
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002228 static TEST_CERT_BLOB: &[u8] = b"my test cert";
2229 static TEST_CERT_CHAIN_BLOB: &[u8] = b"my test cert_chain";
2230
2231 #[test]
2232 fn test_insert_blob() -> Result<()> {
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002233 let key_id = KEY_ID_LOCK.get(3000);
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002234 let mut db = new_test_db()?;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002235 db.insert_blob(&key_id, SubComponentType::KEY_BLOB, TEST_KEY_BLOB)?;
2236 db.insert_blob(&key_id, SubComponentType::CERT, TEST_CERT_BLOB)?;
2237 db.insert_blob(&key_id, SubComponentType::CERT_CHAIN, TEST_CERT_CHAIN_BLOB)?;
2238 drop(key_id);
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002239
2240 let mut stmt = db.conn.prepare(
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002241 "SELECT subcomponent_type, keyentryid, blob FROM persistent.blobentry
2242 ORDER BY subcomponent_type ASC;",
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002243 )?;
2244 let mut rows = stmt
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002245 .query_map::<(SubComponentType, i64, Vec<u8>), _, _>(NO_PARAMS, |row| {
2246 Ok((row.get(0)?, row.get(1)?, row.get(2)?))
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002247 })?;
2248 let r = rows.next().unwrap().unwrap();
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002249 assert_eq!(r, (SubComponentType::KEY_BLOB, 3000, TEST_KEY_BLOB.to_vec()));
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002250 let r = rows.next().unwrap().unwrap();
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002251 assert_eq!(r, (SubComponentType::CERT, 3000, TEST_CERT_BLOB.to_vec()));
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002252 let r = rows.next().unwrap().unwrap();
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002253 assert_eq!(r, (SubComponentType::CERT_CHAIN, 3000, TEST_CERT_CHAIN_BLOB.to_vec()));
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002254
2255 Ok(())
2256 }
2257
2258 static TEST_ALIAS: &str = "my super duper key";
2259
2260 #[test]
2261 fn test_insert_and_load_full_keyentry_domain_app() -> Result<()> {
2262 let mut db = new_test_db()?;
Qi Wub9433b52020-12-01 14:52:46 +08002263 let key_id = make_test_key_entry(&mut db, Domain::APP, 1, TEST_ALIAS, None)
Janis Danisevskisaec14592020-11-12 09:41:49 -08002264 .context("test_insert_and_load_full_keyentry_domain_app")?
2265 .0;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002266 let (_key_guard, key_entry) = db
2267 .load_key_entry(
2268 KeyDescriptor {
2269 domain: Domain::APP,
2270 nspace: 0,
2271 alias: Some(TEST_ALIAS.to_string()),
2272 blob: None,
2273 },
2274 KeyType::Client,
2275 KeyEntryLoadBits::BOTH,
2276 1,
2277 |_k, _av| Ok(()),
2278 )
2279 .unwrap();
Qi Wub9433b52020-12-01 14:52:46 +08002280 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id, None));
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002281
2282 db.unbind_key(
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002283 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002284 domain: Domain::APP,
2285 nspace: 0,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002286 alias: Some(TEST_ALIAS.to_string()),
2287 blob: None,
2288 },
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002289 KeyType::Client,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002290 1,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002291 |_, _| Ok(()),
2292 )
2293 .unwrap();
2294
2295 assert_eq!(
2296 Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)),
2297 db.load_key_entry(
2298 KeyDescriptor {
2299 domain: Domain::APP,
2300 nspace: 0,
2301 alias: Some(TEST_ALIAS.to_string()),
2302 blob: None,
2303 },
2304 KeyType::Client,
2305 KeyEntryLoadBits::NONE,
2306 1,
2307 |_k, _av| Ok(()),
2308 )
2309 .unwrap_err()
2310 .root_cause()
2311 .downcast_ref::<KsError>()
2312 );
2313
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002314 Ok(())
2315 }
2316
2317 #[test]
2318 fn test_insert_and_load_full_keyentry_domain_selinux() -> Result<()> {
2319 let mut db = new_test_db()?;
Qi Wub9433b52020-12-01 14:52:46 +08002320 let key_id = make_test_key_entry(&mut db, Domain::SELINUX, 1, TEST_ALIAS, None)
Janis Danisevskisaec14592020-11-12 09:41:49 -08002321 .context("test_insert_and_load_full_keyentry_domain_selinux")?
2322 .0;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002323 let (_key_guard, key_entry) = db
2324 .load_key_entry(
2325 KeyDescriptor {
2326 domain: Domain::SELINUX,
2327 nspace: 1,
2328 alias: Some(TEST_ALIAS.to_string()),
2329 blob: None,
2330 },
2331 KeyType::Client,
2332 KeyEntryLoadBits::BOTH,
2333 1,
2334 |_k, _av| Ok(()),
2335 )
2336 .unwrap();
Qi Wub9433b52020-12-01 14:52:46 +08002337 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id, None));
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002338
2339 db.unbind_key(
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002340 KeyDescriptor {
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002341 domain: Domain::SELINUX,
2342 nspace: 1,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002343 alias: Some(TEST_ALIAS.to_string()),
2344 blob: None,
2345 },
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002346 KeyType::Client,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002347 1,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002348 |_, _| Ok(()),
2349 )
2350 .unwrap();
2351
2352 assert_eq!(
2353 Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)),
2354 db.load_key_entry(
2355 KeyDescriptor {
2356 domain: Domain::SELINUX,
2357 nspace: 1,
2358 alias: Some(TEST_ALIAS.to_string()),
2359 blob: None,
2360 },
2361 KeyType::Client,
2362 KeyEntryLoadBits::NONE,
2363 1,
2364 |_k, _av| Ok(()),
2365 )
2366 .unwrap_err()
2367 .root_cause()
2368 .downcast_ref::<KsError>()
2369 );
2370
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002371 Ok(())
2372 }
2373
2374 #[test]
2375 fn test_insert_and_load_full_keyentry_domain_key_id() -> Result<()> {
2376 let mut db = new_test_db()?;
Qi Wub9433b52020-12-01 14:52:46 +08002377 let key_id = make_test_key_entry(&mut db, Domain::SELINUX, 1, TEST_ALIAS, None)
Janis Danisevskisaec14592020-11-12 09:41:49 -08002378 .context("test_insert_and_load_full_keyentry_domain_key_id")?
2379 .0;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002380 let (_, key_entry) = db
2381 .load_key_entry(
2382 KeyDescriptor { domain: Domain::KEY_ID, nspace: key_id, alias: None, blob: None },
2383 KeyType::Client,
2384 KeyEntryLoadBits::BOTH,
2385 1,
2386 |_k, _av| Ok(()),
2387 )
2388 .unwrap();
2389
Qi Wub9433b52020-12-01 14:52:46 +08002390 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id, None));
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002391
2392 db.unbind_key(
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002393 KeyDescriptor { domain: Domain::KEY_ID, nspace: key_id, alias: None, blob: None },
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002394 KeyType::Client,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002395 1,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002396 |_, _| Ok(()),
2397 )
2398 .unwrap();
2399
2400 assert_eq!(
2401 Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)),
2402 db.load_key_entry(
2403 KeyDescriptor { domain: Domain::KEY_ID, nspace: key_id, alias: None, blob: None },
2404 KeyType::Client,
2405 KeyEntryLoadBits::NONE,
2406 1,
2407 |_k, _av| Ok(()),
2408 )
2409 .unwrap_err()
2410 .root_cause()
2411 .downcast_ref::<KsError>()
2412 );
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002413
2414 Ok(())
2415 }
2416
2417 #[test]
Qi Wub9433b52020-12-01 14:52:46 +08002418 fn test_check_and_update_key_usage_count_with_limited_use_key() -> Result<()> {
2419 let mut db = new_test_db()?;
2420 let key_id = make_test_key_entry(&mut db, Domain::SELINUX, 1, TEST_ALIAS, Some(123))
2421 .context("test_check_and_update_key_usage_count_with_limited_use_key")?
2422 .0;
2423 // Update the usage count of the limited use key.
2424 db.check_and_update_key_usage_count(key_id)?;
2425
2426 let (_key_guard, key_entry) = db.load_key_entry(
2427 KeyDescriptor { domain: Domain::KEY_ID, nspace: key_id, alias: None, blob: None },
2428 KeyType::Client,
2429 KeyEntryLoadBits::BOTH,
2430 1,
2431 |_k, _av| Ok(()),
2432 )?;
2433
2434 // The usage count is decremented now.
2435 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id, Some(122)));
2436
2437 Ok(())
2438 }
2439
2440 #[test]
2441 fn test_check_and_update_key_usage_count_with_exhausted_limited_use_key() -> Result<()> {
2442 let mut db = new_test_db()?;
2443 let key_id = make_test_key_entry(&mut db, Domain::SELINUX, 1, TEST_ALIAS, Some(1))
2444 .context("test_check_and_update_key_usage_count_with_exhausted_limited_use_key")?
2445 .0;
2446 // Update the usage count of the limited use key.
2447 db.check_and_update_key_usage_count(key_id).expect(concat!(
2448 "In test_check_and_update_key_usage_count_with_exhausted_limited_use_key: ",
2449 "This should succeed."
2450 ));
2451
2452 // Try to update the exhausted limited use key.
2453 let e = db.check_and_update_key_usage_count(key_id).expect_err(concat!(
2454 "In test_check_and_update_key_usage_count_with_exhausted_limited_use_key: ",
2455 "This should fail."
2456 ));
2457 assert_eq!(
2458 &KsError::Km(ErrorCode::INVALID_KEY_BLOB),
2459 e.root_cause().downcast_ref::<KsError>().unwrap()
2460 );
2461
2462 Ok(())
2463 }
2464
2465 #[test]
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002466 fn test_insert_and_load_full_keyentry_from_grant() -> Result<()> {
2467 let mut db = new_test_db()?;
Qi Wub9433b52020-12-01 14:52:46 +08002468 let key_id = make_test_key_entry(&mut db, Domain::APP, 1, TEST_ALIAS, None)
Janis Danisevskisaec14592020-11-12 09:41:49 -08002469 .context("test_insert_and_load_full_keyentry_from_grant")?
2470 .0;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002471
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002472 let granted_key = db
2473 .grant(
2474 KeyDescriptor {
2475 domain: Domain::APP,
2476 nspace: 0,
2477 alias: Some(TEST_ALIAS.to_string()),
2478 blob: None,
2479 },
2480 1,
2481 2,
2482 key_perm_set![KeyPerm::use_()],
2483 |_k, _av| Ok(()),
2484 )
2485 .unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002486
2487 debug_dump_grant_table(&mut db)?;
2488
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002489 let (_key_guard, key_entry) = db
2490 .load_key_entry(
2491 granted_key.clone(),
2492 KeyType::Client,
2493 KeyEntryLoadBits::BOTH,
2494 2,
2495 |k, av| {
2496 assert_eq!(Domain::GRANT, k.domain);
2497 assert!(av.unwrap().includes(KeyPerm::use_()));
2498 Ok(())
2499 },
2500 )
2501 .unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002502
Qi Wub9433b52020-12-01 14:52:46 +08002503 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id, None));
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002504
2505 db.unbind_key(granted_key.clone(), KeyType::Client, 2, |_, _| Ok(())).unwrap();
2506
2507 assert_eq!(
2508 Some(&KsError::Rc(ResponseCode::KEY_NOT_FOUND)),
2509 db.load_key_entry(
2510 granted_key,
2511 KeyType::Client,
2512 KeyEntryLoadBits::NONE,
2513 2,
2514 |_k, _av| Ok(()),
2515 )
2516 .unwrap_err()
2517 .root_cause()
2518 .downcast_ref::<KsError>()
2519 );
2520
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002521 Ok(())
2522 }
2523
Janis Danisevskisaec14592020-11-12 09:41:49 -08002524 static KEY_LOCK_TEST_ALIAS: &str = "my super duper locked key";
2525
Janis Danisevskisaec14592020-11-12 09:41:49 -08002526 #[test]
2527 fn test_insert_and_load_full_keyentry_domain_app_concurrently() -> Result<()> {
2528 let handle = {
Janis Danisevskisbf15d732020-12-08 10:35:26 -08002529 let temp_dir = Arc::new(TempDir::new("id_lock_test")?);
2530 let temp_dir_clone = temp_dir.clone();
2531 let mut db = KeystoreDB::new(temp_dir.path())?;
Qi Wub9433b52020-12-01 14:52:46 +08002532 let key_id = make_test_key_entry(&mut db, Domain::APP, 33, KEY_LOCK_TEST_ALIAS, None)
Janis Danisevskisaec14592020-11-12 09:41:49 -08002533 .context("test_insert_and_load_full_keyentry_domain_app")?
2534 .0;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002535 let (_key_guard, key_entry) = db
2536 .load_key_entry(
2537 KeyDescriptor {
2538 domain: Domain::APP,
2539 nspace: 0,
2540 alias: Some(KEY_LOCK_TEST_ALIAS.to_string()),
2541 blob: None,
2542 },
2543 KeyType::Client,
2544 KeyEntryLoadBits::BOTH,
2545 33,
2546 |_k, _av| Ok(()),
2547 )
2548 .unwrap();
Qi Wub9433b52020-12-01 14:52:46 +08002549 assert_eq!(key_entry, make_test_key_entry_test_vector(key_id, None));
Janis Danisevskisaec14592020-11-12 09:41:49 -08002550 let state = Arc::new(AtomicU8::new(1));
2551 let state2 = state.clone();
2552
2553 // Spawning a second thread that attempts to acquire the key id lock
2554 // for the same key as the primary thread. The primary thread then
2555 // waits, thereby forcing the secondary thread into the second stage
2556 // of acquiring the lock (see KEY ID LOCK 2/2 above).
2557 // The test succeeds if the secondary thread observes the transition
2558 // of `state` from 1 to 2, despite having a whole second to overtake
2559 // the primary thread.
2560 let handle = thread::spawn(move || {
Janis Danisevskisbf15d732020-12-08 10:35:26 -08002561 let temp_dir = temp_dir_clone;
2562 let mut db = KeystoreDB::new(temp_dir.path()).unwrap();
Janis Danisevskisaec14592020-11-12 09:41:49 -08002563 assert!(db
2564 .load_key_entry(
2565 KeyDescriptor {
2566 domain: Domain::APP,
2567 nspace: 0,
2568 alias: Some(KEY_LOCK_TEST_ALIAS.to_string()),
2569 blob: None,
2570 },
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002571 KeyType::Client,
Janis Danisevskisaec14592020-11-12 09:41:49 -08002572 KeyEntryLoadBits::BOTH,
2573 33,
2574 |_k, _av| Ok(()),
2575 )
2576 .is_ok());
2577 // We should only see a 2 here because we can only return
2578 // from load_key_entry when the `_key_guard` expires,
2579 // which happens at the end of the scope.
2580 assert_eq!(2, state2.load(Ordering::Relaxed));
2581 });
2582
2583 thread::sleep(std::time::Duration::from_millis(1000));
2584
2585 assert_eq!(Ok(1), state.compare_exchange(1, 2, Ordering::Relaxed, Ordering::Relaxed));
2586
2587 // Return the handle from this scope so we can join with the
2588 // secondary thread after the key id lock has expired.
2589 handle
2590 // This is where the `_key_guard` goes out of scope,
2591 // which is the reason for concurrent load_key_entry on the same key
2592 // to unblock.
2593 };
2594 // Join with the secondary thread and unwrap, to propagate failing asserts to the
2595 // main test thread. We will not see failing asserts in secondary threads otherwise.
2596 handle.join().unwrap();
2597 Ok(())
2598 }
2599
Janis Danisevskise92a5e62020-12-02 12:57:41 -08002600 #[test]
2601 fn list() -> Result<()> {
2602 let temp_dir = TempDir::new("list_test")?;
2603 let mut db = KeystoreDB::new(temp_dir.path())?;
2604 static LIST_O_ENTRIES: &[(Domain, i64, &str)] = &[
2605 (Domain::APP, 1, "test1"),
2606 (Domain::APP, 1, "test2"),
2607 (Domain::APP, 1, "test3"),
2608 (Domain::APP, 1, "test4"),
2609 (Domain::APP, 1, "test5"),
2610 (Domain::APP, 1, "test6"),
2611 (Domain::APP, 1, "test7"),
2612 (Domain::APP, 2, "test1"),
2613 (Domain::APP, 2, "test2"),
2614 (Domain::APP, 2, "test3"),
2615 (Domain::APP, 2, "test4"),
2616 (Domain::APP, 2, "test5"),
2617 (Domain::APP, 2, "test6"),
2618 (Domain::APP, 2, "test8"),
2619 (Domain::SELINUX, 100, "test1"),
2620 (Domain::SELINUX, 100, "test2"),
2621 (Domain::SELINUX, 100, "test3"),
2622 (Domain::SELINUX, 100, "test4"),
2623 (Domain::SELINUX, 100, "test5"),
2624 (Domain::SELINUX, 100, "test6"),
2625 (Domain::SELINUX, 100, "test9"),
2626 ];
2627
2628 let list_o_keys: Vec<(i64, i64)> = LIST_O_ENTRIES
2629 .iter()
2630 .map(|(domain, ns, alias)| {
Qi Wub9433b52020-12-01 14:52:46 +08002631 let entry = make_test_key_entry(&mut db, *domain, *ns, *alias, None)
2632 .unwrap_or_else(|e| {
Janis Danisevskise92a5e62020-12-02 12:57:41 -08002633 panic!("Failed to insert {:?} {} {}. Error {:?}", domain, ns, alias, e)
2634 });
2635 (entry.id(), *ns)
2636 })
2637 .collect();
2638
2639 for (domain, namespace) in
2640 &[(Domain::APP, 1i64), (Domain::APP, 2i64), (Domain::SELINUX, 100i64)]
2641 {
2642 let mut list_o_descriptors: Vec<KeyDescriptor> = LIST_O_ENTRIES
2643 .iter()
2644 .filter_map(|(domain, ns, alias)| match ns {
2645 ns if *ns == *namespace => Some(KeyDescriptor {
2646 domain: *domain,
2647 nspace: *ns,
2648 alias: Some(alias.to_string()),
2649 blob: None,
2650 }),
2651 _ => None,
2652 })
2653 .collect();
2654 list_o_descriptors.sort();
2655 let mut list_result = db.list(*domain, *namespace)?;
2656 list_result.sort();
2657 assert_eq!(list_o_descriptors, list_result);
2658
2659 let mut list_o_ids: Vec<i64> = list_o_descriptors
2660 .into_iter()
2661 .map(|d| {
2662 let (_, entry) = db
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002663 .load_key_entry(
2664 d,
2665 KeyType::Client,
2666 KeyEntryLoadBits::NONE,
2667 *namespace as u32,
2668 |_, _| Ok(()),
2669 )
Janis Danisevskise92a5e62020-12-02 12:57:41 -08002670 .unwrap();
2671 entry.id()
2672 })
2673 .collect();
2674 list_o_ids.sort_unstable();
2675 let mut loaded_entries: Vec<i64> = list_o_keys
2676 .iter()
2677 .filter_map(|(id, ns)| match ns {
2678 ns if *ns == *namespace => Some(*id),
2679 _ => None,
2680 })
2681 .collect();
2682 loaded_entries.sort_unstable();
2683 assert_eq!(list_o_ids, loaded_entries);
2684 }
2685 assert_eq!(Vec::<KeyDescriptor>::new(), db.list(Domain::SELINUX, 101)?);
2686
2687 Ok(())
2688 }
2689
Joel Galenson0891bc12020-07-20 10:37:03 -07002690 // Helpers
2691
2692 // Checks that the given result is an error containing the given string.
2693 fn check_result_is_error_containing_string<T>(result: Result<T>, target: &str) {
2694 let error_str = format!(
2695 "{:#?}",
2696 result.err().unwrap_or_else(|| panic!("Expected the error: {}", target))
2697 );
2698 assert!(
2699 error_str.contains(target),
2700 "The string \"{}\" should contain \"{}\"",
2701 error_str,
2702 target
2703 );
2704 }
2705
Joel Galenson2aab4432020-07-22 15:27:57 -07002706 #[derive(Debug, PartialEq)]
Joel Galenson0891bc12020-07-20 10:37:03 -07002707 #[allow(dead_code)]
2708 struct KeyEntryRow {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002709 id: i64,
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002710 key_type: KeyType,
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002711 domain: Option<Domain>,
Joel Galenson0891bc12020-07-20 10:37:03 -07002712 namespace: Option<i64>,
2713 alias: Option<String>,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002714 state: KeyLifeCycle,
Joel Galenson0891bc12020-07-20 10:37:03 -07002715 }
2716
2717 fn get_keyentry(db: &KeystoreDB) -> Result<Vec<KeyEntryRow>> {
2718 db.conn
Joel Galenson2aab4432020-07-22 15:27:57 -07002719 .prepare("SELECT * FROM persistent.keyentry;")?
Joel Galenson0891bc12020-07-20 10:37:03 -07002720 .query_map(NO_PARAMS, |row| {
Joel Galenson0891bc12020-07-20 10:37:03 -07002721 Ok(KeyEntryRow {
2722 id: row.get(0)?,
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002723 key_type: row.get(1)?,
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002724 domain: match row.get(2)? {
2725 Some(i) => Some(Domain(i)),
2726 None => None,
2727 },
Joel Galenson0891bc12020-07-20 10:37:03 -07002728 namespace: row.get(3)?,
2729 alias: row.get(4)?,
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002730 state: row.get(5)?,
Joel Galenson0891bc12020-07-20 10:37:03 -07002731 })
2732 })?
2733 .map(|r| r.context("Could not read keyentry row."))
2734 .collect::<Result<Vec<_>>>()
2735 }
2736
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07002737 // Note: The parameters and SecurityLevel associations are nonsensical. This
2738 // collection is only used to check if the parameters are preserved as expected by the
2739 // database.
Qi Wub9433b52020-12-01 14:52:46 +08002740 fn make_test_params(max_usage_count: Option<i32>) -> Vec<KeyParameter> {
2741 let mut params = vec![
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07002742 KeyParameter::new(KeyParameterValue::Invalid, SecurityLevel::TRUSTED_ENVIRONMENT),
2743 KeyParameter::new(
2744 KeyParameterValue::KeyPurpose(KeyPurpose::SIGN),
2745 SecurityLevel::TRUSTED_ENVIRONMENT,
2746 ),
2747 KeyParameter::new(
2748 KeyParameterValue::KeyPurpose(KeyPurpose::DECRYPT),
2749 SecurityLevel::TRUSTED_ENVIRONMENT,
2750 ),
2751 KeyParameter::new(
2752 KeyParameterValue::Algorithm(Algorithm::RSA),
2753 SecurityLevel::TRUSTED_ENVIRONMENT,
2754 ),
2755 KeyParameter::new(KeyParameterValue::KeySize(1024), SecurityLevel::TRUSTED_ENVIRONMENT),
2756 KeyParameter::new(
2757 KeyParameterValue::BlockMode(BlockMode::ECB),
2758 SecurityLevel::TRUSTED_ENVIRONMENT,
2759 ),
2760 KeyParameter::new(
2761 KeyParameterValue::BlockMode(BlockMode::GCM),
2762 SecurityLevel::TRUSTED_ENVIRONMENT,
2763 ),
2764 KeyParameter::new(KeyParameterValue::Digest(Digest::NONE), SecurityLevel::STRONGBOX),
2765 KeyParameter::new(
2766 KeyParameterValue::Digest(Digest::MD5),
2767 SecurityLevel::TRUSTED_ENVIRONMENT,
2768 ),
2769 KeyParameter::new(
2770 KeyParameterValue::Digest(Digest::SHA_2_224),
2771 SecurityLevel::TRUSTED_ENVIRONMENT,
2772 ),
2773 KeyParameter::new(
2774 KeyParameterValue::Digest(Digest::SHA_2_256),
2775 SecurityLevel::STRONGBOX,
2776 ),
2777 KeyParameter::new(
2778 KeyParameterValue::PaddingMode(PaddingMode::NONE),
2779 SecurityLevel::TRUSTED_ENVIRONMENT,
2780 ),
2781 KeyParameter::new(
2782 KeyParameterValue::PaddingMode(PaddingMode::RSA_OAEP),
2783 SecurityLevel::TRUSTED_ENVIRONMENT,
2784 ),
2785 KeyParameter::new(
2786 KeyParameterValue::PaddingMode(PaddingMode::RSA_PSS),
2787 SecurityLevel::STRONGBOX,
2788 ),
2789 KeyParameter::new(
2790 KeyParameterValue::PaddingMode(PaddingMode::RSA_PKCS1_1_5_SIGN),
2791 SecurityLevel::TRUSTED_ENVIRONMENT,
2792 ),
2793 KeyParameter::new(KeyParameterValue::CallerNonce, SecurityLevel::TRUSTED_ENVIRONMENT),
2794 KeyParameter::new(KeyParameterValue::MinMacLength(256), SecurityLevel::STRONGBOX),
2795 KeyParameter::new(
2796 KeyParameterValue::EcCurve(EcCurve::P_224),
2797 SecurityLevel::TRUSTED_ENVIRONMENT,
2798 ),
2799 KeyParameter::new(KeyParameterValue::EcCurve(EcCurve::P_256), SecurityLevel::STRONGBOX),
2800 KeyParameter::new(
2801 KeyParameterValue::EcCurve(EcCurve::P_384),
2802 SecurityLevel::TRUSTED_ENVIRONMENT,
2803 ),
2804 KeyParameter::new(
2805 KeyParameterValue::EcCurve(EcCurve::P_521),
2806 SecurityLevel::TRUSTED_ENVIRONMENT,
2807 ),
2808 KeyParameter::new(
2809 KeyParameterValue::RSAPublicExponent(3),
2810 SecurityLevel::TRUSTED_ENVIRONMENT,
2811 ),
2812 KeyParameter::new(
2813 KeyParameterValue::IncludeUniqueID,
2814 SecurityLevel::TRUSTED_ENVIRONMENT,
2815 ),
2816 KeyParameter::new(KeyParameterValue::BootLoaderOnly, SecurityLevel::STRONGBOX),
2817 KeyParameter::new(KeyParameterValue::RollbackResistance, SecurityLevel::STRONGBOX),
2818 KeyParameter::new(
2819 KeyParameterValue::ActiveDateTime(1234567890),
2820 SecurityLevel::STRONGBOX,
2821 ),
2822 KeyParameter::new(
2823 KeyParameterValue::OriginationExpireDateTime(1234567890),
2824 SecurityLevel::TRUSTED_ENVIRONMENT,
2825 ),
2826 KeyParameter::new(
2827 KeyParameterValue::UsageExpireDateTime(1234567890),
2828 SecurityLevel::TRUSTED_ENVIRONMENT,
2829 ),
2830 KeyParameter::new(
2831 KeyParameterValue::MinSecondsBetweenOps(1234567890),
2832 SecurityLevel::TRUSTED_ENVIRONMENT,
2833 ),
2834 KeyParameter::new(
2835 KeyParameterValue::MaxUsesPerBoot(1234567890),
2836 SecurityLevel::TRUSTED_ENVIRONMENT,
2837 ),
2838 KeyParameter::new(KeyParameterValue::UserID(1), SecurityLevel::STRONGBOX),
2839 KeyParameter::new(KeyParameterValue::UserSecureID(42), SecurityLevel::STRONGBOX),
2840 KeyParameter::new(
2841 KeyParameterValue::NoAuthRequired,
2842 SecurityLevel::TRUSTED_ENVIRONMENT,
2843 ),
2844 KeyParameter::new(
2845 KeyParameterValue::HardwareAuthenticatorType(HardwareAuthenticatorType::PASSWORD),
2846 SecurityLevel::TRUSTED_ENVIRONMENT,
2847 ),
2848 KeyParameter::new(KeyParameterValue::AuthTimeout(1234567890), SecurityLevel::SOFTWARE),
2849 KeyParameter::new(KeyParameterValue::AllowWhileOnBody, SecurityLevel::SOFTWARE),
2850 KeyParameter::new(
2851 KeyParameterValue::TrustedUserPresenceRequired,
2852 SecurityLevel::TRUSTED_ENVIRONMENT,
2853 ),
2854 KeyParameter::new(
2855 KeyParameterValue::TrustedConfirmationRequired,
2856 SecurityLevel::TRUSTED_ENVIRONMENT,
2857 ),
2858 KeyParameter::new(
2859 KeyParameterValue::UnlockedDeviceRequired,
2860 SecurityLevel::TRUSTED_ENVIRONMENT,
2861 ),
2862 KeyParameter::new(
2863 KeyParameterValue::ApplicationID(vec![1u8, 2u8, 3u8, 4u8]),
2864 SecurityLevel::SOFTWARE,
2865 ),
2866 KeyParameter::new(
2867 KeyParameterValue::ApplicationData(vec![4u8, 3u8, 2u8, 1u8]),
2868 SecurityLevel::SOFTWARE,
2869 ),
2870 KeyParameter::new(
2871 KeyParameterValue::CreationDateTime(12345677890),
2872 SecurityLevel::SOFTWARE,
2873 ),
2874 KeyParameter::new(
2875 KeyParameterValue::KeyOrigin(KeyOrigin::GENERATED),
2876 SecurityLevel::TRUSTED_ENVIRONMENT,
2877 ),
2878 KeyParameter::new(
2879 KeyParameterValue::RootOfTrust(vec![3u8, 2u8, 1u8, 4u8]),
2880 SecurityLevel::TRUSTED_ENVIRONMENT,
2881 ),
2882 KeyParameter::new(KeyParameterValue::OSVersion(1), SecurityLevel::TRUSTED_ENVIRONMENT),
2883 KeyParameter::new(KeyParameterValue::OSPatchLevel(2), SecurityLevel::SOFTWARE),
2884 KeyParameter::new(
2885 KeyParameterValue::UniqueID(vec![4u8, 3u8, 1u8, 2u8]),
2886 SecurityLevel::SOFTWARE,
2887 ),
2888 KeyParameter::new(
2889 KeyParameterValue::AttestationChallenge(vec![4u8, 3u8, 1u8, 2u8]),
2890 SecurityLevel::TRUSTED_ENVIRONMENT,
2891 ),
2892 KeyParameter::new(
2893 KeyParameterValue::AttestationApplicationID(vec![4u8, 3u8, 1u8, 2u8]),
2894 SecurityLevel::TRUSTED_ENVIRONMENT,
2895 ),
2896 KeyParameter::new(
2897 KeyParameterValue::AttestationIdBrand(vec![4u8, 3u8, 1u8, 2u8]),
2898 SecurityLevel::TRUSTED_ENVIRONMENT,
2899 ),
2900 KeyParameter::new(
2901 KeyParameterValue::AttestationIdDevice(vec![4u8, 3u8, 1u8, 2u8]),
2902 SecurityLevel::TRUSTED_ENVIRONMENT,
2903 ),
2904 KeyParameter::new(
2905 KeyParameterValue::AttestationIdProduct(vec![4u8, 3u8, 1u8, 2u8]),
2906 SecurityLevel::TRUSTED_ENVIRONMENT,
2907 ),
2908 KeyParameter::new(
2909 KeyParameterValue::AttestationIdSerial(vec![4u8, 3u8, 1u8, 2u8]),
2910 SecurityLevel::TRUSTED_ENVIRONMENT,
2911 ),
2912 KeyParameter::new(
2913 KeyParameterValue::AttestationIdIMEI(vec![4u8, 3u8, 1u8, 2u8]),
2914 SecurityLevel::TRUSTED_ENVIRONMENT,
2915 ),
2916 KeyParameter::new(
2917 KeyParameterValue::AttestationIdMEID(vec![4u8, 3u8, 1u8, 2u8]),
2918 SecurityLevel::TRUSTED_ENVIRONMENT,
2919 ),
2920 KeyParameter::new(
2921 KeyParameterValue::AttestationIdManufacturer(vec![4u8, 3u8, 1u8, 2u8]),
2922 SecurityLevel::TRUSTED_ENVIRONMENT,
2923 ),
2924 KeyParameter::new(
2925 KeyParameterValue::AttestationIdModel(vec![4u8, 3u8, 1u8, 2u8]),
2926 SecurityLevel::TRUSTED_ENVIRONMENT,
2927 ),
2928 KeyParameter::new(
2929 KeyParameterValue::VendorPatchLevel(3),
2930 SecurityLevel::TRUSTED_ENVIRONMENT,
2931 ),
2932 KeyParameter::new(
2933 KeyParameterValue::BootPatchLevel(4),
2934 SecurityLevel::TRUSTED_ENVIRONMENT,
2935 ),
2936 KeyParameter::new(
2937 KeyParameterValue::AssociatedData(vec![4u8, 3u8, 1u8, 2u8]),
2938 SecurityLevel::TRUSTED_ENVIRONMENT,
2939 ),
2940 KeyParameter::new(
2941 KeyParameterValue::Nonce(vec![4u8, 3u8, 1u8, 2u8]),
2942 SecurityLevel::TRUSTED_ENVIRONMENT,
2943 ),
2944 KeyParameter::new(
2945 KeyParameterValue::MacLength(256),
2946 SecurityLevel::TRUSTED_ENVIRONMENT,
2947 ),
2948 KeyParameter::new(
2949 KeyParameterValue::ResetSinceIdRotation,
2950 SecurityLevel::TRUSTED_ENVIRONMENT,
2951 ),
2952 KeyParameter::new(
2953 KeyParameterValue::ConfirmationToken(vec![5u8, 5u8, 5u8, 5u8]),
2954 SecurityLevel::TRUSTED_ENVIRONMENT,
2955 ),
Qi Wub9433b52020-12-01 14:52:46 +08002956 ];
2957 if let Some(value) = max_usage_count {
2958 params.push(KeyParameter::new(
2959 KeyParameterValue::UsageCountLimit(value),
2960 SecurityLevel::SOFTWARE,
2961 ));
2962 }
2963 params
Janis Danisevskis3f322cb2020-09-03 14:46:22 -07002964 }
2965
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002966 fn make_test_key_entry(
2967 db: &mut KeystoreDB,
Janis Danisevskisc5b210b2020-09-11 13:27:37 -07002968 domain: Domain,
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002969 namespace: i64,
2970 alias: &str,
Qi Wub9433b52020-12-01 14:52:46 +08002971 max_usage_count: Option<i32>,
Janis Danisevskisaec14592020-11-12 09:41:49 -08002972 ) -> Result<KeyIdGuard> {
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002973 let key_id = db.create_key_entry(domain, namespace)?;
Janis Danisevskis93927dd2020-12-23 12:23:08 -08002974 db.insert_blob(&key_id, SubComponentType::KEY_BLOB, TEST_KEY_BLOB)?;
2975 db.insert_blob(&key_id, SubComponentType::CERT, TEST_CERT_BLOB)?;
2976 db.insert_blob(&key_id, SubComponentType::CERT_CHAIN, TEST_CERT_CHAIN_BLOB)?;
Qi Wub9433b52020-12-01 14:52:46 +08002977
2978 let params = make_test_params(max_usage_count);
2979 db.insert_keyparameter(&key_id, &params)?;
2980
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002981 let mut metadata = KeyMetaData::new();
2982 metadata.add(KeyMetaEntry::EncryptedBy(EncryptedBy::Password));
2983 metadata.add(KeyMetaEntry::Salt(vec![1, 2, 3]));
2984 metadata.add(KeyMetaEntry::Iv(vec![2, 3, 1]));
2985 metadata.add(KeyMetaEntry::AeadTag(vec![3, 1, 2]));
2986 db.insert_key_metadata(&key_id, &metadata)?;
Janis Danisevskis4507f3b2021-01-13 16:34:39 -08002987 rebind_alias(db, &key_id, alias, domain, namespace)?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07002988 Ok(key_id)
2989 }
2990
Qi Wub9433b52020-12-01 14:52:46 +08002991 fn make_test_key_entry_test_vector(key_id: i64, max_usage_count: Option<i32>) -> KeyEntry {
2992 let params = make_test_params(max_usage_count);
2993
Janis Danisevskisb42fc182020-12-15 08:41:27 -08002994 let mut metadata = KeyMetaData::new();
2995 metadata.add(KeyMetaEntry::EncryptedBy(EncryptedBy::Password));
2996 metadata.add(KeyMetaEntry::Salt(vec![1, 2, 3]));
2997 metadata.add(KeyMetaEntry::Iv(vec![2, 3, 1]));
2998 metadata.add(KeyMetaEntry::AeadTag(vec![3, 1, 2]));
2999
3000 KeyEntry {
3001 id: key_id,
3002 km_blob: Some(TEST_KEY_BLOB.to_vec()),
3003 cert: Some(TEST_CERT_BLOB.to_vec()),
3004 cert_chain: Some(TEST_CERT_CHAIN_BLOB.to_vec()),
3005 sec_level: SecurityLevel::TRUSTED_ENVIRONMENT,
Qi Wub9433b52020-12-01 14:52:46 +08003006 parameters: params,
Janis Danisevskisb42fc182020-12-15 08:41:27 -08003007 metadata,
3008 }
3009 }
3010
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003011 fn debug_dump_keyentry_table(db: &mut KeystoreDB) -> Result<()> {
Janis Danisevskis93927dd2020-12-23 12:23:08 -08003012 let mut stmt = db.conn.prepare(
3013 "SELECT id, key_type, domain, namespace, alias, state FROM persistent.keyentry;",
3014 )?;
3015 let rows = stmt.query_map::<(i64, KeyType, i32, i64, String, KeyLifeCycle), _, _>(
3016 NO_PARAMS,
3017 |row| {
3018 Ok((row.get(0)?, row.get(1)?, row.get(2)?, row.get(3)?, row.get(4)?, row.get(5)?))
3019 },
3020 )?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003021
3022 println!("Key entry table rows:");
3023 for r in rows {
Janis Danisevskis93927dd2020-12-23 12:23:08 -08003024 let (id, key_type, domain, namespace, alias, state) = r.unwrap();
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003025 println!(
Janis Danisevskis93927dd2020-12-23 12:23:08 -08003026 " id: {} KeyType: {:?} Domain: {} Namespace: {} Alias: {} State: {:?}",
3027 id, key_type, domain, namespace, alias, state
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003028 );
3029 }
3030 Ok(())
3031 }
3032
3033 fn debug_dump_grant_table(db: &mut KeystoreDB) -> Result<()> {
Janis Danisevskisbf15d732020-12-08 10:35:26 -08003034 let mut stmt = db
3035 .conn
3036 .prepare("SELECT id, grantee, keyentryid, access_vector FROM persistent.grant;")?;
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003037 let rows = stmt.query_map::<(i64, i64, i64, i64), _, _>(NO_PARAMS, |row| {
3038 Ok((row.get(0)?, row.get(1)?, row.get(2)?, row.get(3)?))
3039 })?;
3040
3041 println!("Grant table rows:");
3042 for r in rows {
3043 let (id, gt, ki, av) = r.unwrap();
3044 println!(" id: {} grantee: {} key_id: {} access_vector: {}", id, gt, ki, av);
3045 }
3046 Ok(())
3047 }
3048
Joel Galenson0891bc12020-07-20 10:37:03 -07003049 // Use a custom random number generator that repeats each number once.
3050 // This allows us to test repeated elements.
3051
3052 thread_local! {
3053 static RANDOM_COUNTER: RefCell<i64> = RefCell::new(0);
3054 }
3055
Janis Danisevskis63f7bc82020-09-03 10:12:56 -07003056 fn reset_random() {
3057 RANDOM_COUNTER.with(|counter| {
3058 *counter.borrow_mut() = 0;
3059 })
3060 }
3061
Joel Galenson0891bc12020-07-20 10:37:03 -07003062 pub fn random() -> i64 {
3063 RANDOM_COUNTER.with(|counter| {
3064 let result = *counter.borrow() / 2;
3065 *counter.borrow_mut() += 1;
3066 result
3067 })
3068 }
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00003069
3070 #[test]
3071 fn test_last_off_body() -> Result<()> {
3072 let mut db = new_test_db()?;
Janis Danisevskis5ed8c532021-01-11 14:19:42 -08003073 db.insert_last_off_body(MonotonicRawTime::now())?;
Hasini Gunasinghef70cf8e2020-11-11 01:02:41 +00003074 let tx = db.conn.transaction_with_behavior(TransactionBehavior::Immediate)?;
3075 let last_off_body_1 = KeystoreDB::get_last_off_body(&tx)?;
3076 tx.commit()?;
3077 let one_second = Duration::from_secs(1);
3078 thread::sleep(one_second);
3079 db.update_last_off_body(MonotonicRawTime::now())?;
3080 let tx2 = db.conn.transaction_with_behavior(TransactionBehavior::Immediate)?;
3081 let last_off_body_2 = KeystoreDB::get_last_off_body(&tx2)?;
3082 tx2.commit()?;
3083 assert!(last_off_body_1.seconds() < last_off_body_2.seconds());
3084 Ok(())
3085 }
Joel Galenson26f4d012020-07-17 14:57:21 -07003086}