blob: 3d9e87ec167b481557523b092985334318df53eb [file] [log] [blame]
Janis Danisevskis18f27ad2016-06-01 13:57:40 -07001/*
2 * Copyright (C) 2016 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 */
David Zeuthenf2a28672020-01-30 16:20:07 -050016
17#include <keystore/keystore_attestation_id.h>
Janis Danisevskis18f27ad2016-06-01 13:57:40 -070018
19#define LOG_TAG "keystore_att_id"
20
Logan Chiencdc813f2018-04-23 13:52:28 +080021#include <log/log.h>
Janis Danisevskis18f27ad2016-06-01 13:57:40 -070022
23#include <memory>
24#include <string>
25#include <vector>
26
27#include <binder/IServiceManager.h>
28#include <binder/Parcel.h>
29#include <binder/Parcelable.h>
30#include <binder/PersistableBundle.h>
31
32#include <android/security/keymaster/BpKeyAttestationApplicationIdProvider.h>
33#include <android/security/keymaster/IKeyAttestationApplicationIdProvider.h>
34#include <keystore/KeyAttestationApplicationId.h>
35#include <keystore/KeyAttestationPackageInfo.h>
36#include <keystore/Signature.h>
37
Eran Messeriea47d3f2017-12-06 12:01:42 +000038#include <private/android_filesystem_config.h> /* for AID_SYSTEM */
39
Janis Danisevskis18f27ad2016-06-01 13:57:40 -070040#include <openssl/asn1t.h>
Eran Messeriabaf4d82017-12-28 21:19:50 +000041#include <openssl/bn.h>
Janis Danisevskis18f27ad2016-06-01 13:57:40 -070042#include <openssl/sha.h>
43
44#include <utils/String8.h>
45
46namespace android {
47
48namespace {
49
Shawn Willden9e8edcf2017-12-18 15:11:46 -070050constexpr const char* kAttestationSystemPackageName = "AndroidSystem";
Eran Messeri03fc4c82018-08-16 18:53:15 +010051constexpr const char* kUnknownPackageName = "UnknownPackage";
Shawn Willden9e8edcf2017-12-18 15:11:46 -070052
53std::vector<uint8_t> signature2SHA256(const content::pm::Signature& sig) {
Janis Danisevskis18f27ad2016-06-01 13:57:40 -070054 std::vector<uint8_t> digest_buffer(SHA256_DIGEST_LENGTH);
55 SHA256(sig.data().data(), sig.data().size(), digest_buffer.data());
56 return digest_buffer;
57}
58
59using ::android::security::keymaster::BpKeyAttestationApplicationIdProvider;
60
61class KeyAttestationApplicationIdProvider : public BpKeyAttestationApplicationIdProvider {
62 public:
63 KeyAttestationApplicationIdProvider();
64
65 static KeyAttestationApplicationIdProvider& get();
66
67 private:
68 android::sp<android::IServiceManager> service_manager_;
69};
70
71KeyAttestationApplicationIdProvider& KeyAttestationApplicationIdProvider::get() {
72 static KeyAttestationApplicationIdProvider mpm;
73 return mpm;
74}
75
76KeyAttestationApplicationIdProvider::KeyAttestationApplicationIdProvider()
77 : BpKeyAttestationApplicationIdProvider(
78 android::defaultServiceManager()->getService(String16("sec_key_att_app_id_provider"))) {}
79
80DECLARE_STACK_OF(ASN1_OCTET_STRING);
81
82typedef struct km_attestation_package_info {
83 ASN1_OCTET_STRING* package_name;
84 ASN1_INTEGER* version;
Janis Danisevskis18f27ad2016-06-01 13:57:40 -070085} KM_ATTESTATION_PACKAGE_INFO;
86
Eran Messeri03fc4c82018-08-16 18:53:15 +010087// Estimated size:
88// 4 bytes for the package name + package_name length
89// 11 bytes for the version (2 bytes header and up to 9 bytes of data).
90constexpr size_t AAID_PKG_INFO_OVERHEAD = 15;
Janis Danisevskis18f27ad2016-06-01 13:57:40 -070091ASN1_SEQUENCE(KM_ATTESTATION_PACKAGE_INFO) = {
92 ASN1_SIMPLE(KM_ATTESTATION_PACKAGE_INFO, package_name, ASN1_OCTET_STRING),
93 ASN1_SIMPLE(KM_ATTESTATION_PACKAGE_INFO, version, ASN1_INTEGER),
Janis Danisevskis18f27ad2016-06-01 13:57:40 -070094} ASN1_SEQUENCE_END(KM_ATTESTATION_PACKAGE_INFO);
95IMPLEMENT_ASN1_FUNCTIONS(KM_ATTESTATION_PACKAGE_INFO);
96
97DECLARE_STACK_OF(KM_ATTESTATION_PACKAGE_INFO);
98
Eran Messeri03fc4c82018-08-16 18:53:15 +010099// Estimated size:
100// See estimate above for the stack of package infos.
101// 34 (32 + 2) bytes for each signature digest.
102constexpr size_t AAID_SIGNATURE_SIZE = 34;
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700103typedef struct km_attestation_application_id {
104 STACK_OF(KM_ATTESTATION_PACKAGE_INFO) * package_infos;
Janis Danisevskis011675d2016-09-01 11:41:29 +0100105 STACK_OF(ASN1_OCTET_STRING) * signature_digests;
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700106} KM_ATTESTATION_APPLICATION_ID;
107
Eran Messeri03fc4c82018-08-16 18:53:15 +0100108// Estimated overhead:
109// 4 for the header of the octet string containing the fully-encoded data.
110// 4 for the sequence header.
111// 4 for the header of the package info set.
112// 4 for the header of the signature set.
113constexpr size_t AAID_GENERAL_OVERHEAD = 16;
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700114ASN1_SEQUENCE(KM_ATTESTATION_APPLICATION_ID) = {
115 ASN1_SET_OF(KM_ATTESTATION_APPLICATION_ID, package_infos, KM_ATTESTATION_PACKAGE_INFO),
Janis Danisevskis011675d2016-09-01 11:41:29 +0100116 ASN1_SET_OF(KM_ATTESTATION_APPLICATION_ID, signature_digests, ASN1_OCTET_STRING),
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700117} ASN1_SEQUENCE_END(KM_ATTESTATION_APPLICATION_ID);
118IMPLEMENT_ASN1_FUNCTIONS(KM_ATTESTATION_APPLICATION_ID);
Shawn Willden9e8edcf2017-12-18 15:11:46 -0700119
120} // namespace
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700121
122} // namespace android
123
124namespace std {
125template <> struct default_delete<android::KM_ATTESTATION_PACKAGE_INFO> {
126 void operator()(android::KM_ATTESTATION_PACKAGE_INFO* p) {
127 android::KM_ATTESTATION_PACKAGE_INFO_free(p);
128 }
129};
130template <> struct default_delete<ASN1_OCTET_STRING> {
131 void operator()(ASN1_OCTET_STRING* p) { ASN1_OCTET_STRING_free(p); }
132};
133template <> struct default_delete<android::KM_ATTESTATION_APPLICATION_ID> {
134 void operator()(android::KM_ATTESTATION_APPLICATION_ID* p) {
135 android::KM_ATTESTATION_APPLICATION_ID_free(p);
136 }
137};
138} // namespace std
139
140namespace android {
141namespace security {
142namespace {
143
144using ::android::security::keymaster::KeyAttestationApplicationId;
145using ::android::security::keymaster::KeyAttestationPackageInfo;
146
Janis Danisevskis011675d2016-09-01 11:41:29 +0100147status_t build_attestation_package_info(const KeyAttestationPackageInfo& pinfo,
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700148 std::unique_ptr<KM_ATTESTATION_PACKAGE_INFO>* attestation_package_info_ptr) {
149
150 if (!attestation_package_info_ptr) return BAD_VALUE;
151 auto& attestation_package_info = *attestation_package_info_ptr;
152
153 attestation_package_info.reset(KM_ATTESTATION_PACKAGE_INFO_new());
154 if (!attestation_package_info.get()) return NO_MEMORY;
155
Janis Danisevskis011675d2016-09-01 11:41:29 +0100156 if (!pinfo.package_name()) {
157 ALOGE("Key attestation package info lacks package name");
158 return BAD_VALUE;
159 }
160
161 std::string pkg_name(String8(*pinfo.package_name()).string());
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700162 if (!ASN1_OCTET_STRING_set(attestation_package_info->package_name,
163 reinterpret_cast<const unsigned char*>(pkg_name.data()),
164 pkg_name.size())) {
165 return UNKNOWN_ERROR;
166 }
167
Eran Messeriabaf4d82017-12-28 21:19:50 +0000168 BIGNUM* bn_version = BN_new();
169 if (bn_version == nullptr) {
170 return NO_MEMORY;
171 }
172 if (BN_set_u64(bn_version, static_cast<uint64_t>(pinfo.version_code())) != 1) {
173 BN_free(bn_version);
Janis Danisevskis011675d2016-09-01 11:41:29 +0100174 return UNKNOWN_ERROR;
175 }
Eran Messeriabaf4d82017-12-28 21:19:50 +0000176 status_t retval = NO_ERROR;
177 if (BN_to_ASN1_INTEGER(bn_version, attestation_package_info->version) == nullptr) {
178 retval = UNKNOWN_ERROR;
179 }
180 BN_free(bn_version);
181 return retval;
Janis Danisevskis011675d2016-09-01 11:41:29 +0100182}
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700183
Eran Messeri03fc4c82018-08-16 18:53:15 +0100184/* The following function are not used. They are mentioned here to silence
185 * warnings about them not being used.
186 */
187void unused_functions_silencer() __attribute__((unused));
188void unused_functions_silencer() {
189 i2d_KM_ATTESTATION_PACKAGE_INFO(nullptr, nullptr);
190 d2i_KM_ATTESTATION_APPLICATION_ID(nullptr, nullptr, 0);
191 d2i_KM_ATTESTATION_PACKAGE_INFO(nullptr, nullptr, 0);
192}
193
194} // namespace
195
Janis Danisevskis011675d2016-09-01 11:41:29 +0100196StatusOr<std::vector<uint8_t>>
197build_attestation_application_id(const KeyAttestationApplicationId& key_attestation_id) {
198 auto attestation_id =
199 std::unique_ptr<KM_ATTESTATION_APPLICATION_ID>(KM_ATTESTATION_APPLICATION_ID_new());
Eran Messeri03fc4c82018-08-16 18:53:15 +0100200 size_t estimated_encoded_size = AAID_GENERAL_OVERHEAD;
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700201
Janis Danisevskis011675d2016-09-01 11:41:29 +0100202 auto attestation_pinfo_stack = reinterpret_cast<_STACK*>(attestation_id->package_infos);
203
204 if (key_attestation_id.pinfos_begin() == key_attestation_id.pinfos_end()) return BAD_VALUE;
205
206 for (auto pinfo = key_attestation_id.pinfos_begin(); pinfo != key_attestation_id.pinfos_end();
207 ++pinfo) {
208 if (!pinfo->package_name()) {
209 ALOGE("Key attestation package info lacks package name");
210 return BAD_VALUE;
211 }
212 std::string package_name(String8(*pinfo->package_name()).string());
213 std::unique_ptr<KM_ATTESTATION_PACKAGE_INFO> attestation_package_info;
214 auto rc = build_attestation_package_info(*pinfo, &attestation_package_info);
215 if (rc != NO_ERROR) {
216 ALOGE("Building DER attestation package info failed %d", rc);
217 return rc;
218 }
Eran Messeri03fc4c82018-08-16 18:53:15 +0100219 estimated_encoded_size += AAID_PKG_INFO_OVERHEAD + package_name.size();
220 if (estimated_encoded_size > KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE) {
221 break;
222 }
Janis Danisevskis011675d2016-09-01 11:41:29 +0100223 if (!sk_push(attestation_pinfo_stack, attestation_package_info.get())) {
224 return NO_MEMORY;
225 }
226 // if push succeeded, the stack takes ownership
227 attestation_package_info.release();
228 }
229
230 /** Apps can only share a uid iff they were signed with the same certificate(s). Because the
231 * signature field actually holds the signing certificate, rather than a signature, we can
232 * simply use the set of signature digests of the first package info.
233 */
234 const auto& pinfo = *key_attestation_id.pinfos_begin();
235 std::vector<std::vector<uint8_t>> signature_digests;
236
237 for (auto sig = pinfo.sigs_begin(); sig != pinfo.sigs_end(); ++sig) {
238 signature_digests.push_back(signature2SHA256(*sig));
239 }
240
241 auto signature_digest_stack = reinterpret_cast<_STACK*>(attestation_id->signature_digests);
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700242 for (auto si : signature_digests) {
Eran Messeri03fc4c82018-08-16 18:53:15 +0100243 estimated_encoded_size += AAID_SIGNATURE_SIZE;
244 if (estimated_encoded_size > KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE) {
245 break;
246 }
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700247 auto asn1_item = std::unique_ptr<ASN1_OCTET_STRING>(ASN1_OCTET_STRING_new());
248 if (!asn1_item) return NO_MEMORY;
249 if (!ASN1_OCTET_STRING_set(asn1_item.get(), si.data(), si.size())) {
250 return UNKNOWN_ERROR;
251 }
252 if (!sk_push(signature_digest_stack, asn1_item.get())) {
253 return NO_MEMORY;
254 }
255 asn1_item.release(); // if push succeeded, the stack takes ownership
256 }
257
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700258 int len = i2d_KM_ATTESTATION_APPLICATION_ID(attestation_id.get(), nullptr);
Janis Danisevskis011675d2016-09-01 11:41:29 +0100259 if (len < 0) return UNKNOWN_ERROR;
260
261 std::vector<uint8_t> result(len);
262 uint8_t* p = result.data();
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700263 len = i2d_KM_ATTESTATION_APPLICATION_ID(attestation_id.get(), &p);
Janis Danisevskis011675d2016-09-01 11:41:29 +0100264 if (len < 0) return UNKNOWN_ERROR;
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700265
266 return result;
267}
268
Janis Danisevskis011675d2016-09-01 11:41:29 +0100269StatusOr<std::vector<uint8_t>> gather_attestation_application_id(uid_t uid) {
Shawn Willden9e8edcf2017-12-18 15:11:46 -0700270 KeyAttestationApplicationId key_attestation_id;
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700271
Eran Messeriea47d3f2017-12-06 12:01:42 +0000272 if (uid == AID_SYSTEM) {
Shawn Willden9e8edcf2017-12-18 15:11:46 -0700273 /* Use a fixed ID for system callers */
274 auto pinfo = std::make_unique<KeyAttestationPackageInfo>(
275 String16(kAttestationSystemPackageName), 1 /* version code */,
276 std::make_shared<KeyAttestationPackageInfo::SignaturesVector>());
277 key_attestation_id = KeyAttestationApplicationId(std::move(pinfo));
Eran Messeriea47d3f2017-12-06 12:01:42 +0000278 } else {
Shawn Willden9e8edcf2017-12-18 15:11:46 -0700279 /* Get the attestation application ID from package manager */
280 auto& pm = KeyAttestationApplicationIdProvider::get();
281 auto status = pm.getKeyAttestationApplicationId(uid, &key_attestation_id);
Eran Messeri03fc4c82018-08-16 18:53:15 +0100282 // Package Manager call has failed, perform attestation but indicate that the
283 // caller is unknown.
Eran Messeriea47d3f2017-12-06 12:01:42 +0000284 if (!status.isOk()) {
Eran Messeri03fc4c82018-08-16 18:53:15 +0100285 ALOGW("package manager request for key attestation ID failed with: %s %d",
Eran Messeriea47d3f2017-12-06 12:01:42 +0000286 status.exceptionMessage().string(), status.exceptionCode());
Eran Messeri03fc4c82018-08-16 18:53:15 +0100287 auto pinfo = std::make_unique<KeyAttestationPackageInfo>(
288 String16(kUnknownPackageName), 1 /* version code */,
289 std::make_shared<KeyAttestationPackageInfo::SignaturesVector>());
290 key_attestation_id = KeyAttestationApplicationId(std::move(pinfo));
Eran Messeriea47d3f2017-12-06 12:01:42 +0000291 }
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700292 }
293
294 /* DER encode the attestation application ID */
Shawn Willden9e8edcf2017-12-18 15:11:46 -0700295 return build_attestation_application_id(key_attestation_id);
Janis Danisevskis18f27ad2016-06-01 13:57:40 -0700296}
297
298} // namespace security
299} // namespace android