Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 1 | // Copyright 2020, The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Hasini Gunasinghe | 0e16145 | 2021-01-27 19:34:37 +0000 | [diff] [blame] | 15 | //! This module implements IKeystoreAuthorization AIDL interface. |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 16 | |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 17 | use crate::error::Error as KeystoreError; |
Hasini Gunasinghe | 3ed5da7 | 2021-02-04 15:18:54 +0000 | [diff] [blame] | 18 | use crate::globals::{ENFORCEMENTS, SUPER_KEY, DB, LEGACY_MIGRATOR}; |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 19 | use crate::permission::KeystorePerm; |
Hasini Gunasinghe | 731e3c8 | 2021-02-06 00:56:28 +0000 | [diff] [blame] | 20 | use crate::super_key::UserState; |
Hasini Gunasinghe | 5a893e8 | 2021-05-05 14:32:32 +0000 | [diff] [blame] | 21 | use crate::utils::{check_keystore_permission, watchdog as wd}; |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 22 | use android_hardware_security_keymint::aidl::android::hardware::security::keymint::{ |
Hasini Gunasinghe | da89555 | 2021-01-27 19:34:37 +0000 | [diff] [blame] | 23 | HardwareAuthToken::HardwareAuthToken, |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 24 | }; |
Andrew Walbran | de45c8b | 2021-04-13 14:42:38 +0000 | [diff] [blame] | 25 | use android_security_authorization::binder::{BinderFeatures,ExceptionCode, Interface, Result as BinderResult, |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 26 | Strong, Status as BinderStatus}; |
| 27 | use android_security_authorization::aidl::android::security::authorization::{ |
| 28 | IKeystoreAuthorization::BnKeystoreAuthorization, IKeystoreAuthorization::IKeystoreAuthorization, |
| 29 | LockScreenEvent::LockScreenEvent, AuthorizationTokens::AuthorizationTokens, |
| 30 | ResponseCode::ResponseCode, |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 31 | }; |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 32 | use android_system_keystore2::aidl::android::system::keystore2::{ |
| 33 | ResponseCode::ResponseCode as KsResponseCode }; |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 34 | use anyhow::{Context, Result}; |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 35 | use keystore2_crypto::Password; |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 36 | use keystore2_selinux as selinux; |
| 37 | |
| 38 | /// This is the Authorization error type, it wraps binder exceptions and the |
| 39 | /// Authorization ResponseCode |
| 40 | #[derive(Debug, thiserror::Error, PartialEq)] |
| 41 | pub enum Error { |
| 42 | /// Wraps an IKeystoreAuthorization response code as defined by |
| 43 | /// android.security.authorization AIDL interface specification. |
| 44 | #[error("Error::Rc({0:?})")] |
| 45 | Rc(ResponseCode), |
| 46 | /// Wraps a Binder exception code other than a service specific exception. |
| 47 | #[error("Binder exception code {0:?}, {1:?}")] |
| 48 | Binder(ExceptionCode, i32), |
| 49 | } |
| 50 | |
| 51 | /// This function should be used by authorization service calls to translate error conditions |
| 52 | /// into service specific exceptions. |
| 53 | /// |
| 54 | /// All error conditions get logged by this function. |
| 55 | /// |
| 56 | /// `Error::Rc(x)` variants get mapped onto a service specific error code of `x`. |
| 57 | /// Certain response codes may be returned from keystore/ResponseCode.aidl by the keystore2 modules, |
| 58 | /// which are then converted to the corresponding response codes of android.security.authorization |
| 59 | /// AIDL interface specification. |
| 60 | /// |
| 61 | /// `selinux::Error::perm()` is mapped on `ResponseCode::PERMISSION_DENIED`. |
| 62 | /// |
| 63 | /// All non `Error` error conditions get mapped onto ResponseCode::SYSTEM_ERROR`. |
| 64 | /// |
| 65 | /// `handle_ok` will be called if `result` is `Ok(value)` where `value` will be passed |
| 66 | /// as argument to `handle_ok`. `handle_ok` must generate a `BinderResult<T>`, but it |
| 67 | /// typically returns Ok(value). |
| 68 | pub fn map_or_log_err<T, U, F>(result: Result<U>, handle_ok: F) -> BinderResult<T> |
| 69 | where |
| 70 | F: FnOnce(U) -> BinderResult<T>, |
| 71 | { |
| 72 | result.map_or_else( |
| 73 | |e| { |
| 74 | log::error!("{:#?}", e); |
| 75 | let root_cause = e.root_cause(); |
| 76 | if let Some(KeystoreError::Rc(ks_rcode)) = root_cause.downcast_ref::<KeystoreError>() { |
| 77 | let rc = match *ks_rcode { |
| 78 | // Although currently keystore2/ResponseCode.aidl and |
| 79 | // authorization/ResponseCode.aidl share the same integer values for the |
| 80 | // common response codes, this may deviate in the future, hence the |
| 81 | // conversion here. |
| 82 | KsResponseCode::SYSTEM_ERROR => ResponseCode::SYSTEM_ERROR.0, |
| 83 | KsResponseCode::KEY_NOT_FOUND => ResponseCode::KEY_NOT_FOUND.0, |
| 84 | KsResponseCode::VALUE_CORRUPTED => ResponseCode::VALUE_CORRUPTED.0, |
| 85 | KsResponseCode::INVALID_ARGUMENT => ResponseCode::INVALID_ARGUMENT.0, |
| 86 | // If the code paths of IKeystoreAuthorization aidl's methods happen to return |
| 87 | // other error codes from KsResponseCode in the future, they should be converted |
| 88 | // as well. |
| 89 | _ => ResponseCode::SYSTEM_ERROR.0, |
| 90 | }; |
| 91 | return Err(BinderStatus::new_service_specific_error(rc, None)); |
| 92 | } |
| 93 | let rc = match root_cause.downcast_ref::<Error>() { |
| 94 | Some(Error::Rc(rcode)) => rcode.0, |
| 95 | Some(Error::Binder(_, _)) => ResponseCode::SYSTEM_ERROR.0, |
| 96 | None => match root_cause.downcast_ref::<selinux::Error>() { |
| 97 | Some(selinux::Error::PermissionDenied) => ResponseCode::PERMISSION_DENIED.0, |
| 98 | _ => ResponseCode::SYSTEM_ERROR.0, |
| 99 | }, |
| 100 | }; |
| 101 | Err(BinderStatus::new_service_specific_error(rc, None)) |
| 102 | }, |
| 103 | handle_ok, |
| 104 | ) |
| 105 | } |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 106 | |
| 107 | /// This struct is defined to implement the aforementioned AIDL interface. |
| 108 | /// As of now, it is an empty struct. |
| 109 | pub struct AuthorizationManager; |
| 110 | |
| 111 | impl AuthorizationManager { |
| 112 | /// Create a new instance of Keystore Authorization service. |
Stephen Crane | 221bbb5 | 2020-12-16 15:52:10 -0800 | [diff] [blame] | 113 | pub fn new_native_binder() -> Result<Strong<dyn IKeystoreAuthorization>> { |
Andrew Walbran | de45c8b | 2021-04-13 14:42:38 +0000 | [diff] [blame] | 114 | Ok(BnKeystoreAuthorization::new_binder( |
| 115 | Self, |
| 116 | BinderFeatures { set_requesting_sid: true, ..BinderFeatures::default() }, |
| 117 | )) |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | fn add_auth_token(&self, auth_token: &HardwareAuthToken) -> Result<()> { |
Janis Danisevskis | be1969e | 2021-04-20 15:16:24 -0700 | [diff] [blame] | 121 | // Check keystore permission. |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 122 | check_keystore_permission(KeystorePerm::add_auth()).context("In add_auth_token.")?; |
| 123 | |
Matthew Maurer | d7815ca | 2021-05-06 21:58:45 -0700 | [diff] [blame] | 124 | ENFORCEMENTS.add_auth_token(auth_token.clone()); |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 125 | Ok(()) |
| 126 | } |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 127 | |
| 128 | fn on_lock_screen_event( |
| 129 | &self, |
| 130 | lock_screen_event: LockScreenEvent, |
| 131 | user_id: i32, |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 132 | password: Option<Password>, |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 133 | unlocking_sids: Option<&[i64]>, |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 134 | ) -> Result<()> { |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 135 | log::info!( |
| 136 | "on_lock_screen_event({:?}, user_id={:?}, password.is_some()={}, unlocking_sids={:?})", |
| 137 | lock_screen_event, |
| 138 | user_id, |
| 139 | password.is_some(), |
| 140 | unlocking_sids |
| 141 | ); |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 142 | match (lock_screen_event, password) { |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 143 | (LockScreenEvent::UNLOCK, Some(password)) => { |
Janis Danisevskis | be1969e | 2021-04-20 15:16:24 -0700 | [diff] [blame] | 144 | // This corresponds to the unlock() method in legacy keystore API. |
| 145 | // check permission |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 146 | check_keystore_permission(KeystorePerm::unlock()) |
| 147 | .context("In on_lock_screen_event: Unlock with password.")?; |
| 148 | ENFORCEMENTS.set_device_locked(user_id, false); |
Paul Crowley | 7a65839 | 2021-03-18 17:08:20 -0700 | [diff] [blame] | 149 | |
| 150 | DB.with(|db| { |
| 151 | SUPER_KEY.unlock_screen_lock_bound_key( |
| 152 | &mut db.borrow_mut(), |
| 153 | user_id as u32, |
| 154 | &password, |
| 155 | ) |
| 156 | }) |
| 157 | .context("In on_lock_screen_event: unlock_screen_lock_bound_key failed")?; |
| 158 | |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 159 | // Unlock super key. |
Hasini Gunasinghe | 731e3c8 | 2021-02-06 00:56:28 +0000 | [diff] [blame] | 160 | if let UserState::Uninitialized = DB |
| 161 | .with(|db| { |
| 162 | UserState::get_with_password_unlock( |
| 163 | &mut db.borrow_mut(), |
Hasini Gunasinghe | 3ed5da7 | 2021-02-04 15:18:54 +0000 | [diff] [blame] | 164 | &LEGACY_MIGRATOR, |
Hasini Gunasinghe | 731e3c8 | 2021-02-06 00:56:28 +0000 | [diff] [blame] | 165 | &SUPER_KEY, |
| 166 | user_id as u32, |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 167 | &password, |
Hasini Gunasinghe | 731e3c8 | 2021-02-06 00:56:28 +0000 | [diff] [blame] | 168 | ) |
| 169 | }) |
| 170 | .context("In on_lock_screen_event: Unlock with password.")? |
| 171 | { |
| 172 | log::info!( |
| 173 | "In on_lock_screen_event. Trying to unlock when LSKF is uninitialized." |
| 174 | ); |
| 175 | } |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 176 | |
| 177 | Ok(()) |
| 178 | } |
| 179 | (LockScreenEvent::UNLOCK, None) => { |
| 180 | check_keystore_permission(KeystorePerm::unlock()) |
| 181 | .context("In on_lock_screen_event: Unlock.")?; |
| 182 | ENFORCEMENTS.set_device_locked(user_id, false); |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 183 | DB.with(|db| { |
| 184 | SUPER_KEY.try_unlock_user_with_biometric(&mut db.borrow_mut(), user_id as u32) |
| 185 | }) |
| 186 | .context("In on_lock_screen_event: try_unlock_user_with_biometric failed")?; |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 187 | Ok(()) |
| 188 | } |
| 189 | (LockScreenEvent::LOCK, None) => { |
| 190 | check_keystore_permission(KeystorePerm::lock()) |
| 191 | .context("In on_lock_screen_event: Lock")?; |
| 192 | ENFORCEMENTS.set_device_locked(user_id, true); |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 193 | DB.with(|db| { |
| 194 | SUPER_KEY.lock_screen_lock_bound_key( |
| 195 | &mut db.borrow_mut(), |
| 196 | user_id as u32, |
| 197 | unlocking_sids.unwrap_or(&[]), |
| 198 | ); |
| 199 | }); |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 200 | Ok(()) |
| 201 | } |
| 202 | _ => { |
| 203 | // Any other combination is not supported. |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 204 | Err(Error::Rc(ResponseCode::INVALID_ARGUMENT)) |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 205 | .context("In on_lock_screen_event: Unknown event.") |
| 206 | } |
| 207 | } |
| 208 | } |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 209 | |
| 210 | fn get_auth_tokens_for_credstore( |
| 211 | &self, |
| 212 | challenge: i64, |
| 213 | secure_user_id: i64, |
| 214 | auth_token_max_age_millis: i64, |
| 215 | ) -> Result<AuthorizationTokens> { |
| 216 | // Check permission. Function should return if this failed. Therefore having '?' at the end |
| 217 | // is very important. |
| 218 | check_keystore_permission(KeystorePerm::get_auth_token()) |
| 219 | .context("In get_auth_tokens_for_credstore.")?; |
| 220 | |
Janis Danisevskis | be1969e | 2021-04-20 15:16:24 -0700 | [diff] [blame] | 221 | // If the challenge is zero, return error |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 222 | if challenge == 0 { |
| 223 | return Err(Error::Rc(ResponseCode::INVALID_ARGUMENT)) |
| 224 | .context("In get_auth_tokens_for_credstore. Challenge can not be zero."); |
| 225 | } |
| 226 | // Obtain the auth token and the timestamp token from the enforcement module. |
| 227 | let (auth_token, ts_token) = |
| 228 | ENFORCEMENTS.get_auth_tokens(challenge, secure_user_id, auth_token_max_age_millis)?; |
| 229 | Ok(AuthorizationTokens { authToken: auth_token, timestampToken: ts_token }) |
| 230 | } |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | impl Interface for AuthorizationManager {} |
| 234 | |
| 235 | impl IKeystoreAuthorization for AuthorizationManager { |
| 236 | fn addAuthToken(&self, auth_token: &HardwareAuthToken) -> BinderResult<()> { |
Hasini Gunasinghe | 5a893e8 | 2021-05-05 14:32:32 +0000 | [diff] [blame] | 237 | let _wp = wd::watch_millis("IKeystoreAuthorization::addAuthToken", 500); |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 238 | map_or_log_err(self.add_auth_token(auth_token), Ok) |
| 239 | } |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 240 | |
| 241 | fn onLockScreenEvent( |
| 242 | &self, |
| 243 | lock_screen_event: LockScreenEvent, |
| 244 | user_id: i32, |
| 245 | password: Option<&[u8]>, |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 246 | unlocking_sids: Option<&[i64]>, |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 247 | ) -> BinderResult<()> { |
Hasini Gunasinghe | 5a893e8 | 2021-05-05 14:32:32 +0000 | [diff] [blame] | 248 | let _wp = |
| 249 | wd::watch_millis_with("IKeystoreAuthorization::onLockScreenEvent", 500, move || { |
| 250 | format!("lock event: {}", lock_screen_event.0) |
| 251 | }); |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 252 | map_or_log_err( |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 253 | self.on_lock_screen_event( |
| 254 | lock_screen_event, |
| 255 | user_id, |
| 256 | password.map(|pw| pw.into()), |
| 257 | unlocking_sids, |
| 258 | ), |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 259 | Ok, |
| 260 | ) |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 261 | } |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 262 | |
| 263 | fn getAuthTokensForCredStore( |
| 264 | &self, |
| 265 | challenge: i64, |
| 266 | secure_user_id: i64, |
| 267 | auth_token_max_age_millis: i64, |
| 268 | ) -> binder::public_api::Result<AuthorizationTokens> { |
Hasini Gunasinghe | 5a893e8 | 2021-05-05 14:32:32 +0000 | [diff] [blame] | 269 | let _wp = wd::watch_millis("IKeystoreAuthorization::getAuthTokensForCredStore", 500); |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 270 | map_or_log_err( |
| 271 | self.get_auth_tokens_for_credstore( |
| 272 | challenge, |
| 273 | secure_user_id, |
| 274 | auth_token_max_age_millis, |
| 275 | ), |
| 276 | Ok, |
| 277 | ) |
| 278 | } |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 279 | } |