blob: a82531dd4bd9aca8cc73d2c0ac49da63500c49bb [file] [log] [blame]
David Zeuthen81603152020-02-11 22:04:24 -05001/*
2 * Copyright 2019, 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 ANDROID_HARDWARE_IDENTITY_IDENTITYCREDENTIAL_H
18#define ANDROID_HARDWARE_IDENTITY_IDENTITYCREDENTIAL_H
19
20#include <aidl/android/hardware/identity/BnIdentityCredential.h>
21#include <aidl/android/hardware/keymaster/HardwareAuthToken.h>
David Zeuthena8ed82c2020-05-08 10:03:28 -040022#include <aidl/android/hardware/keymaster/VerificationToken.h>
David Zeuthen81603152020-02-11 22:04:24 -050023#include <android/hardware/identity/support/IdentityCredentialSupport.h>
24
25#include <map>
26#include <set>
27#include <string>
28#include <vector>
29
30#include <cppbor/cppbor.h>
31
32namespace aidl::android::hardware::identity {
33
34using ::aidl::android::hardware::keymaster::HardwareAuthToken;
David Zeuthena8ed82c2020-05-08 10:03:28 -040035using ::aidl::android::hardware::keymaster::VerificationToken;
David Zeuthen81603152020-02-11 22:04:24 -050036using ::std::map;
David Zeuthen28edb102020-04-28 18:54:55 -040037using ::std::set;
David Zeuthen81603152020-02-11 22:04:24 -050038using ::std::string;
39using ::std::vector;
40
David Zeuthen81603152020-02-11 22:04:24 -050041class IdentityCredential : public BnIdentityCredential {
42 public:
43 IdentityCredential(const vector<uint8_t>& credentialData)
David Zeuthen28edb102020-04-28 18:54:55 -040044 : credentialData_(credentialData),
45 numStartRetrievalCalls_(0),
46 authChallenge_(0),
47 expectedDeviceNameSpacesSize_(0) {}
David Zeuthen81603152020-02-11 22:04:24 -050048
49 // Parses and decrypts credentialData_, return a status code from
50 // IIdentityCredentialStore. Must be called right after construction.
51 int initialize();
52
53 // Methods from IIdentityCredential follow.
Jooyung Han17be89b2020-02-21 21:17:06 +090054 ndk::ScopedAStatus deleteCredential(vector<uint8_t>* outProofOfDeletionSignature) override;
55 ndk::ScopedAStatus createEphemeralKeyPair(vector<uint8_t>* outKeyPair) override;
56 ndk::ScopedAStatus setReaderEphemeralPublicKey(const vector<uint8_t>& publicKey) override;
David Zeuthen81603152020-02-11 22:04:24 -050057 ndk::ScopedAStatus createAuthChallenge(int64_t* outChallenge) override;
David Zeuthen28edb102020-04-28 18:54:55 -040058 ndk::ScopedAStatus setRequestedNamespaces(
59 const vector<RequestNamespace>& requestNamespaces) override;
David Zeuthena8ed82c2020-05-08 10:03:28 -040060 ndk::ScopedAStatus setVerificationToken(const VerificationToken& verificationToken) override;
David Zeuthen81603152020-02-11 22:04:24 -050061 ndk::ScopedAStatus startRetrieval(
62 const vector<SecureAccessControlProfile>& accessControlProfiles,
Jooyung Han17be89b2020-02-21 21:17:06 +090063 const HardwareAuthToken& authToken, const vector<uint8_t>& itemsRequest,
64 const vector<uint8_t>& signingKeyBlob, const vector<uint8_t>& sessionTranscript,
65 const vector<uint8_t>& readerSignature, const vector<int32_t>& requestCounts) override;
David Zeuthen81603152020-02-11 22:04:24 -050066 ndk::ScopedAStatus startRetrieveEntryValue(
67 const string& nameSpace, const string& name, int32_t entrySize,
68 const vector<int32_t>& accessControlProfileIds) override;
Jooyung Han17be89b2020-02-21 21:17:06 +090069 ndk::ScopedAStatus retrieveEntryValue(const vector<uint8_t>& encryptedContent,
70 vector<uint8_t>* outContent) override;
71 ndk::ScopedAStatus finishRetrieval(vector<uint8_t>* outMac,
72 vector<uint8_t>* outDeviceNameSpaces) override;
73 ndk::ScopedAStatus generateSigningKeyPair(vector<uint8_t>* outSigningKeyBlob,
David Zeuthen81603152020-02-11 22:04:24 -050074 Certificate* outSigningKeyCertificate) override;
75
76 private:
77 // Set by constructor
78 vector<uint8_t> credentialData_;
79 int numStartRetrievalCalls_;
80
81 // Set by initialize()
82 string docType_;
83 bool testCredential_;
84 vector<uint8_t> storageKey_;
85 vector<uint8_t> credentialPrivKey_;
86
87 // Set by createEphemeralKeyPair()
88 vector<uint8_t> ephemeralPublicKey_;
89
90 // Set by setReaderEphemeralPublicKey()
91 vector<uint8_t> readerPublicKey_;
92
93 // Set by createAuthChallenge()
94 uint64_t authChallenge_;
95
David Zeuthen28edb102020-04-28 18:54:55 -040096 // Set by setRequestedNamespaces()
97 vector<RequestNamespace> requestNamespaces_;
98
David Zeuthena8ed82c2020-05-08 10:03:28 -040099 // Set by setVerificationToken().
100 VerificationToken verificationToken_;
101
David Zeuthen81603152020-02-11 22:04:24 -0500102 // Set at startRetrieval() time.
103 map<int32_t, int> profileIdToAccessCheckResult_;
David Zeuthene35797f2020-02-27 14:25:54 -0500104 vector<uint8_t> signingKeyBlob_;
David Zeuthen81603152020-02-11 22:04:24 -0500105 vector<uint8_t> sessionTranscript_;
106 std::unique_ptr<cppbor::Item> sessionTranscriptItem_;
107 vector<uint8_t> itemsRequest_;
108 vector<int32_t> requestCountsRemaining_;
David Zeuthen28edb102020-04-28 18:54:55 -0400109 map<string, set<string>> requestedNameSpacesAndNames_;
David Zeuthen81603152020-02-11 22:04:24 -0500110 cppbor::Map deviceNameSpacesMap_;
111 cppbor::Map currentNameSpaceDeviceNameSpacesMap_;
112
David Zeuthen28edb102020-04-28 18:54:55 -0400113 // Calculated at startRetrieval() time.
114 size_t expectedDeviceNameSpacesSize_;
115
David Zeuthen81603152020-02-11 22:04:24 -0500116 // Set at startRetrieveEntryValue() time.
117 string currentNameSpace_;
118 string currentName_;
119 size_t entryRemainingBytes_;
120 vector<uint8_t> entryValue_;
121 vector<uint8_t> entryAdditionalData_;
David Zeuthen28edb102020-04-28 18:54:55 -0400122
123 size_t calcDeviceNameSpacesSize();
David Zeuthen81603152020-02-11 22:04:24 -0500124};
125
126} // namespace aidl::android::hardware::identity
127
128#endif // ANDROID_HARDWARE_IDENTITY_IDENTITYCREDENTIAL_H