/****************************************************************************** * * Copyright 2018 NXP * * 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. * ******************************************************************************/ #ifndef VENDOR_NXP_VIRTUAL_ISO_V1_0_SECUREELEMENT_H #define VENDOR_NXP_VIRTUAL_ISO_V1_0_SECUREELEMENT_H #include #include #include #include #include #include "phNxpEse_Api.h" namespace vendor { namespace nxp { namespace virtual_iso { namespace V1_0 { namespace implementation { using ::android::sp; using ::android::wp; using android::base::StringPrintf; using ::android::hardware::hidl_array; using ::android::hardware::hidl_death_recipient; using ::android::hardware::hidl_memory; using ::android::hardware::hidl_string; using ::android::hardware::hidl_vec; using ::android::hardware::Return; using ::android::hardware::Void; using ::android::hardware::secure_element::V1_0::ISecureElement; using ::android::hardware::secure_element::V1_0::LogicalChannelResponse; using ::android::hardware::secure_element::V1_0::SecureElementStatus; using ::android::hidl::base::V1_0::IBase; #ifndef DEFAULT_BASIC_CHANNEL #define DEFAULT_BASIC_CHANNEL 0x00 #endif struct VirtualISO : public ISecureElement, public hidl_death_recipient { VirtualISO(); Return init( const sp< ::android::hardware::secure_element::V1_0::ISecureElementHalCallback>& clientCallback) override; Return getAtr(getAtr_cb _hidl_cb) override; Return isCardPresent() override; Return transmit(const hidl_vec& data, transmit_cb _hidl_cb) override; Return openLogicalChannel(const hidl_vec& aid, uint8_t p2, openLogicalChannel_cb _hidl_cb) override; Return openBasicChannel(const hidl_vec& aid, uint8_t p2, openBasicChannel_cb _hidl_cb) override; Return<::android::hardware::secure_element::V1_0::SecureElementStatus> closeChannel(uint8_t channelNumber) override; virtual void serviceDied(uint64_t /*cookie*/, const wp& /*who*/) { // TODO: Implement graceful closure, to close ongoing tx-rx and deinit // T=1 stack // close(0); } private: uint8_t mMaxChannelCount; uint8_t mOpenedchannelCount = 0; bool mIsEseInitialized = false; static std::vector mOpenedChannels; Return<::android::hardware::secure_element::V1_0::SecureElementStatus> seHalDeInit(); ESESTATUS seHalInit(); Return<::android::hardware::secure_element::V1_0::SecureElementStatus> internalCloseChannel(uint8_t channelNumber); }; } // namespace implementation } // namespace V1_0 } // namespace virtual_iso } // namespace nxp } // namespace vendor #endif // VENDOR_NXP_VIRTUAL_ISO_V1_0_SECUREELEMENT_H