Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef KEYSTORE_OPERATION_H_ |
| 18 | #define KEYSTORE_OPERATION_H_ |
| 19 | |
Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 20 | #include <binder/Binder.h> |
| 21 | #include <binder/IBinder.h> |
Janis Danisevskis | c7a9fa2 | 2016-10-13 18:43:45 +0100 | [diff] [blame] | 22 | #include <keystore/keymaster_tags.h> |
| 23 | #include <map> |
Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 24 | #include <utils/LruCache.h> |
| 25 | #include <utils/StrongPointer.h> |
Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 26 | #include <vector> |
| 27 | |
Janis Danisevskis | c7a9fa2 | 2016-10-13 18:43:45 +0100 | [diff] [blame] | 28 | namespace keystore { |
Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 29 | |
Janis Danisevskis | c7a9fa2 | 2016-10-13 18:43:45 +0100 | [diff] [blame] | 30 | using ::android::IBinder; |
| 31 | using ::android::sp; |
Chad Brubaker | ad6514a | 2015-04-09 14:00:26 -0700 | [diff] [blame] | 32 | |
Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 33 | /** |
Janis Danisevskis | c7a9fa2 | 2016-10-13 18:43:45 +0100 | [diff] [blame] | 34 | * OperationMap handles the translation of uint64_t's and keymaster2_device_t's to opaque binder |
| 35 | * tokens that can be used to reference that operation at a later time by applications. It also does |
| 36 | * LRU tracking for operation pruning and keeps a mapping of clients to operations to allow for |
| 37 | * graceful handling of application death. |
Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 38 | */ |
Janis Danisevskis | c7a9fa2 | 2016-10-13 18:43:45 +0100 | [diff] [blame] | 39 | |
Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 40 | class OperationMap { |
Shawn Willden | da6dcc3 | 2017-12-03 14:56:05 -0700 | [diff] [blame^] | 41 | typedef sp<::android::hardware::keymaster::V3_0::IKeymasterDevice> km_device_t; |
Janis Danisevskis | c7a9fa2 | 2016-10-13 18:43:45 +0100 | [diff] [blame] | 42 | |
| 43 | public: |
Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 44 | struct Operation { |
Shawn Willden | da6dcc3 | 2017-12-03 14:56:05 -0700 | [diff] [blame^] | 45 | Operation() = default; |
Janis Danisevskis | c7a9fa2 | 2016-10-13 18:43:45 +0100 | [diff] [blame] | 46 | Operation(uint64_t handle, uint64_t keyid, KeyPurpose purpose, const km_device_t& device, |
Shawn Willden | da6dcc3 | 2017-12-03 14:56:05 -0700 | [diff] [blame^] | 47 | KeyCharacteristics&& characteristics, sp<IBinder> appToken); |
| 48 | Operation(Operation&&) = default; |
| 49 | Operation(const Operation&) = delete; |
| 50 | |
Janis Danisevskis | c7a9fa2 | 2016-10-13 18:43:45 +0100 | [diff] [blame] | 51 | uint64_t handle; |
Shawn Willden | 9221bff | 2015-06-18 18:23:54 -0600 | [diff] [blame] | 52 | uint64_t keyid; |
Janis Danisevskis | c7a9fa2 | 2016-10-13 18:43:45 +0100 | [diff] [blame] | 53 | KeyPurpose purpose; |
| 54 | km_device_t device; |
| 55 | KeyCharacteristics characteristics; |
Shawn Willden | da6dcc3 | 2017-12-03 14:56:05 -0700 | [diff] [blame^] | 56 | sp<IBinder> appToken; |
Shawn Willden | d3ed3a2 | 2017-03-28 00:39:16 +0000 | [diff] [blame] | 57 | std::unique_ptr<HardwareAuthToken> authToken; |
Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 58 | }; |
Shawn Willden | da6dcc3 | 2017-12-03 14:56:05 -0700 | [diff] [blame^] | 59 | |
| 60 | explicit OperationMap(IBinder::DeathRecipient* deathRecipient); |
| 61 | sp<IBinder> addOperation(uint64_t handle, uint64_t keyid, KeyPurpose purpose, |
| 62 | const km_device_t& dev, const sp<IBinder>& appToken, |
| 63 | KeyCharacteristics&& characteristics, bool pruneable); |
| 64 | NullOr<const Operation&> getOperation(const sp<IBinder>& token); |
| 65 | NullOr<Operation> removeOperation(const sp<IBinder>& token); |
| 66 | bool hasPruneableOperation() const; |
| 67 | size_t getOperationCount() const { return mMap.size(); } |
| 68 | size_t getPruneableOperationCount() const; |
| 69 | bool setOperationAuthToken(const sp<IBinder>& token, HardwareAuthToken authToken); |
| 70 | sp<IBinder> getOldestPruneableOperation(); |
| 71 | std::vector<sp<IBinder>> getOperationsForToken(const sp<IBinder>& appToken); |
| 72 | |
| 73 | private: |
| 74 | void updateLru(const sp<IBinder>& token); |
| 75 | void removeOperationTracking(const sp<IBinder>& token, const sp<IBinder>& appToken); |
| 76 | std::map<sp<IBinder>, Operation> mMap; |
| 77 | std::vector<sp<IBinder>> mLru; |
| 78 | std::map<sp<IBinder>, std::vector<sp<IBinder>>> mAppTokenMap; |
| 79 | IBinder::DeathRecipient* mDeathRecipient; |
Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 80 | }; |
Janis Danisevskis | c7a9fa2 | 2016-10-13 18:43:45 +0100 | [diff] [blame] | 81 | |
| 82 | } // namespace keystore |
| 83 | |
Chad Brubaker | 40a1a9b | 2015-02-20 14:08:13 -0800 | [diff] [blame] | 84 | #endif |