blob: 0c4150740157a86b62ba9da86f9be712d7996126 [file] [log] [blame]
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +00001// 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 Gunasinghe0e161452021-01-27 19:34:37 +000015//! This module implements IKeystoreAuthorization AIDL interface.
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +000016
Hasini Gunasinghea020b532021-01-07 21:42:35 +000017use crate::error::Error as KeystoreError;
Janis Danisevskisea03cff2021-12-16 08:10:17 -080018use crate::error::anyhow_error_to_cstring;
Hasini Gunasinghe3ed5da72021-02-04 15:18:54 +000019use crate::globals::{ENFORCEMENTS, SUPER_KEY, DB, LEGACY_MIGRATOR};
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +000020use crate::permission::KeystorePerm;
Hasini Gunasinghe731e3c82021-02-06 00:56:28 +000021use crate::super_key::UserState;
Hasini Gunasinghe5a893e82021-05-05 14:32:32 +000022use crate::utils::{check_keystore_permission, watchdog as wd};
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +000023use android_hardware_security_keymint::aidl::android::hardware::security::keymint::{
Hasini Gunasingheda895552021-01-27 19:34:37 +000024 HardwareAuthToken::HardwareAuthToken,
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +000025};
Andrew Walbrande45c8b2021-04-13 14:42:38 +000026use android_security_authorization::binder::{BinderFeatures,ExceptionCode, Interface, Result as BinderResult,
Hasini Gunasingheb3715fb2021-02-26 20:34:45 +000027 Strong, Status as BinderStatus};
28use android_security_authorization::aidl::android::security::authorization::{
29 IKeystoreAuthorization::BnKeystoreAuthorization, IKeystoreAuthorization::IKeystoreAuthorization,
30 LockScreenEvent::LockScreenEvent, AuthorizationTokens::AuthorizationTokens,
31 ResponseCode::ResponseCode,
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +000032};
Hasini Gunasingheb3715fb2021-02-26 20:34:45 +000033use android_system_keystore2::aidl::android::system::keystore2::{
34 ResponseCode::ResponseCode as KsResponseCode };
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +000035use anyhow::{Context, Result};
Paul Crowleyf61fee72021-03-17 14:38:44 -070036use keystore2_crypto::Password;
Hasini Gunasingheb3715fb2021-02-26 20:34:45 +000037use keystore2_selinux as selinux;
38
39/// This is the Authorization error type, it wraps binder exceptions and the
40/// Authorization ResponseCode
41#[derive(Debug, thiserror::Error, PartialEq)]
42pub enum Error {
43 /// Wraps an IKeystoreAuthorization response code as defined by
44 /// android.security.authorization AIDL interface specification.
45 #[error("Error::Rc({0:?})")]
46 Rc(ResponseCode),
47 /// Wraps a Binder exception code other than a service specific exception.
48 #[error("Binder exception code {0:?}, {1:?}")]
49 Binder(ExceptionCode, i32),
50}
51
52/// This function should be used by authorization service calls to translate error conditions
53/// into service specific exceptions.
54///
55/// All error conditions get logged by this function.
56///
57/// `Error::Rc(x)` variants get mapped onto a service specific error code of `x`.
58/// Certain response codes may be returned from keystore/ResponseCode.aidl by the keystore2 modules,
59/// which are then converted to the corresponding response codes of android.security.authorization
60/// AIDL interface specification.
61///
62/// `selinux::Error::perm()` is mapped on `ResponseCode::PERMISSION_DENIED`.
63///
64/// All non `Error` error conditions get mapped onto ResponseCode::SYSTEM_ERROR`.
65///
66/// `handle_ok` will be called if `result` is `Ok(value)` where `value` will be passed
67/// as argument to `handle_ok`. `handle_ok` must generate a `BinderResult<T>`, but it
68/// typically returns Ok(value).
69pub fn map_or_log_err<T, U, F>(result: Result<U>, handle_ok: F) -> BinderResult<T>
70where
71 F: FnOnce(U) -> BinderResult<T>,
72{
73 result.map_or_else(
74 |e| {
75 log::error!("{:#?}", e);
76 let root_cause = e.root_cause();
77 if let Some(KeystoreError::Rc(ks_rcode)) = root_cause.downcast_ref::<KeystoreError>() {
78 let rc = match *ks_rcode {
79 // Although currently keystore2/ResponseCode.aidl and
80 // authorization/ResponseCode.aidl share the same integer values for the
81 // common response codes, this may deviate in the future, hence the
82 // conversion here.
83 KsResponseCode::SYSTEM_ERROR => ResponseCode::SYSTEM_ERROR.0,
84 KsResponseCode::KEY_NOT_FOUND => ResponseCode::KEY_NOT_FOUND.0,
85 KsResponseCode::VALUE_CORRUPTED => ResponseCode::VALUE_CORRUPTED.0,
86 KsResponseCode::INVALID_ARGUMENT => ResponseCode::INVALID_ARGUMENT.0,
87 // If the code paths of IKeystoreAuthorization aidl's methods happen to return
88 // other error codes from KsResponseCode in the future, they should be converted
89 // as well.
90 _ => ResponseCode::SYSTEM_ERROR.0,
91 };
Janis Danisevskisea03cff2021-12-16 08:10:17 -080092 return Err(BinderStatus::new_service_specific_error(
93 rc,
94 anyhow_error_to_cstring(&e).as_deref(),
95 ));
Hasini Gunasingheb3715fb2021-02-26 20:34:45 +000096 }
97 let rc = match root_cause.downcast_ref::<Error>() {
98 Some(Error::Rc(rcode)) => rcode.0,
99 Some(Error::Binder(_, _)) => ResponseCode::SYSTEM_ERROR.0,
100 None => match root_cause.downcast_ref::<selinux::Error>() {
101 Some(selinux::Error::PermissionDenied) => ResponseCode::PERMISSION_DENIED.0,
102 _ => ResponseCode::SYSTEM_ERROR.0,
103 },
104 };
Janis Danisevskisea03cff2021-12-16 08:10:17 -0800105 Err(BinderStatus::new_service_specific_error(
106 rc,
107 anyhow_error_to_cstring(&e).as_deref(),
108 ))
Hasini Gunasingheb3715fb2021-02-26 20:34:45 +0000109 },
110 handle_ok,
111 )
112}
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +0000113
114/// This struct is defined to implement the aforementioned AIDL interface.
115/// As of now, it is an empty struct.
116pub struct AuthorizationManager;
117
118impl AuthorizationManager {
119 /// Create a new instance of Keystore Authorization service.
Stephen Crane221bbb52020-12-16 15:52:10 -0800120 pub fn new_native_binder() -> Result<Strong<dyn IKeystoreAuthorization>> {
Andrew Walbrande45c8b2021-04-13 14:42:38 +0000121 Ok(BnKeystoreAuthorization::new_binder(
122 Self,
123 BinderFeatures { set_requesting_sid: true, ..BinderFeatures::default() },
124 ))
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +0000125 }
126
127 fn add_auth_token(&self, auth_token: &HardwareAuthToken) -> Result<()> {
Janis Danisevskisbe1969e2021-04-20 15:16:24 -0700128 // Check keystore permission.
Janis Danisevskisa916d992021-10-19 15:46:09 -0700129 check_keystore_permission(KeystorePerm::AddAuth).context("In add_auth_token.")?;
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +0000130
Matthew Maurerd7815ca2021-05-06 21:58:45 -0700131 ENFORCEMENTS.add_auth_token(auth_token.clone());
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +0000132 Ok(())
133 }
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000134
135 fn on_lock_screen_event(
136 &self,
137 lock_screen_event: LockScreenEvent,
138 user_id: i32,
Paul Crowleyf61fee72021-03-17 14:38:44 -0700139 password: Option<Password>,
Paul Crowley618869e2021-04-08 20:30:54 -0700140 unlocking_sids: Option<&[i64]>,
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000141 ) -> Result<()> {
Paul Crowley618869e2021-04-08 20:30:54 -0700142 log::info!(
143 "on_lock_screen_event({:?}, user_id={:?}, password.is_some()={}, unlocking_sids={:?})",
144 lock_screen_event,
145 user_id,
146 password.is_some(),
147 unlocking_sids
148 );
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000149 match (lock_screen_event, password) {
Paul Crowleyf61fee72021-03-17 14:38:44 -0700150 (LockScreenEvent::UNLOCK, Some(password)) => {
Janis Danisevskisbe1969e2021-04-20 15:16:24 -0700151 // This corresponds to the unlock() method in legacy keystore API.
152 // check permission
Janis Danisevskisa916d992021-10-19 15:46:09 -0700153 check_keystore_permission(KeystorePerm::Unlock)
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000154 .context("In on_lock_screen_event: Unlock with password.")?;
155 ENFORCEMENTS.set_device_locked(user_id, false);
Paul Crowley7a658392021-03-18 17:08:20 -0700156
157 DB.with(|db| {
158 SUPER_KEY.unlock_screen_lock_bound_key(
159 &mut db.borrow_mut(),
160 user_id as u32,
161 &password,
162 )
163 })
164 .context("In on_lock_screen_event: unlock_screen_lock_bound_key failed")?;
165
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000166 // Unlock super key.
Hasini Gunasinghe731e3c82021-02-06 00:56:28 +0000167 if let UserState::Uninitialized = DB
168 .with(|db| {
169 UserState::get_with_password_unlock(
170 &mut db.borrow_mut(),
Hasini Gunasinghe3ed5da72021-02-04 15:18:54 +0000171 &LEGACY_MIGRATOR,
Hasini Gunasinghe731e3c82021-02-06 00:56:28 +0000172 &SUPER_KEY,
173 user_id as u32,
Paul Crowleyf61fee72021-03-17 14:38:44 -0700174 &password,
Hasini Gunasinghe731e3c82021-02-06 00:56:28 +0000175 )
176 })
177 .context("In on_lock_screen_event: Unlock with password.")?
178 {
179 log::info!(
180 "In on_lock_screen_event. Trying to unlock when LSKF is uninitialized."
181 );
182 }
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000183
184 Ok(())
185 }
186 (LockScreenEvent::UNLOCK, None) => {
Janis Danisevskisa916d992021-10-19 15:46:09 -0700187 check_keystore_permission(KeystorePerm::Unlock)
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000188 .context("In on_lock_screen_event: Unlock.")?;
189 ENFORCEMENTS.set_device_locked(user_id, false);
Paul Crowley618869e2021-04-08 20:30:54 -0700190 DB.with(|db| {
191 SUPER_KEY.try_unlock_user_with_biometric(&mut db.borrow_mut(), user_id as u32)
192 })
193 .context("In on_lock_screen_event: try_unlock_user_with_biometric failed")?;
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000194 Ok(())
195 }
196 (LockScreenEvent::LOCK, None) => {
Janis Danisevskisa916d992021-10-19 15:46:09 -0700197 check_keystore_permission(KeystorePerm::Lock)
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000198 .context("In on_lock_screen_event: Lock")?;
199 ENFORCEMENTS.set_device_locked(user_id, true);
Paul Crowley618869e2021-04-08 20:30:54 -0700200 DB.with(|db| {
201 SUPER_KEY.lock_screen_lock_bound_key(
202 &mut db.borrow_mut(),
203 user_id as u32,
204 unlocking_sids.unwrap_or(&[]),
205 );
206 });
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000207 Ok(())
208 }
209 _ => {
210 // Any other combination is not supported.
Hasini Gunasingheb3715fb2021-02-26 20:34:45 +0000211 Err(Error::Rc(ResponseCode::INVALID_ARGUMENT))
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000212 .context("In on_lock_screen_event: Unknown event.")
213 }
214 }
215 }
Hasini Gunasingheb3715fb2021-02-26 20:34:45 +0000216
217 fn get_auth_tokens_for_credstore(
218 &self,
219 challenge: i64,
220 secure_user_id: i64,
221 auth_token_max_age_millis: i64,
222 ) -> Result<AuthorizationTokens> {
223 // Check permission. Function should return if this failed. Therefore having '?' at the end
224 // is very important.
Janis Danisevskisa916d992021-10-19 15:46:09 -0700225 check_keystore_permission(KeystorePerm::GetAuthToken)
Hasini Gunasingheb3715fb2021-02-26 20:34:45 +0000226 .context("In get_auth_tokens_for_credstore.")?;
227
Janis Danisevskisbe1969e2021-04-20 15:16:24 -0700228 // If the challenge is zero, return error
Hasini Gunasingheb3715fb2021-02-26 20:34:45 +0000229 if challenge == 0 {
230 return Err(Error::Rc(ResponseCode::INVALID_ARGUMENT))
231 .context("In get_auth_tokens_for_credstore. Challenge can not be zero.");
232 }
233 // Obtain the auth token and the timestamp token from the enforcement module.
234 let (auth_token, ts_token) =
235 ENFORCEMENTS.get_auth_tokens(challenge, secure_user_id, auth_token_max_age_millis)?;
236 Ok(AuthorizationTokens { authToken: auth_token, timestampToken: ts_token })
237 }
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +0000238}
239
240impl Interface for AuthorizationManager {}
241
242impl IKeystoreAuthorization for AuthorizationManager {
243 fn addAuthToken(&self, auth_token: &HardwareAuthToken) -> BinderResult<()> {
Hasini Gunasinghe5a893e82021-05-05 14:32:32 +0000244 let _wp = wd::watch_millis("IKeystoreAuthorization::addAuthToken", 500);
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +0000245 map_or_log_err(self.add_auth_token(auth_token), Ok)
246 }
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000247
248 fn onLockScreenEvent(
249 &self,
250 lock_screen_event: LockScreenEvent,
251 user_id: i32,
252 password: Option<&[u8]>,
Paul Crowley618869e2021-04-08 20:30:54 -0700253 unlocking_sids: Option<&[i64]>,
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000254 ) -> BinderResult<()> {
Hasini Gunasinghe5a893e82021-05-05 14:32:32 +0000255 let _wp =
256 wd::watch_millis_with("IKeystoreAuthorization::onLockScreenEvent", 500, move || {
257 format!("lock event: {}", lock_screen_event.0)
258 });
Paul Crowleyf61fee72021-03-17 14:38:44 -0700259 map_or_log_err(
Paul Crowley618869e2021-04-08 20:30:54 -0700260 self.on_lock_screen_event(
261 lock_screen_event,
262 user_id,
263 password.map(|pw| pw.into()),
264 unlocking_sids,
265 ),
Paul Crowleyf61fee72021-03-17 14:38:44 -0700266 Ok,
267 )
Hasini Gunasinghea020b532021-01-07 21:42:35 +0000268 }
Hasini Gunasingheb3715fb2021-02-26 20:34:45 +0000269
270 fn getAuthTokensForCredStore(
271 &self,
272 challenge: i64,
273 secure_user_id: i64,
274 auth_token_max_age_millis: i64,
275 ) -> binder::public_api::Result<AuthorizationTokens> {
Hasini Gunasinghe5a893e82021-05-05 14:32:32 +0000276 let _wp = wd::watch_millis("IKeystoreAuthorization::getAuthTokensForCredStore", 500);
Hasini Gunasingheb3715fb2021-02-26 20:34:45 +0000277 map_or_log_err(
278 self.get_auth_tokens_for_credstore(
279 challenge,
280 secure_user_id,
281 auth_token_max_age_millis,
282 ),
283 Ok,
284 )
285 }
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +0000286}