blob: e69b43af1e11e157a45af9f42c3bb4a7ec4f6571 [file] [log] [blame]
Chad Brubaker40a1a9b2015-02-20 14:08:13 -08001/*
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 Brubaker40a1a9b2015-02-20 14:08:13 -080020#include <binder/Binder.h>
21#include <binder/IBinder.h>
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010022#include <keystore/keymaster_tags.h>
23#include <map>
Chad Brubaker40a1a9b2015-02-20 14:08:13 -080024#include <utils/LruCache.h>
25#include <utils/StrongPointer.h>
Chad Brubaker40a1a9b2015-02-20 14:08:13 -080026#include <vector>
27
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010028namespace keystore {
Chad Brubaker40a1a9b2015-02-20 14:08:13 -080029
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010030using ::android::IBinder;
31using ::android::sp;
Chad Brubakerad6514a2015-04-09 14:00:26 -070032
Chad Brubaker40a1a9b2015-02-20 14:08:13 -080033/**
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010034 * 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 Brubaker40a1a9b2015-02-20 14:08:13 -080038 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010039
Chad Brubaker40a1a9b2015-02-20 14:08:13 -080040class OperationMap {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010041 typedef ::android::sp<::android::hardware::keymaster::V3_0::IKeymasterDevice> km_device_t;
42
43 public:
Chih-Hung Hsiehd7791be2016-07-12 11:58:02 -070044 explicit OperationMap(IBinder::DeathRecipient* deathRecipient);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010045 android::sp<android::IBinder> addOperation(uint64_t handle, uint64_t keyid, KeyPurpose purpose,
46 const km_device_t& dev,
47 const android::sp<android::IBinder>& appToken,
48 KeyCharacteristics&& characteristics,
49 bool pruneable);
50 bool getOperation(const android::sp<android::IBinder>& token, uint64_t* outHandle,
51 uint64_t* outKeyid, KeyPurpose* outPurpose, km_device_t* outDev,
52 const KeyCharacteristics** outCharacteristics);
53 bool removeOperation(const android::sp<android::IBinder>& token);
Alex Klyubin700c1a32015-06-23 15:21:51 -070054 bool hasPruneableOperation() const;
Shawn Willden447095f2015-10-30 10:05:43 -060055 size_t getOperationCount() const { return mMap.size(); }
Alex Klyubin700c1a32015-06-23 15:21:51 -070056 size_t getPruneableOperationCount() const;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010057 bool getOperationAuthToken(const android::sp<android::IBinder>& token,
58 const HardwareAuthToken** outToken);
59 bool setOperationAuthToken(const android::sp<android::IBinder>& token,
60 const HardwareAuthToken* authToken);
61 android::sp<android::IBinder> getOldestPruneableOperation();
62 std::vector<android::sp<android::IBinder>>
63 getOperationsForToken(const android::sp<android::IBinder>& appToken);
Chad Brubaker40a1a9b2015-02-20 14:08:13 -080064
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010065 private:
66 void updateLru(const android::sp<android::IBinder>& token);
67 void removeOperationTracking(const android::sp<android::IBinder>& token,
68 const android::sp<android::IBinder>& appToken);
Chad Brubaker40a1a9b2015-02-20 14:08:13 -080069 struct Operation {
70 Operation();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010071 Operation(uint64_t handle, uint64_t keyid, KeyPurpose purpose, const km_device_t& device,
72 KeyCharacteristics&& characteristics, android::sp<android::IBinder> appToken);
73 uint64_t handle;
Shawn Willden9221bff2015-06-18 18:23:54 -060074 uint64_t keyid;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010075 KeyPurpose purpose;
76 km_device_t device;
77 KeyCharacteristics characteristics;
78 android::sp<android::IBinder> appToken;
79 std::unique_ptr<HardwareAuthToken> authToken;
Chad Brubaker40a1a9b2015-02-20 14:08:13 -080080 };
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010081 std::map<android::sp<android::IBinder>, Operation> mMap;
82 std::vector<android::sp<android::IBinder>> mLru;
83 std::map<android::sp<android::IBinder>, std::vector<android::sp<android::IBinder>>>
84 mAppTokenMap;
85 android::IBinder::DeathRecipient* mDeathRecipient;
Chad Brubaker40a1a9b2015-02-20 14:08:13 -080086};
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010087
88} // namespace keystore
89
Chad Brubaker40a1a9b2015-02-20 14:08:13 -080090#endif