1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
use alloc::vec::Vec;
use optee_utee_sys as raw;
use super::{Attribute, GenericObject, ObjectHandle};
use crate::{Error, Result};
/// Define types of [TransientObject](crate::TransientObject) with
/// predefined maximum sizes.
#[repr(u32)]
pub enum TransientObjectType {
/// 128, 192, or 256 bits
Aes = 0xA0000010,
/// Always 64 bits including the parity bits. This gives an effective key
/// size of 56 bits
Des = 0xA0000011,
/// 128 or 192 bits including the parity bits. This gives effective key
/// sizes of 112 or 168 bits
Des3 = 0xA0000013,
/// Between 64 and 512 bits, multiple of 8 bits
HmacMd5 = 0xA0000001,
/// Between 80 and 512 bits, multiple of 8 bits
HmacSha1 = 0xA0000002,
/// Between 112 and 512 bits, multiple of 8 bits
HmacSha224 = 0xA0000003,
/// Between 192 and 1024 bits, multiple of 8 bits
HmacSha256 = 0xA0000004,
/// Between 256 and 1024 bits, multiple of 8 bits
HmacSha384 = 0xA0000005,
/// Between 256 and 1024 bits, multiple of 8 bits
HmacSha512 = 0xA0000006,
/// The number of bits in the modulus. 256, 512, 768, 1024, 1536 and
/// 2048-bit keys SHALL be supported.
/// Support for other key sizes including bigger key sizes is
/// implementation-dependent. Minimum key size is 256 bits
RsaPublicKey = 0xA0000030,
/// Same as [RsaPublicKey](crate::TransientObjectType::RsaPublicKey) key
/// size.
RsaKeypair = 0xA1000030,
/// Depends on Algorithm:
/// 1) [DsaSha1](crate::AlgorithmId::DsaSha1):
/// Between 512 and 1024 bits, multiple of 64 bits
/// 2) [DsaSha224](crate::AlgorithmId::DsaSha224): 2048 bits
/// 3) [DsaSha256](crate::AlgorithmId::DsaSha256): 2048 or 3072 bits
DsaPublicKey = 0xA0000031,
/// Same as [DsaPublicKey](crate::TransientObjectType::DsaPublicKey) key
/// size.
DsaKeypair = 0xA1000031,
/// From 256 to 2048 bits, multiple of 8 bits.
DhKeypair = 0xA1000032,
/// Between 160 and 521 bits. Conditional: Available only if at least
/// one of the ECC the curves defined in Table 6-14 with "generic"
/// equal to "Y" is supported.
EcdsaPublicKey = 0xA0000041,
/// Between 160 and 521 bits. Conditional: Available only if at least
/// one of the ECC curves defined in Table 6-14 with "generic" equal to
/// "Y" is supported. SHALL be same value as for ECDSA public key size.
EcdsaKeypair = 0xA1000041,
/// Between 160 and 521 bits. Conditional: Available only if at least
/// one of the ECC curves defined in Table 6-14 with "generic" equal to
/// "Y" is supported.
EcdhPublicKey = 0xA0000042,
/// Between 160 and 521 bits. Conditional: Available only if at least
/// one of the ECC curves defined in Table 6-14 with "generic" equal to
/// "Y" is supported. SHALL be same value as for ECDH public key size
EcdhKeypair = 0xA1000042,
/// 256 bits. Conditional: Available only if TEE_ECC_CURVE_25519
/// defined in Table 6-14 is supported.
Ed25519PublicKey = 0xA0000043,
/// 256 bits. Conditional: Available only if TEE_ECC_CURVE_25519
/// defined in Table 6-14 is supported.
Ed25519Keypair = 0xA1000043,
/// 256 bits. Conditional: Available only if TEE_ECC_CURVE_25519
/// defined in Table 6-14 is supported.
X25519PublicKey = 0xA0000044,
/// 256 bits. Conditional: Available only if TEE_ECC_CURVE_25519
/// defined in Table 6-14 is supported.
X25519Keypair = 0xA1000044,
/// Multiple of 8 bits, up to 4096 bits. This type is intended for secret
/// data that has been derived from a key derivation scheme.
GenericSecret = 0xA0000000,
/// Object is corrupted.
CorruptedObject = 0xA00000BE,
/// 0 – All data is in the associated data stream.
Data = 0xA00000BF,
}
/// An object containing attributes but no data stream, which is reclaimed
/// when closed or when the TA instance is destroyed.
/// Transient objects are used to hold a cryptographic object (key or key-pair).
///
/// Contrast [PersistentObject](crate::PersistentObject).
#[derive(Debug)]
pub struct TransientObject(ObjectHandle);
impl TransientObject {
/// Create an object with a null handle which points to nothing.
//
// TODO: This function is only used in examples and should be removed when
// TransientObject is fully refactored in the future. Keep it for now and
// leave it for future PR.
pub fn null_object() -> Self {
Self(ObjectHandle::new_null())
}
/// Check if current object is created with null handle.
///
/// # See Also
///
/// - [Self::null_object](Self::null_object).
pub fn is_null_object(&self) -> bool {
self.0.is_null()
}
/// Allocate an uninitialized object, i.e. a container for attributes.
///
/// As allocated, the object is uninitialized.
/// It can be initialized by subsequently importing the object material,
/// generating an object, deriving an object, or loading an object from the
/// Trusted Storage.
///
/// # Parameters
///
/// 1) `object_type`: Type of uninitialized object container to be created
/// as defined in [TransientObjectType](crate::TransientObjectType).
/// 2) `max_object_size`: Key Size of the object. Valid values depend on the
/// object type and are defined in
/// [TransientObjectType](crate::TransientObjectType).
///
/// # Example
///
/// ``` rust,no_run
/// # use optee_utee::{TransientObject, TransientObjectType};
/// # fn main() -> optee_utee::Result<()> {
/// match TransientObject::allocate(TransientObjectType::Aes, 128) {
/// Ok(object) =>
/// {
/// // ...
/// Ok(())
/// }
/// Err(e) => Err(e),
/// }
/// # }
/// ```
///
/// # Errors
///
/// 1) `OutOfMemory`: If not enough resources are available to allocate the
/// object handle.
/// 2) `NotSupported`: If the key size is not supported or the object type
/// is not supported.
///
/// # Panics
///
/// 1) If the Implementation detects any error associated with this function
/// which is not explicitly associated with a defined return code for
/// this function.
pub fn allocate(object_type: TransientObjectType, max_object_size: usize) -> Result<Self> {
let mut handle: raw::TEE_ObjectHandle = core::ptr::null_mut();
// Move as much code as possible out of unsafe blocks to maximize Rust’s
// safety checks.
let handle_mut = &mut handle;
match unsafe {
raw::TEE_AllocateTransientObject(object_type as u32, max_object_size as u32, handle_mut)
} {
raw::TEE_SUCCESS => Ok(Self(ObjectHandle::from_raw(handle)?)),
code => Err(Error::from_raw_error(code)),
}
}
/// Reset the object to its initial state after allocation.
/// If the object is currently initialized, the function clears the object
/// of all its material.
/// The object is then uninitialized again.
pub fn reset(&mut self) {
unsafe {
raw::TEE_ResetTransientObject(self.handle());
}
}
/// Populate an uninitialized object container with object attributes passed
/// by the TA in the `attrs` parameter.
/// When this function is called, the object SHALL be uninitialized.
/// If the object is initialized, the caller SHALL first clear it using the
/// function reset.
/// Note that if the object type is a key-pair, then this function sets both
/// the private and public attributes of the keypair.
///
/// # Parameters
///
/// 1) `attrs`: Array of object attributes.
///
/// # Example
///
/// ``` rust,no_run
/// # use optee_utee::{
/// # TransientObject,
/// # TransientObjectType,
/// # AttributeMemref,
/// # AttributeId,
/// # };
/// # fn main() -> optee_utee::Result<()> {
/// match TransientObject::allocate(TransientObjectType::Aes, 128) {
/// Ok(mut object) =>
/// {
/// let attrs = [AttributeMemref::from_ref(AttributeId::SecretValue, &[0u8;1]).into()];
/// object.populate(&attrs);
/// Ok(())
/// }
/// Err(e) => Err(e),
/// }
/// # }
/// ```
///
/// # Errors
///
/// 1) `BadParameters`: If an incorrect or inconsistent attribute value is
/// detected. In this case, the content of the object SHALL remain
/// uninitialized.
///
/// # Panics
///
/// 1) If object is not a valid opened object that is transient and
/// uninitialized.
/// 2) If some mandatory attribute is missing.
/// 3) If an attribute which is not defined for the object’s type is
/// present in attrs.
/// 4) If an attribute value is too big to fit within the maximum object
/// size specified when the object was created.
/// 5) If the Implementation detects any other error associated with this
/// function which is not explicitly associated with a defined return
/// code for this function.
pub fn populate(&mut self, attrs: &[Attribute]) -> Result<()> {
let p: Vec<raw::TEE_Attribute> = attrs.iter().map(|p| p.raw()).collect();
match unsafe {
raw::TEE_PopulateTransientObject(self.0.handle(), p.as_ptr() as _, attrs.len() as u32)
} {
raw::TEE_SUCCESS => Ok(()),
code => return Err(Error::from_raw_error(code)),
}
}
/// Populates an uninitialized object handle with the attributes of another
/// object handle;
/// that is, it populates the attributes of this handle with the attributes
/// of src_handle.
/// It is most useful in the following situations:
/// 1) To extract the public key attributes from a key-pair object.
/// 2) To copy the attributes from a
/// [PersistentObject](crate::PersistentObject) into a
/// [TransientObject](crate::TransientObject).
///
/// # Parameters
///
/// 1) `src_object`: Can be either a
/// [TransientObject](crate::TransientObject) or
/// [PersistentObject](crate::PersistentObject).
///
/// # Example
///
/// ``` rust,no_run
/// # use optee_utee::{TransientObject, TransientObjectType};
/// # fn main() -> optee_utee::Result<()> {
/// match TransientObject::allocate(TransientObjectType::Aes, 128) {
/// Ok(mut object1) =>
/// {
/// match TransientObject::allocate(TransientObjectType::Aes, 256) {
/// Ok(object2) => {
/// object1.copy_attribute_from(&object2);
/// Ok(())
/// }
/// Err(e) => Err(e),
/// }
/// }
/// Err(e) => Err(e),
/// }
/// # }
/// ```
///
/// # Errors
///
/// 1) `CorruptObject`: If the persistent object is corrupt. The object
/// handle SHALL behave based on the
/// `gpd.ta.doesNotCloseHandleOnCorruptObject` property.
/// 2) `StorageNotAvailable`: If the persistent object is stored in a
/// storage area which is currently inaccessible.
///
/// # Panics
///
/// 1) If src_object is not initialized.
/// 2) If self is initialized.
/// 3) If the type and size of src_object and self are not compatible.
/// 4) If the Implementation detects any other error associated with this
/// function which is not explicitly associated with a defined return
/// code for this function.
pub fn copy_attribute_from<T: GenericObject>(&mut self, src_object: &T) -> Result<()> {
match unsafe { raw::TEE_CopyObjectAttributes1(self.handle(), src_object.handle()) } {
raw::TEE_SUCCESS => Ok(()),
code => Err(Error::from_raw_error(code)),
}
}
/// Generates a random key or a key-pair and populates a transient key
/// object with the generated key material.
///
/// # Parameters
///
/// 1) `key_size`: the size of the desired key. It SHALL be less than or
/// equal to the maximum key size specified when the transient object
/// was created.
///
/// # Example
///
/// ``` rust,no_run
/// # use optee_utee::{TransientObject, TransientObjectType};
/// # fn main() -> optee_utee::Result<()> {
/// match TransientObject::allocate(TransientObjectType::Aes, 128) {
/// Ok(object) =>
/// {
/// object.generate_key(128, &[])?;
/// Ok(())
/// }
/// Err(e) => Err(e),
/// }
/// # }
/// ```
///
/// # Errors
///
/// 1) `BadParameters`: If an incorrect or inconsistent attribute value is detected. In this
/// case, the content of the object SHALL remain uninitialized.
///
/// # Panics
///
/// 1) If object is not a valid opened object.
/// 2) If some mandatory attribute is missing.
/// 3) If an attribute which is not defined for the object’s type is present
/// in attrs.
/// 4) If an attribute value is too big to fit within the maximum object
/// size specified when the object was created.
/// 5) If the Implementation detects any other error associated with this
/// function which is not explicitly associated with a defined return
/// code for this function.
pub fn generate_key(&self, key_size: usize, params: &[Attribute]) -> Result<()> {
let p: Vec<raw::TEE_Attribute> = params.iter().map(|p| p.raw()).collect();
unsafe {
match raw::TEE_GenerateKey(
self.handle(),
key_size as u32,
p.as_slice().as_ptr() as _,
p.len() as u32,
) {
raw::TEE_SUCCESS => Ok(()),
code => Err(Error::from_raw_error(code)),
}
}
}
}
impl GenericObject for TransientObject {
fn handle(&self) -> raw::TEE_ObjectHandle {
self.0.handle()
}
}
#[cfg(test)]
mod tests {
use optee_utee_mock::{
object::{set_global_object_mock, MockObjectController, SERIAL_TEST_LOCK},
raw,
};
use super::*;
#[test]
// If a transient object is successfully allocated, TEE_CloseObject will be
// called when it is dropped.
//
// According to `GPD_TEE_Internal_Core_API_Specification_v1.3.1`:
// At 5.5.5 TEE_CloseObject:
// The `TEE_CloseObject` function closes an opened object handle. The object
// can be persistent or transient.
// For transient objects, `TEE_CloseObject` is equivalent to
// `TEE_FreeTransientObject`.
fn test_allocate_and_drop() {
let _lock = SERIAL_TEST_LOCK.lock();
let mut mock = MockObjectController::new();
let mut handle_struct = MockObjectController::new_valid_test_handle_struct();
let handle = MockObjectController::new_valid_test_handle(&mut handle_struct);
mock.expect_TEE_AllocateTransientObject_success_once(handle.clone());
mock.expect_TEE_CloseObject_once(handle);
set_global_object_mock(mock);
let _obj =
TransientObject::allocate(TransientObjectType::Aes, 128).expect("it should be ok");
}
#[test]
fn test_allocate_fail() {
let _lock = SERIAL_TEST_LOCK.lock();
let mut mock = MockObjectController::new();
static RETURN_CODE: raw::TEE_Result = raw::TEE_ERROR_BAD_STATE;
mock.expect_TEE_AllocateTransientObject_fail_once(RETURN_CODE);
set_global_object_mock(mock);
let err =
TransientObject::allocate(TransientObjectType::Aes, 128).expect_err("it should be err");
assert_eq!(err.raw_code(), RETURN_CODE);
}
}