// Copyright 2022, The Android Open Source Project // // Licensed 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. //! SecureClock HAL device implementation. use super::{ChannelHalService, SerializedChannel}; use crate::binder; use crate::hal::secureclock::{ISecureClock, TimeStampToken::TimeStampToken}; use crate::hal::Innto; use kmr_wire::*; use std::sync::{Arc, Mutex, MutexGuard}; /// `ISecureClock` implementation which converts all method invocations to serialized requests that /// are sent down the associated channel. pub struct Device { channel: Arc>, } impl binder::Interface for Device {} impl Device { /// Construct a new instance that uses the provided channel. pub fn new(channel: Arc>) -> Self { Self { channel } } /// Create a new instance wrapped in a proxy object. pub fn new_as_binder(channel: Arc>) -> binder::Strong { ISecureClock::BnSecureClock::new_binder( Self::new(channel), binder::BinderFeatures::default(), ) } } impl ChannelHalService for Device { fn channel(&self) -> MutexGuard { self.channel.lock().unwrap() } } impl ISecureClock::ISecureClock for Device { fn generateTimeStamp(&self, challenge: i64) -> binder::Result { let rsp: GenerateTimeStampResponse = self.execute(GenerateTimeStampRequest { challenge })?; Ok(rsp.ret.innto()) } }