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; |
Janis Danisevskis | ea03cff | 2021-12-16 08:10:17 -0800 | [diff] [blame] | 18 | use crate::error::anyhow_error_to_cstring; |
Janis Danisevskis | 0ffb8a8 | 2022-02-06 22:37:21 -0800 | [diff] [blame^] | 19 | use crate::globals::{ENFORCEMENTS, SUPER_KEY, DB, LEGACY_IMPORTER}; |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 20 | use crate::permission::KeystorePerm; |
Hasini Gunasinghe | 731e3c8 | 2021-02-06 00:56:28 +0000 | [diff] [blame] | 21 | use crate::super_key::UserState; |
Hasini Gunasinghe | 5a893e8 | 2021-05-05 14:32:32 +0000 | [diff] [blame] | 22 | use crate::utils::{check_keystore_permission, watchdog as wd}; |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 23 | use android_hardware_security_keymint::aidl::android::hardware::security::keymint::{ |
Hasini Gunasinghe | da89555 | 2021-01-27 19:34:37 +0000 | [diff] [blame] | 24 | HardwareAuthToken::HardwareAuthToken, |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 25 | }; |
Andrew Walbran | de45c8b | 2021-04-13 14:42:38 +0000 | [diff] [blame] | 26 | use android_security_authorization::binder::{BinderFeatures,ExceptionCode, Interface, Result as BinderResult, |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 27 | Strong, Status as BinderStatus}; |
| 28 | use android_security_authorization::aidl::android::security::authorization::{ |
| 29 | IKeystoreAuthorization::BnKeystoreAuthorization, IKeystoreAuthorization::IKeystoreAuthorization, |
| 30 | LockScreenEvent::LockScreenEvent, AuthorizationTokens::AuthorizationTokens, |
| 31 | ResponseCode::ResponseCode, |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 32 | }; |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 33 | use android_system_keystore2::aidl::android::system::keystore2::{ |
| 34 | ResponseCode::ResponseCode as KsResponseCode }; |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 35 | use anyhow::{Context, Result}; |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 36 | use keystore2_crypto::Password; |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 37 | use 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)] |
| 42 | pub 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). |
| 69 | pub fn map_or_log_err<T, U, F>(result: Result<U>, handle_ok: F) -> BinderResult<T> |
| 70 | where |
| 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 Danisevskis | ea03cff | 2021-12-16 08:10:17 -0800 | [diff] [blame] | 92 | return Err(BinderStatus::new_service_specific_error( |
| 93 | rc, |
| 94 | anyhow_error_to_cstring(&e).as_deref(), |
| 95 | )); |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 96 | } |
| 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 Danisevskis | ea03cff | 2021-12-16 08:10:17 -0800 | [diff] [blame] | 105 | Err(BinderStatus::new_service_specific_error( |
| 106 | rc, |
| 107 | anyhow_error_to_cstring(&e).as_deref(), |
| 108 | )) |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 109 | }, |
| 110 | handle_ok, |
| 111 | ) |
| 112 | } |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 113 | |
| 114 | /// This struct is defined to implement the aforementioned AIDL interface. |
| 115 | /// As of now, it is an empty struct. |
| 116 | pub struct AuthorizationManager; |
| 117 | |
| 118 | impl AuthorizationManager { |
| 119 | /// Create a new instance of Keystore Authorization service. |
Stephen Crane | 221bbb5 | 2020-12-16 15:52:10 -0800 | [diff] [blame] | 120 | pub fn new_native_binder() -> Result<Strong<dyn IKeystoreAuthorization>> { |
Andrew Walbran | de45c8b | 2021-04-13 14:42:38 +0000 | [diff] [blame] | 121 | Ok(BnKeystoreAuthorization::new_binder( |
| 122 | Self, |
| 123 | BinderFeatures { set_requesting_sid: true, ..BinderFeatures::default() }, |
| 124 | )) |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | fn add_auth_token(&self, auth_token: &HardwareAuthToken) -> Result<()> { |
Janis Danisevskis | be1969e | 2021-04-20 15:16:24 -0700 | [diff] [blame] | 128 | // Check keystore permission. |
Janis Danisevskis | a916d99 | 2021-10-19 15:46:09 -0700 | [diff] [blame] | 129 | check_keystore_permission(KeystorePerm::AddAuth).context("In add_auth_token.")?; |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 130 | |
Matthew Maurer | d7815ca | 2021-05-06 21:58:45 -0700 | [diff] [blame] | 131 | ENFORCEMENTS.add_auth_token(auth_token.clone()); |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 132 | Ok(()) |
| 133 | } |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 134 | |
| 135 | fn on_lock_screen_event( |
| 136 | &self, |
| 137 | lock_screen_event: LockScreenEvent, |
| 138 | user_id: i32, |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 139 | password: Option<Password>, |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 140 | unlocking_sids: Option<&[i64]>, |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 141 | ) -> Result<()> { |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 142 | 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 Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 149 | match (lock_screen_event, password) { |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 150 | (LockScreenEvent::UNLOCK, Some(password)) => { |
Janis Danisevskis | be1969e | 2021-04-20 15:16:24 -0700 | [diff] [blame] | 151 | // This corresponds to the unlock() method in legacy keystore API. |
| 152 | // check permission |
Janis Danisevskis | a916d99 | 2021-10-19 15:46:09 -0700 | [diff] [blame] | 153 | check_keystore_permission(KeystorePerm::Unlock) |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 154 | .context("In on_lock_screen_event: Unlock with password.")?; |
| 155 | ENFORCEMENTS.set_device_locked(user_id, false); |
Paul Crowley | 7a65839 | 2021-03-18 17:08:20 -0700 | [diff] [blame] | 156 | |
Janis Danisevskis | 0fd25a6 | 2022-01-04 19:53:37 -0800 | [diff] [blame] | 157 | let mut skm = SUPER_KEY.write().unwrap(); |
| 158 | |
Paul Crowley | 7a65839 | 2021-03-18 17:08:20 -0700 | [diff] [blame] | 159 | DB.with(|db| { |
Janis Danisevskis | 0fd25a6 | 2022-01-04 19:53:37 -0800 | [diff] [blame] | 160 | skm.unlock_screen_lock_bound_key( |
Paul Crowley | 7a65839 | 2021-03-18 17:08:20 -0700 | [diff] [blame] | 161 | &mut db.borrow_mut(), |
| 162 | user_id as u32, |
| 163 | &password, |
| 164 | ) |
| 165 | }) |
| 166 | .context("In on_lock_screen_event: unlock_screen_lock_bound_key failed")?; |
| 167 | |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 168 | // Unlock super key. |
Hasini Gunasinghe | 731e3c8 | 2021-02-06 00:56:28 +0000 | [diff] [blame] | 169 | if let UserState::Uninitialized = DB |
| 170 | .with(|db| { |
Janis Danisevskis | 0fd25a6 | 2022-01-04 19:53:37 -0800 | [diff] [blame] | 171 | skm.unlock_and_get_user_state( |
Hasini Gunasinghe | 731e3c8 | 2021-02-06 00:56:28 +0000 | [diff] [blame] | 172 | &mut db.borrow_mut(), |
Janis Danisevskis | 0ffb8a8 | 2022-02-06 22:37:21 -0800 | [diff] [blame^] | 173 | &LEGACY_IMPORTER, |
Hasini Gunasinghe | 731e3c8 | 2021-02-06 00:56:28 +0000 | [diff] [blame] | 174 | user_id as u32, |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 175 | &password, |
Hasini Gunasinghe | 731e3c8 | 2021-02-06 00:56:28 +0000 | [diff] [blame] | 176 | ) |
| 177 | }) |
| 178 | .context("In on_lock_screen_event: Unlock with password.")? |
| 179 | { |
| 180 | log::info!( |
| 181 | "In on_lock_screen_event. Trying to unlock when LSKF is uninitialized." |
| 182 | ); |
| 183 | } |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 184 | |
| 185 | Ok(()) |
| 186 | } |
| 187 | (LockScreenEvent::UNLOCK, None) => { |
Janis Danisevskis | a916d99 | 2021-10-19 15:46:09 -0700 | [diff] [blame] | 188 | check_keystore_permission(KeystorePerm::Unlock) |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 189 | .context("In on_lock_screen_event: Unlock.")?; |
| 190 | ENFORCEMENTS.set_device_locked(user_id, false); |
Janis Danisevskis | 0fd25a6 | 2022-01-04 19:53:37 -0800 | [diff] [blame] | 191 | let mut skm = SUPER_KEY.write().unwrap(); |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 192 | DB.with(|db| { |
Janis Danisevskis | 0fd25a6 | 2022-01-04 19:53:37 -0800 | [diff] [blame] | 193 | skm.try_unlock_user_with_biometric(&mut db.borrow_mut(), user_id as u32) |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 194 | }) |
| 195 | .context("In on_lock_screen_event: try_unlock_user_with_biometric failed")?; |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 196 | Ok(()) |
| 197 | } |
| 198 | (LockScreenEvent::LOCK, None) => { |
Janis Danisevskis | a916d99 | 2021-10-19 15:46:09 -0700 | [diff] [blame] | 199 | check_keystore_permission(KeystorePerm::Lock) |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 200 | .context("In on_lock_screen_event: Lock")?; |
| 201 | ENFORCEMENTS.set_device_locked(user_id, true); |
Janis Danisevskis | 0fd25a6 | 2022-01-04 19:53:37 -0800 | [diff] [blame] | 202 | let mut skm = SUPER_KEY.write().unwrap(); |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 203 | DB.with(|db| { |
Janis Danisevskis | 0fd25a6 | 2022-01-04 19:53:37 -0800 | [diff] [blame] | 204 | skm.lock_screen_lock_bound_key( |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 205 | &mut db.borrow_mut(), |
| 206 | user_id as u32, |
| 207 | unlocking_sids.unwrap_or(&[]), |
| 208 | ); |
| 209 | }); |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 210 | Ok(()) |
| 211 | } |
| 212 | _ => { |
| 213 | // Any other combination is not supported. |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 214 | Err(Error::Rc(ResponseCode::INVALID_ARGUMENT)) |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 215 | .context("In on_lock_screen_event: Unknown event.") |
| 216 | } |
| 217 | } |
| 218 | } |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 219 | |
| 220 | fn get_auth_tokens_for_credstore( |
| 221 | &self, |
| 222 | challenge: i64, |
| 223 | secure_user_id: i64, |
| 224 | auth_token_max_age_millis: i64, |
| 225 | ) -> Result<AuthorizationTokens> { |
| 226 | // Check permission. Function should return if this failed. Therefore having '?' at the end |
| 227 | // is very important. |
Janis Danisevskis | a916d99 | 2021-10-19 15:46:09 -0700 | [diff] [blame] | 228 | check_keystore_permission(KeystorePerm::GetAuthToken) |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 229 | .context("In get_auth_tokens_for_credstore.")?; |
| 230 | |
Janis Danisevskis | be1969e | 2021-04-20 15:16:24 -0700 | [diff] [blame] | 231 | // If the challenge is zero, return error |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 232 | if challenge == 0 { |
| 233 | return Err(Error::Rc(ResponseCode::INVALID_ARGUMENT)) |
| 234 | .context("In get_auth_tokens_for_credstore. Challenge can not be zero."); |
| 235 | } |
| 236 | // Obtain the auth token and the timestamp token from the enforcement module. |
| 237 | let (auth_token, ts_token) = |
| 238 | ENFORCEMENTS.get_auth_tokens(challenge, secure_user_id, auth_token_max_age_millis)?; |
| 239 | Ok(AuthorizationTokens { authToken: auth_token, timestampToken: ts_token }) |
| 240 | } |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | impl Interface for AuthorizationManager {} |
| 244 | |
| 245 | impl IKeystoreAuthorization for AuthorizationManager { |
| 246 | fn addAuthToken(&self, auth_token: &HardwareAuthToken) -> BinderResult<()> { |
Hasini Gunasinghe | 5a893e8 | 2021-05-05 14:32:32 +0000 | [diff] [blame] | 247 | let _wp = wd::watch_millis("IKeystoreAuthorization::addAuthToken", 500); |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 248 | map_or_log_err(self.add_auth_token(auth_token), Ok) |
| 249 | } |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 250 | |
| 251 | fn onLockScreenEvent( |
| 252 | &self, |
| 253 | lock_screen_event: LockScreenEvent, |
| 254 | user_id: i32, |
| 255 | password: Option<&[u8]>, |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 256 | unlocking_sids: Option<&[i64]>, |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 257 | ) -> BinderResult<()> { |
Hasini Gunasinghe | 5a893e8 | 2021-05-05 14:32:32 +0000 | [diff] [blame] | 258 | let _wp = |
| 259 | wd::watch_millis_with("IKeystoreAuthorization::onLockScreenEvent", 500, move || { |
| 260 | format!("lock event: {}", lock_screen_event.0) |
| 261 | }); |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 262 | map_or_log_err( |
Paul Crowley | 618869e | 2021-04-08 20:30:54 -0700 | [diff] [blame] | 263 | self.on_lock_screen_event( |
| 264 | lock_screen_event, |
| 265 | user_id, |
| 266 | password.map(|pw| pw.into()), |
| 267 | unlocking_sids, |
| 268 | ), |
Paul Crowley | f61fee7 | 2021-03-17 14:38:44 -0700 | [diff] [blame] | 269 | Ok, |
| 270 | ) |
Hasini Gunasinghe | a020b53 | 2021-01-07 21:42:35 +0000 | [diff] [blame] | 271 | } |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 272 | |
| 273 | fn getAuthTokensForCredStore( |
| 274 | &self, |
| 275 | challenge: i64, |
| 276 | secure_user_id: i64, |
| 277 | auth_token_max_age_millis: i64, |
Stephen Crane | 23cf724 | 2022-01-19 17:49:46 +0000 | [diff] [blame] | 278 | ) -> binder::Result<AuthorizationTokens> { |
Hasini Gunasinghe | 5a893e8 | 2021-05-05 14:32:32 +0000 | [diff] [blame] | 279 | let _wp = wd::watch_millis("IKeystoreAuthorization::getAuthTokensForCredStore", 500); |
Hasini Gunasinghe | b3715fb | 2021-02-26 20:34:45 +0000 | [diff] [blame] | 280 | map_or_log_err( |
| 281 | self.get_auth_tokens_for_credstore( |
| 282 | challenge, |
| 283 | secure_user_id, |
| 284 | auth_token_max_age_millis, |
| 285 | ), |
| 286 | Ok, |
| 287 | ) |
| 288 | } |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 289 | } |